* translated 314-315 migration script for postgresql

This commit is contained in:
Heng Sin Low 2007-04-21 04:19:34 +00:00
parent bf8c24c879
commit da4d71e5e2
17 changed files with 14251 additions and 0 deletions

View File

@ -0,0 +1,19 @@
INSERT INTO ad_message
(ad_message_id, ad_client_id, ad_org_id, isactive, created,
createdby, updated, updatedby, VALUE,
msgtext, msgtip, msgtype, entitytype
)
VALUES (50007, 0, 0, 'Y', TO_DATE ('12-02-2007', 'DD-MM-RRRR'),
0, TO_DATE ('12-02-2007', 'DD-MM-RRRR'), 0, 'Charset',
'Charset', 'Charset used for import / export', 'I', 'D'
);
COMMIT ;
UPDATE ad_sequence
SET currentnextsys = (SELECT MAX (ad_message_id) + 1
FROM ad_message
WHERE ad_message_id < 1000000)
WHERE NAME = 'AD_Message';
COMMIT ;

View File

@ -0,0 +1,18 @@
INSERT INTO ad_message_trl
(ad_message_id, ad_language, ad_client_id, ad_org_id, isactive,
created, createdby, updated, updatedby, msgtext, msgtip,
istranslated)
SELECT m.ad_message_id, lang.ad_language, m.ad_client_id, m.ad_org_id, 'Y',
m.created, m.createdby, m.updated, m.updatedby, m.msgtext, m.msgtip,
'N'
FROM ad_message m, ad_language lang
WHERE m.ad_message_id = 50007
AND lang.issystemlanguage = 'Y'
AND lang.isbaselanguage = 'N'
AND NOT EXISTS (
SELECT *
FROM ad_message_trl m2
WHERE m2.ad_message_id = m.ad_message_id
AND m2.ad_language = lang.ad_language);
COMMIT ;

View File

@ -0,0 +1,127 @@
INSERT INTO ad_element
(ad_element_id, ad_client_id, ad_org_id, isactive,
created, createdby,
updated, updatedby,
columnname, entitytype, NAME,
printname
)
VALUES (50040, 0, 0, 'Y',
TO_DATE ('02/13/2007 23:31:30', 'MM/DD/YYYY HH24:MI:SS'), 100,
TO_DATE ('02/13/2007 23:31:30', 'MM/DD/YYYY HH24:MI:SS'), 100,
'CopyColumnsFromTable', 'D', 'Copy Columns From Table',
'Copy Columns From Table'
);
INSERT INTO ad_process
(ad_process_id, ad_client_id, ad_org_id, isactive,
created, createdby,
updated, updatedby,
VALUE, NAME,
description,
accesslevel, entitytype, isreport, isdirectprint, classname,
statistic_count, statistic_seconds, isbetafunctionality,
isserverprocess, showhelp
)
VALUES (50011, 0, 0, 'Y',
TO_DATE ('02/13/2007 23:35:07', 'MM/DD/YYYY HH24:MI:SS'), 100,
TO_DATE ('02/13/2007 23:35:48', 'MM/DD/YYYY HH24:MI:SS'), 100,
'AD_Table_CopyColumnsFromTable', 'Copy Columns from Table',
'Create Dictionary Columns for a Table taking another as base',
'4', 'D', 'N', 'N', 'org.compiere.process.CopyColumnsFromTable',
2, 6, 'N',
'N', 'Y'
);
INSERT INTO ad_process_para
(ad_process_para_id, ad_client_id, ad_org_id, isactive,
created, createdby,
updated, updatedby,
NAME, description,
HELP,
ad_process_id, seqno, ad_reference_id, columnname,
iscentrallymaintained, fieldlength, ismandatory, isrange,
ad_element_id, entitytype
)
VALUES (50005, 0, 0, 'Y',
TO_DATE ('02/13/2007 23:39:09', 'MM/DD/YYYY HH24:MI:SS'), 100,
TO_DATE ('02/13/2007 23:43:06', 'MM/DD/YYYY HH24:MI:SS'), 100,
'Table', 'Database Table information',
'The Database Table provides the information of the table definition',
50011, 10, 19, 'AD_Table_ID',
'Y', 0, 'Y', 'N',
126, 'D'
);
INSERT INTO ad_column
(ad_column_id, ad_client_id, ad_org_id, isactive,
created,
updated, createdby,
updatedby, NAME, description, VERSION,
entitytype, columnname, ad_table_id, ad_reference_id,
fieldlength, iskey, isparent, ismandatory, isupdateable,
isidentifier, seqno, istranslated, isencrypted,
isselectioncolumn, ad_element_id, ad_process_id, issyncdatabase,
isalwaysupdateable
)
VALUES (50183, 0, 0, 'Y',
TO_DATE ('02/13/2007 23:46:03', 'MM/DD/YYYY HH24:MI:SS'),
TO_DATE ('02/13/2007 23:46:03', 'MM/DD/YYYY HH24:MI:SS'), 100,
100, 'Copy Columns from Table', 'Copy Columns from Table', 1,
'D', 'CopyColumnsFromTable', 100, 28,
1, 'N', 'N', 'N', 'Y',
'N', 0, 'N', 'N',
'N', 50040, 50011, 'N',
'N'
);
INSERT INTO ad_field
(ad_field_id, ad_client_id, ad_org_id, isactive,
created, createdby,
updated, updatedby,
NAME, description, iscentrallymaintained, ad_tab_id,
ad_column_id, isdisplayed, displaylength, isreadonly,
issameline, isheading, isfieldonly, isencrypted, entitytype
)
VALUES (50157, 0, 0, 'Y',
TO_DATE ('02/13/2007 23:56:24', 'MM/DD/YYYY HH24:MI:SS'), 100,
TO_DATE ('02/13/2007 23:56:24', 'MM/DD/YYYY HH24:MI:SS'), 100,
'Copy Columns from Table', 'Copy Columns from Table', 'Y', 100,
50183, 'Y', 1, 'N',
'N', 'N', 'N', 'N', 'D'
);
UPDATE ad_sequence
SET currentnextsys = (SELECT MAX (ad_element_id) + 1
FROM ad_element
WHERE ad_element_id < 1000000)
WHERE NAME = 'AD_Element';
UPDATE ad_sequence
SET currentnextsys = (SELECT MAX (ad_process_id) + 1
FROM ad_process
WHERE ad_process_id < 1000000)
WHERE NAME = 'AD_Process';
UPDATE ad_sequence
SET currentnextsys = (SELECT MAX (ad_process_para_id) + 1
FROM ad_process_para
WHERE ad_process_para_id < 1000000)
WHERE NAME = 'AD_Process_Para';
UPDATE ad_sequence
SET currentnextsys = (SELECT MAX (ad_column_id) + 1
FROM ad_column
WHERE ad_column_id < 1000000)
WHERE NAME = 'AD_Column';
UPDATE ad_sequence
SET currentnextsys = (SELECT MAX (ad_field_id) + 1
FROM ad_field
WHERE ad_field_id < 1000000)
WHERE NAME = 'AD_Field';
COMMIT ;
ALTER TABLE ad_table ADD copycolumnsfromtable VARCHAR(1);
COMMIT ;

View File

@ -0,0 +1,69 @@
INSERT INTO ad_element_trl
(ad_element_id, ad_language, ad_client_id, ad_org_id, isactive,
created, createdby,
updated, updatedby,
NAME, printname, istranslated
)
VALUES (50040, 'es_MX', 0, 0, 'Y',
TO_DATE ('02/13/2007 23:31:30', 'MM/DD/YYYY HH24:MI:SS'), 100,
TO_DATE ('02/13/2007 23:31:53', 'MM/DD/YYYY HH24:MI:SS'), 100,
'Copia Columnas desde Tabla', 'Copia Columnas desde Tabla', 'Y'
);
INSERT INTO ad_process_trl
(ad_process_id, ad_language, ad_client_id, ad_org_id, isactive,
created, createdby,
updated, updatedby,
NAME,
description,
istranslated
)
VALUES (50011, 'es_MX', 0, 0, 'Y',
TO_DATE ('02/13/2007 23:35:07', 'MM/DD/YYYY HH24:MI:SS'), 100,
TO_DATE ('02/13/2007 23:35:40', 'MM/DD/YYYY HH24:MI:SS'), 100,
'Copiar Columnas desde Tabla',
'Crear columnas del diccionario para una tabla tomando otra como base',
'N'
);
INSERT INTO ad_process_para_trl
(ad_process_para_id, ad_language, ad_client_id, ad_org_id,
isactive, created,
createdby, updated,
updatedby, NAME, description,
HELP,
istranslated
)
VALUES (50005, 'es_MX', 0, 0,
'Y', TO_DATE ('02/13/2007 23:39:09', 'MM/DD/YYYY HH24:MI:SS'),
100, TO_DATE ('02/13/2007 23:43:32', 'MM/DD/YYYY HH24:MI:SS'),
100, 'Tabla', 'Información de tabla de la base de datos',
'La tabla de la base de datos provee información sobre definición de la tabla',
'Y'
);
INSERT INTO ad_column_trl
(ad_column_id, ad_language, ad_client_id, ad_org_id, isactive,
created, createdby,
updated, updatedby,
NAME, istranslated
)
VALUES (50183, 'es_MX', 0, 0, 'Y',
TO_DATE ('02/13/2007 23:46:03', 'MM/DD/YYYY HH24:MI:SS'), 100,
TO_DATE ('02/13/2007 23:46:22', 'MM/DD/YYYY HH24:MI:SS'), 100,
'Copiar Columnas de Tabla', 'Y'
);
INSERT INTO ad_field_trl
(ad_field_id, ad_language, ad_client_id, ad_org_id, isactive,
created, createdby,
updated, updatedby,
NAME, description, istranslated
)
VALUES (50157, 'es_MX', 0, 0, 'Y',
TO_DATE ('02/13/2007 23:56:24', 'MM/DD/YYYY HH24:MI:SS'), 100,
TO_DATE ('02/13/2007 23:57:09', 'MM/DD/YYYY HH24:MI:SS'), 100,
'Copiar Columnas desde Tabla', 'Copiar Columnas desde Tabla', 'Y'
);
COMMIT ;

View File

@ -0,0 +1,13 @@
UPDATE ad_process
SET classname = 'org.adempiere.pipo.PackRoll'
WHERE classname = 'org.compiere.PackOut.PackRoll';
UPDATE ad_process
SET classname = 'org.adempiere.pipo.PackOut'
WHERE classname = 'org.compiere.PackOut.PackOut';
UPDATE ad_process
SET classname = 'org.adempiere.pipo.PackIn'
WHERE classname = 'org.compiere.PackOut.IntPackIn';
COMMIT ;

View File

@ -0,0 +1,48 @@
INSERT INTO ad_message
(ad_message_id, ad_client_id, ad_org_id, isactive, created,
createdby, updated, updatedby, VALUE,
msgtext, msgtip, msgtype, entitytype
)
values (
50008,0,0,'Y',to_date('26-02-2007','DD-MM-RRRR'),
0,to_date('26-02-2007','DD-MM-RRRR'),0,'ImplementationVendor',
'Implementation Vendor',null,'I','D'
);
INSERT INTO ad_message
(ad_message_id, ad_client_id, ad_org_id, isactive, created,
createdby, updated, updatedby, VALUE,
msgtext, msgtip, msgtype, entitytype
)
values (
50009,0,0,'Y',to_date('26-02-2007','DD-MM-RRRR'),
0,to_date('26-02-2007','DD-MM-RRRR'),0,'ImplementationVersion',
'Implementation Version',null,'I','D'
);
INSERT INTO ad_message_trl
(ad_message_id, ad_language, ad_client_id, ad_org_id, isactive,
created, createdby, updated, updatedby, msgtext, msgtip,
istranslated)
SELECT m.ad_message_id, lang.ad_language, m.ad_client_id, m.ad_org_id, 'Y',
m.created, m.createdby, m.updated, m.updatedby, m.msgtext, m.msgtip,
'N'
FROM ad_message m, ad_language lang
WHERE m.ad_message_id in (50008, 50009)
AND lang.issystemlanguage = 'Y'
AND lang.isbaselanguage = 'N'
AND NOT EXISTS (
SELECT *
FROM ad_message_trl m2
WHERE m2.ad_message_id = m.ad_message_id
AND m2.ad_language = lang.ad_language);
COMMIT ;
UPDATE ad_sequence
SET currentnextsys = (SELECT MAX (ad_message_id) + 1
FROM ad_message
WHERE ad_message_id < 1000000)
WHERE NAME = 'AD_Message';
COMMIT ;

View File

