on 2022 Aug 04 5:31 PM
My original config, which works without issue, simply points to the ZSTATFCSTBF KF for proportionality.
I am trying to set a disaggregation expression in my SFBF override to check the SFBF first then default to the Proportional Factors, so that I have a backup if there is no stat existing for a combination. All KF's are stored and exist at the same base planning level.
Within my disaggregation expression my calculation is
IF ( ISNULL ( "ZSTATFCSTBF" , "ZPROPFACTORS" , "ZSTATFCSTBF" )
but when I attempt to save the config - the error message states
There is an error in the disaggregation expression.ZFCSTDMDOVERRIDE: Please check the validity of the disaggregation expression.
What am I missing in my syntax? I followed the configuration example in https://launchpad.support.sap.com/#/notes/2365315
Thanks,
dan
Request clarification before answering.
Try
IF ( ISNULL ("ZSTATFCSTBF") , "ZPROPFACTORS" , "ZSTATFCSTBF" )
The closure bracket after the "ZSTATFCSTBF" is missing
Yours, Irmi
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Thank you - I thought I had tried that variant, but obviously I missed something on it.
It accepted the change and is activating now.
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
Hi, syntax error is bracket not closed after condition in the equation.It should be IF ( ISNULL ( "ZSTATFCSTBF"),”ZPROPFACTORS" , "ZSTATFCSTBF" )
Thanks and Regard’s
Lokesh
You must be a registered user to add a comment. If you've already registered, sign in. Otherwise, register and sign in.
User | Count |
---|---|
7 | |
4 | |
4 | |
3 | |
2 | |
2 | |
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.