2008 Feb 08 11:25 AM
Hi
I am implementing the badi ME_PROCESS_PO_CUST in the ZMM_FOR_TAXCODE
I need to access field MWSKZ which is in GET_PREVIOUS_DATA method of PROCESS_ITEM
Can u plz write the proper syntax
Points will be awarded
Hi
I am implementing the badi ME_PROCESS_PO_CUST in the ZMM_FOR_TAXCODE
I need to access field MWSKZ which is in GET_PREVIOUS_DATA method of PROCESS_ITEM
Can u plz write the proper syntax
Points will be awarded
2008 Apr 29 6:00 AM
2008 Apr 29 6:06 AM
Hello Narendra
This is quite simple (see below):
method IF_EX_ME_PROCESS_PO_CUST~PROCESS_ITEM.
DATA: ls_item TYPE mepoitem.
CALL METHOD im_item->get_previous_data
IMPORTING
ex_data = ls_item.
IF ( ls_Item-mwskz = '...' ).
...
ENDIF.
endmethod.
Regards
Uwe
| User | Count |
|---|---|
| 3 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 | |
| 1 |