‎2011 Dec 28 9:34 AM
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
‎2011 Dec 28 10:54 AM
Hi Balaram,
use RSDRI_INFOPROV_READ_RFC function module to read BI / BW Data from ECC .
Regards,
Kaushik
‎2011 Dec 28 10:54 AM
Hi Balaram,
use RSDRI_INFOPROV_READ_RFC function module to read BI / BW Data from ECC .
Regards,
Kaushik
‎2011 Dec 28 10:57 AM
Dear Kaushik,
Thanks for your reply. I am using the same programme. But I am not getting the most current record.
‎2012 Jan 02 9:49 AM
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
‎2012 Jan 02 9:54 AM
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