cancel
Showing results for 
Search instead for 
Did you mean: 

Function to write data from internal table to the BPC application

Former Member
0 Kudos

Hi, experts!

Please,  tell me BPC ABAP function to write data from internal table to the BPC application.

Accepted Solutions (1)

Accepted Solutions (1)

former_member200327
Active Contributor
0 Kudos

Hi Pavel,

Usually Method WRITE_BACK_INT of Class CL_UJR_WRITE_BACK is used for that, but if you want to do this from Custom Logic BADI I'd recommend just setting WRITE = ON.

Regards,

Gersh

Former Member
0 Kudos

Thanks, Gersh!

mansi_dandavate
Active Contributor
0 Kudos

Hi Gersh,

We have millions of records which are required to be written back to the same application on which the script runs.

Do you recommend to use WRITE = ON or we should use the CL_UJR_WRITE_BACK ?

former_member200327
Active Contributor
0 Kudos

Hi Mansi,

I haven't tested it in v.7.5 (it looks looks you using that version), but in v.10.0 on thousands of records WRITE_BACK was faster, on hundreds of thousands WRITE= ON was faster. And I'm no sure if this is hardware/software dependent.

It also depends on what BPC SP you using: last SPs have a lot of improvement in that process.

So, if you have enough time to test I'd suggest you try both and see which one is faster in your scenario. If you don't have enough time WRITE = On is faster to implement, and you have to remember that in v.10. you'll have to change WRITE_BACK calls.

Regards,

Gersh

Answers (0)