So I have the following XML string:
<Result><Status><ReplyStatus>1</ReplyStatus><ReplyText>Success</ReplyText></Status><Data /></Result>
With the following PowerScript I create a PBDOM document from it:
PBDOM_Builder idom_Builder //instance variable on nvo
// method code
boolean lb_root
PBDOM_Document ldom_Doc
TRY
ldom_Doc = idom.Builder.BuildFromString(as_xml) // using xml string from above
//bunch of error checking and etc here.
CATCH (blah, blah, blah)
END TRY
lb_root = ldom_Doc.HasRootElement() //returns FALSE
Now in 2019R2 the root element is 'Result'
Has this functionality changed in R3?