Hello gurus,
i have to create outbound delivery idoc for EXIT_SAPLV56K_002 (Enhancement V56K0001).
we want to add Z1STATUS01 Segment to E1EDL24.
*&---------------------------------------------------------------------*
*& Include ZXTRKU02
*&---------------------------------------------------------------------*
DATA:lv_vbup LIKE vbup.
DATA:ls_Z1STATUS01 TYPE Z1STATUS01.
DATA: w_data_vbak LIKE LINE OF data-tab_vbak,
w_vbak LIKE vbak.
SELECT * FROM vbup INTO lv_vbup
WHERE vbeln = w_vbak-vbeln.
ENDSELECT.
CASE IDOC_DATA-segnam.
WHEN 'E1EDL24'.
IDOC_DATA-segnam ='Z1STATUS01'.
ls_Z1STATUS01-LFGSA = lv_vbup-LFGSA.
move ls_Z1STATUS01 to IDOC_DATA-sdata.
APPEND IDOC_DATA.
ENDCASE.
When i try to test the user exit and also tried " break points at statement " in debugging it is not going to the exit EXIT_SAPLV56K_002 and IDOC data is generated without Z1STATUS01.
Is there any other way how can i check that....