Use of "Table"-Class in Processes

Hi everyone,

I'm using One Identity Manager 8.1.3.

I find the class "Table" quite helpful and use it in various places to substitute e. g. "CCC_UID_Person" with Table.CCC_CustomTable.CCC_UID_Person or "CCC_CustomTable" with Table.CCC_CustomTable. I've noticed that the syntax does not work everywhere.

If used in a generating condition or WhereClause of a process, the following error occures when the process gets generated: 

ErrorMessages (2021-06-28 15:01:29.073) Error saving XYZ:

[810306] Error during execution of 'OnGenerate' in logic module 'VI.DB.Entities.EventsEntityLogic'.

[810103] Error generating processes for event Update.

[810222] Error executing script 'Event_Update'.

[810108] Error generation process step event UPDATE.

[System.MissingMethodException] Method not found: 'CCC_CustomTable VI.DB.Model.Table.get_CCC_CustomTable()'.

 

Has anyone else come across this error? Is this maybe a known limitation for custom tables?

Parents
  • I cannot reproduce, too..

    But what I can say is, that "System.MissingMethodException" in general is thrown, when you e.g. compile with one version of an assembly and run the code later with another version of that assembly, where, well, the method is missing ;)

    In case of the model classes this might be the case, when the update process has a problem with the model assembly?! Perheps it helps already, if you recompile the models.

Reply
  • I cannot reproduce, too..

    But what I can say is, that "System.MissingMethodException" in general is thrown, when you e.g. compile with one version of an assembly and run the code later with another version of that assembly, where, well, the method is missing ;)

    In case of the model classes this might be the case, when the update process has a problem with the model assembly?! Perheps it helps already, if you recompile the models.

Children
No Data