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: 

Execution of report with dynamic selection.

Former Member
0 Kudos

Dear Experts,

I need to execute report 'RCATS_APPROVE_ACTIVITIES' in background in the method after populating field-'Processing status'. Also there is a option of dynamic selections for this report in menu bar. In Dynamic selections, there is a field - 'CREATED BY' which also i want to populate before execution.

Here I am able to populate field- 'Processing status' like code below:-

DATA: rspar TYPE STANDARD TABLE OF rsparams,

wa_rspar TYPE rsparams.

wa_rspar-selname = 'LDBSTAT'.

wa_rspar-kind = 'S'.

wa_rspar-option = 'EQ'.

wa_rspar-sign = 'I'.

wa_rspar-low = '10'.

APPEND wa_rspar TO rspar.

CLEAR wa_rspar.

SUBMIT RCATS_APPROVE_ACTIVITIES

USING SELECTION-SCREEN 1000

WITH SELECTION-TABLE rspar

But I am not able to populate the dynamic selection field- CREATED BY.

Please suggest(if possible with code) how to resolve this.

Regards

Nitin

1 REPLY 1

Former Member
0 Kudos

Hi,

I am also getting the similar issue, can you please provide info if you have resolved the issue.

Regards,

Chiranjeevi.

Edited by: Srikanth Kancherla on Dec 20, 2010 11:01 PM