‎2007 Aug 02 12:14 PM
‎2007 Aug 02 12:17 PM
Hi,
<b>
1.Go to the selection screen of the particular report.
2.Give ur inputs for select-options and parameters.
3.And click SAVE button, it will take u to the variant screen.
4.Give the name of the variant and save.</b>
That's it.
Reward points if found useful.
<i>Regards,
Sathya Rajkumar.</i>
‎2007 Aug 02 12:23 PM
Hi ,
When you click on save it will take you to variant screen.
Give varianat name and meaning of it. It will save as default.
Regards,
Bhra
‎2007 Aug 02 12:26 PM
hi
as said above u can creat a varients list
if u want to put one varient has default u can do this by assigning that job to background or
when u creat a t code at that time also u can assign the varient name which u want to be dafault
reward if use full
‎2007 Aug 08 7:18 AM
try this code:
INITIALIZATION.
IF sy-slset IS INITIAL.
CALL FUNCTION 'RS_SUPPORT_SELECTIONS'
EXPORTING
report = sy-cprog " program name
variant = 'YOU_VARIANT_NAME' "variant name
EXCEPTIONS
variant_not_existent = 0
variant_obsolete = 0
OTHERS = 0.
ENDIF.