‎2010 Jan 20 9:08 AM
hi all,
I'm working with IW21 PM notification enhancement program. Enhancement name is SAPLXQQM and screen number 100.
In that screen i added Work permit input fields and and check box fields. i have to GET the notification type and Field displaying user status field value.
But problem is notification type and Field displaying user status field is located in the program SAPLIQS0. One the program SAPLXQQM is trigger the value of the notification type and user status field is disappearing.
How i'll get that value into my program SAPLXQQM? how we will map this SAPLIQS0 and SAPLXQQM?
If any one knows kindly give the solution immediate.
regards,
bab
‎2010 Jan 20 9:13 AM
Hi ,
Try like below.
DATA:
l_prog(50) TYPE C VALUE u2018(SAPMV45A)XVBAP[]u2019,
lt_xvbap TYPE STANDARD TABLE OF vbapvb,
ls_xvbap LIKE LINE OF lt_xvbap.
FIELD-SYMBOLS: <xvbap>.
Get xvbap table from way back in call stack
ASSIGN (l_prog) TO <xvbap>.
IF sy-subrc NE 0.
EXIT.
ELSE.
lt_xvbap[] = <xvbap>.
Now we xvbap table stored in a local variable and can read from it as needed
ENDIF.
Above is for sales order,modify as per your requirement.
Regards,
Ashok.
‎2010 Jan 20 10:45 AM