Entering content frame

Object documentation CODEPAGE Locate the document in its SAP Library structure

The system table CODEPAGE contains the conversion tables that are used by the Loader for the conversion.

Table Structure

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

Column

Explanation

CODEPAGEID

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

CODEPAGETABLE

Conversion table from ASCII to UCS2 for each code page

Content

The system table CODEPAGE is preconfigured. The CODEPAGE column contains 27 entries when it is delivered:

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 in the table.

Use

See code_page_spec

 

Leaving content frame