Only allow input on lower level (Planning View should contain at least certain Attributes) for editable Key Figure #12
Unanswered
Verheyen-Vincent
asked this question in
Q&A
Replies: 1 comment
-
Unfortunately, there's no VBA method that returns all changed key figure values, so you can check whether the key figure in question actually got changed. At the moment there are no concrete plans to provide further VBA methods. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Hi all,
I would like to restrict the editing of a certain Key Figure on an aggregated level.
Therefor, please find the below VBA code.
However, unfortunately, it currently only checks whether or not the Planning View is being simulated / saved ... and if that certain Key Figure is present.
It does not specifically checks whether or not there have been any specific changes (edits) to that particular editable Key Figure. How would this be possible please?
`
Private IBPAutomationObject As Object
Function IBPBeforeSend(callMode As String) As Boolean
If callMode = "SAVE" Or callMode = "SIMULATE" Or callMode = "CREATE_SIMULATION" Then
End Function
`
Beta Was this translation helpful? Give feedback.
All reactions