Sales Order creation in SAP based on excel data

Hi everyone,

I’m currently trying to create multiple Sales orders in SAP, based on an excel file with data.
The thing is that I have just one sheet with data for all the Sales Orders (100 rows for a total of 17 Sales Orders).
What can I do in UiPath so that based on the excel file it will create the Sales Orders?
The first 10 rows are for one SO, the other 7 for another, and I don’t know what rule to use so that after creating the first SO based on the first rows, to jump to the other 7 and create another SO.

Not sure if I was very clear, but I can provide more details if needed.

Many thanks in advance,
//L

Hello @LisaC!

It seems that you have trouble getting an answer to your question in the first 24 hours.
Let us give you a few hints and helpful links.

First, make sure you browsed through our Forum FAQ Beginner’s Guide. It will teach you what should be included in your topic.

You can check out some of our resources directly, see below:

  1. Always search first. It is the best way to quickly find your answer. Check out the image icon for that.
    Clicking the options button will let you set more specific topic search filters, i.e. only the ones with a solution.

  2. Topic that contains most common solutions with example project files can be found here.

  3. Read our official documentation where you can find a lot of information and instructions about each of our products:

  4. Watch the videos on our official YouTube channel for more visual tutorials.

  5. Meet us and our users on our Community Slack and ask your question there.

Hopefully this will let you easily find the solution/information you need. Once you have it, we would be happy if you could share your findings here and mark it as a solution. This will help other users find it in the future.

Thank you for helping us build our UiPath Community!

Cheers from your friendly
Forum_Staff

Hi @LisaC

I think you could make use of the .Select method on your data table. You can search forum for particular examples.

As to the process itself, I think it would work if you could:

  • first extract all distinct values in the column that signifies specific order

  • loop over the list of all those unique values with a For Each activity and filter your data table with something like that:

     yourDT.Select("[columnName]='item'")
    

    This will return an array of data rows, which means another For each loop to go over all rows per sales order :slight_smile: