Hello Forum, Today I come with a question that I feel I´ve had for a while, and I always like to ask them here no matter how simple there are.
For you to better understand my question I going to put it on a example…
Let´s say I have a Data Table called “dt_FullData” which contains 5 columns. Out of these 5 columns I want to add the data of two of them to a Queue in the orchestrator with a “Bulk Add Queue Items”. How can I configure the entry Data Table so the “Bulk Add Queue Items” only add the data from whichever column I want?
What are my options here?
Hello @Vikas_M , thank you so much for your feedback!!
It´s really very exciting to see how different developers tackle development scenarios. Very useful.
Hey @Luis_Fernando ,You’re welcome! I’m glad to hear that you findmy post exciting and useful. As developers, we often encounter various scenarios, and it’s indeed fascinating to see the diverse approaches that can be taken to solve problems and create solutions. If you have any specific development scenarios or questions you’d like to discuss further, feel free to share, and I’ll be more than happy to assist you.
If not then please mark me as a solution and close this thread
Happy Automation
If you want to add column1 and column 3 then filter the datatable:
dt_FilteredData = dt_FullData.DefaultView.ToTable(False, “Column1”, “Column3”)
Then pass the datatable to your queue using bulk add queue items activity.
You don’t have to filter it into a separate datatable. You can just put the DefaultView expression directly into Bulk Add Queue Items, eliminating the need for creating extra variables.
@supriya117@postwick This one I was seeking for!! Thank you both for providing so much clarity and great information. This one is definitely the lightest solution till now.