Extracting Index for dimension elements does not work as expected #1248
-
Beta Was this translation helpful? Give feedback.
Answered by
MariusWirtz
Jul 17, 2025
Replies: 1 comment 1 reply
-
In my current dev environment, TM1 returns the index implicitly. So for me, this works: with TM1Service(**tm1_params) as tm1:
elements = tm1.elements.get_elements("Account", "Account")
for element in elements:
print(element.name, element.index) Feel free to open a PR to request the index in the URL explicitly. Explicit is better than implicit :) |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
Ge-Huber
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In my current dev environment, TM1 returns the index implicitly. So for me, this works:
Feel free to open a PR to request the index in the URL explicitly. Explicit is better than implicit :)