The way to get linked configuration table

The way to get linked configuration table

rhrymakNRUS7
Contributor Contributor
436 Views
1 Reply
Message 1 of 2

The way to get linked configuration table

rhrymakNRUS7
Contributor
Contributor

I'm attempting to execute the following code:
configurationRow = associatedOccurrence.configurationRow
if configurationRow:
    configurationTable = configurationRow.parentTable

However, it always fails with the exception message 'API Function not yet implemented'.

Are there any alternatives for reading configuration data from the linked designs?

0 Likes
437 Views
1 Reply
Reply (1)
Message 2 of 2

zengyongting
Autodesk
Autodesk

Thank you to report this issue. There are exactly some issues for API ConfigurationRow.parentTable. We have addressed it and the fix will be included in next few builds.

 

There is another way to get the configuration table. See below script:

    configDataFile = occ.configuredDataFile
    topTable = configDataFile.configurationTable

 Please have a try.