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

Not getting most current data from BPS

Former Member
0 Likes
701

Hi All,

I am extracting data from the BI transactional InfoCube (the BPS data) through an ABAP program to ECC.

But I am not getting the most current data. I mean when the BI request is open still then unable to get those data.

Please suggest.

Thanks

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
674

Hi Balaram,

use RSDRI_INFOPROV_READ_RFC function module to read BI / BW Data from ECC .

Regards,

Kaushik

4 REPLIES 4
Read only

Former Member
0 Likes
675

Hi Balaram,

use RSDRI_INFOPROV_READ_RFC function module to read BI / BW Data from ECC .

Regards,

Kaushik

Read only

0 Likes
674

Dear Kaushik,

Thanks for your reply. I am using the same programme. But I am not getting the most current record.

Read only

0 Likes
674

Dear Balaram,

set function module parameter as per code below...

CALL FUNCTION 'RSDRI_INFOPROV_READ_RFC' DESTINATION LV_RFCCON

EXPORTING

I_INFOPROV = ZINFO_PR

I_REFERENCE_DATE = SY-DATUM "deadline

I_AUTHORITY_CHECK = 'R' "Check access should be made ##read / write / none? ('r' = READ , 'w' = WRITE , '' = NONE)

I_USE_DB_AGGREGATION = 'X' "Aggregation is performed on DB ('X' = TRUE , '' = FALSE)

I_ROLLUP_ONLY = '' "(only infocubes): Data> ROLLUP read yes / no '' = NO

I_RESULTTYPE = 'V' "Return to E_T_RFCDATA, E_T_RFCDATAV (V), E_RFCDATA_UC (U

I_DEBUG = 'X' "Debugging mode on / off?

set I_ROLLUP_ONLY parameter false.

Regards,

Kaushik

Read only

0 Likes
674

Hi,

Thanks for Your reply.

It's a temporary solution only. When We will use aggrigates or in terms of other Info Providers, How it could work?

And why you make rollUp false, though you are not doing any in BI?

Balaram