Method Name | Description | Parameters | Return type | Notes |
---|---|---|---|---|
createObject | Creates a new object instance for a given object name | EboContext ctx, String objectName |
boObject | - |
createObject | Creates a new object instance for a given object name and filled with data from a data set | EboContext ctx, String objectName, DataSet data | boObject | |
createObjectWithParent | Creates a new object instance for a given object instance and associates a parent instance | EboContext ctx, String objectName, long parentBoui | boObject | * Usefull when creating non-orphan instances programatically. |
loadObject | Loads an object given its boui | EboContext ctx, long boui | boObject | - |
loadObject | Loads an object given a BOQL expression | EboContext ctx, String boql | boObject | It the BOQL expression retrieves more than one result, the first boObject instance from that result is returned |