‎2006 Feb 22 2:56 AM
How to change values in internal table in smartforms.
‎2006 Feb 22 2:57 AM
You can change values in the internal table in the report program before passing to Smartforms.
Else you can change in smartforms by creating a new command and write your logic there.
‎2006 Feb 22 2:57 AM
You can change values in the internal table in the report program before passing to Smartforms.
Else you can change in smartforms by creating a new command and write your logic there.
‎2006 Feb 22 3:00 AM
What is the order / sequence in the smartform..
Command should come before display.
‎2006 Feb 22 2:59 AM
I have created command with :
clear itab-field.
and displayed it.
But it doesn't work.
‎2006 Feb 22 3:00 AM
Hi ,
You can write program lines (NODE : Program lines) and you can change the values of the internal table.
Example : in a LOOP Command/Table changing the internal table values
Loop at Itab into WA_TAb.
(CODE/PROGRAM NODE for your programming lines)
Add your logic and change
W_ITAB-F1 etc...
OR as mentioned by others change the values in the program .
Regards,
Lanka
‎2006 Feb 22 3:22 AM
‎2006 Feb 22 3:21 AM
U can do it without the driver prog also.U dec ur INT tab with appropriate ref to the structure or DB TABLE.then mention the same int table name in ur input parameter of ur initialisation tabstrip(global defintions).select the values from DB table and modify the values of the internal table here and output the same table in the output parameters of initialisation