cancel
Showing results for 
Search instead for 
Did you mean: 

BW Cube connection with C#

Former Member
0 Kudos

Hey hi all!,

the past two days i have been looking for how to connect or extract data of a BW cube from C#.

It doesn't seem to exist documentation about how to do this, and due that i am new on this i need help and orientation. somebody knows how to do it or has a guide ?

Thanks.

Accepted Solutions (0)

Answers (1)

Answers (1)

hynek_petrak
Active Participant
0 Kudos

Hi, have you succeeded to fetch required data from within the SE37 and the below BAPIs?

If yes, you're almost there ....


RfcDestination dest = RfcDestinationManager.GetDestination(TARGET_SYSTEM);

IRfcFunction fn = dest.Repository.CreateFunction("RSDRI_INFOPROV_READ_RFC");

fn.SetValue("I_INFOPROV", "xxxxx");

fn.SetValue("I_REFERENCE_DATE", "22.7.2014");

.......

fn.Invoke(dest);

Former Member
0 Kudos

Hi Hynek, thank you for answer me , i'm trying it right now, it seems to be exactly what i was looking for.

In a while i'll tell you if it worked. thank you so much.