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

Problem in EDI EXIT

Former Member
0 Likes
1,051

Hi all,

I've activated the enhancement SIDOC001, component EXIT_SAPLEDI1_001 because I need to check a field in the control segment (EDIDC table) and change the status of the idoc.

Actually, to make a test, I've implemented this simple code:

TABLES: edidc.

SELECT SINGLE * FROM edidc

WHERE arckey = control_in-arckey.

IF sy-subrc = 0.

control_out-arckey = '12345'.

ENDIF.

Once I've activated it, no idocs are entering in my SAP system even if everything seems correct, no exception has raised or log is present in the elaboration.

What could it be?

Thanks in advance!

Anna

Hi all,

I've activated the enhancement SIDOC001, component EXIT_SAPLEDI1_001 because I need to check a field in the control segment (EDIDC table) and change the status of the idoc.

Actually, to make a test, I've implemented this simple code:

TABLES: edidc.

SELECT SINGLE * FROM edidc

WHERE arckey = control_in-arckey.

IF sy-subrc = 0.

control_out-arckey = '12345'.

ENDIF.

Once I've activated it, no idocs are entering in my SAP system even if everything seems correct, no exception has raised or log is present in the elaboration.

What could it be?

Thanks in advance!

Anna

2 REPLIES 2
Read only

Former Member
0 Likes
943

Problem solved!

Have a nice day!

Read only

Rohit77
Newcomer
0 Likes
853

Hi,

I am also getting similar dump. Could you please provide workaround on this.