sapdev logo background
sapdev logo sapdev logo
Comments

SAP STRING TEMPLATES LITERALS documentation, setup help and example usage



Return to SAP documentation index


ARTICLE

String Templates - literal_text

Syntax
c...c

Effect
Within a string template |...| , a literal text c...c represents its exact character string. Literal text consists of all characters in c that
  • are not included in curly brackets { }

  • are not control characters

  • not the special characters | , { , } , or \ .

  • Blanks in string templates in particular are always significant. To display a special character | , { , } , or \
    as a literal character, you can prefix it with the escape symbol \
    .

    Example
    The following string template displays the text "Characters |, {, and } have to be escaped by \ in literal text." .
    DATA txt TYPE string.

    txt = |Characters \|, \{, and \} have to be escaped by \\ in literal text.|.
    Documentation extract taken from SAP system, � Copyright SAP AG. All rights reserved




    STRING_TEMPLATES_EXPRESSIONS
    STRING_TEMPLATES_PREDEF_FORMAT




    comments powered by Disqus