Application Development 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: 

saple code for generatind a popup window and accepting a parameter through

Former Member
0 Kudos

hii,

can any one help me to code a program that accepts a parameter through a popup window .

thanks a lot

4 REPLIES 4

Former Member
0 Kudos

Try with this Function module - POPUP_TO_GET_ONE_VALUE

Cheers,

Kothand

Former Member
0 Kudos

Hi,

Check the function modules: POPUP_TO_DECIDE_INFO,

POPUP_TO_CONFIRM_STEP.

Regards,

Bhaskar

Former Member
0 Kudos

hii

you can use FM POPUP_GET_VALUES or TRM_POPUP_TEXT_INPUT in report program.

regards

twinkal.

Former Member
0 Kudos

I have this simple code to concatenate two strings.

 
REPORT  ZANSTR.
parameters  : F_NAME(25),L_NAME(25).
data FU_NAM(54).
data spas(2).
spas = ' - '.
CONCATENATE F_NAME spas L_NAME INTO FU_NAM.
WRITE / FU_NAM.

can any one modify this code so as the result ie FU_NAM is displayed in the pop up .