Community Tip - Did you get an answer that solved your problem? Please mark it as an Accepted Solution so others with the same problem can find the answer easily. 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