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 with IDOC_INPUT_DELINS_START --> CUSTOMER-FUNCTION

Former Member
0 Likes
827

Hello,

we use the function module IDOC_INPUT_DELINS_START for processing incoming DELINS idocs. We use the customer function '003' ( Exit EXIT_SAPLVED4_003) to change the field refgrp in table t_idoc_contrl.

Coding in customer exit: t_idoc_contrl-refgrp = werks.

DATA: t_idoc_contrl-refgrp = '0021'.

The coding in customer function works right. I have a problem if i process the coding after the customer exit, because the entry in field refgrp will be deleted.

DATA: idoc_contrl-refgrp = '0021'.

SAP Standard coding: read table idoc_contrl index 1.

DATA: idoc_contrl-refgrp = ''.

What is the reason for this problem?

Many thanks

Andreas Walter

Hello,

we use the function module IDOC_INPUT_DELINS_START for processing incoming DELINS idocs. We use the customer function '003' ( Exit EXIT_SAPLVED4_003) to change the field refgrp in table t_idoc_contrl.

Coding in customer exit: t_idoc_contrl-refgrp = werks.

DATA: t_idoc_contrl-refgrp = '0021'.

The coding in customer function works right. I have a problem if i process the coding after the customer exit, because the entry in field refgrp will be deleted.

DATA: idoc_contrl-refgrp = '0021'.

SAP Standard coding: read table idoc_contrl index 1.

DATA: idoc_contrl-refgrp = ''.

What is the reason for this problem?

Many thanks

Andreas Walter

1 REPLY 1
Read only

Former Member
0 Likes
620

Did you modify the internal table with the values being passed?