cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

I want to update data in BPC in overwrite mode between 2 different models

Former Member
0 Likes
866

Dear experts,

BPC 10

I want to update data in BPC in overwrite mode from one model to another model, but the Writeback BADI (UJR_WRITE_BACK) is updating data in append or delta mode. Please help.

Eor example: Planner entered and saved $500 for the first planning and changed it to $1250,

I want to update data with $1250 in overwrite mode, so that the final result is $1250.

I set parameter IF_CALC_DELTA to space / X, but it is not working. Pls help.

Regards,

Sanjeev

Accepted Solutions (0)

Answers (2)

Answers (2)

former_member186338
Active Contributor
0 Likes

Sorry, but all BPC writes are in delta mode:

If in target you have data 500

And you want to write 1250

Then +750 will be written resulting in 500+750=1250

Use BPC report to check results.

former_member186338
Active Contributor
0 Likes

To write data to another model in write back badi you have to use cl_ujo_wb_factory=>create_write_back( ) then write_back

And by default it will overwrite data. Please, check again. Write back in the same model require only filling ct_data - also will overwrite.

Former Member
0 Likes

I can't fill ct_data because i need to update data in another model, not in the model in which we are currently. I am using cl_ujo_wb_factory=>create_write_back( ) then write_back,but it seems it is updating data in delta mode.