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

update internal table with selection screen field.

Former Member
0 Likes
1,227

hi!!

suppose i take a text field as input from the user at selection screen.

description for the text field : parameter, type char,length 40.

now i have to update the value entered in this field into the internal table field TXT type char length 40.

how to do this.....???

thank you

@Mit

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
768

Hi

APPEND <PARAMETER> TO ITAB.

Max

5 REPLIES 5
Read only

Former Member
0 Likes
769

Hi

APPEND <PARAMETER> TO ITAB.

Max

Read only

Former Member
0 Likes
768

Use MODIFY command to modify the content u want in your internal table

Read only

former_member188829
Active Contributor
0 Likes
768

Hi,

Check this program..

PARAMETERS:TEXT(40) TYPE C.

DATA:BEGIN OF ITAB OCCURS 0,

TEXT(40),

END OF ITAB.

START-OF-SELECTION.

ITAB-TEXT = TEXT.

APPEND ITAB.

LOOP AT ITAB.

WRITE:ITAB-TEXT.

ENDLOOP.

Read only

former_member404244
Active Contributor
0 Likes
768

Hi,

parameters : p_text(40) type c.

itab-text = p_text.

append itab.

Regards,

Nagaraj

Read only

Former Member
0 Likes
768

Thank You All..........