逐行修改SAP订单数据

大家好,

请教下怎么才能逐个点进去order里面,逐个点击order进去修改信息,谢谢!

could you explain issue in brief?

Hi @Rohan_Ashok_Gaikwad
I want to click order one by one to modify the data information in order. How can this UiPath be implemented, thank you.

BRs
Banksy

有没有试一下TAB,然后键盘快捷键enter

你可以通过以下2个步骤实现:

  1. 先获取SAP这个界面的有效数据有多少行,可以使用extract table data
  2. 对于如上提取到的datatable 使用for each row 便利循环,body 里面放置
    <1>assign, N=0, N为int
    <2>table cell scope, Row number 为N或者N.tostring
    <3>然后放置每个order 的编辑修改流程,
    <4>assign, N=N+1, N为int