
WDA window close for UWL item
July 16, 2012
Send SMS using OOPS CL_BCS
September 24, 2012Req.: Movement Type field is Defaulted, we need to modify the Movement Type based on Order type(caufvd-auart) & Item Category ( resbd-postp) and based on Order Quantity ( resbd-menge ).
- Goto SE38 ‘SAPLCOMD’ and search for ‘COMPLETE_RESB’ Subroutine .
- Goto last Enhancement-Point create implementation ‘z_complete_resb_mvtpm09’
- Write your Business Logic there
Sample Source Code:
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 |
enhancement 1 z_complete_resb_mvtpm09. "active version * "Kaleel:->16.07.2012:8000[User Exit check for Annual Turn around P]-8000 if caufvd–auart = ‘PM09’ and resbd–postp = ‘L’. if resbd–menge >= 0. resbd–bwart = ‘Z03’. elseif resbd–menge < 0. resbd–bwart = ‘Z04’. endif. endif. endenhancement. |