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

Stop save process at IW32

Former Member
0 Likes
674

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.

3 REPLIES 3
Read only

venkata_ramisetti
Active Contributor
0 Likes
487

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

Read only

Former Member
0 Likes
487

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.

Read only

0 Likes
487

Thanks a lot.