‎2007 Aug 14 5:41 AM
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
‎2007 Aug 14 5:44 AM
‎2007 Aug 14 5:46 AM
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