on 2021 Sep 07 1:05 AM
Hello,
We are on BPC version 10.1 and we are using a YTD application for consolidation. The system does not calculate January Periodic values correctly. (It basically substracts Jan YTD. value from Dec.YTD value of the previous year which obviously is incorrect).
Below is the measurement data and the system support package:
The original formula is as follows:
MEMBER [MEASURES].[YTD] AS 'IIF(([%CUENTA%].CURRENTMEMBER.PROPERTIES("2/CPMB/ACCTYPE")="INC" OR [%CUENTA%].CURRENTMEMBER.PROPERTIES("2/CPMB/ACCTYPE")="LEQ"),-([MEASURES].[/CPMB/SDATA], CLOSINGPERIOD([%TIEMPO%].[%TIMEBASELEVEL%])), ([MEASURES].[/CPMB/SDATA], CLOSINGPERIOD([%TIEMPO%].[%TIMEBASELEVEL%])))' SOLVE_ORDER=3 MEMBER [MEASURES].[PERIODIC] AS 'IIF(([%CUENTA%].CURRENTMEMBER.PROPERTIES("2/CPMB/ACCTYPE")="INC" OR [%CUENTA%].CURRENTMEMBER.PROPERTIES("2/CPMB/ACCTYPE")="EXP") AND NOT ([%TIEMPO%].CURRENTMEMBER.PROPERTIES("2/CPMB/PERIOD")="TOTAL" OR [%TIEMPO%].CURRENTMEMBER.PROPERTIES("2/CPMB/PERIOD")="Q1" OR [%TIEMPO%].CURRENTMEMBER.PROPERTIES("2/CPMB/PERIOD")="JAN" ), [MEASURES].[YTD]-([MEASURES].[YTD],[%TIEMPO%].LAG(1)), [MEASURES].[YTD])' SOLVE_ORDER=3
Could you tell me how to correct this problem? Thank you very much for your kind help
Request clarification before answering.
You have incorrect values in PERIOD property - have to be ENGLISH: JAN,FEB,MAR....
For JAN you have ENE and this is the reason for incorrect results!
In the standard measure formula you have:
...OR [%TIEMPO%].CURRENTMEMBER.PROPERTIES("2/CPMB/PERIOD")="JAN"....
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
10 | |
9 | |
2 | |
2 | |
1 | |
1 | |
1 | |
1 | |
1 | |
1 |
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.