Copy Input Element

Logic Name

Copy Input Element

Function

Copies the input element.

Data Types

Location Type
The first input handler Node set
Logic output Node set
lightbulbRefer to "Logic Specifications" for details.

Properties

Category Property Description
Comment Comment The comment will also be output to the specifications.It does not affect the conversion process.

Specification Limits

Logic Sample

Mapping Definition

Logic Settings and Processing Result

The node of the input data is output as follows.
Property Settings
Property Setting
None  
Input Data
<?xml version="1.0" encoding="Shift_JIS"?>
<Census>
  <Area population="4537" name="Shinetsu">
    <State name="Niigata" population="2378">
      <male>1149</male>
      <female>1229</female>
    </State>
    <State name="Nagano" population="2159">
      <male>1049</male>
      <female>1110</female>
    </State>
  </Area>
  <Area population="3068" Name="Hokuriku">
    <State name="Toyama" population="1095">
      <male>528</male>
      <female>568</female>
    </State>
    <State name="Ishikawa" population="1165">
      <male>562</male>
      <female>603</female>
    </State>
    <State name="Fukui" population="808">
      <male>390</male>
      <female>418</female>
    </State>
  </Area>
</Census>
Output Data
<?xml version="1.0" encoding="UTF-8"?>
<Census>
  <ByState>
    <State name="Niigata" population="2378">
      <male>1149</male>
      <female>1229</female>
    </State>
    <State name="Nagano" population="2159">
      <male>1049</male>
      <female>1110</female>
    </State>
    <State name="Toyama" population="1095">
      <male>528</male>
      <female>568</female>
    </State>
    <State name="Ishikawa" population="1165">
      <male>562</male>
      <female>603</female>
    </State>
    <State name="Fukui" population="808">
      <male>390</male>
      <female>418</female>
    </State>
  </ByState>
</Census>