Solved
Forum Discussion
HimanshuTayal
7 years agoCommunity Hero
Hi AAB ,
I think in this case, Property Transfer can't handle the thing but you can handle this by writing bit of groovy code.
Check whether this(//ns3:cbeEntityReply[1]/ns3:ReplyData[1]/ns3:Entity[1]/ns4:Enterprise[1]/ns4:Type[1]) exists or not see below code:
tag1 = "//ns3:cbeEntityReply[1]/ns3:ReplyData[1]/ns3:Entity[1]/ns4:Enterprise[1]/ns4:Type[1]" if(tag1 == null){ //write your code where you want } else{ //write your code to store tag2 where you want }
Let me know if you need more help :)