‎2006 Jul 31 2:45 PM
Hi,
How can we transfer table control data after modification back to the abap program (in itab).
Thnx
sid
‎2006 Jul 31 2:47 PM
‎2006 Jul 31 2:47 PM
‎2006 Jul 31 2:50 PM
For example, here is some screen flow logic. The BOLD code, is the part that will pass control to the ABAP for updating the ITAB.
PROCESS AFTER INPUT.
* PAI FLOW LOGIC FOR TABLECONTROL 'ITABCON'
<b> LOOP AT Itab.
CHAIN.
FIELD Itab-CHECK.
MODULE I_itabCON_MODIFY ON CHAIN-REQUEST.
ENDCHAIN.
ENDLOOP.</b>
MODULE USER_COMMAND_0200.
Now the specific module that updates the ITAB.
module i_intrcon_modify input.
<b>modify itab index itabcon-current_line.</b>
endmodule.
Regards,
Rich Heilman
‎2006 Jul 31 3:06 PM