‎2007 Aug 06 10:30 AM
Hi All,
I have selection Screen with Default parameter Like example 'standard'.
I want to save this parameter value from the report before execution .
Is there any function Module to save the parameter.
Can anybody help me please.
This is very Urgent.
Thanks,
Swapna.
‎2007 Aug 06 10:33 AM
‎2007 Aug 06 11:09 AM
Hi Sameer,,
Can u send me the code how to use it.
Actualy My requirement
I have Parameter : i_varaint like disvariant-variant defualt 'stanadrad'.
in selection screen it is displaying with standard and it is displaying with some fields.
but I want to save this value standard value in the report.
So that i can see this value whenever i needed.
Thanks,
Swapna.
‎2007 Aug 06 10:33 AM
in the start-of-selection.
You can directly mention as below
var = 'DEFAULT'.
I had used the same in my programs.
See below
start-of-selection.
clear var.
if inac_usr eq 'X'.
var = 'INACTIVEUSERS'.
title = 'FMAS Inactive Users'.
elseif expi_usr eq 'X'.
var = 'EXPIREDUSERS'.
title = 'FMAS Expired User Accounts'.
endif.Regards
Gopi