Skip to content

GET_REFERENCED_MODELS ​

GET_REFERENCED_MODELS returns a list of IDs of referenced models.

Syntax ​

leo-grammar
CC "Core" GET_REFERENCED_MODELS model:idValue references:{ References } .


References :	{ From } .

From :	FROM modelTypeName { Follow } .

Follow :	FOLLOW classname:classname attrname:attrname
	[ recattrname:recordattrname ]
	depth:intValue type:RefFollowType .

RefFollowType :	main | sub .

#-->RESULT modelids:strValue
CC "Core" GET_REFERENCED_MODELS model:idValue references:{ References } .


References :	{ From } .

From :	FROM modelTypeName { Follow } .

Follow :	FOLLOW classname:classname attrname:attrname
	[ recattrname:recordattrname ]
	depth:intValue type:RefFollowType .

RefFollowType :	main | sub .

#-->RESULT modelids:strValue

Parameters ​

  • modelid (idValue) - the ID of the source model has to be passed as argument modelid.
  • references (strValue) - contains a leo-string surrounded by curved brackets, e.g.,{ <LEO-STRING> }. The leo-string contains the the two key words FROM and one or mulitple FOLLOW with the corresponding parameter
    • classname (strValue) - name of the class, from which the interref should be used
    • attrname (strValue) - attribute name of the interref
    • recattrname (strValue, optional) - attribute name of the record attribute
    • depth (intValue) -
    • ``type(enumValue) - provide eithermainorsub`

Returns ​

  • modelids (tokenStr) - token string with the modelids of the referenced models, separated with space

Details ​

GET_REFERENCED_MODELS computes all models referenced by the source model and returns a list of referenced model IDs as variable modelids.

With the reference argument, you have to define a reference profile. A reference profile describes which references shall be followed: It contains a list of INTERREF attributes and for each INTERREF attribute a specification, if and how the reference should be followed.

The reference argument corresponds to the list in the ADOxx dialog "Reference settings": For each modeltype, the keyword FROM followed by a modeltype is entered. After the modeltype definition, for each interref attribute, the keyword FOLLOW is entered. The class that owns the interref attribute is specified with the argument classname, the interref attribute itself is specified with attrname. If the attribute is within a record attribute, the name of the record attribute has to be specified with recattrname. The depth canm be set with the argument depth, set it to the value -1 for the value "unlimited". Set the argument type to main if the interref should be treated as a main reference or set it to sub if it should be treated as a sub reference.

Unfortunately this command does not return an error code.

Please Note:
If classname is ambiguos within the Application Library, i.e. there is one class with the name classname in the BP library and an other one with the same name in the WE library, the corresponding class can not be determined unambigously. In that case ADOxx tries to evaluate the command for the class whichever is found first in the application library, resulting in unpredictable behavior.

See Also ​

Examples ​

asc
# note: if you are using this example in a language different than 
# German, adjust modeltype, class and attribute names!

# get the currently opened model
CC "Modeling" GET_ACT_MODEL
IF (modelid = -1) {
    CC "AdoScript" ERRORBOX "Open a Geschäftsprozeßmodell first!"
    EXIT
}

# get all referenced models
CC "Core" GET_REFERENCED_MODELS modelid:(modelid)
    references:{
        FROM "Geschäftsprozeßmodell"
        FOLLOW classname:"Aktivität" attrname:"Referenzierte Dokumente"
               depth:-1 type:main
        FOLLOW classname:"Prozeßaufruf" attrname:"aufgerufener Prozeß"
               depth:-1 type:main
    }

# finally open every referenced model in the modeling shell
FOR id in:(modelids) {
    CC "Modeling" OPEN modelids:(idValue)
}
# note: if you are using this example in a language different than 
# German, adjust modeltype, class and attribute names!

# get the currently opened model
CC "Modeling" GET_ACT_MODEL
IF (modelid = -1) {
    CC "AdoScript" ERRORBOX "Open a Geschäftsprozeßmodell first!"
    EXIT
}

# get all referenced models
CC "Core" GET_REFERENCED_MODELS modelid:(modelid)
    references:{
        FROM "Geschäftsprozeßmodell"
        FOLLOW classname:"Aktivität" attrname:"Referenzierte Dokumente"
               depth:-1 type:main
        FOLLOW classname:"Prozeßaufruf" attrname:"aufgerufener Prozeß"
               depth:-1 type:main
    }

# finally open every referenced model in the modeling shell
FOR id in:(modelids) {
    CC "Modeling" OPEN modelids:(idValue)
}

Versions and Changes ​

Available since ADOxx 1.3