Application Development 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: 

Implementation of BADI ME_GUI_PO_CUST

Former Member
0 Kudos

We want to add warranty subscreen on the item detail tab by using BADI ME_GUI_PO_CUST. When i deactivate standard implementation ZSCM_IM_WARRFIELDS & activate my implementation, it does not show my subscreen that i have created below.

DATA: ls_subscriber LIKE LINE OF re_subscribers.

We want to add a customer subscreen on the item detail tab

CHECK im_application = 'PO'.

CHECK im_element = 'ITEM'.

CLEAR re_subscribers[].

ls_subscriber-name = SUBSCREEN1.

ls_subscriber-dynpro = '0500'.

ls_subscriber-program = 'SAPLZSCM_FG_WF'.

ls_subscriber-struct_name = 'CI_EKPODB'.

ls_subscriber-label = text-001.

ls_subscriber-position = 3.

ls_subscriber-height = 10.

APPEND ls_subscriber TO re_subscribers.

Please help me.

2 REPLIES 2

Former Member
0 Kudos

Make sure 'SAPLZSCM_FG_WF' is activated

Former Member
0 Kudos

Hi Abhishek,

The code looks fine. But please check whether you have appended the 'CI_EKPODB' structure in the EKPO table and adjusted the table in SE14.

Do adjust and activate database with save option.

But while you are adjusting the table make sure you dont select the delete option as it will delete all you data.