‎2008 Feb 18 12:30 PM
when i try to get itab fields from program it says
this table does not exists in the generated version of program.
whet does it mean and what do i need to do in that
‎2008 Feb 18 1:12 PM
Hi Vivek,
Module pool programs Screens always deal with Work areas or internal tables with header line. Try to user work area name
Note: <REMOVED BY MODERATOR>
Edited by: Alvaro Tejada Galindo on Feb 18, 2008 1:51 PM
‎2008 Feb 18 12:33 PM
u need to use the tables statement in the program and specify the table there.
‎2008 Feb 18 12:37 PM
tables are used for database tables not for internal tables .i'm dealing with internal tables.
plz help if u can
‎2008 Feb 18 12:44 PM
how have u declared the table (internal). can u post the code.
‎2008 Feb 18 1:03 PM
Hi,
Try to code as shown below.
PROCESS AFTER INPUT.
LOOP AT itab.
CHAIN.
FIELD field_name.
FIELD field_name.
ENDCHAIN.
ENDLOOP.
MODULE USER_COMMAND_1100.
Regards,
Chandru
‎2008 Feb 18 1:12 PM
Hi Vivek,
Module pool programs Screens always deal with Work areas or internal tables with header line. Try to user work area name
Note: <REMOVED BY MODERATOR>
Edited by: Alvaro Tejada Galindo on Feb 18, 2008 1:51 PM