You can set various properties of a target element.
Steps to set target element properties
- Ensure that the source and target schemas are loaded and all their elements are listed under their respective nodes.
- Click the target element for which you want to set properties.
- Click the Node tab displayed in the Mapping Graph Area. All tabs of the Node tab are displayed.
Click the Properties tab. The Properties pane is displayed (see Figure 548)
Figure 548: Properties Pane
- The Properties pane comprises of various properties, which are outlined in the table below.
Table 22: Properties of a Target Element
Property
Description
XPath
Displays the XPath of the selected target element. It is a read-only field.
For Each
Sets the For Each property for the target element. It is used to repeat occurrences of a target element depending on the total occurrences of a source element in the source file. To set the For Each property refer to the section Setting the For Each Property.
Sorting
Sets the Sorting rules for the target element. It also allows you to view or remove sorting rules for the target element. To set the Sorting Rules, refer to the section Setting Sorting Rules.
Disable-Output-Escaping
Sets the disable-output –escaping property for the target element. It is used to include this property under the 'value-of' element in the generated XSL. By default, this property is set as 'no'. For details on this property, refer to the section Using XSL Property.
Comments
Displays comments entered for the target element. This is a data entry field and allows you to enter comments for the target element. To enter comments, refer to the section Adding Comments for Target Element.
- Enter the properties required for the selected target element.
Click Save Properties to save the properties entered for the target element. If you shift focus to another node, or click any of the Mapping Rules, Textual Rules, Global Variables, Properties, XSL or Debugger tabs, without saving the properties, an alert message is displayed (refer to Figure 522).
- Click No to save the properties and shift focus to the other object. If you click Yes, then the defined properties are cleared and the focus is shifted to the other object.
...
Supposing, the source file has 10 occurrences of the customer. Applying the For Each property on the target node customer, for the source node customer, generates an output file containing 10 occurrences of the customer in it.
Info |
---|
|
Steps to set the For Each property
...
Info |
---|
|
Adding Comments to Target Schema Elements
Comments are used to provide additional information to target nodes and elements. Comments are displayed as tool tips and are reflected in the XSL generated under the XSL tab.
Steps to add a comment to the target element
- Ensure that the source and target schemas are loaded and all their elements are listed under their respective nodes.
- Click the target element for which you want to add a comment.
- Click the Node tab displayed in the Mapping Graph Area. All tabs of the Node tab are displayed.
- Click the Properties tab. The Properties pane is displayed (refer to Figure 548).
Click the Comments property field and enter the comment for the selected target element (see Figure 550).
Figure 550: Enter Comment
- Click Save Properties. This adds the comment and displays it next to the target element. If you shift focus to another node, or click any of the Mapping Rules, Textual Rules, Global Variables, Properties, XSL or Debugger tabs, without saving the comments, an alert message is displayed (refer to Figure 522).
Click No to save the comments and shift focus to the other object. If you click Yes, then the defined comments are cleared and the focus is shifted to the other object.
Info Once a comment is added to a target element, the letter (CM) is displayed next to the target element. This signifies that a comment has been created for the target element. Refer to Table of Suffixesfor details on suffixes displayed next to a target element.
Setting Sorting RulesAnchor SR SR
You can set sorting rules for a target element. It is used to sort value of elements in the generated output. While generating the output XML, the value of elements can be sorted either in ascending or descending order. For example, records of the employee can be sorted based on their salaries. Figure 551 shows input XML before sorting.Code Block language xml <?xml version="1.0"
encoding="UTF-8"
?>
-<employees>
-<employee attribute="14"
attribute1="15">
<TESTCASENO>TESTCASENO1</TESTCASENO>
<DESCRIPTION>DESCRIPTION1</DESCRIPTION>
<NAME>John</NAME>
<ADDRESS>Address1</ADDRESS>
<EMAILID>EMAILID1</EMAILID>
<PHONENO>PHONENO1</PHONENO>
<DOB>DOB1</DOB>
<DEPT>DEPT1</DEPT>
<SALARY>
10000
</SALARY>
<SALARY>10000</SALARY> <DOJ>DOJ1</DOJ>
<DESIGNATION>DESIGNATION1</DESIGNATION>
<AGE>
34
</AGE>
<AGE>34</AGE> </employee>
-<employee attribute="14"
attribute1="15">
<TESTCASENO>TESTCASENO2</TESTCASENO>
<DESCRIPTION>DESCRIPTION2</DESCRIPTION>
<NAME>David</NAME>
<ADDRESS>ADDRESS2</ADDRESS>
<EMAILID>EMAILID2</EMAILID>
<PHONENO>PHONENO2</PHONENO>
<DOB>DOB2</DOB>
<DEPT>DEPT2</DEPT>
<SALARY>
8000
</SALARY>
<SALARY>8000</SALARY> <DOJ>DOJ2</DOJ>
<DESIGNATION>DESIGNATION2</DESIGNATION>
<AGE>
45
</AGE>
<AGE>45</AGE> </employee>
-<employee attribute="14"
attribute1="15">
<TESTCASENO>TESTCASEN3</TESTCASENO>
<DESCRIPTION>DESCRIPTION3</DESCRIPTION>
<NAME>Ricky</NAME>
<ADDRESS>ADDRESS3</ADDRESS>
<EMAILID>EMAILID3</EMAILID>
<PHONENO>PHONENO3</PHONENO>
<DOB>DOB3</DOB>
<DEPT>DEPT3</DEPT>
<SALARY>
15000
</SALARY>
<SALARY>15000</SALARY> <DOJ>DOJ3</DOJ>
<DESIGNATION>DESIGNATION3</DESIGNATION>
<AGE>
36
</AGE>
<AGE>36</AGE> </employee>
</employees>
Figure 551: Sample Input XML
Figure 552 shows the Output XML after sorting.Code Block language xml <?xml version="1.0"
encoding="UTF-8"
?>
-<employees xmlns:java="http://xml.apache.org/xslt/java"
xmlns:str="http://exslt.org/strings">
-<employee attribute=""
attribute1="">
<TESTCASENO>TESTCASEN3</TESTCASENO>
<DESCRIPTION>DESCRIPTION3</DESCRIPTION>
<NAME>Ricky</NAME>
<ADDRESS>ADDRESS3</ADDRESS>
<EMAILID>EMAILID3</EMAILID>
<PHONENO>PHONENO3</PHONENO>
<DOB>DOB3</DOB>
<DEPT>DEPT3</DEPT>
<SALARY>
15000
</SALARY>
<SALARY>15000</SALARY> <DOJ>DOJ3</DOJ>
<DESIGNATION>DESIGNATION3</DESIGNATION>
<AGE>
36
</AGE>
<AGE>36</AGE> </employee>
-<employee attribute=""
attribute1="">
<TESTCASENO>TESTCASENO1</TESTCASENO>
<DESCRIPTION>DESCRIPTION1</DESCRIPTION>
<NAME>John</NAME>
<ADDRESS>Address1</ADDRESS>
<EMAILID>EMAILID1</EMAILID>
<PHONENO>PHONENO1</PHONENO>
<DOB>DOB1</DOB>
<DEPT>DEPT1</DEPT>
<SALARY>
10000
</SALARY>
<SALARY>10000</SALARY> <DOJ>DOJ1</DOJ>
<DESIGNATION>DESIGNATION1</DESIGNATION>
<AGE>
34
</AGE>
<AGE>34</AGE> </employee>
-<employee attribute=""
attribute1="">
<TESTCASENO>TESTCASENO2</TESTCASENO>
<DESCRIPTION>DESCRIPTION2</DESCRIPTION>
<NAME>David</NAME>
<ADDRESS>ADDRESS2</ADDRESS>
<EMAILID>EMAILID2</EMAILID>
<PHONENO>PHONENO2</PHONENO>
<DOB>DOB2</DOB>
<DEPT>DEPT2</DEPT>
<SALARY>
8000
</SALARY>
<SALARY>8000</SALARY> <DOJ>DOJ2</DOJ>
<DESIGNATION>DESIGNATION2</DESIGNATION>
<AGE>
45
</AGE>
<AGE>45</AGE> </employee>
Figure 552: Output XML</employees>
whereInfo The Sorting rules can be set only for record
orwhere For Each Mapping
Theor Apply Template is used.
elementThe <xsl:apply-templates>
element applies a template to the current element or to the child nodes of the current element, when the parent elements of source and target schemas are mapped.
Figure 552: Output XML
Steps to set Sorting RulesInfo Once the For Each property is applied to a target element, the letter (F) is displayed next to the target element. Refer to Table of Suffixes for details on suffixes displayed next to a target element.
To remove the For Each property from the target element, right-click target element and select Remove Mappings option. This displays the Remove Mapping Options dialog box. Select the Remove For Eachcheckbox and click OK.Info
- Ensure that the source and target schemas are loaded and all their elements are listed under their respective nodes.
- Ensure that the source and target elements to be mapped are selected and displayed in the Mapping Graph Area.
To use Apply template, click Employee (parent) element in the source panel and drag the mouse pointer to the Employee (parent) element in the target panel. A line is displayed between the source and target panels indicating the mapping between source and target elements (see Figure 553).
Figure 553: Apply Template
property onInfo To learn how to set For Each
sectionproperty on employee element refer to the
section Setting For Each Property.
- Click the Node tab displayed in the Mapping Graph Area. All tabs of the Node tab are displayed.
- Click the Properties tab. The Properties pane is displayed (refer to Figure 548).
Click the Click here to add/view Sorting Rules option displayed against the Sorting property field. This displays the Add New Sorting Rules dialog box (see Figure 554).
This screen displays the name of the selected target record to be sorted.
Figure 554: Sorting Rules Dialog Box- Type the name of the source element on the basis of which you want to sort output (e.g. SALARY), in the Source Element field.
- Select the data type as either text or numeric from the Data Type dropdown list. This specifies how the input value is to be interpreted. By default, text is selected.
- Select the sorting order as ascending or descending from the Order dropdown list. By default, ascending is selected.
- Click Save to save the sorting rule.
Click Close to return the Data Mapper screen. The letter (SR) is displayed next to the sorted target element. This signifies that the target element has been sorted based on the specified source element. Refer to the [Table of Suffixes|Using Data Mapper#suffixestable] for details on suffixes displayed next to an element.
Info More than one sorting can also be applied to a single target element. For example, if salary of two employees is same, they can be further sorted out based on their age.
clickTo delete sorting,
buttonclick View/Remove
Thebutton.
dialogThe Remove Sorting Rules
clickdialog box is displayed with a list of existing sorting rules. Select sorting rule and
to delete sorting rules.Once the sorting is applied based on the set rules, the output XML is displayed as displayed in Figure 552click Remove/Remove All
to delete sorting rules.