The scripting toolkit 3.2 documentation says cross database links are supported. But the last line in this code fails with the error. Can you take a look? I am on MI 23R2 and STK 3.2.
Browse.GetAttributeDetails failed with code 500 and message: Tabular attribute xxx has cross database data. This interface version does not support this.
from GRANTA_MIScriptingToolkit import granta
import os
# if __name__ == "__main__":
client = granta.connect("https://servername/mi_servicelayer", user_name=<>, password=<>)
db = client.get_db("My Database")
table = db.get_table("Metals")
records = table.all_records()