Encounter a question at cert

Dear All,

yesterday I do the cert machine exam, and encounter a question.

it ask me to create 2 projects, and needs to connect to orchestrator, one is dispatcher, another is performer, so may I know, whether I need to create 2 projects base on the template ? But as I know the template can only do the perform, how to do the dispatcher ? hope someone can help me , thanks.

1 Like

@seiya.z.shen,

Yes, we have to create two separate process. One is for Dispatcher and another one is for Performer.

Dispatcher - Dispatcher will fetch one by one transactionItems and will add it to Queue.

Performer - The performer processes all the transactions loaded by the Dispatcher to the queue.

Here, TransactionItem should be of type QueueItem and make sure you have to use same Queue Name in both processes.

3 Likes

you mean that process-dispatch is push the record one by one to orchestrator-queue, then process-perform is pull the record one by one from the orchestrator-queue ? then 2 process use the RFP template ? thanks.

@seiya.z.shen,

Yes correct. Use REFramework.

RFP template means ?

sure, REF, typo.

but when we get the queue item, and I think it needs to get queueitem.SpecificContentļ¼ˆļ¼‰ļ¼Œdo you know the correct grammar? thanks.

@seiya.z.shen,

TransactionItem.SpecificContent(ā€œColumnNameā€).ToString

Here, TransactionItem is of Type ā€˜QueueItemā€™

sureļ¼Œ I found it, many thanks.

1 Like

ohā€¦the network downā€¦
https://acme-test.uipath.com/
:frowning::frowning::frowning:

@seiya.z.shen,

Check now. I am able to login to ACME system.

image

no, I think maybe China issue, whatever I use mobile or PC or Laptop. :frowning:

@seiya.z.shen,

Try after sometime.

now is ok , many thanks for help !

1 Like

one more question
ACME_URL and ACME_Credential I put to Config ā€˜Settingsā€™ sheet, that is ok ? thanks.

@seiya.z.shen,

Put ACME_URL in config file and Store ACME_Credential in either Orchestrator Assets or windows Credential Manager and put that asset Name in config file

But actually, I already set into the excel, it still said I am wrong!!!

I attached here, could you please help to check what ā€˜ s the wrong I have ? so sadā€¦ā€¦:frowning:

Br,

Seiya

18:55

Config.xlsx (21.9 KB)

Furthermore, the exercise said

Add the **ACME_URL **and ACME_Credential to
the Excel Config file.

Then I add
**ACME_URL **and ACME_Credential
to excel

But ,the result rating said

check config file - config.xlsx for extra configurations for acme_url and acme_credential,

ā€¦ā€¦

As I know, the upper case and lower case has differenceā€¦ā€¦.

Br,

Seiya

18:55

@seiya.z.shen,

It is case sensitive.

But, refer to my reply.

Is it really to ACME or acme ???

You can see the question is ACME, but the result is acmeā€¦. So confuseā€¦

Another question is

At datatable filter function. If I want to filter the data new than ā€˜one dateā€™

  • Filter the records where Date is newer than
    XXX

e.g. I set ā€œDateā€ >= ā€œ2018-01-01ā€, it is not workā€¦ā€¦ā€¦ that is my another confuse. Could please help ?

if I invoke code to implement, thatā€™s easy ,but I worry the machine not consider it is correct, because it ask me to use the Filter functionā€¦

Br,

Seiya

@seiya.z.shen,

Try Below one:

RequiredDT = ScrappedDT.select(ā€œType=ā€˜WI5ā€™ AND Status=ā€˜Openā€™ AND Date>=ā€˜2018-01-01ā€™ā€).CopyToDataTable