‎2009 Mar 10 3:34 PM
Hi Experts,
I am having a SELECTION SCREEN with Parameters for Company Code(BUKRS) & Purch Org (EKORG).
I need to default the values of these fields with their respective user parameters for BUKRS & EKORG.
manintained iwhich are 'EKO' & 'BUK' in my program.
How can i do that?
Thanks
Dan
‎2009 Mar 10 3:38 PM
HI,
Use the GET PARAMETER ID in the INITIALIZATION EVENT.
INITIALIZATION.
GET PARAMETER ID 'EKO' FIELD p_ekorg.
GET PARAMETER ID 'BUK' FIELD p_BUKRS.
Edited by: Avinash Kodarapu on Mar 10, 2009 9:09 PM
‎2009 Mar 10 3:38 PM
HI,
Use the GET PARAMETER ID in the INITIALIZATION EVENT.
INITIALIZATION.
GET PARAMETER ID 'EKO' FIELD p_ekorg.
GET PARAMETER ID 'BUK' FIELD p_BUKRS.
Edited by: Avinash Kodarapu on Mar 10, 2009 9:09 PM
‎2009 Mar 10 3:44 PM
‎2009 Mar 10 3:43 PM
Hi,
If the user maintains these parameters in their profile with the values , then the values will be populated from there.
System->User Profile-> goto the parameters tab there you can ask the user to maintain the parameters you mentioned with the default value they need and save this.
Now when that user runs the report, the values from the user profile will be copied to the respective selection screen parameters
regards,
Advait
‎2009 Mar 10 4:14 PM