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: 

need to get the parameter value which has assigned in SU01 to report

Former Member
0 Kudos

Hi experts,

I need to get the parameter 'PER' value into a report parameter, which has assigned a value in parameter tab of (user maintenance) SU01.

this is my program.

********************************************

parameters p_pno type pernr-pernr.

INITIALIZATION.

     SET PARAMETER ID 'PER' FIELD p_pno.

START-OF-SELECTION.
    
     GET PARAMETER ID 'PER' FIELD p_pno.

     PERFORM ****** using p-pno.

*********************************************

But I am unable to get the parameter value to p_pno. Any ideas?

Thanks in advance.

Suresh.

1 REPLY 1

ThomasZloch
Active Contributor
0 Kudos

Hmm, I think your SET should be a GET, and the second GET can be removed (or changed into SET, if you want to override the SU01 maintained value).


Thomas

P.S. "question" status removed due to basic nature