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

sap integration with third party software

Former Member
0 Likes
934

hey all,

we are actually trying to integrate sap with EAI( IBM WEBSPERE third party software) and here date needs to flow from EAI - SAP.

and we have done that through BAPI and in the EAI we got a message saying that the data base has been created but infact when i am trying to check the same in my sap screen am not able to find it i have also checked the database table but its not available .

do anyone has any idea as to where do we exactly go and search for a particular data once its transferred from a third party software????

any help is highly appreciated

Thanks & Regards,

Vinila Kanakala.

hey all,

we are actually trying to integrate sap with EAI( IBM WEBSPERE third party software) and here date needs to flow from EAI - SAP.

and we have done that through BAPI and in the EAI we got a message saying that the data base has been created but infact when i am trying to check the same in my sap screen am not able to find it i have also checked the database table but its not available .

do anyone has any idea as to where do we exactly go and search for a particular data once its transferred from a third party software????

any help is highly appreciated

Thanks & Regards,

Vinila Kanakala.

2 REPLIES 2
Read only

Jelena_Perfiljeva
Active Contributor
0 Likes
531

COMMIT WORK is necessary after most BAPIs. What you describe is usually a result of calling BAPI without COMMIT WORK. The message tells you that document was created, but when you look into database, the document is not there.

I'm not sure how to resolve this in case of the 3rd party software though. Maybe instead of just using a plain BAPI you will need to write a custom function module, which will capp BAPI and do COMMIT.

Hope this helps.

Read only

0 Likes
531

if the problem is with COMMIT then you can call BAPI_TRANSACTION_COMMIT from external system to commit the transaction..