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

Insertion in Internal Table....?

Former Member
0 Likes
591

Hi all,

i am working on Internal Table.......build an internal table structure which contains 10 fields,

Now i want to insert data through and screen or front end...........how can i insert data in Internal Table?

Thanks in advance.......

5 REPLIES 5
Read only

Former Member
0 Likes
573

HI,

After inserting the data into the screen and when user press the SAVE button read the data from the screen append to the internal table.

Read only

Former Member
0 Likes
573

Hi,

you can keep a pushbutton on your screen say add.

on click of it... the entries in the fields can be appended in the internal table...

for ex.


case ok_code.
when 'ADD'
wa-field1 = screen_field1
    ...
    ...
    ...
wa-field10 = screen-field10.
append wa to itab.
endcase.

Regards

Siddarth

Read only

Former Member
0 Likes
573

Hi,

Create a screen with table control/step loop/one entry at onceu2026using screen fields and enter the data.

Regards,

AnushaV

Read only

faisalatsap
Active Contributor
0 Likes
573

Hi, Kashif

You are entering data in table control or in text fields? Screen Programming or Simple Selection Screen ?

Please Explain bit more.

Best Regards,

Faisal

Read only

Former Member
0 Likes
573

Hi:

Store the input data into the work area and append into an internal table.

Regards

Shashi