‎2008 Jul 24 2:37 AM
Hello experts,
I'm currently doing a user-exit to implement an external batch number logic. I'm using EXIT_SAPLV01Z_002 for this. However, part of the batch numbering logic requires that I get release date from CO01/CO02 "general tab" section. This is CAUFVD-FTRMS.
Is there a way to get CAUFVD-FTRMS from within the user-exit? I'm using field-symbols below:
tx_resbd = '(SAPLCOKO1)caufvd'.
ASSIGN (tx_resbd) TO <fs>
But the code is not working.
I hope you can help me with this matter. Thanks in advance!
‎2008 Jul 24 6:50 AM
Hi ,
Use this code .
tx_resbd = '(SAPLCOKO1)AFKO[]'.
ASSIGN (tx_resbd) TO <fs>
FTRMS field is there in table AFKO .
Please reward if useful.
‎2008 Jul 24 10:08 AM
thanks for the reply, however the code does not work.
AFKO is not visible from within the user-exit.
need some more advice and help.
‎2008 Jul 26 11:32 AM
>
> Please reward if useful.
Please read [the rules|https://www.sdn.sap.com/irj/sdn/wiki?path=/display/home/rulesofEngagement] about "points begging". In future, points might also be removed (initialized...) for ignoring the rules.
I am sure there are some "rules" about ASSIGN as well...
Julius