Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Macro name changed from html to html-bobswift during server to cloud migration processing.

...

The following figure illustrates the syntax of a Universal Connector for SAP variant definition.


Panel

Html bobswift

<pre> 
Variant_Header_Statement Variant_Text_Statement Variant_Content_Statement [Variant_Content_Statements]
</pre>

Variant Definition File Statement Keywords

...

This file will define variant SAMPLE_1 for ABAP report RSUSR002. The USER field will contain value S*.


Panel

Html bobswift

<pre>
/* Variant Header statement. */
VARIANT_NAME   = "SAMPLE_1"
   REPORT      = "RSUSR002"
;

/* Variant text statement. */
VARIANT_TEXT   = "SAMPLE_1"
   LANGUAGE    = "EN"
;

/* User */
SELNAME        = "USER"
   KIND        = "S"
   SIGN        = "I"
   OPTION      = "CP"
   LOW         = "S*"
   HIGH        = ""
   PROTECTED   = ""
   APPENDAGE   = ""
   VNAME       = ""
   VTYPE       = ""
   INVISIBLE   = ""
   SCREENNR    = ""
  NO_IMPORT   = ""
   SPAGPA      = ""
   OBLI        = ""
   NOINT       = ""
;
</pre>