Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Regarding parameter 'SAVE'

Former Member
0 Likes
447

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.

3 REPLIES 3
Read only

Former Member
0 Likes
422

u can use event AT SELECTION-SCREEN.

Sameer

Read only

0 Likes
422

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.

Read only

gopi_narendra
Active Contributor
0 Likes
422

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