‎2006 Nov 13 3:37 PM
Hi,
In IW32 transaction, when I press save button, I have to stop this process and remain in the screen if I change values for fields GSTRP and GLTRP when REVNR is not initial.
I'm trying using some user exits but I'cant make it works. How can I do that ?
Regards,
Leonardo.
‎2006 Nov 13 3:58 PM
Hi Leonardo,
Which user-exit you are using?
I think you can use user-exit EXIT_SAPLCOIH_009 (Enhancement IWO10009 PM Order: Customer Check for 'Save' Event
). All fields are available in here (CAUFVD_IMP).
You may need to write code like following.
IF NOT CAUFVD_IMP-REVNR IS INITIAL.
.....
....
MESSAGE E398(00) 'UPDATE FIELDS'
ENDIF.
Thanks
Ramakrishna
‎2006 Nov 13 6:40 PM
Hi Ramakrishna ,
First, I want to say thanks for your help.
Apparently, the problem was solve but the screen remains grey. How can I do change it?
Regards,
Leonardo.
‎2006 Nov 14 2:47 PM