Hey,
Iam trying to figure out how to autofill the financial dimension "project" in the Form ProjTable:

It should always autofill Project with the identical Project number.
The thing is, that the entry in the Table DimensionAttributeValueSetItem is only created if you selected a Project by the Combobox (marked red).
I think I have to execute the identical code that is executed by the combobox so I can "simulate" the user interactions.
Here I found the Class DimensionEntryControl with it's Method dimensionValue_modified.
In this case it passes the number of the Field (5) and the Value (000249) to the method. Unfortunately most of the Methods in this class are private so I cant access them from anywhere else (I already tried a Event Handler on a delegator).
My Steps where:
- Create a Delegator
- Call the Delegator from Form ProjTable in Method createprojId
- added event to delegator
in The event i can't access the protected method.
Is there any other approach to solve this "problem"?
I hope someone can help me out... wasted hours already :(