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: 

Query

cantin_daniel
Explorer
0 Kudos

I have created an info-set and from there a query. I would like to know if it`s possible to read selection values of the query at runtime from one of the event block of the info-set. (May be a function exist to do that).

Regards,

1 ACCEPTED SOLUTION

raymond_giuseppi
Active Contributor
0 Kudos

Use FM

   CALL FUNCTION 'RS_REFRESH_FROM_SELECTOPTIONS'
     EXPORTING
       curr_report           = sy-cprog
*     IMPORTING
*       SP                    =
     TABLES
       selection_table       = rsparams_tab
     EXCEPTIONS
       not_found             = 1
       no_report             = 2
       OTHERS                = 3.

Regards

1 REPLY 1

raymond_giuseppi
Active Contributor
0 Kudos

Use FM

   CALL FUNCTION 'RS_REFRESH_FROM_SELECTOPTIONS'
     EXPORTING
       curr_report           = sy-cprog
*     IMPORTING
*       SP                    =
     TABLES
       selection_table       = rsparams_tab
     EXCEPTIONS
       not_found             = 1
       no_report             = 2
       OTHERS                = 3.

Regards