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

iw21 program maping

Former Member
0 Likes
519

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

2 REPLIES 2
Read only

Former Member
0 Likes
422

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.

Read only

0 Likes
422

Dear,

I'm really thank full to you man...

regards,

bab