‎2008 Jan 23 9:04 AM
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
‎2008 Jan 23 9:06 AM
‎2008 Jan 23 9:06 AM
‎2008 Jan 23 9:07 AM
Use MODIFY command to modify the content u want in your internal table
‎2008 Jan 23 9:11 AM
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.
‎2008 Jan 23 9:13 AM
Hi,
parameters : p_text(40) type c.
itab-text = p_text.
append itab.
Regards,
Nagaraj
‎2008 Jan 23 9:21 AM