cancel
Showing results for 
Search instead for 
Did you mean: 

MEPO1344-STEUC -- Table Details at PO line item

Hi Experts

i need to fetch the below field and output it in a Report and a Form

MEPO1344-STEUC.

I do understand that in MARC -STEUC when the field it maintained it does get reflected in the "India " tab at PO line item level. However we do have sceanrio's where in this field also gets populated when their is no material code and only text item PO's is created,

I need to know from which Table can i fetch the information of control code in such cases, as MEPO1344-STEUC is a structure

Thanks

VC

Accepted Solutions (1)

Accepted Solutions (1)

diana_dai
Active Participant

Hello Vikrant,

It is possible that the STEUC field display the data from field J_1BNBM as we can see in codes of program LMEGUICII:

--------------------

READ TABLE my_dynpro_fields INTO ls_dynpro_entry
WITH KEY fieldname = 'STEUC'.
IF sy-subrc = 0.
ls_dynpro_entry-fieldname = 'J_1BNBM'.
MODIFY my_dynpro_fields FROM ls_dynpro_entry INDEX sy-tabix.
ENDIF.

--------------------

Field J_1BNBM is determined in LMEPOF42. If there is no material code, please check the material goup and check table T023, field J_1BNBM for the material group. If T023-J_1BNBM contains the data, it could be displayed in screen field MEPO1344-STEUC.

Regards,

Diana

Answers (1)

Answers (1)

0 Kudos

Thanks Diana !