I have a VB script that attempts to get an attribute of an identifier in a PdLDM model. The code is similar to the following:
dim identifier
set identifier = entity.FindChildByName(identifier_name, PdLDM.cls_Identifier)
dim attribute
set attribute = identifier.GetAttribute(attribute_name)
The method GetAttribute() keeps resulting "Unspecified error (0x80004005) At line ##, character #. Does anyone have experience with this? Thanks.