Application Development 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: 

Probelm with BDC FB70

Former Member
0 Kudos

Hi all,

I am having a records in the file which is having the vendor invoice details with header and item details and i have to post it through BDC.

I am having a doubt like for example a single header record has got three item details .

My file contents are like this


Customer   reference   GL      Costcenter.
123            TRY          56       45
123            TRY          57       46
123            TRY          58       47
124            YRT          59       60  

If you look in to FB70 customer and reference will be in header and GL and costcenter will be in item.

so if i want to post means it has to come like this in the transaction.


Customer   reference   GL      Costcenter.
123            TRY          56       45
                                  57       46
                                  58       47
124            YRT          59       60   

So it has to check for the common customer and reference and if it's there means all the item records sharing the same customer and reference should get grouped under these common header.

Can any one please let me know how populate the records?

Edited by: arun joseph on Oct 4, 2008 2:35 PM

2 REPLIES 2

Former Member
0 Kudos

Hi,

Why don't use AT NEW or AT END events in BDC program? This will solve your problem.

Regards,

Sunil

0 Kudos

Can you please give some sort of examples ?