Hello all,
I have a doubt when choosing RE Framework as my template i have to do read input csv file by giving path in config.xlsx file and run this as step one
so how do I do all of this and what all to changes i need to do so that it runs properly
RE Framework is poorly designed, IMO, and is overkill for most automations.
Also, using a config file is tedious and unnecessary. Use arguments (parameters) instead. Simpler, no file to manage, no Excel file to read into your automation.
Add CSV file path in config.xlsx under settings sheet as below.
Name - CSVFilePath
Value - “File path”
You can keep reading CSV file workflow after InitAllSettings workflow. We will assign entire config values to Config variable and it is of type Dictionary.
CSV file path will be read in InitAllSettings workflow. If you want to read data from CSV file then use Read CSV file activity to read it and it should be after InitAllSettings workflow.
I did the same then it gave me validation error like TransactionItem cant be changed from queue item to data row so i deleted this as well. Cause we arent using TransactionItem as of now
Could you show an example of this above?