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: 

Question on SET PARAMETER ID

Former Member
0 Kudos

I'm doing set parameter

DATA: lv_purch_order LIKE ztmm_leg_bu_data-sap_ebeln.

CONSTANTS: c_porder(6) TYPE c VALUE 'PORDER'.

SET PARAMETER ID c_porder FIELD lv_purch_order

in user exit i want to use

GET PARAMETER ID c_porder FIELD lv_purch_order

with same declaration.

I'm not getting the values in here.

FYI,,

Same get parameter it is working in near to set paramerter id place..

but the value is not picking in user exit why?

Kumar

1 ACCEPTED SOLUTION

Former Member
0 Kudos

Have you maintained the PID in table TPARA?

Rob

3 REPLIES 3

Former Member
0 Kudos

Hi Kumar,

Use Import & Export statement.

Former Member
0 Kudos

Have you maintained the PID in table TPARA?

Rob

0 Kudos

Set parameter is user specific and session specific.

You can retrieve the value using get parameter in the same session.

Are you calling the get parameter in the same session or different session?

Thanks,

Vamshi