Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Module pool

Former Member
0 Likes
563

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

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
544

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

5 REPLIES 5
Read only

Former Member
0 Likes
544

u need to use the tables statement in the program and specify the table there.

Read only

0 Likes
544

tables are used for database tables not for internal tables .i'm dealing with internal tables.

plz help if u can

Read only

0 Likes
544

how have u declared the table (internal). can u post the code.

Read only

Former Member
0 Likes
544

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

Read only

Former Member
0 Likes
545

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