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

Popup problem

Former Member
0 Likes
1,112

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.

8 REPLIES 8
Read only

Former Member
0 Likes
1,038

Hi,

try this....

POPUP_CHANGE_TYPE_ESI

Regards,

Rohan.

Read only

0 Likes
1,038

Hi Rohan,

This FM does not exist in our server.

Read only

0 Likes
1,038

Hi ,

Ok then use the FM which ags has sugessted.

Regards,

Rohan.

Read only

agnihotro_sinha2
Active Contributor
0 Likes
1,038

hi,

try with FM " POPUP_TO_MODIFY_TEXT"

Read only

former_member203501
Active Contributor
0 Likes
1,038

MD_POPUP_SHOW_INTERNAL_TABLE

ADA_POPUP_WITH_TABLE

POPUP_WITH_TABLE

POPUP_WITH_TABLE_DISPLAY_OK

Read only

Former Member
0 Likes
1,038

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.

Read only

0 Likes
1,038

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

Read only

Former Member
0 Likes
1,038

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