I have defined a Global Case in BPM 4.0 with two attributes of type text in the Resource Tab, The Maximum text length is set as follows:
correlation_id: 50
tipoPratica: 50
Looking at the Oracle table that has been generated after the deployment, I can see the two fields have been defined as nvarchar2 of 400!
Name Null Type
------------- -------- --------------
BDS_ID NOT NULL NUMBER(19)
DTYPE NOT NULL NVARCHAR2(255)
BDS_VERSION NUMBER(19)
CORRELATIONID NOT NULL NVARCHAR2(400)
TIPOPRATICA NOT NULL NVARCHAR2(400)
CREATE_DATE TIMESTAMP(6)
Is this correct? Is there any relationship between the attribute size defined at Design time and database columns?