on ‎2019 Jul 19 4:47 AM
We tried to export transaction data from a BPC cube using transformation rules and end routine. the package actually hit end routine thrice , due to the fact it process 40000 records at a time,
Exported file has duplicate records, How to solve this issue in BPC ? is there a standard way in BPC to acheive this.
I have checked similar threads and SAP notes related to this. We don't want to store the intermediate results in BPC.
Request clarification before answering.
1. Simple! You can export PERIODIC Measure selecting parent members of some hierarchy. Aggregation will happened on BPC level. No aggregation in badi...
2. Custom logic badi is just a badi that can be launched from script logic. Using QUERY=OFF and WRITE=OFF parameters nothing will be read and written using standard processing. You can write your own code to read data and write it to text file. For example, I am using custom logic badi to export data to external MS SQL server. The benefit of custom logic badi is that I can use script logic with complex SELECT's to specify badi parameters.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Vadim,
Option 1 : even though select parent members , due to the limitation of 40000 processing records, i m afraid it might end in duplication again in the export file after the end rouotine .
thats why tried the second option, i could able to implement and got the desired output . It is very fast compared to option 1.
thanks very much for sharing the useful links.
bi.abaper
1. "i m afraid it might end in duplication again" - no issues!
2. Good option due to additional benefits.
For the option 2, Yes agreed , txt file can be generated and send to application server AL11 as a text file.
But the requirement is , After the run package is finished using custom logic , export data is to open the file in the presentation screen like an excel or CSV file.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi Vadim,
Could you pl. provide more details to explore on option 1 and option 2.
Usually custom logic BADI is designed to post the data back to Real time Cube..
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Number of options:
1. Use hierarchy (may be new one) to aggregate and export with required measure.
2. Write CUSTOM logic badi to export data to file.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
| User | Count |
|---|---|
| 7 | |
| 6 | |
| 4 | |
| 2 | |
| 2 | |
| 2 | |
| 2 | |
| 1 | |
| 1 | |
| 1 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.