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

user status validation

Former Member
0 Likes
427

hi all

i need to validate user status on transaction iw32 . when a user selects a status some validations need to be done .

is there a user exit for the same .

Any pointers will be really helpfull

navjot

2 REPLIES 2
Read only

Former Member
0 Likes
376

EXIT_SAPLCOIH_012

Read only

Former Member
0 Likes
376

Then try with BADI IBAPI_ALM_ORD_MODIFY

You can capture any data in the transaction that is available in the stack during run time in the user-exit.

The below is the sample code.

FIELD-SYMBOLS: <FS> TYPE ANY.

DATA: FIELD(30) VALUE '(SAPMV56A)VTTK-TKNUM'.

ASSIGN (FIELD) T0 <FS>.

Read the below weblog for more help.

/people/brad.williams/blog/2005/04/25/userexits--how-do-i-access-inaccessible-data

Reward points