...
The xpxGetMemberCount function returns the number of elements in the specified persistent aggregate aggregateId in the argument elementsInAggr.
Arguments
...
Type | Name | Comment |
GENERIC | aggregateId | comment |
INTEGER | elementsInAggr |
Return Value
...
Insert excerpt | ||||||
---|---|---|---|---|---|---|
|
...
Example
...
Code Block | ||
---|---|---|
| ||
<Missing Example> FUNCTION createModel(sourceModelName: STRING) : GENERIC; LOCAL targetModelId : GENERIC; controlId : GENERIC; END_LOCAL; ON_ERROR_DO; xpxPrintf('\nError.'); xpxThrow; END_ON_ERROR_DO; targetModelId := xpfCopyModelBN('DataRepository', sourceModelName, 'DataRepository', 'NAME_OF_COPIED_MODEL'); xpxPrintf('\ntargetModelId : %lu',targetModelId); controlId := xpfGetModelBN('DataRepository','NAME_OF_COPIED_MODEL'); xpxPrintf('\ncontrolId : %lu',controlId); IF(controlId :<>: targetModelId) THEN xpxThrow; END_IF; RETURN(targetModelId); END_FUNCTION; |
See also
Filter by label (Content by label) | ||||||
---|---|---|---|---|---|---|
|
...