Table of Contents

Search

  1. Preface
  2. Introduction to Data Transformation
  3. Data Processor Transformation
  4. Wizard Input and Output Formats
  5. Relational Input and Output
  6. Using the IntelliScript Editor
  7. XMap
  8. Libraries
  9. Schema Object
  10. Command Line Interface
  11. Scripts
  12. Parsers
  13. Script Ports
  14. Document Processors
  15. Formats
  16. Data Holders
  17. Anchors
  18. Transformers
  19. Actions
  20. Serializers
  21. Mappers
  22. Locators, Keys, and Indexing
  23. Streamers
  24. Validators, Notifications, and Failure Handling
  25. Validation Rules
  26. Custom Script Components

User Guide

User Guide

Example of AdditionalOutputPort

Example of AdditionalOutputPort

A Parser generates the following XML structure:
<Person gender="M"> <Name> <First>Ron</First> <Last>Lehrer</Last> </Name> <Id>547329876</Id> <Age>27</Age> </Person>
The following figure shows a Parser that uses two
WriteValue
actions to generate output.
Level 1 WriteValue >> level 2 input = /Person level 2 output = ResultFile() level 1 WriteValue >> level 2 input = /Person/*s/Name level 2 output = OutputPort level 3 port = MyOutputPort level 1 ... global level MyOutputPort = AdditionalOutputPort >> level 1 output_encoding = PortEncoding >> level 3 code_page = Windows_1252
The first
WriteValue
writes the entire
<Person>
element to the default results file.
<Person gender="M"> <Name> <First>Ron</First> <Last>Lehrer</Last> </Name> <Id>547329876</Id> <Age>27</Age> </Person>
The second
WriteValue
references an
AdditionalOutputPort
to write the nested
<Name>
element to another file.
<Name> <First>Ron</First> <Last>Lehrer</Last> </Name>

0 COMMENTS

We’d like to hear from you!