Community Tip - New to the community? Learn how to post a question and get help from PTC and industry experts! X
Hello,
With Arbortext Command Language, How to write a function to get all children of a parent tag ?
David
Solved! Go to Solution.
If you want a recursive function to return all elements of a document, look at the code in the oid_children ACL function and modify it as needed.
However, if you want a list of all elements in a document, you can get the list with code like this
global arr1[]
oid_find_children(oid_null(), $arr1, '.*', 0x08)
If you want a recursive function to return all elements of a document, look at the code in the oid_children ACL function and modify it as needed.
However, if you want a list of all elements in a document, you can get the list with code like this
global arr1[]
oid_find_children(oid_null(), $arr1, '.*', 0x08)
Thank you for your response