Application Development 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: 

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

Former Member
0 Kudos
2,899

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

Former Member
0 Kudos
497

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

6 REPLIES 6

suresh_datti
Active Contributor
0 Kudos
497

RS_REFRESH_FROM_SELECTOPTIONS

~Suresh

amit_khare
Active Contributor
0 Kudos
497

Check PRINT_SELECTOPTIONS.

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

Regards,

Amit

former_member187255
Active Contributor
0 Kudos
497

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.

aakash_neelaperumal2
Active Participant
0 Kudos
497

FM_SELECTION_CRITERIA_PRINT

Former Member
0 Kudos
498

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

ferry_lianto
Active Contributor
0 Kudos
497

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