2013 Jun 20 3:57 AM
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
2013 Jun 20 5:16 AM
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.
2013 Jun 20 4:42 AM
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
2013 Jun 20 4:57 AM
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
2013 Jun 20 5:16 AM
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.