Need to find the methods in designer

Hello All,

In a script we are calling a ,method person.Custom.CallMethod("GetCulture").ToString()

where I can find GetCulture method code in designer?

Can you help me with the navigation please.

  • Custom.CallMethod("GetCulture") is a customizer method and is not a script that you can find in Designer.

    See Customizer for an explanation what customizers do. The customizer method you refer to can be found in the class QER.Customizer.Person and actually returns the Ident_DialogCulture@QBMCulture for a person based on logic defined in the database function QER_FGICultureForPerson. Most probably this is documented somewhere. The easiest way to find the customizer methods available for an entity is in the ObjectBrowser, select in this specific case a 'Person' object, via the context menu, select Properties and on the Methods tab you will find the method definition and the possibility to test it. This specific method does not have side effects so it does not hurt to execute it in order to test.