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

Query

cantin_daniel
Explorer
0 Likes
303

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
Read only

RaymondGiuseppi
Active Contributor
0 Likes
282

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
Read only

RaymondGiuseppi
Active Contributor
0 Likes
283

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