Hello,
In my workflow I need to call program RHAKTI00 with predefined parameters of selection screen. I've created a standart task with method EXECUTE of BOR-object REPORT. I used container element SelTab (data type: RSPARAMS) to supply the selection criterias in program, it looks like:
| SELNAME | KIND | SIGN | OPTION | LOW |
|---|---|---|---|---|
| PCHSOBID | S | I | EQ | 50001234 |
| PCHSOBID | S | I | EQ | 50001235 |
It is working.
The issue is that parameters on the selection screen should be filled with values which I get from another program, which called in the previous step of my WF. These values are written to the multiline container element ObjId (data type: OBJEKTID). So now I need to fill the column "LOW" in SelTab table with these values and also fill other columns of this table (SELNAME, KIND, SIGN) with appropriate values.
I tried to do it usind binding and container operation step, but it doesn't work - values just fill first column of Seltab table (SELNAME).
How can I pass values to the specified column? Many thanks in advance for any help.