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 Inbound Idoc

Former Member
0 Likes
476

Hi friends,

I have a small problem, actually one of my inbound idoc successfuly processed. But there is one field called IBAN, its for vendor master bank details. its not populated in SAP. But the segment having the value. Its giving problem for one particular vendor. So how to find why its not populated in SAP? Where we need check. Because IDOC having proper values, one of field value only not populated in sap. Pls help this issue.

Mohana

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
404

Open include in SE38 LKD02F01 and put a break point on line 3943 or following piece of code:

IF e1lfbkm-iban <> c_nodata.

MOVE e1lfbkm-iban TO f_lfbk_iban-iban.

WRITE f_lfbk_iban-iban TO blfbk_iban-iban.

ENDIF.

and check what value is getting populated when processing IDOC for that particular vendor.

Hi friends,

I have a small problem, actually one of my inbound idoc successfuly processed. But there is one field called IBAN, its for vendor master bank details. its not populated in SAP. But the segment having the value. Its giving problem for one particular vendor. So how to find why its not populated in SAP? Where we need check. Because IDOC having proper values, one of field value only not populated in sap. Pls help this issue.

Mohana

1 REPLY 1
Read only

Former Member
0 Likes
405

Open include in SE38 LKD02F01 and put a break point on line 3943 or following piece of code:

IF e1lfbkm-iban <> c_nodata.

MOVE e1lfbkm-iban TO f_lfbk_iban-iban.

WRITE f_lfbk_iban-iban TO blfbk_iban-iban.

ENDIF.

and check what value is getting populated when processing IDOC for that particular vendor.