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

Retraction BPC to ECC

Former Member
0 Likes
667

Hi All,

I'm new to BPC and working on retraction using a BAdI. I was following a SAP: How To... Retract data from BPC 7.5 NetWeaver to SAP ERP Cost Center Accounting, Part I.

The File explains how to retract Data on a Cost center level and Im doing it on a profit center level.

Can any tell me how I can debug the BAdI?

Hi All,

I'm new to BPC and working on retraction using a BAdI. I was following a SAP: How To... Retract data from BPC 7.5 NetWeaver to SAP ERP Cost Center Accounting, Part I.

The File explains how to retract Data on a Cost center level and Im doing it on a profit center level.

Can any tell me how I can debug the BAdI?

2 REPLIES 2
Read only

Former Member
0 Likes
521

Did you find a solution for this issue?

I'm also following the SAP: How To... Retract data from BPC 7.5 NetWeaver to SAP ERP Cost Center Accounting, Part I and I also need to retract data on a profit center level.

Kind regards

Read only

0 Likes
521

Hi,

Find this tip in the thread .

Look at the LT_RETURN variable on the call function 'BAPI_COSTACTPLN_POSTPRIMCOST'.

My problem was no authorization to modify cost planning on ECC...

I give some tips about this HTG on thread

regards,

Marco.

-


Try infinite loop in End routine of your logic as follows.

data: v_val(1) value ''.

DO.

if v_val = 'X'.

exit.

endif.

ENDDO.

Save and activate the method.

Run your package from BPC Excel and login into back end goto Tcode SM50. You can find a job there which is in running mode.

Select the process, Goto menu options select Program/Session-->Program -->Debugging.

Once system opens debugging session change v_val to X and proceed to debug of your logic.

Edited by: Marco Aurelio Barreto Modesto on Sep 14, 2011 12:44 AM