-
Notifications
You must be signed in to change notification settings - Fork 112
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
get_elements_dataframe
on v12 fails with use_blob=True
#1199
Labels
Comments
What is the difference in shape? |
use_blob=Truewith TM1Service(**v12_params) as tm1:
print(tm1.server.get_product_version())
df = tm1.elements.get_elements_dataframe(
dimension_name="Boardgame",
hierarchy_name="Boardgame",
skip_consolidations=True,
skip_parents=False,
skip_weights=False,
use_blob=True
)
print(df.to_markdown())
The intermediary blob file looks like this.
use_blob=Falsewith TM1Service(**v12_params) as tm1:
print(tm1.server.get_product_version())
df = tm1.elements.get_elements_dataframe(
dimension_name="Boardgame",
hierarchy_name="Boardgame",
skip_consolidations=True,
skip_parents=False,
skip_weights=False,
use_blob=False
)
print(df.to_markdown())
|
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
The below script works on v11 but fails on v12.
The MDX View used as the source view for the unbound TI produces a different data source in v12 compared to v11.
This needs to be raised with IBM or adjusted for in TM1py.
The text was updated successfully, but these errors were encountered: