How to customize the re_framwork

Hii devs
How to customize the re_framwork without queues give me suggestion and example
Thanks & regrads

Hi @Arivu

Check the below video

@Arivu,

There could be multiple possibilities for which type of Transaction Item you are trying to customize the framework. Like Emails, Data Rows, Integers, Strings etc.

Kindly, specify the use case to help you more specifically.

Thanks,
Ashok :slight_smile:

Hi @Arivu

What is your query…?

You want to use the RE Framework but don’t want to iterate the transactions it will be like linear flow.

Or

As @ashokkarale said do you want to add the Data row or mails instead of using the Queue items.

Could you be more specific.

@Arivu

Inside the Init state, use the Read Range activity to read data from an Excel file and store it in DataTable. Store the DataTable in a TransactionData variable that will be used throughout the framework.
In the Get Transaction Data state, use the Assign activity to fetch a row from the DataTable.
If counter < dataTable.Rows.Count Then
transactionItem = dataTable.Rows(counter)
counter = counter + 1
Else
transactionItem = Nothing
End If
Extract the necessary information from the transactionItem (e.g., specific columns).
’ Example to extract data from the row
Dim column1Value As String = transactionItem(“Column1”).ToString()
Dim column2Value As String = transactionItem(“Column2”).ToString()

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