Hi Experts,
I want to extract childdocuments from parent document if childdoucment is with name i specified. sample of ParentDoc as follows…
Parent Doc:
ParentDoc(string1,String2,ChildDoc1,ChildDoc3 under ParentDoc)
String1
String2
ChildDoc1------------------(String3, ChildDoc2 under ChildDoc1)
String3
ChildDoc2--------------------(String4,string5 under ChildDoc2)
String4
String5
ChildDoc3-----------------------------(String6,String7,ChildDoc4 under ChildDoc3)
String6
String7
ChildDoc4--------------------(String8 under ChildDoc5)
String8
I have list of ChildDoc(ChildDoc1,ChildDoc2,ChildDoc3) names. If Parent Doc has these names then i need to extract from it and form as separate Document.
My desired output:
ParentDoc
String1
String2
ChildDoc1
String3
ChildDoc2
String4
String5
ChildDoc3
String6
String7
ChildDoc4
String8
any help will be appreciated.
Thanks.