Hi,
In clients model, the used dimension type C is not the standard one (CATEGORY), but a copy of it translated to portuguese (Categoria).
When I call standard program CALC_ACCOUNT, I try to set parameters like:
*RUN_PROGRAM CALC_ACCOUNT
Categoria=Realizado
TID_RA=%TEMPO_SET%
*ENDRUN_PROGRAM
But, the program runs for all category members (Members of dimension Categoria, in this situation), like no filter is applied.
My question is... is there a specific way of setting filter in CALC_ACCOUNT for members of a C-type dimension that isn't the standard dimension CATEGORY? Any extra configuration?
Best regards
There is no "standard" dimension CATEGORY, there is a standard dimension type - C in this case.
Look on help: Account-based Calculations as Script Logic - SAP Business Planning and Consolidation, version for SAP NetWeaver - SAP Li…
*RUN_PROGRAM CALC_ACCOUNT
CATEGORY = %YourCategoryDimName_SET% //CATEGORY - standard name to be used!
CURRENCY = %YourCurrencyDimName_SET% //CURRENCY - standard name to be used!
TID_RA = %YourTimeDimName_SET% //TID_RA - standard name to be used!
CALC=A //ID of rule!
OTHER = [YourEntityDimName=%YourEntityDimName_SET%]// or OTHER=[YourEntityDimName=C1000] or [YourEntityDimName=%YourEntityDimName_SET%;YourIntcoDimName=%YourIntcoDimName_SET%...]
*ENDRUN_PROGRAM
Where:
YourXXXXXDimName - real name of your dimension!
CATEGORY,CURRENCY,TID_RA,CALC,OTHER - are just fixed parameter names!
Add a comment