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

BDC for FB01

Former Member
0 Likes
1,333

Hi all,

Now i am doing BDC for FB01.If any BAPI OR Functional Module avilable instead of doing bdc.Please send me the details.

With Thanks ,

Priya.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,296

Priya,

look at once BAPI_ACC_DOCUMENT_POST.

Amit.

Hi all,

Now i am doing BDC for FB01.If any BAPI OR Functional Module avilable instead of doing bdc.Please send me the details.

With Thanks ,

Priya.

11 REPLIES 11
Read only

Former Member
0 Likes
1,297

Priya,

look at once BAPI_ACC_DOCUMENT_POST.

Amit.

Read only

0 Likes
1,296

Try FM POSTING_INTERFACE_DOCUMENT

try these:

BAPI_ACC_GL_POSTING_POST

BAPI_ACC_BILLING_POST

BAPI_ACC_INVOICE_RECEIPT_POST

Please try using program RFBIBL00 .. direct input method

\[removed by moderator\]

Edited by: Jan Stallkamp on Jun 10, 2008 1:40 PM

Read only

0 Likes
1,296

Hi Murali Poli ,

Plz tell me how to use this program RFBIBL00.

With Thanks ,

Priya.

Read only

0 Likes
1,296

Hi Priya,

I have done this few days back You can use the BAPI BAPI_ACC_DOCUMENT_POST.

However, You will not find the posting key in the BAPI structures..but you can still pass the posting keys by using a badi implementaion..Please let me know if you need any further info..This definetly works..

Regards,

sandeep

Read only

0 Likes
1,296

Hi sandeep,

Thank you for your reply.Can you sent code for me.

Priya.

Read only

0 Likes
1,296

Yes, I will try to send you ...but you want to use the BAPI for posting accounts payable or recevable?

Rgds,

Sandeep.

Read only

0 Likes
1,296

Hi Sandeep,

Thanks for your reply,I want use BAPI for posting accounts payable only.Please sent me the code.

With Regards,

Priya.M

Read only

Former Member
0 Likes
1,296

/message/3236279#3236279 [original link is broken]

\[removed by moderator\]

Edited by: Jan Stallkamp on Jun 10, 2008 1:39 PM

Read only

Former Member
0 Likes
1,296

Hi,

Use the Bapi 'BAPI_ACC_DOCUMENT_POST'

Have a look..............

CALL FUNCTION 'BAPI_ACC_DOCUMENT_CHECK'

EXPORTING

documentheader = it_hdr

TABLES

accountgl = it_gl

ACCOUNTRECEIVABLE = act_rec

currencyamount = it_curr

return = t_result.

LOOP AT t_result WHERE ( type = 'E' OR

type = 'A' ).

EXIT.

ENDLOOP.

IF sy-subrc 0.

REFRESH t_result.

CALL FUNCTION 'BAPI_ACC_DOCUMENT_POST'

EXPORTING

documentheader = it_hdr

TABLES

accountgl = it_gl

ACCOUNTRECEIVABLE = act_rec

currencyamount = it_curr

return = t_result.

*

CALL FUNCTION 'BAPI_TRANSACTION_COMMIT'.

ENDIF.

Regards,

Raj.

Read only

former_member182354
Contributor
0 Likes
1,296

Hi Priya,

BAPI_ACC_DOCUMENT_POST....Use this BAPI and this will exactly match your requirement.

Raghav

Read only

Former Member
0 Likes
1,296

Hi Priya,

I am working on a requirement of FB01 posting. Can you please help me with the code for the same.

Thanks,

Karthik