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

cekko

Former Member
0 Likes
348

hi experts

We need to add actual price difference For release strategy of PO.

the structure cekko is not available in user-exit exit_sapmm06E_012 where we have the prices. (KOMV)

is there any way to calculate price difference and use it for release strategy in the 4 fields available for user fields in cekko.

thanks,

Amit

1 REPLY 1
Read only

Former Member
0 Likes
299

there is a way to access the global memory of the program. so even if it is not in the program scope but exist in the memory stack u can use it.

for this u only need to know the program name where this structure exist then use the field symbols

FIELD-SYMBOLS <f_cekko> type cekko.

ASSIGN ('(PROGRAM_NAME)CEKKO') to <f_cekko>.

then use the field symbol as a normal variable.

Edited by: Craig Cmehil on Jul 9, 2008 2:49 PM