Changeset 20371
- Timestamp:
- 02/04/10 10:08:58 (3 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/core/db/oracle/create-scripts/versions/9.2.0/update_system_properties.sql
r20368 r20371 1044 1044 1045 1045 insert into PN_PROPERTY (CONTEXT_ID, LANGUAGE, PROPERTY_TYPE, PROPERTY, PROPERTY_VALUE, RECORD_STATUS, IS_SYSTEM_PROPERTY, IS_TRANSLATABLE_PROPERTY, PROPERTY_VALUE_CLOB) 1046 values (2000, 'en', 'boolean', 'prm.global.view.visibility.isenabled', '1', 'A', 0, 0, null); 1046 values (2000, 'en', 'boolean', 'prm.global.view.visibility.isenabled', '1', 'A', 1, 0, null); 1047 1048 update pn_property p set 1049 p.property_value = 'Customer' 1050 where 1051 p.context_id = 2000 and 1052 p.language = 'en' and 1053 p.property = 'prm.project.properties.sponsor.label'; 1054 1055 update pn_property p set 1056 p.property_value = 'Priority' 1057 where 1058 p.context_id = 2000 and 1059 p.language = 'en' and 1060 p.property = 'prm.project.properties.priority.label'; 1061 1062 update pn_property p set 1063 p.property_value = 'Risk Rating' 1064 where 1065 p.context_id = 2000 and 1066 p.language = 'en' and 1067 p.property = 'prm.project.properties.risk.label'; 1068 1069 update pn_property p set 1070 p.property_value = 'Budgeted Total Cost' 1071 where 1072 p.context_id = 2000 and 1073 p.language = 'en' and 1074 p.property = 'prm.project.properties.budgetedtotalcost.label'; 1075 1076 update pn_property p set 1077 p.property_value = 'Budgeted Total Cost Currency' 1078 where 1079 p.context_id = 2000 and 1080 p.language = 'en' and 1081 p.property = 'prm.project.portfolio.finder.column.budgetedtotalcostcurrency'; 1082 1083 update pn_property p set 1084 p.property_value = 'Current Estimated Total Cost' 1085 where 1086 p.context_id = 2000 and 1087 p.language = 'en' and 1088 p.property = 'prm.project.properties.currentestimatedtotalcost.label'; 1089 1090 update pn_property p set 1091 p.property_value = 'Actual Cost To Date' 1092 where 1093 p.context_id = 2000 and 1094 p.language = 'en' and 1095 p.property = 'prm.project.properties.actualcosttodate.label'; 1096 1097 update pn_property p set 1098 p.property_value = 'Estimated ROI' 1099 where 1100 p.context_id = 2000 and 1101 p.language = 'en' and 1102 p.property = 'prm.project.properties.estimatedroi.label'; 1103 1104 update pn_property p set 1105 p.property_value = 'Cost Center' 1106 where 1107 p.context_id = 2000 and 1108 p.language = 'en' and 1109 p.property = 'prm.project.properties.costcenter.label'; 1110 1111 insert into PN_PROPERTY (CONTEXT_ID, LANGUAGE, PROPERTY_TYPE, PROPERTY, PROPERTY_VALUE, RECORD_STATUS, IS_SYSTEM_PROPERTY, IS_TRANSLATABLE_PROPERTY, PROPERTY_VALUE_CLOB) 1112 values (2000, 'en', 'text', 'prm.project.portfolio.error.viewmodified.message', 'Current view has been changed', 'A', 0, 1, null); 1113 1114 insert into PN_PROPERTY (CONTEXT_ID, LANGUAGE, PROPERTY_TYPE, PROPERTY, PROPERTY_VALUE, RECORD_STATUS, IS_SYSTEM_PROPERTY, IS_TRANSLATABLE_PROPERTY, PROPERTY_VALUE_CLOB) 1115 values (2000, 'en', 'text', 'prm.project.portfolio.manageview.deletionnotallowed.message', 'Sorry! You do not have permission to delete this view', 'A', 0, 1, null); 1116 1117 insert into PN_PROPERTY (CONTEXT_ID, LANGUAGE, PROPERTY_TYPE, PROPERTY, PROPERTY_VALUE, RECORD_STATUS, IS_SYSTEM_PROPERTY, IS_TRANSLATABLE_PROPERTY, PROPERTY_VALUE_CLOB) 1118 values (2000, 'en', 'text', 'prm.project.portfolio.manageview.error.viewnotavailabletodelete.message', 'Shared views are not available in this business to delete', 'A', 0, 1, null); 1119 1120 insert into PN_PROPERTY (CONTEXT_ID, LANGUAGE, PROPERTY_TYPE, PROPERTY, PROPERTY_VALUE, RECORD_STATUS, IS_SYSTEM_PROPERTY, IS_TRANSLATABLE_PROPERTY, PROPERTY_VALUE_CLOB) 1121 values (2000, 'en', 'text', 'prm.project.portfolio.manageview.deleteview.label', 'Delete View', 'A', 0, 1, null); 1122 1123 insert into PN_PROPERTY (CONTEXT_ID, LANGUAGE, PROPERTY_TYPE, PROPERTY, PROPERTY_VALUE, RECORD_STATUS, IS_SYSTEM_PROPERTY, IS_TRANSLATABLE_PROPERTY, PROPERTY_VALUE_CLOB) 1124 values (2000, 'en', 'text', 'prm.project.portfolio.column.templateapplied.lable', 'Template Applied', 'A', 0, 1, null); 1047 1125 1048 1126 prompt Enabling foreign key constraints for PN_PROPERTY...
Note: See TracChangeset
for help on using the changeset viewer.
