cancel
Showing results for 
Search instead for 
Did you mean: 

Cube read

raguraman_c
Active Contributor
0 Kudos

Hi experts,

I want to read an infocube in SCM5.0.

1. What is the function module that i can use?

2. I know the datasource as well, can i get the data out into a list.

Please reply back. Points guaranteed.

--Ragu

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos
raguraman_c
Active Contributor
0 Kudos

Hi,

Thanks for your reply. The problem its a remote cube. I want to know, if it is possible to view data of remote cube?

--Ragu

Answers (1)

Answers (1)

Former Member
0 Kudos

Here is one that I use - RSDRC_CUBE_DATA_GET, set i_cubetype = 'R'. You will need to do some prep work to format the selection, Char and KF tables but there is no easy way to code against an infocube. Perform a where used to look at SAP code or debug into transaction listcude to see how I_TH_SFC, I_TH_SFK and I_TSX_SELDR are populated. There are many formats for the output data - I always use ABAP-TABLE (i_returntp) to manipulate data in a program. You may also need to play with some of the import parameters.

Here are a few other FM's: /SAPAPO/DPBW_CUBE_READ, RSDRI_INFOPROV_READ - basically the same issue applies for the KF, Char and selection tables and import parameters.

Andy