Show TOC Start of Content Area

Function documentation Result View  Locate the document in its SAP Library structure

Use

You use this view to check the result of an XSL transformation in the XSLT Debugger. With the execution of each step involving a change in the result, the system automatically updates the output.

Caution

The result view does not display correctly transformations that result in ABAP data structures.

Features

Representation of Line Breaks in the Result View

To display real line breaks or blank characters necessary for formatting the output text, you need the corresponding XML statement in the XSLT program. If necessary, insert the following XSL statement (for example, in the beginning of the XSLT program):

Syntax

<xsl:output indent="yes"/>

The indents and line breaks mirror the hierarchy of the document structure and improve the readability of the output.
Example

In the following example the XSLT program returns an HTML document after the transformation. The output has real line breaks. As it is the case with standard code pages, end of line is marked by paragraph indicators (¶).

Syntax

<html>¶

<body>¶

<h1>Atomic Number versus Atomic Weight</h1>¶

<table>¶

<th>Atomic Number</th>¶

<th>Atomic Weight</th>¶

<tr>¶

<td>Hydrogen</td>¶

<td>1</td>¶

<td

 

 

End of Content Area