Dear ABAP experts,
I am Functional consultant & erquest you to kindly help me.
We are doing a enhacement using SAP STD enhancement MWMTO001 Enhancements for end of transfer order generation this comes under SMOD;
and this has component Function module in it EXIT_SAPLL03T_001, User Exit at End of TO Creation (in Update Task).
When I double click on this function module it is having below code
FUNCTION EXIT_SAPLL03T_001.
*"----------------------------------------------------------------------
*"*"Globale Schnittstelle:
*" IMPORTING
*" I_LTAK_VB LIKE LTAK_VB STRUCTURE LTAK_VB
*" TABLES
*" T_LTAP_VB STRUCTURE LTAP_VB
*"----------------------------------------------------------------------
INCLUDE ZXLTOU01.
ENDFUNCTION.
and the include ZXLTOU01 is also having somme code and it is also active
*&---------------------------------------------------------------------*
*& Include ZXLTOU01
*&---------------------------------------------------------------------*
* Program Name : IDOC Extension for WM Information *
* Item Confirmation *
*&---------------------------------------------------------------------*
* Only for Japan Wharehouses
IF i_ltak_vb-lgnum(2) EQ 'JP'.
DATA: l_zsyst TYPE t327a-zsyst.
LOOP AT t_ltap_vb.
CLEAR l_zsyst.
SELECT SINGLE zsyst
INTO l_zsyst
FROM t327a
WHERE lgnum EQ i_ltak_vb-lgnum
AND vltyp EQ t_ltap_vb-vltyp
AND nltyp EQ t_ltap_vb-nltyp.
* Only Execute for This Partner Profile
* SVF Forms
IF l_zsyst EQ 'WM001LJP'.
UPDATE ltap SET kzsub = ''
WHERE lgnum EQ i_ltak_vb-lgnum
AND tanum EQ t_ltap_vb-tanum
AND tapos EQ t_ltap_vb-tapos.
ENDIF.
ENDLOOP.
*
ENDIF.
I have created Functional specs but unfortunately our ABAP team is not good enough to catch it. Meaning they are asking me what ahould be the break point etc more technical things that I am not aware.
Can you please help me to point out where we put a breakpoint so that it can stop while saving the transfer order.
Appreciate your Help
Kind Regards
Hiren Panchal