‎2008 Nov 26 10:08 AM
Hi Experts,
I want a popup which in return allow me to write text and return the text into an internal table.
I have tried 'POPUP_WITH_TABLE' and 'POPUP_WITH_TABLE_DISPLAY.but both the FM are getting hanged when executed.Can anyone refer any other FM?
Thanks in adv.
‎2008 Nov 26 10:13 AM
‎2008 Nov 26 10:18 AM
‎2008 Nov 26 10:21 AM
Hi ,
Ok then use the FM which ags has sugessted.
Regards,
Rohan.
‎2008 Nov 26 10:18 AM
‎2008 Nov 26 10:19 AM
MD_POPUP_SHOW_INTERNAL_TABLE
ADA_POPUP_WITH_TABLE
POPUP_WITH_TABLE
POPUP_WITH_TABLE_DISPLAY_OK
‎2008 Nov 26 10:31 AM
Hi,
I have tested all the FM.The FM POPUP_TO_MODIFY_TEXT returns a text variable of char 45.But I need a internal table.Means,the pop uop will appear and allow user to enter some text which will be stored into a internal table.
‎2008 Nov 26 11:00 AM
hi,
i think this can be done by using a little bit coding after FM POPUP_TO_MODIFY_TEXT.
Call the FM in a loop or While structure and boldappend the return text to an internal table.
build the table rows with the user input.
Put a condition to exit the loop as per your requirement.
Or else you can forget about any FM and just code a window popup in ur prog....( note: this can also be done usig module pool progrmng.)
SELECTION-SCREEN BEGIN OF SCREEN 1002 AS WINDOW.
PARAMETER: P_XAT type string.
SELECTION-SCREEN END OF SCREEN 1002.
AT SELECTION-SCREEN ON VALUE-REQUEST FOR P_XAT.
CALL SELECTION-SCREEN 1002 STARTING AT 10 50 ENDING AT 100 10.
then capture the P_xat parameter and append to internal table
‎2008 Nov 26 10:35 AM
Hi
Instead of try these function module.Design a screen in the module pool and call the screen where u want pop up window.
the screen works same as the pop up
Regards