Application Development and Automation 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: 
Read only

Question on SET PARAMETER ID

Former Member
0 Likes
724

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
Read only

Former Member
0 Likes
694

Have you maintained the PID in table TPARA?

Rob

3 REPLIES 3
Read only

Former Member
0 Likes
694

Hi Kumar,

Use Import & Export statement.

Read only

Former Member
0 Likes
695

Have you maintained the PID in table TPARA?

Rob

Read only

0 Likes
694

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