cancel
Showing results for 
Search instead for 
Did you mean: 

Allocations engine using properties

sap_user62
Active Participant
0 Kudos

Hi Friends,

Env -10.1/bpc allocation engine script.

We are trying to implement costcenter allocations in BPC.

I had a look at this document on allocations - page 16.

http://wpc.0b0c.edgecastcdn.net/000B0C/Presentations/FIN2016_Dixon_Cairncross_Handsonlabsapbusinessp...

Dimensions in my model - Account, Company, SourceCC, DestinationCC, Time, Category

When we write the allocation logic, we did not map the company dimension, so the engine writes the allocated data to source company code.(as the data comes in)

The allocations should be written to the companycode which a property of DestinationCC.

Is there a way that we could use a property of a dimension in WHERE>

example.

*DIM COMPANY WHAT= ; WHERE= (DESTINATIONCC->COMPANY PROPERTY ); USING=<<<; TOTAL=<<<

thanks for your time.

Ed.

Accepted Solutions (0)

Answers (1)

Answers (1)

former_member186338
Active Contributor
0 Kudos

Property in allocation can be used only to define list of members having some fixed property.

Read help:

https://help.sap.com/viewer/a2049170bfeb4178ace32222842c3ec1/10.1/en-US/56b10a71d21b4f0eb69a4a79a050...

You can perform allocation to the same company using RUNALLOCATION and then move the results to the company defined in property using WHEN/ENDWHEN

*REC(EXPRESSION=%VALUE%, COMPANY=COMPANY.TARGETCOMP)

*REC(EXPRESSION=0)

...

where TARGETCOMP is a property containing target company

former_member186338
Active Contributor
0 Kudos

P.S. Use separate AUDITTRAIL member for allocation result. Then before WHEN/ENDWHEN you will scope this AUDITTRAIL member!