Entering content frameString literal Locate the document in its SAP Library structure

A string literal is a sequence of characters in double quotes. String literals can also be represented in hexadecimal notation by preceding them with x or X.

Syntax

<string_literal> ::= '' | '<character>...' | <hex_literal>

character, hex_literal

Example

'69190 Walldorf'

'Anthony Smith'

X'12ab'

Leaving content frame