Skip to main content
Member
November 8, 2024

Locking of Text Commentary

  • November 8, 2024
  • 1 reply
  • 0 views

Hi Everyone,

Does anyone know whether it is possible to Lock V#Annotation for input?

Any assistance will be appreciated

Thank you!

1 reply

T_Kress
OneStream Employee
OneStream Employee
November 8, 2024

One option would be to use a conditional no input Finance BR and attach that to your cube(s).  The no input rule would appear as follows:

Case Is = FinanceFunctionType.ConditionalInput
						
						If api.Pov.View.Name.XFEqualsIgnoreCase("Annotation")
							Return ConditionalInputResultType.NoInput
						End If
						
						Return ConditionalInputResultType.Default

This would make all V# Annotation intersections Read Only, always.  If you need to only have them be Read Only in certain instances, you can include other IF statements.

JK12Author
Member
November 8, 2024

Thanks Terasa

We managed to solve this

Newcomer
June 6, 2025

What was the solution, if you don't mind sharing?