Application Development and Automation 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: 
Read only

Prob in debugging code in exit EXIT_SAPLF050_004

Former Member
0 Likes
564

Hi

In exit func mod EXIT_SAPLF050_004 in include ZX050U05 I've written my code. In the includ before executing my logic I've written break <userid>. But while debugging it's not working. But the include isactivated.

I'm testing it through idoc processing. In WE19. Idoc type FIDCCP02, message type FIDCC1, inbound func mod : IDOC_INPUT_FIDCC1. In this func md the exit is called.

Please help me in debugging the code in the exit.

Thanks

Moumita

2 REPLIES 2
Read only

Former Member
0 Likes
479

Hi,

Keep a break point in FM IDOC_INPUT_FIDCC1 at following perform.

PERFORM USER_EXIT_004 TABLES IDOC_DATA

USING K_MESTYP_C1 "FIDCC1

IDOC_CONTRL-DOCNUM

IDOC_CONTRL "für Basis-Idoctyp

CHANGING X-SEND_C1

IDOC_STATUS.

then check whether its getting triggered or not.

Regards,

Raju.

Read only

Former Member
0 Likes
479

Hi,

It is always good to put a break point on the first line of the include and at the point where exit is called in the Standard SAP program.Also please check if the condition is satisfied to trigger your exit.

Thnx!

Harry