简体   繁体   English

Tibco BW XML解析映射累积

[英]Tibco BW XML parsing mapping Accumulation

Being new to Tibco BW development I have a scenario which may be easy for you experts to solve/suggest. 作为Tibco BW开发的新手,我有一个方案,您可以轻松地让专家解决/建议。

I have an XML 我有一个XML

 <FILES>
 <FILEINFO>
 <NAME>F1<NAME>
 <DESC>D1<DESC>
 </FILEINFO>
 <FILEINFO>
 <NAME>F2<NAME>
 <DESC>D2<DESC>
 </FILEINFO>
 </FILES>

I want to convert/map/accumulate it into following format. 我想将其转换/映射/累积为以下格式。

<ALLDATA>
<NAMES>
<NAME>F1</NAME>
<NAME>F2</NAME>
</NAMES>
<DESCRIPTIONS>
<DESCR>D1</DESCR>
<DESCR>D2</DESCR>
</DESCRIPTIONS>
</ALLDATA>

I tried to do what I could but to no avail. 我试着尽我所能,但无济于事。 Could you please let me know how to do it . 你能告诉我怎么做吗? Best if you can send me a working BW process for the same so that I can understand it better. 如果你能为我发送一个有效的BW过程,那么我可以更好地理解它。

Thanks for your help in Advance. 感谢您在Advance中提供的帮助。 DMEHA DMEHA

You can try this: 你可以试试这个:

处理

I hope this helps. 我希望这有帮助。

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM