‎2009 May 12 8:00 AM
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.......
‎2009 May 12 8:02 AM
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.
‎2009 May 12 8:04 AM
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
‎2009 May 12 8:08 AM
Hi,
Create a screen with table control/step loop/one entry at onceu2026using screen fields and enter the data.
Regards,
AnushaV
‎2009 May 12 8:11 AM
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
‎2009 May 12 8:13 AM
Hi:
Store the input data into the work area and append into an internal table.
Regards
Shashi