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

POP-UP with variable text message.

jogeswararao_kavala
Active Contributor
0 Likes
3,187

Dear Experts,

I am using fm  'POPUP_TO_DISPLAY_TEXT' to display some text message.

My requirement is the pop-up text should contain variable values.

Is there any other fm to satisfy this requirement?

Please help.

Jogeswara Rao K

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,534

u can pass dynamic values to this textline.

declare:

data v_line type string.

* u ca pass values whatever u want and finally

*concatenate to make it a single string.

concatenate sy-tabix sy-sbrc v_line into v_line.

move v_line to textline1.

then pass this textline to FM.

3 REPLIES 3
Read only

Former Member
0 Likes
1,534

Hi,

     If you are trying to display value of a variable, concatenate the values into another string variable and pass it tot the export parameter textline1 of the function module. If it involves numeric values, copy each of them to a character variable and then append to the final string variable.

Hope this helps,

~Athreya

Read only

arindam_m
Active Contributor
0 Likes
1,534

HI,

You already have TEXTLINE1 & TEXTLINE2 to pass the values into the FM when it is called, that should be helpful. What is the Dynamic values that you want?

Cheers,

Arindam

Read only

Former Member
0 Likes
1,535

u can pass dynamic values to this textline.

declare:

data v_line type string.

* u ca pass values whatever u want and finally

*concatenate to make it a single string.

concatenate sy-tabix sy-sbrc v_line into v_line.

move v_line to textline1.

then pass this textline to FM.