Add Queue in ReFrameWork

Hello! I need your advice! I have a little project, I have to login, navigate to WorkItems, Extract Data by Data Scraping activity, filter Data Table and add queue.

In Init I have login and navigate to WorkItems.
In Process I have Extract Data, filter Data Table and add queue.
In Transaction Data I deleted Get Queue activity.

what should I add to Transaction Data to have my ReFrameWork successfully?

1 Like

@olek1

Init state - you have to do login, Extract data and filtering.

Get TransactionData state - Read one by one item and send to Process state

Process state - Add items to Orchestrator Queue.

Here, TransactionData is DataTable

1 Like

please tell me how to do this:
Get TransactionData state - Read one by one item and send to Process state

@Olek1

In Get TransactionData workflow mention condition like this.

  IF in_TransactionNumber < in_TransactionData.Rows.count
   
    out_TransactionItem = in_TransactionData(in_TransactionNumber - 1)

Please follow walk through document of that assignment.

Thank you for your answer, but tell me please, how can I transwer my argument from Init state to Transaction Data?

1 Like

@Olek1

You have to assign this out_DT to TransactionData variable and it’s global variable ans we can access it from any state in REFramework.

Yes, I know, but where can I do this and how?

1 Like

Please tell me, what I can do with this error

This topic was automatically closed 3 days after the last reply. New replies are no longer allowed.