ā2009 Sep 02 6:43 PM
How i use the selection variable type B in dynamic variant??
I have 2 parameters: month and year. Both have been filled with currenth month and year in background job that will be run every day.
In sap help, is mentioned something about memory ID for to do that but i didn“t understand.
Please, help me!
ā2009 Sep 02 6:51 PM
Pease provide more details about u r requirement. Its not clear.
do you want to know how to create a dynamic variant or
wants to know how to set/get parameters id get worked ?
aĀ®
ā2009 Sep 02 6:53 PM
How i creat a dynamic variant.
But my parameters are not date, like sy-datum! They are two parameters, one are month and another are year.
Edited by: Rodrigo Kenji Matsunaga on Sep 2, 2009 7:53 PM
ā2009 Sep 02 7:02 PM
Check this
report zaRs
no standard page heading line-size 255.
parameters : p_month(2) type c.
parameters : p_year(4) type c.
Initialization.
p_month = sy-datum+4(2).
p_year = sy-datum+0(4).
aĀ®
ā2009 Sep 03 5:55 AM