@ -0,0 +1,248 @@
INSERT INTO ad_element
(ad_element_id, ad_client_id, ad_org_id, isactive,
created, createdby,
updated, updatedby,
columnname, entitytype, NAME,
printname
)
VALUES (50041, 0, 0, 'Y',
TO_DATE ('02/26/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100,
TO_DATE ('02/26/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100,
'StoreAttachmentsOnFileSystem', 'D', 'Store Attachments On File System',
'Store Attachments On File System'
);
INSERT INTO ad_column
(ad_column_id, ad_client_id, ad_org_id, isactive,
created,
updated, createdby,
updatedby, NAME, description, VERSION,
entitytype, columnname, ad_table_id, ad_reference_id,
fieldlength, iskey, isparent, ismandatory, isupdateable,
isidentifier, seqno, istranslated, isencrypted,
isselectioncolumn, ad_element_id, callout, issyncdatabase,
isalwaysupdateable
)
VALUES (50184, 0, 0, 'Y',
TO_DATE ('02/26/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'),
TO_DATE ('02/26/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100,
100, 'Store Attachments On File System', 'Store Attachments On File System', 1,
'D', 'StoreAttachmentsOnFileSystem', 112, 20,
1, 'N', 'N', 'Y', 'Y',
'N', 0, 'N', 'N',
'N', 50041, 'org.compiere.model.CalloutClient.storeAttachmentOnFileSystem', 'N',
'N'
);
INSERT INTO ad_field
(ad_field_id, ad_client_id, ad_org_id, isactive,
created, createdby,
updated, updatedby,
NAME, description, iscentrallymaintained, seqno, ad_tab_id,
ad_column_id, isdisplayed, displaylength, isreadonly,
issameline, isheading, isfieldonly, isencrypted, entitytype
)
VALUES (50158, 0, 0, 'Y',
TO_DATE ('02/26/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100,
TO_DATE ('02/26/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100,
'Store Attachments On File System', 'Store Attachments On File System', 'Y', 220, 145,
50184, 'Y', 1, 'N',
'N', 'N', 'N', 'N', 'D'
);
INSERT INTO ad_element
(ad_element_id, ad_client_id, ad_org_id, isactive,
created, createdby,
updated, updatedby,
columnname, entitytype, NAME,
printname
)
VALUES (50042, 0, 0, 'Y',
TO_DATE ('02/26/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100,
TO_DATE ('02/26/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100,
'WindowsAttachmentPath', 'D', 'Windows Attachment Path',
'Windows Attachment Path'
);
INSERT INTO ad_column
(ad_column_id, ad_client_id, ad_org_id, isactive,
created,
updated, createdby,
updatedby, NAME, description,
help, VERSION,
entitytype, columnname, ad_table_id, ad_reference_id,
fieldlength, iskey, isparent, ismandatory, isupdateable,
isidentifier, seqno, istranslated, isencrypted,
isselectioncolumn, ad_element_id, issyncdatabase,
isalwaysupdateable
)
VALUES (50185, 0, 0, 'Y',
TO_DATE ('02/26/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'),
TO_DATE ('02/26/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100,
100, 'Windows Attachment Path', 'Windows Attachment Path - If you change this value make sure to copy the attachments to the new path!',
'Path of the Adempiere attachments in the file system. If you change this value make sure to copy the attachments to the new path!', 1,
'D', 'WindowsAttachmentPath', 112, 10,
255, 'N', 'N', 'N', 'Y',
'N', 0, 'N', 'N',
'N', 50042, 'N',
'N'
);
INSERT INTO ad_field
(ad_field_id, ad_client_id, ad_org_id, isactive,
created, createdby,
updated, updatedby,
NAME, description,
help,
iscentrallymaintained, seqno, ad_tab_id,
ad_column_id, isdisplayed, displaylength, isreadonly,
issameline, isheading, isfieldonly, isencrypted, entitytype, displaylogic
)
VALUES (50159, 0, 0, 'Y',
TO_DATE ('02/26/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100,
TO_DATE ('02/26/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100,
'Windows Attachment Path', 'Windows Attachment Path',
'If you change this value make sure to copy the attachments to the new path!',
'Y', 230, 145,
50185, 'Y', 1, 'N',
'N', 'N', 'N', 'N', 'D','@StoreAttachmentsOnFileSystem@=''Y'''
);
INSERT INTO ad_element
(ad_element_id, ad_client_id, ad_org_id, isactive,
created, createdby,
updated, updatedby,
columnname, entitytype, NAME,
printname
)
VALUES (50043, 0, 0, 'Y',
TO_DATE ('02/26/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100,
TO_DATE ('02/26/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100,
'UnixAttachmentPath', 'D', 'Unix Attachment Path',
'Unix Attachment Path'
);
INSERT INTO ad_column
(ad_column_id, ad_client_id, ad_org_id, isactive,
created,
updated, createdby,
updatedby, NAME, description,
help, VERSION,
entitytype, columnname, ad_table_id, ad_reference_id,
fieldlength, iskey, isparent, ismandatory, isupdateable,
isidentifier, seqno, istranslated, isencrypted,
isselectioncolumn, ad_element_id, issyncdatabase,
isalwaysupdateable
)
VALUES (50186, 0, 0, 'Y',
TO_DATE ('02/26/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'),
TO_DATE ('02/26/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100,
100, 'Unix Attachment Path', 'Unix Attachment Path - If you change this value make sure to copy the attachments to the new path!',
'Path of the Adempiere attachments in the file system. If you change this value make sure to copy the attachments to the new path!', 1,
'D', 'UnixAttachmentPath', 112, 10,
255, 'N', 'N', 'N', 'Y',
'N', 0, 'N', 'N',
'N', 50043, 'N',
'N'
);
INSERT INTO ad_field
(ad_field_id, ad_client_id, ad_org_id, isactive,
created, createdby,
updated, updatedby,
NAME, description,
help,
iscentrallymaintained, seqno, ad_tab_id,
ad_column_id, isdisplayed, displaylength, isreadonly,
issameline, isheading, isfieldonly, isencrypted, entitytype, displaylogic
)
VALUES (50160, 0, 0, 'Y',
TO_DATE ('02/26/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100,
TO_DATE ('02/26/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100,
'Unix Attachment Path', 'Unix Attachment Path',
'If you change this value make sure to copy the attachments to the new path!',
'Y', 240 ,145,
50186, 'Y', 1, 'N',
'Y', 'N', 'N', 'N', 'D','@StoreAttachmentsOnFileSystem@=''Y'''
);
INSERT INTO ad_message
(ad_message_id, ad_client_id, ad_org_id, isactive,
created, createdby,
updated, updatedby,
value, msgtext, msgtype
)
VALUES (50010, 0, 0, 'Y',
TO_DATE ('02/26/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100,
TO_DATE ('02/26/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100,
'StoreAttachmentWarning',
'If you change the attachment storage method, the old attachments are no longer available to your client.','I'
);
INSERT INTO ad_message
(ad_message_id, ad_client_id, ad_org_id, isactive,
created, createdby,
updated, updatedby,
value, msgtext, msgtype
)
VALUES (50011, 0, 0, 'Y',
TO_DATE ('02/26/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100,
TO_DATE ('02/26/2007 12:30:00', 'MM/DD/YYYY HH24:MI:SS'), 100,
'AttachmentPathWarning','Make sure to copy the attachments to the new path!','I'
);
INSERT INTO ad_message_trl
(ad_message_id, ad_language, ad_client_id, ad_org_id, isactive,
created, createdby, updated, updatedby, msgtext, msgtip,
istranslated)
SELECT m.ad_message_id, lang.ad_language, m.ad_client_id, m.ad_org_id, 'Y',
m.created, m.createdby, m.updated, m.updatedby, m.msgtext, m.msgtip,
'N'
FROM ad_message m, ad_language lang
WHERE m.ad_message_id in (50010, 50011)
AND lang.issystemlanguage = 'Y'
AND lang.isbaselanguage = 'N'
AND NOT EXISTS (
SELECT *
FROM ad_message_trl m2
WHERE m2.ad_message_id = m.ad_message_id
AND m2.ad_language = lang.ad_language);
COMMIT ;
UPDATE ad_sequence
SET currentnextsys = (SELECT MAX (ad_element_id) + 1
FROM ad_element
WHERE ad_element_id < 1000000)
WHERE NAME = 'AD_Element';
UPDATE ad_sequence
SET currentnextsys = (SELECT MAX (ad_column_id) + 1
FROM ad_column
WHERE ad_column_id < 1000000)
WHERE NAME = 'AD_Column';
UPDATE ad_sequence
SET currentnextsys = (SELECT MAX (ad_field_id) + 1
FROM ad_field
WHERE ad_field_id < 1000000)
WHERE NAME = 'AD_Field';
UPDATE ad_sequence
SET currentnextsys = (SELECT MAX (ad_message_id) + 1
FROM ad_message
WHERE ad_message_id < 1000000)
WHERE NAME = 'AD_Message';
ALTER TABLE ad_client ADD StoreAttachmentsOnFilesystem CHAR(1) DEFAULT 'N' NOT NULL;
ALTER TABLE ad_client ADD WindowsAttachmentPath VARCHAR(255);
ALTER TABLE ad_client ADD UnixAttachmentPath VARCHAR(255);
COMMIT ;

File diff suppressed because it is too large Load Diff

View File

@ -0,0 +1,97 @@
DROP TABLE tire_storage;
DELETE FROM ad_treenodemm
WHERE node_id = 226;
DELETE FROM ad_menu_trl
WHERE ad_menu_id = 226;
DELETE FROM ad_menu
WHERE ad_menu_id = 226;
DELETE FROM ad_field_trl
WHERE ad_field_id IN (SELECT ad_field_id
FROM ad_field
WHERE ad_tab_id = 318);
DELETE FROM ad_field
WHERE ad_tab_id = 318;
DELETE FROM ad_tab_trl
WHERE ad_tab_id = 318;
DELETE FROM ad_tab
WHERE ad_tab_id = 318;
DELETE FROM ad_window_access
WHERE ad_window_id = 190;
DELETE FROM ad_window_trl
WHERE ad_window_id = 190;
DELETE FROM ad_window
WHERE ad_window_id = 190;
DELETE FROM ad_process_trl
WHERE ad_process_id = 160;
DELETE FROM ad_process
WHERE ad_process_id = 160;
DELETE FROM ad_reportview
WHERE ad_reportview_id = 121;
DELETE FROM ad_column_trl
WHERE ad_column_id IN (SELECT ad_column_id
FROM ad_column
WHERE ad_table_id = 384);
DELETE FROM ad_column
WHERE ad_table_id = 384;
DELETE FROM ad_table_trl
WHERE ad_table_id = 384;
DELETE FROM ad_table
WHERE ad_table_id = 384;
DELETE FROM ad_element_trl
WHERE ad_element_id IN
(1527,
1325,
1333,
1339,
1330,
1340,
1331,
1337,
1335,
1327,
1336,
1332,
1334,
1328,
1338
);
DELETE FROM ad_element
WHERE ad_element_id IN
(1527,
1325,
1333,
1339,
1330,
1340,
1331,
1337,
1335,
1327,
1336,
1332,
1334,
1328,
1338
);
COMMIT;

View File

@ -0,0 +1,566 @@
CREATE TABLE ad_sysconfig
(
ad_sysconfig_id NUMERIC(10) NOT NULL,
ad_client_id NUMERIC(10) NOT NULL,
ad_org_id NUMERIC(10) NOT NULL,
created TIMESTAMP NOT NULL,
updated TIMESTAMP NOT NULL,
createdby NUMERIC(10) NOT NULL,
updatedby NUMERIC(10) NOT NULL,
isactive CHAR(1) DEFAULT 'Y' NOT NULL,
NAME VARCHAR(50) NOT NULL,
VALUE VARCHAR(255) NOT NULL,
description VARCHAR(255)
);
ALTER TABLE ad_sysconfig ADD
CHECK (isactive IN ('Y','N'));
ALTER TABLE ad_sysconfig ADD
CONSTRAINT ad_sysconfig_key PRIMARY KEY (ad_sysconfig_id);
INSERT INTO ad_window
(ad_window_id, ad_client_id, ad_org_id, isactive,
created, createdby,
updated, updatedby,
NAME, windowtype, issotrx, entitytype, processing, isdefault,
winheight, winwidth, isbetafunctionality
)
VALUES (50006, 0, 0, 'Y',
TO_DATE ('02/28/2007 01:39:29', 'MM/DD/YYYY HH24:MI:SS'), 100,
TO_DATE ('02/28/2007 01:39:29', 'MM/DD/YYYY HH24:MI:SS'), 100,
'System Configurator', 'M', 'Y', 'D', 'N', 'N',
0, 0, 'N'
);
INSERT INTO ad_window_access
(ad_window_id, ad_role_id, ad_client_id, ad_org_id, isactive,
created, createdby,
updated, updatedby,
isreadwrite
)
VALUES (50006, 102, 0, 0, 'Y',
TO_DATE ('02/28/2007 01:39:29', 'MM/DD/YYYY HH24:MI:SS'), 100,
TO_DATE ('02/28/2007 01:39:29', 'MM/DD/YYYY HH24:MI:SS'), 100,
'Y'
);
INSERT INTO ad_window_access
(ad_window_id, ad_role_id, ad_client_id, ad_org_id, isactive,
created, createdby,
updated, updatedby,
isreadwrite
)
VALUES (50006, 50001, 0, 0, 'Y',
TO_DATE ('02/28/2007 01:39:29', 'MM/DD/YYYY HH24:MI:SS'), 100,
TO_DATE ('02/28/2007 01:39:29', 'MM/DD/YYYY HH24:MI:SS'), 100,
'Y'
);
INSERT INTO ad_window_access
(ad_window_id, ad_role_id, ad_client_id, ad_org_id, isactive,
created, createdby,
updated, updatedby,
isreadwrite
)
VALUES (50006, 0, 0, 0, 'Y',
TO_DATE ('02/28/2007 01:39:29', 'MM/DD/YYYY HH24:MI:SS'), 100,
TO_DATE ('02/28/2007 01:39:29', 'MM/DD/YYYY HH24:MI:SS'), 100,
'Y'
);
INSERT INTO ad_window_access
(ad_window_id, ad_role_id, ad_client_id, ad_org_id, isactive,
created, createdby,
updated, updatedby,
isreadwrite
)
VALUES (50006, 103, 0, 0, 'Y',
TO_DATE ('02/28/2007 01:39:29', 'MM/DD/YYYY HH24:MI:SS'), 100,
TO_DATE ('02/28/2007 01:39:29', 'MM/DD/YYYY HH24:MI:SS'), 100,
'Y'
);
INSERT INTO ad_table
(ad_table_id, ad_client_id, ad_org_id, isactive,
created, createdby,
updated, updatedby,
NAME, tablename, isview, accesslevel, entitytype, ad_window_id,
loadseq, issecurityenabled, isdeleteable, ishighvolume,
importtable, ischangelog, replicationtype, copycolumnsfromtable
)
VALUES (50009, 0, 0, 'Y',
TO_DATE ('02/28/2007 01:41:08', 'MM/DD/YYYY HH24:MI:SS'), 100,
TO_DATE ('02/28/2007 01:41:08', 'MM/DD/YYYY HH24:MI:SS'), 100,
'System Configurator', 'AD_SysConfig', 'N', '6', 'D', 50006,
0, 'N', 'Y', 'Y',
'N', 'N', 'L', 'N'
);
INSERT INTO ad_sequence
(ad_sequence_id, ad_client_id, ad_org_id, isactive,
created, createdby,
updated, updatedby,
NAME, description, isautosequence, incrementno, startno,
currentnext, currentnextsys, isaudited, istableid, startnewyear
)
VALUES (50009, 0, 0, 'Y',
TO_DATE ('02/28/2007 01:41:09', 'MM/DD/YYYY HH24:MI:SS'), 100,
TO_DATE ('02/28/2007 01:41:09', 'MM/DD/YYYY HH24:MI:SS'), 100,
'AD_SysConfig', 'Table AD_SysConfig', 'Y', 1, 1000000,
1000000, 50000, 'N', 'Y', 'N'
);
INSERT INTO ad_element
(ad_element_id, ad_client_id, ad_org_id, isactive,
created, createdby,
updated, updatedby,
columnname, entitytype, NAME,
printname
)
VALUES (50044, 0, 0, 'Y',
TO_DATE ('02/28/2007 01:41:28', 'MM/DD/YYYY HH24:MI:SS'), 100,
TO_DATE ('02/28/2007 01:41:28', 'MM/DD/YYYY HH24:MI:SS'), 100,
'AD_SysConfig_ID', 'D', 'System Configurator',
'System Configurator'
);
INSERT INTO ad_column
(ad_column_id, ad_client_id, ad_org_id, isactive,
created,
updated, createdby,
updatedby, NAME, VERSION, entitytype, columnname, ad_table_id,
ad_reference_id, fieldlength, iskey, isparent, ismandatory,
isupdateable, isidentifier, istranslated, isencrypted,
isselectioncolumn, ad_element_id, issyncdatabase,
isalwaysupdateable
)
VALUES (50187, 0, 0, 'Y',
TO_DATE ('02/28/2007 01:41:27', 'MM/DD/YYYY HH24:MI:SS'),
TO_DATE ('02/28/2007 01:43:06', 'MM/DD/YYYY HH24:MI:SS'), 100,
100, 'System Configurator', 0, 'D', 'AD_SysConfig_ID', 50009,
13, 10, 'Y', 'N', 'Y',
'N', 'N', 'N', 'N',
'N', 50044, 'N',
'N'
);
INSERT INTO ad_column
(ad_column_id, ad_client_id, ad_org_id, isactive,
created,
updated, createdby,
updatedby, NAME, description,
HELP,
VERSION, entitytype, columnname, ad_table_id, ad_reference_id,
fieldlength, iskey, isparent, ismandatory, isupdateable,
isidentifier, istranslated, isencrypted, isselectioncolumn,
ad_element_id, issyncdatabase, isalwaysupdateable
)
VALUES (50188, 0, 0, 'Y',
TO_DATE ('02/28/2007 01:41:28', 'MM/DD/YYYY HH24:MI:SS'),
TO_DATE ('02/28/2007 01:42:05', 'MM/DD/YYYY HH24:MI:SS'), 100,
100, 'Client', 'Client/Tenant for this installation.',
'A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.',
0, 'D', 'AD_Client_ID', 50009, 19,
10, 'N', 'N', 'Y', 'N',
'N', 'N', 'N', 'N',
102, 'N', 'N'
);
INSERT INTO ad_column
(ad_column_id, ad_client_id, ad_org_id, isactive,
created,
updated, createdby,
updatedby, NAME, description,
HELP,
VERSION, entitytype, columnname, ad_table_id, ad_reference_id,
fieldlength, iskey, isparent, ismandatory, isupdateable,
isidentifier, istranslated, isencrypted, isselectioncolumn,
ad_element_id, issyncdatabase, isalwaysupdateable
)
VALUES (50189, 0, 0, 'Y',
TO_DATE ('02/28/2007 01:41:28', 'MM/DD/YYYY HH24:MI:SS'),
TO_DATE ('02/28/2007 01:42:08', 'MM/DD/YYYY HH24:MI:SS'), 100,
100, 'Organization', 'Organizational entity within client',
'An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.',
0, 'D', 'AD_Org_ID', 50009, 19,
10, 'N', 'N', 'Y', 'N',
'N', 'N', 'N', 'N',
113, 'N', 'N'
);
INSERT INTO ad_column
(ad_column_id, ad_client_id, ad_org_id, isactive,
created,
updated, createdby,
updatedby, NAME, description,
HELP,
VERSION, entitytype, columnname, ad_table_id, ad_reference_id,
fieldlength, iskey, isparent, ismandatory, isupdateable,
isidentifier, istranslated, isencrypted, isselectioncolumn,
ad_element_id, issyncdatabase, isalwaysupdateable
)
VALUES (50190, 0, 0, 'Y',
TO_DATE ('02/28/2007 01:41:28', 'MM/DD/YYYY HH24:MI:SS'),
TO_DATE ('02/28/2007 01:43:21', 'MM/DD/YYYY HH24:MI:SS'), 100,
100, 'Created', 'Date this record was created',
'The Created field indicates the date that this record was created.',
0, 'D', 'Created', 50009, 16,
7, 'N', 'N', 'Y', 'N',
'N', 'N', 'N', 'N',
245, 'N', 'N'
);
INSERT INTO ad_column
(ad_column_id, ad_client_id, ad_org_id, isactive,
created,
updated, createdby,
updatedby, NAME, description,
HELP,
VERSION, entitytype, columnname, ad_table_id, ad_reference_id,
fieldlength, iskey, isparent, ismandatory, isupdateable,
isidentifier, istranslated, isencrypted, isselectioncolumn,
ad_element_id, issyncdatabase, isalwaysupdateable
)
VALUES (50191, 0, 0, 'Y',
TO_DATE ('02/28/2007 01:41:29', 'MM/DD/YYYY HH24:MI:SS'),
TO_DATE ('02/28/2007 01:43:40', 'MM/DD/YYYY HH24:MI:SS'), 100,
100, 'Updated', 'Date this record was updated',
'The Updated field indicates the date that this record was updated.',
0, 'D', 'Updated', 50009, 16,
7, 'N', 'N', 'Y', 'N',
'N', 'N', 'N', 'N',
607, 'N', 'N'
);
INSERT INTO ad_column
(ad_column_id, ad_client_id, ad_org_id, isactive,
created,
updated, createdby,
updatedby, NAME, description,
HELP,
VERSION, entitytype, columnname, ad_table_id, ad_reference_id,
ad_reference_value_id, fieldlength, iskey, isparent,
ismandatory, isupdateable, isidentifier, istranslated,
isencrypted, isselectioncolumn, ad_element_id, issyncdatabase,
isalwaysupdateable
)
VALUES (50192, 0, 0, 'Y',
TO_DATE ('02/28/2007 01:41:29', 'MM/DD/YYYY HH24:MI:SS'),
TO_DATE ('02/28/2007 01:43:25', 'MM/DD/YYYY HH24:MI:SS'), 100,
100, 'Created By', 'User who created this records',
'The Created By field indicates the user who created this record.',
0, 'D', 'CreatedBy', 50009, 18,
110, 10, 'N', 'N',
'Y', 'N', 'N', 'N',
'N', 'N', 246, 'N',
'N'
);
INSERT INTO ad_column
(ad_column_id, ad_client_id, ad_org_id, isactive,
created,
updated, createdby,
updatedby, NAME, description,
HELP,
VERSION, entitytype, columnname, ad_table_id, ad_reference_id,
fieldlength, iskey, isparent, ismandatory, isupdateable,
isidentifier, seqno, istranslated, isencrypted,
isselectioncolumn, ad_element_id, issyncdatabase,
isalwaysupdateable
)
VALUES (50195, 0, 0, 'Y',
TO_DATE ('02/28/2007 01:41:29', 'MM/DD/YYYY HH24:MI:SS'),
TO_DATE ('02/28/2007 01:43:38', 'MM/DD/YYYY HH24:MI:SS'), 100,
100, 'Name', 'Alphanumeric identifier of the entity',
'The name of an entity (record) is used as an default search option in addition to the search key. The name is up to 60 characters in length.',
0, 'D', 'Name', 50009, 10,
100, 'N', 'N', 'Y', 'Y',
'Y', 1, 'N', 'N',
'N', 469, 'N',
'N'
);
INSERT INTO ad_column
(ad_column_id, ad_client_id, ad_org_id, isactive,
created,
updated, createdby,
updatedby, NAME, description,
HELP,
VERSION, entitytype, columnname, ad_table_id, ad_reference_id,
ad_reference_value_id, fieldlength, iskey, isparent,
ismandatory, isupdateable, isidentifier, istranslated,
isencrypted, isselectioncolumn, ad_element_id, issyncdatabase,
isalwaysupdateable
)
VALUES (50193, 0, 0, 'Y',
TO_DATE ('02/28/2007 01:41:29', 'MM/DD/YYYY HH24:MI:SS'),
TO_DATE ('02/28/2007 01:43:41', 'MM/DD/YYYY HH24:MI:SS'), 100,
100, 'Updated By', 'User who updated this records',
'The Updated By field indicates the user who updated this record.',
0, 'D', 'UpdatedBy', 50009, 18,
110, 10, 'N', 'N',
'Y', 'N', 'N', 'N',
'N', 'N', 608, 'N',
'N'
);
INSERT INTO ad_column
(ad_column_id, ad_client_id, ad_org_id, isactive,
created,
updated, createdby,
updatedby, NAME, description,
HELP,
VERSION, entitytype, columnname, ad_table_id, ad_reference_id,
fieldlength, iskey, isparent, ismandatory, isupdateable,
isidentifier, istranslated, isencrypted, isselectioncolumn,
ad_element_id, issyncdatabase, isalwaysupdateable
)
VALUES (50194, 0, 0, 'Y',
TO_DATE ('02/28/2007 01:41:29', 'MM/DD/YYYY HH24:MI:SS'),
TO_DATE ('02/28/2007 01:43:36', 'MM/DD/YYYY HH24:MI:SS'), 100,
100, 'Active', 'The record is active in the system',
'There are two methods of making records unavailable in the system: One is to delete the record, the other is to de-activate the record. A de-activated record is not available for selection, but available for reports.
There are two reasons for de-activating and not deleting records:
(1) The system requires the record for audit purposes.
(2) The record is referenced by other records. E.g., you cannot delete a Business Partner, if there are invoices for this partner record existing. You de-activate the Business Partner and prevent that this record is used for future entries.',
0, 'D', 'IsActive', 50009, 20,
1, 'N', 'N', 'Y', 'Y',
'N', 'N', 'N', 'N',
348, 'N', 'N'
);
INSERT INTO ad_column
(ad_column_id, ad_client_id, ad_org_id, isactive,
created,
updated, createdby,
updatedby, NAME,
description,
HELP,
VERSION, entitytype, columnname, ad_table_id, ad_reference_id,
fieldlength, iskey, isparent, ismandatory, isupdateable,
isidentifier, istranslated, isencrypted, isselectioncolumn,
ad_element_id, issyncdatabase, isalwaysupdateable
)
VALUES (50196, 0, 0, 'Y',
TO_DATE ('02/28/2007 01:41:30', 'MM/DD/YYYY HH24:MI:SS'),
TO_DATE ('02/28/2007 01:43:43', 'MM/DD/YYYY HH24:MI:SS'), 100,
100, 'Search Key',
'Search key for the record in the format required - must be unique',
'A search key allows you a fast method of finding a particular record.
If you leave the search key empty, the system automatically creates a numeric number. The document sequence used for this fallback number is defined in the "Maintain Sequence" window with the name "DocumentNo_<TableName>", where TableName is the actual name of the table (e.g. C_Order).',
0, 'D', 'Value', 50009, 10,
255, 'N', 'N', 'Y', 'Y',
'N', 'N', 'N', 'N',
620, 'N', 'N'
);
INSERT INTO ad_column
(ad_column_id, ad_client_id, ad_org_id, isactive,
created,
updated, createdby,
updatedby, NAME, description,
HELP, VERSION, entitytype,
columnname, ad_table_id, ad_reference_id, fieldlength, iskey,
isparent, ismandatory, isupdateable, isidentifier, istranslated,
isencrypted, isselectioncolumn, ad_element_id, issyncdatabase,
isalwaysupdateable
)
VALUES (50197, 0, 0, 'Y',
TO_DATE ('02/28/2007 01:41:30', 'MM/DD/YYYY HH24:MI:SS'),
TO_DATE ('02/28/2007 01:43:33', 'MM/DD/YYYY HH24:MI:SS'), 100,
100, 'Description', 'Optional short description of the record',
'A description is limited to 255 characters.', 0, 'D',
'Description', 50009, 10, 255, 'N',
'N', 'N', 'Y', 'N', 'N',
'N', 'N', 275, 'N',
'N'
);
INSERT INTO ad_tab
(ad_tab_id, ad_client_id, ad_org_id, isactive,
created, createdby,
updated, updatedby,
NAME, ad_table_id, ad_window_id, seqno, tablevel, issinglerow,
isinfotab, istranslationtab, isreadonly, hastree, processing,
importfields, issorttab, entitytype, isinsertrecord,
isadvancedtab
)
VALUES (50009, 0, 0, 'Y',
TO_DATE ('02/28/2007 01:45:56', 'MM/DD/YYYY HH24:MI:SS'), 100,
TO_DATE ('02/28/2007 01:45:56', 'MM/DD/YYYY HH24:MI:SS'), 100,
'System Configurator', 50009, 50006, 10, 0, 'N',
'N', 'N', 'N', 'N', 'N',
'N', 'N', 'D', 'Y',
'N'
);
INSERT INTO ad_field
(ad_field_id, ad_client_id, ad_org_id, isactive,
created, createdby,
updated, updatedby,
NAME, description,
HELP,
iscentrallymaintained, ad_tab_id, ad_column_id, isdisplayed,
displaylength, isreadonly, seqno, issameline, isheading,
isfieldonly, isencrypted, entitytype
)
VALUES (50162, 0, 0, 'Y',
TO_DATE ('02/28/2007 01:46:01', 'MM/DD/YYYY HH24:MI:SS'), 100,
TO_DATE ('02/28/2007 01:46:01', 'MM/DD/YYYY HH24:MI:SS'), 100,
'Client', 'Client/Tenant for this installation.',
'A Client is a company or a legal entity. You cannot share data between Clients. Tenant is a synonym for Client.',
'Y', 50009, 50188, 'Y',
10, 'N', 10, 'N', 'N',
'N', 'N', 'D'
);
INSERT INTO ad_field
(ad_field_id, ad_client_id, ad_org_id, isactive,
created, createdby,
updated, updatedby,
NAME, description,
HELP,
iscentrallymaintained, ad_tab_id, ad_column_id, isdisplayed,
displaylength, isreadonly, seqno, issameline, isheading,
isfieldonly, isencrypted, entitytype
)
VALUES (50161, 0, 0, 'Y',
TO_DATE ('02/28/2007 01:46:01', 'MM/DD/YYYY HH24:MI:SS'), 100,
TO_DATE ('02/28/2007 01:46:01', 'MM/DD/YYYY HH24:MI:SS'), 100,
'Active', 'The record is active in the system',
'There are two methods of making records unavailable in the system: One is to delete the record, the other is to de-activate the record. A de-activated record is not available for selection, but available for reports.
There are two reasons for de-activating and not deleting records:
(1) The system requires the record for audit purposes.
(2) The record is referenced by other records. E.g., you cannot delete a Business Partner, if there are invoices for this partner record existing. You de-activate the Business Partner and prevent that this record is used for future entries.',
'Y', 50009, 50194, 'Y',
1, 'N', 60, 'N', 'N',
'N', 'N', 'D'
);
INSERT INTO ad_field
(ad_field_id, ad_client_id, ad_org_id, isactive,
created, createdby,
updated, updatedby,
NAME,
description,
HELP,
iscentrallymaintained, ad_tab_id, ad_column_id, isdisplayed,
displaylength, isreadonly, seqno, issameline, isheading,
isfieldonly, isencrypted, entitytype
)
VALUES (50166, 0, 0, 'Y',
TO_DATE ('02/28/2007 01:46:02', 'MM/DD/YYYY HH24:MI:SS'), 100,
TO_DATE ('02/28/2007 01:46:02', 'MM/DD/YYYY HH24:MI:SS'), 100,
'Search Key',
'Search key for the record in the format required - must be unique',
'A search key allows you a fast method of finding a particular record.
If you leave the search key empty, the system automatically creates a numeric number. The document sequence used for this fallback number is defined in the "Maintain Sequence" window with the name "DocumentNo_<TableName>", where TableName is the actual name of the table (e.g. C_Order).',
'Y', 50009, 50196, 'Y',
255, 'N', 30, 'N', 'N',
'N', 'N', 'D'
);
INSERT INTO ad_field
(ad_field_id, ad_client_id, ad_org_id, isactive,
created, createdby,
updated, updatedby,
NAME, description,
HELP, iscentrallymaintained, ad_tab_id,
ad_column_id, isdisplayed, displaylength, isreadonly, seqno,
issameline, isheading, isfieldonly, isencrypted, entitytype
)
VALUES (50163, 0, 0, 'Y',
TO_DATE ('02/28/2007 01:46:02', 'MM/DD/YYYY HH24:MI:SS'), 100,
TO_DATE ('02/28/2007 01:46:02', 'MM/DD/YYYY HH24:MI:SS'), 100,
'Description', 'Optional short description of the record',
'A description is limited to 255 characters.', 'Y', 50009,
50197, 'Y', 255, 'N', 50,
'N', 'N', 'N', 'N', 'D'
);
INSERT INTO ad_field
(ad_field_id, ad_client_id, ad_org_id, isactive,
created, createdby,
updated, updatedby,
NAME, description,
HELP,
iscentrallymaintained, ad_tab_id, ad_column_id, isdisplayed,
displaylength, isreadonly, seqno, issameline, isheading,
isfieldonly, isencrypted, entitytype
)
VALUES (50165, 0, 0, 'Y',
TO_DATE ('02/28/2007 01:46:02', 'MM/DD/YYYY HH24:MI:SS'), 100,
TO_DATE ('02/28/2007 01:46:29', 'MM/DD/YYYY HH24:MI:SS'), 100,
'Organization', 'Organizational entity within client',
'An organization is a unit of your client or legal entity - examples are store, department. You can share data between organizations.',
'Y', 50009, 50189, 'Y',
10, 'N', 20, 'Y', 'N',
'N', 'N', 'D'
);
INSERT INTO ad_field
(ad_field_id, ad_client_id, ad_org_id, isactive,
created, createdby,
updated, updatedby,
NAME, description,
HELP,
iscentrallymaintained, ad_tab_id, ad_column_id, isdisplayed,
displaylength, isreadonly, seqno, issameline, isheading,
isfieldonly, isencrypted, entitytype
)
VALUES (50164, 0, 0, 'Y',
TO_DATE ('02/28/2007 01:46:02', 'MM/DD/YYYY HH24:MI:SS'), 100,
TO_DATE ('02/28/2007 01:46:02', 'MM/DD/YYYY HH24:MI:SS'), 100,
'Name', 'Alphanumeric identifier of the entity',
'The name of an entity (record) is used as an default search option in addition to the search key. The name is up to 60 characters in length.',
'Y', 50009, 50195, 'Y',
100, 'N', 40, 'N', 'N',
'N', 'N', 'D'
);
INSERT INTO ad_field
(ad_field_id, ad_client_id, ad_org_id, isactive,
created, createdby,
updated, updatedby,
NAME, iscentrallymaintained, ad_tab_id, ad_column_id,
isdisplayed, displaylength, isreadonly, seqno, issameline,
isheading, isfieldonly, isencrypted, entitytype
)
VALUES (50167, 0, 0, 'Y',
TO_DATE ('02/28/2007 01:46:02', 'MM/DD/YYYY HH24:MI:SS'), 100,
TO_DATE ('02/28/2007 01:46:02', 'MM/DD/YYYY HH24:MI:SS'), 100,
'System Configurator', 'Y', 50009, 50187,
'N', 10, 'N', 0, 'N',
'N', 'N', 'N', 'D'
);
INSERT INTO ad_menu
(ad_menu_id, ad_client_id, ad_org_id, isactive,
created, createdby,
updated,
NAME, updatedby, issummary, issotrx, isreadonly, action,
ad_window_id, entitytype
)
VALUES (50008, 0, 0, 'Y',
TO_DATE ('02/28/2007 01:46:54', 'MM/DD/YYYY HH24:MI:SS'), 100,
TO_DATE ('02/28/2007 01:46:54', 'MM/DD/YYYY HH24:MI:SS'),
'System Configurator', 100, 'N', 'N', 'N', 'W',
50006, 'D'
);
INSERT INTO ad_treenodemm
(ad_tree_id, node_id, ad_client_id, ad_org_id, isactive,
created, createdby,
updated, updatedby,
parent_id, seqno
)
VALUES (10, 50008, 0, 0, 'Y',
TO_DATE ('02/28/2007 01:46:53', 'MM/DD/YYYY HH24:MI:SS'), 0,
TO_DATE ('02/28/2007 01:47:50', 'MM/DD/YYYY HH24:MI:SS'), 0,
161, 17
);
COMMIT ;

View File

@ -0,0 +1,590 @@
ALTER TABLE ad_role ADD
allow_info_account CHAR(1) DEFAULT 'Y';
ALTER TABLE ad_role ADD
allow_info_asset CHAR(1) DEFAULT 'Y';
ALTER TABLE ad_role ADD
allow_info_bpartner CHAR(1) DEFAULT 'Y';
ALTER TABLE ad_role ADD
allow_info_cashjournal CHAR(1) DEFAULT 'Y';
ALTER TABLE ad_role ADD
allow_info_inout CHAR(1) DEFAULT 'Y';
ALTER TABLE ad_role ADD
allow_info_invoice CHAR(1) DEFAULT 'Y';
ALTER TABLE ad_role ADD
allow_info_order CHAR(1) DEFAULT 'Y';
ALTER TABLE ad_role ADD
allow_info_payment CHAR(1) DEFAULT 'Y';
ALTER TABLE ad_role ADD
allow_info_product CHAR(1) DEFAULT 'Y';
ALTER TABLE ad_role ADD
allow_info_resource CHAR(1) DEFAULT 'Y';
ALTER TABLE ad_role ADD
allow_info_schedule CHAR(1) DEFAULT 'Y';
INSERT INTO ad_element
(ad_element_id, ad_client_id, ad_org_id, isactive,
created, createdby,
updated, updatedby,
columnname, entitytype, NAME,
printname
)
VALUES (50045, 0, 0, 'Y',
TO_DATE ('02/28/2007 02:23:55', 'MM/DD/YYYY HH24:MI:SS'), 100,
TO_DATE ('02/28/2007 02:24:32', 'MM/DD/YYYY HH24:MI:SS'), 100,
'Allow_Info_Account', 'D', 'Allow Info Account',
'Allow Info Account'
);
INSERT INTO ad_element
(ad_element_id, ad_client_id, ad_org_id, isactive,
created, createdby,
updated, updatedby,
columnname, entitytype, NAME,
printname
)
VALUES (50047, 0, 0, 'Y',
TO_DATE ('02/28/2007 02:23:55', 'MM/DD/YYYY HH24:MI:SS'), 100,
TO_DATE ('02/28/2007 02:29:51', 'MM/DD/YYYY HH24:MI:SS'), 100,
'Allow_Info_BPartner', 'D', 'Allow Info BPartner',
'Allow Info BPartner'
);
INSERT INTO ad_element
(ad_element_id, ad_client_id, ad_org_id, isactive,
created, createdby,
updated, updatedby,
columnname, entitytype, NAME, printname
)
VALUES (50046, 0, 0, 'Y',
TO_DATE ('02/28/2007 02:23:55', 'MM/DD/YYYY HH24:MI:SS'), 100,
TO_DATE ('02/28/2007 02:27:15', 'MM/DD/YYYY HH24:MI:SS'), 100,
'Allow_Info_Asset', 'D', 'Allow Info Asset', 'Allow Info Asset'
);
INSERT INTO ad_element
(ad_element_id, ad_client_id, ad_org_id, isactive,
created, createdby,
updated, updatedby,
columnname, entitytype, NAME, printname
)
VALUES (50051, 0, 0, 'Y',
TO_DATE ('02/28/2007 02:23:56', 'MM/DD/YYYY HH24:MI:SS'), 100,
TO_DATE ('02/28/2007 02:31:43', 'MM/DD/YYYY HH24:MI:SS'), 100,
'Allow_Info_Order', 'D', 'Allow Info Order', 'Allow Info Order'
);
INSERT INTO ad_element
(ad_element_id, ad_client_id, ad_org_id, isactive,
created, createdby,
updated, updatedby,
columnname, entitytype, NAME,
printname
)
VALUES (50052, 0, 0, 'Y',
TO_DATE ('02/28/2007 02:23:56', 'MM/DD/YYYY HH24:MI:SS'), 100,
TO_DATE ('02/28/2007 02:32:00', 'MM/DD/YYYY HH24:MI:SS'), 100,
'Allow_Info_Payment', 'D', 'Allow Info Payment',
'Allow Info Payment'
);
INSERT INTO ad_element
(ad_element_id, ad_client_id, ad_org_id, isactive,
created, createdby,
updated, updatedby,
columnname, entitytype, NAME,
printname
)
VALUES (50053, 0, 0, 'Y',
TO_DATE ('02/28/2007 02:23:56', 'MM/DD/YYYY HH24:MI:SS'), 100,
TO_DATE ('02/28/2007 02:32:15', 'MM/DD/YYYY HH24:MI:SS'), 100,
'Allow_Info_Product', 'D', 'Allow Info Product',
'Allow Info Product'
);
INSERT INTO ad_element
(ad_element_id, ad_client_id, ad_org_id, isactive,
created, createdby,
updated, updatedby,
columnname, entitytype, NAME,
printname
)
VALUES (50054, 0, 0, 'Y',
TO_DATE ('02/28/2007 02:23:56', 'MM/DD/YYYY HH24:MI:SS'), 100,
TO_DATE ('02/28/2007 02:32:29', 'MM/DD/YYYY HH24:MI:SS'), 100,
'Allow_Info_Resource', 'D', 'Allow Info Resource',
'Allow Info Resource'
);
INSERT INTO ad_element
(ad_element_id, ad_client_id, ad_org_id, isactive,
created, createdby,
updated, updatedby,
columnname, entitytype, NAME,
printname
)
VALUES (50055, 0, 0, 'Y',
TO_DATE ('02/28/2007 02:23:56', 'MM/DD/YYYY HH24:MI:SS'), 100,
TO_DATE ('02/28/2007 02:32:46', 'MM/DD/YYYY HH24:MI:SS'), 100,
'Allow_Info_Schedule', 'D', 'Allow Info Schedule',
'Allow Info Schedule'
);
INSERT INTO ad_element
(ad_element_id, ad_client_id, ad_org_id, isactive,
created, createdby,
updated, updatedby,
columnname, entitytype, NAME, printname
)
VALUES (50049, 0, 0, 'Y',
TO_DATE ('02/28/2007 02:23:56', 'MM/DD/YYYY HH24:MI:SS'), 100,
TO_DATE ('02/28/2007 02:31:13', 'MM/DD/YYYY HH24:MI:SS'), 100,
'Allow_Info_InOut', 'D', 'Allow Info InOut', 'Allow Info InOut'
);
INSERT INTO ad_element
(ad_element_id, ad_client_id, ad_org_id, isactive,
created, createdby,
updated, updatedby,
columnname, entitytype, NAME,
printname
)
VALUES (50048, 0, 0, 'Y',
TO_DATE ('02/28/2007 02:23:56', 'MM/DD/YYYY HH24:MI:SS'), 100,
TO_DATE ('02/28/2007 02:30:56', 'MM/DD/YYYY HH24:MI:SS'), 100,
'Allow_Info_CashJournal', 'D', 'Allow Info CashJournal',
'Allow Info CashJournal'
);
INSERT INTO ad_element
(ad_element_id, ad_client_id, ad_org_id, isactive,
created, createdby,
updated, updatedby,
columnname, entitytype, NAME,
printname
)
VALUES (50050, 0, 0, 'Y',
TO_DATE ('02/28/2007 02:23:56', 'MM/DD/YYYY HH24:MI:SS'), 100,
TO_DATE ('02/28/2007 02:31:30', 'MM/DD/YYYY HH24:MI:SS'), 100,
'Allow_Info_Invoice', 'D', 'Allow Info Invoice',
'Allow Info Invoice'
);
INSERT INTO ad_column
(ad_column_id, ad_client_id, ad_org_id, isactive,
created,
updated, createdby,
updatedby, NAME, VERSION, entitytype, columnname, ad_table_id,
ad_reference_id, fieldlength, iskey, isparent, ismandatory,
isupdateable, isidentifier, istranslated, isencrypted,
isselectioncolumn, ad_element_id, issyncdatabase,
isalwaysupdateable
)
VALUES (50198, 0, 0, 'Y',
TO_DATE ('02/28/2007 02:23:55', 'MM/DD/YYYY HH24:MI:SS'),
TO_DATE ('02/28/2007 02:26:49', 'MM/DD/YYYY HH24:MI:SS'), 100,
100, 'Allow Info Account', 0, 'D', 'Allow_Info_Account', 156,
20, 1, 'N', 'N', 'N',
'Y', 'N', 'N', 'N',
'N', 50045, 'N',
'N'
);
INSERT INTO ad_column
(ad_column_id, ad_client_id, ad_org_id, isactive,
created,
updated, createdby,
updatedby, NAME, VERSION, entitytype, columnname, ad_table_id,
ad_reference_id, fieldlength, iskey, isparent, ismandatory,
isupdateable, isidentifier, istranslated, isencrypted,
isselectioncolumn, ad_element_id, issyncdatabase,
isalwaysupdateable
)
VALUES (50200, 0, 0, 'Y',
TO_DATE ('02/28/2007 02:23:55', 'MM/DD/YYYY HH24:MI:SS'),
TO_DATE ('02/28/2007 02:30:02', 'MM/DD/YYYY HH24:MI:SS'), 100,
100, 'Allow Info BPartner', 0, 'D', 'Allow_Info_BPartner', 156,
20, 1, 'N', 'N', 'N',
'Y', 'N', 'N', 'N',
'N', 50047, 'N',
'N'
);
INSERT INTO ad_column
(ad_column_id, ad_client_id, ad_org_id, isactive,
created,
updated, createdby,
updatedby, NAME, VERSION, entitytype, columnname, ad_table_id,
ad_reference_id, fieldlength, iskey, isparent, ismandatory,
isupdateable, isidentifier, istranslated, isencrypted,
isselectioncolumn, ad_element_id, issyncdatabase,
isalwaysupdateable
)
VALUES (50199, 0, 0, 'Y',
TO_DATE ('02/28/2007 02:23:55', 'MM/DD/YYYY HH24:MI:SS'),
TO_DATE ('02/28/2007 02:28:11', 'MM/DD/YYYY HH24:MI:SS'), 100,
100, 'Allow Info Asset', 0, 'D', 'Allow_Info_Asset', 156,
20, 1, 'N', 'N', 'N',
'Y', 'N', 'N', 'N',
'N', 50046, 'N',
'N'
);
INSERT INTO ad_column
(ad_column_id, ad_client_id, ad_org_id, isactive,
created,
updated, createdby,
updatedby, NAME, VERSION, entitytype, columnname, ad_table_id,
ad_reference_id, fieldlength, iskey, isparent, ismandatory,
isupdateable, isidentifier, istranslated, isencrypted,
isselectioncolumn, ad_element_id, issyncdatabase,
isalwaysupdateable
)
VALUES (50204, 0, 0, 'Y',
TO_DATE ('02/28/2007 02:23:56', 'MM/DD/YYYY HH24:MI:SS'),
TO_DATE ('02/28/2007 02:33:20', 'MM/DD/YYYY HH24:MI:SS'), 100,
100, 'Allow Info Order', 0, 'D', 'Allow_Info_Order', 156,
20, 1, 'N', 'N', 'N',
'Y', 'N', 'N', 'N',
'N', 50051, 'N',
'N'
);
INSERT INTO ad_column
(ad_column_id, ad_client_id, ad_org_id, isactive,
created,
updated, createdby,
updatedby, NAME, VERSION, entitytype, columnname, ad_table_id,
ad_reference_id, fieldlength, iskey, isparent, ismandatory,
isupdateable, isidentifier, istranslated, isencrypted,
isselectioncolumn, ad_element_id, issyncdatabase,
isalwaysupdateable
)
VALUES (50205, 0, 0, 'Y',
TO_DATE ('02/28/2007 02:23:56', 'MM/DD/YYYY HH24:MI:SS'),
TO_DATE ('02/28/2007 02:33:21', 'MM/DD/YYYY HH24:MI:SS'), 100,
100, 'Allow Info Payment', 0, 'D', 'Allow_Info_Payment', 156,
20, 1, 'N', 'N', 'N',
'Y', 'N', 'N', 'N',
'N', 50052, 'N',
'N'
);
INSERT INTO ad_column
(ad_column_id, ad_client_id, ad_org_id, isactive,
created,
updated, createdby,
updatedby, NAME, VERSION, entitytype, columnname, ad_table_id,
ad_reference_id, fieldlength, iskey, isparent, ismandatory,
isupdateable, isidentifier, istranslated, isencrypted,
isselectioncolumn, ad_element_id, issyncdatabase,
isalwaysupdateable
)
VALUES (50206, 0, 0, 'Y',
TO_DATE ('02/28/2007 02:23:56', 'MM/DD/YYYY HH24:MI:SS'),
TO_DATE ('02/28/2007 02:33:22', 'MM/DD/YYYY HH24:MI:SS'), 100,
100, 'Allow Info Product', 0, 'D', 'Allow_Info_Product', 156,
20, 1, 'N', 'N', 'N',
'Y', 'N', 'N', 'N',
'N', 50053, 'N',
'N'
);
INSERT INTO ad_column
(ad_column_id, ad_client_id, ad_org_id, isactive,
created,
updated, createdby,
updatedby, NAME, VERSION, entitytype, columnname, ad_table_id,
ad_reference_id, fieldlength, iskey, isparent, ismandatory,
isupdateable, isidentifier, istranslated, isencrypted,
isselectioncolumn, ad_element_id, issyncdatabase,
isalwaysupdateable
)
VALUES (50207, 0, 0, 'Y',
TO_DATE ('02/28/2007 02:23:56', 'MM/DD/YYYY HH24:MI:SS'),
TO_DATE ('02/28/2007 02:33:26', 'MM/DD/YYYY HH24:MI:SS'), 100,
100, 'Allow Info Resource', 0, 'D', 'Allow_Info_Resource', 156,
20, 1, 'N', 'N', 'N',
'Y', 'N', 'N', 'N',
'N', 50054, 'N',
'N'
);
INSERT INTO ad_column
(ad_column_id, ad_client_id, ad_org_id, isactive,
created,
updated, createdby,
updatedby, NAME, VERSION, entitytype, columnname, ad_table_id,
ad_reference_id, fieldlength, iskey, isparent, ismandatory,
isupdateable, isidentifier, istranslated, isencrypted,
isselectioncolumn, ad_element_id, issyncdatabase,
isalwaysupdateable
)
VALUES (50208, 0, 0, 'Y',
TO_DATE ('02/28/2007 02:23:56', 'MM/DD/YYYY HH24:MI:SS'),
TO_DATE ('02/28/2007 02:33:27', 'MM/DD/YYYY HH24:MI:SS'), 100,
100, 'Allow Info Schedule', 0, 'D', 'Allow_Info_Schedule', 156,
20, 1, 'N', 'N', 'N',
'Y', 'N', 'N', 'N',
'N', 50055, 'N',
'N'
);
INSERT INTO ad_column
(ad_column_id, ad_client_id, ad_org_id, isactive,
created,
updated, createdby,
updatedby, NAME, VERSION, entitytype, columnname, ad_table_id,
ad_reference_id, fieldlength, iskey, isparent, ismandatory,
isupdateable, isidentifier, istranslated, isencrypted,
isselectioncolumn, ad_element_id, issyncdatabase,
isalwaysupdateable
)
VALUES (50202, 0, 0, 'Y',
TO_DATE ('02/28/2007 02:23:56', 'MM/DD/YYYY HH24:MI:SS'),
TO_DATE ('02/28/2007 02:33:16', 'MM/DD/YYYY HH24:MI:SS'), 100,
100, 'Allow Info InOut', 0, 'D', 'Allow_Info_InOut', 156,
20, 1, 'N', 'N', 'N',
'Y', 'N', 'N', 'N',
'N', 50049, 'N',
'N'
);
INSERT INTO ad_column
(ad_column_id, ad_client_id, ad_org_id, isactive,
created,
updated, createdby,
updatedby, NAME, VERSION, entitytype, columnname,
ad_table_id, ad_reference_id, fieldlength, iskey, isparent,
ismandatory, isupdateable, isidentifier, istranslated,
isencrypted, isselectioncolumn, ad_element_id, issyncdatabase,
isalwaysupdateable
)
VALUES (50201, 0, 0, 'Y',
TO_DATE ('02/28/2007 02:23:56', 'MM/DD/YYYY HH24:MI:SS'),
TO_DATE ('02/28/2007 02:33:14', 'MM/DD/YYYY HH24:MI:SS'), 100,
100, 'Allow Info CashJournal', 0, 'D', 'Allow_Info_CashJournal',
156, 20, 1, 'N', 'N',
'N', 'Y', 'N', 'N',
'N', 'N', 50048, 'N',
'N'
);
INSERT INTO ad_column
(ad_column_id, ad_client_id, ad_org_id, isactive,
created,
updated, createdby,
updatedby, NAME, VERSION, entitytype, columnname, ad_table_id,
ad_reference_id, fieldlength, iskey, isparent, ismandatory,
isupdateable, isidentifier, istranslated, isencrypted,
isselectioncolumn, ad_element_id, issyncdatabase,
isalwaysupdateable
)
VALUES (50203, 0, 0, 'Y',
TO_DATE ('02/28/2007 02:23:56', 'MM/DD/YYYY HH24:MI:SS'),
TO_DATE ('02/28/2007 02:33:19', 'MM/DD/YYYY HH24:MI:SS'), 100,
100, 'Allow Info Invoice', 0, 'D', 'Allow_Info_Invoice', 156,
20, 1, 'N', 'N', 'N',
'Y', 'N', 'N', 'N',
'N', 50050, 'N',
'N'
);
INSERT INTO ad_fieldgroup
(ad_fieldgroup_id, ad_client_id, ad_org_id, isactive,
created, createdby,
updated, updatedby,
NAME, entitytype
)
VALUES (50000, 0, 0, 'Y',
TO_DATE ('02/28/2007 02:35:11', 'MM/DD/YYYY HH24:MI:SS'), 100,
TO_DATE ('02/28/2007 02:35:11', 'MM/DD/YYYY HH24:MI:SS'), 100,
'Allow Info In Role', 'D'
);
INSERT INTO ad_field
(ad_field_id, ad_client_id, ad_org_id, isactive,
created, createdby,
updated, updatedby,
NAME, iscentrallymaintained, ad_tab_id, ad_column_id,
ad_fieldgroup_id, isdisplayed, displaylength, isreadonly, seqno,
issameline, isheading, isfieldonly, isencrypted, entitytype
)
VALUES (50168, 0, 0, 'Y',
TO_DATE ('02/28/2007 02:33:56', 'MM/DD/YYYY HH24:MI:SS'), 100,
TO_DATE ('02/28/2007 02:37:40', 'MM/DD/YYYY HH24:MI:SS'), 100,
'Allow Info Account', 'Y', 119, 50198,
50000, 'Y', 1, 'N', 270,
'N', 'N', 'N', 'N', 'D'
);
INSERT INTO ad_field
(ad_field_id, ad_client_id, ad_org_id, isactive,
created, createdby,
updated, updatedby,
NAME, iscentrallymaintained, ad_tab_id, ad_column_id,
ad_fieldgroup_id, isdisplayed, displaylength, isreadonly, seqno,
issameline, isheading, isfieldonly, isencrypted, entitytype
)
VALUES (50170, 0, 0, 'Y',
TO_DATE ('02/28/2007 02:33:56', 'MM/DD/YYYY HH24:MI:SS'), 100,
TO_DATE ('02/28/2007 02:35:31', 'MM/DD/YYYY HH24:MI:SS'), 100,
'Allow Info BPartner', 'Y', 119, 50200,
50000, 'Y', 1, 'N', 290,
'N', 'N', 'N', 'N', 'D'
);
INSERT INTO ad_field
(ad_field_id, ad_client_id, ad_org_id, isactive,
created, createdby,
updated, updatedby,
NAME, iscentrallymaintained, ad_tab_id, ad_column_id,
ad_fieldgroup_id, isdisplayed, displaylength, isreadonly, seqno,
issameline, isheading, isfieldonly, isencrypted, entitytype
)
VALUES (50169, 0, 0, 'Y',
TO_DATE ('02/28/2007 02:33:56', 'MM/DD/YYYY HH24:MI:SS'), 100,
TO_DATE ('02/28/2007 02:37:40', 'MM/DD/YYYY HH24:MI:SS'), 100,
'Allow Info Asset', 'Y', 119, 50199,
50000, 'Y', 1, 'N', 280,
'Y', 'N', 'N', 'N', 'D'
);
INSERT INTO ad_field
(ad_field_id, ad_client_id, ad_org_id, isactive,
created, createdby,
updated, updatedby,
NAME, iscentrallymaintained, ad_tab_id, ad_column_id,
ad_fieldgroup_id, isdisplayed, displaylength, isreadonly, seqno,
issameline, isheading, isfieldonly, isencrypted, entitytype
)
VALUES (50174, 0, 0, 'Y',
TO_DATE ('02/28/2007 02:33:57', 'MM/DD/YYYY HH24:MI:SS'), 100,
TO_DATE ('02/28/2007 02:37:43', 'MM/DD/YYYY HH24:MI:SS'), 100,
'Allow Info Order', 'Y', 119, 50204,
50000, 'Y', 1, 'N', 330,
'N', 'N', 'N', 'N', 'D'
);
INSERT INTO ad_field
(ad_field_id, ad_client_id, ad_org_id, isactive,
created, createdby,
updated, updatedby,
NAME, iscentrallymaintained, ad_tab_id, ad_column_id,
ad_fieldgroup_id, isdisplayed, displaylength, isreadonly, seqno,
issameline, isheading, isfieldonly, isencrypted, entitytype
)
VALUES (50175, 0, 0, 'Y',
TO_DATE ('02/28/2007 02:33:57', 'MM/DD/YYYY HH24:MI:SS'), 100,
TO_DATE ('02/28/2007 02:35:44', 'MM/DD/YYYY HH24:MI:SS'), 100,
'Allow Info Payment', 'Y', 119, 50205,
50000, 'Y', 1, 'N', 340,
'Y', 'N', 'N', 'N', 'D'
);
INSERT INTO ad_field
(ad_field_id, ad_client_id, ad_org_id, isactive,
created, createdby,
updated, updatedby,
NAME, iscentrallymaintained, ad_tab_id, ad_column_id,
ad_fieldgroup_id, isdisplayed, displaylength, isreadonly, seqno,
issameline, isheading, isfieldonly, isencrypted, entitytype
)
VALUES (50176, 0, 0, 'Y',
TO_DATE ('02/28/2007 02:33:57', 'MM/DD/YYYY HH24:MI:SS'), 100,
TO_DATE ('02/28/2007 02:36:06', 'MM/DD/YYYY HH24:MI:SS'), 100,
'Allow Info Product', 'Y', 119, 50206,
50000, 'Y', 1, 'N', 350,
'N', 'N', 'N', 'N', 'D'
);
INSERT INTO ad_field
(ad_field_id, ad_client_id, ad_org_id, isactive,
created, createdby,
updated, updatedby,
NAME, iscentrallymaintained, ad_tab_id, ad_column_id,
ad_fieldgroup_id, isdisplayed, displaylength, isreadonly, seqno,
issameline, isheading, isfieldonly, isencrypted, entitytype
)
VALUES (50177, 0, 0, 'Y',
TO_DATE ('02/28/2007 02:33:57', 'MM/DD/YYYY HH24:MI:SS'), 100,
TO_DATE ('02/28/2007 02:37:44', 'MM/DD/YYYY HH24:MI:SS'), 100,
'Allow Info Resource', 'Y', 119, 50207,
50000, 'Y', 1, 'N', 360,
'Y', 'N', 'N', 'N', 'D'
);
INSERT INTO ad_field
(ad_field_id, ad_client_id, ad_org_id, isactive,
created, createdby,
updated, updatedby,
NAME, iscentrallymaintained, ad_tab_id, ad_column_id,
ad_fieldgroup_id, isdisplayed, displaylength, isreadonly, seqno,
issameline, isheading, isfieldonly, isencrypted, entitytype
)
VALUES (50178, 0, 0, 'Y',
TO_DATE ('02/28/2007 02:33:57', 'MM/DD/YYYY HH24:MI:SS'), 100,
TO_DATE ('02/28/2007 02:36:09', 'MM/DD/YYYY HH24:MI:SS'), 100,
'Allow Info Schedule', 'Y', 119, 50208,
50000, 'Y', 1, 'N', 370,
'N', 'N', 'N', 'N', 'D'
);
INSERT INTO ad_field
(ad_field_id, ad_client_id, ad_org_id, isactive,
created, createdby,
updated, updatedby,
NAME, iscentrallymaintained, ad_tab_id, ad_column_id,
ad_fieldgroup_id, isdisplayed, displaylength, isreadonly, seqno,
issameline, isheading, isfieldonly, isencrypted, entitytype
)
VALUES (50172, 0, 0, 'Y',
TO_DATE ('02/28/2007 02:33:57', 'MM/DD/YYYY HH24:MI:SS'), 100,
TO_DATE ('02/28/2007 02:37:42', 'MM/DD/YYYY HH24:MI:SS'), 100,
'Allow Info InOut', 'Y', 119, 50202,
50000, 'Y', 1, 'N', 310,
'N', 'N', 'N', 'N', 'D'
);
INSERT INTO ad_field
(ad_field_id, ad_client_id, ad_org_id, isactive,
created, createdby,
updated, updatedby,
NAME, iscentrallymaintained, ad_tab_id, ad_column_id,
ad_fieldgroup_id, isdisplayed, displaylength, isreadonly, seqno,
issameline, isheading, isfieldonly, isencrypted, entitytype
)
VALUES (50171, 0, 0, 'Y',
TO_DATE ('02/28/2007 02:33:57', 'MM/DD/YYYY HH24:MI:SS'), 100,
TO_DATE ('02/28/2007 02:37:41', 'MM/DD/YYYY HH24:MI:SS'), 100,
'Allow Info CashJournal', 'Y', 119, 50201,
50000, 'Y', 1, 'N', 300,
'Y', 'N', 'N', 'N', 'D'
);
INSERT INTO ad_field
(ad_field_id, ad_client_id, ad_org_id, isactive,
created, createdby,
updated, updatedby,
NAME, iscentrallymaintained, ad_tab_id, ad_column_id,
ad_fieldgroup_id, isdisplayed, displaylength, isreadonly, seqno,
issameline, isheading, isfieldonly, isencrypted, entitytype
)
VALUES (50173, 0, 0, 'Y',
TO_DATE ('02/28/2007 02:33:57', 'MM/DD/YYYY HH24:MI:SS'), 100,
TO_DATE ('02/28/2007 02:35:34', 'MM/DD/YYYY HH24:MI:SS'), 100,
'Allow Info Invoice', 'Y', 119, 50203,
50000, 'Y', 1, 'N', 320,
'Y', 'N', 'N', 'N', 'D'
);
COMMIT ;

View File

@ -0,0 +1,323 @@
INSERT INTO ad_process
(ad_process_id, ad_client_id, ad_org_id, isactive,
created, createdby,
updated, updatedby,
VALUE, NAME, accesslevel, entitytype,
isreport, isdirectprint, classname, statistic_count,
statistic_seconds, isbetafunctionality, isserverprocess, showhelp
)
VALUES (50012, 0, 0, 'Y',
TO_DATE ('02/28/2007 02:57:59', 'MM/DD/YYYY HH24:MI:SS'), 100,
TO_DATE ('02/28/2007 02:57:59', 'MM/DD/YYYY HH24:MI:SS'), 100,
'Request EMail Processor', 'Request EMail Processor', '3', 'D',
'N', 'N', 'org.compiere.process.RequestEMailProcessor', 0,
0, 'N', 'N', 'Y'
);
INSERT INTO ad_process_access
(ad_process_id, ad_role_id, ad_client_id, ad_org_id, isactive,
created, createdby,
updated, updatedby,
isreadwrite
)
VALUES (50012, 0, 0, 0, 'Y',
TO_DATE ('02/28/2007 02:57:59', 'MM/DD/YYYY HH24:MI:SS'), 100,
TO_DATE ('02/28/2007 02:57:59', 'MM/DD/YYYY HH24:MI:SS'), 100,
'Y'
);
INSERT INTO ad_process_access
(ad_process_id, ad_role_id, ad_client_id, ad_org_id, isactive,
created, createdby,
updated, updatedby,
isreadwrite
)
VALUES (50012, 50001, 0, 0, 'Y',
TO_DATE ('02/28/2007 02:57:59', 'MM/DD/YYYY HH24:MI:SS'), 100,
TO_DATE ('02/28/2007 02:57:59', 'MM/DD/YYYY HH24:MI:SS'), 100,
'Y'
);
INSERT INTO ad_process_access
(ad_process_id, ad_role_id, ad_client_id, ad_org_id, isactive,
created, createdby,
updated, updatedby,
isreadwrite
)
VALUES (50012, 103, 0, 0, 'Y',
TO_DATE ('02/28/2007 02:57:59', 'MM/DD/YYYY HH24:MI:SS'), 100,
TO_DATE ('02/28/2007 02:57:59', 'MM/DD/YYYY HH24:MI:SS'), 100,
'Y'
);
INSERT INTO ad_process_access
(ad_process_id, ad_role_id, ad_client_id, ad_org_id, isactive,
created, createdby,
updated, updatedby,
isreadwrite
)
VALUES (50012, 102, 0, 0, 'Y',
TO_DATE ('02/28/2007 02:57:59', 'MM/DD/YYYY HH24:MI:SS'), 100,
TO_DATE ('02/28/2007 02:57:59', 'MM/DD/YYYY HH24:MI:SS'), 100,
'Y'
);
INSERT INTO ad_process_para
(ad_process_para_id, ad_client_id, ad_org_id, isactive,
created, createdby,
updated, updatedby,
NAME, ad_process_id, seqno, ad_reference_id, columnname,
iscentrallymaintained, fieldlength, ismandatory, isrange,
entitytype
)
VALUES (50006, 0, 0, 'Y',
TO_DATE ('02/28/2007 02:59:01', 'MM/DD/YYYY HH24:MI:SS'), 100,
TO_DATE ('02/28/2007 03:11:16', 'MM/DD/YYYY HH24:MI:SS'), 100,
'IMAP Host', 50012, 10, 10, 'p_IMAPHost',
'Y', 60, 'Y', 'N',
'D'
);
INSERT INTO ad_process_para
(ad_process_para_id, ad_client_id, ad_org_id, isactive,
created, createdby,
updated, updatedby,
NAME, ad_process_id, seqno, ad_reference_id, columnname,
iscentrallymaintained, fieldlength, ismandatory, isrange,
entitytype
)
VALUES (50007, 0, 0, 'Y',
TO_DATE ('02/28/2007 02:59:22', 'MM/DD/YYYY HH24:MI:SS'), 100,
TO_DATE ('02/28/2007 03:11:32', 'MM/DD/YYYY HH24:MI:SS'), 100,
'IMAP User', 50012, 20, 10, 'p_IMAPUser',
'Y', 60, 'Y', 'N',
'D'
);
INSERT INTO ad_process_para
(ad_process_para_id, ad_client_id, ad_org_id, isactive,
created, createdby,
updated, updatedby,
NAME, ad_process_id, seqno, ad_reference_id, columnname,
iscentrallymaintained, fieldlength, ismandatory, isrange,
entitytype
)
VALUES (50008, 0, 0, 'Y',
TO_DATE ('02/28/2007 02:59:34', 'MM/DD/YYYY HH24:MI:SS'), 100,
TO_DATE ('02/28/2007 03:11:41', 'MM/DD/YYYY HH24:MI:SS'), 100,
'IMAP Password', 50012, 30, 10, 'p_IMAPPwd',
'Y', 60, 'Y', 'N',
'D'
);
INSERT INTO ad_process_para
(ad_process_para_id, ad_client_id, ad_org_id, isactive,
created, createdby,
updated, updatedby,
NAME, ad_process_id, seqno, ad_reference_id, columnname,
iscentrallymaintained, fieldlength, ismandatory, isrange,
entitytype
)
VALUES (50009, 0, 0, 'Y',
TO_DATE ('02/28/2007 03:00:31', 'MM/DD/YYYY HH24:MI:SS'), 100,
TO_DATE ('02/28/2007 03:11:48', 'MM/DD/YYYY HH24:MI:SS'), 100,
'Request Folder', 50012, 40, 10, 'p_RequestFolder',
'Y', 60, 'Y', 'N',
'D'
);
INSERT INTO ad_process_para
(ad_process_para_id, ad_client_id, ad_org_id, isactive,
created, createdby,
updated, updatedby,
NAME, ad_process_id, seqno, ad_reference_id, columnname,
iscentrallymaintained, fieldlength, ismandatory, isrange,
entitytype
)
VALUES (50010, 0, 0, 'Y',
TO_DATE ('02/28/2007 03:01:02', 'MM/DD/YYYY HH24:MI:SS'), 100,
TO_DATE ('02/28/2007 03:11:56', 'MM/DD/YYYY HH24:MI:SS'), 100,
'Inbox Folder', 50012, 50, 10, 'p_InboxFolder',
'Y', 60, 'Y', 'N',
'D'
);
INSERT INTO ad_process_para
(ad_process_para_id, ad_client_id, ad_org_id, isactive,
created, createdby,
updated, updatedby,
NAME, ad_process_id, seqno, ad_reference_id, columnname,
iscentrallymaintained, fieldlength, ismandatory, isrange,
entitytype
)
VALUES (50011, 0, 0, 'Y',
TO_DATE ('02/28/2007 03:01:20', 'MM/DD/YYYY HH24:MI:SS'), 100,
TO_DATE ('02/28/2007 03:12:02', 'MM/DD/YYYY HH24:MI:SS'), 100,
'Error Folder', 50012, 60, 10, 'p_ErrorFolder',
'Y', 60, 'Y', 'N',
'D'
);
INSERT INTO ad_process_para
(ad_process_para_id, ad_client_id, ad_org_id, isactive,
created, createdby,
updated, updatedby,
NAME, description,
HELP,
ad_process_id, seqno, ad_reference_id, columnname,
iscentrallymaintained, fieldlength, ismandatory, isrange,
entitytype
)
VALUES (50012, 0, 0, 'Y',
TO_DATE ('02/28/2007 03:02:11', 'MM/DD/YYYY HH24:MI:SS'), 100,
TO_DATE ('02/28/2007 03:12:11', 'MM/DD/YYYY HH24:MI:SS'), 100,
'Business Partner', 'Identifies a Business Partner',
'A Business Partner is anyone with whom you transact. This can include Vendor, Customer, Employee or Salesperson',
50012, 70, 30, 'C_BPartner_ID',
'Y', 10, 'N', 'N',
'D'
);
INSERT INTO ad_process_para
(ad_process_para_id, ad_client_id, ad_org_id, isactive,
created, createdby,
updated, updatedby,
NAME,
description,
HELP,
ad_process_id, seqno, ad_reference_id, ad_val_rule_id,
columnname, iscentrallymaintained, fieldlength, ismandatory,
isrange, defaultvalue, entitytype
)
VALUES (50013, 0, 0, 'Y',
TO_DATE ('02/28/2007 03:02:49', 'MM/DD/YYYY HH24:MI:SS'), 100,
TO_DATE ('02/28/2007 03:12:20', 'MM/DD/YYYY HH24:MI:SS'), 100,
'User/Contact',
'User within the system - Internal or Business Partner Contact',
'The User identifies a unique user in the system. This could be an internal user or a business partner contact',
50012, 80, 19, 123,
'AD_User_ID', 'Y', 10, 'N',
'N', '-1', 'D'
);
INSERT INTO ad_process_para
(ad_process_para_id, ad_client_id, ad_org_id, isactive,
created, createdby,
updated, updatedby,
NAME, description,
HELP,
ad_process_id, seqno, ad_reference_id, columnname,
iscentrallymaintained, fieldlength, ismandatory, isrange,
defaultvalue, entitytype
)
VALUES (50014, 0, 0, 'Y',
TO_DATE ('02/28/2007 03:03:31', 'MM/DD/YYYY HH24:MI:SS'), 100,
TO_DATE ('02/28/2007 03:12:28', 'MM/DD/YYYY HH24:MI:SS'), 100,
'Role', 'Responsibility Role',
'The Role determines security and access a user who has this Role will have in the System.',
50012, 90, 19, 'AD_Role_ID',
'Y', 10, 'N', 'N',
'-1', 'D'
);
INSERT INTO ad_process_para
(ad_process_para_id, ad_client_id, ad_org_id, isactive,
created, createdby,
updated, updatedby,
NAME, description,
HELP,
ad_process_id, seqno, ad_reference_id, ad_reference_value_id,
columnname, iscentrallymaintained, fieldlength, ismandatory,
isrange, defaultvalue, entitytype
)
VALUES (50015, 0, 0, 'Y',
TO_DATE ('02/28/2007 03:03:54', 'MM/DD/YYYY HH24:MI:SS'), 100,
TO_DATE ('02/28/2007 03:12:35', 'MM/DD/YYYY HH24:MI:SS'), 100,
'Sales Representative', 'Sales Representative or Company Agent',
'The Sales Representative indicates the Sales Rep for this Region. Any Sales Rep must be a valid internal user.',
50012, 100, 18, 286,
'SalesRep_ID', 'Y', 10, 'N',
'N', '@AD_User_ID@', 'D'
);
INSERT INTO ad_process_para
(ad_process_para_id, ad_client_id, ad_org_id, isactive,
created, createdby,
updated, updatedby,
NAME, description,
HELP,
ad_process_id, seqno, ad_reference_id, columnname,
iscentrallymaintained, fieldlength, ismandatory, isrange,
entitytype
)
VALUES (50016, 0, 0, 'Y',
TO_DATE ('02/28/2007 03:06:47', 'MM/DD/YYYY HH24:MI:SS'), 100,
TO_DATE ('02/28/2007 03:12:44', 'MM/DD/YYYY HH24:MI:SS'), 100,
'Request Type', 'Type of request (e.g. Inquiry, Complaint, ..)',
'Request Types are used for processing and categorizing requests. Options are Account Inquiry, Warranty Issue, etc.',
50012, 110, 19, 'R_RequestType_ID',
'Y', 10, 'N', 'N',
'D'
);
INSERT INTO ad_process_para
(ad_process_para_id, ad_client_id, ad_org_id, isactive,
created, createdby,
updated, updatedby,
NAME, description, ad_process_id,
seqno, ad_reference_id, ad_reference_value_id, columnname,
iscentrallymaintained, fieldlength, ismandatory, isrange,
entitytype
)
VALUES (50017, 0, 0, 'Y',
TO_DATE ('02/28/2007 03:09:52', 'MM/DD/YYYY HH24:MI:SS'), 100,
TO_DATE ('02/28/2007 03:12:58', 'MM/DD/YYYY HH24:MI:SS'), 100,
'User Importance', 'Priority of the issue for the User', 50012,
120, 17, 154, 'p_DefaultPriority',
'Y', 1, 'N', 'N',
'D'
);
INSERT INTO ad_process_para
(ad_process_para_id, ad_client_id, ad_org_id, isactive,
created, createdby,
updated, updatedby,
NAME, description, ad_process_id, seqno, ad_reference_id,
ad_reference_value_id, columnname, iscentrallymaintained,
fieldlength, ismandatory, isrange, entitytype
)
VALUES (50018, 0, 0, 'Y',
TO_DATE ('02/28/2007 03:10:19', 'MM/DD/YYYY HH24:MI:SS'), 100,
TO_DATE ('02/28/2007 03:13:05', 'MM/DD/YYYY HH24:MI:SS'), 100,
'Confidentiality', 'Type of Confidentiality', 50012, 130, 17,
340, 'p_DefaultConfidentiality', 'Y',
1, 'N', 'N', 'D'
);
INSERT INTO ad_menu
(ad_menu_id, ad_client_id, ad_org_id, isactive,
created, createdby,
updated,
NAME, updatedby, issummary, issotrx, isreadonly, action,
ad_process_id, entitytype
)
VALUES (50009, 0, 0, 'Y',
TO_DATE ('02/28/2007 03:14:03', 'MM/DD/YYYY HH24:MI:SS'), 100,
TO_DATE ('02/28/2007 03:14:03', 'MM/DD/YYYY HH24:MI:SS'),
'Request EMail Processor', 100, 'N', 'N', 'N', 'P',
50012, 'D'
);
INSERT INTO ad_treenodemm
(ad_tree_id, node_id, ad_client_id, ad_org_id, isactive,
created, createdby,
updated, updatedby,
parent_id, seqno
)
VALUES (10, 50009, 0, 0, 'Y',
TO_DATE ('02/28/2007 03:14:02', 'MM/DD/YYYY HH24:MI:SS'), 0,
TO_DATE ('02/28/2007 03:14:10', 'MM/DD/YYYY HH24:MI:SS'), 0,
456, 5
);
COMMIT ;

View File

@ -0,0 +1,115 @@
insert into ad_element
(ad_element_id,ad_client_id,ad_org_id,isactive,created,createdby,updated,updatedby,
columnname,entitytype,name,printname,description,help,
po_name,po_printname,po_description,po_help
)
values
(50063,0,0,'Y',to_date('28-02-2007','DD-MM-RRRR'),0,to_date('28-02-2007','DD-MM-RRRR'),0,
'p_ErrorFolder','D','Error Folder','Error Folder',null,null,
null,null,null,null
);
insert into ad_element
(ad_element_id,ad_client_id,ad_org_id,isactive,created,createdby,updated,updatedby,
columnname,entitytype,name,printname,description,help,
po_name,po_printname,po_description,po_help
)
values
(50062,0,0,'Y',to_date('28-02-2007','DD-MM-RRRR'),0,to_date('28-02-2007','DD-MM-RRRR'),0,
'p_RequestFolder','D','Request Folder','Request Folder',null,null,
null,null,null,null
);
insert into ad_element
(ad_element_id,ad_client_id,ad_org_id,isactive,created,createdby,updated,updatedby,
columnname,entitytype,name,printname,description,help,
po_name,po_printname,po_description,po_help
)
values
(50061,0,0,'Y',to_date('28-02-2007','DD-MM-RRRR'),0,to_date('28-02-2007','DD-MM-RRRR'),0,
'p_DefaultPriority','D','User Importance','User Importance','Priority of the issue for the User',null,null,
null,null,null
);
insert into ad_element
(ad_element_id,ad_client_id,ad_org_id,isactive,created,createdby,updated,updatedby,
columnname,entitytype,name,printname,description,help,
po_name,po_printname,po_description,po_help
)
values
(50060,0,0,'Y',to_date('28-02-2007','DD-MM-RRRR'),0,to_date('28-02-2007','DD-MM-RRRR'),0,
'p_IMAPHost','D','IMAP Host','IMAP Host',null,null,
null,null,null,null
);
insert into ad_element
(ad_element_id,ad_client_id,ad_org_id,isactive,created,createdby,updated,updatedby,
columnname,entitytype,name,printname,description,help,
po_name,po_printname,po_description,po_help
)
values
(50059,0,0,'Y',to_date('28-02-2007','DD-MM-RRRR'),0,to_date('28-02-2007','DD-MM-RRRR'),0,
'p_IMAPPwd','D','IMAP Password','IMAP Password',null,null,
null,null,null,null
);
insert into ad_element
(ad_element_id,ad_client_id,ad_org_id,isactive,created,createdby,updated,updatedby,
columnname,entitytype,name,printname,description,help,
po_name,po_printname,po_description,po_help
)
values
(50058,0,0,'Y',to_date('28-02-2007','DD-MM-RRRR'),0,to_date('28-02-2007','DD-MM-RRRR'),0,
'p_IMAPUser','D','IMAP User','IMAP User',null,null,
null,null,null,null
);
insert into ad_element
(ad_element_id,ad_client_id,ad_org_id,isactive,created,createdby,updated,updatedby,
columnname,entitytype,name,printname,description,help,
po_name,po_printname,po_description,po_help
)
values (
50057,0,0,'Y',to_date('28-02-2007','DD-MM-RRRR'),0,to_date('28-02-2007','DD-MM-RRRR'),0,
'p_DefaultConfidentiality','D','Confidentiality','Confidentiality','Type of Confidentiality',null,null,
null,null,null
);
insert into ad_element
(ad_element_id,ad_client_id,ad_org_id,isactive,created,createdby,updated,updatedby,
columnname,entitytype,name,printname,description,help,
po_name,po_printname,po_description,po_help
)
values
(50056,0,0,'Y',to_date('28-02-2007','DD-MM-RRRR'),0,to_date('28-02-2007','DD-MM-RRRR'),0,
'p_InboxFolder','D','Inbox Folder','Inbox Folder',null,null,
null,null,null,null
);
commit;
UPDATE ad_sequence
SET currentnextsys = (SELECT MAX (ad_element_id) + 1
FROM ad_element
WHERE ad_element_id < 1000000)
WHERE NAME = 'AD_Element';
UPDATE ad_sequence
SET currentnextsys = (SELECT MAX (ad_process_id) + 1
FROM ad_process
WHERE ad_process_id < 1000000)
WHERE NAME = 'AD_Process';
UPDATE ad_sequence
SET currentnextsys = (SELECT MAX (ad_process_para_id) + 1
FROM ad_process_para
WHERE ad_process_para_id < 1000000)
WHERE NAME = 'AD_Process_Para';
UPDATE ad_sequence
SET currentnextsys = (SELECT MAX (ad_menu_id) + 1
FROM ad_menu
WHERE ad_menu_id < 1000000)
WHERE NAME = 'AD_Menu';
commit;

View File

@ -0,0 +1,106 @@
Insert into AD_ELEMENT
(AD_ELEMENT_ID,AD_CLIENT_ID,AD_ORG_ID,ISACTIVE,CREATED,CREATEDBY,
UPDATED,UPDATEDBY,COLUMNNAME,ENTITYTYPE,NAME,PRINTNAME,DESCRIPTION,
HELP,PO_NAME,PO_PRINTNAME,PO_DESCRIPTION,PO_HELP)
values
(50064,0,0,'Y',to_date('27.02.07','DD.MM.RR'),0,
to_date('27.02.07','DD.MM.RR'),0,'JasperProcess_ID','D',
'Jasper Process','Jasper Process',
'The Jasper Process used by the printengine if any process defined'
,null,null,null,null,null);
Insert into AD_VAL_RULE
(AD_VAL_RULE_ID,AD_CLIENT_ID,AD_ORG_ID,ISACTIVE,CREATED,CREATEDBY,
UPDATED,UPDATEDBY,NAME,DESCRIPTION,TYPE,CODE,ENTITYTYPE)
values
(270,0,0,'Y',to_date('27.02.07','DD.MM.RR'),0,to_date('27.02.07','DD.MM.RR'),
0,'AD_Process Jasper Reports',null,'S','AD_Process.JasperReport IS NOT NULL','D');
UPDATE AD_VAL_RULE
SET CODE = 'AD_Process.IsReport=''Y'' AND AD_Process.JasperReport IS NULL'
WHERE NAME = 'AD_Process Reports';
Insert into AD_REFERENCE
(AD_REFERENCE_ID,AD_CLIENT_ID,AD_ORG_ID,ISACTIVE,CREATED,CREATEDBY,
UPDATED,UPDATEDBY,NAME,DESCRIPTION,HELP,VALIDATIONTYPE,VFORMAT,ENTITYTYPE)
values
(400,0,0,'Y',to_date('27.02.07','DD.MM.RR'),0,to_date('27.02.07','DD.MM.RR'),
0,'AD_Process_JasperReports',null,null,'T',null,'D');
Insert into AD_REF_TABLE
(AD_REFERENCE_ID,AD_CLIENT_ID,AD_ORG_ID,ISACTIVE,CREATED,CREATEDBY,
UPDATED,UPDATEDBY,AD_TABLE_ID,AD_KEY,AD_DISPLAY,ISVALUEDISPLAYED,
WHERECLAUSE,ORDERBYCLAUSE,ENTITYTYPE)
values
(400,0,0,'Y',to_date('27.02.07','DD.MM.RR'),0,to_date('27.02.07','DD.MM.RR'),
0,284,2801,2809,'N','AD_Process.JasperReport IS NOT NULL',null,'D');
Insert into AD_COLUMN
(AD_COLUMN_ID,AD_CLIENT_ID,AD_ORG_ID,ISACTIVE,CREATED,UPDATED,
CREATEDBY,UPDATEDBY,NAME,DESCRIPTION,HELP,VERSION,ENTITYTYPE,
COLUMNNAME,AD_TABLE_ID,AD_REFERENCE_ID,AD_REFERENCE_VALUE_ID,
AD_VAL_RULE_ID,FIELDLENGTH,DEFAULTVALUE,ISKEY,ISPARENT,ISMANDATORY,
ISUPDATEABLE,READONLYLOGIC,ISIDENTIFIER,SEQNO,ISTRANSLATED,ISENCRYPTED,
CALLOUT,VFORMAT,VALUEMIN,VALUEMAX,ISSELECTIONCOLUMN,AD_ELEMENT_ID,
AD_PROCESS_ID,ISSYNCDATABASE,ISALWAYSUPDATEABLE,COLUMNSQL)
values
(50209,0,0,'Y',to_date('27.02.07','DD.MM.RR'),to_date('27.02.07','DD.MM.RR'),0,
0,'Jasper Process','The Jasper Process used by the printengine if any process defined',
null,1,'D','JasperProcess_ID',493,18,400,null,22,null,'N','N','N','Y',null,'N',0,'N',
'N',null,null,null,null,'N',50064,null,'N','N',null);
Insert into AD_FIELD
(AD_FIELD_ID,AD_CLIENT_ID,AD_ORG_ID,ISACTIVE,CREATED,CREATEDBY,
UPDATED,UPDATEDBY,NAME,DESCRIPTION,HELP,ISCENTRALLYMAINTAINED,
AD_TAB_ID,AD_COLUMN_ID,AD_FIELDGROUP_ID,ISDISPLAYED,DISPLAYLOGIC,
DISPLAYLENGTH,ISREADONLY,SEQNO,SORTNO,ISSAMELINE,ISHEADING,
ISFIELDONLY,ISENCRYPTED,ENTITYTYPE,OBSCURETYPE,AD_REFERENCE_ID,
ISMANDATORY)
values
(50179,0,0,'Y',to_date('27.02.07','DD.MM.RR'),0,to_date('27.02.07','DD.MM.RR'),
0,'Jasper Process','The Jasper Process used by the printengine if any process defined',
null,'Y',425,50209,null,'Y',null,14,'N',195,0,'N','N','N','N','D',null,null,null);
COMMIT;
UPDATE ad_sequence
SET currentnextsys = (SELECT MAX (ad_element_id) + 1
FROM ad_element
WHERE ad_element_id < 1000000)
WHERE NAME = 'AD_Element';
UPDATE ad_sequence
SET currentnextsys = (SELECT MAX (ad_val_rule_id) + 1
FROM ad_val_rule
WHERE ad_val_rule_id < 1000000)
WHERE NAME = 'AD_Val_Rule';
UPDATE ad_sequence
SET currentnextsys = (SELECT MAX (ad_reference_id) + 1
FROM ad_reference
WHERE ad_reference_id < 1000000)
WHERE NAME = 'AD_Reference';
UPDATE ad_sequence
SET currentnextsys = (SELECT MAX (ad_reference_id) + 1
FROM ad_ref_table
WHERE ad_reference_id < 1000000)
WHERE NAME = 'AD_Ref_Table';
UPDATE ad_sequence
SET currentnextsys = (SELECT MAX (ad_column_id) + 1
FROM ad_column
WHERE ad_column_id < 1000000)
WHERE NAME = 'AD_Column';
UPDATE ad_sequence
SET currentnextsys = (SELECT MAX (ad_field_id) + 1
FROM ad_field
WHERE ad_field_id < 1000000)
WHERE NAME = 'AD_Field';
COMMIT;
ALTER TABLE AD_PrintFormat ADD JasperProcess_ID NUMERIC(10);
COMMIT;

View File

@ -0,0 +1,6 @@
UPDATE ad_system
SET releaseno = '315',
version = '2007-02-28'
WHERE ad_system_id = 0 AND ad_client_id = 0;
COMMIT ;

View File

@ -0,0 +1,5 @@
UPDATE ad_entitytype
SET NAME = 'Applications'
WHERE entitytype = 'A';
COMMIT ;

View File

@ -0,0 +1,87 @@
INSERT INTO ad_sequence
(ad_sequence_id, ad_client_id, ad_org_id, isactive,
created, createdby,
updated, updatedby,
NAME,
description, isautosequence, incrementno, startno,
currentnext, currentnextsys, isaudited, istableid, startnewyear
)
VALUES (50014, 0, 0, 'Y',
TO_DATE ('02/28/2007 17:06:30', 'MM/DD/YYYY HH24:MI:SS'), 100,
TO_DATE ('02/28/2007 17:06:30', 'MM/DD/YYYY HH24:MI:SS'), 100,
'DocumentNo_R_InterestArea',
'DocumentNo/Value for Table R_InterestArea', 'Y', 1, 1000000,
1000000, 50000, 'N', 'N', 'N'
);
INSERT INTO ad_sequence
(ad_sequence_id, ad_client_id, ad_org_id, isactive,
created, createdby,
updated, updatedby,
NAME,
description, isautosequence, incrementno, startno,
currentnext, currentnextsys, isaudited, istableid, startnewyear
)
VALUES (50013, 0, 0, 'Y',
TO_DATE ('02/28/2007 17:06:30', 'MM/DD/YYYY HH24:MI:SS'), 100,
TO_DATE ('02/28/2007 17:06:30', 'MM/DD/YYYY HH24:MI:SS'), 100,
'DocumentNo_AD_SysConfig',
'DocumentNo/Value for Table AD_SysConfig', 'Y', 1, 1000000,
1000000, 50000, 'N', 'N', 'N'
);
INSERT INTO ad_sequence
(ad_sequence_id, ad_client_id, ad_org_id, isactive,
created, createdby,
updated, updatedby,
NAME,
description, isautosequence, incrementno, startno,
currentnext, currentnextsys, isaudited, istableid, startnewyear
)
VALUES (50012, 11, 0, 'Y',
TO_DATE ('02/28/2007 17:06:30', 'MM/DD/YYYY HH24:MI:SS'), 100,
TO_DATE ('02/28/2007 17:06:30', 'MM/DD/YYYY HH24:MI:SS'), 100,
'DocumentNo_AD_SysConfig',
'DocumentNo/Value for Table AD_SysConfig', 'Y', 1, 1000000,
1000000, 50000, 'N', 'N', 'N'
);
INSERT INTO ad_sequence
(ad_sequence_id, ad_client_id, ad_org_id, isactive,
created, createdby,
updated, updatedby,
NAME, description, isautosequence,
incrementno, startno, currentnext, currentnextsys, isaudited,
istableid, startnewyear
)
VALUES (50011, 11, 0, 'Y',
TO_DATE ('02/28/2007 17:06:30', 'MM/DD/YYYY HH24:MI:SS'), 100,
TO_DATE ('02/28/2007 17:06:30', 'MM/DD/YYYY HH24:MI:SS'), 100,
'DocumentNo_AD_User', 'DocumentNo/Value for Table AD_User', 'Y',
1, 1000000, 1000000, 50000, 'N',
'N', 'N'
);
INSERT INTO ad_sequence
(ad_sequence_id, ad_client_id, ad_org_id, isactive,
created, createdby,
updated, updatedby,
NAME,
description, isautosequence, incrementno, startno,
currentnext, currentnextsys, isaudited, istableid, startnewyear
)
VALUES (50010, 11, 0, 'Y',
TO_DATE ('02/28/2007 17:06:30', 'MM/DD/YYYY HH24:MI:SS'), 100,
TO_DATE ('02/28/2007 17:06:30', 'MM/DD/YYYY HH24:MI:SS'), 100,
'DocumentNo_R_InterestArea',
'DocumentNo/Value for Table R_InterestArea', 'Y', 1, 1000000,
1000000, 50000, 'N', 'N', 'N'
);
UPDATE ad_sequence
SET currentnextsys = (SELECT MAX (ad_sequence_id) + 1
FROM ad_sequence
WHERE ad_sequence_id < 1000000)
WHERE NAME = 'AD_Sequence';
COMMIT ;