Entering content frame

Syntax documentation table_name Locate the document in its SAP Library structure

Syntax Rules for Table Descriptions

Syntax

<table_name> ::= <valTABLE_NAME> | <valTABLE_OWNER>.<valTABLE_NAME>

valTABLE_NAME

Name of the table

Specify the table name in accordance with the SQL conventions. You can also define a user name as a prefix.

valTABLE_OWNER

Owner of the table

Use

Use this syntax rule in a command to load or unload data to specify a table name.

Example

FASTLOAD TABLE hotel
  IF (POS 41-44 REAL < '400.00')
  AND
     (POS 41-44 REAL >= '400.00')
      hno     01-04 INTEGER
      name    09-18
      zip     20-25 DECIMAL
      city    27-36
      price   41-44 REAL
INFILE 'hotel.data' FORMATTED;

DATALOAD TABLE berolina.hotel
  IF (POS 41-44 REAL < '400.00')
  AND
     (POS 41-44 REAL >= '400.00')
      hno     01-04 INTEGER
      name    09-18
      zip     20-25 DECIMAL
      city    27-36
      price   41-44 REAL
INFILE 'hotel.data' FORMATTED;

 

Leaving content frame