cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

integrate Business objects with .NET

Former Member
0 Likes
1,059

Hi,

I am trying to integrate Business objects with .NET.

I have reports in Business objects report developed using Business Objects Desktop Intelligence and intend to invoke them using windows application with c# as code behind.

Any pointers in the right direction would be helpful.

Thanks

Babu

View Entire Topic
Former Member
0 Likes

Hi,

I resolved the issue , first we need to pass the logon credintilas and then we need to create the object for ther .rep

objBusinessObject = new busobj.Application();
                objBusinessObject.Logon(strUserName, strPassword, strServerName, strConnectionMode, false, false);
                objBusinessObject.Visible = false;

                              objBusinessObject.Documents.Open(@"C:\Sample.rep", true, true, null, null);

Thanks

Babu

Former Member
0 Likes

Hi Babu,

I am on the same track,Could you shower some light on integrating Bo reports to .net? If you have some documentation..please refer them. Some one told me that we have to use web services for integrating.So I am searching for web services and came across your post...Relieved on seeing your post.Thank you.

Your help is much appreciated...

Former Member
0 Likes

The place to start my be with looking at sample apps. You don't neccessarily have to go with web services, but if that is something you'd be interested in, see the sample apps here;

https://wiki.sdn.sap.com/wiki/display/BOBJ/GettingStartedwiththeWebServicesSDK

These are good resources to check out;

http://help.sap.com/businessobject/product_guides/xir2PP/en/qaaws.pdf

http://devlibrary.businessobjects.com/BusinessObjectsXIR2SP2/en/en/WS_SDK/wssdk_server/default.htm

BOE sample apps are here;

https://wiki.sdn.sap.com/wiki/display/BOBJ/BusinessObjectsSDKSampleApplications

Dev library is here;

http://devlibrary.businessobjects.com/BusinessObjectsXIR2SP2/en/devsuite.htm

Ludek