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: 

Where's the best place to set & get parameter ID

Former Member
0 Kudos

Hi,

I have a custom Z report, with 3 fields at the selection screen. I want 2 of the fields to display value when the user first enter the selection screen. I understand that this is done through SET/GET PARAMETER ID. However, I'm not sure at which point of the report should I SET or GET them.

1 ACCEPTED SOLUTION

Peter_Inotai
Active Contributor
0 Kudos

Hi Mil,

If you use option 'MEMORY ID', it will be filled automatically and saved in the memory automatically, so you don't have to program the GET/SET yourself.

Example:

PARAMETER: p_bukrs TYPE bukrs MEMORY ID buk.

Best regards,

Peter

2 REPLIES 2

Peter_Inotai
Active Contributor
0 Kudos

Hi Mil,

If you use option 'MEMORY ID', it will be filled automatically and saved in the memory automatically, so you don't have to program the GET/SET yourself.

Example:

PARAMETER: p_bukrs TYPE bukrs MEMORY ID buk.

Best regards,

Peter

0 Kudos

Great. Thanks for your help