Purchasing user exit / field exit
Hi all,
I created a field ZZproda in EKKO IN INCLUDE CI_EKKODB.
In transaction me22:
I want to capture the value entered in eikp-proda.
I created a field exit for this fiels.
with the following code:
DATA w_date TYPE eikp-proda.
output = w_date = input.
EXPORT w_date TO MEMORY ID 'Z_MMPO_PRODA'.
*Added for release stategy will be imported in sapmm06_008(zxm06u37)
EXPORT w_date TO MEMORY ID 'Z_JCB_PRODA'.
program: SAPLV50E
Screen: 0430
I try to use an import in sapmm06_008(zxm06u37).
data:wa_zzproda like eikp-proda.
import wa_zzproda from memory id 'Z_JCB_PRODA'.
e_ci_ekko-ZZPRODA = wa_zzproda.
VALUE IS BLANK after import ?How can i test field exit(no debug allowed).
Thanks,
Ken W
Did you activate the field exit? You can put in a message or write dataset statement to print out debugging statements and values.