Application Development 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: 

*How can we use the internal table in module pool programming? Clarify plz*

Former Member
0 Kudos

If we creating a screen using the table having four fields(for e.g.). The screen has the functions of display, modify, delete, save, exit etc for the fields. The front-end of the screen having I/O fields of the table using internal table. How can we declare the internal table in the screen?

1 ACCEPTED SOLUTION

Former Member
0 Kudos

HI,

Create one WA for your Internal table and then map it to your fields.

For Example,

Data : begin of wa,

name(10),

age type i,

sex,

end of wa.

data : it like table of wa with header line.

Then in screen create input fields with the name, age and sex.

Then the user entered values are stored in name age and sex.

then you can manipulate with that values using wa.

Thanks.

2 REPLIES 2

Former Member
0 Kudos

HI,

Create one WA for your Internal table and then map it to your fields.

For Example,

Data : begin of wa,

name(10),

age type i,

sex,

end of wa.

data : it like table of wa with header line.

Then in screen create input fields with the name, age and sex.

Then the user entered values are stored in name age and sex.

then you can manipulate with that values using wa.

Thanks.

0 Kudos

Thanks for giving this answer.

You were saying, create WA for the internal table. I understood.

Then in screen create input fields with the name, age and sex.

Creating i/o fields in the screen must be WA or internal table?

Still, i haven't clear about this. Plz help me.