Entering content frame

Syntax documentation table_spec Locate the document in its SAP Library structure

Syntax Rules for Table Descriptions

Syntax

<table_spec> ::= <table_name> <if_condition>

Use

Use this syntax rule in a DATALOAD command to specify the name(s) and contents of the target table(s).

It also applies to loading a table in the FASTLOAD command.

Example

You want to load from the data stream adresses.data the data records that begin with the letter 'k' into the target table with the name customer.

DATALOAD TABLE sqltravel00.customer     IF POS 1 = 'k'
  customerid  2
  name        3
  zip         5
  address     6

Leaving content frame