2013 Dec 27 6:04 AM
Hi,
I have a standard text in so10 is
THE MONTH OF <V_DATE,V_MONTH> FOR FOLLING PROJECT.....
V_DATE V_MONTH are getting from table field.........how to created this using one text in so10 insteed of two text?
thanks,
abaper
2013 Dec 27 6:08 AM
Hi
In SO10 you can insert variables name using insert symbol command whose value you will be fetching before in smartform like
THE MONTH OF &V_DATE&,&V_MONTH& FOR FOLLING PROJECT.....
Declare these two variable in smartform GLOABAL data fetch those values before calling SO10
Nabheet
2013 Dec 27 7:15 AM
HI NABHEET,
I getting the value of v_date and v_month from smartforms using a function module.
so how can I put this two in so10 like
THE MONTH OF &V_DATE&,&V_MONTH& FOR FOLLING PROJECT.....
2013 Dec 27 7:34 AM