2008 Dec 23 8:47 AM
Hi guyz,
Iam using function module popup_to_confirm .but the problem is its jus taking the text filed and i want to go value with it.
for eg: number of prints gv_value (gv_value is value populating in program) .
plz advise.
thanks.
2008 Dec 23 8:59 AM
Hi,
Do the following:
Concatenate 'number of prints'
gv_value
into v_text
separated by space.Then use v_text value as text in the FM popup_to_confirm which will give you the value in the pop up.
Hope this will help you.
Regards,
Lavanya.
Hi,
Do the following:
Concatenate 'number of prints'
gv_value
into v_text
separated by space.Then use v_text value as text in the FM popup_to_confirm which will give you the value in the pop up.
Hope this will help you.
Regards,
Lavanya.
2008 Dec 23 8:56 AM
Hi,
Instead try this FM POPUP_TO_GET_VALUE
Here you can specify the field name and also pass a default value.
Best Regards
Ramchander Rao.K
Edited by: ramchander krishnamraju on Dec 23, 2008 9:57 AM
Edited by: ramchander krishnamraju on Dec 23, 2008 9:58 AM
2008 Dec 23 8:56 AM
HI,
Built a filedcat for the pop-up list of the function module and place the fields populated value in the internal with the extra filed and this field need to be build in the fieldcat even. ur problem will be solved.
Regards,
Naresh
2008 Dec 23 8:59 AM
Hi,
Do the following:
Concatenate 'number of prints'
gv_value
into v_text
separated by space.Then use v_text value as text in the FM popup_to_confirm which will give you the value in the pop up.
Hope this will help you.
Regards,
Lavanya.
2008 Dec 23 9:00 AM
Consider the message and value as the two strings..
Concatenate those two into one string and move that string to the export parameter of that funtion module.
2008 Dec 23 9:06 AM
Hi,
I think this is what ur requirement is ..
data : lv_value_txt type string ,
lv_str type string .
move gv_value to lv_value_txt .
concatenate 'Number of prints ' lv_value text into lv_str .
Now pass lv_str to POPUP_TO_CONFIRM .
hope it helps ...
| User | Count |
|---|---|
| 3 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |