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

Function module to read selection screen data....!!!

Former Member
0 Likes
4,403

hi all,

can anybody let me know the function module name which reads the data entered on selection screen ? i know SAP has one of the standard function module to read the data from selection screen.

please reply soon its kinda urgent.

Thanks,

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
2,001

If you need these values in one of the selection screen events, you can use DYNP_VALUES_READ.

6 REPLIES 6
Read only

suresh_datti
Active Contributor
0 Likes
2,001

RS_REFRESH_FROM_SELECTOPTIONS

~Suresh

Read only

amit_khare
Active Contributor
0 Likes
2,001

Check PRINT_SELECTOPTIONS.

I have used this one but it is specific to PNP LDB RP_PNP_SHOW_SELECTOPTIONS

Regards,

Amit

Read only

former_member187255
Active Contributor
0 Likes
2,001

Shah,

If you are using Variant then you can use FM <b>rs_variant_contents</b> to read the data entered in selection screen..

Rgds.

Read only

aakash_neelaperumal2
Active Participant
0 Likes
2,001

FM_SELECTION_CRITERIA_PRINT

Read only

Former Member
0 Likes
2,002

If you need these values in one of the selection screen events, you can use DYNP_VALUES_READ.

Read only

Former Member
0 Likes
2,001

Hi,

Please try this FM RS_LIST_SELECTION_TABLE.


DATA: zzl_repid TYPE syst-repid,
      zt_selections TYPE TABLE OF rsparams.

zzl_repid = sy-repid.

CALL FUNCTION 'RS_LIST_SELECTION_TABLE'
  EXPORTING
    report = zzl_repid
    seltext = 'X'
    newpage = ' '
  TABLES
    sel_tab = zt_selections
  EXCEPTIONS 
    OTHERS = 0.
...

Regards,

Ferry Lianto