Entering content frame

Object documentation CODEPAGE Locate the document in its SAP Library structure

The system table CODEPAGE contains the conversion tables that the Loader uses for conversion.

Table Structure

CREATE TABLE SYSDBA.CODEPAGE
    (CODEPAGEID CHAR (32)  NOT NULL,
     CODEPAGETABLE CHAR (512) BYTE NOT NULL,
     PRIMARY KEY (CODEPAGEID))

Column

Explanation

CODEPAGEID

Names of code pages (for example, ISO-8859-2)

CODEPAGETABLE

Conversion table from ASCII to UCS2 for each code page

Content

The system table CODEPAGE is preconfigured. When it is delivered, the CODEPAGE column contains 27 entries:

ISO-8859-2, ISO-8859-3, ISO-8859-4, ISO-8859-5, ISO-8859-6, ISO-8859-7, ISO-8859-8, ISO-8859-9, ISO-8859-10, ISO-8859-11, ISO-8859-13, ISO-8859-14, ISO-8859-15, ISO-8859-16, WINDOWS-874, WINDOWS-932, WINDOWS-936, WINDOWS-949, WINDOWS-950, WINDOWS-1250, WINDOWS-1251, WINDOWS-1252, WINDOWS-1253, WINDOWS-1254, WINDOWS-1255, WINDOWS-1256, WINDOWS-1257.

The default value of the Loader, code page ISO-8859-1, is not included in the table.

See also:

SET Command

 

Leaving content frame