Hi Matthias,

>the values of my two parameters are:

>_UNICODE     YES
> DEFAULT_CODE ASCII   <-- !!!!!

> Could it be that was a bug in a older SAPDB version, when a table was 
> changed with ALTER TABLE from field-code UNICODE to ASCII?

no, it is a regular behaviour that the tabledefinition 

CREATE TABLE "REPORT_PARAMETERS"
(
        "FORM"    Varchar (64) ,
      ...
)

is expanded to DEFAULT_CODE ASCII 

CREATE TABLE "REPORT_PARAMETERS"
(
        "FORM"    Varchar (64) ASCII ,
      ...
)

using DEFAULT_CODE ASCII .

if your parameters would have been:

UNICODE       YES
DEFAULT_CODE  UNICODED

the tabeledefinition would be:

CREATE TABLE "REPORT_PARAMETERS"
(
        "FORM"    Varchar (64) UNICODE ,
      ...
)

-- 
Hans-Georg Bumes
SAP DB, SAP Labs Berlin
http://www.sapdb.org/



> 

_______________________________________________
sapdb.general mailing list
[EMAIL PROTECTED]
http://listserv.sap.com/mailman/listinfo/sapdb.general

Reply via email to