‎2008 Jul 09 12:06 PM
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
‎2008 Jul 09 12:23 PM
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