Hi,
I have two questions regarding allocation in BPC 10 for NW:
1. I have in ACCOUNT dim two hierarchies: PARENTH1 and PARENTH2. When creating logic script for allocation I want to define data scope for node BEAPA in hierarchy PARENTH1 and I did it this way:
*XDIM_MEMBERSET ACCOUNT=BAS(BEAPA)
What if I have the same node in hierarchy PARENTH2? I made several tries combining BAS(BEAPA) with PARENTH1 but I had no luck...
2. I want to allocate plan data evenly among children of a node. In documentation I read that I shoudl use "*FACTOR = 1/COUNT" for that but when I run package I get error:
"
------------ ABAP Code Generation Error:4 -------------
MESSAGEGTUField "COUNT" is unknown. It is neither in one of the specified tables nor defined by a "DATA" statement. "DATA" statement.
Line11 WordCOUNT
"
My ALLOCATION script code below:
*XDIM_MEMBERSET ACCOUNT=BAS(BEAPA),BAS(BEAPC)
*XDIM_MEMBERSET TIME=2006.01
*XDIM_MEMBERSET CATEGORY=Plan,Budget
*XDIM_MEMBERSET AUDITTRAIL=Input
*XDIM_MEMBERSET ENTITY=CSO
*XDIM_MEMBERSET INTERCO=I_DE
*XDIM_MEMBERSET PRODUCT=ProductA
*XDIM_MEMBERSET RPTCURRENCY=EUR
*XDIM_MEMBERSET MEASURES=PERIODIC
*RUNALLOCATION
*FACTOR = 1/COUNT
*DIM CATEGORY WHAT=Plan ;WHERE=Budget;
//Using={expression}; Total={expression}
*DIM ACCOUNT WHAT=BEAPA.1PL ;WHERE=BAS(BEAPA) ;
*ENDALLOCATION
Regards,
Andrzej