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

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

Former Member
0 Likes
858

hii,

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

thanks a lot

hii,

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

thanks a lot

4 REPLIES 4
Read only

Former Member
0 Likes
827

Try with this Function module - POPUP_TO_GET_ONE_VALUE

Cheers,

Kothand

Read only

Former Member
0 Likes
827

Hi,

Check the function modules: POPUP_TO_DECIDE_INFO,

POPUP_TO_CONFIRM_STEP.

Regards,

Bhaskar

Read only

Former Member
0 Likes
827

hii

you can use FM POPUP_GET_VALUES or TRM_POPUP_TEXT_INPUT in report program.

regards

twinkal.

Read only

Former Member
0 Likes
827

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 .