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

MULTIPLE ENTRY IN FBB1

Former Member
0 Likes
616

Im using Call transaction FBB1. I have a output table, by looping it i'm updating that FBB1 so for each record its creating single document. But I need that all the record will be in 1 doc not individual one...SO FOR MULTIPLE entry i have to give entry in SAPMF05A 0330 field which will continue for that next record....how to do it??

Regards

Im using Call transaction FBB1. I have a output table, by looping it i'm updating that FBB1 so for each record its creating single document. But I need that all the record will be in 1 doc not individual one...SO FOR MULTIPLE entry i have to give entry in SAPMF05A 0330 field which will continue for that next record....how to do it??

Regards

2 REPLIES 2
Read only

former_member194152
Contributor
0 Likes
502

Hi,

For that you have populate 2 internal table one with header record other with item record and then you should use nested loop on which outer loop for header record and inner loop on item records but restriction of innerloop should be powered by header table. for example.

loop at ekko.

ebeln

aedat

loop at ekpo where ebeln = ekko-ebeln.

ebeln

ebelp..(will take all item for that po number).

matne

endloop.

-


-


-


endloop.

rewards if helpful.

Regards

Gagan

Read only

0 Likes
502

DO ANYONE HAVE EXAMPLES ON MULTIPLE BDC ENTRY IN FBB1 OR ANU OTHER TRANSACTION?