· 6 years ago · Oct 14, 2019, 10:04 AM
1/*
2Deployment script for MetricsAndDWH_K2DEV
3
4This code was generated by a tool.
5Changes to this file may cause incorrect behavior and will be lost if
6the code is regenerated.
7*/
8
9GO
10SET ANSI_NULLS, ANSI_PADDING, ANSI_WARNINGS, ARITHABORT, CONCAT_NULL_YIELDS_NULL, QUOTED_IDENTIFIER ON;
11
12SET NUMERIC_ROUNDABORT OFF;
13
14
15GO
16:setvar DatabaseName "MetricsAndDWH_K2DEV"
17:setvar DefaultFilePrefix "MetricsAndDWH_K2DEV"
18:setvar DefaultDataPath "E:\db\"
19:setvar DefaultLogPath "E:\db\"
20
21GO
22:on error exit
23GO
24/*
25Detect SQLCMD mode and disable script execution if SQLCMD mode is not supported.
26To re-enable the script after enabling SQLCMD mode, execute the following:
27SET NOEXEC OFF;
28*/
29:setvar __IsSqlCmdEnabled "True"
30GO
31IF N'$(__IsSqlCmdEnabled)' NOT LIKE N'True'
32 BEGIN
33 PRINT N'SQLCMD mode must be enabled to successfully execute this script.';
34 SET NOEXEC ON;
35 END
36
37
38GO
39USE [$(DatabaseName)];
40
41
42GO
43IF EXISTS (SELECT 1
44 FROM [master].[dbo].[sysdatabases]
45 WHERE [name] = N'$(DatabaseName)')
46 BEGIN
47 ALTER DATABASE [$(DatabaseName)]
48 SET ANSI_NULLS ON,
49 ANSI_PADDING ON,
50 ANSI_WARNINGS ON,
51 ARITHABORT ON,
52 CONCAT_NULL_YIELDS_NULL ON,
53 QUOTED_IDENTIFIER ON,
54 ANSI_NULL_DEFAULT ON,
55 CURSOR_DEFAULT LOCAL,
56 RECOVERY FULL
57 WITH ROLLBACK IMMEDIATE;
58 END
59
60
61GO
62IF EXISTS (SELECT 1
63 FROM [master].[dbo].[sysdatabases]
64 WHERE [name] = N'$(DatabaseName)')
65 BEGIN
66 ALTER DATABASE [$(DatabaseName)]
67 SET PAGE_VERIFY NONE
68 WITH ROLLBACK IMMEDIATE;
69 END
70
71
72GO
73PRINT N'Creating [dbo].[Filters]...';
74
75
76GO
77CREATE TABLE [dbo].[Filters] (
78 [Id] INT IDENTITY (1, 1) NOT NULL,
79 [Name] NVARCHAR (MAX) NULL,
80 [AccountId] INT NULL,
81 [Filters] NVARCHAR (MAX) NULL,
82 [TypeId] INT NOT NULL,
83 [SortKey] NVARCHAR (255) NULL,
84 [SortDirection] INT NOT NULL,
85 CONSTRAINT [PK_Filters] PRIMARY KEY CLUSTERED ([Id] ASC)
86);
87
88
89GO
90PRINT N'Creating [dbo].[FK_Filters_DictionaryItems]...';
91
92
93GO
94ALTER TABLE [dbo].[Filters] WITH NOCHECK
95 ADD CONSTRAINT [FK_Filters_DictionaryItems] FOREIGN KEY ([TypeId]) REFERENCES [dbo].[DictionaryItems] ([DictionaryItemId]);
96
97
98GO
99/*
100Post-Deployment Script Template
101--------------------------------------------------------------------------------------
102 This file contains SQL statements that will be appended to the build script.
103 Use SQLCMD syntax to include a file in the post-deployment script.
104 Example: :r .\myfile.sql
105 Use SQLCMD syntax to reference a variable in the post-deployment script.
106 Example: :setvar TableName MyTable
107 SELECT * FROM [$(TableName)]
108--------------------------------------------------------------------------------------
109*/
110-- Lista plikow z katalogu 'PostDeployment\InitialScripts' (w podanej kolejnosci):
111-- 1) \20150101.1_Dictionaries.sql
112-- 2) \20161108.1_Dictionaries_update.sql
113-- 3) \20161122.1_Dictionaries_update.sql
114-- 4) \20161223.1_TRES_Locations.sql
115-- 5) \20190328.1_Dictionaries.sql
116-- 6) \20190328.2_GlobalParameters.sql
117-- 7) \20190328.3_NotificationTemplates.sql
118-- 8) \20190328.4_CountryDomainMappings.sql
119-- 9) \20190430.1_Dictionaries.sql
120-- 10) \20190619.1_Dictionaries_update.sql
121-- 11) \20190620.1_DictionaryItems.sql
122-- 12) \20190621.1_NotificationTemplates.sql
123-- 13) \20190809.1_FixDeployScripts.sql
124-- 14) \20190809.2_ChangeNotifications.sql
125-- 15) \20190809.3_DictionaryItems_update.sql
126-- 16) \20190814.1_DictionaryItem_update.sql
127-- 17) \20190814.2_NotificationTemplates.sql
128-- 18) \20191001.1_FailureStatusChanges.sql
129-- 19) \20191002.1_AddColumnToTransformers.sql
130-- 20) \20191003.1_FailureStatusChanges.sql
131
132
133USE [$(DatabaseName)]
134GO
135SET CONTEXT_INFO 0x00
136GO
137-- =============================================
138-- Tabela tworzona tylko w pierwszym uruchomieniu mechanizmow autogenerowania baz
139-- =============================================
140if not exists (select * from dbo.sysobjects where id = object_id(N'dbo.K2Util_DeploymentLogs') and OBJECTPROPERTY(id, N'IsTable') = 1)
141BEGIN
142 CREATE TABLE dbo.K2Util_DeploymentLogs
143 (
144 [LogGUID] UNIQUEIDENTIFIER NOT NULL,
145 [LogStmtOrder] INT NOT NULL,
146 [LogTime] SMALLDATETIME NOT NULL,
147 [LogScriptChecksum] INT NOT NULL,
148 [LogScriptBody] NVARCHAR(MAX) NOT NULL,
149 CONSTRAINT PK_K2Util_DeploymentLogs PRIMARY KEY NONCLUSTERED ([LogGUID], [LogStmtOrder])
150 ) ON [PRIMARY]
151END
152GO
153
154
155-- =============================================
156-- procedura obslugi uruchamianych skryptow
157-- =============================================
158
159if exists (select * from dbo.sysobjects where id = object_id(N'dbo.K2Util_ExecuteScript') and OBJECTPROPERTY(id, N'IsProcedure') = 1)
160 DROP PROCEDURE dbo.K2Util_ExecuteScript
161GO
162
163CREATE PROCEDURE dbo.K2Util_ExecuteScript
164 @stmtGUID UNIQUEIDENTIFIER,
165 @stmtOrder INT,
166 @stmtBody NVARCHAR(MAX)
167AS
168DECLARE @ContextInfo VARBINARY(128)
169DECLARE @currentChecksum INT
170DECLARE @prevChecksum INT
171DECLARE @ERR_MSG NVARCHAR(4000)
172DECLARE @SelfTran TINYINT
173
174SET NOCOUNT ON;
175
176SELECT @ContextInfo = CONTEXT_INFO()
177SELECT @SelfTran = 0
178
179IF(@ContextInfo = 0x01)
180BEGIN
181 PRINT 'Pomijam wdrazanie skryptu: ' + CAST(@stmtGUID AS VARCHAR(40)) + ', ' + CAST(@stmtOrder AS VARCHAR(40))
182 RETURN
183END
184-- wyliczamy biezaca checksum dla skryptu
185SELECT @currentChecksum = CHECKSUM(@stmtBody)
186-- sprawdzamy wczesniejsze uruchomienie tego skryptu jesli bylo
187SELECT @prevChecksum = LogScriptChecksum FROM dbo.K2Util_DeploymentLogs
188WHERE LogGUID = @stmtGUID AND [LogStmtOrder] = @stmtOrder
189IF(@prevChecksum IS NOT NULL AND @prevChecksum = @currentChecksum)
190BEGIN
191 PRINT 'Skrypt o sygnaturze: ' + CAST(@stmtGUID AS VARCHAR(36)) + ', ' + CAST(@stmtOrder AS VARCHAR(10)) + ' wdrozono wczesniej na serwer'
192END
193-- sprawdzamy sytuacje nieprawidlowa kiedy istnieje juz log z uruchomieniem skryptu o takim GUID
194-- i takim porzadku uruchomienia (@stmtOrder)
195-- ale wedlug CHECKSUM nastapily zmiany w skrypcie
196IF(@prevChecksum IS NOT NULL AND @prevChecksum <> @currentChecksum)
197BEGIN
198 SELECT @ERR_MSG = 'GUID (' + CAST(@stmtGUID AS VARCHAR(36)) + ', ' + CAST(@stmtOrder AS VARCHAR(10)) + '): niezgodnosc skryptu wdrazanego z wersja zapisana w logach'
199 -- ustawienie flagi przerywajacej wdrazanie nastepnych w kolejnosci skryptow
200 -- jesli jestesmy w zewnetrznym kontekscie transakcji
201 IF(@@TRANCOUNT > 0)
202 SET CONTEXT_INFO 0x01
203 -- wyrzucenie bledu wywolania na zewnatrz
204 RAISERROR(@ERR_MSG,11,1)
205END
206-- jelsi nie jestnieje jeszcze skrypt z podanym GUID i nie ustawiono w danym kotekscie wczesniej
207-- informacji w bledzie to wykonujmey skrypt
208IF (@prevChecksum IS NULL AND (CONTEXT_INFO() = 0x00 OR CONTEXT_INFO() IS NULL))
209BEGIN
210 -- rozpoczynamy wlasna transakcje dla uruchomienia poza kontrola mechanizmu automatyzacji
211 IF(@@TRANCOUNT = 0)
212 BEGIN
213 --PRINT 'BEGIN TRANSACTION ' + CAST(@stmtGUID AS VARCHAR(40)) + ', ' + CAST(@stmtOrder AS VARCHAR(40))
214 SELECT @SelfTran = 1
215 BEGIN TRANSACTION
216 END
217 -- w przeciwnym razie oznaczamy tylko savepointa z ktorego wycofamy sie w przypadku problemow
218 ELSE
219 BEGIN
220 --PRINT 'SAVE TRANSACTION InnerTransaction ' + CAST(@stmtGUID AS VARCHAR(40)) + ', ' + CAST(@stmtOrder AS VARCHAR(40))
221 SAVE TRANSACTION InnerTransaction
222 END
223
224 BEGIN TRY
225 -- zalogowanie operacji w tabeli kontrolujacej uruchomienia skryptow
226 -- kazde uruchomienie posiada przypisanego hasha skojarzonego z zawartoscia
227 INSERT INTO [dbo].[K2Util_DeploymentLogs]
228 ([LogGUID], [LogStmtOrder], [LogTime], [LogScriptChecksum], [LogScriptBody])
229 VALUES
230 (@stmtGUID, @stmtOrder, GETDATE(), CHECKSUM(@stmtBody), @stmtBody)
231 -- uruchomienie wlasciwego skryptu
232 EXEC sp_executesql @stmtBody
233 IF (@SelfTran = 1)
234 BEGIN
235 --PRINT 'TRY -> COMMIT ' + CAST(@stmtGUID AS VARCHAR(40))
236 COMMIT
237 END
238 END TRY
239 BEGIN CATCH
240 -- przerywamy transakcje jesli jestesmy w jej kontekscie i wystapil blad
241 IF(@SelfTran = 1)
242 BEGIN
243 --PRINT 'TRY -> ROLLBACK TRANSACTION ' + CAST(@stmtGUID AS VARCHAR(40)) + ', ' + CAST(@stmtOrder AS VARCHAR(40))
244 ROLLBACK TRANSACTION
245 END
246 ELSE IF(XACT_STATE() = 1)
247 BEGIN
248 --PRINT 'TRY -> IF(XACT_STATE() = 1) ROLLBACK TRANSACTION InnerTransaction ' + CAST(@stmtGUID AS VARCHAR(40)) + ', ' + CAST(@stmtOrder AS VARCHAR(40))
249 ROLLBACK TRANSACTION InnerTransaction
250 END
251 SELECT @ERR_MSG = ERROR_MESSAGE()
252 -- ustawienie flagi przerywajacej wdrazanie nastepnych w kolejnosci skryptow
253 IF(@SelfTran <> 1)
254 SET CONTEXT_INFO 0x01
255 -- wyrzucenie bledu wywolania na zewnatrz
256 RAISERROR(@ERR_MSG,11,1)
257 END CATCH
258END
259GO
260BEGIN TRANSACTION
261GO
262-----------------------------------
263-- poczatek skryptow z repozytorium
264-----------------------------------
265
266-- BEGIN \20150101.1_Dictionaries.sql
267EXEC dbo.K2Util_ExecuteScript '36daf79d-9228-4b19-9cc3-7b501e14e692', 0,
268N'-- =============================================
269-- GUID:36DAF79D-9228-4B19-9CC3-7B501E14E692
270-- =============================================
271
272
273SET IDENTITY_INSERT [dbo].[MaterialCategories] ON
274INSERT [dbo].[MaterialCategories] ([MaterialCategoryId], [MaterialCategoryName]) VALUES (1, N''conductor_type'')
275INSERT [dbo].[MaterialCategories] ([MaterialCategoryId], [MaterialCategoryName]) VALUES (5, N''insulation'')
276INSERT [dbo].[MaterialCategories] ([MaterialCategoryId], [MaterialCategoryName]) VALUES (2, N''lamination_type'')
277INSERT [dbo].[MaterialCategories] ([MaterialCategoryId], [MaterialCategoryName]) VALUES (3, N''oil'')
278INSERT [dbo].[MaterialCategories] ([MaterialCategoryId], [MaterialCategoryName]) VALUES (6, N''tank'')
279INSERT [dbo].[MaterialCategories] ([MaterialCategoryId], [MaterialCategoryName]) VALUES (4, N''tank_shunt'')
280SET IDENTITY_INSERT [dbo].[MaterialCategories] OFF
281
282SET IDENTITY_INSERT [dbo].[Materials] ON
283INSERT [dbo].[Materials] ([MaterialId], [MaterialCategoryId], [MaterialType], [MaterialDescription], [ModificationDate]) VALUES (1, 1, N''NETTED'', NULL, CAST(0x0000A4A400E3E51D AS DateTime))
284INSERT [dbo].[Materials] ([MaterialId], [MaterialCategoryId], [MaterialType], [MaterialDescription], [ModificationDate]) VALUES (2, 1, N''NORM'', NULL, CAST(0x0000A4A400E3E520 AS DateTime))
285INSERT [dbo].[Materials] ([MaterialId], [MaterialCategoryId], [MaterialType], [MaterialDescription], [ModificationDate]) VALUES (3, 1, N''TRANS'', NULL, CAST(0x0000A4A400E3E521 AS DateTime))
286INSERT [dbo].[Materials] ([MaterialId], [MaterialCategoryId], [MaterialType], [MaterialDescription], [ModificationDate]) VALUES (4, 2, N''23D078'', NULL, CAST(0x0000A4A400E3E521 AS DateTime))
287INSERT [dbo].[Materials] ([MaterialId], [MaterialCategoryId], [MaterialType], [MaterialDescription], [ModificationDate]) VALUES (5, 2, N''23D080'', NULL, CAST(0x0000A4A400E3E521 AS DateTime))
288INSERT [dbo].[Materials] ([MaterialId], [MaterialCategoryId], [MaterialType], [MaterialDescription], [ModificationDate]) VALUES (6, 2, N''23D083KSC'', NULL, CAST(0x0000A4A400E3E523 AS DateTime))
289INSERT [dbo].[Materials] ([MaterialId], [MaterialCategoryId], [MaterialType], [MaterialDescription], [ModificationDate]) VALUES (7, 2, N''23H087'', NULL, CAST(0x0000A4A400E3E523 AS DateTime))
290INSERT [dbo].[Materials] ([MaterialId], [MaterialCategoryId], [MaterialType], [MaterialDescription], [ModificationDate]) VALUES (8, 2, N''23R101'', NULL, CAST(0x0000A4A400E3E523 AS DateTime))
291INSERT [dbo].[Materials] ([MaterialId], [MaterialCategoryId], [MaterialType], [MaterialDescription], [ModificationDate]) VALUES (9, 2, N''23R112'', NULL, CAST(0x0000A4A400E3E523 AS DateTime))
292INSERT [dbo].[Materials] ([MaterialId], [MaterialCategoryId], [MaterialType], [MaterialDescription], [ModificationDate]) VALUES (10, 2, N''27D084'', NULL, CAST(0x0000A4A400E3E524 AS DateTime))
293INSERT [dbo].[Materials] ([MaterialId], [MaterialCategoryId], [MaterialType], [MaterialDescription], [ModificationDate]) VALUES (11, 2, N''27D087'', NULL, CAST(0x0000A4A400E3E524 AS DateTime))
294INSERT [dbo].[Materials] ([MaterialId], [MaterialCategoryId], [MaterialType], [MaterialDescription], [ModificationDate]) VALUES (12, 2, N''27H098'', NULL, CAST(0x0000A4A400E3E524 AS DateTime))
295INSERT [dbo].[Materials] ([MaterialId], [MaterialCategoryId], [MaterialType], [MaterialDescription], [ModificationDate]) VALUES (13, 2, N''27R115'', NULL, CAST(0x0000A4A400E3E524 AS DateTime))
296INSERT [dbo].[Materials] ([MaterialId], [MaterialCategoryId], [MaterialType], [MaterialDescription], [ModificationDate]) VALUES (14, 2, N''27R121'', NULL, CAST(0x0000A4A400E3E525 AS DateTime))
297INSERT [dbo].[Materials] ([MaterialId], [MaterialCategoryId], [MaterialType], [MaterialDescription], [ModificationDate]) VALUES (15, 2, N''30H102'', NULL, CAST(0x0000A4A400E3E525 AS DateTime))
298INSERT [dbo].[Materials] ([MaterialId], [MaterialCategoryId], [MaterialType], [MaterialDescription], [ModificationDate]) VALUES (16, 2, N''30H107'', NULL, CAST(0x0000A4A400E3E525 AS DateTime))
299INSERT [dbo].[Materials] ([MaterialId], [MaterialCategoryId], [MaterialType], [MaterialDescription], [ModificationDate]) VALUES (17, 2, N''30H113'', NULL, CAST(0x0000A4A400E3E526 AS DateTime))
300INSERT [dbo].[Materials] ([MaterialId], [MaterialCategoryId], [MaterialType], [MaterialDescription], [ModificationDate]) VALUES (18, 2, N''30R122'', NULL, CAST(0x0000A4A400E3E526 AS DateTime))
301INSERT [dbo].[Materials] ([MaterialId], [MaterialCategoryId], [MaterialType], [MaterialDescription], [ModificationDate]) VALUES (19, 2, N''35R135'', NULL, CAST(0x0000A4A400E3E526 AS DateTime))
302INSERT [dbo].[Materials] ([MaterialId], [MaterialCategoryId], [MaterialType], [MaterialDescription], [ModificationDate]) VALUES (20, 3, N''OIL'', NULL, CAST(0x0000A4A400E3E527 AS DateTime))
303INSERT [dbo].[Materials] ([MaterialId], [MaterialCategoryId], [MaterialType], [MaterialDescription], [ModificationDate]) VALUES (21, 4, N''TS0'', NULL, CAST(0x0000A4A400E3E528 AS DateTime))
304INSERT [dbo].[Materials] ([MaterialId], [MaterialCategoryId], [MaterialType], [MaterialDescription], [ModificationDate]) VALUES (22, 4, N''TS10'', NULL, CAST(0x0000A4A400E3E528 AS DateTime))
305INSERT [dbo].[Materials] ([MaterialId], [MaterialCategoryId], [MaterialType], [MaterialDescription], [ModificationDate]) VALUES (23, 4, N''TS15'', NULL, CAST(0x0000A4A400E3E529 AS DateTime))
306INSERT [dbo].[Materials] ([MaterialId], [MaterialCategoryId], [MaterialType], [MaterialDescription], [ModificationDate]) VALUES (24, 4, N''TS20'', NULL, CAST(0x0000A4A400E3E529 AS DateTime))
307INSERT [dbo].[Materials] ([MaterialId], [MaterialCategoryId], [MaterialType], [MaterialDescription], [ModificationDate]) VALUES (25, 4, N''TS25'', NULL, CAST(0x0000A4A400E3E529 AS DateTime))
308INSERT [dbo].[Materials] ([MaterialId], [MaterialCategoryId], [MaterialType], [MaterialDescription], [ModificationDate]) VALUES (26, 4, N''TS30'', NULL, CAST(0x0000A4A400E3E529 AS DateTime))
309INSERT [dbo].[Materials] ([MaterialId], [MaterialCategoryId], [MaterialType], [MaterialDescription], [ModificationDate]) VALUES (27, 5, N''INSUL'', NULL, CAST(0x0000A4A400E3E900 AS DateTime))
310INSERT [dbo].[Materials] ([MaterialId], [MaterialCategoryId], [MaterialType], [MaterialDescription], [ModificationDate]) VALUES (28, 6, N''TANK'', NULL, CAST(0x0000A4A400E3E901 AS DateTime))
311INSERT [dbo].[Materials] ([MaterialId], [MaterialCategoryId], [MaterialType], [MaterialDescription], [ModificationDate]) VALUES (29, 5, N''INSULATION'', NULL, CAST(0x0000A4A400E3E905 AS DateTime))
312INSERT [dbo].[Materials] ([MaterialId], [MaterialCategoryId], [MaterialType], [MaterialDescription], [ModificationDate]) VALUES (30, 3, N''Biotemp'', NULL, CAST(0x0000A4A400E3E908 AS DateTime))
313INSERT [dbo].[Materials] ([MaterialId], [MaterialCategoryId], [MaterialType], [MaterialDescription], [ModificationDate]) VALUES (31, 3, N''Midel'', NULL, CAST(0x0000A4A400E3E908 AS DateTime))
314INSERT [dbo].[Materials] ([MaterialId], [MaterialCategoryId], [MaterialType], [MaterialDescription], [ModificationDate]) VALUES (32, 3, N''Nynas10x'', NULL, CAST(0x0000A4A400E3E90A AS DateTime))
315SET IDENTITY_INSERT [dbo].[Materials] OFF
316
317SET IDENTITY_INSERT [dbo].[ProductTypes] ON
318INSERT [dbo].[ProductTypes] ([ID], [Name], [IsActive]) VALUES (1, N''Traction'', 0)
319INSERT [dbo].[ProductTypes] ([ID], [Name], [IsActive]) VALUES (2, N''Normal'', 0)
320INSERT [dbo].[ProductTypes] ([ID], [Name], [IsActive]) VALUES (3, N''Dryformer'', 0)
321INSERT [dbo].[ProductTypes] ([ID], [Name], [IsActive]) VALUES (4, N''HVDC'', 1)
322INSERT [dbo].[ProductTypes] ([ID], [Name], [IsActive]) VALUES (5, N''Industrial'', 1)
323INSERT [dbo].[ProductTypes] ([ID], [Name], [IsActive]) VALUES (6, N''Reactor'', 1)
324INSERT [dbo].[ProductTypes] ([ID], [Name], [IsActive]) VALUES (7, N''Other'', 0)
325INSERT [dbo].[ProductTypes] ([ID], [Name], [IsActive]) VALUES (8, N''Phase shifter'', 1)
326INSERT [dbo].[ProductTypes] ([ID], [Name], [IsActive]) VALUES (9, N''Furnace'', 1)
327INSERT [dbo].[ProductTypes] ([ID], [Name], [IsActive]) VALUES (10, N''Groundmount ANSI'', 1)
328INSERT [dbo].[ProductTypes] ([ID], [Name], [IsActive]) VALUES (11, N''GSU'', 1)
329INSERT [dbo].[ProductTypes] ([ID], [Name], [IsActive]) VALUES (12, N''Marine Distribution'', 1)
330INSERT [dbo].[ProductTypes] ([ID], [Name], [IsActive]) VALUES (13, N''Marine Propulsion'', 1)
331INSERT [dbo].[ProductTypes] ([ID], [Name], [IsActive]) VALUES (14, N''Mobile'', 1)
332INSERT [dbo].[ProductTypes] ([ID], [Name], [IsActive]) VALUES (15, N''Network'', 1)
333INSERT [dbo].[ProductTypes] ([ID], [Name], [IsActive]) VALUES (16, N''Other Industrial'', 1)
334INSERT [dbo].[ProductTypes] ([ID], [Name], [IsActive]) VALUES (17, N''Padmount ANSI'', 1)
335INSERT [dbo].[ProductTypes] ([ID], [Name], [IsActive]) VALUES (18, N''Padmount IEC'', 1)
336INSERT [dbo].[ProductTypes] ([ID], [Name], [IsActive]) VALUES (19, N''Railway'', 1)
337INSERT [dbo].[ProductTypes] ([ID], [Name], [IsActive]) VALUES (20, N''Rectifier'', 1)
338INSERT [dbo].[ProductTypes] ([ID], [Name], [IsActive]) VALUES (21, N''Regulating'', 1)
339INSERT [dbo].[ProductTypes] ([ID], [Name], [IsActive]) VALUES (22, N''Shell'', 1)
340INSERT [dbo].[ProductTypes] ([ID], [Name], [IsActive]) VALUES (23, N''Subsea'', 1)
341INSERT [dbo].[ProductTypes] ([ID], [Name], [IsActive]) VALUES (24, N''Substation Auto'', 1)
342INSERT [dbo].[ProductTypes] ([ID], [Name], [IsActive]) VALUES (25, N''Substation Non-Auto'', 1)
343INSERT [dbo].[ProductTypes] ([ID], [Name], [IsActive]) VALUES (26, N''Substation Primary Unit ANSI'', 1)
344INSERT [dbo].[ProductTypes] ([ID], [Name], [IsActive]) VALUES (27, N''Substation Secondary Unit ANSI'', 1)
345INSERT [dbo].[ProductTypes] ([ID], [Name], [IsActive]) VALUES (28, N''VSD <=10MVA'', 1)
346INSERT [dbo].[ProductTypes] ([ID], [Name], [IsActive]) VALUES (29, N''VSD >10MVA'', 1)
347INSERT [dbo].[ProductTypes] ([ID], [Name], [IsActive]) VALUES (30, N''VSD <=2.5MVA'', 1)
348INSERT [dbo].[ProductTypes] ([ID], [Name], [IsActive]) VALUES (31, N''VSD <=5MVA'', 1)
349INSERT [dbo].[ProductTypes] ([ID], [Name], [IsActive]) VALUES (32, N''VSD <1MVA'', 1)
350INSERT [dbo].[ProductTypes] ([ID], [Name], [IsActive]) VALUES (33, N''Multi-ratio Generator Aggregate'', 1)
351INSERT [dbo].[ProductTypes] ([ID], [Name], [IsActive]) VALUES (34, N''Windmill'', 0)
352INSERT [dbo].[ProductTypes] ([ID], [Name], [IsActive]) VALUES (35, N''Other Special'', 0)
353SET IDENTITY_INSERT [dbo].[ProductTypes] OFF
354
355SET IDENTITY_INSERT [dbo].[ProductCodes] ON
356INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (134, N''Dry-special'', N''Booster'', N''DTSP-DXX122'', NULL, NULL, N''9AAC30400082'', N''2409'', 0, NULL)
357INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (135, N''Dry-special'', N''EcoDry'', N''RESIBLOC® 99plus <2.5 MVA'', N''DTXX-DXR213'', NULL, N''9AAF403014'', N''2409'', 1, NULL)
358INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (136, N''Dry-special'', N''EcoDry'', N''RESIBLOC® 99plus >2.5 MVA'', N''DTXX-DXC248'', NULL, N''9AAF404035'', N''2409'', 1, NULL)
359INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (137, N''Dry-special'', N''EcoDry'', N''RESIBLOC® Basic/Ultra <2.5 MVA'', N''DTXX-DXR200'', NULL, N''9AAF401318'', N''2409'', 1, NULL)
360INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (138, N''Dry-special'', N''EcoDry'', N''RESIBLOC® Basic/Ultra >2.5 MVA'', N''DTXX-DXR226'', NULL, N''9AAF404037'', N''2409'', 1, NULL)
361INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (139, N''Dry-special'', N''EcoDry'', N''Vacuum Cast 99plus <2.5 MVA'', N''DTXX-DXC213'', NULL, N''9AAF403016'', N''2409'', 1, NULL)
362INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (140, N''Dry-special'', N''EcoDry'', N''Vacuum Cast 99plus >2.5 MVA'', N''DTXX-DXC225'', NULL, N''9AAF404039'', N''2409'', 1, NULL)
363INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (141, N''Dry-special'', N''EcoDry'', N''Vacuum Cast Basic/Ultra <2.5 MVA'', N''DTXX-DXC200'', NULL, N''9AAF401316'', N''2409'', 1, NULL)
364INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (142, N''Dry-special'', N''EcoDry'', N''Vacuum Cast Basic/Ultra >2.5 MVA'', N''DTXX-DXC227'', NULL, N''9AAF404041'', N''2409'', 1, NULL)
365INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (143, N''Dry-special'', N''Explosion-proof'', N''RESIBLOC®'', N''DTXX-DXR201'', NULL, N''9AAF401321'', N''2409'', 0, NULL)
366INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (144, N''Dry-special'', N''Furnace'', N''DTSP-DXX126'', NULL, NULL, N''9AAC30400717'', N''2409'', 0, 9)
367INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (145, N''Dry-special'', N''Line Voltage Regulator'', N''Low Voltage LVR <=125kVA'', N''DTSP-DXX154'', NULL, N''9AAF405137'', N''2409'', 1, NULL)
368INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (146, N''Dry-special'', N''Line Voltage Regulator'', N''Low Voltage LVR <=250kVA'', N''DTSP-DXX155'', NULL, N''9AAF405139'', N''2409'', 1, NULL)
369INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (147, N''Dry-special'', N''Line Voltage Regulator'', N''Low Voltage LVR <=63kVA'', N''DTSP-DXX153'', NULL, N''9AAF405135'', N''2409'', 1, NULL)
370INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (148, N''Dry-special'', N''Line Voltage Regulator'', N''Medium Voltage LVR <=8MVA'', N''DTSP-DXX156'', NULL, N''9AAF405141'', N''2409'', 1, NULL)
371INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (149, N''Dry-special'', N''Load Tap Changing'', N''DTSP-DXX130'', NULL, NULL, N''9AAC30400573'', N''2409'', 0, NULL)
372INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (150, N''Dry-special'', N''Low Voltage < 1.1kV'', N''Distribution and others'', N''DTXX-DXW214'', NULL, N''9AAF403025'', N''2409'', 1, NULL)
373INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (151, N''Dry-special'', N''Low Voltage < 1.1kV'', N''Rolling Stock'', N''DTXX-DXX223'', NULL, N''9AAF404043'', N''2409'', 1, NULL)
374INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (152, N''Dry-special'', N''Marine - Distribution'', N''Open Wound'', N''DTXX-DXW205'', NULL, N''9AAF404974'', N''2409'', 1, NULL)
375INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (153, N''Dry-special'', N''Marine - Distribution'', N''RESIBLOC®'', N''DTXX-DXR205'', NULL, N''9AAF401341'', N''2409'', 1, NULL)
376INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (154, N''Dry-special'', N''Marine - Distribution'', N''Vacuum cast'', N''DTXX-DXC205'', NULL, N''9AAF401339'', N''2409'', 1, NULL)
377INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (155, N''Dry-special'', N''Marine - Drives'', N''ACS6000 or similar transformer up to 4 secondary '', N''DTXX-DXC222-A'', NULL, N''9AAF404103'', N''2409'', 1, NULL)
378INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (156, N''Dry-special'', N''Marine - Drives'', N''ACS6000 or similar transformer up to 4 secondary '', N''DTXX-DXR224-A'', NULL, N''9AAF404102'', N''2409'', 1, NULL)
379INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (157, N''Dry-special'', N''Marine - Drives'', N''ACS800 or similar LV Converter transformers (6-12'', N''DTXX-DXC222-B'', NULL, N''9AAF404106'', N''2409'', 1, NULL)
380INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (158, N''Dry-special'', N''Marine - Drives'', N''ACS800 or similar LV Converter transformers (6-12'', N''DTXX-DXR224-B'', NULL, N''9AAF404105'', N''2409'', 1, NULL)
381INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (159, N''Dry-special'', N''Marine - Drives'', N''Excitation'', N''DTXX-DXC222-C'', NULL, N''9AAF404109'', N''2409'', 1, NULL)
382INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (160, N''Dry-special'', N''Marine - Drives'', N''Excitation'', N''DTXX-DXR224-C'', NULL, N''9AAF404108'', N''2409'', 1, NULL)
383INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (161, N''Dry-special'', N''Marine - Drives'', N''Other MV Converters'', N''DTXX-DXC222'', NULL, N''9AAF404048'', N''2409'', 1, NULL)
384INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (162, N''Dry-special'', N''Marine - Drives'', N''Other MV Converters'', N''DTXX-DXR224'', NULL, N''9AAF404046'', N''2409'', 1, NULL)
385INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (163, N''Dry-special'', N''Marine Distribution'', N''DTSP-DXX131'', NULL, NULL, N''9AAC30400392'', N''2409'', 0, 12)
386INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (164, N''Dry-special'', N''Marine Propulsion'', N''DTSP-DXX132'', NULL, NULL, N''9AAC30400529'', N''2409'', 0, 13)
387INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (165, N''Dry-special'', N''Network/Submersible Transformer'', N''DTXX-DXX228'', NULL, NULL, N''9AAF404093'', N''2409'', 1, NULL)
388INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (166, N''Dry-special'', N''Polemount'', N''Vacuum cast'', N''DTXX-DXC202'', NULL, N''9AAF401324'', N''2409'', 1, NULL)
389INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (167, N''Dry-special'', N''Railway'', N''Rail track'', N''DTSP-DXX138'', NULL, N''9AAC30400839'', N''2409'', 0, 19)
390INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (168, N''Dry-special'', N''Railway'', N''Rail track'', N''DTSP-DXX149'', NULL, N''9AAC30400535'', N''2409'', 0, 19)
391INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (169, N''Dry-special'', N''Railway'', N''Rail track'', N''DTSP-DXX150'', NULL, N''9AAC30400467'', N''2409'', 0, 19)
392INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (170, N''Dry-special'', N''Rectifier'', N''DTSP-DXX139'', NULL, NULL, N''9AAC30400095'', N''2409'', 0, 20)
393INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (171, N''Dry-special'', N''Rolling Stock'', N''Open Wound'', N''DTXX-DXW216'', NULL, N''9AAF403028'', N''2409'', 1, NULL)
394INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (172, N''Dry-special'', N''Rolling Stock'', N''Vacuum Cast'', N''DTXX-DXC216'', NULL, N''9AAF403029'', N''2409'', 1, NULL)
395INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (173, N''Dry-special'', N''Special'', N''DTSP-DXX123'', NULL, NULL, N''9AAC30400710'', N''2409'', 0, NULL)
396INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (174, N''Dry-special'', N''Special'', N''DTSP-DXX124'', NULL, NULL, N''9AAC30400618'', N''2409'', 0, NULL)
397INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (175, N''Dry-special'', N''Special'', N''DTSP-DXX125'', NULL, NULL, N''9AAC30400093'', N''2409'', 0, NULL)
398INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (176, N''Dry-special'', N''Special'', N''DTSP-DXX127'', NULL, NULL, N''9AAC30400433'', N''2409'', 0, NULL)
399INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (177, N''Dry-special'', N''Special'', N''DTSP-DXX136'', NULL, NULL, N''9AAC30400288'', N''2409'', 0, NULL)
400INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (178, N''Dry-special'', N''Specials'', N''Open wound'', N''DTXX-DXW207'', NULL, N''9AAF401355'', N''2409'', 1, NULL)
401INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (179, N''Dry-special'', N''Specials'', N''RESIBLOC®'', N''DTXX-DXR207'', NULL, N''9AAF401353'', N''2409'', 1, NULL)
402INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (180, N''Dry-special'', N''Specials'', N''Vacuum cast'', N''DTXX-DXC207'', NULL, N''9AAF401351'', N''2409'', 1, NULL)
403INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (181, N''Dry-special'', N''Substation Auto'', N''DTSP-DXX121'', NULL, NULL, N''9AAC30400869'', N''2409'', 0, 24)
404INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (182, N''Dry-special'', N''TriDry'', N''Open Wound'', N''DTXX-DXW203'', NULL, N''9AAF401331'', N''2409'', 1, NULL)
405INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (183, N''Dry-special'', N''TriDry'', N''RESIBLOC®'', N''DTXX-DXR203'', NULL, N''9AAF401329'', N''2409'', 1, NULL)
406INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (184, N''Dry-special'', N''TriDry'', N''Vacuum cast'', N''DTXX-DXC203'', NULL, N''9AAF401327'', N''2409'', 1, NULL)
407INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (185, N''Dry-special'', N''Variable Speed Drive'', N''DTSP-DXX151'', NULL, NULL, N''9AAC30400259'', N''2409'', 0, NULL)
408INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (186, N''Dry-special'', N''VSD, Rectifier & Excitation < 315kVA'', N''ACS800 or similar LV Converter transformers (6-12'', N''DTXX-DXC206-A'', NULL, N''9AAF404111'', N''2409'', 1, NULL)
409INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (187, N''Dry-special'', N''VSD, Rectifier & Excitation < 315kVA'', N''ACS800 or similar LV Converter transformers (6-12'', N''DTXX-DXR206-A'', NULL, N''9AAF404110'', N''2409'', 1, NULL)
410INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (188, N''Dry-special'', N''VSD, Rectifier & Excitation < 315kVA'', N''ACS800 or similar LV Converter transformers (6-12'', N''DTXX-DXW206-A'', NULL, N''9AAF404112'', N''2409'', 1, NULL)
411INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (189, N''Dry-special'', N''VSD, Rectifier & Excitation < 315kVA'', N''Excitation'', N''DTXX-DXC206'', NULL, N''9AAF401344'', N''2409'', 1, NULL)
412INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (190, N''Dry-special'', N''VSD, Rectifier & Excitation < 315kVA'', N''Excitation'', N''DTXX-DXR206'', NULL, N''9AAF401346'', N''2409'', 1, NULL)
413INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (191, N''Dry-special'', N''VSD, Rectifier & Excitation < 315kVA'', N''Excitation'', N''DTXX-DXW206'', NULL, N''9AAF401348'', N''2409'', 1, NULL)
414INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (192, N''Dry-special'', N''VSD, Rectifier & Excitation >10 MVA'', N''ACS5000 or similar transformer with more than 4 w'', N''DTXX-DXC247-A'', NULL, N''9AAF404115'', N''2409'', 1, NULL)
415INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (193, N''Dry-special'', N''VSD, Rectifier & Excitation >10 MVA'', N''ACS5000 or similar transformer with more than 4 w'', N''DTXX-DXR243-A'', NULL, N''9AAF404114'', N''2409'', 1, NULL)
416INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (194, N''Dry-special'', N''VSD, Rectifier & Excitation >10 MVA'', N''ACS5000 or similar transformer with more than 4 w'', N''DTXX-DXW239-A'', NULL, N''9AAF404113'', N''2409'', 1, NULL)
417INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (195, N''Dry-special'', N''VSD, Rectifier & Excitation >10 MVA'', N''ACS6000 or similar transformer up to 4 secondary '', N''DTXX-DXC247-B'', NULL, N''9AAF404118'', N''2409'', 1, NULL)
418INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (196, N''Dry-special'', N''VSD, Rectifier & Excitation >10 MVA'', N''ACS6000 or similar transformer up to 4 secondary '', N''DTXX-DXR243-B'', NULL, N''9AAF404117'', N''2409'', 1, NULL)
419INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (197, N''Dry-special'', N''VSD, Rectifier & Excitation >10 MVA'', N''ACS6000 or similar transformer up to 4 secondary '', N''DTXX-DXW239-B'', NULL, N''9AAF404234'', N''2409'', 1, NULL)
420INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (198, N''Dry-special'', N''VSD, Rectifier & Excitation >10 MVA'', N''LCI or similar transformer (6-12 pulse)'', N''DTXX-DXC247-C'', NULL, N''9AAF404122'', N''2409'', 1, NULL)
421INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (199, N''Dry-special'', N''VSD, Rectifier & Excitation >10 MVA'', N''LCI or similar transformer (6-12 pulse)'', N''DTXX-DXR243-C'', NULL, N''9AAF404121'', N''2409'', 1, NULL)
422INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (200, N''Dry-special'', N''VSD, Rectifier & Excitation >10 MVA'', N''LCI or similar transformer (6-12 pulse)'', N''DTXX-DXW239-C'', NULL, N''9AAF404120'', N''2409'', 1, NULL)
423INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (201, N''Dry-special'', N''VSD, Rectifier & Excitation >10 MVA'', N''Other MV Converters'', N''DTXX-DXC247'', NULL, N''9AAF404076'', N''2409'', 1, NULL)
424INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (202, N''Dry-special'', N''VSD, Rectifier & Excitation >10 MVA'', N''Other MV Converters'', N''DTXX-DXR243'', NULL, N''9AAF404074'', N''2409'', 1, NULL)
425INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (203, N''Dry-special'', N''VSD, Rectifier & Excitation >10 MVA'', N''Other MV Converters'', N''DTXX-DXW239'', NULL, N''9AAF404072'', N''2409'', 1, NULL)
426INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (204, N''Dry-special'', N''VSD, Rectifier & Excitation >10 MVA'', N''Rectifier'', N''DTXX-DXC247-D'', NULL, N''9AAF404126'', N''2409'', 1, NULL)
427INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (205, N''Dry-special'', N''VSD, Rectifier & Excitation >10 MVA'', N''Rectifier'', N''DTXX-DXR243-D'', NULL, N''9AAF404125'', N''2409'', 1, NULL)
428INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (206, N''Dry-special'', N''VSD, Rectifier & Excitation >10 MVA'', N''Rectifier'', N''DTXX-DXW239-D'', NULL, N''9AAF404124'', N''2409'', 1, NULL)
429INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (207, N''Dry-special'', N''VSD, Rectifier & Excitation 2.5 MVA-5 MVA'', N''ACS1000 or similar transformer up to 4 secondary '', N''DTXX-DXC245-B'', NULL, N''9AAF404132'', N''2409'', 1, NULL)
430INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (208, N''Dry-special'', N''VSD, Rectifier & Excitation 2.5 MVA-5 MVA'', N''ACS1000 or similar transformer up to 4 secondary '', N''DTXX-DXR241-B'', NULL, N''9AAF404131'', N''2409'', 1, NULL)
431INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (209, N''Dry-special'', N''VSD, Rectifier & Excitation 2.5 MVA-5 MVA'', N''ACS1000 or similar transformer up to 4 secondary '', N''DTXX-DXW237-B'', NULL, N''9AAF404130'', N''2409'', 1, NULL)
432INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (210, N''Dry-special'', N''VSD, Rectifier & Excitation 2.5 MVA-5 MVA'', N''ACS2000 or similar transformers (6-24 pulse)'', N''DTXX-DXC245-F'', NULL, N''9AAF404148'', N''2409'', 1, NULL)
433INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (211, N''Dry-special'', N''VSD, Rectifier & Excitation 2.5 MVA-5 MVA'', N''ACS2000 or similar transformers (6-24 pulse)'', N''DTXX-DXR241-F'', NULL, N''9AAF404147'', N''2409'', 1, NULL)
434INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (212, N''Dry-special'', N''VSD, Rectifier & Excitation 2.5 MVA-5 MVA'', N''ACS2000 or similar transformers (6-24 pulse)'', N''DTXX-DXW237-F'', NULL, N''9AAF404146'', N''2409'', 1, NULL)
435INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (213, N''Dry-special'', N''VSD, Rectifier & Excitation 2.5 MVA-5 MVA'', N''ACS5000 or similar transformer with more than 4 w'', N''DTXX-DXC245-A'', NULL, N''9AAF404129'', N''2409'', 1, NULL)
436INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (214, N''Dry-special'', N''VSD, Rectifier & Excitation 2.5 MVA-5 MVA'', N''ACS5000 or similar transformer with more than 4 w'', N''DTXX-DXR241-A'', NULL, N''9AAF404128'', N''2409'', 1, NULL)
437INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (215, N''Dry-special'', N''VSD, Rectifier & Excitation 2.5 MVA-5 MVA'', N''ACS5000 or similar transformer with more than 4 w'', N''DTXX-DXW237-A'', NULL, N''9AAF404127'', N''2409'', 1, NULL)
438INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (216, N''Dry-special'', N''VSD, Rectifier & Excitation 2.5 MVA-5 MVA'', N''ACS6000 or similar transformer up to 4 secondary '', N''DTXX-DXC245-C'', NULL, N''9AAF404136'', N''2409'', 1, NULL)
439INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (217, N''Dry-special'', N''VSD, Rectifier & Excitation 2.5 MVA-5 MVA'', N''ACS6000 or similar transformer up to 4 secondary '', N''DTXX-DXR241-C'', NULL, N''9AAF404135'', N''2409'', 1, NULL)
440INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (218, N''Dry-special'', N''VSD, Rectifier & Excitation 2.5 MVA-5 MVA'', N''ACS6000 or similar transformer up to 4 secondary '', N''DTXX-DXW237-C'', NULL, N''9AAF404134'', N''2409'', 1, NULL)
441INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (219, N''Dry-special'', N''VSD, Rectifier & Excitation 2.5 MVA-5 MVA'', N''ACS800 or similar LV Converter transformers (6-12'', N''DTXX-DXC245-E'', NULL, N''9AAF404144'', N''2409'', 1, NULL)
442INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (220, N''Dry-special'', N''VSD, Rectifier & Excitation 2.5 MVA-5 MVA'', N''ACS800 or similar LV Converter transformers (6-12'', N''DTXX-DXR241-E'', NULL, N''9AAF404143'', N''2409'', 1, NULL)
443INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (221, N''Dry-special'', N''VSD, Rectifier & Excitation 2.5 MVA-5 MVA'', N''ACS800 or similar LV Converter transformers (6-12'', N''DTXX-DXW237-E'', NULL, N''9AAF404142'', N''2409'', 1, NULL)
444INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (222, N''Dry-special'', N''VSD, Rectifier & Excitation 2.5 MVA-5 MVA'', N''Excitation'', N''DTXX-DXC245-G'', NULL, N''9AAF404152'', N''2409'', 1, NULL)
445INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (223, N''Dry-special'', N''VSD, Rectifier & Excitation 2.5 MVA-5 MVA'', N''Excitation'', N''DTXX-DXR241-G'', NULL, N''9AAF404151'', N''2409'', 1, NULL)
446INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (224, N''Dry-special'', N''VSD, Rectifier & Excitation 2.5 MVA-5 MVA'', N''Excitation'', N''DTXX-DXW237-G'', NULL, N''9AAF404150'', N''2409'', 1, NULL)
447INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (225, N''Dry-special'', N''VSD, Rectifier & Excitation 2.5 MVA-5 MVA'', N''LCI or similar transformer (6-12 pulse)'', N''DTXX-DXC245-D'', NULL, N''9AAF404140'', N''2409'', 1, NULL)
448INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (226, N''Dry-special'', N''VSD, Rectifier & Excitation 2.5 MVA-5 MVA'', N''LCI or similar transformer (6-12 pulse)'', N''DTXX-DXR241-D'', NULL, N''9AAF404139'', N''2409'', 1, NULL)
449INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (227, N''Dry-special'', N''VSD, Rectifier & Excitation 2.5 MVA-5 MVA'', N''LCI or similar transformer (6-12 pulse)'', N''DTXX-DXW237-D'', NULL, N''9AAF404138'', N''2409'', 1, NULL)
450INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (228, N''Dry-special'', N''VSD, Rectifier & Excitation 2.5 MVA-5 MVA'', N''Other MV Converters'', N''DTXX-DXC245'', NULL, N''9AAF404062'', N''2409'', 1, NULL)
451INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (229, N''Dry-special'', N''VSD, Rectifier & Excitation 2.5 MVA-5 MVA'', N''Other MV Converters'', N''DTXX-DXR241'', NULL, N''9AAF404060'', N''2409'', 1, NULL)
452INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (230, N''Dry-special'', N''VSD, Rectifier & Excitation 2.5 MVA-5 MVA'', N''Other MV Converters'', N''DTXX-DXW237'', NULL, N''9AAF404058'', N''2409'', 1, NULL)
453INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (231, N''Dry-special'', N''VSD, Rectifier & Excitation 2.5 MVA-5 MVA'', N''Rectifier'', N''DTXX-DXC245-H'', NULL, N''9AAF404156'', N''2409'', 1, NULL)
454INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (232, N''Dry-special'', N''VSD, Rectifier & Excitation 2.5 MVA-5 MVA'', N''Rectifier'', N''DTXX-DXR241-H'', NULL, N''9AAF404155'', N''2409'', 1, NULL)
455
456INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (233, N''Dry-special'', N''VSD, Rectifier & Excitation 2.5 MVA-5 MVA'', N''Rectifier'', N''DTXX-DXW237-H'', NULL, N''9AAF404154'', N''2409'', 1, NULL)
457INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (234, N''Dry-special'', N''VSD, Rectifier & Excitation 315-2500kVA'', N''ACS1000 or similar transformer up to 4 secondary '', N''DTXX-DXC244-B'', NULL, N''9AAF404162'', N''2409'', 1, NULL)
458INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (235, N''Dry-special'', N''VSD, Rectifier & Excitation 315-2500kVA'', N''ACS1000 or similar transformer up to 4 secondary '', N''DTXX-DXR240-B'', NULL, N''9AAF404161'', N''2409'', 1, NULL)
459INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (236, N''Dry-special'', N''VSD, Rectifier & Excitation 315-2500kVA'', N''ACS1000 or similar transformer up to 4 secondary '', N''DTXX-DXW236-B'', NULL, N''9AAF404160'', N''2409'', 1, NULL)
460INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (237, N''Dry-special'', N''VSD, Rectifier & Excitation 315-2500kVA'', N''ACS2000 or similar transformers (6-24 pulse)'', N''DTXX-DXC244-F'', NULL, N''9AAF404178'', N''2409'', 1, NULL)
461INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (238, N''Dry-special'', N''VSD, Rectifier & Excitation 315-2500kVA'', N''ACS2000 or similar transformers (6-24 pulse)'', N''DTXX-DXR240-F'', NULL, N''9AAF404177'', N''2409'', 1, NULL)
462INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (239, N''Dry-special'', N''VSD, Rectifier & Excitation 315-2500kVA'', N''ACS2000 or similar transformers (6-24 pulse)'', N''DTXX-DXW236-F'', NULL, N''9AAF404176'', N''2409'', 1, NULL)
463INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (240, N''Dry-special'', N''VSD, Rectifier & Excitation 315-2500kVA'', N''ACS5000 or similar transformer with more than 4 w'', N''DTXX-DXC244-A'', NULL, N''9AAF404159'', N''2409'', 1, NULL)
464INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (241, N''Dry-special'', N''VSD, Rectifier & Excitation 315-2500kVA'', N''ACS5000 or similar transformer with more than 4 w'', N''DTXX-DXR240-A'', NULL, N''9AAF404158'', N''2409'', 1, NULL)
465INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (242, N''Dry-special'', N''VSD, Rectifier & Excitation 315-2500kVA'', N''ACS5000 or similar transformer with more than 4 w'', N''DTXX-DXW236-A'', NULL, N''9AAF404157'', N''2409'', 1, NULL)
466INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (243, N''Dry-special'', N''VSD, Rectifier & Excitation 315-2500kVA'', N''ACS6000 or similar transformer up to 4 secondary '', N''DTXX-DXC244-C'', NULL, N''9AAF404166'', N''2409'', 1, NULL)
467INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (244, N''Dry-special'', N''VSD, Rectifier & Excitation 315-2500kVA'', N''ACS6000 or similar transformer up to 4 secondary '', N''DTXX-DXR240-C'', NULL, N''9AAF404165'', N''2409'', 1, NULL)
468INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (245, N''Dry-special'', N''VSD, Rectifier & Excitation 315-2500kVA'', N''ACS6000 or similar transformer up to 4 secondary '', N''DTXX-DXW236-C'', NULL, N''9AAF404164'', N''2409'', 1, NULL)
469INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (246, N''Dry-special'', N''VSD, Rectifier & Excitation 315-2500kVA'', N''ACS800 or similar LV Converter transformers (6-12'', N''DTXX-DXC244-E'', NULL, N''9AAF404174'', N''2409'', 1, NULL)
470INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (247, N''Dry-special'', N''VSD, Rectifier & Excitation 315-2500kVA'', N''ACS800 or similar LV Converter transformers (6-12'', N''DTXX-DXR240-E'', NULL, N''9AAF404173'', N''2409'', 1, NULL)
471INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (248, N''Dry-special'', N''VSD, Rectifier & Excitation 315-2500kVA'', N''ACS800 or similar LV Converter transformers (6-12'', N''DTXX-DXW236-E'', NULL, N''9AAF404172'', N''2409'', 1, NULL)
472INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (249, N''Dry-special'', N''VSD, Rectifier & Excitation 315-2500kVA'', N''Excitation'', N''DTXX-DXC244-G'', NULL, N''9AAF404182'', N''2409'', 1, NULL)
473INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (250, N''Dry-special'', N''VSD, Rectifier & Excitation 315-2500kVA'', N''Excitation'', N''DTXX-DXR240-G'', NULL, N''9AAF404181'', N''2409'', 1, NULL)
474INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (251, N''Dry-special'', N''VSD, Rectifier & Excitation 315-2500kVA'', N''Excitation'', N''DTXX-DXW236-G'', NULL, N''9AAF404180'', N''2409'', 1, NULL)
475INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (252, N''Dry-special'', N''VSD, Rectifier & Excitation 315-2500kVA'', N''LCI or similar transformer (6-12 pulse)'', N''DTXX-DXC244-D'', NULL, N''9AAF404170'', N''2409'', 1, NULL)
476INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (253, N''Dry-special'', N''VSD, Rectifier & Excitation 315-2500kVA'', N''LCI or similar transformer (6-12 pulse)'', N''DTXX-DXR240-D'', NULL, N''9AAF404169'', N''2409'', 1, NULL)
477INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (254, N''Dry-special'', N''VSD, Rectifier & Excitation 315-2500kVA'', N''LCI or similar transformer (6-12 pulse)'', N''DTXX-DXW236-D'', NULL, N''9AAF404168'', N''2409'', 1, NULL)
478INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (255, N''Dry-special'', N''VSD, Rectifier & Excitation 315-2500kVA'', N''Other MV Converters'', N''DTXX-DXC244'', NULL, N''9AAF404055'', N''2409'', 1, NULL)
479INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (256, N''Dry-special'', N''VSD, Rectifier & Excitation 315-2500kVA'', N''Other MV Converters'', N''DTXX-DXR240'', NULL, N''9AAF404053'', N''2409'', 1, NULL)
480INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (257, N''Dry-special'', N''VSD, Rectifier & Excitation 315-2500kVA'', N''Other MV Converters'', N''DTXX-DXW236'', NULL, N''9AAF404051'', N''2409'', 1, NULL)
481INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (258, N''Dry-special'', N''VSD, Rectifier & Excitation 315-2500kVA'', N''Rectifier'', N''DTXX-DXC244-H'', NULL, N''9AAF404186'', N''2409'', 1, NULL)
482INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (259, N''Dry-special'', N''VSD, Rectifier & Excitation 315-2500kVA'', N''Rectifier'', N''DTXX-DXR240-H'', NULL, N''9AAF404185'', N''2409'', 1, NULL)
483INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (260, N''Dry-special'', N''VSD, Rectifier & Excitation 315-2500kVA'', N''Rectifier'', N''DTXX-DXW236-H'', NULL, N''9AAF404184'', N''2409'', 1, NULL)
484INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (261, N''Dry-special'', N''VSD, Rectifier & Excitation 5 MVA-10 MVA'', N''ACS1000 or similar transformer up to 4 secondary '', N''DTXX-DXC246-B'', NULL, N''9AAF404192'', N''2409'', 1, NULL)
485INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (262, N''Dry-special'', N''VSD, Rectifier & Excitation 5 MVA-10 MVA'', N''ACS1000 or similar transformer up to 4 secondary '', N''DTXX-DXR242-B'', NULL, N''9AAF404191'', N''2409'', 1, NULL)
486INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (263, N''Dry-special'', N''VSD, Rectifier & Excitation 5 MVA-10 MVA'', N''ACS1000 or similar transformer up to 4 secondary '', N''DTXX-DXW238-B'', NULL, N''9AAF404190'', N''2409'', 1, NULL)
487INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (264, N''Dry-special'', N''VSD, Rectifier & Excitation 5 MVA-10 MVA'', N''ACS2000 or similar transformers (6-24 pulse)'', N''DTXX-DXC246-F'', NULL, N''9AAF404208'', N''2409'', 1, NULL)
488INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (265, N''Dry-special'', N''VSD, Rectifier & Excitation 5 MVA-10 MVA'', N''ACS2000 or similar transformers (6-24 pulse)'', N''DTXX-DXR242-F'', NULL, N''9AAF404207'', N''2409'', 1, NULL)
489INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (266, N''Dry-special'', N''VSD, Rectifier & Excitation 5 MVA-10 MVA'', N''ACS2000 or similar transformers (6-24 pulse)'', N''DTXX-DXW238-F'', NULL, N''9AAF404206'', N''2409'', 1, NULL)
490INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (267, N''Dry-special'', N''VSD, Rectifier & Excitation 5 MVA-10 MVA'', N''ACS5000 or similar transformer with more than 4 w'', N''DTXX-DXC246-A'', NULL, N''9AAF404189'', N''2409'', 1, NULL)
491INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (268, N''Dry-special'', N''VSD, Rectifier & Excitation 5 MVA-10 MVA'', N''ACS5000 or similar transformer with more than 4 w'', N''DTXX-DXR242-A'', NULL, N''9AAF404188'', N''2409'', 1, NULL)
492INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (269, N''Dry-special'', N''VSD, Rectifier & Excitation 5 MVA-10 MVA'', N''ACS5000 or similar transformer with more than 4 w'', N''DTXX-DXW238-A'', NULL, N''9AAF404187'', N''2409'', 1, NULL)
493INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (270, N''Dry-special'', N''VSD, Rectifier & Excitation 5 MVA-10 MVA'', N''ACS6000 or similar transformer up to 4 secondary '', N''DTXX-DXC246-C'', NULL, N''9AAF404196'', N''2409'', 1, NULL)
494INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (271, N''Dry-special'', N''VSD, Rectifier & Excitation 5 MVA-10 MVA'', N''ACS6000 or similar transformer up to 4 secondary '', N''DTXX-DXR242-C'', NULL, N''9AAF404195'', N''2409'', 1, NULL)
495INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (272, N''Dry-special'', N''VSD, Rectifier & Excitation 5 MVA-10 MVA'', N''ACS6000 or similar transformer up to 4 secondary '', N''DTXX-DXW238-C'', NULL, N''9AAF404194'', N''2409'', 1, NULL)
496INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (273, N''Dry-special'', N''VSD, Rectifier & Excitation 5 MVA-10 MVA'', N''ACS800 or similar LV Converter transformers (6-12'', N''DTXX-DXC246-E'', NULL, N''9AAF404204'', N''2409'', 1, NULL)
497INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (274, N''Dry-special'', N''VSD, Rectifier & Excitation 5 MVA-10 MVA'', N''ACS800 or similar LV Converter transformers (6-12'', N''DTXX-DXR242-E'', NULL, N''9AAF404203'', N''2409'', 1, NULL)
498INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (275, N''Dry-special'', N''VSD, Rectifier & Excitation 5 MVA-10 MVA'', N''ACS800 or similar LV Converter transformers (6-12'', N''DTXX-DXW238-E'', NULL, N''9AAF404202'', N''2409'', 1, NULL)
499INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (276, N''Dry-special'', N''VSD, Rectifier & Excitation 5 MVA-10 MVA'', N''Excitation'', N''DTXX-DXC246-G'', NULL, N''9AAF404212'', N''2409'', 1, NULL)
500INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (277, N''Dry-special'', N''VSD, Rectifier & Excitation 5 MVA-10 MVA'', N''Excitation'', N''DTXX-DXR242-G'', NULL, N''9AAF404211'', N''2409'', 1, NULL)
501INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (278, N''Dry-special'', N''VSD, Rectifier & Excitation 5 MVA-10 MVA'', N''Excitation'', N''DTXX-DXW238-G'', NULL, N''9AAF404210'', N''2409'', 1, NULL)
502INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (279, N''Dry-special'', N''VSD, Rectifier & Excitation 5 MVA-10 MVA'', N''LCI or similar transformer (6-12 pulse)'', N''DTXX-DXC246-D'', NULL, N''9AAF404200'', N''2409'', 1, NULL)
503INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (280, N''Dry-special'', N''VSD, Rectifier & Excitation 5 MVA-10 MVA'', N''LCI or similar transformer (6-12 pulse)'', N''DTXX-DXR242-D'', NULL, N''9AAF404199'', N''2409'', 1, NULL)
504INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (281, N''Dry-special'', N''VSD, Rectifier & Excitation 5 MVA-10 MVA'', N''LCI or similar transformer (6-12 pulse)'', N''DTXX-DXW238-D'', NULL, N''9AAF404198'', N''2409'', 1, NULL)
505INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (282, N''Dry-special'', N''VSD, Rectifier & Excitation 5 MVA-10 MVA'', N''Other MV Converters'', N''DTXX-DXC246'', NULL, N''9AAF404069'', N''2409'', 1, NULL)
506INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (283, N''Dry-special'', N''VSD, Rectifier & Excitation 5 MVA-10 MVA'', N''Other MV Converters'', N''DTXX-DXR242'', NULL, N''9AAF404067'', N''2409'', 1, NULL)
507INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (284, N''Dry-special'', N''VSD, Rectifier & Excitation 5 MVA-10 MVA'', N''Other MV Converters'', N''DTXX-DXW238'', NULL, N''9AAF404065'', N''2409'', 1, NULL)
508INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (285, N''Dry-special'', N''VSD, Rectifier & Excitation 5 MVA-10 MVA'', N''Rectifier'', N''DTXX-DXC246-H'', NULL, N''9AAF404216'', N''2409'', 1, NULL)
509INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (286, N''Dry-special'', N''VSD, Rectifier & Excitation 5 MVA-10 MVA'', N''Rectifier'', N''DTXX-DXR242-H'', NULL, N''9AAF404215'', N''2409'', 1, NULL)
510INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (287, N''Dry-special'', N''VSD, Rectifier & Excitation 5 MVA-10 MVA'', N''Rectifier'', N''DTXX-DXW238-H'', NULL, N''9AAF404214'', N''2409'', 1, NULL)
511INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (288, N''Dry-special'', N''Water cooled'', N''Open Wound'', N''DTXX-DXW215'', NULL, N''9AAF403026'', N''2409'', 1, NULL)
512INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (289, N''Dry-special'', N''Water cooled'', N''Vacuum Cast'', N''DTXX-DXC215'', NULL, N''9AAF403027'', N''2409'', 1, NULL)
513INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (290, N''Dry-special'', N''Windmill'', N''DTSP-DXX152'', NULL, NULL, N''9AAC30400182'', N''2409'', 0, 34)
514INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (291, N''Dry-special'', N''Windmill < 315kVA'', N''ACS800 or similar LV Converter transformers (6-12'', N''DTXX-DXC204'', NULL, N''9AAF401334'', N''2409'', 1, NULL)
515INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (292, N''Dry-special'', N''Windmill < 315kVA'', N''ACS800 or similar LV Converter transformers (6-12'', N''DTXX-DXR204'', NULL, N''9AAF401336'', N''2409'', 1, NULL)
516INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (293, N''Dry-special'', N''Windmill >10 MVA'', N''Other MV Converters'', N''DTXX-DXC234'', NULL, N''9AAF404091'', N''2409'', 1, NULL)
517INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (294, N''Dry-special'', N''Windmill >10 MVA'', N''Other MV Converters'', N''DTXX-DXR231'', NULL, N''9AAF404089'', N''2409'', 1, NULL)
518INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (295, N''Dry-special'', N''Windmill 2.5 MVA-10 MVA'', N''ACS800 or similar LV Converter transformers (6-12'', N''DTXX-DXC233-A'', NULL, N''9AAF404220'', N''2409'', 1, NULL)
519INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (296, N''Dry-special'', N''Windmill 2.5 MVA-10 MVA'', N''ACS800 or similar LV Converter transformers (6-12'', N''DTXX-DXR230-A'', NULL, N''9AAF404219'', N''2409'', 1, NULL)
520INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (297, N''Dry-special'', N''Windmill 2.5 MVA-10 MVA'', N''Other MV Converters'', N''DTXX-DXC233'', NULL, N''9AAF404086'', N''2409'', 1, NULL)
521INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (298, N''Dry-special'', N''Windmill 2.5 MVA-10 MVA'', N''Other MV Converters'', N''DTXX-DXR230'', NULL, N''9AAF404084'', N''2409'', 1, NULL)
522INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (299, N''Dry-special'', N''Windmill 315-2500kVA'', N''ACS800 or similar LV Converter transformers (6-12'', N''DTXX-DXC232-A'', NULL, N''9AAF404218'', N''2409'', 1, NULL)
523INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (300, N''Dry-special'', N''Windmill 315-2500kVA'', N''ACS800 or similar LV Converter transformers (6-12'', N''DTXX-DXR229-A'', NULL, N''9AAF404217'', N''2409'', 1, NULL)
524INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (301, N''Dry-special'', N''Windmill 315-2500kVA'', N''Other MV Converters'', N''DTXX-DXC232'', NULL, N''9AAF404081'', N''2409'', 1, NULL)
525INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (302, N''Dry-special'', N''Windmill 315-2500kVA'', N''Other MV Converters'', N''DTXX-DXR229'', NULL, N''9AAF404079'', N''2409'', 1, NULL)
526INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (303, N''Dry-Standard'', N''< 315 kVA'', N''Open wound'', N''DTXX-DXW208'', NULL, N''9AAF401362'', N''2409'', 1, NULL)
527INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (304, N''Dry-Standard'', N''< 315 kVA'', N''RESIBLOC®'', N''DTXX-DXR208'', NULL, N''9AAF401360'', N''2409'', 1, NULL)
528INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (305, N''Dry-Standard'', N''< 315 kVA'', N''Vacuum cast'', N''DTXX-DXC208'', NULL, N''9AAF401358'', N''2409'', 1, NULL)
529INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (306, N''Dry-Standard'', N''> 10 MVA <=40.5 kV'', N''Open wound'', N''DTXX-DXW211'', NULL, N''9AAF401383'', N''2409'', 1, NULL)
530INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (307, N''Dry-Standard'', N''> 10 MVA <=40.5 kV'', N''RESIBLOC®'', N''DTXX-DXR211'', NULL, N''9AAF401381'', N''2409'', 1, NULL)
531INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (308, N''Dry-Standard'', N''> 10 MVA <=40.5 kV'', N''Vacuum cast'', N''DTXX-DXC211'', NULL, N''9AAF401379'', N''2409'', 1, NULL)
532INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (309, N''Dry-Standard'', N''2.5 - 10 MVA <=40.5 kV'', N''Open wound'', N''DTXX-DXW210'', NULL, N''9AAF401376'', N''2409'', 1, NULL)
533INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (310, N''Dry-Standard'', N''2.5 - 10 MVA <=40.5 kV'', N''RESIBLOC®'', N''DTXX-DXR210'', NULL, N''9AAF401374'', N''2409'', 1, NULL)
534INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (311, N''Dry-Standard'', N''2.5 - 10 MVA <=40.5 kV'', N''RESIBLOC®One'', N''DTXX-DXR250'', NULL, N''9AAF405296'', N''2409'', 1, NULL)
535INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (312, N''Dry-Standard'', N''2.5 - 10 MVA <=40.5 kV'', N''Vacuum cast'', N''DTXX-DXC210'', NULL, N''9AAF401372'', N''2409'', 1, NULL)
536INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (313, N''Dry-Standard'', N''315 - 2500 kVA'', N''Open wound'', N''DTXX-DXW209'', NULL, N''9AAF401369'', N''2409'', 1, NULL)
537INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (314, N''Dry-Standard'', N''315 - 2500 kVA'', N''RESIBLOC®'', N''DTXX-DXR209'', NULL, N''9AAF401367'', N''2409'', 1, NULL)
538INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (315, N''Dry-Standard'', N''315 - 2500 kVA'', N''RESIBLOC®One'', N''DTXX-DXR251'', NULL, N''9AAF405298'', N''2409'', 1, NULL)
539INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (316, N''Dry-Standard'', N''315 - 2500 kVA'', N''Vacuum cast'', N''DTXX-DXC209'', NULL, N''9AAF401365'', N''2409'', 1, NULL)
540INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (317, N''Dry-Standard'', N''Groundmount IEC'', N''Cast coil'', N''DTIE-DXC128'', NULL, N''9AAC30400763'', N''2409'', 0, NULL)
541INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (318, N''Dry-Standard'', N''Groundmount IEC'', N''Resibloc'', N''DTIE-DXR128'', NULL, N''9AAC30400808'', N''2409'', 0, NULL)
542INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (319, N''Dry-Standard'', N''HiDry'', N''RESIBLOC®'', N''DTXX-DXR212'', NULL, N''9AAF401388'', N''2409'', 1, NULL)
543INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (320, N''Dry-Standard'', N''HiDry'', N''Vacuum cast'', N''DTXX-DXC212'', NULL, N''9AAF401386'', N''2409'', 1, NULL)
544INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (321, N''Dry-Standard'', N''Padmount ANSI'', N''Cast coil'', N''DTAN-DXC135'', NULL, N''9AAC30400735'', N''2409'', 0, 17)
545INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (322, N''Dry-Standard'', N''Padmount ANSI'', N''Open wound'', N''DTAN-DXW135'', NULL, N''9AAC30400707'', N''2409'', 0, 17)
546INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (323, N''Dry-Standard'', N''Padmount ANSI'', N''Resibloc'', N''DTAN-DXR135'', NULL, N''9AAC30400797'', N''2409'', 0, 17)
547INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (324, N''Dry-Standard'', N''Padmount IEC'', N''Cast coil'', N''DTIE-DXC135'', NULL, N''9AAC30400036'', N''2409'', 0, 18)
548INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (325, N''Dry-Standard'', N''Padmount IEC'', N''Resibloc'', N''DTIE-DXR135'', NULL, N''9AAC30400951'', N''2409'', 0, 18)
549INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (326, N''Dry-Standard'', N''Substation ANSI'', N''Cast coil'', N''DTAN-DXC144'', NULL, N''9AAC30400845'', N''2409'', 0, NULL)
550INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (327, N''Dry-Standard'', N''Substation ANSI'', N''Open wound'', N''DTAN-DXW144'', NULL, N''9AAC30400583'', N''2409'', 0, NULL)
551INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (328, N''Dry-Standard'', N''Substation ANSI'', N''Resibloc'', N''DTAN-DXR144'', NULL, N''9AAC30400061'', N''2409'', 0, NULL)
552INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (329, N''Dry-Standard'', N''Substation Primary Unit ANSI'', N''Cast coil'', N''DTAN-DXC145'', NULL, N''9AAC30400488'', N''2409'', 0, 26)
553INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (330, N''Dry-Standard'', N''Substation Primary Unit ANSI'', N''Open wound'', N''DTAN-DXW145'', NULL, N''9AAC30400629'', N''2409'', 0, 26)
554INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (331, N''Dry-Standard'', N''Substation Primary Unit ANSI'', N''Resibloc'', N''DTAN-DXR145'', NULL, N''9AAC30400362'', N''2409'', 0, 26)
555INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (332, N''Dry-Standard'', N''Substation Secondary Unit ANSI'', N''Cast coil'', N''DTAN-DXC146'', NULL, N''9AAC30400653'', N''2409'', 0, 27)
556
557INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (333, N''Dry-Standard'', N''Substation Secondary Unit ANSI'', N''Open wound'', N''DTAN-DXW146'', NULL, N''9AAC30400628'', N''2409'', 0, 27)
558INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (334, N''Dry-Standard'', N''Substation Secondary Unit ANSI'', N''Resibloc'', N''DTAN-DXR146'', NULL, N''9AAC30400031'', N''2409'', 0, 27)
559INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (335, N''Liquid-filled'', N''Adder'', N''LMPT - Price Revision'', N''PTXX-LX9999'', NULL, N''9AAF403471'', N''2408'', 0, NULL)
560INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (336, N''Liquid-filled'', N''Adder'', N''SPT - Price Revision'', N''PTXX-SX9999'', NULL, N''9AAF403469'', N''2404'', 0, NULL)
561INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (337, N''Liquid-filled'', N''Furnace'', N''<40 MVA'', N''DTSP-LXX119'', NULL, N''9AAC30400340'', N''2404'', 0, 9)
562INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (338, N''Liquid-filled'', N''Furnace'', N''<40 MVA'', N''DTSP-LXX126'', NULL, N''9AAC30400247'', N''2404'', 1, 9)
563INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (339, N''Liquid-filled'', N''Furnace'', N''AC >30 MVA'', N''PTAF-I1L602'', NULL, N''9AAC30400386'', N''2408'', 0, 9)
564INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (340, N''Liquid-filled'', N''Furnace'', N''AC >30 MVA'', N''PTAF-I1M601'', NULL, N''9AAC30400012'', N''2408'', 0, 9)
565INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (341, N''Liquid-filled'', N''Furnace'', N''AC >30 MVA'', N''PTAF-I3M604'', NULL, N''9AAC30400812'', N''2408'', 0, 9)
566INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (342, N''Liquid-filled'', N''Furnace'', N''AC >30 MVA'', N''PTAF-I3S603'', NULL, N''9AAC30400667'', N''2408'', 0, 9)
567INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (343, N''Liquid-filled'', N''Furnace'', N''DC >30 MVA'', N''DTSP-LXX120'', NULL, N''9AAC30400726'', N''2404'', 0, 9)
568INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (344, N''Liquid-filled'', N''Furnace'', N''DC >30 MVA'', N''PTAF-I1S600'', NULL, N''9AAC30400985'', N''2408'', 0, 9)
569INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (345, N''Liquid-filled'', N''Furnace'', N''DC >30 MVA'', N''PTAF-I3L605'', NULL, N''9AAC30400418'', N''2408'', 0, 9)
570INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (346, N''Liquid-filled'', N''Furnace'', N''DC >30 MVA'', N''PTDF-I1L608'', NULL, N''9AAC30400661'', N''2408'', 0, 9)
571INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (347, N''Liquid-filled'', N''Furnace'', N''DC >30 MVA'', N''PTDF-I1M607'', NULL, N''9AAC30400411'', N''2408'', 0, 9)
572INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (348, N''Liquid-filled'', N''Furnace'', N''DC >30 MVA'', N''PTDF-I1S606'', NULL, N''9AAC30400548'', N''2408'', 0, 9)
573INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (349, N''Liquid-filled'', N''Furnace'', N''DC >30 MVA'', N''PTDF-I3L611'', NULL, N''9AAC30400320'', N''2408'', 0, 9)
574INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (350, N''Liquid-filled'', N''Furnace'', N''DC >30 MVA'', N''PTDF-I3M610'', NULL, N''9AAC30400963'', N''2408'', 0, 9)
575INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (351, N''Liquid-filled'', N''Furnace'', N''DC >30 MVA'', N''PTDF-I3S609'', NULL, N''9AAC30400176'', N''2408'', 0, 9)
576INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (352, N''Liquid-filled'', N''Furnace'', N''New Arc Furnace AC >=40 MVA'', N''PTNIA-MX275'', NULL, N''9AAF402462'', N''2408'', 1, 9)
577INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (353, N''Liquid-filled'', N''Furnace'', N''New Arc Furnace DC >=40 MVA'', N''PTNID-MX275'', NULL, N''9AAF402466'', N''2408'', 1, 9)
578INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (354, N''Liquid-filled'', N''Furnace'', N''Replacement Arc Furnace AC >=40 MVA'', N''PTRIA-MX275'', NULL, N''9AAF402464'', N''2408'', 1, 9)
579INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (355, N''Liquid-filled'', N''Furnace'', N''Replacement Arc Furnace DC >=40 MVA'', N''PTRID-MX275'', NULL, N''9AAF402468'', N''2408'', 1, 9)
580INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (356, N''Liquid-filled'', N''Groundmount ANSI'', N''Three-phase >315kVA'', N''DTAN-L3M128'', NULL, N''9AAC30400079'', N''2401'', 1, 10)
581INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (357, N''Liquid-filled'', N''Groundmount ANSI'', N''Three-phase 10-63MVA'', N''DTAN-L3L128'', NULL, N''9AAC30400178'', N''2404'', 1, 10)
582INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (358, N''Liquid-filled'', N''Groundmount ANSI'', N''Three-phase 10-63MVA'', N''DTSP-L3M128'', NULL, N''9AAC30400255'', N''2404'', 0, 10)
583INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (359, N''Liquid-filled'', N''Groundmount IEC'', N''Single-phase <=100kVA'', N''DTIE-L1S128'', NULL, N''9AAC30405323'', N''2401'', 1, NULL)
584INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (360, N''Liquid-filled'', N''Groundmount IEC'', N''Single-phase >100kVA'', N''DTIE-L1M128'', NULL, N''9AAC30405322'', N''2401'', 1, NULL)
585INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (361, N''Liquid-filled'', N''Groundmount IEC'', N''Three-phase <=315kVA'', N''DTIE-L3S128'', NULL, N''9AAC30400745'', N''2401'', 1, NULL)
586INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (362, N''Liquid-filled'', N''Groundmount IEC'', N''Three-phase <=315kVA'', N''Steinkjer'', NULL, N''9AAF401122'', N''2401'', 1, NULL)
587INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (363, N''Liquid-filled'', N''Groundmount IEC'', N''Three-phase 2,5-10MVA'', N''DTIE-L3M144'', NULL, N''9AAC30400405'', N''2401'', 1, NULL)
588INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (364, N''Liquid-filled'', N''Groundmount IEC'', N''Three-phase 315-2500kVA'', N''DTIE-L3M128'', NULL, N''9AAC30400792'', N''2401'', 1, NULL)
589INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (365, N''Liquid-filled'', N''Groundmount IEC'', N''Three-phase 315-2500kVA'', N''Steinkjer'', NULL, N''9AAF401123'', N''2401'', 1, NULL)
590INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (366, N''Liquid-filled'', N''Groundmount Other'', N''<315kVA'', N''DTIE-L3S155'', NULL, N''9AAF403998'', N''2401'', 1, NULL)
591INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (367, N''Liquid-filled'', N''Groundmount Other'', N''>2499kVA'', N''DTIE-L3L155'', NULL, N''9AAF404002'', N''2401'', 1, NULL)
592INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (368, N''Liquid-filled'', N''Groundmount Other'', N''>315 <=2499kVA'', N''DTIE-L3M155'', NULL, N''9AAF404000'', N''2401'', 1, NULL)
593INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (369, N''Liquid-filled'', N''Groundmount Solar Applications'', N''>2499kVA'', N''DTIE-L3L156'', NULL, N''9AAF404007'', N''2401'', 1, NULL)
594INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (370, N''Liquid-filled'', N''Groundmount Solar Applications'', N''>315 <=2499kVA'', N''DTIE-L3M156'', NULL, N''9AAF404005'', N''2401'', 1, NULL)
595INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (371, N''Liquid-filled'', N''Groundmount Wind Applications'', N''>2499kVA'', N''DTIE-L3L157'', NULL, N''9AAF404249'', N''2401'', 1, NULL)
596INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (372, N''Liquid-filled'', N''Groundmount Wind Applications'', N''>315 <=2499kVA'', N''DTIE-L3M157'', NULL, N''9AAF404247'', N''2401'', 1, NULL)
597INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (373, N''Liquid-filled'', N''GSU'', N''<=171kV and <=25MVA'', N''PTXG-RX171'', NULL, N''9AAF401727'', N''2404'', 1, 11)
598INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (374, N''Liquid-filled'', N''GSU'', N''<=171kV and <=63MVA'', N''PTXG-SX171'', NULL, N''9AAF401729'', N''2404'', 1, 11)
599INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (375, N''Liquid-filled'', N''GSU'', N''<=72.5kV and <=25MVA'', N''PTXG-RX072'', NULL, N''9AAF401723'', N''2404'', 1, 11)
600INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (376, N''Liquid-filled'', N''GSU'', N''<=72.5kV and <=63MVA'', N''PTXG-SX072'', NULL, N''9AAF401725'', N''2404'', 1, 11)
601INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (377, N''Liquid-filled'', N''GSU'', N''10-63MVA <=170kV'', N''DTIE-L3L128'', NULL, N''9AAC30400903'', N''2404'', 0, 11)
602INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (378, N''Liquid-filled'', N''GSU'', N''New Single-phase <200MVA and <171kV'', N''PTNG-M1171'', NULL, N''9AAF401739'', N''2408'', 1, 11)
603INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (379, N''Liquid-filled'', N''GSU'', N''New Single-phase <200MVA and <275kV'', N''PTNG-M1275'', NULL, N''9AAF401741'', N''2408'', 1, 11)
604INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (380, N''Liquid-filled'', N''GSU'', N''New Single-phase >=200MVA and <380kV'', N''PTNG-L1380'', NULL, N''9AAF401763'', N''2408'', 1, 11)
605INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (381, N''Liquid-filled'', N''GSU'', N''New Single-phase >=200MVA and <440kV'', N''PTNG-L1440'', NULL, N''9AAF401765'', N''2408'', 1, 11)
606INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (382, N''Liquid-filled'', N''GSU'', N''New Single-phase >=200MVA and <600kV'', N''PTNG-L1600'', NULL, N''9AAF401767'', N''2408'', 1, 11)
607INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (383, N''Liquid-filled'', N''GSU'', N''New Single-phase >=200MVA and >=600kV'', N''PTNG-L1800'', NULL, N''9AAF401769'', N''2408'', 1, 11)
608INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (384, N''Liquid-filled'', N''GSU'', N''New Three-phase <200MVA and <171kV'', N''PTNG-M3171'', NULL, N''9AAF401731'', N''2408'', 1, 11)
609INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (385, N''Liquid-filled'', N''GSU'', N''New Three-phase <200MVA and <275kV'', N''PTNG-M3275'', NULL, N''9AAF401733'', N''2408'', 1, 11)
610INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (386, N''Liquid-filled'', N''GSU'', N''New Three-phase >=200MVA and <380kV'', N''PTNG-L3380'', NULL, N''9AAF401747'', N''2408'', 1, 11)
611INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (387, N''Liquid-filled'', N''GSU'', N''New Three-phase >=200MVA and <440kV'', N''PTNG-L3440'', NULL, N''9AAF401749'', N''2408'', 1, 11)
612INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (388, N''Liquid-filled'', N''GSU'', N''New Three-phase >=200MVA and <600kV'', N''PTNG-L3600'', NULL, N''9AAF401751'', N''2408'', 1, 11)
613INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (389, N''Liquid-filled'', N''GSU'', N''New Three-phase >=200MVA and >=600kV'', N''PTNG-L3800'', NULL, N''9AAF401753'', N''2408'', 1, 11)
614INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (390, N''Liquid-filled'', N''GSU'', N''Replacement Single-phase <200MVA and <171kV'', N''PTRG-M1171'', NULL, N''9AAF401743'', N''2408'', 1, 11)
615INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (391, N''Liquid-filled'', N''GSU'', N''Replacement Single-phase <200MVA and <275kV'', N''PTRG-M1275'', NULL, N''9AAF401745'', N''2408'', 1, 11)
616INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (392, N''Liquid-filled'', N''GSU'', N''Replacement Single-phase >=200MVA and <380kV'', N''PTRG-L1380'', NULL, N''9AAF401771'', N''2408'', 1, 11)
617INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (393, N''Liquid-filled'', N''GSU'', N''Replacement Single-phase >=200MVA and <440kV'', N''PTRG-L1440'', NULL, N''9AAF401773'', N''2408'', 1, 11)
618INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (394, N''Liquid-filled'', N''GSU'', N''Replacement Single-phase >=200MVA and <600kV'', N''PTRG-L1600'', NULL, N''9AAF401775'', N''2408'', 1, 11)
619INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (395, N''Liquid-filled'', N''GSU'', N''Replacement Single-phase >=200MVA and >=600kV'', N''PTRG-L1800'', NULL, N''9AAF401777'', N''2408'', 1, 11)
620INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (396, N''Liquid-filled'', N''GSU'', N''Replacement Three-phase <200MVA and <171kV'', N''PTRG-M3171'', NULL, N''9AAF401735'', N''2408'', 1, 11)
621INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (397, N''Liquid-filled'', N''GSU'', N''Replacement Three-phase <200MVA and <275kV'', N''PTRG-M3275'', NULL, N''9AAF401737'', N''2408'', 1, 11)
622INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (398, N''Liquid-filled'', N''GSU'', N''Replacement Three-phase >=200MVA and <380kV'', N''PTRG-L3380'', NULL, N''9AAF401755'', N''2408'', 1, 11)
623INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (399, N''Liquid-filled'', N''GSU'', N''Replacement Three-phase >=200MVA and <440kV'', N''PTRG-L3440'', NULL, N''9AAF401757'', N''2408'', 1, 11)
624INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (400, N''Liquid-filled'', N''GSU'', N''Replacement Three-phase >=200MVA and <600kV'', N''PTRG-L3600'', NULL, N''9AAF401759'', N''2408'', 1, 11)
625INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (401, N''Liquid-filled'', N''GSU'', N''Replacement Three-phase >=200MVA and >=600kV'', N''PTRG-L3800'', NULL, N''9AAF401761'', N''2408'', 1, 11)
626INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (402, N''Liquid-filled'', N''GSU'', N''Single-phase >200MVA or >275kV'', N''PTGS-P1L638'', NULL, N''9AAC30400495'', N''2408'', 0, 11)
627INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (403, N''Liquid-filled'', N''GSU'', N''Single-phase 63-200MVA <=275kV'', N''PTGS-P1M637'', NULL, N''9AAC30400067'', N''2408'', 0, 11)
628INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (404, N''Liquid-filled'', N''GSU'', N''Three-phase >200MVA or >275kV'', N''PTGS-P3L641'', NULL, N''9AAC30400590'', N''2408'', 0, 11)
629INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (405, N''Liquid-filled'', N''GSU'', N''Three-phase 63-200MVA <=275kV'', N''PTGS-P3M640'', NULL, N''9AAC30400052'', N''2408'', 0, 11)
630INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (406, N''Liquid-filled'', N''HVDC'', N''Kit'', N''PTDC-PXL654'', NULL, N''9AAF401137'', N''2408'', 0, 4)
631INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (407, N''Liquid-filled'', N''HVDC'', N''New'', N''PTNH-LX800'', NULL, N''9AAF401788'', N''2408'', 0, 4)
632INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (408, N''Liquid-filled'', N''HVDC'', N''New Classic'', N''PTNHC-LX800'', NULL, N''9AAF402470'', N''2408'', 1, 4)
633INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (409, N''Liquid-filled'', N''HVDC'', N''New Light'', N''PTNHL-LX800'', NULL, N''9AAF402474'', N''2408'', 1, 4)
634INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (410, N''Liquid-filled'', N''HVDC'', N''Replacement'', N''PTRH-LX800'', NULL, N''9AAF401790'', N''2408'', 0, 4)
635INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (411, N''Liquid-filled'', N''HVDC'', N''Replacement Classic'', N''PTRHC-LX800'', NULL, N''9AAF402472'', N''2408'', 1, 4)
636INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (412, N''Liquid-filled'', N''HVDC'', N''Replacement Light'', N''PTRHL-LX800'', NULL, N''9AAF402476'', N''2408'', 1, 4)
637INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (413, N''Liquid-filled'', N''HVDC'', N''Single-phase'', N''DTSP-LXX129'', NULL, N''9AAC30400349'', N''2404'', 0, 4)
638INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (414, N''Liquid-filled'', N''HVDC'', N''Single-phase'', N''PTDC-P1L650'', NULL, N''9AAC30400324'', N''2408'', 0, 4)
639INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (415, N''Liquid-filled'', N''HVDC'', N''Single-phase'', N''PTDC-P1M649'', NULL, N''9AAC30401002'', N''2408'', 0, 4)
640INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (416, N''Liquid-filled'', N''HVDC'', N''Single-phase'', N''PTDC-P1S648'', NULL, N''9AAC30400286'', N''2408'', 0, 4)
641INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (417, N''Liquid-filled'', N''HVDC'', N''Three-phase'', N''PTDC-P3L653'', NULL, N''9AAC30400368'', N''2408'', 0, 4)
642INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (418, N''Liquid-filled'', N''HVDC'', N''Three-phase'', N''PTDC-P3M652'', NULL, N''9AAC30400705'', N''2408'', 0, 4)
643INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (419, N''Liquid-filled'', N''HVDC'', N''Three-phase'', N''PTDC-P3S651'', NULL, N''9AAC30400306'', N''2408'', 0, 4)
644INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (420, N''Liquid-filled'', N''Industrial'', N''New <171 kV'', N''PTNI-MX171'', NULL, N''9AAF401780'', N''2408'', 0, 5)
645INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (421, N''Liquid-filled'', N''Industrial'', N''New <275 kV'', N''PTNI-MX275'', NULL, N''9AAF401782'', N''2408'', 0, 5)
646INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (422, N''Liquid-filled'', N''Industrial'', N''Replacement <171 kV'', N''PTRI-MX171'', NULL, N''9AAF401784'', N''2408'', 0, 5)
647INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (423, N''Liquid-filled'', N''Industrial'', N''Replacement <275 kV'', N''PTRI-MX275'', NULL, N''9AAF401786'', N''2408'', 0, 5)
648INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (424, N''Liquid-filled'', N''Marine Distribution'', N''DTSP-LXX131'', NULL, NULL, N''9AAC30400461'', N''2404'', 0, 12)
649INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (425, N''Liquid-filled'', N''Marine Propulsion'', N''DTSP-LXX132'', NULL, NULL, N''9AAC30400452'', N''2404'', 0, 13)
650INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (426, N''Liquid-filled'', N''Mobile'', N''<=171kV and <=25MVA'', N''PTXM-RX171'', NULL, N''9AAF401796'', N''2404'', 1, 14)
651INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (427, N''Liquid-filled'', N''Mobile'', N''<=171kV and <=63MVA'', N''PTXM-SX171'', NULL, N''9AAF401798'', N''2404'', 1, 14)
652INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (428, N''Liquid-filled'', N''Mobile'', N''<=72.5kV and <=25MVA'', N''PTXM-RX072'', NULL, N''9AAF401792'', N''2404'', 1, 14)
653INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (429, N''Liquid-filled'', N''Mobile'', N''<=72.5kV and <=63MVA'', N''PTXM-SX072'', NULL, N''9AAF401794'', N''2404'', 1, 14)
654INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (430, N''Liquid-filled'', N''Mobile'', N''10-63MVA <=170kV'', N''DTSP-LXX147'', NULL, N''9AAC30400399'', N''2404'', 0, 14)
655INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (431, N''Liquid-filled'', N''Multi-ratio Generator Aggregate'', N''DTSP-LXX168'', NULL, NULL, N''9AAF405132'', N''2404'', 1, 33)
656INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (432, N''Liquid-filled'', N''Network'', N''Single-phase 10-63MVA <=170kV'', N''DTSP-LXX127'', NULL, N''9AAC30400157'', N''2404'', 0, 15)
657
658INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (433, N''Liquid-filled'', N''Network'', N''Type-A'', N''DTAN-LXX133'', NULL, N''9AAC30400771'', N''2401'', 1, 15)
659INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (434, N''Liquid-filled'', N''Network'', N''Type-B'', N''DTAN-LXX134'', NULL, N''9AAC30400381'', N''2401'', 1, 15)
660INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (435, N''Liquid-filled'', N''Other Industrial'', N''PTRI-I3M664'', NULL, NULL, N''9AAC30400144'', N''2408'', 0, 16)
661INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (436, N''Liquid-filled'', N''Other Special'', N''DTSP-LXX167'', NULL, NULL, N''9AAF405088'', N''2404'', 1, 35)
662INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (437, N''Liquid-filled'', N''Padmount ANSI'', N''<=72.5kV and <=25MVA'', N''DTAN-L3L135'', NULL, N''9AAC30400456'', N''2404'', 1, 17)
663INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (438, N''Liquid-filled'', N''Padmount ANSI'', N''Single-phase <=100kVA'', N''DTAN-L1S135'', NULL, N''9AAC30400441'', N''2401'', 1, 17)
664INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (439, N''Liquid-filled'', N''Padmount ANSI'', N''Single-phase >100kVA'', N''DTAN-L1M135'', NULL, N''9AAC30400964'', N''2401'', 1, 17)
665INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (440, N''Liquid-filled'', N''Padmount ANSI'', N''Three-phase <=750kVA'', N''DTAN-L3S135'', NULL, N''9AAC30400147'', N''2401'', 1, 17)
666INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (441, N''Liquid-filled'', N''Padmount ANSI'', N''Three-phase >750kVA'', N''DTAN-L3M135'', NULL, N''9AAC30400623'', N''2401'', 1, 17)
667INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (442, N''Liquid-filled'', N''Padmount IEC'', N''Single-phase <=100kVA'', N''DTIE-L1S135'', NULL, N''9AAC30400458'', N''2401'', 1, 18)
668INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (443, N''Liquid-filled'', N''Padmount IEC'', N''Single-phase >100kVA'', N''DTIE-L1M135'', NULL, N''9AAC30400033'', N''2401'', 1, 18)
669INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (444, N''Liquid-filled'', N''Padmount IEC'', N''Three-phase <=315kVA'', N''DTIE-L3S135'', NULL, N''9AAC30400852'', N''2401'', 1, 18)
670INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (445, N''Liquid-filled'', N''Padmount IEC'', N''Three-phase >315kVA'', N''DTIE-L3M135'', NULL, N''9AAC30400908'', N''2401'', 1, 18)
671INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (446, N''Liquid-filled'', N''Padmount IEC'', N''Three-phase 10-63MVA'', N''DTIE-L3L135'', NULL, N''9AAC30400197'', N''2404'', 0, 18)
672INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (447, N''Liquid-filled'', N''Padmount Other'', N''<315kVA'', N''DTAN-L3S158'', NULL, N''9AAF404013'', N''2401'', 1, NULL)
673INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (448, N''Liquid-filled'', N''Padmount Other'', N''>315 <=2499kVA'', N''DTAN-L3M158'', NULL, N''9AAF404015'', N''2401'', 1, NULL)
674INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (449, N''Liquid-filled'', N''Padmount Other'', N''Single-phase'', N''DTAN-L1X158'', NULL, N''9AAF404011'', N''2401'', 1, NULL)
675INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (450, N''Liquid-filled'', N''Phase Shifter'', N''New'', N''PTNP-LX800'', NULL, N''9AAF401800'', N''2408'', 0, 8)
676INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (451, N''Liquid-filled'', N''Phase Shifter'', N''New <250 MVA'', N''PTNPS-LX800'', NULL, N''9AAF402482'', N''2408'', 1, 8)
677INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (452, N''Liquid-filled'', N''Phase Shifter'', N''New >=250 MVA'', N''PTNPL-LX800'', NULL, N''9AAF402478'', N''2408'', 1, 8)
678INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (453, N''Liquid-filled'', N''Phase Shifter'', N''Replacement'', N''PTRP-LX800'', NULL, N''9AAF401802'', N''2408'', 0, 8)
679INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (454, N''Liquid-filled'', N''Phase Shifter'', N''Replacement <250 MVA'', N''PTRPS-LX800'', NULL, N''9AAF402484'', N''2408'', 1, 8)
680INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (455, N''Liquid-filled'', N''Phase Shifter'', N''Replacement >= 250 MVA'', N''PTRPL-LX800'', NULL, N''9AAF402480'', N''2408'', 1, 8)
681INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (456, N''Liquid-filled'', N''Phase Shifter'', N''Single-phase'', N''PTPS-M3L659'', NULL, N''9AAC30400253'', N''2408'', 0, 8)
682INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (457, N''Liquid-filled'', N''Phase Shifter'', N''Single-phase'', N''PTPS-M3M658'', NULL, N''9AAC30400831'', N''2408'', 0, 8)
683INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (458, N''Liquid-filled'', N''Phase Shifter'', N''Single-phase'', N''PTPS-M3S657'', NULL, N''9AAC30400364'', N''2408'', 0, 8)
684INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (459, N''Liquid-filled'', N''Phase Shifter'', N''Three-phase'', N''PTPS-S3L656'', NULL, N''9AAC30400224'', N''2408'', 0, 8)
685INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (460, N''Liquid-filled'', N''Phase Shifter'', N''Three-phase'', N''PTPS-S3M655'', NULL, N''9AAC30400639'', N''2408'', 0, 8)
686INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (461, N''Liquid-filled'', N''Phase Shifter'', N''Three-phase'', N''PTPS-S3S654'', NULL, N''9AAC30400591'', N''2408'', 0, 8)
687INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (462, N''Liquid-filled'', N''Polemount ANSI'', N''Single-phase <=100kVA'', N''DTAN-L1S137'', NULL, N''9AAC30400664'', N''2401'', 1, NULL)
688INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (463, N''Liquid-filled'', N''Polemount ANSI'', N''Single-phase >100kVA'', N''DTAN-L1M137'', NULL, N''9AAC30400028'', N''2401'', 1, NULL)
689INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (464, N''Liquid-filled'', N''Polemount ANSI'', N''Three-phase <=315kVA'', N''DTAN-L3S137'', NULL, N''9AAC30400474'', N''2401'', 1, NULL)
690INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (465, N''Liquid-filled'', N''Polemount ANSI'', N''Three-phase >315kVA'', N''DTAN-L3M137'', NULL, N''9AAC30400592'', N''2401'', 0, NULL)
691INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (466, N''Liquid-filled'', N''Polemount IEC'', N''Single-phase <=100kVA'', N''DTIE-L1S137'', NULL, N''9AAC30400308'', N''2401'', 1, NULL)
692INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (467, N''Liquid-filled'', N''Polemount IEC'', N''Single-phase >100kVA'', N''DTIE-L1M137'', NULL, N''9AAC30400219'', N''2401'', 1, NULL)
693INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (468, N''Liquid-filled'', N''Polemount IEC'', N''Three-phase <=315kVA'', N''DTIE-L3S137'', NULL, N''9AAC30400674'', N''2401'', 1, NULL)
694INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (469, N''Liquid-filled'', N''Polemount IEC'', N''Three-phase >315kVA'', N''DTIE-L3M137'', NULL, N''9AAC30400865'', N''2401'', 1, NULL)
695INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (470, N''Liquid-filled'', N''Polemount Other'', N''<315kVA'', N''DTAN-L3S159'', NULL, N''9AAF404020'', N''2401'', 1, NULL)
696INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (471, N''Liquid-filled'', N''Polemount Other'', N''>315 <=2499kVA'', N''DTAN-L3S160'', NULL, N''9AAF404022'', N''2401'', 1, NULL)
697INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (472, N''Liquid-filled'', N''Polemount Other'', N''Single-phase'', N''DTAN-L1X159'', NULL, N''9AAF404018'', N''2401'', 1, NULL)
698INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (473, N''Liquid-filled'', N''Railway'', N''Booster'', N''DTSP-LXX122'', NULL, N''9AAC30400986'', N''2404'', 1, 19)
699INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (474, N''Liquid-filled'', N''Railway'', N''Double Deck EMU'', N''PPTR-P1S673'', NULL, N''9AAF401806'', N''2404'', 1, 19)
700INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (475, N''Liquid-filled'', N''Railway'', N''Double Deck EMU'', N''PTTR-P1M673'', NULL, N''9AAC30400509'', N''2404'', 0, 19)
701INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (476, N''Liquid-filled'', N''Railway'', N''EMU'', N''PTTR-P1S672'', NULL, N''9AAC30400348'', N''2404'', 1, 19)
702INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (477, N''Liquid-filled'', N''Railway'', N''High Speed Train'', N''PPTR-P1S675'', NULL, N''9AAF401808'', N''2404'', 1, 19)
703INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (478, N''Liquid-filled'', N''Railway'', N''Locomotive'', N''PPTR-P1S674'', NULL, N''9AAF401804'', N''2404'', 1, 19)
704INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (479, N''Liquid-filled'', N''Railway'', N''Locomotive'', N''PTTR-P1L674'', NULL, N''9AAC30400276'', N''2404'', 0, 19)
705INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (480, N''Liquid-filled'', N''Railway'', N''Rail Track'', N''DTSP-LXX138'', NULL, N''9AAC30400736'', N''2404'', 1, 19)
706INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (481, N''Liquid-filled'', N''Railway'', N''Rail Track'', N''DTSP-LXX148'', NULL, N''9AAC30400185'', N''2404'', 0, 19)
707INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (482, N''Liquid-filled'', N''Railway'', N''Rail Track'', N''DTSP-LXX150'', NULL, N''9AAC30400731'', N''2404'', 0, 19)
708INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (483, N''Liquid-filled'', N''Railway'', N''Rail Track Auto'', N''DTSP-LXX149'', NULL, N''9AAC30400990'', N''2404'', 1, 19)
709INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (484, N''Liquid-filled'', N''Rectifier'', N''<25 MVA (6 pulse) or <40 MVA (12 pulse)'', N''DTSP-LXX139'', NULL, N''9AAC30400366'', N''2404'', 1, 20)
710INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (485, N''Liquid-filled'', N''Rectifier'', N''<25 MVA (6 pulse) or <40 MVA (12 pulse)'', N''DTSP-LXX140'', NULL, N''9AAC30400515'', N''2404'', 0, 20)
711INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (486, N''Liquid-filled'', N''Rectifier'', N''<25 MVA (6 pulse) or <40 MVA (12 pulse)'', N''DTSP-LXX141'', NULL, N''9AAC30400893'', N''2404'', 0, 20)
712INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (487, N''Liquid-filled'', N''Rectifier'', N''>25kA'', N''PTRB-I3L662'', NULL, N''9AAC30400212'', N''2408'', 0, 20)
713INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (488, N''Liquid-filled'', N''Rectifier'', N''>25kA'', N''PTRB-I3M661'', NULL, N''9AAC30400334'', N''2408'', 0, 20)
714INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (489, N''Liquid-filled'', N''Rectifier'', N''>25kA'', N''PTRB-I3S660'', NULL, N''9AAC30400284'', N''2408'', 0, 20)
715INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (490, N''Liquid-filled'', N''Rectifier'', N''>25kA'', N''PTRI-I3L665'', NULL, N''9AAC30400187'', N''2408'', 0, 20)
716INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (491, N''Liquid-filled'', N''Rectifier'', N''>25kA'', N''PTRI-I3S663'', NULL, N''9AAC30400491'', N''2408'', 0, 20)
717INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (492, N''Liquid-filled'', N''Rectifier'', N''New >25 MVA (6 pulse) or >40 MVA (12 pulse)'', N''PTNIR-MX275'', NULL, N''9AAF402486'', N''2408'', 1, 20)
718INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (493, N''Liquid-filled'', N''Rectifier'', N''Replacement >25 MVA (6 pulse) or >40 MVA (12 puls'', N''PTRIR-MX275'', NULL, N''9AAF402488'', N''2408'', 1, 20)
719INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (494, N''Liquid-filled'', N''Regulating'', N''New'', N''PTNIX-MX275'', NULL, N''9AAF402491'', N''2408'', 1, 21)
720INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (495, N''Liquid-filled'', N''Regulating'', N''Replacement'', N''PTRIX-MX275'', NULL, N''9AAF402493'', N''2408'', 1, 21)
721INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (496, N''Liquid-filled'', N''Shell'', N''New <380kV'', N''PTNS-LX380'', NULL, N''9AAF402495'', N''2408'', 1, 22)
722INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (497, N''Liquid-filled'', N''Shell'', N''New <440kV'', N''PTNS-LX440'', NULL, N''9AAF402499'', N''2408'', 1, 22)
723INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (498, N''Liquid-filled'', N''Shell'', N''New <600kV'', N''PTNS-LX600'', NULL, N''9AAF402503'', N''2408'', 1, 22)
724INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (499, N''Liquid-filled'', N''Shell'', N''New >=600kV'', N''PTNS-LX800'', NULL, N''9AAF402507'', N''2408'', 1, 22)
725INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (500, N''Liquid-filled'', N''Shell'', N''Replacement <380kV'', N''PTRS-LX380'', NULL, N''9AAF402497'', N''2408'', 1, 22)
726INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (501, N''Liquid-filled'', N''Shell'', N''Replacement <440kV'', N''PTRS-LX440'', NULL, N''9AAF402501'', N''2408'', 1, 22)
727INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (502, N''Liquid-filled'', N''Shell'', N''Replacement <600kV'', N''PTRS-LX600'', NULL, N''9AAF402505'', N''2408'', 1, 22)
728INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (503, N''Liquid-filled'', N''Shell'', N''Replacement >=600kV'', N''PTRS-LX800'', NULL, N''9AAF402509'', N''2408'', 1, 22)
729INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (504, N''Liquid-filled'', N''Shell'', N''Single-phase'', N''PTSF-P1L668'', NULL, N''9AAC30400598'', N''2408'', 0, 22)
730INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (505, N''Liquid-filled'', N''Shell'', N''Single-phase'', N''PTSF-P1M667'', NULL, N''9AAC30400648'', N''2408'', 0, 22)
731INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (506, N''Liquid-filled'', N''Shell'', N''Three-phase'', N''PTSF-P3L671'', NULL, N''9AAC30400451'', N''2408'', 0, 22)
732INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (507, N''Liquid-filled'', N''Shell'', N''Three-phase'', N''PTSF-P3M670'', NULL, N''9AAC30400837'', N''2408'', 0, 22)
733INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (508, N''Liquid-filled'', N''Subsea'', N''DTSP-LXX125'', NULL, NULL, N''9AAC30400706'', N''2404'', 1, 23)
734INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (509, N''Liquid-filled'', N''Subsea'', N''DTSP-LXX130'', NULL, NULL, N''9AAC30400716'', N''2404'', 0, 23)
735INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (510, N''Liquid-filled'', N''Subsea'', N''DTSP-LXX136'', NULL, NULL, N''9AAC30400563'', N''2404'', 0, 23)
736INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (511, N''Liquid-filled'', N''Subsea'', N''DTSP-LXX142'', NULL, NULL, N''9AAC30400897'', N''2404'', 0, 23)
737INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (512, N''Liquid-filled'', N''Subsea'', N''DTSP-LXX143'', NULL, NULL, N''9AAC30400688'', N''2404'', 0, 23)
738INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (513, N''Liquid-filled'', N''Substation ANSI'', N''Single-phase <=100kVA'', N''DTAN-L1S144'', NULL, N''9AAC30401302'', N''2401'', 1, NULL)
739INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (514, N''Liquid-filled'', N''Substation ANSI'', N''Single-phase >100kVA'', N''DTAN-L1M144'', NULL, N''9AAC30401301'', N''2401'', 1, NULL)
740INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (515, N''Liquid-filled'', N''Substation ANSI'', N''Three-phase <=315kVA'', N''DTAN-L3S144'', NULL, N''9AAC30401303'', N''2401'', 0, NULL)
741INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (516, N''Liquid-filled'', N''Substation ANSI'', N''Three-phase >315kVA'', N''DTAN-L3M144'', NULL, N''9AAC30400426'', N''2401'', 0, NULL)
742INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (517, N''Liquid-filled'', N''Substation Auto'', N''<=171kV and <=63MVA'', N''PTXA-SX171'', NULL, N''9AAF401810'', N''2404'', 1, 24)
743INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (518, N''Liquid-filled'', N''Substation Auto'', N''10-63 MVA <=170kV'', N''DTSP-LXX121'', NULL, N''9AAC30400928'', N''2404'', 0, 24)
744INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (519, N''Liquid-filled'', N''Substation Auto'', N''New Single-phase <200MVA and <171kV'', N''PTNA-M1171'', NULL, N''9AAF401820'', N''2408'', 1, 24)
745INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (520, N''Liquid-filled'', N''Substation Auto'', N''New Single-phase <200MVA and <275kV'', N''PTNA-M1275'', NULL, N''9AAF401822'', N''2408'', 1, 24)
746INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (521, N''Liquid-filled'', N''Substation Auto'', N''New Single-phase >=200MVA and <380kV'', N''PTNA-L1380'', NULL, N''9AAF401844'', N''2408'', 1, 24)
747INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (522, N''Liquid-filled'', N''Substation Auto'', N''New Single-phase >=200MVA and <440kV'', N''PTNA-L1440'', NULL, N''9AAF401846'', N''2408'', 1, 24)
748INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (523, N''Liquid-filled'', N''Substation Auto'', N''New Single-phase >=200MVA and <600kV'', N''PTNA-L1600'', NULL, N''9AAF401848'', N''2408'', 1, 24)
749INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (524, N''Liquid-filled'', N''Substation Auto'', N''New Single-phase >=200MVA and >=600kV'', N''PTNA-L1800'', NULL, N''9AAF401850'', N''2408'', 1, 24)
750INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (525, N''Liquid-filled'', N''Substation Auto'', N''New Three-phase <200MVA and <171kV'', N''PTNA-M3171'', NULL, N''9AAF401812'', N''2408'', 1, 24)
751INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (526, N''Liquid-filled'', N''Substation Auto'', N''New Three-phase <200MVA and <275kV'', N''PTNA-M3275'', NULL, N''9AAF401814'', N''2408'', 1, 24)
752INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (527, N''Liquid-filled'', N''Substation Auto'', N''New Three-phase >=200MVA and <380kV'', N''PTNA-L3380'', NULL, N''9AAF401828'', N''2408'', 1, 24)
753INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (528, N''Liquid-filled'', N''Substation Auto'', N''New Three-phase >=200MVA and <440kV'', N''PTNA-L3440'', NULL, N''9AAF401830'', N''2408'', 1, 24)
754INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (529, N''Liquid-filled'', N''Substation Auto'', N''New Three-phase >=200MVA and <600kV'', N''PTNA-L3600'', NULL, N''9AAF401832'', N''2408'', 1, 24)
755INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (530, N''Liquid-filled'', N''Substation Auto'', N''New Three-phase >=200MVA and >=600kV'', N''PTNA-L3800'', NULL, N''9AAF401834'', N''2408'', 1, 24)
756INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (531, N''Liquid-filled'', N''Substation Auto'', N''Replacement Single-phase <200MVA and <171kV'', N''PTRA-M1171'', NULL, N''9AAF401824'', N''2408'', 1, 24)
757INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (532, N''Liquid-filled'', N''Substation Auto'', N''Replacement Single-phase <200MVA and <275kV'', N''PTRA-M1275'', NULL, N''9AAF401826'', N''2408'', 1, 24)
758
759INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (533, N''Liquid-filled'', N''Substation Auto'', N''Replacement Single-phase >=200MVA and <380kV'', N''PTRA-L1380'', NULL, N''9AAF401852'', N''2408'', 1, 24)
760INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (534, N''Liquid-filled'', N''Substation Auto'', N''Replacement Single-phase >=200MVA and <440kV'', N''PTRA-L1440'', NULL, N''9AAF401854'', N''2408'', 1, 24)
761INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (535, N''Liquid-filled'', N''Substation Auto'', N''Replacement Single-phase >=200MVA and <600kV'', N''PTRA-L1600'', NULL, N''9AAF401856'', N''2408'', 1, 24)
762INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (536, N''Liquid-filled'', N''Substation Auto'', N''Replacement Single-phase >=200MVA and >=600kV'', N''PTRA-L1800'', NULL, N''9AAF401858'', N''2408'', 1, 24)
763INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (537, N''Liquid-filled'', N''Substation Auto'', N''Replacement Three-phase <200MVA and <171kV'', N''PTRA-M3171'', NULL, N''9AAF401816'', N''2408'', 1, 24)
764INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (538, N''Liquid-filled'', N''Substation Auto'', N''Replacement Three-phase <200MVA and <275kV'', N''PTRA-M3275'', NULL, N''9AAF401818'', N''2408'', 1, 24)
765INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (539, N''Liquid-filled'', N''Substation Auto'', N''Replacement Three-phase >=200MVA and <380kV'', N''PTRA-L3380'', NULL, N''9AAF401836'', N''2408'', 1, 24)
766INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (540, N''Liquid-filled'', N''Substation Auto'', N''Replacement Three-phase >=200MVA and <440kV'', N''PTRA-L3440'', NULL, N''9AAF401838'', N''2408'', 1, 24)
767INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (541, N''Liquid-filled'', N''Substation Auto'', N''Replacement Three-phase >=200MVA and <600kV'', N''PTRA-L3600'', NULL, N''9AAF401840'', N''2408'', 1, 24)
768INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (542, N''Liquid-filled'', N''Substation Auto'', N''Replacement Three-phase >=200MVA and >=600kV'', N''PTRA-L3800'', NULL, N''9AAF401842'', N''2408'', 1, 24)
769INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (543, N''Liquid-filled'', N''Substation Auto'', N''Single-phase >200MVA or >275kV'', N''PTAU-P1L614'', NULL, N''9AAC30400892'', N''2408'', 0, 24)
770INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (544, N''Liquid-filled'', N''Substation Auto'', N''Single-phase 63-200MVA <=275kV'', N''PTAU-P1M613'', NULL, N''9AAC30400741'', N''2408'', 0, 24)
771INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (545, N''Liquid-filled'', N''Substation Auto'', N''Single-phase 63-200MVA <=275kV'', N''PTAU-P1S612'', NULL, N''9AAC30400714'', N''2408'', 0, 24)
772INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (546, N''Liquid-filled'', N''Substation Auto'', N''Three-phase >200MVA or >275kV'', N''PTAU-P3L617'', NULL, N''9AAC30400103'', N''2408'', 0, 24)
773INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (547, N''Liquid-filled'', N''Substation Auto'', N''Three-phase >200MVA or >275kV'', N''PTAU-P3S615'', NULL, N''9AAC30400640'', N''2408'', 0, 24)
774INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (548, N''Liquid-filled'', N''Substation Auto'', N''Three-phase 63-200MVA <=275kV'', N''PTAU-P3M616'', NULL, N''9AAC30400974'', N''2408'', 0, 24)
775INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (549, N''Liquid-filled'', N''Substation Non-Auto'', N''<=171kV and <=25MVA'', N''PTXN-RX171'', NULL, N''9AAF401864'', N''2404'', 1, 25)
776INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (550, N''Liquid-filled'', N''Substation Non-Auto'', N''<=171kV and <=63MVA'', N''PTXN-SX171'', NULL, N''9AAF401866'', N''2404'', 1, 25)
777INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (551, N''Liquid-filled'', N''Substation Non-Auto'', N''<=72.5kV and <=25MVA'', N''PTXN-RX072'', NULL, N''9AAF401860'', N''2404'', 1, 25)
778INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (552, N''Liquid-filled'', N''Substation Non-Auto'', N''<=72.5kV and <=63MVA'', N''PTXN-SX072'', NULL, N''9AAF401862'', N''2404'', 1, 25)
779INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (553, N''Liquid-filled'', N''Substation Non-Auto'', N''New Single-phase <200MVA and <171kV'', N''PTNN-M1171'', NULL, N''9AAF401876'', N''2408'', 1, 25)
780INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (554, N''Liquid-filled'', N''Substation Non-Auto'', N''New Single-phase <200MVA and <275kV'', N''PTNN-M1275'', NULL, N''9AAF401878'', N''2408'', 1, 25)
781INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (555, N''Liquid-filled'', N''Substation Non-Auto'', N''New Single-phase >=200MVA and <380kV'', N''PTNN-L1380'', NULL, N''9AAF401900'', N''2408'', 1, 25)
782INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (556, N''Liquid-filled'', N''Substation Non-Auto'', N''New Single-phase >=200MVA and <440kV'', N''PTNN-L1440'', NULL, N''9AAF401902'', N''2408'', 1, 25)
783INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (557, N''Liquid-filled'', N''Substation Non-Auto'', N''New Single-phase >=200MVA and <600kV'', N''PTNN-L1600'', NULL, N''9AAF401904'', N''2408'', 1, 25)
784INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (558, N''Liquid-filled'', N''Substation Non-Auto'', N''New Single-phase >=200MVA and >=600kV'', N''PTNN-L1800'', NULL, N''9AAF401906'', N''2408'', 1, 25)
785INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (559, N''Liquid-filled'', N''Substation Non-Auto'', N''New Three-phase <200MVA and <171kV'', N''PTNN-M3171'', NULL, N''9AAF401868'', N''2408'', 1, 25)
786INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (560, N''Liquid-filled'', N''Substation Non-Auto'', N''New Three-phase <200MVA and <275kV'', N''PTNN-M3275'', NULL, N''9AAF401870'', N''2408'', 1, 25)
787INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (561, N''Liquid-filled'', N''Substation Non-Auto'', N''New Three-phase >=200MVA and <380kV'', N''PTNN-L3380'', NULL, N''9AAF401884'', N''2408'', 1, 25)
788INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (562, N''Liquid-filled'', N''Substation Non-Auto'', N''New Three-phase >=200MVA and <440kV'', N''PTNN-L3440'', NULL, N''9AAF401886'', N''2408'', 1, 25)
789INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (563, N''Liquid-filled'', N''Substation Non-Auto'', N''New Three-phase >=200MVA and <600kV'', N''PTNN-L3600'', NULL, N''9AAF401888'', N''2408'', 1, 25)
790INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (564, N''Liquid-filled'', N''Substation Non-Auto'', N''New Three-phase >=200MVA and >=600kV'', N''PTNN-L3800'', NULL, N''9AAF401890'', N''2408'', 1, 25)
791INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (565, N''Liquid-filled'', N''Substation Non-Auto'', N''Replacement Single-phase <200MVA and <171kV'', N''PTRN-M1171'', NULL, N''9AAF401880'', N''2408'', 1, 25)
792INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (566, N''Liquid-filled'', N''Substation Non-Auto'', N''Replacement Single-phase <200MVA and <275kV'', N''PTRN-M1275'', NULL, N''9AAF401882'', N''2408'', 1, 25)
793INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (567, N''Liquid-filled'', N''Substation Non-Auto'', N''Replacement Single-phase >=200MVA and <380kV'', N''PTRN-L1380'', NULL, N''9AAF401908'', N''2408'', 1, 25)
794INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (568, N''Liquid-filled'', N''Substation Non-Auto'', N''Replacement Single-phase >=200MVA and <440kV'', N''PTRN-L1440'', NULL, N''9AAF401910'', N''2408'', 1, 25)
795INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (569, N''Liquid-filled'', N''Substation Non-Auto'', N''Replacement Single-phase >=200MVA and <600kV'', N''PTRN-L1600'', NULL, N''9AAF401912'', N''2408'', 1, 25)
796INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (570, N''Liquid-filled'', N''Substation Non-Auto'', N''Replacement Single-phase >=200MVA and >=600kV'', N''PTRN-L1800'', NULL, N''9AAF401914'', N''2408'', 1, 25)
797INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (571, N''Liquid-filled'', N''Substation Non-Auto'', N''Replacement Three-phase <200MVA and <171kV'', N''PTRN-M3171'', NULL, N''9AAF401872'', N''2408'', 1, 25)
798INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (572, N''Liquid-filled'', N''Substation Non-Auto'', N''Replacement Three-phase <200MVA and <275kV'', N''PTRN-M3275'', NULL, N''9AAF401874'', N''2408'', 1, 25)
799INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (573, N''Liquid-filled'', N''Substation Non-Auto'', N''Replacement Three-phase >=200MVA and <380kV'', N''PTRN-L3380'', NULL, N''9AAF401892'', N''2408'', 1, 25)
800INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (574, N''Liquid-filled'', N''Substation Non-Auto'', N''Replacement Three-phase >=200MVA and <440kV'', N''PTRN-L3440'', NULL, N''9AAF401894'', N''2408'', 1, 25)
801INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (575, N''Liquid-filled'', N''Substation Non-Auto'', N''Replacement Three-phase >=200MVA and <600kV'', N''PTRN-L3600'', NULL, N''9AAF401896'', N''2408'', 1, 25)
802INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (576, N''Liquid-filled'', N''Substation Non-Auto'', N''Replacement Three-phase >=200MVA and >=600kV'', N''PTRN-L3800'', NULL, N''9AAF401898'', N''2408'', 1, 25)
803INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (577, N''Liquid-filled'', N''Substation Non-Auto'', N''Single-phase >200MVA or >275kV'', N''PTFU-P1L626'', NULL, N''9AAC30400905'', N''2408'', 0, 25)
804INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (578, N''Liquid-filled'', N''Substation Non-Auto'', N''Single-phase 63-200MVA <=275kV'', N''PTFU-P1M625'', NULL, N''9AAC30400689'', N''2408'', 0, 25)
805INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (579, N''Liquid-filled'', N''Substation Non-Auto'', N''Three-phase >200MVA or >275kV'', N''PTFU-P3L629'', NULL, N''9AAC30400606'', N''2408'', 0, 25)
806INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (580, N''Liquid-filled'', N''Substation Non-Auto'', N''Three-phase 10-63MVA <=170kV ANSI'', N''DTAN-L3L144'', NULL, N''9AAC30400337'', N''2404'', 0, 25)
807INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (581, N''Liquid-filled'', N''Substation Non-Auto'', N''Three-phase 10-63MVA <=170kV IEC'', N''DTIE-L3L144'', NULL, N''9AAC30400221'', N''2404'', 0, 25)
808INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (582, N''Liquid-filled'', N''Substation Non-Auto'', N''Three-phase 63-200MVA <=275kV'', N''PTFU-P3M628'', NULL, N''9AAC30400272'', N''2408'', 0, 25)
809INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (583, N''Liquid-filled'', N''Substation Other'', N''Single-phase'', N''DTSP-LXX162'', NULL, N''9AAF404025'', N''2401'', 1, NULL)
810INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (584, N''Liquid-filled'', N''Substation Primary Unit ANSI'', N''Single phase <=100kVA'', N''DTAN-L1S145'', NULL, N''9AAC30401305'', N''2401'', 0, 26)
811INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (585, N''Liquid-filled'', N''Substation Primary Unit ANSI'', N''Single phase >100kVA'', N''DTAN-L1M145'', NULL, N''9AAC30401304'', N''2401'', 0, 26)
812INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (586, N''Liquid-filled'', N''Substation Primary Unit ANSI'', N''Three-phase <=10MVA'', N''DTAN-L3M145'', NULL, N''9AAC30400274'', N''2401'', 1, 26)
813INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (587, N''Liquid-filled'', N''Substation Primary Unit ANSI'', N''Three-phase 10-63MVA <=170 kV'', N''DTAN-L3L145'', NULL, N''9AAC30400759'', N''2404'', 0, 26)
814INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (588, N''Liquid-filled'', N''Substation Secondary Unit ANSI'', N''Single-phase <=100kVA'', N''DTAN-L1S146'', NULL, N''9AAC30401307'', N''2401'', 0, 27)
815INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (589, N''Liquid-filled'', N''Substation Secondary Unit ANSI'', N''Single-phase >100kVA'', N''DTAN-L1M146'', NULL, N''9AAC30401306'', N''2401'', 0, 27)
816INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (590, N''Liquid-filled'', N''Substation Secondary Unit ANSI'', N''Three-phase <=10MVA'', N''DTAN-L3M146'', NULL, N''9AAC30400228'', N''2401'', 1, 27)
817INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (591, N''Liquid-filled'', N''Substation Secondary Unit ANSI'', N''Three-phase 10-63MVA <=170kV'', N''DTAN-L3L146'', NULL, N''9AAC30400973'', N''2404'', 0, 27)
818INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (592, N''Liquid-filled'', N''Sub-surface'', N''Single-phase'', N''DTAN-L1S153'', NULL, N''9AAF401092'', N''2401'', 1, NULL)
819INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (593, N''Liquid-filled'', N''Sub-surface'', N''Three-phase'', N''DTAN-L3M153'', NULL, N''9AAF401094'', N''2401'', 1, NULL)
820INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (594, N''Liquid-filled'', N''VSD LV (LV<=1 kV)'', N''<= 1.0 kV secondary'', N''DTSP-LXX163'', NULL, N''9AAF404619'', N''2401'', 1, NULL)
821INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (595, N''Liquid-filled'', N''VSD MV (LV>1kV) <=10MVA'', N''DTSP-LXX165'', NULL, NULL, N''9AAF404031'', N''2404'', 1, 28)
822INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (596, N''Liquid-filled'', N''VSD MV (LV>1kV) <=1MVA'', N''DTSP-LXX151'', NULL, NULL, N''9AAC30400430'', N''2404'', 1, NULL)
823INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (597, N''Liquid-filled'', N''VSD MV (LV>1kV) <=2.5MVA'', N''DTSP-LXX163'', NULL, NULL, N''9AAF404027'', N''2404'', 1, 30)
824INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (598, N''Liquid-filled'', N''VSD MV (LV>1kV) <=5MVA'', N''DTSP-LXX164'', NULL, NULL, N''9AAF404029'', N''2404'', 1, 31)
825INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (599, N''Liquid-filled'', N''VSD MV (LV>1kV) >10MVA'', N''DTSP-LXX166'', NULL, NULL, N''9AAF404033'', N''2404'', 1, 29)
826INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (600, N''Liquid-filled'', N''Windmill'', N''DTSP-LXX152'', NULL, NULL, N''9AAC30400094'', N''2404'', 1, 34)
827INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (601, N''Service'', N''Engineering & Consulting'', N''Operational Excellence'', N''Winding Turn Counter'', NULL, N''9AAF403323'', N''2413'', 1, NULL)
828INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (602, N''Service'', N''Engineering & Consulting'', N''Operational Excellence'', N''Winding Turn Counter-Obsolete'', NULL, N''9AAF403322'', N''2413'', 0, NULL)
829INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (603, N''Service'', N''Extension, upgrades & retrofits'', N''Extensions'', N''Drying Plants - New'', N''PTME-VDS850'', N''9AAC30403375'', N''2413'', 0, NULL)
830INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (604, N''Service'', N''Extension, upgrades & retrofits'', N''Hardware Upgrades'', N''Drying Plants - Service'', N''PTME-VDS851'', N''9AAC30403376'', N''2413'', 0, NULL)
831INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (605, N''Service'', N''Extension, upgrades & retrofits'', N''Retrofit'', N''TrafoSustainableRetrofit'', N''PTRA-FRE590'', N''9AAC30404211'', N''2413'', 0, NULL)
832INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (606, N''Service'', N''Extension, upgrades & retrofits'', N''Retrofit'', N''TrafoSustainableRetrofit'', N''PTRA-MFS584'', N''9AAC30404766'', N''2413'', 0, NULL)
833INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (607, N''Service'', N''Extension, upgrades & retrofits'', N''Retrofit'', N''TrafoSustainableRetrofit'', N''PTRA-MFS585'', N''9AAC30404765'', N''2413'', 0, NULL)
834INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (608, N''Service'', N''Extension, upgrades & retrofits'', N''Retrofit'', N''TrafoSustainableRetrofit'', N''TrafoSustainableRetrofit'', N''9AAC30404210'', N''2413'', 0, NULL)
835INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (609, N''Service'', N''Extension, upgrades & retrofits'', N''Software Upgrades'', N''Drying systems - Service'', N''Drying systems - Service'', N''9AAC30403377'', N''2413'', 0, NULL)
836INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (610, N''Service'', N''Extension, upgrades & retrofits'', N''Software Upgrades'', N''Drying systems - Service'', N''PTME-VDS853'', N''9AAC30403378'', N''2413'', 0, NULL)
837INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (611, N''Service'', N''Extension, upgrades & retrofits'', N''Software Upgrades'', N''Drying systems - Service'', N''PTME-VDS854'', N''9AAC30403379'', N''2413'', 0, NULL)
838INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (612, N''Service'', N''Extension, upgrades & retrofits'', N''Software Upgrades'', N''Drying systems - Service'', N''PTME-VDS855'', N''9AAC30403380'', N''2413'', 0, NULL)
839INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (613, N''Service'', N''Extension, upgrades & retrofits'', N''Software Upgrades'', N''Drying systems - Service'', N''PTME-VDS856'', N''9AAC30403381'', N''2413'', 0, NULL)
840INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (614, N''Service'', N''Installation and Commissioning'', N''Commissioning'', N''Commissioning'', NULL, N''9AAF403324'', N''2413'', 1, NULL)
841INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (615, N''Service'', N''Installation and Commissioning'', N''Commissioning'', N''Installation and Commissioning-Obsolete'', NULL, N''9AAF403306'', N''2413'', 0, NULL)
842INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (616, N''Service'', N''Installation and Commissioning'', N''Installation'', N''Adder DRY'', N''DTXX-DXX221'', N''9AAF403304'', N''2409'', 1, NULL)
843INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (617, N''Service'', N''Installation and Commissioning'', N''Installation'', N''Adder DTR'', N''DTXX-LXX200'', N''9AAF403302'', N''2401'', 1, NULL)
844INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (618, N''Service'', N''Installation and Commissioning'', N''Installation'', N''Adder LMPT - Installation & Commissioning'', N''PTLP-INC408'', N''9AAF403300'', N''2408'', 1, NULL)
845INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (619, N''Service'', N''Installation and Commissioning'', N''Installation'', N''Adder LMPT - Installation & Commissioning'', N''PTMP-INC407'', N''9AAF403298'', N''2408'', 0, NULL)
846INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (620, N''Service'', N''Installation and Commissioning'', N''Installation'', N''Adder SPT - Installation & Commissioning'', N''PTSP-INC406'', N''9AAF403296'', N''2404'', 1, NULL)
847INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (621, N''Service'', N''Installation and Commissioning'', N''Installation'', N''Installation'', NULL, N''9AAC30404212'', N''2413'', 1, NULL)
848INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (622, N''Service'', N''Installation and Commissioning'', N''Installation'', N''Installation and Commissioning-Obsolete'', NULL, N''9AAF403294'', N''2413'', 0, NULL)
849INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (623, N''Service'', N''Maintenance'', N''Inspection & Diagnostics'', N''Oil & Gas Analysis'', NULL, N''9AAF401917'', N''2413'', 1, NULL)
850INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (624, N''Service'', N''Maintenance'', N''Inspection & Diagnostics'', N''Oil & Gas Analysis-Obsolete'', N''PTRA-DIA586'', N''9AAC30404207'', N''2413'', 0, NULL)
851INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (625, N''Service'', N''Maintenance'', N''Life Cycle Assessments'', N''Diagnostics & Condition Assessment'', NULL, N''9AAF401919'', N''2413'', 1, NULL)
852INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (626, N''Service'', N''Maintenance'', N''Life Cycle Assessments'', N''Diagnostics & Condition Assessment-Obsolete'', N''PTRA-ENC587'', N''9AAC30404208'', N''2413'', 0, NULL)
853INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (627, N''Service'', N''Maintenance'', N''Preventive Maintenance'', N''Basic Maintenance'', NULL, N''9AAC30404213'', N''2413'', 1, NULL)
854INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (628, N''Service'', N''Maintenance'', N''Preventive Maintenance'', N''Basic Maintenance-Obsolete'', N''PTRA-ENC582'', N''9AAC30404768'', N''2413'', 0, NULL)
855INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (629, N''Service'', N''Maintenance'', N''Preventive Maintenance'', N''Bushing Replacements'', NULL, N''9AAF401924'', N''2413'', 1, NULL)
856INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (630, N''Service'', N''Maintenance'', N''Preventive Maintenance'', N''Cooling System Overhaul'', NULL, N''9AAF403991'', N''2413'', 1, NULL)
857INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (631, N''Service'', N''Maintenance'', N''Preventive Maintenance'', N''Oil Regeneration'', NULL, N''9AAF403993'', N''2413'', 1, NULL)
858INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (632, N''Service'', N''Maintenance'', N''Preventive Maintenance'', N''Onsite LFH Drying'', NULL, N''9AAF403992'', N''2413'', 1, NULL)
859
860INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (633, N''Service'', N''Maintenance'', N''Preventive Maintenance'', N''Tap Changer Overhaul'', NULL, N''9AAF401926'', N''2413'', 1, NULL)
861INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (634, N''Service'', N''Maintenance'', N''Preventive Maintenance'', N''Tap Changers'', NULL, N''9AAF401925'', N''2413'', 0, NULL)
862INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (635, N''Service'', N''Maintenance'', N''Preventive Maintenance'', N''Transformer Rehabilitation'', NULL, N''9AAF403994'', N''2413'', 1, NULL)
863INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (636, N''Service'', N''Maintenance'', N''Remote condition monitoring'', N''Asset Health Center'', NULL, N''9AAF403995'', N''2413'', 1, NULL)
864INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (637, N''Service'', N''Maintenance'', N''Remote condition monitoring'', N''CoreSense'', NULL, N''9AAF405254'', N''2413'', 1, NULL)
865INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (638, N''Service'', N''Maintenance'', N''Remote condition monitoring'', N''CoreTec'', NULL, N''9AAC30400059'', N''2413'', 1, NULL)
866INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (639, N''Service'', N''Maintenance'', N''Remote condition monitoring'', N''Other Monitoring Solutions'', NULL, N''9AAF401921'', N''2413'', 1, NULL)
867INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (640, N''Service'', N''Maintenance'', N''Remote condition monitoring'', N''Other Monitoring Solutions-Obsolete'', NULL, N''9AAF401920'', N''2413'', 0, NULL)
868INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (641, N''Service'', N''Maintenance'', N''Remote condition monitoring'', N''TEC-Obsolete'', NULL, N''9AAC30300259'', N''2413'', 0, NULL)
869INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (642, N''Service'', N''Maintenance'', N''Remote condition monitoring'', N''T-Monitor'', N''PTAE-ATM901'', N''9AAC30400347'', N''2413'', 0, NULL)
870INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (643, N''Service'', N''Maintenance'', N''Remote condition monitoring'', N''Transformer Control System'', N''PTAE-ACS900'', N''9AAC30400064'', N''2413'', 0, NULL)
871INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (644, N''Service'', N''Repairs'', N''On-site Repair'', N''TrafoSiteRepair'', NULL, N''9AAC30404214'', N''2413'', 1, NULL)
872INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (645, N''Service'', N''Repairs'', N''On-site Repair'', N''TrafoSiteRepair-Obsolete'', N''PTRA-MFS583'', N''9AAC30404767'', N''2413'', 0, NULL)
873INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (646, N''Service'', N''Repairs'', N''Workshop Repairs'', N''Distribution Transformer Repair'', NULL, N''9AAF401928'', N''2413'', 1, NULL)
874INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (647, N''Service'', N''Repairs'', N''Workshop Repairs'', N''Distribution Transformer Repair-Obsolete'', NULL, N''9AAF401927'', N''2413'', 0, NULL)
875INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (648, N''Service'', N''Repairs'', N''Workshop Repairs'', N''Power Transformer Repair'', NULL, N''9AAC30404215'', N''2413'', 1, NULL)
876INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (649, N''Service'', N''Repairs'', N''Workshop Repairs'', N''Power Transformer Repair-Obsolete'', N''PTRA-ENS588'', N''9AAC30404209'', N''2413'', 0, NULL)
877INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (650, N''Service'', N''Repairs'', N''Workshop Repairs'', N''Traction Transformer Repair'', NULL, N''9AAF401930'', N''2413'', 1, NULL)
878INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (651, N''Service'', N''Repairs'', N''Workshop Repairs'', N''Traction Transformer Repair-Obsolete'', NULL, N''9AAF401929'', N''2413'', 0, NULL)
879INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (652, N''Service'', N''Service Agreements'', N''Power Care'', N''Power Care'', NULL, N''9AAF403944'', N''2413'', 1, NULL)
880INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (653, N''Service'', N''Spares & consumables'', N''Consumables'', N''Spare Part-Consumables'', NULL, N''9AAF403317'', N''2413'', 1, NULL)
881INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (654, N''Service'', N''Spares & consumables'', N''Consumables'', N''Spare Part-Consumables-Obsolete'', NULL, N''9AAF403316'', N''2413'', 0, NULL)
882INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (655, N''Service'', N''Spares & consumables'', N''Exchange Units'', N''Spare Part-Exchange Units'', NULL, N''9AAC30404216'', N''2413'', 1, NULL)
883INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (656, N''Service'', N''Spares & consumables'', N''Exchange Units'', N''Spare Part-Exchange Units-Obsolete'', NULL, N''9AAC30404205'', N''2413'', 0, NULL)
884INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (657, N''Service'', N''Spares & consumables'', N''Parts Kits'', N''Spare Part-Kits'', NULL, N''9AAF403314'', N''2413'', 1, NULL)
885INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (658, N''Service'', N''Spares & consumables'', N''Parts Kits'', N''Spare Part-Kits-Obsolete'', NULL, N''9AAF403313'', N''2413'', 0, NULL)
886INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (659, N''Service'', N''Training'', N''ABB University'', N''On-site Training'', NULL, N''9AAC30404217'', N''2413'', 1, NULL)
887INSERT [dbo].[ProductCodes] ([ProductCodeID], [NodeName1], [NodeName2], [NodeName3], [NodeName4], [NodeName5], [PDCCode], [MgtOrgCode], [IsActive], [ProductTypeID]) VALUES (660, N''Service'', N''Training'', N''ABB University'', N''On-site Training-Obsolete'', NULL, N''9AAC30404206'', N''2413'', 0, NULL)
888SET IDENTITY_INSERT [dbo].[ProductCodes] OFF
889
890SET IDENTITY_INSERT [dbo].[Countries] ON
891INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (1, N''MX'', N''Mexico'', 1, NULL)
892INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (2, N''PR'', N''Puerto Rico'', 1, NULL)
893INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (3, N''PM'', N''Saint Pierre and Miquelon'', 1, NULL)
894INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (4, N''US'', N''United States'', 1, NULL)
895INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (5, N''CA'', N''Canada'', 1, NULL)
896INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (6, N''UM'', N''United States Minor Outlying Islands'', 1, NULL)
897INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (7, N''VI'', N''Virgin Islands, U.S.'', 1, NULL)
898INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (8, N''AI'', N''Anguilla'', 1, NULL)
899INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (9, N''AG'', N''Antigua and Barbuda'', 1, NULL)
900INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (10, N''AR'', N''Argentina'', 1, NULL)
901INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (11, N''BS'', N''Bahamas'', 1, NULL)
902INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (12, N''BB'', N''Barbados'', 1, NULL)
903INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (13, N''BZ'', N''Belize'', 1, NULL)
904INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (14, N''MF'', N''Saint Martin (French Part)'', 1, NULL)
905INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (15, N''BO'', N''Bolivia'', 1, NULL)
906INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (16, N''FK'', N''Falkland Islands'', 1, NULL)
907INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (17, N''VE'', N''Venezuela'', 1, NULL)
908INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (18, N''CO'', N''Colombia'', 1, NULL)
909INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (19, N''CU'', N''Cuba'', 1, NULL)
910INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (20, N''HT'', N''Haiti'', 1, NULL)
911INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (21, N''AW'', N''Aruba'', 1, NULL)
912INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (22, N''BV'', N''Bouvet Island'', 1, NULL)
913INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (23, N''BQ'', N''Bonaire, Sint Eustatius and Saba'', 1, NULL)
914INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (24, N''VG'', N''Virgin Islands, British'', 1, NULL)
915INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (25, N''AS'', N''American Samoa'', 1, NULL)
916INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (26, N''AQ'', N''Antarctica'', 1, NULL)
917INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (27, N''CW'', N''Curaçao'', 1, NULL)
918INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (28, N''SX'', N''Sint Maarten (Dutch part)'', 1, NULL)
919INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (29, N''TC'', N''Turks and Caicos Islands'', 1, NULL)
920INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (30, N''LC'', N''Saint Lucia'', 1, NULL)
921INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (31, N''VC'', N''Saint Vincent and the Grenadines'', 1, NULL)
922INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (32, N''BL'', N''Saint Barthélemy'', 1, NULL)
923INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (33, N''SR'', N''Suriname'', 1, NULL)
924INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (34, N''TT'', N''Trinidad and Tobago'', 1, NULL)
925INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (35, N''UY'', N''Uruguay'', 1, NULL)
926INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (36, N''NI'', N''Nicaragua'', 1, NULL)
927INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (37, N''PA'', N''Panama'', 1, NULL)
928INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (38, N''PY'', N''Paraguay'', 1, NULL)
929INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (39, N''PE'', N''Peru'', 1, NULL)
930INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (40, N''GS'', N''South Georgia and the South Sandwich Islands'', 1, NULL)
931INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (41, N''KN'', N''Saint Kitts and Nevis'', 1, NULL)
932INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (42, N''GT'', N''Guatemala'', 1, NULL)
933INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (43, N''GY'', N''Guyana'', 1, NULL)
934INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (44, N''HN'', N''Honduras'', 1, NULL)
935INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (45, N''JM'', N''Jamaica'', 1, NULL)
936INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (46, N''MQ'', N''Martinique'', 1, NULL)
937INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (47, N''MS'', N''Montserrat'', 1, NULL)
938INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (48, N''DO'', N''Dominican Republic'', 1, NULL)
939INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (49, N''EC'', N''Ecuador'', 1, NULL)
940INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (50, N''SV'', N''El Salvador'', 1, NULL)
941INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (51, N''GF'', N''French Guiana'', 1, NULL)
942INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (52, N''GD'', N''Grenada'', 1, NULL)
943INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (53, N''GP'', N''Guadeloupe'', 1, NULL)
944INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (54, N''BM'', N''Bermuda'', 1, NULL)
945INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (55, N''BR'', N''Brazil'', 1, NULL)
946INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (56, N''KY'', N''Cayman Islands'', 1, NULL)
947INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (57, N''CL'', N''Chile'', 1, NULL)
948INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (58, N''CR'', N''Costa Rica'', 1, NULL)
949INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (59, N''DM'', N''Dominica'', 1, NULL)
950INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (60, N''AD'', N''Andorra'', 1, NULL)
951INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (61, N''CY'', N''Cyprus'', 1, 1)
952INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (62, N''TR'', N''Turkey'', 1, NULL)
953INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (63, N''AL'', N''Albania'', 1, NULL)
954INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (64, N''HR'', N''Croatia'', 1, 1)
955INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (65, N''ME'', N''Montenegro'', 1, NULL)
956INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (66, N''SM'', N''San Marino'', 1, NULL)
957INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (67, N''IL'', N''Israel'', 1, NULL)
958INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (68, N''MK'', N''Macedonia'', 1, NULL)
959INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (69, N''LY'', N''Libya'', 1, NULL)
960INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (70, N''GI'', N''Gibraltar'', 1, NULL)
961INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (71, N''VA'', N''Holy See (Vatican City State)'', 1, NULL)
962INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (72, N''MC'', N''Monaco'', 1, NULL)
963INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (73, N''FR'', N''France'', 1, 1)
964INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (74, N''GR'', N''Greece'', 1, 1)
965INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (75, N''IT'', N''Italy'', 1, 1)
966INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (76, N''PT'', N''Portugal'', 1, 1)
967INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (77, N''ES'', N''Spain'', 1, 1)
968INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (78, N''BA'', N''Bosnia and Herzegovina'', 1, NULL)
969INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (79, N''RS'', N''Serbia'', 1, NULL)
970INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (80, N''DZ'', N''Algeria'', 1, NULL)
971INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (81, N''MT'', N''Malta'', 1, 1)
972INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (82, N''MR'', N''Mauritania'', 1, NULL)
973INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (83, N''MA'', N''Morocco'', 1, NULL)
974INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (84, N''TN'', N''Tunisia'', 1, NULL)
975INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (85, N''BG'', N''Bulgaria'', 1, 1)
976INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (86, N''CZ'', N''Czech Republic'', 1, 1)
977INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (87, N''HU'', N''Hungary'', 1, 1)
978INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (88, N''PL'', N''Poland'', 1, 1)
979INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (89, N''RO'', N''Romania'', 1, 1)
980INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (90, N''SK'', N''Slovakia'', 1, 1)
981INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (91, N''LU'', N''Luxembourg'', 1, 1)
982INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (92, N''CH'', N''Switzerland'', 1, NULL)
983INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (93, N''MD'', N''Moldova'', 1, NULL)
984INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (94, N''LI'', N''Liechtenstein'', 1, NULL)
985INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (95, N''SI'', N''Slovenia'', 1, 1)
986INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (96, N''UA'', N''Ukraine'', 1, NULL)
987INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (97, N''NL'', N''Netherlands'', 1, 1)
988INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (98, N''AT'', N''Austria'', 1, 1)
989INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (99, N''BE'', N''Belgium'', 1, 1)
990
991INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (100, N''DE'', N''Germany'', 1, 1)
992INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (101, N''GL'', N''Greenland'', 1, NULL)
993INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (102, N''GG'', N''Guernsey'', 1, NULL)
994INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (103, N''JE'', N''Jersey'', 1, NULL)
995INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (104, N''AM'', N''Armenia'', 1, NULL)
996INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (105, N''AZ'', N''Azerbaijan'', 1, NULL)
997INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (106, N''BY'', N''Belarus'', 1, NULL)
998INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (107, N''RU'', N''Russia'', 1, NULL)
999INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (108, N''FO'', N''Faroe Islands'', 1, NULL)
1000INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (109, N''LV'', N''Latvia'', 1, 1)
1001INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (110, N''SJ'', N''Svalbard and Jan Mayen'', 1, NULL)
1002INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (111, N''GE'', N''Georgia'', 1, NULL)
1003INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (112, N''KZ'', N''Kazakhstan'', 1, NULL)
1004INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (113, N''TJ'', N''Tajikistan'', 1, NULL)
1005INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (114, N''TM'', N''Turkmenistan'', 1, NULL)
1006INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (115, N''UZ'', N''Uzbekistan'', 1, NULL)
1007INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (116, N''IE'', N''Ireland'', 1, 1)
1008INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (117, N''NO'', N''Norway'', 1, NULL)
1009INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (118, N''SE'', N''Sweden'', 1, 1)
1010INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (119, N''GB'', N''United Kingdom'', 1, 1)
1011INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (120, N''AX'', N''Lland Islands'', 1, NULL)
1012INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (121, N''IM'', N''Isle of Man'', 1, NULL)
1013INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (122, N''EE'', N''Estonia'', 1, 1)
1014INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (123, N''KG'', N''Kyrgyzstan'', 1, NULL)
1015INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (124, N''LT'', N''Lithuania'', 1, 1)
1016INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (125, N''DK'', N''Denmark'', 1, 1)
1017INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (126, N''FI'', N''Finland'', 1, 1)
1018INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (127, N''IS'', N''Iceland'', 1, NULL)
1019INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (128, N''CN'', N''China'', 1, NULL)
1020INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (129, N''MO'', N''Macao'', 1, NULL)
1021INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (130, N''MN'', N''Mongolia'', 1, NULL)
1022INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (131, N''JP'', N''Japan'', 1, NULL)
1023INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (132, N''HK'', N''Hong Kong'', 1, NULL)
1024INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (133, N''KP'', N''North Korea'', 1, NULL)
1025INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (134, N''KR'', N''South Korea'', 1, NULL)
1026INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (135, N''TW'', N''Taiwan'', 1, NULL)
1027INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (136, N''TV'', N''Tuvalu'', 1, NULL)
1028INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (137, N''BN'', N''Brunei Darussalam'', 1, NULL)
1029INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (138, N''KH'', N''Cambodia'', 1, NULL)
1030INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (139, N''FJ'', N''Fiji'', 1, NULL)
1031INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (140, N''PF'', N''French Polynesia'', 1, NULL)
1032INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (141, N''GU'', N''Guam'', 1, NULL)
1033INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (142, N''TO'', N''Tonga'', 1, NULL)
1034INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (143, N''MM'', N''Myanmar'', 1, NULL)
1035INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (144, N''FM'', N''Micronesia'', 1, NULL)
1036INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (145, N''LA'', N''Laos'', 1, NULL)
1037INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (146, N''VN'', N''Vietnam'', 1, NULL)
1038INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (147, N''NR'', N''Nauru'', 1, NULL)
1039INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (148, N''NU'', N''Niue'', 1, NULL)
1040INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (149, N''MP'', N''Northern Mariana Islands'', 1, NULL)
1041INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (150, N''PW'', N''Palau'', 1, NULL)
1042INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (151, N''PN'', N''Pitcairn'', 1, NULL)
1043INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (152, N''WS'', N''Samoa'', 1, NULL)
1044INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (153, N''IO'', N''British Indian Ocean Territory'', 1, NULL)
1045INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (154, N''CX'', N''Christmas Island'', 1, NULL)
1046INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (155, N''CC'', N''Cocos (Keeling) Islands'', 1, NULL)
1047INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (156, N''TF'', N''French Southern Territories'', 1, NULL)
1048INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (157, N''HM'', N''Heard Island and McDonald Islands'', 1, NULL)
1049INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (158, N''KI'', N''Kiribati'', 1, NULL)
1050INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (159, N''VU'', N''Vanuatu'', 1, NULL)
1051INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (160, N''WF'', N''Wallis and Futuna'', 1, NULL)
1052INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (161, N''RE'', N''Réunion'', 1, NULL)
1053INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (162, N''AU'', N''Australia'', 1, NULL)
1054INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (163, N''NZ'', N''New Zealand'', 1, NULL)
1055INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (164, N''CK'', N''Cook Islands'', 1, NULL)
1056INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (165, N''PH'', N''Philippines'', 1, NULL)
1057INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (166, N''SG'', N''Singapore'', 1, NULL)
1058INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (167, N''SB'', N''Solomon Islands'', 1, NULL)
1059INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (168, N''TH'', N''Thailand'', 1, NULL)
1060INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (169, N''TL'', N''Timor-Leste'', 1, NULL)
1061INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (170, N''TK'', N''Tokelau'', 1, NULL)
1062INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (171, N''ID'', N''Indonesia'', 1, NULL)
1063INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (172, N''MY'', N''Malaysia'', 1, NULL)
1064INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (173, N''MH'', N''Marshall Islands'', 1, NULL)
1065INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (174, N''NC'', N''New Caledonia'', 1, NULL)
1066INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (175, N''NF'', N''Norfolk Island'', 1, NULL)
1067INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (176, N''PG'', N''Papua New Guinea'', 1, NULL)
1068INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (177, N''BD'', N''Bangladesh'', 1, NULL)
1069INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (178, N''BT'', N''Bhutan'', 1, NULL)
1070INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (179, N''IN'', N''India'', 1, NULL)
1071INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (180, N''MV'', N''Maldives'', 1, NULL)
1072INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (181, N''NP'', N''Nepal'', 1, NULL)
1073INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (182, N''BH'', N''Bahrain'', 1, NULL)
1074INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (183, N''CD'', N''Congo DRC'', 1, NULL)
1075INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (184, N''ER'', N''Eritrea'', 1, NULL)
1076INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (185, N''IR'', N''Iran'', 1, NULL)
1077INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (186, N''SY'', N''Syria'', 1, NULL)
1078INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (187, N''TZ'', N''Tanzania'', 1, NULL)
1079INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (188, N''PS'', N''Palestine'', 1, NULL)
1080INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (189, N''IQ'', N''Iraq'', 1, NULL)
1081INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (190, N''SO'', N''Somalia'', 1, NULL)
1082INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (191, N''SD'', N''Sudan'', 1, NULL)
1083INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (192, N''SS'', N''South Sudan'', 1, NULL)
1084INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (193, N''YE'', N''Yemen'', 1, NULL)
1085INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (194, N''ZW'', N''Zimbabwe'', 1, NULL)
1086INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (195, N''AO'', N''Angola'', 1, NULL)
1087INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (196, N''LR'', N''Liberia'', 1, NULL)
1088INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (197, N''NE'', N''Niger'', 1, NULL)
1089INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (198, N''NG'', N''Nigeria'', 1, NULL)
1090INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (199, N''PK'', N''Pakistan'', 1, NULL)
1091
1092INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (200, N''SA'', N''Saudi Arabia'', 1, NULL)
1093INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (201, N''LK'', N''Sri Lanka'', 1, NULL)
1094INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (202, N''KM'', N''Comoros'', 1, NULL)
1095INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (203, N''GW'', N''Guinea-Bissau'', 1, NULL)
1096INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (204, N''ST'', N''Sao Tome and Principe'', 1, NULL)
1097INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (205, N''SH'', N''Saint Helena, Ascension and Tristan da Cunha'', 1, NULL)
1098INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (206, N''EH'', N''Western Sahara'', 1, NULL)
1099INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (207, N''AF'', N''Afghanistan'', 1, NULL)
1100INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (208, N''ZA'', N''South Africa'', 1, NULL)
1101INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (209, N''SZ'', N''Swaziland'', 1, NULL)
1102INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (210, N''TG'', N''Togo'', 1, NULL)
1103INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (211, N''UG'', N''Uganda'', 1, NULL)
1104INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (212, N''ZM'', N''Zambia'', 1, NULL)
1105INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (213, N''TD'', N''Chad'', 1, NULL)
1106INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (214, N''MZ'', N''Mozambique'', 1, NULL)
1107INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (215, N''NA'', N''Namibia'', 1, NULL)
1108INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (216, N''RW'', N''Rwanda'', 1, NULL)
1109INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (217, N''SN'', N''Senegal'', 1, NULL)
1110INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (218, N''SC'', N''Seychelles'', 1, NULL)
1111INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (219, N''SL'', N''Sierra Leone'', 1, NULL)
1112INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (220, N''LS'', N''Lesotho'', 1, NULL)
1113INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (221, N''MG'', N''Madagascar'', 1, NULL)
1114INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (222, N''MW'', N''Malawi'', 1, NULL)
1115INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (223, N''ML'', N''Mali'', 1, NULL)
1116INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (224, N''MU'', N''Mauritius'', 1, NULL)
1117INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (225, N''YT'', N''Mayotte'', 1, NULL)
1118INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (226, N''ET'', N''Ethiopia'', 1, NULL)
1119INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (227, N''GA'', N''Gabon'', 1, NULL)
1120INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (228, N''GM'', N''Gambia'', 1, NULL)
1121INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (229, N''GH'', N''Ghana'', 1, NULL)
1122INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (230, N''GN'', N''Guinea'', 1, NULL)
1123INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (231, N''KE'', N''Kenya'', 1, NULL)
1124INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (232, N''CV'', N''Cape Verde'', 1, NULL)
1125INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (233, N''CF'', N''Central African Republic'', 1, NULL)
1126INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (234, N''CG'', N''Congo'', 1, NULL)
1127INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (235, N''CI'', N''Cote d''''Ivoire'', 1, NULL)
1128INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (236, N''DJ'', N''Djibouti'', 1, NULL)
1129INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (237, N''GQ'', N''Equatorial Guinea'', 1, NULL)
1130INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (238, N''AE'', N''United Arab Emirates'', 1, NULL)
1131INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (239, N''BJ'', N''Benin'', 1, NULL)
1132INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (240, N''BW'', N''Botswana'', 1, NULL)
1133INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (241, N''BF'', N''Burkina Faso'', 1, NULL)
1134INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (242, N''BI'', N''Burundi'', 1, NULL)
1135INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (243, N''CM'', N''Cameroon'', 1, NULL)
1136INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (244, N''EG'', N''Egypt'', 1, NULL)
1137INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (245, N''JO'', N''Jordan'', 1, NULL)
1138INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (246, N''KW'', N''Kuwait'', 1, NULL)
1139INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (247, N''LB'', N''Lebanon'', 1, NULL)
1140INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (248, N''OM'', N''Oman'', 1, NULL)
1141INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (249, N''QA'', N''Qatar'', 1, NULL)
1142INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (250, N''CS'', N''Czechoslovakia'', 0, NULL)
1143INSERT [dbo].[Countries] ([Id], [CountryCodeISO], [CountryShortName], [IsActive], [IsWithinEU]) VALUES (251, N''YU'', N''Yugoslavia'', 0, NULL)
1144SET IDENTITY_INSERT [dbo].[Countries] OFF
1145
1146SET IDENTITY_INSERT [dbo].[CustomerSegment] ON
1147INSERT [dbo].[CustomerSegment] ([CustomerSegment], [IsActive], [ID]) VALUES (N''ABB System Integrator'', 1, 1)
1148INSERT [dbo].[CustomerSegment] ([CustomerSegment], [IsActive], [ID]) VALUES (N''Distributor'', 1, 2)
1149INSERT [dbo].[CustomerSegment] ([CustomerSegment], [IsActive], [ID]) VALUES (N''EPC'', 1, 3)
1150INSERT [dbo].[CustomerSegment] ([CustomerSegment], [IsActive], [ID]) VALUES (N''Industry'', 1, 4)
1151INSERT [dbo].[CustomerSegment] ([CustomerSegment], [IsActive], [ID]) VALUES (N''OEM'', 1, 5)
1152INSERT [dbo].[CustomerSegment] ([CustomerSegment], [IsActive], [ID]) VALUES (N''PP Factory – PP Factory'', 1, 6)
1153INSERT [dbo].[CustomerSegment] ([CustomerSegment], [IsActive], [ID]) VALUES (N''Utility'', 1, 7)
1154SET IDENTITY_INSERT [dbo].[CustomerSegment] OFF
1155
1156SET IDENTITY_INSERT [dbo].[FailureDescription] ON
1157INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (1, N''FaliureDiscovery'', N''Routine DGA'', 1, NULL, 0, N''Field'')
1158INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (2, N''FaliureDiscovery'', N''Gas alarm'', 1, NULL, 1, N''Field'')
1159INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (3, N''FaliureDiscovery'', N''Temperature alarm'', 1, NULL, 1, N''Field'')
1160INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (4, N''FaliureDiscovery'', N''Noise increase'', 1, NULL, 1, N''Field'')
1161INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (5, N''FaliureDiscovery'', N''Unit tripped'', 1, NULL, 1, N''Field'')
1162INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (6, N''FailureOccurrence'', N''When energized the first time'', 1, NULL, 1, N''Field'')
1163INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (7, N''FailureOccurrence'', N''During normal operation'', 1, NULL, 1, N''Field'')
1164INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (8, N''FailureOccurrence'', N''During switching operation'', 1, NULL, 1, N''Field'')
1165INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (9, N''FailureOccurrence'', N''During tap changer operation'', 1, NULL, 1, N''Field'')
1166INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (10, N''FailureOccurrence'', N''During external short circuit'', 1, NULL, 1, N''Field'')
1167INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (11, N''FailureOccurrence'', N''During overloading'', 1, NULL, 1, N''Field'')
1168INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (12, N''FailureOccurrence'', N''During thunderstorm'', 1, NULL, 1, N''Field'')
1169INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (13, N''FailureOccurrence'', N''After maintenance work'', 1, NULL, 1, N''Field'')
1170INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (14, N''FailureOccurrence'', N''Other'', 1, NULL, 1, N''Field'')
1171INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (15, N''FailureLocation'', N''Core'', 1, NULL, 1, N''Field'')
1172INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (16, N''FailureLocation'', N''Winding'', 1, NULL, 1, N''Field'')
1173INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (17, N''FailureLocation'', N''Winding Entry'', 1, NULL, 1, N''Field'')
1174INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (18, N''FailureLocation'', N''Main Insulation'', 1, NULL, 1, N''Field'')
1175INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (19, N''FailureLocation'', N''Cleats and Leads'', 1, NULL, 1, N''Field'')
1176INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (20, N''FailureLocation'', N''Bushing'', 1, NULL, 1, N''Field'')
1177INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (21, N''FailureLocation'', N''Tank'', 1, NULL, 1, N''Field'')
1178INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (22, N''FailureLocation'', N''Tap-Changer'', 1, NULL, 1, N''Field'')
1179INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (23, N''FailureLocation'', N''Auxiliary equipment'', 1, NULL, 1, N''Field'')
1180INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (24, N''FailureLocation'', N''Other'', 1, NULL, 1, N''Field'')
1181INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (25, N''FailureLocation'', N''Not Found'', 1, NULL, 1, N''Field'')
1182INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (26, N''FailureCause'', N''Design'', 1, NULL, 1, N''Field'')
1183INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (27, N''FailureCause'', N''Production'', 1, NULL, 1, N''Field'')
1184INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (28, N''FailureCause'', N''Material'', 1, NULL, 1, N''Field'')
1185INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (29, N''FailureCause'', N''Installation'', 1, NULL, 1, N''Field'')
1186INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (30, N''FailureCause'', N''Opertaion'', 1, NULL, 1, N''Field'')
1187INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (31, N''FailureCause'', N''Other'', 1, NULL, 1, N''Field'')
1188INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (32, N''Action'', N''Repair in the field'', 1, NULL, 1, N''Field'')
1189INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (33, N''Action'', N''Repair in a repair shop'', 1, NULL, 1, N''Field'')
1190INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (34, N''Action'', N''No repair'', 1, NULL, 1, N''Field'')
1191INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (35, N''Action'', N''Unknown'', 1, NULL, 1, N''Field'')
1192INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (36, N''TypeOfTest'', N''Full Impulse'', 1, NULL, 0, N''TestProd'')
1193INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (37, N''TypeOfTest'', N''Chopped Impulse'', 1, NULL, 0, N''TestProd'')
1194INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (38, N''TypeOfTest'', N''Loss Measurement'', 1, NULL, 1, N''TestProd'')
1195INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (39, N''TypeOfTest'', N''Heat Run'', 1, NULL, 1, N''TestProd'')
1196INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (40, N''TypeOfTest'', N''Applied voltage'', 1, NULL, 0, N''TestProd'')
1197INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (41, N''TypeOfTest'', N''Included Voltage'', 1, NULL, 0, N''TestProd'')
1198INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (42, N''TypeOfTest'', N''Direct Voltage'', 1, NULL, 0, N''TestProd'')
1199INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (43, N''TypeOfTest'', N''Flashover'', 2, N''Included Voltage'', 0, N''TestProd'')
1200INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (44, N''TypeOfTest'', N''Partial Discharge'', 2, N''Included Voltage'', 0, N''TestProd'')
1201INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (45, N''TypeOfTest'', N''Long Time'', 2, N''Direct Voltage'', 0, N''TestProd'')
1202INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (46, N''TypeOfTest'', N''Short Time'', 2, N''Direct Voltage'', 0, N''TestProd'')
1203INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (47, N''TypeOfTest'', N''Polarity rev.'', 2, N''Direct Voltage'', 0, N''TestProd'')
1204INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (48, N''FailureLocation'', N''Core'', 1, NULL, 1, N''TestProd'')
1205INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (49, N''FailureLocation'', N''Winding'', 1, NULL, 1, N''TestProd'')
1206INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (50, N''FailureLocation'', N''Winding Entry'', 1, NULL, 1, N''TestProd'')
1207INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (51, N''FailureLocation'', N''Main Insulation'', 1, NULL, 1, N''TestProd'')
1208INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (52, N''FailureLocation'', N''Cleats and Leads'', 1, NULL, 1, N''TestProd'')
1209INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (53, N''FailureLocation'', N''Bushing'', 1, NULL, 1, N''TestProd'')
1210INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (54, N''FailureLocation'', N''Bushing Entry'', 1, NULL, 1, N''TestProd'')
1211INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (55, N''FailureLocation'', N''Tap-Changer'', 1, NULL, 1, N''TestProd'')
1212INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (56, N''FailureLocation'', N''Auxiliary equipment'', 1, NULL, 1, N''TestProd'')
1213INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (57, N''FailureLocation'', N''Not Found'', 1, NULL, 1, N''TestProd'')
1214INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (58, N''FailureCause'', N''Material'', 1, NULL, 1, N''TestProd'')
1215INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (59, N''FailureCause'', N''Testing Equip. or Proc.'', 1, NULL, 1, N''TestProd'')
1216INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (60, N''FailureCause'', N''Consequential Failure'', 1, NULL, 1, N''TestProd'')
1217INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (61, N''FailureCause'', N''Not Explained'', 1, NULL, 1, N''TestProd'')
1218INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (62, N''FailureCause'', N''Design'', 1, NULL, 1, N''TestProd'')
1219INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (63, N''FailureCause'', N''Production'', 1, NULL, 1, N''TestProd'')
1220INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (64, N''FailureCause'', N''According to instr.'', 2, N''Design'', 1, N''TestProd'')
1221INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (65, N''FailureCause'', N''Not to instruction'', 2, N''Design'', 1, N''TestProd'')
1222INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (66, N''FailureCause'', N''No instruction'', 2, N''Design'', 1, N''TestProd'')
1223INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (67, N''FailureCause'', N''Instruction needs to be updated'', 3, N''According to instr.'', 1, N''TestProd'')
1224INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (68, N''FailureCause'', N''No need to update (special case)'', 3, N''According to instr.'', 1, N''TestProd'')
1225INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (69, N''FailureCause'', N''Instruction not known'', 3, N''Not to instruction'', 1, N''TestProd'')
1226INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (70, N''FailureCause'', N''Instruction too difficult - not understood'', 3, N''Not to instruction'', 1, N''TestProd'')
1227INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (71, N''FailureCause'', N''Instruction disregarded'', 3, N''Not to instruction'', 1, N''TestProd'')
1228INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (72, N''FailureCause'', N''BU instruction regarded as necessary'', 3, N''No instruction'', 1, N''TestProd'')
1229INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (73, N''FailureCause'', N''Local instruction regarded as neccesary'', 3, N''No instruction'', 1, N''TestProd'')
1230INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (74, N''FailureCause'', N''Mistake! Instruction not neccesary'', 3, N''No instruction'', 1, N''TestProd'')
1231INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (75, N''FailureCause'', N''Not acc to drawing'', 2, N''Production'', 1, N''TestProd'')
1232INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (76, N''FailureCause'', N''Not acc to work instruction'', 2, N''Production'', 1, N''TestProd'')
1233INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (77, N''FailureCause'', N''No work instruction'', 2, N''Production'', 1, N''TestProd'')
1234INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (78, N''FailureCause'', N''Drawing not understood'', 3, N''Not acc to drawing'', 1, N''TestProd'')
1235INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (79, N''FailureCause'', N''Drawing not available'', 3, N''Not acc to drawing'', 1, N''TestProd'')
1236INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (80, N''FailureCause'', N''Manuf. acc. drawing impossible'', 3, N''Not acc to drawing'', 1, N''TestProd'')
1237INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (81, N''FailureCause'', N''Operator mistake'', 3, N''Not acc to drawing'', 1, N''TestProd'')
1238INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (82, N''FailureCause'', N''Instruction not known'', 3, N''Not acc to work instruction'', 1, N''TestProd'')
1239INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (83, N''FailureCause'', N''Instruction too difficult - not understood'', 3, N''Not acc to work instruction'', 1, N''TestProd'')
1240INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (84, N''FailureCause'', N''Instruction disregarded'', 3, N''Not acc to work instruction'', 1, N''TestProd'')
1241INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (85, N''FailureCause'', N''BU instruction regarded as necessary'', 3, N''No work instruction'', 1, N''TestProd'')
1242INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (86, N''FailureCause'', N''Local instruction regarded as necessary'', 3, N''No work instruction'', 1, N''TestProd'')
1243INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (87, N''FailureCause'', N''Mistake! Instruction not necessary'', 3, N''No work instruction'', 1, N''TestProd'')
1244INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (88, N''Action'', N''No Repair'', 1, NULL, 1, N''TestProd'')
1245INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (89, N''Action'', N''Scrapped'', 1, NULL, 1, N''TestProd'')
1246INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (90, N''Action'', N''Repair'', 1, NULL, 1, N''TestProd'')
1247INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (91, N''Action'', N''In Tank'', 2, N''Repair'', 1, N''TestProd'')
1248INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (92, N''Action'', N''Outside Tank'', 2, N''Repair'', 1, N''TestProd'')
1249INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (93, N''Action'', N''Disassembled'', 2, N''Repair'', 1, N''TestProd'')
1250INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (94, N''TypeOfTest'', N''LI (Lightning impulse)'', 1, NULL, 1, N''TestProd'')
1251INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (95, N''TypeOfTest'', N''Full wave'', 2, N''LI (Lightning impulse)'', 1, N''TestProd'')
1252INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (96, N''TypeOfTest'', N''Complete or partial voltage collapse
1253'', 3, N''Full wave'', 1, N''TestProd'')
1254INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (97, N''TypeOfTest'', N''Current deviates before 5 µs
1255'', 3, N''Full wave'', 1, N''TestProd'')
1256INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (98, N''TypeOfTest'', N''Current deviates before 20 µs
1257'', 3, N''Full wave'', 1, N''TestProd'')
1258INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (99, N''TypeOfTest'', N''Current deviates after 20 µs
1259'', 3, N''Full wave'', 1, N''TestProd'')
1260
1261INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (100, N''FailureLocation'', N''C & L'', 1, NULL, 1, N''TestProd'')
1262INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (101, N''FailureLocation'', N''Auxiliary devices'', 1, NULL, 1, N''TestProd'')
1263INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (102, N''FailureLocation'', N''Current limiting reactor
1264'', 2, N''Auxiliary devices'', 1, N''TestProd'')
1265INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (103, N''FailureLocation'', N''Booster transformer
1266'', 2, N''Auxiliary devices'', 1, N''TestProd'')
1267INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (104, N''TypeOfTest'', N''Sound Level'', 1, NULL, 1, N''TestProd'')
1268INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (105, N''TypeOfTest'', N''Exc. NL noise'', 2, N''Sound Level'', 1, N''TestProd'')
1269INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (106, N''TypeOfTest'', N''Exc. Load noise'', 2, N''Sound Level'', 1, N''TestProd'')
1270INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (107, N''TypeOfTest'', N''Exc. Fan noise'', 2, N''Sound Level'', 1, N''TestProd'')
1271INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (108, N''TypeOfTest'', N''Exc. Total noise'', 2, N''Sound Level'', 1, N''TestProd'')
1272INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (109, N''TypeOfTest'', N''Exc. Tank vibration'', 2, N''Sound Level'', 1, N''TestProd'')
1273INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (110, N''TypeOfTest'', N''Short-circuit
1274'', 1, NULL, 1, N''TestProd'')
1275INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (111, N''TypeOfTest'', N''Other test'', 1, NULL, 1, N''TestProd'')
1276INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (112, N''TypeOfTest'', N''Winding resistance
1277'', 2, N''Other test'', 1, N''TestProd'')
1278INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (113, N''TypeOfTest'', N''Insulation resistance'', 2, N''Other test'', 1, N''TestProd'')
1279INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (114, N''TypeOfTest'', N''Tg delta'', 2, N''Other test'', 1, N''TestProd'')
1280INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (115, N''TypeOfTest'', N''Core ground withstand'', 2, N''Other test'', 1, N''TestProd'')
1281INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (116, N''TypeOfTest'', N''Special test'', 2, N''Other test'', 1, N''TestProd'')
1282INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (117, N''TypeOfTest'', N''No-load loss
1283'', 2, N''Loss Measurement'', 1, N''TestProd'')
1284INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (118, N''TypeOfTest'', N''Load loss'', 2, N''Loss Measurement'', 1, N''TestProd'')
1285INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (119, N''TypeOfTest'', N''Exc. aver. wdg. temp.'', 3, N''Heat Run'', 1, N''TestProd'')
1286INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (120, N''TypeOfTest'', N''Exc. wdg. hot spot'', 3, N''Heat Run'', 1, N''TestProd'')
1287INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (121, N''TypeOfTest'', N''Exc. top oil'', 3, N''Heat Run'', 1, N''TestProd'')
1288INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (122, N''TypeOfTest'', N''Exc. DGA limits
1289'', 3, N''Heat Run'', 1, N''TestProd'')
1290INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (123, N''TypeOfTest'', N''DC'', 1, NULL, 1, N''TestProd'')
1291INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (124, N''TypeOfTest'', N''Long time'', 2, N''DC'', 1, N''TestProd'')
1292INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (125, N''TypeOfTest'', N''Short time
1293'', 2, N''DC'', 1, N''TestProd'')
1294INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (126, N''TypeOfTest'', N''Polarity reversal'', 2, N''DC'', 1, N''TestProd'')
1295INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (127, N''TypeOfTest'', N''AC'', 1, NULL, 1, N''TestProd'')
1296INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (128, N''TypeOfTest'', N''Applied
1297'', 2, N''AC'', 1, N''TestProd'')
1298INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (129, N''TypeOfTest'', N''Induced'', 2, N''AC'', 1, N''TestProd'')
1299INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (130, N''TypeOfTest'', N''Flashover
1300'', 3, N''Induced'', 1, N''TestProd'')
1301INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (131, N''TypeOfTest'', N''Flashover
1302'', 3, N''Applied
1303'', 1, N''TestProd'')
1304INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (132, N''TypeOfTest'', N''PD'', 3, N''Induced'', 1, N''TestProd'')
1305INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (133, N''TypeOfTest'', N''PD'', 3, N''Applied
1306'', 1, N''TestProd'')
1307INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (134, N''TypeOfTest'', N''SI (Switching impulse)'', 1, NULL, 1, N''TestProd'')
1308INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (135, N''TypeOfTest'', N''External flashover
1309'', 3, N''SI (Switching impulse)'', 1, N''TestProd'')
1310INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (136, N''TypeOfTest'', N''Internal flashover
1311'', 3, N''SI (Switching impulse)'', 1, N''TestProd'')
1312INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (137, N''TypeOfTest'', N''Chopped wave'', 2, N''LI (Lightning impulse)'', 1, N''TestProd'')
1313INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (138, N''TypeOfTest'', N''Deviation before chopping'', 3, N''Chopped wave'', 1, N''TestProd'')
1314INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (139, N''TypeOfTest'', N''Deviation after chopping'', 3, N''Chopped wave'', 1, N''TestProd'')
1315INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (140, N''TypeOfTest'', N''Full Impulse'', 1, NULL, 0, N''TestNCR'')
1316INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (141, N''TypeOfTest'', N''Chopped Impulse'', 1, NULL, 0, N''TestNCR'')
1317INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (142, N''TypeOfTest'', N''Loss Measurement'', 1, NULL, 1, N''TestNCR'')
1318INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (143, N''TypeOfTest'', N''Heat Run'', 1, NULL, 1, N''TestNCR'')
1319INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (144, N''TypeOfTest'', N''Applied voltage'', 1, NULL, 0, N''TestNCR'')
1320INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (145, N''TypeOfTest'', N''Included Voltage'', 1, NULL, 0, N''TestNCR'')
1321INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (146, N''TypeOfTest'', N''Direct Voltage'', 1, NULL, 0, N''TestNCR'')
1322INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (147, N''TypeOfTest'', N''Flashover'', 2, N''Included Voltage'', 0, N''TestNCR'')
1323INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (148, N''TypeOfTest'', N''Partial Discharge'', 2, N''Included Voltage'', 0, N''TestNCR'')
1324INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (149, N''TypeOfTest'', N''Long Time'', 2, N''Direct Voltage'', 0, N''TestNCR'')
1325INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (150, N''TypeOfTest'', N''Short Time'', 2, N''Direct Voltage'', 0, N''TestNCR'')
1326INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (151, N''TypeOfTest'', N''Polarity rev.'', 2, N''Direct Voltage'', 0, N''TestNCR'')
1327INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (152, N''FailureLocation'', N''Core'', 1, NULL, 1, N''TestNCR'')
1328INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (153, N''FailureLocation'', N''Winding'', 1, NULL, 1, N''TestNCR'')
1329INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (154, N''FailureLocation'', N''Winding Entry'', 1, NULL, 1, N''TestNCR'')
1330INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (155, N''FailureLocation'', N''Main Insulation'', 1, NULL, 1, N''TestNCR'')
1331INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (156, N''FailureLocation'', N''Cleats and Leads'', 1, NULL, 1, N''TestNCR'')
1332INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (157, N''FailureLocation'', N''Bushing'', 1, NULL, 1, N''TestNCR'')
1333INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (158, N''FailureLocation'', N''Bushing Entry'', 1, NULL, 1, N''TestNCR'')
1334INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (159, N''FailureLocation'', N''Tap-Changer'', 1, NULL, 1, N''TestNCR'')
1335INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (160, N''FailureLocation'', N''Auxiliary equipment'', 1, NULL, 1, N''TestNCR'')
1336INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (161, N''FailureLocation'', N''Not Found'', 1, NULL, 1, N''TestNCR'')
1337INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (162, N''FailureCause'', N''Material'', 1, NULL, 1, N''TestNCR'')
1338INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (163, N''FailureCause'', N''Testing Equip. or Proc.'', 1, NULL, 1, N''TestNCR'')
1339INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (164, N''FailureCause'', N''Consequential Failure'', 1, NULL, 1, N''TestNCR'')
1340INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (165, N''FailureCause'', N''Not Explained'', 1, NULL, 1, N''TestNCR'')
1341INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (166, N''FailureCause'', N''Design'', 1, NULL, 1, N''TestNCR'')
1342INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (167, N''FailureCause'', N''Production'', 1, NULL, 1, N''TestNCR'')
1343INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (168, N''FailureCause'', N''According to instr.'', 2, N''Design'', 1, N''TestNCR'')
1344INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (169, N''FailureCause'', N''Not to instruction'', 2, N''Design'', 1, N''TestNCR'')
1345INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (170, N''FailureCause'', N''No instruction'', 2, N''Design'', 1, N''TestNCR'')
1346INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (171, N''FailureCause'', N''Instruction needs to be updated'', 3, N''According to instr.'', 1, N''TestNCR'')
1347INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (172, N''FailureCause'', N''No need to update (special case)'', 3, N''According to instr.'', 1, N''TestNCR'')
1348INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (173, N''FailureCause'', N''Instruction not known'', 3, N''Not to instruction'', 1, N''TestNCR'')
1349INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (174, N''FailureCause'', N''Instruction too difficult - not understood'', 3, N''Not to instruction'', 1, N''TestNCR'')
1350INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (175, N''FailureCause'', N''Instruction disregarded'', 3, N''Not to instruction'', 1, N''TestNCR'')
1351INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (176, N''FailureCause'', N''BU instruction regarded as necessary'', 3, N''No instruction'', 1, N''TestNCR'')
1352INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (177, N''FailureCause'', N''Local instruction regarded as neccesary'', 3, N''No instruction'', 1, N''TestNCR'')
1353INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (178, N''FailureCause'', N''Mistake! Instruction not neccesary'', 3, N''No instruction'', 1, N''TestNCR'')
1354INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (179, N''FailureCause'', N''Not acc to drawing'', 2, N''Production'', 1, N''TestNCR'')
1355INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (180, N''FailureCause'', N''Not acc to work instruction'', 2, N''Production'', 1, N''TestNCR'')
1356INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (181, N''FailureCause'', N''No work instruction'', 2, N''Production'', 1, N''TestNCR'')
1357INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (182, N''FailureCause'', N''Drawing not understood'', 3, N''Not acc to drawing'', 1, N''TestNCR'')
1358INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (183, N''FailureCause'', N''Drawing not available'', 3, N''Not acc to drawing'', 1, N''TestNCR'')
1359INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (184, N''FailureCause'', N''Manuf. acc. drawing impossible'', 3, N''Not acc to drawing'', 1, N''TestNCR'')
1360INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (185, N''FailureCause'', N''Operator mistake'', 3, N''Not acc to drawing'', 1, N''TestNCR'')
1361INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (186, N''FailureCause'', N''Instruction not known'', 3, N''Not acc to work instruction'', 1, N''TestNCR'')
1362INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (187, N''FailureCause'', N''Instruction too difficult - not understood'', 3, N''Not acc to work instruction'', 1, N''TestNCR'')
1363INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (188, N''FailureCause'', N''Instruction disregarded'', 3, N''Not acc to work instruction'', 1, N''TestNCR'')
1364INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (189, N''FailureCause'', N''BU instruction regarded as necessary'', 3, N''No work instruction'', 1, N''TestNCR'')
1365INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (190, N''FailureCause'', N''Local instruction regarded as necessary'', 3, N''No work instruction'', 1, N''TestNCR'')
1366INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (191, N''FailureCause'', N''Mistake! Instruction not necessary'', 3, N''No work instruction'', 1, N''TestNCR'')
1367INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (192, N''Action'', N''No Repair'', 1, NULL, 1, N''TestNCR'')
1368INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (193, N''Action'', N''Scrapped'', 1, NULL, 1, N''TestNCR'')
1369INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (194, N''Action'', N''Repair'', 1, NULL, 1, N''TestNCR'')
1370INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (195, N''Action'', N''In Tank'', 2, N''Repair'', 1, N''TestNCR'')
1371INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (196, N''Action'', N''Outside Tank'', 2, N''Repair'', 1, N''TestNCR'')
1372INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (197, N''Action'', N''Disassembled'', 2, N''Repair'', 1, N''TestNCR'')
1373INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (198, N''TypeOfTest'', N''LI (Lightning impulse)'', 1, NULL, 1, N''TestNCR'')
1374INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (199, N''TypeOfTest'', N''Full wave'', 2, N''LI (Lightning impulse)'', 1, N''TestNCR'')
1375
1376INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (200, N''TypeOfTest'', N''Complete or partial voltage collapse
1377'', 3, N''Full wave'', 1, N''TestNCR'')
1378INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (201, N''TypeOfTest'', N''Current deviates before 5 µs
1379'', 3, N''Full wave'', 1, N''TestNCR'')
1380INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (202, N''TypeOfTest'', N''Current deviates before 20 µs
1381'', 3, N''Full wave'', 1, N''TestNCR'')
1382INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (203, N''TypeOfTest'', N''Current deviates after 20 µs
1383'', 3, N''Full wave'', 1, N''TestNCR'')
1384INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (204, N''FailureLocation'', N''C & L'', 1, NULL, 1, N''TestNCR'')
1385INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (205, N''FailureLocation'', N''Auxiliary devices'', 1, NULL, 1, N''TestNCR'')
1386INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (206, N''FailureLocation'', N''Current limiting reactor
1387'', 2, N''Auxiliary devices'', 1, N''TestNCR'')
1388INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (207, N''FailureLocation'', N''Booster transformer
1389'', 2, N''Auxiliary devices'', 1, N''TestNCR'')
1390INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (208, N''TypeOfTest'', N''Sound Level'', 1, NULL, 1, N''TestNCR'')
1391INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (209, N''TypeOfTest'', N''Exc. NL noise'', 2, N''Sound Level'', 1, N''TestNCR'')
1392INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (210, N''TypeOfTest'', N''Exc. Load noise'', 2, N''Sound Level'', 1, N''TestNCR'')
1393INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (211, N''TypeOfTest'', N''Exc. Fan noise'', 2, N''Sound Level'', 1, N''TestNCR'')
1394INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (212, N''TypeOfTest'', N''Exc. Total noise'', 2, N''Sound Level'', 1, N''TestNCR'')
1395INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (213, N''TypeOfTest'', N''Exc. Tank vibration'', 2, N''Sound Level'', 1, N''TestNCR'')
1396INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (214, N''TypeOfTest'', N''Short-circuit
1397'', 1, NULL, 1, N''TestNCR'')
1398INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (215, N''TypeOfTest'', N''Other test'', 1, NULL, 1, N''TestNCR'')
1399INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (216, N''TypeOfTest'', N''Winding resistance
1400'', 2, N''Other test'', 1, N''TestNCR'')
1401INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (217, N''TypeOfTest'', N''Insulation resistance'', 2, N''Other test'', 1, N''TestNCR'')
1402INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (218, N''TypeOfTest'', N''Tg delta'', 2, N''Other test'', 1, N''TestNCR'')
1403INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (219, N''TypeOfTest'', N''Core ground withstand'', 2, N''Other test'', 1, N''TestNCR'')
1404INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (220, N''TypeOfTest'', N''Special test'', 2, N''Other test'', 1, N''TestNCR'')
1405INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (221, N''TypeOfTest'', N''No-load loss
1406'', 2, N''Loss Measurement'', 1, N''TestNCR'')
1407INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (222, N''TypeOfTest'', N''Load loss'', 2, N''Loss Measurement'', 1, N''TestNCR'')
1408INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (223, N''TypeOfTest'', N''Exc. aver. wdg. temp.'', 3, N''Heat Run'', 1, N''TestNCR'')
1409INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (224, N''TypeOfTest'', N''Exc. wdg. hot spot'', 3, N''Heat Run'', 1, N''TestNCR'')
1410INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (225, N''TypeOfTest'', N''Exc. top oil'', 3, N''Heat Run'', 1, N''TestNCR'')
1411INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (226, N''TypeOfTest'', N''Exc. DGA limits
1412'', 3, N''Heat Run'', 1, N''TestNCR'')
1413INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (227, N''TypeOfTest'', N''DC'', 1, NULL, 1, N''TestNCR'')
1414INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (228, N''TypeOfTest'', N''Long time'', 2, N''DC'', 1, N''TestNCR'')
1415INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (229, N''TypeOfTest'', N''Short time
1416'', 2, N''DC'', 1, N''TestNCR'')
1417INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (230, N''TypeOfTest'', N''Polarity reversal'', 2, N''DC'', 1, N''TestNCR'')
1418INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (231, N''TypeOfTest'', N''AC'', 1, NULL, 1, N''TestNCR'')
1419INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (232, N''TypeOfTest'', N''Applied
1420'', 2, N''AC'', 1, N''TestNCR'')
1421INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (233, N''TypeOfTest'', N''Induced'', 2, N''AC'', 1, N''TestNCR'')
1422INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (234, N''TypeOfTest'', N''Flashover
1423'', 3, N''Induced'', 1, N''TestNCR'')
1424INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (235, N''TypeOfTest'', N''Flashover
1425'', 3, N''Applied
1426'', 1, N''TestNCR'')
1427INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (236, N''TypeOfTest'', N''PD'', 3, N''Induced'', 1, N''TestNCR'')
1428INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (237, N''TypeOfTest'', N''PD'', 3, N''Applied
1429'', 1, N''TestNCR'')
1430INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (238, N''TypeOfTest'', N''SI (Switching impulse)'', 1, NULL, 1, N''TestNCR'')
1431INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (239, N''TypeOfTest'', N''External flashover
1432'', 3, N''SI (Switching impulse)'', 1, N''TestNCR'')
1433INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (240, N''TypeOfTest'', N''Internal flashover
1434'', 3, N''SI (Switching impulse)'', 1, N''TestNCR'')
1435INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (241, N''TypeOfTest'', N''Chopped wave'', 2, N''LI (Lightning impulse)'', 1, N''TestNCR'')
1436INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (242, N''TypeOfTest'', N''Deviation before chopping'', 3, N''Chopped wave'', 1, N''TestNCR'')
1437INSERT [dbo].[FailureDescription] ([ID], [Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (243, N''TypeOfTest'', N''Deviation after chopping'', 3, N''Chopped wave'', 1, N''TestNCR'')
1438SET IDENTITY_INSERT [dbo].[FailureDescription] OFF
1439
1440
1441INSERT [dbo].[Roles] ([ID], [Name], [DesignSystem], [Factory]) VALUES (N''1d612311-ae12-4140-87e1-005f1646e05b'', N''Cordoba'', N''SpecTra'', N''Cordoba'')
1442INSERT [dbo].[Roles] ([ID], [Name], [DesignSystem], [Factory]) VALUES (N''151e746d-b7c4-4d62-b9ad-025be1ab70fa'', N''Zhongshan'', N''SpecTra'', N''Zhongshan'')
1443INSERT [dbo].[Roles] ([ID], [Name], [DesignSystem], [Factory]) VALUES (N''e70f524d-541f-44c6-a083-0707d3a13f34'', N''Ludvika'', N''SpecTra'', N''Ludvika'')
1444INSERT [dbo].[Roles] ([ID], [Name], [DesignSystem], [Factory]) VALUES (N''155ff590-ffdb-432b-9e59-07342a39fae1'', N''Istanbul'', N''SpecTra'', N''Istanbul'')
1445INSERT [dbo].[Roles] ([ID], [Name], [DesignSystem], [Factory]) VALUES (N''e2afa454-c7e9-4ea3-844a-0c35691b69d0'', N''Baroda'', N''SpecTra'', N''Vadodara'')
1446INSERT [dbo].[Roles] ([ID], [Name], [DesignSystem], [Factory]) VALUES (N''d3c22ba0-096d-4fc8-b93b-18e0ed671a36'', N''Vadodara'', N''SpecTra'', N''Vadodara'')
1447INSERT [dbo].[Roles] ([ID], [Name], [DesignSystem], [Factory]) VALUES (N''10d811e3-35f9-43d9-b0ae-1ae61b4a9e8c'', N''Pereira'', N''SpecTra'', N''Pereira'')
1448INSERT [dbo].[Roles] ([ID], [Name], [DesignSystem], [Factory]) VALUES (N''8a6e8f29-02fd-4126-a819-20025cbd9229'', N''Chongqing'', N''SpecTra'', N''Chongqing'')
1449INSERT [dbo].[Roles] ([ID], [Name], [DesignSystem], [Factory]) VALUES (N''31a2a1b8-235d-4c73-beaa-2d09b91b4a3a'', N''South Boston'', N''CDS'', N''South Boston'')
1450INSERT [dbo].[Roles] ([ID], [Name], [DesignSystem], [Factory]) VALUES (N''f5672752-9616-4819-9254-38a79ff112f9'', N''Zhongshan'', N''CDS'', N''Zhongshan'')
1451INSERT [dbo].[Roles] ([ID], [Name], [DesignSystem], [Factory]) VALUES (N''df14cc2e-04c2-4e43-847b-402e0ebbbe97'', N''Vaasa'', N''SpecTra'', N''Vaasa'')
1452INSERT [dbo].[Roles] ([ID], [Name], [DesignSystem], [Factory]) VALUES (N''10639908-1114-4095-a545-57e57fea553f'', N''Guarulhos'', N''SpecTra'', N''Guarulhos'')
1453INSERT [dbo].[Roles] ([ID], [Name], [DesignSystem], [Factory]) VALUES (N''f95d331d-f601-40dd-a610-603a9321d2b4'', N''Hanoi'', N''SpecTra'', N''Hanoi'')
1454INSERT [dbo].[Roles] ([ID], [Name], [DesignSystem], [Factory]) VALUES (N''99783769-08a3-44d6-bf0e-63de32e40912'', N''St. Louis'', N''SpecTra'', N''St. Louis'')
1455INSERT [dbo].[Roles] ([ID], [Name], [DesignSystem], [Factory]) VALUES (N''f0aef6ad-726b-4718-8834-750aaafd2ab8'', N''Development All'', N''SpecTra'', N''ALL'')
1456INSERT [dbo].[Roles] ([ID], [Name], [DesignSystem], [Factory]) VALUES (N''f0aef6ad-726b-4718-8834-750aaafd2ab9'', N''Development CDS'', N''CDS'', N''ALL'')
1457INSERT [dbo].[Roles] ([ID], [Name], [DesignSystem], [Factory]) VALUES (N''0201003f-1c0b-4b31-b9fd-81008b8920cb'', N''Hanoi'', N''CDS'', N''Hanoi'')
1458INSERT [dbo].[Roles] ([ID], [Name], [DesignSystem], [Factory]) VALUES (N''262e0a48-a2ea-4d4e-8a16-8beb69846771'', N''Hefei'', N''SpecTra'', N''Hefei'')
1459INSERT [dbo].[Roles] ([ID], [Name], [DesignSystem], [Factory]) VALUES (N''e5faef2b-4e25-449a-9f80-93dba5a5576b'', N''Vadodara'', N''Spectra'', N''Baroda'')
1460INSERT [dbo].[Roles] ([ID], [Name], [DesignSystem], [Factory]) VALUES (N''24c95c12-f513-4004-a070-9aa69e6a3a98'', N''Monselice'', N''CDS'', N''Monselice'')
1461INSERT [dbo].[Roles] ([ID], [Name], [DesignSystem], [Factory]) VALUES (N''11fc8d0a-3570-486f-9f1f-9b7d196d36fd'', N''Varennes'', N''SpecTra'', N''Varennes'')
1462INSERT [dbo].[Roles] ([ID], [Name], [DesignSystem], [Factory]) VALUES (N''5a4949cc-7407-4a3c-8b51-a50d4f8ce574'', N''Guelph'', N''SpecTra'', N''Guelph'')
1463INSERT [dbo].[Roles] ([ID], [Name], [DesignSystem], [Factory]) VALUES (N''ab593676-5d5e-4c6e-ae44-a604388f997b'', N''Lodz PT'', N''SpecTra'', N''Lodz PT'')
1464INSERT [dbo].[Roles] ([ID], [Name], [DesignSystem], [Factory]) VALUES (N''3c937e1b-5954-4933-aa8a-b0648bd08354'', N''Geneva'', N''SpecTra'', N''Geneva'')
1465INSERT [dbo].[Roles] ([ID], [Name], [DesignSystem], [Factory]) VALUES (N''28c6ddcf-3982-410e-ae7a-b28db8ddb10e'', N''Bad Honnef'', N''SpecTra'', N''Bad Honnef'')
1466INSERT [dbo].[Roles] ([ID], [Name], [DesignSystem], [Factory]) VALUES (N''90ed5c3d-634e-4fb0-9ad4-bc3006a64f35'', N''Vaasa'', N''CDS'', N''Vaasa'')
1467INSERT [dbo].[Roles] ([ID], [Name], [DesignSystem], [Factory]) VALUES (N''581b5b40-a41a-4241-b6d3-c35b107b6544'', N''Development Limited'', N''SpecTra'', N''Development'')
1468INSERT [dbo].[Roles] ([ID], [Name], [DesignSystem], [Factory]) VALUES (N''4a73f166-f394-44b1-a0de-cc34c2a7a851'', N''Bangkok'', N''SpecTra'', N''Bangkok'')
1469INSERT [dbo].[Roles] ([ID], [Name], [DesignSystem], [Factory]) VALUES (N''4557b4f3-15d4-492d-a7e3-cf48a10e3b81'', N''Drammen'', N''SpecTra'', N''Drammen'')
1470INSERT [dbo].[Roles] ([ID], [Name], [DesignSystem], [Factory]) VALUES (N''4e283da6-358c-4e98-9760-d65bdd8b8382'', N''Crystal Springs'', N''CDS'', N''Crystal Springs'')
1471INSERT [dbo].[Roles] ([ID], [Name], [DesignSystem], [Factory]) VALUES (N''2dacfbff-5860-4876-a860-d937b0d7b309'', N''Pereira'', N''CDS'', N''Pereira'')
1472INSERT [dbo].[Roles] ([ID], [Name], [DesignSystem], [Factory]) VALUES (N''670e24b5-9bd8-4941-8c03-e2297f3f3df5'', N''Bilbao'', N''SpecTra'', N''Bilbao'')
1473
1474
1475SET IDENTITY_INSERT [dbo].[Tags] ON
1476INSERT [dbo].[Tags] ([Tag], [ID]) VALUES (N''Design'', 1)
1477INSERT [dbo].[Tags] ([Tag], [ID]) VALUES (N''Production'', 2)
1478INSERT [dbo].[Tags] ([Tag], [ID]) VALUES (N''Quality'', 3)
1479INSERT [dbo].[Tags] ([Tag], [ID]) VALUES (N''SCM'', 4)
1480SET IDENTITY_INSERT [dbo].[Tags] OFF
1481
1482SET IDENTITY_INSERT [dbo].[TypeDesigns] ON
1483INSERT [dbo].[TypeDesigns] ([Name], [IsActive], [ID]) VALUES (N''TrafoStar'', 1, 1)
1484INSERT [dbo].[TypeDesigns] ([Name], [IsActive], [ID]) VALUES (N''LDT (ANSI)'', 1, 2)
1485INSERT [dbo].[TypeDesigns] ([Name], [IsActive], [ID]) VALUES (N''SPT'', 1, 3)
1486INSERT [dbo].[TypeDesigns] ([Name], [IsActive], [ID]) VALUES (N''LDT+'', 1, 4)
1487INSERT [dbo].[TypeDesigns] ([Name], [IsActive], [ID]) VALUES (N''Local design'', 1, 5)
1488SET IDENTITY_INSERT [dbo].[TypeDesigns] OFF
1489
1490SET IDENTITY_INSERT [dbo].[Locations] ON
1491INSERT [dbo].[Locations] ([ID], [PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (1, NULL, N''Alrode'', N''9AAE315124'', N''9AAE201317'', NULL, 0, N''SPT'', N'' Small Power Transformer'', NULL)
1492INSERT [dbo].[Locations] ([ID], [PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (2, N''DE'', N''Bad Honnef'', N''9AAE314916'', N''9AAE200382'', NULL, 1, N''SPT'', N'' Small Power Transformer'', NULL)
1493INSERT [dbo].[Locations] ([ID], [PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (3, N''DE'', N''Bad Honnef'', N''9AAE300598'', N''9AAE200382'', NULL, 1, N''LMPT'', N'' Large and Medium Power Transformer'', NULL)
1494INSERT [dbo].[Locations] ([ID], [PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (4, N''KC'', N''Chongqing'', N''9AAE303808'', N''9AAE200267'', NULL, 1, N''SPT'', N'' Small Power Transformer'', NULL)
1495INSERT [dbo].[Locations] ([ID], [PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (5, N''KC'', N''Chongqing'', N''9AAE300042'', N''9AAE200267'', NULL, 1, N''LMPT'', N'' Large and Medium Power Transformer'', NULL)
1496INSERT [dbo].[Locations] ([ID], [PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (6, NULL, N''Córdoba'', N''9AAE300085'', N''9AAE200435'', NULL, 1, N''LMPT'', N'' Large and Medium Power Transformer'', N''Cordoba'')
1497INSERT [dbo].[Locations] ([ID], [PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (7, NULL, N''Córdoba'', N''9AAE314915'', N''9AAE200435'', NULL, 1, N''SPT'', N'' Small Power Transformer'', N''Cordoba'')
1498INSERT [dbo].[Locations] ([ID], [PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (8, N''UC'', N''Crystal Springs'', N''9AAE304285'', N''9AAE202490'', NULL, 1, N''SPT'', N'' Small Power Transformer'', NULL)
1499INSERT [dbo].[Locations] ([ID], [PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (9, NULL, N''Datong'', N''9AAE301067'', N''9AAE201464'', NULL, 0, N''SPT'', N'' Small Power Transformer'', NULL)
1500INSERT [dbo].[Locations] ([ID], [PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (10, NULL, N''Dosquebradas'', N''9AAE300060'', N''9AAE200290'', NULL, 1, N''SPT'', N'' Small Power Transformer'', N''Pereira'')
1501INSERT [dbo].[Locations] ([ID], [PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (11, NULL, N''Dosquebradas'', N''9AAE310594'', N''9AAE200290'', NULL, 1, N''LMPT'', N'' Large and Medium Power Transformer'', N''Pereira'')
1502INSERT [dbo].[Locations] ([ID], [PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (12, NULL, N''Genève'', N''9AAE300039'', N''9AAE200227'', NULL, 0, N''SPT'', N'' Small Power Transformer'', NULL)
1503INSERT [dbo].[Locations] ([ID], [PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (13, N''BR'', N''Guarulhos'', N''9AAE300476'', N''9AAE200074'', NULL, 1, N''SPT'', N'' Small Power Transformer'', NULL)
1504INSERT [dbo].[Locations] ([ID], [PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (14, N''BR'', N''Guarulhos'', N''9AAE300014'', N''9AAE200074'', NULL, 1, N''LMPT'', N'' Large and Medium Power Transformer'', NULL)
1505INSERT [dbo].[Locations] ([ID], [PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (15, N''CG'', N''Guelph'', N''9AAE300020'', N''9AAE200112'', NULL, 0, N''SPT'', N'' Small Power Transformer'', NULL)
1506INSERT [dbo].[Locations] ([ID], [PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (16, NULL, N''Halle (Saale)'', N''9AAE300072'', N''9AAE200384'', NULL, 0, N''SPT'', N'' Small Power Transformer'', NULL)
1507INSERT [dbo].[Locations] ([ID], [PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (17, N''VN'', N''Hanoi'', N''9AAE300192'', N''9AAE201010'', NULL, 1, N''SPT'', N'' Small Power Transformer'', NULL)
1508INSERT [dbo].[Locations] ([ID], [PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (18, N''VN'', N''Hanoi'', N''9AAE390091'', N''9AAE201010'', NULL, 1, N''LMPT'', N'' Large and Medium Power Transformer'', NULL)
1509INSERT [dbo].[Locations] ([ID], [PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (19, N''KH'', N''Hefei'', N''9AAE300503'', N''9AAE200283'', NULL, 1, N''SPT'', N'' Small Power Transformer'', NULL)
1510INSERT [dbo].[Locations] ([ID], [PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (20, N''KH'', N''Hefei'', N''9AAE300504'', N''9AAE200283'', NULL, 1, N''LMPT'', N'' Large and Medium Power Transformer'', NULL)
1511INSERT [dbo].[Locations] ([ID], [PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (21, N''TR'', N''Istanbul'', N''9AAE301137'', N''9AAE200887'', NULL, 1, N''SPT'', N'' Small Power Transformer'', NULL)
1512INSERT [dbo].[Locations] ([ID], [PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (22, N''TR'', N''Istanbul'', N''9AAE303167'', N''9AAE200891'', NULL, 1, N''SPT'', N'' Small Power Transformer'', N''Istanbul DT'')
1513INSERT [dbo].[Locations] ([ID], [PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (23, N''TR'', N''Istanbul'', N''9AAE301138'', N''9AAE200887'', NULL, 1, N''LMPT'', N'' Large and Medium Power Transformer'', NULL)
1514INSERT [dbo].[Locations] ([ID], [PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (24, N''TR'', N''İstanbul'', N''9AAE312350'', N''9AAE204086'', NULL, 0, N''LMPT'', N'' Large and Medium Power Transformer'', NULL)
1515INSERT [dbo].[Locations] ([ID], [PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (25, N''TR'', N''Istanbul'', N''9AAE300841'', N''9AAE200886'', NULL, 0, N''SPT'', N'' Small Power Transformer'', NULL)
1516INSERT [dbo].[Locations] ([ID], [PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (26, NULL, N''Johannesburg'', N''9AAE300889'', N''9AAE201017'', NULL, 0, N''SPT'', N'' Small Power Transformer'', NULL)
1517INSERT [dbo].[Locations] ([ID], [PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (27, NULL, N''Lima'', N''9AAE300777'', N''9AAE200708'', NULL, 0, N''SPT'', N'' Small Power Transformer'', NULL)
1518INSERT [dbo].[Locations] ([ID], [PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (28, N''PL'', N''Łódź'', N''9AAE301126'', N''9AAE200716'', NULL, 1, N''LMPT'', N'' Large and Medium Power Transformer'', N''Lodz PT'')
1519INSERT [dbo].[Locations] ([ID], [PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (29, N''PL'', N''Łódź'', N''9AAE301066'', N''9AAE200716'', NULL, 1, N''SPT'', N'' Small Power Transformer'', N''Lodz PT'')
1520INSERT [dbo].[Locations] ([ID], [PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (30, N''PL'', N''Łódź'', N''9AAE311210'', N''9AAE203762'', NULL, 0, N''SPT'', N'' Small Power Transformer'', N''Lodz PT'')
1521INSERT [dbo].[Locations] ([ID], [PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (31, N''SE'', N''Ludvika'', N''9AAE312415'', N''9AAE200784'', NULL, 1, N''SPT'', N'' Small Power Transformer'', NULL)
1522INSERT [dbo].[Locations] ([ID], [PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (32, N''SE'', N''Ludvika'', N''9AAE307999'', N''9AAE200784'', NULL, 1, N''LMPT'', N'' Large and Medium Power Transformer'', NULL)
1523INSERT [dbo].[Locations] ([ID], [PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (33, N''SE'', N''Ludvika'', N''9AAE310457'', N''9AAE203958'', NULL, 0, N''LMPT'', N'' Large and Medium Power Transformer'', NULL)
1524INSERT [dbo].[Locations] ([ID], [PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (34, N''SE'', N''Ludvika'', N''9AAE300823'', N''9AAE200838'', NULL, 0, N''LMPT'', N'' Large and Medium Power Transformer'', NULL)
1525INSERT [dbo].[Locations] ([ID], [PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (35, N''SE'', N''Ludvika'', N''9AAE310458'', N''9AAE203958'', NULL, 0, N''SPT'', N'' Small Power Transformer'', NULL)
1526INSERT [dbo].[Locations] ([ID], [PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (36, NULL, N''Monselice'', N''9AAE390092'', N''9AAE202633'', NULL, 1, N''LMPT'', N'' Large and Medium Power Transformer'', NULL)
1527INSERT [dbo].[Locations] ([ID], [PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (37, NULL, N''Monselice'', N''9AAE304659'', N''9AAE202633'', NULL, 1, N''SPT'', N'' Small Power Transformer'', NULL)
1528INSERT [dbo].[Locations] ([ID], [PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (38, NULL, N''Monselice'', N''9AAE300941'', N''9AAE200594'', NULL, 0, N''SPT'', N'' Small Power Transformer'', NULL)
1529INSERT [dbo].[Locations] ([ID], [PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (39, NULL, N''Monselice'', N''9AAE304222'', N''9AAE202438'', NULL, 0, N''SPT'', N'' Small Power Transformer'', NULL)
1530INSERT [dbo].[Locations] ([ID], [PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (40, NULL, N''Pomezia'', N''9AAE304521'', N''9AAE201734'', NULL, 0, N''LMPT'', N'' Large and Medium Power Transformer'', NULL)
1531INSERT [dbo].[Locations] ([ID], [PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (41, NULL, N''Pretoria West'', N''9AAE300194'', N''9AAE201021'', NULL, 0, N''LMPT'', N'' Large and Medium Power Transformer'', NULL)
1532INSERT [dbo].[Locations] ([ID], [PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (42, NULL, N''Pretoria West'', N''9AAE300892'', N''9AAE201021'', NULL, 0, N''SPT'', N'' Small Power Transformer'', NULL)
1533INSERT [dbo].[Locations] ([ID], [PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (43, NULL, N''Saint Louis'', N''9AAE301369'', N''9AAE201002'', NULL, 1, N''LMPT'', N'' Large and Medium Power Transformer'', NULL)
1534INSERT [dbo].[Locations] ([ID], [PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (44, NULL, N''Saint Louis'', N''9AAE301368'', N''9AAE201002'', NULL, 1, N''SPT'', N'' Small Power Transformer'', NULL)
1535INSERT [dbo].[Locations] ([ID], [PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (45, NULL, N''Samutprakarn'', N''9AAE300836'', N''9AAE200877'', NULL, 1, N''SPT'', N'' Small Power Transformer'', N''Bangkok'')
1536INSERT [dbo].[Locations] ([ID], [PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (46, NULL, N''Samutprakarn'', N''9AAE302878'', N''9AAE200877'', NULL, 1, N''LMPT'', N'' Large and Medium Power Transformer'', N''Bangkok'')
1537INSERT [dbo].[Locations] ([ID], [PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (47, NULL, N''Shanghai'', N''9AAE300502'', N''9AAE200281'', NULL, 0, N''SPT'', N'' Small Power Transformer'', NULL)
1538INSERT [dbo].[Locations] ([ID], [PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (48, NULL, N''Singapore'', N''9AAE302877'', N''9AAE201091'', NULL, 0, N''SPT'', N'' Small Power Transformer'', NULL)
1539INSERT [dbo].[Locations] ([ID], [PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (49, N''UB'', N''South Boston'', N''9AAE300177'', N''9AAE200988'', NULL, 0, N''SPT'', N'' Small Power Transformer'', NULL)
1540INSERT [dbo].[Locations] ([ID], [PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (50, N''UB'', N''South Boston'', N''9AAE300853'', N''9AAE201043'', NULL, 1, N''SPT'', N'' Small Power Transformer'', NULL)
1541INSERT [dbo].[Locations] ([ID], [PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (51, N''UB'', N''South Boston'', N''9AAE310593'', N''9AAE201043'', NULL, 1, N''LMPT'', N'' Large and Medium Power Transformer'', NULL)
1542INSERT [dbo].[Locations] ([ID], [PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (52, NULL, N''Trapagarán'', N''9AAE305198'', N''9AAE200437'', NULL, 1, N''LMPT'', N'' Large and Medium Power Transformer'', N''Bilbao'')
1543INSERT [dbo].[Locations] ([ID], [PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (53, NULL, N''Trapagarán'', N''9AAE301068'', N''9AAE200437'', NULL, 1, N''SPT'', N'' Small Power Transformer'', N''Bilbao'')
1544INSERT [dbo].[Locations] ([ID], [PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (54, N''FI'', N''Vaasa'', N''9AAE315485'', N''9AAE204596'', NULL, 1, N''LMPT'', N'' Large and Medium Power Transformer'', NULL)
1545INSERT [dbo].[Locations] ([ID], [PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (55, N''FI'', N''Vaasa'', N''9AAE315487'', N''9AAE204596'', NULL, 1, N''SPT'', N'' Small Power Transformer'', NULL)
1546INSERT [dbo].[Locations] ([ID], [PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (56, N''FI'', N''Vaasa'', N''9AAE301043'', N''9AAE201342'', NULL, 0, N''SPT'', N'' Small Power Transformer'', NULL)
1547INSERT [dbo].[Locations] ([ID], [PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (57, N''FI'', N''Vaasa'', N''9AAE310592'', N''9AAE200462'', NULL, 0, N''LMPT'', N'' Large and Medium Power Transformer'', NULL)
1548INSERT [dbo].[Locations] ([ID], [PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (58, N''FI'', N''Vaasa'', N''9AAE300093'', N''9AAE200468'', NULL, 0, N''SPT'', N'' Small Power Transformer'', NULL)
1549INSERT [dbo].[Locations] ([ID], [PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (59, N''FI'', N''Vaasa'', N''9AAE312414'', N''9AAE201342'', NULL, 0, N''LMPT'', N'' Large and Medium Power Transformer'', NULL)
1550INSERT [dbo].[Locations] ([ID], [PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (60, N''IN'', N''Vadodara'', N''9AAE300107'', N''9AAE200585'', NULL, 1, N''LMPT'', N'' Large and Medium Power Transformer'', N''Baroda'')
1551INSERT [dbo].[Locations] ([ID], [PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (61, N''IN'', N''Vadodara'', N''9AAE313612'', N''9AAE204443'', NULL, 1, N''SPT'', N'' Small Power Transformer'', N''Baroda'')
1552INSERT [dbo].[Locations] ([ID], [PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (62, N''IN'', N''Vadodara'', N''9AAE300686'', N''9AAE200585'', NULL, 0, N''SPT'', N'' Small Power Transformer'', N''Baroda2'')
1553INSERT [dbo].[Locations] ([ID], [PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (63, N''CV'', N''Varennes'', N''9AAE300022'', N''9AAE200114'', NULL, 1, N''LMPT'', N'' Large and Medium Power Transformer'', NULL)
1554INSERT [dbo].[Locations] ([ID], [PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (64, NULL, N''Versailles'', N''9AAE304925'', N''9AAE202489'', NULL, 0, N''SPT'', N'' Small Power Transformer'', NULL)
1555INSERT [dbo].[Locations] ([ID], [PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (65, NULL, N''Versailles'', N''9AAE304290'', N''9AAE202492'', NULL, 0, N''SPT'', N'' Small Power Transformer'', NULL)
1556INSERT [dbo].[Locations] ([ID], [PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (66, NULL, N''Waterford'', N''9AAE305640'', N''9AAE202846'', NULL, 0, N''SPT'', N'' Small Power Transformer'', NULL)
1557INSERT [dbo].[Locations] ([ID], [PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (67, NULL, N''Waterford'', N''9AAE300684'', N''9AAE201158'', NULL, 0, N''SPT'', N'' Small Power Transformer'', NULL)
1558INSERT [dbo].[Locations] ([ID], [PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (68, NULL, N''Waterford'', N''9AAE302866'', N''9AAE201122'', NULL, 0, N''SPT'', N'' Small Power Transformer'', NULL)
1559INSERT [dbo].[Locations] ([ID], [PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (69, N''KZ'', N''Zhongshan'', N''9AAE300507'', N''9AAE200288'', NULL, 1, N''LMPT'', N'' Large and Medium Power Transformer'', NULL)
1560INSERT [dbo].[Locations] ([ID], [PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (70, N''KZ'', N''Zhongshan'', N''9AAE300059'', N''9AAE200288'', NULL, 1, N''SPT'', N'' Small Power Transformer'', NULL)
1561INSERT [dbo].[Locations] ([ID], [PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (71, N''DE'', N''Bad Honnef'', N''9AAE300598'', N''TEST '', NULL, 0, N''LMPT'', N''Medium Power Transformers'', NULL)
1562INSERT [dbo].[Locations] ([ID], [PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (72, NULL, N''test'', N''test '', N''test '', NULL, 1, N''LMPT'', N'' Large and Medium Power Transformer'', NULL)
1563INSERT [dbo].[Locations] ([ID], [PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (73, NULL, N''test'', N''test '', N''test '', NULL, 1, N''SPT'', N'' Small Power Transformer'', NULL)
1564
1565SET IDENTITY_INSERT [dbo].[Locations] OFF'
1566
1567IF(CONTEXT_INFO() = 0x01 AND @@TRANCOUNT > 0)
1568 ROLLBACK
1569GO
1570
1571-- END \20150101.1_Dictionaries.sql
1572
1573-- BEGIN \20161108.1_Dictionaries_update.sql
1574EXEC dbo.K2Util_ExecuteScript 'd5bf3f8e-5df0-443c-97f0-b9498de2f2ca', 0,
1575N'-- =============================================
1576-- GUID:D5BF3F8E-5DF0-443C-97F0-B9498DE2F2CA
1577-- =============================================
1578INSERT [dbo].[FailureDescription] ([Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (N''FaliureDiscovery'', N''Routine DGA'', 1, NULL, 1, N''SrvProd'')
1579INSERT [dbo].[FailureDescription] ([Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (N''FaliureDiscovery'', N''Gas alarm'', 1, NULL, 1, N''SrvProd'')
1580INSERT [dbo].[FailureDescription] ([Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (N''FaliureDiscovery'', N''Temperature alarm'', 1, NULL, 1, N''SrvProd'')
1581INSERT [dbo].[FailureDescription] ([Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (N''FaliureDiscovery'', N''Noise increase'', 1, NULL, 1, N''SrvProd'')
1582INSERT [dbo].[FailureDescription] ([Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (N''FaliureDiscovery'', N''Unit tripped'', 1, NULL, 1, N''SrvProd'')
1583INSERT [dbo].[FailureDescription] ([Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (N''FailureOccurrence'', N''When energized the first time'', 1, NULL, 1, N''SrvProd'')
1584INSERT [dbo].[FailureDescription] ([Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (N''FailureOccurrence'', N''During normal operation'', 1, NULL, 1, N''SrvProd'')
1585INSERT [dbo].[FailureDescription] ([Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (N''FailureOccurrence'', N''During switching operation'', 1, NULL, 1, N''SrvProd'')
1586INSERT [dbo].[FailureDescription] ([Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (N''FailureOccurrence'', N''During tap changer operation'', 1, NULL, 1, N''SrvProd'')
1587INSERT [dbo].[FailureDescription] ([Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (N''FailureOccurrence'', N''During external short circuit'', 1, NULL, 1, N''SrvProd'')
1588INSERT [dbo].[FailureDescription] ([Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (N''FailureOccurrence'', N''During overloading'', 1, NULL, 1, N''SrvProd'')
1589INSERT [dbo].[FailureDescription] ([Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (N''FailureOccurrence'', N''During thunderstorm'', 1, NULL, 1, N''SrvProd'')
1590INSERT [dbo].[FailureDescription] ([Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (N''FailureOccurrence'', N''After maintenance work'', 1, NULL, 1, N''SrvProd'')
1591INSERT [dbo].[FailureDescription] ([Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (N''FailureOccurrence'', N''Other'', 1, NULL, 1, N''SrvProd'')
1592INSERT [dbo].[FailureDescription] ([Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (N''FailureLocation'', N''Core'', 1, NULL, 1, N''SrvProd'')
1593INSERT [dbo].[FailureDescription] ([Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (N''FailureLocation'', N''Winding'', 1, NULL, 1, N''SrvProd'')
1594INSERT [dbo].[FailureDescription] ([Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (N''FailureLocation'', N''Winding Entry'', 1, NULL, 1, N''SrvProd'')
1595INSERT [dbo].[FailureDescription] ([Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (N''FailureLocation'', N''Main Insulation'', 1, NULL, 1, N''SrvProd'')
1596INSERT [dbo].[FailureDescription] ([Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (N''FailureLocation'', N''Cleats and Leads'', 1, NULL, 1, N''SrvProd'')
1597INSERT [dbo].[FailureDescription] ([Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (N''FailureLocation'', N''Bushing'', 1, NULL, 1, N''SrvProd'')
1598INSERT [dbo].[FailureDescription] ([Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (N''FailureLocation'', N''Tank'', 1, NULL, 1, N''SrvProd'')
1599INSERT [dbo].[FailureDescription] ([Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (N''FailureLocation'', N''Tap-Changer'', 1, NULL, 1, N''SrvProd'')
1600INSERT [dbo].[FailureDescription] ([Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (N''FailureLocation'', N''Auxiliary equipment'', 1, NULL, 1, N''SrvProd'')
1601INSERT [dbo].[FailureDescription] ([Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (N''FailureLocation'', N''Other'', 1, NULL, 1, N''SrvProd'')
1602INSERT [dbo].[FailureDescription] ([Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (N''FailureLocation'', N''Not Found'', 1, NULL, 1, N''SrvProd'')
1603INSERT [dbo].[FailureDescription] ([Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (N''FailureCause'', N''Design'', 1, NULL, 1, N''SrvProd'')
1604INSERT [dbo].[FailureDescription] ([Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (N''FailureCause'', N''Production'', 1, NULL, 1, N''SrvProd'')
1605INSERT [dbo].[FailureDescription] ([Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (N''FailureCause'', N''Material'', 1, NULL, 1, N''SrvProd'')
1606INSERT [dbo].[FailureDescription] ([Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (N''FailureCause'', N''Installation'', 1, NULL, 1, N''SrvProd'')
1607INSERT [dbo].[FailureDescription] ([Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (N''FailureCause'', N''Opertaion'', 1, NULL, 1, N''SrvProd'')
1608INSERT [dbo].[FailureDescription] ([Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (N''FailureCause'', N''Other'', 1, NULL, 1, N''SrvProd'')
1609INSERT [dbo].[FailureDescription] ([Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (N''Action'', N''Repair in the field'', 1, NULL, 1, N''SrvProd'')
1610INSERT [dbo].[FailureDescription] ([Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (N''Action'', N''Repair in a repair shop'', 1, NULL, 1, N''SrvProd'')
1611INSERT [dbo].[FailureDescription] ([Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (N''Action'', N''No repair'', 1, NULL, 1, N''SrvProd'')
1612INSERT [dbo].[FailureDescription] ([Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (N''Action'', N''Unknown'', 1, NULL, 1, N''SrvProd'')
1613INSERT [dbo].[FailureDescription] ([Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (N''FaliureDiscovery'', N''Routine DGA'', 1, NULL, 1, N''SrvNCR'')
1614INSERT [dbo].[FailureDescription] ([Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (N''FaliureDiscovery'', N''Gas alarm'', 1, NULL, 1, N''SrvNCR'')
1615INSERT [dbo].[FailureDescription] ([Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (N''FaliureDiscovery'', N''Temperature alarm'', 1, NULL, 1, N''SrvNCR'')
1616INSERT [dbo].[FailureDescription] ([Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (N''FaliureDiscovery'', N''Noise increase'', 1, NULL, 1, N''SrvNCR'')
1617INSERT [dbo].[FailureDescription] ([Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (N''FaliureDiscovery'', N''Unit tripped'', 1, NULL, 1, N''SrvNCR'')
1618INSERT [dbo].[FailureDescription] ([Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (N''FailureOccurrence'', N''When energized the first time'', 1, NULL, 1, N''SrvNCR'')
1619INSERT [dbo].[FailureDescription] ([Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (N''FailureOccurrence'', N''During normal operation'', 1, NULL, 1, N''SrvNCR'')
1620INSERT [dbo].[FailureDescription] ([Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (N''FailureOccurrence'', N''During switching operation'', 1, NULL, 1, N''SrvNCR'')
1621INSERT [dbo].[FailureDescription] ([Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (N''FailureOccurrence'', N''During tap changer operation'', 1, NULL, 1, N''SrvNCR'')
1622INSERT [dbo].[FailureDescription] ([Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (N''FailureOccurrence'', N''During external short circuit'', 1, NULL, 1, N''SrvNCR'')
1623INSERT [dbo].[FailureDescription] ([Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (N''FailureOccurrence'', N''During overloading'', 1, NULL, 1, N''SrvNCR'')
1624INSERT [dbo].[FailureDescription] ([Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (N''FailureOccurrence'', N''During thunderstorm'', 1, NULL, 1, N''SrvNCR'')
1625INSERT [dbo].[FailureDescription] ([Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (N''FailureOccurrence'', N''After maintenance work'', 1, NULL, 1, N''SrvNCR'')
1626INSERT [dbo].[FailureDescription] ([Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (N''FailureOccurrence'', N''Other'', 1, NULL, 1, N''SrvNCR'')
1627INSERT [dbo].[FailureDescription] ([Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (N''FailureLocation'', N''Core'', 1, NULL, 1, N''SrvNCR'')
1628INSERT [dbo].[FailureDescription] ([Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (N''FailureLocation'', N''Winding'', 1, NULL, 1, N''SrvNCR'')
1629INSERT [dbo].[FailureDescription] ([Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (N''FailureLocation'', N''Winding Entry'', 1, NULL, 1, N''SrvNCR'')
1630INSERT [dbo].[FailureDescription] ([Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (N''FailureLocation'', N''Main Insulation'', 1, NULL, 1, N''SrvNCR'')
1631INSERT [dbo].[FailureDescription] ([Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (N''FailureLocation'', N''Cleats and Leads'', 1, NULL, 1, N''SrvNCR'')
1632INSERT [dbo].[FailureDescription] ([Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (N''FailureLocation'', N''Bushing'', 1, NULL, 1, N''SrvNCR'')
1633INSERT [dbo].[FailureDescription] ([Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (N''FailureLocation'', N''Tank'', 1, NULL, 1, N''SrvNCR'')
1634
1635INSERT [dbo].[FailureDescription] ([Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (N''FailureLocation'', N''Tap-Changer'', 1, NULL, 1, N''SrvNCR'')
1636INSERT [dbo].[FailureDescription] ([Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (N''FailureLocation'', N''Auxiliary equipment'', 1, NULL, 1, N''SrvNCR'')
1637INSERT [dbo].[FailureDescription] ([Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (N''FailureLocation'', N''Other'', 1, NULL, 1, N''SrvNCR'')
1638INSERT [dbo].[FailureDescription] ([Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (N''FailureLocation'', N''Not Found'', 1, NULL, 1, N''SrvNCR'')
1639INSERT [dbo].[FailureDescription] ([Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (N''FailureCause'', N''Design'', 1, NULL, 1, N''SrvNCR'')
1640INSERT [dbo].[FailureDescription] ([Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (N''FailureCause'', N''Production'', 1, NULL, 1, N''SrvNCR'')
1641INSERT [dbo].[FailureDescription] ([Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (N''FailureCause'', N''Material'', 1, NULL, 1, N''SrvNCR'')
1642INSERT [dbo].[FailureDescription] ([Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (N''FailureCause'', N''Installation'', 1, NULL, 1, N''SrvNCR'')
1643INSERT [dbo].[FailureDescription] ([Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (N''FailureCause'', N''Opertaion'', 1, NULL, 1, N''SrvNCR'')
1644INSERT [dbo].[FailureDescription] ([Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (N''FailureCause'', N''Other'', 1, NULL, 1, N''SrvNCR'')
1645INSERT [dbo].[FailureDescription] ([Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (N''Action'', N''Repair in the field'', 1, NULL, 1, N''SrvNCR'')
1646INSERT [dbo].[FailureDescription] ([Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (N''Action'', N''Repair in a repair shop'', 1, NULL, 1, N''SrvNCR'')
1647INSERT [dbo].[FailureDescription] ([Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (N''Action'', N''No repair'', 1, NULL, 1, N''SrvNCR'')
1648INSERT [dbo].[FailureDescription] ([Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (N''Action'', N''Unknown'', 1, NULL, 1, N''SrvNCR'')
1649
1650SET IDENTITY_INSERT [dbo].[FailuresTypes] ON
1651INSERT [dbo].[FailuresTypes] ([ID], [FailureTypeCode], [FailureTypeFullName]) VALUES (1, N''TestProd'', N''Test Failure Product'')
1652INSERT [dbo].[FailuresTypes] ([ID], [FailureTypeCode], [FailureTypeFullName]) VALUES (2, N''TestNCR'', N''Test Failure NCR'')
1653INSERT [dbo].[FailuresTypes] ([ID], [FailureTypeCode], [FailureTypeFullName]) VALUES (3, N''SrvProd'', N''Service Failure Product'')
1654INSERT [dbo].[FailuresTypes] ([ID], [FailureTypeCode], [FailureTypeFullName]) VALUES (4, N''SrvNCR'', N''Service Failure NCR'')
1655INSERT [dbo].[FailuresTypes] ([ID], [FailureTypeCode], [FailureTypeFullName]) VALUES (5, N''Field'', N''Field Failure'')
1656SET IDENTITY_INSERT [dbo].[FailuresTypes] OFF
1657
1658
1659UPDATE [dbo].[FailureDescription] SET IsActive = 1
1660WHERE [Type] = ''FaliureDiscovery''
1661AND [Value] =''Gas alarm''
1662AND [Level] = 1
1663AND [PrecedingElement] IS NULL
1664AND [IsActive] = 0
1665AND [FailureType] = ''Field''
1666
1667INSERT INTO [dbo].[Countries] ([CountryCodeISO],[CountryShortName],[IsActive])
1668VALUES (''UD'', ''Unknown / Different'', 1)
1669
1670INSERT INTO [dbo].[Locations] ([Company],[BalID],[LocationID],[IsActive],[MgtOrgCode],[MgtOrgDescription],[CompanyCustomName])
1671VALUES (''Unknown / Different'', ''unkown'', ''unkown'', 1, ''SPT'', ''Small Power Transformer'', ''Unknown / Different'')
1672
1673INSERT INTO [dbo].[Locations] ([Company],[BalID],[LocationID],[IsActive],[MgtOrgCode],[MgtOrgDescription],[CompanyCustomName])
1674VALUES (''Unknown / Different'', ''unkown1'', ''unkown1'', 1, ''LMPT'', '' Large and Medium Power Transformer'', ''Unknown / Different'')'
1675
1676IF(CONTEXT_INFO() = 0x01 AND @@TRANCOUNT > 0)
1677 ROLLBACK
1678GO
1679
1680-- END \20161108.1_Dictionaries_update.sql
1681
1682-- BEGIN \20161122.1_Dictionaries_update.sql
1683EXEC dbo.K2Util_ExecuteScript 'e869988f-ded9-4cf3-8b62-46608eaf2258', 0,
1684N'-- =============================================
1685-- GUID:E869988F-DED9-4CF3-8B62-46608EAF2258
1686-- =============================================
1687
1688INSERT [dbo].[FailureDescription] ([Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (N''FaliureDiscovery'', N''Other'', 1, NULL, 1, N''Field'')
1689INSERT [dbo].[FailureDescription] ([Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (N''FaliureDiscovery'', N''Other'', 1, NULL, 1, N''SrvProd'')
1690INSERT [dbo].[FailureDescription] ([Type], [Value], [Level], [PrecedingElement], [IsActive], [FailureType]) VALUES (N''FaliureDiscovery'', N''Other'', 1, NULL, 1, N''SrvNCR'')
1691
1692UPDATE [dbo].[FailureDescription] SET IsActive = 0
1693 WHERE [Type] = ''FailureLocation''
1694 AND [Value] =''Winding Entry''
1695 AND [Level] = 1
1696 AND [PrecedingElement] IS NULL
1697 AND [IsActive] = 1
1698 AND [FailureType] = ''Field''
1699
1700
1701UPDATE [dbo].[FailureDescription] SET IsActive = 0
1702 WHERE [Type] = ''FailureLocation''
1703 AND [Value] =''Winding Entry''
1704 AND [Level] = 1
1705 AND [PrecedingElement] IS NULL
1706 AND [IsActive] = 1
1707 AND [FailureType] = ''SrvProd''
1708
1709
1710UPDATE [dbo].[FailureDescription] SET IsActive = 0
1711 WHERE [Type] = ''FailureLocation''
1712 AND [Value] =''Winding Entry''
1713 AND [Level] = 1
1714 AND [PrecedingElement] IS NULL
1715 AND [IsActive] = 1
1716 AND [FailureType] = ''SrvNCR'''
1717
1718IF(CONTEXT_INFO() = 0x01 AND @@TRANCOUNT > 0)
1719 ROLLBACK
1720GO
1721
1722-- END \20161122.1_Dictionaries_update.sql
1723
1724-- BEGIN \20161223.1_TRES_Locations.sql
1725EXEC dbo.K2Util_ExecuteScript '19156c56-9eec-4716-9ec0-02f24086833e', 0,
1726N'-- =============================================
1727-- GUID:19156C56-9EEC-4716-9EC0-02F24086833E
1728-- =============================================
1729
1730INSERT [dbo].[Locations] ([PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (NULL, N''Moorebank'', N''9AAE301021'', N''9AAE201126'', NULL, 1, N''TRES'', N'' Transformer Service'', NULL)
1731INSERT [dbo].[Locations] ([PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (NULL, N''Guarulhos'', N''9AAE301009'', N''9AAE200074'', NULL, 1, N''TRES'', N'' Transformer Service'', NULL)
1732INSERT [dbo].[Locations] ([PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (NULL, N''Brampton'', N''9AAE301023'', N''9AAE200089'', NULL, 1, N''TRES'', N'' Transformer Service'', NULL)
1733INSERT [dbo].[Locations] ([PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (NULL, N''Geneve'', N''9AAE301008'', N''9AAE200227'', NULL, 1, N''TRES'', N'' Transformer Service'', NULL)
1734INSERT [dbo].[Locations] ([PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (NULL, N''Abidjan'', N''9AAE304347'', N''9AAE200239'', NULL, 1, N''TRES'', N'' Transformer Service'', NULL)
1735INSERT [dbo].[Locations] ([PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (NULL, N''Santiago'', N''9AAE303046'', N''9AAE201330'', NULL, 1, N''TRES'', N'' Transformer Servicece'', NULL)
1736INSERT [dbo].[Locations] ([PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (NULL, N''Chongqing'', N''9AAE302857'', N''9AAE200267'', NULL, 1, N''TRES'', N'' Transformer Servicece'', NULL)
1737INSERT [dbo].[Locations] ([PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (NULL, N''Datong'', N''9AAE302858'', N''9AAE201464'', NULL, 1, N''TRES'', N'' Transformer Service'', NULL)
1738INSERT [dbo].[Locations] ([PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (NULL, N''Hefei'', N''9AAE314492'', N''9AAE204586'', NULL, 1, N''TRES'', N'' Transformer Service'', NULL)
1739INSERT [dbo].[Locations] ([PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (NULL, N''Zhongshan'', N''9AAE301010'', N''9AAE200288'', NULL, 1, N''TRES'', N'' Transformer Service'', NULL)
1740INSERT [dbo].[Locations] ([PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (NULL, N''Dosquebradas'', N''9AAE302860'', N''9AAE200290'', NULL, 1, N''TRES'', N'' Transformer Service'', N''Pereira'')
1741INSERT [dbo].[Locations] ([PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (NULL, N''Halle (Saale)'', N''9AAE301011'', N''9AAE200384'', NULL, 1, N''TRES'', N'' Transformer Service'', N''Halle'')
1742INSERT [dbo].[Locations] ([PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (NULL, N''Trapagaran'', N''9AAE301026'', N''9AAE200437'', NULL, 1, N''TRES'', N'' Transformer Service'', N''Bilbao'')
1743INSERT [dbo].[Locations] ([PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (NULL, N''Vaasa'', N''9AAE314664'', N''9AAE204596'', NULL, 1, N''TRES'', N'' Transformer Service'', NULL)
1744INSERT [dbo].[Locations] ([PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (NULL, N''Montluel Cedex'', N''9AAE311103'', N''9AAE202734'', NULL, 1, N''TRES'', N'' Transformer Service'', NULL)
1745INSERT [dbo].[Locations] ([PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (NULL, N''Stone'', N''9AAE309374'', N''9AAE200527'', NULL, 1, N''TRES'', N'' Transformer Service'', NULL)
1746INSERT [dbo].[Locations] ([PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (NULL, N''Vadodara'', N''9AAE301012'', N''9AAE200585'', NULL, 1, N''TRES'', N'' Transformer Service'', N''Baroda'')
1747INSERT [dbo].[Locations] ([PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (NULL, N''Monselice'', N''9AAE313915'', N''9AAE202633'', NULL, 1, N''TRES'', N'' Transformer Service'', NULL)
1748INSERT [dbo].[Locations] ([PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (NULL, N''Drammen'', N''9AAE304168'', N''9AAE201631'', NULL, 1, N''TRES'', N'' Transformer Service'', NULL)
1749INSERT [dbo].[Locations] ([PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (NULL, N''Ciudad de Panama'', N''9AAE313683'', N''9AAE204139'', NULL, 1, N''TRES'', N'' Transformer Service'', NULL)
1750INSERT [dbo].[Locations] ([PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (NULL, N''Lima'', N''9AAE301020'', N''9AAE200708'', NULL, 1, N''TRES'', N'' Transformer Service'', NULL)
1751INSERT [dbo].[Locations] ([PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (NULL, N''Jeddah'', N''9AAE311105'', N''9AAE204083'', NULL, 1, N''TRES'', N'' Transformer Service'', NULL)
1752INSERT [dbo].[Locations] ([PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (NULL, N''Ludvika'', N''9AAE308003'', N''9AAE200784'', NULL, 1, N''TRES'', N'' Transformer Service'', NULL)
1753INSERT [dbo].[Locations] ([PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (NULL, N''Singapore'', N''9AAE303805'', N''9AAE200864'', NULL, 1, N''TRES'', N'' Transformer Service'', NULL)
1754INSERT [dbo].[Locations] ([PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (NULL, N''Samutprakarn'', N''9AAE301007'', N''9AAE200877'', NULL, 1, N''TRES'', N'' Transformer Service'', N''Bangkok'')
1755INSERT [dbo].[Locations] ([PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (NULL, N''Istanbul'', N''9AAE301140'', N''9AAE200887'', NULL, 1, N''TRES'', N'' Transformer Service'', N''Istanbul Kartal'')
1756INSERT [dbo].[Locations] ([PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (NULL, N''Istanbul'', N''9AAE311109'', N''9AAE200891'', NULL, 1, N''TRES'', N'' Transformer Service'', N''Istanbul Dudullu'')
1757INSERT [dbo].[Locations] ([PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (NULL, N''Saint Louis'', N''9AAE300872'', N''9AAE201002'', NULL, 1, N''TRES'', N'' Transformer Service'', N''St. Louis'')
1758INSERT [dbo].[Locations] ([PlantCode], [Company], [BalID], [LocationID], [UsersGroup], [IsActive], [MgtOrgCode], [MgtOrgDescription], [CompanyCustomName]) VALUES (NULL, N''Lodz'', N''9AAE302872'', N''9AAE200716'', NULL, 1, N''TRES'', N'' Transformer Service'', N''Lodz PT'')'
1759
1760IF(CONTEXT_INFO() = 0x01 AND @@TRANCOUNT > 0)
1761 ROLLBACK
1762GO
1763
1764-- END \20161223.1_TRES_Locations.sql
1765
1766-- BEGIN \20190328.1_Dictionaries.sql
1767EXEC dbo.K2Util_ExecuteScript '50d83251-4ece-483b-8ff0-fe743fc311bc', 0,
1768N'-- =============================================
1769-- GUID:50D83251-4ECE-483B-8FF0-FE743FC311BC
1770-- =============================================
1771
1772INSERT [dbo].[Dictionaries] ([DictionaryId], [Name]) VALUES (1, N''Failure Types'')
1773INSERT [dbo].[Dictionaries] ([DictionaryId], [Name]) VALUES (2, N''Workflow group scopes'')
1774INSERT [dbo].[Dictionaries] ([DictionaryId], [Name]) VALUES (3, N''Pruduct Groups'')
1775INSERT [dbo].[Dictionaries] ([DictionaryId], [Name]) VALUES (4, N''Notification types'')
1776INSERT [dbo].[Dictionaries] ([DictionaryId], [Name]) VALUES (5, N''Workflow Roles'')
1777INSERT [dbo].[Dictionaries] ([DictionaryId], [Name]) VALUES (6, N''Failure Statuses'')
1778INSERT [dbo].[Dictionaries] ([DictionaryId], [Name]) VALUES (7, N''Task Results'')
1779INSERT [dbo].[Dictionaries] ([DictionaryId], [Name]) VALUES (8, N''Task Types'')
1780INSERT [dbo].[Dictionaries] ([DictionaryId], [Name]) VALUES (9, N''Process Types'')'
1781
1782IF(CONTEXT_INFO() = 0x01 AND @@TRANCOUNT > 0)
1783 ROLLBACK
1784GO
1785
1786EXEC dbo.K2Util_ExecuteScript '50d83251-4ece-483b-8ff0-fe743fc311bc', 1,
1787N'INSERT [dbo].[DictionaryItems] ([DictionaryItemId], [Name], [Code], [DictionaryId], [IsActive], [ItemOrder], [ExternalSystemCode]) VALUES (10001, N''Test Failure Product'', N''TestProd'', 1, 1, NULL, NULL)
1788INSERT [dbo].[DictionaryItems] ([DictionaryItemId], [Name], [Code], [DictionaryId], [IsActive], [ItemOrder], [ExternalSystemCode]) VALUES (10002, N''Test Failure NCR'', N''TestNCR'', 1, 1, NULL, NULL)
1789INSERT [dbo].[DictionaryItems] ([DictionaryItemId], [Name], [Code], [DictionaryId], [IsActive], [ItemOrder], [ExternalSystemCode]) VALUES (10003, N''Service Failure Product'', N''SrvProd'', 1, 1, NULL, NULL)
1790INSERT [dbo].[DictionaryItems] ([DictionaryItemId], [Name], [Code], [DictionaryId], [IsActive], [ItemOrder], [ExternalSystemCode]) VALUES (10004, N''Service Failure NCR'', N''SrvNCR'', 1, 1, NULL, NULL)
1791INSERT [dbo].[DictionaryItems] ([DictionaryItemId], [Name], [Code], [DictionaryId], [IsActive], [ItemOrder], [ExternalSystemCode]) VALUES (10005, N''Field Failure'', N''Field'', 1, 1, NULL, NULL)
1792INSERT [dbo].[DictionaryItems] ([DictionaryItemId], [Name], [Code], [DictionaryId], [IsActive], [ItemOrder], [ExternalSystemCode]) VALUES (20001, N''PG'', N''PG'', 2, 1, NULL, NULL)
1793INSERT [dbo].[DictionaryItems] ([DictionaryItemId], [Name], [Code], [DictionaryId], [IsActive], [ItemOrder], [ExternalSystemCode]) VALUES (20002, N''BU'', N''BU'', 2, 1, NULL, NULL)
1794INSERT [dbo].[DictionaryItems] ([DictionaryItemId], [Name], [Code], [DictionaryId], [IsActive], [ItemOrder], [ExternalSystemCode]) VALUES (30001, N''LMPT'', N''LMPT'', 3, 1, NULL, NULL)
1795INSERT [dbo].[DictionaryItems] ([DictionaryItemId], [Name], [Code], [DictionaryId], [IsActive], [ItemOrder], [ExternalSystemCode]) VALUES (30002, N''SPT'', N''SPT'', 3, 1, NULL, NULL)
1796INSERT [dbo].[DictionaryItems] ([DictionaryItemId], [Name], [Code], [DictionaryId], [IsActive], [ItemOrder], [ExternalSystemCode]) VALUES (30003, N''TRES'', N''TRES'', 3, 1, NULL, NULL)
1797INSERT [dbo].[DictionaryItems] ([DictionaryItemId], [Name], [Code], [DictionaryId], [IsActive], [ItemOrder], [ExternalSystemCode]) VALUES (30004, N''PT'', N''PT'', 3, 1, NULL, NULL)
1798INSERT [dbo].[DictionaryItems] ([DictionaryItemId], [Name], [Code], [DictionaryId], [IsActive], [ItemOrder], [ExternalSystemCode]) VALUES (40001, N''New failure submitted'', NULL, 4, 1, NULL, NULL)
1799INSERT [dbo].[DictionaryItems] ([DictionaryItemId], [Name], [Code], [DictionaryId], [IsActive], [ItemOrder], [ExternalSystemCode]) VALUES (40002, N''Assign expert'', NULL, 4, 1, NULL, NULL)
1800INSERT [dbo].[DictionaryItems] ([DictionaryItemId], [Name], [Code], [DictionaryId], [IsActive], [ItemOrder], [ExternalSystemCode]) VALUES (40003, N''Expert assinged (originator)'', NULL, 4, 1, NULL, NULL)
1801INSERT [dbo].[DictionaryItems] ([DictionaryItemId], [Name], [Code], [DictionaryId], [IsActive], [ItemOrder], [ExternalSystemCode]) VALUES (40004, N''Expert assigned (expert)'', NULL, 4, 1, NULL, NULL)
1802INSERT [dbo].[DictionaryItems] ([DictionaryItemId], [Name], [Code], [DictionaryId], [IsActive], [ItemOrder], [ExternalSystemCode]) VALUES (40005, N''Due date expiration (test)'', NULL, 4, 1, NULL, NULL)
1803INSERT [dbo].[DictionaryItems] ([DictionaryItemId], [Name], [Code], [DictionaryId], [IsActive], [ItemOrder], [ExternalSystemCode]) VALUES (40006, N''Due date expiration (field)'', NULL, 4, 1, NULL, NULL)
1804INSERT [dbo].[DictionaryItems] ([DictionaryItemId], [Name], [Code], [DictionaryId], [IsActive], [ItemOrder], [ExternalSystemCode]) VALUES (40007, N''New Failure Service'', NULL, 4, 1, NULL, NULL)
1805INSERT [dbo].[DictionaryItems] ([DictionaryItemId], [Name], [Code], [DictionaryId], [IsActive], [ItemOrder], [ExternalSystemCode]) VALUES (40008, N''New Failure Field'', NULL, 4, 1, NULL, NULL)
1806INSERT [dbo].[DictionaryItems] ([DictionaryItemId], [Name], [Code], [DictionaryId], [IsActive], [ItemOrder], [ExternalSystemCode]) VALUES (50001, N''Coordinate'', NULL, 5, 1, NULL, NULL)
1807INSERT [dbo].[DictionaryItems] ([DictionaryItemId], [Name], [Code], [DictionaryId], [IsActive], [ItemOrder], [ExternalSystemCode]) VALUES (50002, N''Quality Managers'', NULL, 5, 1, NULL, NULL)
1808INSERT [dbo].[DictionaryItems] ([DictionaryItemId], [Name], [Code], [DictionaryId], [IsActive], [ItemOrder], [ExternalSystemCode]) VALUES (50003, N''Informed'', NULL, 5, 1, NULL, NULL)
1809INSERT [dbo].[DictionaryItems] ([DictionaryItemId], [Name], [Code], [DictionaryId], [IsActive], [ItemOrder], [ExternalSystemCode]) VALUES (60001, N''Plant analysis completed'', N''Plant analysis completed'', 6, 1, NULL, NULL)
1810INSERT [dbo].[DictionaryItems] ([DictionaryItemId], [Name], [Code], [DictionaryId], [IsActive], [ItemOrder], [ExternalSystemCode]) VALUES (60002, N''Plant analysis oning'', N''Plant analysis oning'', 6, 1, NULL, NULL)
1811INSERT [dbo].[DictionaryItems] ([DictionaryItemId], [Name], [Code], [DictionaryId], [IsActive], [ItemOrder], [ExternalSystemCode]) VALUES (60003, N''Plant analysis submitted for review'', N''Plant analysis submitted for review'', 6, 1, NULL, NULL)
1812INSERT [dbo].[DictionaryItems] ([DictionaryItemId], [Name], [Code], [DictionaryId], [IsActive], [ItemOrder], [ExternalSystemCode]) VALUES (60004, N''Report published'', N''Report published'', 6, 1, NULL, NULL)
1813INSERT [dbo].[DictionaryItems] ([DictionaryItemId], [Name], [Code], [DictionaryId], [IsActive], [ItemOrder], [ExternalSystemCode]) VALUES (60005, N''Report submitted for closure'', N''Report submitted for closure'', 6, 1, NULL, NULL)
1814INSERT [dbo].[DictionaryItems] ([DictionaryItemId], [Name], [Code], [DictionaryId], [IsActive], [ItemOrder], [ExternalSystemCode]) VALUES (70001, N''Assigned'', NULL, 7, 1, NULL, NULL)
1815INSERT [dbo].[DictionaryItems] ([DictionaryItemId], [Name], [Code], [DictionaryId], [IsActive], [ItemOrder], [ExternalSystemCode]) VALUES (70002, N''Failure created'', NULL, 7, 1, NULL, NULL)
1816INSERT [dbo].[DictionaryItems] ([DictionaryItemId], [Name], [Code], [DictionaryId], [IsActive], [ItemOrder], [ExternalSystemCode]) VALUES (70003, N''Expert assigned'', NULL, 7, 1, NULL, NULL)
1817INSERT [dbo].[DictionaryItems] ([DictionaryItemId], [Name], [Code], [DictionaryId], [IsActive], [ItemOrder], [ExternalSystemCode]) VALUES (80001, N''Expert Assignment'', NULL, 8, 1, NULL, NULL)
1818INSERT [dbo].[DictionaryItems] ([DictionaryItemId], [Name], [Code], [DictionaryId], [IsActive], [ItemOrder], [ExternalSystemCode]) VALUES (80002, N''New failure'', NULL, 8, 1, NULL, NULL)
1819INSERT [dbo].[DictionaryItems] ([DictionaryItemId], [Name], [Code], [DictionaryId], [IsActive], [ItemOrder], [ExternalSystemCode]) VALUES (90001, N''Failure Process'', NULL, 9, 1, NULL, NULL)'
1820
1821IF(CONTEXT_INFO() = 0x01 AND @@TRANCOUNT > 0)
1822 ROLLBACK
1823GO
1824
1825-- END \20190328.1_Dictionaries.sql
1826
1827-- BEGIN \20190328.2_GlobalParameters.sql
1828EXEC dbo.K2Util_ExecuteScript '44afdc2b-16cc-43c5-8f68-fc873ea8f5b7', 0,
1829N'-- =============================================
1830-- GUID:44AFDC2B-16CC-43C5-8F68-FC873EA8F5B7
1831-- =============================================
1832SET IDENTITY_INSERT [dbo].[GlobalParameters] ON
1833
1834INSERT [dbo].[GlobalParameters] ([ID], [PropertyName], [Value], [Desc]) VALUES (1, N''4QReportTemplateName_Field'', N''templateField.docx new'', N''new'')
1835
1836INSERT [dbo].[GlobalParameters] ([ID], [PropertyName], [Value], [Desc]) VALUES (2, N''4QReportTemplateName_SrvNCR'', N''templateService.docx'', NULL)
1837
1838INSERT [dbo].[GlobalParameters] ([ID], [PropertyName], [Value], [Desc]) VALUES (3, N''4QReportTemplateName_SrvProd'', N''templateService.docx'', NULL)
1839
1840INSERT [dbo].[GlobalParameters] ([ID], [PropertyName], [Value], [Desc]) VALUES (4, N''4QReportTemplateName_TestNCR'', N''template.docx'', NULL)
1841
1842INSERT [dbo].[GlobalParameters] ([ID], [PropertyName], [Value], [Desc]) VALUES (5, N''4QReportTemplateName_TestProd'', N''template.docx'', NULL)
1843
1844INSERT [dbo].[GlobalParameters] ([ID], [PropertyName], [Value], [Desc]) VALUES (6, N''EsterLiquidFilledUnits_Excel'', N''ABB Power Transformers - Ester Reference List v1.02.xlsx'', NULL)
1845
1846INSERT [dbo].[GlobalParameters] ([ID], [PropertyName], [Value], [Desc]) VALUES (7, N''ShortCircuitTestedUnits_Excel'', N''ABB Power Transformers - Short Circuit Reference List v1.1.xlsx'', NULL)
1847
1848INSERT [dbo].[GlobalParameters] ([ID], [PropertyName], [Value], [Desc]) VALUES (8, N''SenderAddress'', N'''', NULL)
1849
1850INSERT [dbo].[GlobalParameters] ([ID], [PropertyName], [Value], [Desc]) VALUES (9, N''AppUrl'', N'''', N''test'')
1851
1852INSERT [dbo].[GlobalParameters] ([ID], [PropertyName], [Value], [Desc]) VALUES (10, N''GlobalAddress'', N'''', NULL)
1853
1854INSERT [dbo].[GlobalParameters] ([ID], [PropertyName], [Value], [Desc]) VALUES (11, N''SendOnlyToGlobal'', N'''', NULL)
1855
1856SET IDENTITY_INSERT [dbo].[GlobalParameters] OFF'
1857
1858IF(CONTEXT_INFO() = 0x01 AND @@TRANCOUNT > 0)
1859 ROLLBACK
1860GO
1861
1862-- END \20190328.2_GlobalParameters.sql
1863
1864-- BEGIN \20190328.3_NotificationTemplates.sql
1865EXEC dbo.K2Util_ExecuteScript '9fb67ca9-6fc4-45f8-acef-33fc16f17bfc', 0,
1866N'-- =============================================
1867-- GUID:9FB67CA9-6FC4-45F8-ACEF-33FC16F17BFC
1868-- =============================================
1869
1870SET IDENTITY_INSERT [dbo].[NotificationTemplates] ON
1871
1872INSERT [dbo].[NotificationTemplates] ([Id], [NotificationTypeId], [FailureTypeId], [SubjectTemplate], [ContentTemplate]) VALUES (1, 40001, 10001, N''A new {{FAILURE_REPORT_TYPE}} has been reported by {{COMPANY}} PGU ({{MGM_ORG}}) for a {{MVA}} MVA unit SN {{SERIAL_NUMBER}}'', N''<style>
1873body, p {
1874 font-family: "Calibri",sans-serif;
1875 font-size: 11.0pt;
1876}
1877
1878thead {
1879 font-weight: bold;
1880}
1881table {
1882 border-collapse: collapse;
1883}
1884td {
1885 border-color: #A6A6A6;
1886}
1887td {
1888 padding: 5px;
1889}
1890th {
1891 text-align: left;
1892}
1893.label {
1894 font-weight: normal;
1895 border: 1px solid #A6A6A6;
1896 border-right: none;
1897}
1898.value {
1899 border: 1px solid #A6A6A6;
1900 border-left: none;
1901}
1902.separator{
1903 display: none;
1904}
1905.footer {
1906 font-family: "Calibri",sans-serif;
1907 font-size: 8.0pt;
1908 color: #A6A6A6
1909}
1910#typeOfTest {
1911 border-collapse: collapse;
1912 border: 1px solid #A6A6A6;
1913}
1914#firstParagraph {
1915 font-weight: bold;
1916 font-size: 16px;
1917 margin-bottom: -20px;
1918}
1919#secondParagraph {
1920 font-weight: bold;
1921 font-size: 20px;
1922 margin-bottom: -20px;
1923}
1924#thirdParagraph {
1925 font-weight: bold;
1926 font-size: 18px;
1927}
1928</style>
1929
1930<p id="firstParagraph">TRANSFORMER METRICS</p>
1931
1932<p id="secondParagraph">New Test Failure Product has been submitted </p>
1933
1934<p id="thirdParagraph">For information purposes, no action required </p>
1935<p>
1936Failure reported by: {{REPORTED_BY}}
1937<br>
1938Failure reported date: {{REPORTED_DATE}}
1939</p>
1940
1941
1942<table id="order">
1943 <thead>
1944 <th>Order</th>
1945 </thead>
1946 <tbody>
1947 <tr>
1948 <td class="label">Company</td>
1949 <td class="value">{{COMPANY}}</td>
1950 <td class="label">Management Organization</td>
1951 <td class="value">{{MGM_ORG}}</td>
1952 </tr>
1953 <tr>
1954 <td class="label">Serial Number</td>
1955 <td class="value"> {{SERIAL_NUMBER}}</td>
1956 <td class="label">Order Number</td>
1957 <td class="value">{{CCPQuote}} - {{CCPItem}}</td>
1958 </tr>
1959 <tr>
1960 <td class="label">Customer</td>
1961 <td class="value">{{CUSTOMER}}</td>
1962 <td class="label">Customer Country</td>
1963 <td class="value">{{CUSTOMER_COUNTRY}}</td>
1964 <td class="label">Customer Segment</td>
1965 <td class="value">{{CUSTOMER_SEGMENT}}</td>
1966 </tr>
1967 <tr>
1968 <td class="label">Product Type</td>
1969 <td class="value">{{PRODUCT_TYPE}}</td>
1970 <td class="label">Country Installation</td>
1971 <td class="value">{{COUNTRY_INSTALLATION}}</td>
1972 <td class="label">Install Site</td>
1973 <td class="value">{{INSTALL_SITE}}</td>
1974 </tr>
1975 <tr>
1976 <td class="label">Short Circuit Test Planned</td>
1977 <td class="value">{{SHORT_CIRCUIT_TEST_PLANNED}}</td>
1978 </tr>
1979 <tr>
1980 <td class="label">Month / Year Received</td>
1981 <td class="value">{{MONTH_RECEIVED}}/{{YEAR_RECEIVED}}</td>
1982 </tr>
1983
1984 </tbody>
1985</table>
1986<br><br>
1987
1988<table id="design">
1989 <thead>
1990 <th>Design</th>
1991
1992 </thead>
1993
1994 <tbody>
1995 <tr>
1996 <td class="label">MVA</td>
1997 <td class="value">{{MVA}}</td>
1998 <td class="label">kV</td>
1999 <td class="value">{{KV}}</td>
2000 <td class="label">BIL(of the HV)</td>
2001 <td class="value">{{BIL}}</td>
2002 <td class="label">Phases</td>
2003 <td class="value">{{PHASES}}</td>
2004 </tr>
2005 <tr>
2006 <td class="label">Tap Changer OLTC</td>
2007 <td class="value">{{TAP_CHANGER_OLTC}}</td>
2008 <td class="label">Tap Changer DETC</td>
2009 <td class="value">{{TAP_CHANGER_DETC}}</td>
2010 <td class="label">Insulation Fluid</td>
2011 <td class="value">{{INSULATION_FLUID}}<td>
2012 </tr>
2013 <tr>
2014 <td class="label">Regulation</td>
2015 <td class="value">{{REGULATION}}</td>
2016 <td class="label">Frequency (Hz)</td>
2017 <td class="value">{{FREQUENCY}}</td>
2018 <td class="label">Winding Arrangement</td>
2019 <td class="value">{{WINDING_ARRANGEMENT}}</td>
2020 </tr>
2021 <tr>
2022 <td class="label">Type Design</td>
2023 <td class="value">{{TYPE_DESIGN}}</td>
2024 </tr>
2025
2026 </tbody>
2027</table>
2028<br><br>
2029
2030<table id="typeOfTest">
2031 <thead>
2032 <th>Type Of Test</th>
2033
2034 </thead>
2035 <tbody>
2036 <tr>
2037 <td class="label">{{TYPE_OF_TEST}}</td>
2038 </tr>
2039
2040 </tbody>
2041</table>
2042<br><br>
2043
2044<table id="typeOfTest">
2045 <thead>
2046 <th>Unit failure initial description:</th>
2047
2048 </thead>
2049 <tbody>
2050 <tr>
2051 <td class="label">{{Q1Measure}}</td>
2052 </tr>
2053
2054 </tbody>
2055</table>
2056
2057<p>
2058Click this <a href="{{APP_URL}}failure/{{FAILURE_ID}}/preview">link<a/> to open the corresponding 4Q form.
2059</p>
2060<p class="footer">This email has been generated automatically, please do not respond.</p>
2061'')
2062
2063INSERT [dbo].[NotificationTemplates] ([Id], [NotificationTypeId], [FailureTypeId], [SubjectTemplate], [ContentTemplate]) VALUES (2, 40002, NULL, N''A new {{FAILURE_REPORT_TYPE}} has been reported by {{COMPANY}} PGU ({{MGM_ORG}}) for a {{MVA}} MVA unit SN {{SERIAL_NUMBER}}, Assign an expert.'', N''<style>
2064body, p {
2065 font-family: "Calibri",sans-serif;
2066 font-size: 11.0pt;
2067}
2068
2069thead {
2070 font-weight: bold;
2071}
2072
2073table {
2074 border-collapse: collapse;
2075}
2076
2077td {
2078 border-color: #A6A6A6;
2079}
2080
2081td {
2082 padding: 5px;
2083}
2084
2085th {
2086 text-align: left;
2087}
2088
2089.label {
2090 font-weight: normal;
2091 border: 1px solid #A6A6A6;
2092 border-right: none;
2093}
2094
2095.value {
2096 border: 1px solid #A6A6A6;
2097 border-left: none;
2098}
2099
2100.separator{
2101 display: none;
2102}
2103
2104.footer {
2105 font-family: "Calibri",sans-serif;
2106 font-size: 8.0pt;
2107 color: #A6A6A6
2108}
2109#typeOfTest {
2110 border-collapse: collapse;
2111 border: 1px solid #A6A6A6;
2112}
2113
2114</style>
2115
2116
2117<p>A new product test failure has been submitted to Transformer Metrics database.</p>
2118<p>
2119Failure reported by: {{REPORTED_BY}}<br>
2120Failure reported date: {{REPORTED_DATE}}
2121</p>
2122
2123
2124<table id="order">
2125 <thead>
2126 <th>Order</th>
2127 </thead>
2128 <tbody>
2129 <tr>
2130 <td class="label">Company</td>
2131 <td class="value">{{COMPANY}}</td>
2132 <td class="label">Management Organization</td>
2133 <td class="value">{{MGM_ORG}}</td>
2134 </tr>
2135 <tr>
2136 <td class="label">Serial Number</td>
2137 <td class="value">{{SERIAL_NUMBER}}</td>
2138 <td class="label">Order Number</td>
2139 <td class="value">{{CCPQuote}} - {{CCPItem}}</td>
2140 </tr>
2141 <tr>
2142 <td class="label">Customer</td>
2143 <td class="value">{{CUSTOMER}}</td>
2144 <td class="label">Customer Country</td>
2145 <td class="value">{{CUSTOMER_COUNTRY}}</td>
2146 <td class="label">Customer Segment</td>
2147 <td class="value">{{CUSTOMER_SEGMENT}}</td>
2148 </tr>
2149 <tr>
2150 <td class="label">Product Type</td>
2151 <td class="value">{{PRODUCT_TYPE}}</td>
2152 <td class="label">Country Installation</td>
2153 <td class="value">{{COUNTRY_INSTALLATION}}</td>
2154 <td class="label">Install Site</td>
2155 <td class="value">{{INSTALL_SITE}}</td>
2156 </tr>
2157 <tr>
2158 <td class="label">Short Circuit Test Planned</td>
2159 <td class="value">{{SHORT_CIRCUIT_TEST_PLANNED}}</td>
2160 </tr>
2161 <tr>
2162 <td class="label">Month / Year Received</td>
2163 <td class="value">{{MONTH_RECEIVED}}/{{YEAR_RECEIVED}}</td>
2164 </tr>
2165
2166 </tbody>
2167</table>
2168<br><br>
2169
2170<table id="design">
2171 <thead>
2172 <th>Design</th>
2173 </thead>
2174
2175 <tbody>
2176 <tr>
2177 <td class="label">MVA</td>
2178 <td class="value">{{MVA}}</td>
2179 <td class="label">kV</td>
2180 <td class="value">{{KV}}</td>
2181 <td class="label">BIL(of the HV)</td>
2182 <td class="value">{{BIL}}</td>
2183 <td class="label">Phases</td>
2184 <td class="value">{{PHASES}}</td>
2185 </tr>
2186 <tr>
2187 <td class="label">Tap Changer OLTC</td>
2188 <td class="value">{{TAP_CHANGER_OLTC}}</td>
2189 <td class="label">Tap Changer DETC</td>
2190 <td class="value">{{TAP_CHANGER_DETC}}</td>
2191 <td class="label">Insulation Fluid</td>
2192 <td class="value">{{INSULATION_FLUID}}</td>
2193 </tr>
2194 <tr>
2195 <td class="label">Regulation</td>
2196 <td class="value">{{REGULATION}}</td>
2197 <td class="label">Frequency (Hz)</td>
2198 <td class="value">{{FREQUENCY}}</td>
2199 <td class="label">Winding Arrangement</td>
2200 <td class="value">{{WINDING_ARRANGEMENT}}</td>
2201 </tr>
2202 <tr>
2203 <td class="label">Type Design</td>
2204 <td class="value">{{TYPE_DESIGN}}</td>
2205 </tr>
2206
2207 </tbody>
2208</table>
2209<br><br>
2210
2211<table id="typeOfTest">
2212 <thead>
2213 <th>Type Of Test</th>
2214 </thead>
2215 <tbody>
2216 <tr>
2217 <td class="label">{{TYPE_OF_TEST}}</td>
2218 </tr>
2219 </tbody>
2220</table>
2221<br><br>
2222
2223<table id="typeOfTest">
2224 <thead>
2225 <th>Unit failure initial description:</th>
2226
2227 </thead>
2228 <tbody>
2229 <tr>
2230 <td class="label">{{Q1Measure}}</td>
2231 </tr>
2232
2233 </tbody>
2234</table>
2235
2236 <p>
2237Please click this <a href="{{APP_URL}}failure/task/{{FAILURE_ID}}/{{PROCESS_SERIAL_NUMBER}}">link</a><span> </span>to open the corresponding 4Q form and assign an expert.
2238</p>
2239
2240<p class="footer">This email has been generated automatically, please do not respond.</p>
2241'')
2242
2243INSERT [dbo].[NotificationTemplates] ([Id], [NotificationTypeId], [FailureTypeId], [SubjectTemplate], [ContentTemplate]) VALUES (4, 40003, NULL, N''A new {{FAILURE_REPORT_TYPE}} has been reported by {{COMPANY}} PGU ({{MGM_ORG}}) for a {{MVA}} MVA unit SN {{SERIAL_NUMBER}}, {{ASSIGNED_EXPERT_NAME}} has been assigned as expert support.'', N''<p> {{ASSIGNED_EXPERT_NAME}} has been assigned as an expert for the failure you reported. To view the failure report, please click <a href="{{APP_URL}}failure/task/{{FAILURE_ID}}/{{PROCESS_SERIAL_NUMBER}}">here.</a></p>
2244<p>Please contact assigned expert in order to get necessary technical support.</p>'')
2245
2246INSERT [dbo].[NotificationTemplates] ([Id], [NotificationTypeId], [FailureTypeId], [SubjectTemplate], [ContentTemplate]) VALUES (5, 40004, NULL, N''{{FAILURE_REPORT_TYPE}} reported by {{Company}} PGU ({{MgmOrg}}) for a {{MVA}} MVA unit SN {{SerialNumber}}. You have been assigned as expert support.'', N''<p>You have been assigned as a technical expert support for this test failure investigation. To view the failure report, please click <a href="{{APP_URL}}failure/task/{{FAILURE_ID}}/{{PROCESS_SERIAL_NUMBER}}">here.</a></p><p>This message is sent for information purposes, no action required.</p>'')
2247
2248INSERT [dbo].[NotificationTemplates] ([Id], [NotificationTypeId], [FailureTypeId], [SubjectTemplate], [ContentTemplate]) VALUES (6, 40005, 10001, N''{{FAILURE_REPORT_TYPE}} reported by {COMPANY}} PGU ({{MGM_ORG}}) for a {{MVA}} MVA unit SN {{SERIAL_NUMBER}}. Due date expires - submit for review'', N''<style>
2249body {
2250 font-family: "Calibri",sans-serif;
2251 font-size: 11.0pt;
2252}
2253</style>
2254
2255<p>Due date for Q1-Q3 analysis of this failure report is passed. Please finish Q1-Q3 section and submit it for review or request due date extension.<p>
2256<p>Link to <a href="{{APP_URL}}failure/{{FAILURE_ID}}/preview">failure</a></p>'')
2257
2258INSERT [dbo].[NotificationTemplates] ([Id], [NotificationTypeId], [FailureTypeId], [SubjectTemplate], [ContentTemplate]) VALUES (7, 40005, 10002, N''{{FAILURE_REPORT_TYPE}} reported by {COMPANY}} PGU ({{MGM_ORG}}) for a {{MVA}} MVA unit SN {{SERIAL_NUMBER}}. Due date expires - submit for closure'', N''<style>
2259body {
2260 font-family: "Calibri",sans-serif;
2261 font-size: 11.0pt;
2262}
2263</style>
2264
2265<p>Due date for Q1 analysis of this failure report is passed. Please finish Q1 section and submit it for closure.<p>
2266<p>Link to <a href="{{APP_URL}}failure/{{FAILURE_ID}}/preview">failure</a></p>'')
2267
2268INSERT [dbo].[NotificationTemplates] ([Id], [NotificationTypeId], [FailureTypeId], [SubjectTemplate], [ContentTemplate]) VALUES (8, 40001, 10003, N''A new {{FAILURE_REPORT_TYPE}} has been reported by {{COMPANY}} PGU ({{MGM_ORG}}) for a {{MVA}} MVA unit SN {{SERIAL_NUMBER}}'', N''<style>
2269body, p {
2270 font-family: "Calibri",sans-serif;
2271 font-size: 11.0pt;
2272}
2273thead {
2274 font-weight: bold;
2275}
2276table {
2277 border-collapse: collapse;
2278}
2279td {
2280 border-color: #A6A6A6;
2281}
2282td {
2283 padding: 5px;
2284}
2285th {
2286 text-align: left;
2287}
2288.label {
2289 font-weight: normal;
2290 border: 1px solid #A6A6A6;
2291 border-right: none;
2292}
2293
2294.labelRightBorder {
2295 font-weight: normal;
2296 border: 1px solid #A6A6A6;
2297}
2298.value {
2299 border: 1px solid #A6A6A6;
2300 border-left: none;
2301}
2302.value {
2303 border: 1px solid #A6A6A6;
2304 border-left: none;
2305}
2306.valueLeftBorder {
2307 border: 1px solid #A6A6A6;
2308}
2309.header {
2310 border: 1px solid #A6A6A6;
2311}
2312.separator{
2313 display: none;
2314}
2315.footer {
2316 font-family: "Calibri",sans-serif;
2317 font-size: 8.0pt;
2318 color: #A6A6A6
2319}
2320#typeOfTest {
2321 border-collapse: collapse;
2322 border: 1px solid #A6A6A6;
2323}
2324
2325</style>
2326
2327<p>A new {{FAILURE_REPORT_TYPE}} has been submitted to Transformer Metrics database.</p>
2328<p>
2329 Failure reported by: {{REPORTED_BY}}
2330 <br>
2331 Failure reported date: {{REPORTED_DATE}}
2332</p>
2333
2334
2335<table id="order">
2336 <thead>
2337 <th>Order</th>
2338 </thead>
2339 <tbody>
2340 <tr>
2341 <td class="label">Company</td>
2342 <td class="value">{{COMPANY}}</td>
2343 <td class="label">Management Organization</td>
2344 <td class="value">{{MGM_ORG}}</td>
2345 </tr>
2346 <tr>
2347 <td class="label">Serial Number</td>
2348 <td class="value">{{SERIAL_NUMBER}}</td>
2349 <td class="label">Order Number</td>
2350 <td class="value">{{CCPQuote}} - {{CCPItem}}</td>
2351 </tr>
2352 <tr>
2353 <td class="label">Customer</td>
2354 <td class="value">{{CUSTOMER}}</td>
2355 <td class="label">Customer Country</td>
2356 <td class="value">{{CUSTOMER_COUNTRY}}</td>
2357 <td class="label">Customer Segment</td>
2358 <td class="value">{{CUSTOMER_SEGMENT}}</td>
2359 </tr>
2360 <tr>
2361 <td class="label">Product Type</td>
2362 <td class="value">{{PRODUCT_TYPE}}</td>
2363 <td class="label">Country Installation</td>
2364 <td class="value">{{COUNTRY_INSTALLATION}}</td>
2365 <td class="label">Install Site</td>
2366 <td class="value">{{INSTALL_SITE}}</td>
2367 </tr>
2368 <tr>
2369 <td class="label">Short Circuit Test Planned</td>
2370 <td class="value">{{SHORT_CIRCUIT_TEST_PLANNED}}</td>
2371 </tr>
2372 <tr>
2373 <td class="label">Month / Year Received</td>
2374 <td class="value">{{MONTH_RECEIVED}}/{{YEAR_RECEIVED}}</td>
2375 </tr>
2376
2377 </tbody>
2378</table>
2379<br><br>
2380
2381<table id="design">
2382 <thead>
2383 <th>Design</th>
2384
2385 </thead>
2386
2387 <tbody>
2388 <tr>
2389 <td class="label">MVA</td>
2390 <td class="value">{{MVA}}</td>
2391 <td class="label">kV</td>
2392 <td class="value">{{KV}}</td>
2393 <td class="label">BIL(of the HV)</td>
2394 <td class="value">{{BIL}}</td>
2395 <td class="label">Phases</td>
2396 <td class="value">{{PHASES}}</td>
2397 </tr>
2398 <tr>
2399 <td class="label">Tap Changer OLTC</td>
2400 <td class="value">{{TAP_CHANGER_OLTC}}</td>
2401 <td class="label">Tap Changer DETC</td>
2402 <td class="value">{{TAP_CHANGER_DETC}}</td>
2403 <td class="label">Insulation Fluid</td>
2404 <td class="value">{{INSULATION_FLUID}}</td>
2405 </tr>
2406 <tr>
2407 <td class="label">Regulation</td>
2408 <td class="value">{{REGULATION}}</td>
2409 <td class="label">Frequency (Hz)</td>
2410 <td class="value">{{FREQUENCY}}</td>
2411 <td class="label">Winding Arrangement</td>
2412 <td class="value">{{WINDING_ARRANGEMENT}}</td>
2413 </tr>
2414 <tr>
2415 <td class="label">Type Design</td>
2416 <td class="value">{{TYPE_DESIGN}}</td>
2417 </tr>
2418
2419 </tbody>
2420</table>
2421<br><br>
2422
2423<table id="failureDetails">
2424 <thead>
2425 <th> Failure details</th>
2426 </thead>
2427 <tbody>
2428 <tr>
2429 <td class="header">Type of Test</td>
2430 <td class="header">Failure Cause</td>
2431 <td class="header">Failure Location</td>
2432 <td class="header">Action </td>
2433 <td class="header">Reporting Company</td>
2434 <td class="header">Mtg Org Code</td>
2435 </tr>
2436 <tr>
2437 <td>{{TYPE_OF_TEST}}</td>
2438 <td>{{FAILURE_CAUSE}}</td>
2439 <td>{{FAILURE_LOCATION}}</td>
2440 <td>{{ACTION}}</td>
2441 <td>{{REPAIR_COMPANY}}</td>
2442 <td>{{REPAIR_COMPANY_MTG_ORG_CODE}}</td>
2443 </tr>
2444 <tr>
2445 <td>EBIT Impact (MUSD)</td>
2446 <td>{{EBIT_IMPACT}}</td>
2447 <td collspan="2"></td>
2448 <td >Unit under warranty:</td>
2449 <td>{{IS_UNIT_UNDER_VARRANTY}}</td>
2450
2451 </tr>
2452 <tr>
2453 <td colspan="3" ></td>
2454 <td>Original design changed:</td>
2455 <td>{{IS_ORIGINAL_DESIGN_CHANGED}}</td>
2456 </tr>
2457 </tbody>
2458</table>
2459
2460<p>
2461Click this <a href="{{APP_URL}}failure/{{FAILURE_ID}}/preview">link<a/> to open the corresponding 4Q form.
2462</p>
2463<p class="footer">This email has been generated automatically, please do not respond.</p>
2464'')
2465
2466INSERT [dbo].[NotificationTemplates] ([Id], [NotificationTypeId], [FailureTypeId], [SubjectTemplate], [ContentTemplate]) VALUES (9, 40001, 10005, N''A new {{FAILURE_REPORT_TYPE}} has been reported by {{COMPANY}} PGU ({{MGM_ORG}}) for a {{MVA}} MVA unit SN {{SERIAL_NUMBER}}'', N''<style>
2467 body, p {
2468 font-family: "Calibri",sans-serif;
2469 font-size: 11.0pt;
2470 }
2471
2472 thead {
2473 font-weight: bold;
2474 }
2475
2476 table {
2477 border-collapse: collapse;
2478 }
2479
2480 td {
2481 border-color: #A6A6A6;
2482 }
2483
2484 td {
2485 padding: 5px;
2486 }
2487
2488 th {
2489 text-align: left;
2490 }
2491
2492 .label {
2493 font-weight: normal;
2494 border: 1px solid #A6A6A6;
2495 border-right: none;
2496 }
2497 .label.last {
2498 border: 1px solid #A6A6A6;
2499 }
2500 .header {
2501 border: 1px solid #A6A6A6;
2502 }
2503 .value {
2504 border: 1px solid #A6A6A6;
2505 border-left: none;
2506 }
2507
2508 .separator{
2509 display: none;
2510 }
2511
2512 .footer {
2513 font-family: "Calibri",sans-serif;
2514 font-size: 8.0pt;
2515 color: #A6A6A6
2516 }
2517
2518</style>
2519
2520<p>A new {{FAILURE_REPORT_TYPE}} has been submitted to Transformer Metrics database.</p>
2521<p>
2522 Failure reported by: {{REPORTED_BY}}
2523 <br>
2524 Failure reported date: {{REPORTED_DATE}}
2525</p>
2526
2527
2528<table id="order">
2529 <thead>
2530 <th>Order</th>
2531 </thead>
2532 <tbody>
2533 <tr>
2534 <td class="label">Company</td>
2535 <td class="value">{{COMPANY}}</td>
2536 <td class="label">Management Organization</td>
2537 <td class="value">{{MGM_ORG}}</td>
2538 </tr>
2539 <tr>
2540 <td class="label">Serial Number</td>
2541 <td class="value">{{SERIAL_NUMBER}}</td>
2542 <td class="label">Order Number</td>
2543 <td class="value">{{CCPQuote}} - {{CCPItem}}</td>
2544 </tr>
2545 <tr>
2546 <td class="label">Customer</td>
2547 <td class="value">{{CUSTOMER}}</td>
2548 <td class="label">Customer Country</td>
2549 <td class="value">{{CUSTOMER_COUNTRY}}</td>
2550 <td class="label">Customer Segment</td>
2551 <td class="value">{{CUSTOMER_SEGMENT}}</td>
2552 </tr>
2553 <tr>
2554 <td class="label">Product Type</td>
2555 <td class="value">{{PRODUCT_TYPE}}</td>
2556 <td class="label">Country Installation</td>
2557 <td class="value">{{COUNTRY_INSTALLATION}}</td>
2558 <td class="label">Install Site</td>
2559 <td class="value">{{INSTALL_SITE}}</td>
2560 </tr>
2561 <tr>
2562 <td class="label">Short Circuit Test Planned</td>
2563 <td class="value">{{SHORT_CIRCUIT_TEST_PLANNED}}</td>
2564 </tr>
2565 <tr>
2566 <td class="label">Month / Year Received</td>
2567 <td class="value">{{MONTH_RECEIVED}}/{{YEAR_RECEIVED}}</td>
2568 </tr>
2569
2570 </tbody>
2571</table>
2572<br><br>
2573<table id="design">
2574 <thead>
2575 <th>Design</th>
2576
2577 </thead>
2578
2579 <tbody>
2580 <tr>
2581 <td class="label">MVA</td>
2582 <td class="value">{{MVA}}</td>
2583 <td class="label">kV</td>
2584 <td class="value">{{KV}}</td>
2585 <td class="label">BIL(of the HV)</td>
2586 <td class="value">{{BIL}}</td>
2587 <td class="label">Phases</td>
2588 <td class="value">{{PHASES}}</td>
2589 </tr>
2590 <tr>
2591 <td class="label">Tap Changer OLTC</td>
2592 <td class="value">{{TAP_CHANGER_OLTC}}</td>
2593 <td class="label">Tap Changer DETC</td>
2594 <td class="value">{{TAP_CHANGER_DETC}}</td>
2595 <td class="label">Insulation Fluid</td>
2596 <td class="value">{{INSULATION_FLUID}}</td>
2597 </tr>
2598 <tr>
2599 <td class="label">Regulation</td>
2600 <td class="value">{{REGULATION}}</td>
2601 <td class="label">Frequency (Hz)</td>
2602 <td class="value">{{FREQUENCY}}</td>
2603 <td class="label">Winding Arrangement</td>
2604 <td class="value">{{WINDING_ARRANGEMENT}}</td>
2605 </tr>
2606 <tr>
2607 <td class="label">Type Design</td>
2608 <td class="value">{{TYPE_DESIGN}}</td>
2609 </tr>
2610
2611 </tbody>
2612</table>
2613<br><br>
2614<table id="failureDetails">
2615 <thead>
2616 <th colspan="5">Failure details</th>
2617 </thead>
2618 <tbody>
2619 <tr>
2620 <td class="header">Failure Discovery </td>
2621 <td class="header">Failure Occurrence </td>
2622 <td class="header">Failure Location</td>
2623 <td class="header">Failure Cause</td>
2624 <td class="header">Action </td>
2625 <td class="header">Reporting Company</td>
2626 <td class="header">Mtg Org Code</td>
2627 </tr>
2628 <tr>
2629 <td>{{FAILURE_DISCOVERY}}</td>
2630 <td>{{FAILURE_OCCURRENCE}}</td>
2631 <td>{{FAILURE_LOCATION}}</td>
2632 <td>{{FAILURE_CAUSE}}</td>
2633 <td>{{ACTION}}</td>
2634 <td>{{REPAIR_COMPANY}}</td>
2635 <td>{{MGM_ORG}}</td>
2636 </tr>
2637 <tr>
2638 <td>EBIT Impact (MUSD)</td>
2639 <td>{{EBIT_IMPACT}}</td>
2640 <td></td>
2641 <td>Unit under warranty:</td>
2642 <td>{{IS_UNIT_UNDER_VARRANTY}}</td>
2643 <td></td>
2644 <td></td>
2645 </tr>
2646 <tr>
2647 <td colspan="3"></td>
2648 <td>Original design changed:</td>
2649 <td>{{IS_ORIGINAL_DESIGN_CHANGED}}</td>
2650 <td></td>
2651 <td></td>
2652 </tr>
2653
2654 </tbody>
2655</table>
2656<br><br>
2657<p>
2658 Click this <a href="{{APP_URL}}failure/{{FAILURE_ID}}/preview">link</a> to open the corresponding 4Q form.
2659</p>
2660
2661<p>This message is sent for information purposes, no action required.</p>
2662<p class="footer">This email has been generated automatically, please do not respond.</p>
2663'')
2664
2665INSERT [dbo].[NotificationTemplates] ([Id], [NotificationTypeId], [FailureTypeId], [SubjectTemplate], [ContentTemplate]) VALUES (11, 40001, 10004, N''A new {{FAILURE_REPORT_TYPE}} has been reported by {{COMPANY}} PGU ({{MGM_ORG}}) for a {{MVA}} MVA unit SN {{SERIAL_NUMBER}}'', N''<style>
2666body, p {
2667 font-family: "Calibri",sans-serif;
2668 font-size: 11.0pt;
2669}
2670thead {
2671 font-weight: bold;
2672}
2673table {
2674 border-collapse: collapse;
2675}
2676td {
2677 border-color: #A6A6A6;
2678}
2679td {
2680 padding: 5px;
2681}
2682th {
2683 text-align: left;
2684}
2685.label {
2686 font-weight: normal;
2687 border: 1px solid #A6A6A6;
2688 border-right: none;
2689}
2690
2691.labelRightBorder {
2692 font-weight: normal;
2693 border: 1px solid #A6A6A6;
2694}
2695.value {
2696 border: 1px solid #A6A6A6;
2697 border-left: none;
2698}
2699.value {
2700 border: 1px solid #A6A6A6;
2701 border-left: none;
2702}
2703.valueLeftBorder {
2704 border: 1px solid #A6A6A6;
2705}
2706.header {
2707 border: 1px solid #A6A6A6;
2708}
2709.separator{
2710 display: none;
2711}
2712.footer {
2713 font-family: "Calibri",sans-serif;
2714 font-size: 8.0pt;
2715 color: #A6A6A6
2716}
2717#typeOfTest {
2718 border-collapse: collapse;
2719 border: 1px solid #A6A6A6;
2720}
2721
2722</style>
2723
2724<p>A new {{FAILURE_REPORT_TYPE}} has been submitted to Transformer Metrics database.</p>
2725<p>
2726 Failure reported by: {{REPORTED_BY}}
2727 <br>
2728 Failure reported date: {{REPORTED_DATE}}
2729</p>
2730
2731
2732<table id="order">
2733 <thead>
2734 <th>Order</th>
2735 </thead>
2736 <tbody>
2737 <tr>
2738 <td class="label">Company</td>
2739 <td class="value">{{COMPANY}}</td>
2740 <td class="label">Management Organization</td>
2741 <td class="value">{{MGM_ORG}}</td>
2742 </tr>
2743 <tr>
2744 <td class="label">Serial Number</td>
2745 <td class="value">{{SERIAL_NUMBER}}</td>
2746 <td class="label">Order Number</td>
2747 <td class="value">{{CCPQuote}} - {{CCPItem}}</td>
2748 </tr>
2749 <tr>
2750 <td class="label">Customer</td>
2751 <td class="value">{{CUSTOMER}}</td>
2752 <td class="label">Customer Country</td>
2753 <td class="value">{{CUSTOMER_COUNTRY}}</td>
2754 <td class="label">Customer Segment</td>
2755 <td class="value">{{CUSTOMER_SEGMENT}}</td>
2756 </tr>
2757 <tr>
2758 <td class="label">Product Type</td>
2759 <td class="value">{{PRODUCT_TYPE}}</td>
2760 <td class="label">Country Installation</td>
2761 <td class="value">{{COUNTRY_INSTALLATION}}</td>
2762 <td class="label">Install Site</td>
2763 <td class="value">{{INSTALL_SITE}}</td>
2764 </tr>
2765 <tr>
2766 <td class="label">Short Circuit Test Planned</td>
2767 <td class="value">{{SHORT_CIRCUIT_TEST_PLANNED}}</td>
2768 </tr>
2769 <tr>
2770 <td class="label">Month / Year Received</td>
2771 <td class="value">{{MONTH_RECEIVED}}/{{YEAR_RECEIVED}}</td>
2772 </tr>
2773
2774 </tbody>
2775</table>
2776<br><br>
2777
2778<table id="design">
2779 <thead>
2780 <th>Design</th>
2781
2782 </thead>
2783
2784 <tbody>
2785 <tr>
2786 <td class="label">MVA</td>
2787 <td class="value">{{MVA}}</td>
2788 <td class="label">kV</td>
2789 <td class="value">{{KV}}</td>
2790 <td class="label">BIL(of the HV)</td>
2791 <td class="value">{{BIL}}</td>
2792 <td class="label">Phases</td>
2793 <td class="value">{{PHASES}}</td>
2794 </tr>
2795 <tr>
2796 <td class="label">Tap Changer OLTC</td>
2797 <td class="value">{{TAP_CHANGER_OLTC}}</td>
2798 <td class="label">Tap Changer DETC</td>
2799 <td class="value">{{TAP_CHANGER_DETC}}</td>
2800 <td class="label">Insulation Fluid</td>
2801 <td class="value">{{INSULATION_FLUID}}</td>
2802 </tr>
2803 <tr>
2804 <td class="label">Regulation</td>
2805 <td class="value">{{REGULATION}}</td>
2806 <td class="label">Frequency (Hz)</td>
2807 <td class="value">{{FREQUENCY}}</td>
2808 <td class="label">Winding Arrangement</td>
2809 <td class="value">{{WINDING_ARRANGEMENT}}</td>
2810 </tr>
2811 <tr>
2812 <td class="label">Type Design</td>
2813 <td class="value">{{TYPE_DESIGN}}</td>
2814 </tr>
2815
2816 </tbody>
2817</table>
2818<br><br>
2819
2820<table id="failureDetails">
2821 <thead>
2822 <th> Failure details</th>
2823 </thead>
2824 <tbody>
2825 <tr>
2826 <td class="header">Type of Test</td>
2827 <td class="header">Failure Cause</td>
2828 <td class="header">Failure Location</td>
2829 <td class="header">Action </td>
2830 <td class="header">Reporting Company</td>
2831 <td class="header">Mtg Org Code</td>
2832 </tr>
2833 <tr>
2834 <td>{{TYPE_OF_TEST}}</td>
2835 <td>{{FAILURE_CAUSE}}</td>
2836 <td>{{FAILURE_LOCATION}}</td>
2837 <td>{{ACTION}}</td>
2838 <td>{{REPAIR_COMPANY}}</td>
2839 <td>{{REPAIR_COMPANY_MTG_ORG_CODE}}</td>
2840 </tr>
2841 <tr>
2842 <td>EBIT Impact (MUSD)</td>
2843 <td>{{EBIT_IMPACT}}</td>
2844 <td collspan="2"></td>
2845 <td >Unit under warranty:</td>
2846 <td>{{IS_UNIT_UNDER_VARRANTY}}</td>
2847
2848 </tr>
2849 <tr>
2850 <td colspan="3" ></td>
2851 <td>Original design changed:</td>
2852 <td>{{IS_ORIGINAL_DESIGN_CHANGED}}</td>
2853 </tr>
2854 </tbody>
2855</table>
2856
2857<p>
2858Click this <a href="{{APP_URL}}failure/{{FAILURE_ID}}/preview">link<a/> to open the corresponding 4Q form.
2859</p>
2860<p class="footer">This email has been generated automatically, please do not respond.</p>
2861'')
2862
2863INSERT [dbo].[NotificationTemplates] ([Id], [NotificationTypeId], [FailureTypeId], [SubjectTemplate], [ContentTemplate]) VALUES (12, 40001, 10002, N''A new {{FAILURE_REPORT_TYPE}} has been reported by {{COMPANY}} PGU ({{MGM_ORG}}) for a {{MVA}} MVA unit SN {{SERIAL_NUMBER}}'', N''<style>
2864body, p {
2865 font-family: "Calibri",sans-serif;
2866 font-size: 11.0pt;
2867}
2868
2869thead {
2870 font-weight: bold;
2871}
2872
2873table {
2874 border-collapse: collapse;
2875}
2876
2877td {
2878 border-color: #A6A6A6;
2879}
2880
2881td {
2882 padding: 5px;
2883}
2884
2885th {
2886 text-align: left;
2887}
2888
2889.label {
2890 font-weight: normal;
2891 border: 1px solid #A6A6A6;
2892 border-right: none;
2893}
2894
2895.value {
2896 border: 1px solid #A6A6A6;
2897 border-left: none;
2898}
2899
2900.separator{
2901 display: none;
2902}
2903
2904.footer {
2905 font-family: "Calibri",sans-serif;
2906 font-size: 8.0pt;
2907 color: #A6A6A6
2908}
2909#typeOfTest {
2910 border-collapse: collapse;
2911 border: 1px solid #A6A6A6;
2912}
2913
2914</style>
2915
2916<p>A new {{FAILURE_REPORT_TYPE}} has been submitted to Transformer Metrics database.</p>
2917<p>
2918Failure reported by: {{REPORTED_BY}}
2919<br>
2920Failure reported date: {{REPORTED_DATE}}
2921</p>
2922
2923
2924<table id="order">
2925 <thead>
2926 <th>Order</th>
2927 </thead>
2928 <tbody>
2929 <tr>
2930 <td class="label">Company</td>
2931 <td class="value">{{COMPANY}}</td>
2932 <td class="label">Management Organization</td>
2933 <td class="value">{{MGM_ORG}}</td>
2934 </tr>
2935 <tr>
2936 <td class="label">Serial Number</td>
2937 <td class="value">{{SERIAL_NUMBER}}</td>
2938 <td class="label">Order Number</td>
2939 <td class="value">{{CCPQuote}} - {{CCPItem}}</td>
2940 </tr>
2941 <tr>
2942 <td class="label">Customer</td>
2943 <td class="value">{{CUSTOMER}}</td>
2944 <td class="label">Customer Country</td>
2945 <td class="value">{{CUSTOMER_COUNTRY}}</td>
2946 <td class="label">Customer Segment</td>
2947 <td class="value">{{CUSTOMER_SEGMENT}}</td>
2948 </tr>
2949 <tr>
2950 <td class="label">Product Type</td>
2951 <td class="value">{{PRODUCT_TYPE}}</td>
2952 <td class="label">Country Installation</td>
2953 <td class="value">{{COUNTRY_INSTALLATION}}</td>
2954 <td class="label">Install Site</td>
2955 <td class="value">{{INSTALL_SITE}}</td>
2956 </tr>
2957 <tr>
2958 <td class="label">Short Circuit Test Planned</td>
2959 <td class="value">{{SHORT_CIRCUIT_TEST_PLANNED}}</td>
2960 </tr>
2961 <tr>
2962 <td class="label">Month / Year Received</td>
2963 <td class="value">{{MONTH_RECEIVED}}/{{YEAR_RECEIVED}}</td>
2964 </tr>
2965
2966 </tbody>
2967</table>
2968<br><br>
2969<table id="design">
2970 <thead>
2971 <th>Design</th>
2972 </thead>
2973 <tbody>
2974 <tr>
2975 <td class="label">MVA</td>
2976 <td class="value">{{MVA}}</td>
2977 <td class="label">kV</td>
2978 <td class="value">{{KV}}</td>
2979 <td class="label">BIL(of the HV)</td>
2980 <td class="value">{{BIL}}</td>
2981 <td class="label">Phases</td>
2982 <td class="value">{{PHASES}}</td>
2983 </tr>
2984 <tr>
2985 <td class="label">Tap Changer OLTC</td>
2986 <td class="value">{{TAP_CHANGER_OLTC}}</td>
2987 <td class="label">Tap Changer DETC</td>
2988 <td class="value">{{TAP_CHANGER_DETC}}</td>
2989 <td class="label">Insulation Fluid</td>
2990 <td class="value">{{INSULATION_FLUID}}</td>
2991 </tr>
2992 <tr>
2993 <td class="label">Regulation</td>
2994 <td class="value">{{REGULATION}}</td>
2995 <td class="label">Frequency (Hz)</td>
2996 <td class="value">{{FREQUENCY}}</td>
2997 <td class="label">Winding Arrangement</td>
2998 <td class="value">{{WINDING_ARRANGEMENT}}</td>
2999 </tr>
3000 <tr>
3001 <td class="label">Type Design</td>
3002 <td class="value">{{TYPE_DESIGN}}</td>
3003 </tr>
3004 </tbody>
3005</table>
3006<br><br>
3007<table id="typeOfTest">
3008 <thead>
3009 <th>Type Of Test</th>
3010 </thead>
3011 <tbody>
3012 <tr>
3013 <td class="label">{{TYPE_OF_TEST}}</td>
3014 </tr>
3015 </tbody>
3016</table>
3017<br><br>
3018
3019<table id="typeOfTest">
3020 <thead>
3021 <th>Unit failure initial description:</th>
3022 </thead>
3023 <tbody>
3024 <tr>
3025 <td class="label">{{Q1Measure}}</td>
3026 </tr>
3027 </tbody>
3028</table>
3029<br><br>
3030<p>
3031Click this <a href="{{APP_URL}}failure/{{FAILURE_ID}}/preview">link</a> to open the corresponding 4Q form.
3032</p>
3033<p class="footer">This email has been generated automatically, please do not respond.</p>
3034
3035
3036'')
3037
3038SET IDENTITY_INSERT [dbo].[NotificationTemplates] OFF'
3039
3040IF(CONTEXT_INFO() = 0x01 AND @@TRANCOUNT > 0)
3041 ROLLBACK
3042GO
3043
3044-- END \20190328.3_NotificationTemplates.sql
3045
3046-- BEGIN \20190328.4_CountryDomainMappings.sql
3047EXEC dbo.K2Util_ExecuteScript '68b2e1ee-cd0a-47f8-a85a-ee43fc7f2f41', 0,
3048N'-- =============================================
3049-- GUID:68B2E1EE-CD0A-47F8-A85A-EE43FC7F2F41
3050-- =============================================
3051
3052INSERT INTO [dbo].[CountryDomainMappings] ([CountryCode] ,[Domain]) VALUES (''AE'',''EUROPE'')
3053INSERT INTO [dbo].[CountryDomainMappings] ([CountryCode] ,[Domain]) VALUES (''AL'',''EUROPE'')
3054INSERT INTO [dbo].[CountryDomainMappings] ([CountryCode] ,[Domain]) VALUES (''AO'',''EUROPE'')
3055INSERT INTO [dbo].[CountryDomainMappings] ([CountryCode] ,[Domain]) VALUES (''AR'',''AMERICAS'')
3056INSERT INTO [dbo].[CountryDomainMappings] ([CountryCode] ,[Domain]) VALUES (''AT'',''EUROPE'')
3057INSERT INTO [dbo].[CountryDomainMappings] ([CountryCode] ,[Domain]) VALUES (''AU'',''ASIAPACIFIC'')
3058INSERT INTO [dbo].[CountryDomainMappings] ([CountryCode] ,[Domain]) VALUES (''BD'',''ASIAPACIFIC'')
3059INSERT INTO [dbo].[CountryDomainMappings] ([CountryCode] ,[Domain]) VALUES (''BE'',''EUROPE'')
3060INSERT INTO [dbo].[CountryDomainMappings] ([CountryCode] ,[Domain]) VALUES (''BG'',''EUROPE'')
3061INSERT INTO [dbo].[CountryDomainMappings] ([CountryCode] ,[Domain]) VALUES (''BH'',''EUROPE'')
3062INSERT INTO [dbo].[CountryDomainMappings] ([CountryCode] ,[Domain]) VALUES (''BO'',''AMERICAS'')
3063INSERT INTO [dbo].[CountryDomainMappings] ([CountryCode] ,[Domain]) VALUES (''BR'',''AMERICAS'')
3064INSERT INTO [dbo].[CountryDomainMappings] ([CountryCode] ,[Domain]) VALUES (''BW'',''EUROPE'')
3065INSERT INTO [dbo].[CountryDomainMappings] ([CountryCode] ,[Domain]) VALUES (''CA'',''AMERICAS'')
3066INSERT INTO [dbo].[CountryDomainMappings] ([CountryCode] ,[Domain]) VALUES (''CD'',''EUROPE'')
3067INSERT INTO [dbo].[CountryDomainMappings] ([CountryCode] ,[Domain]) VALUES (''CH'',''EUROPE'')
3068INSERT INTO [dbo].[CountryDomainMappings] ([CountryCode] ,[Domain]) VALUES (''CI'',''EUROPE'')
3069INSERT INTO [dbo].[CountryDomainMappings] ([CountryCode] ,[Domain]) VALUES (''CL'',''AMERICAS'')
3070INSERT INTO [dbo].[CountryDomainMappings] ([CountryCode] ,[Domain]) VALUES (''CM'',''EUROPE'')
3071INSERT INTO [dbo].[CountryDomainMappings] ([CountryCode] ,[Domain]) VALUES (''CN'',''ASIAPACIFIC'')
3072INSERT INTO [dbo].[CountryDomainMappings] ([CountryCode] ,[Domain]) VALUES (''CO'',''AMERICAS'')
3073INSERT INTO [dbo].[CountryDomainMappings] ([CountryCode] ,[Domain]) VALUES (''CY'',''EUROPE'')
3074INSERT INTO [dbo].[CountryDomainMappings] ([CountryCode] ,[Domain]) VALUES (''CZ'',''EUROPE'')
3075INSERT INTO [dbo].[CountryDomainMappings] ([CountryCode] ,[Domain]) VALUES (''DE'',''EUROPE'')
3076INSERT INTO [dbo].[CountryDomainMappings] ([CountryCode] ,[Domain]) VALUES (''DK'',''NMEA'')
3077INSERT INTO [dbo].[CountryDomainMappings] ([CountryCode] ,[Domain]) VALUES (''DZ'',''EUROPE'')
3078INSERT INTO [dbo].[CountryDomainMappings] ([CountryCode] ,[Domain]) VALUES (''EC'',''AMERICAS'')
3079INSERT INTO [dbo].[CountryDomainMappings] ([CountryCode] ,[Domain]) VALUES (''EE'',''NMEA'')
3080INSERT INTO [dbo].[CountryDomainMappings] ([CountryCode] ,[Domain]) VALUES (''EG'',''EUROPE'')
3081INSERT INTO [dbo].[CountryDomainMappings] ([CountryCode] ,[Domain]) VALUES (''ES'',''EUROPE'')
3082INSERT INTO [dbo].[CountryDomainMappings] ([CountryCode] ,[Domain]) VALUES (''FI'',''NMEA'')
3083INSERT INTO [dbo].[CountryDomainMappings] ([CountryCode] ,[Domain]) VALUES (''FR'',''EUROPE'')
3084INSERT INTO [dbo].[CountryDomainMappings] ([CountryCode] ,[Domain]) VALUES (''GB'',''NMEA'')
3085INSERT INTO [dbo].[CountryDomainMappings] ([CountryCode] ,[Domain]) VALUES (''GG'',''NMEA'')
3086INSERT INTO [dbo].[CountryDomainMappings] ([CountryCode] ,[Domain]) VALUES (''GR'',''EUROPE'')
3087INSERT INTO [dbo].[CountryDomainMappings] ([CountryCode] ,[Domain]) VALUES (''HR'',''EUROPE'')
3088INSERT INTO [dbo].[CountryDomainMappings] ([CountryCode] ,[Domain]) VALUES (''HU'',''EUROPE'')
3089INSERT INTO [dbo].[CountryDomainMappings] ([CountryCode] ,[Domain]) VALUES (''ID'',''ASIAPACIFIC'')
3090INSERT INTO [dbo].[CountryDomainMappings] ([CountryCode] ,[Domain]) VALUES (''IE'',''NMEA'')
3091INSERT INTO [dbo].[CountryDomainMappings] ([CountryCode] ,[Domain]) VALUES (''IL'',''EUROPE'')
3092INSERT INTO [dbo].[CountryDomainMappings] ([CountryCode] ,[Domain]) VALUES (''IN'',''ASIAPACIFIC'')
3093INSERT INTO [dbo].[CountryDomainMappings] ([CountryCode] ,[Domain]) VALUES (''IQ'',''EUROPE'')
3094INSERT INTO [dbo].[CountryDomainMappings] ([CountryCode] ,[Domain]) VALUES (''IT'',''EUROPE'')
3095INSERT INTO [dbo].[CountryDomainMappings] ([CountryCode] ,[Domain]) VALUES (''JO'',''EUROPE'')
3096INSERT INTO [dbo].[CountryDomainMappings] ([CountryCode] ,[Domain]) VALUES (''JP'',''ASIAPACIFIC'')
3097INSERT INTO [dbo].[CountryDomainMappings] ([CountryCode] ,[Domain]) VALUES (''KE'',''EUROPE'')
3098INSERT INTO [dbo].[CountryDomainMappings] ([CountryCode] ,[Domain]) VALUES (''KR'',''ASIAPACIFIC'')
3099INSERT INTO [dbo].[CountryDomainMappings] ([CountryCode] ,[Domain]) VALUES (''KW'',''EUROPE'')
3100INSERT INTO [dbo].[CountryDomainMappings] ([CountryCode] ,[Domain]) VALUES (''KZ'',''EUROPE'')
3101INSERT INTO [dbo].[CountryDomainMappings] ([CountryCode] ,[Domain]) VALUES (''LB'',''EUROPE'')
3102INSERT INTO [dbo].[CountryDomainMappings] ([CountryCode] ,[Domain]) VALUES (''LK'',''ASIAPACIFIC'')
3103INSERT INTO [dbo].[CountryDomainMappings] ([CountryCode] ,[Domain]) VALUES (''LT'',''NMEA'')
3104INSERT INTO [dbo].[CountryDomainMappings] ([CountryCode] ,[Domain]) VALUES (''LU'',''EUROPE'')
3105INSERT INTO [dbo].[CountryDomainMappings] ([CountryCode] ,[Domain]) VALUES (''LV'',''NMEA'')
3106INSERT INTO [dbo].[CountryDomainMappings] ([CountryCode] ,[Domain]) VALUES (''MA'',''EUROPE'')
3107INSERT INTO [dbo].[CountryDomainMappings] ([CountryCode] ,[Domain]) VALUES (''MN'',''ASIAPACIFIC'')
3108INSERT INTO [dbo].[CountryDomainMappings] ([CountryCode] ,[Domain]) VALUES (''MU'',''EUROPE'')
3109INSERT INTO [dbo].[CountryDomainMappings] ([CountryCode] ,[Domain]) VALUES (''MY'',''ASIAPACIFIC'')
3110INSERT INTO [dbo].[CountryDomainMappings] ([CountryCode] ,[Domain]) VALUES (''MZ'',''EUROPE'')
3111INSERT INTO [dbo].[CountryDomainMappings] ([CountryCode] ,[Domain]) VALUES (''NA'',''EUROPE'')
3112INSERT INTO [dbo].[CountryDomainMappings] ([CountryCode] ,[Domain]) VALUES (''NG'',''EUROPE'')
3113INSERT INTO [dbo].[CountryDomainMappings] ([CountryCode] ,[Domain]) VALUES (''NL'',''EUROPE'')
3114INSERT INTO [dbo].[CountryDomainMappings] ([CountryCode] ,[Domain]) VALUES (''NO'',''NMEA'')
3115INSERT INTO [dbo].[CountryDomainMappings] ([CountryCode] ,[Domain]) VALUES (''NZ'',''ASIAPACIFIC'')
3116INSERT INTO [dbo].[CountryDomainMappings] ([CountryCode] ,[Domain]) VALUES (''OM'',''EUROPE'')
3117INSERT INTO [dbo].[CountryDomainMappings] ([CountryCode] ,[Domain]) VALUES (''PA'',''AMERICAS'')
3118INSERT INTO [dbo].[CountryDomainMappings] ([CountryCode] ,[Domain]) VALUES (''PE'',''AMERICAS'')
3119INSERT INTO [dbo].[CountryDomainMappings] ([CountryCode] ,[Domain]) VALUES (''PH'',''ASIAPACIFIC'')
3120INSERT INTO [dbo].[CountryDomainMappings] ([CountryCode] ,[Domain]) VALUES (''PK'',''ASIAPACIFIC'')
3121INSERT INTO [dbo].[CountryDomainMappings] ([CountryCode] ,[Domain]) VALUES (''PL'',''EUROPE'')
3122INSERT INTO [dbo].[CountryDomainMappings] ([CountryCode] ,[Domain]) VALUES (''PR'',''AMERICAS'')
3123INSERT INTO [dbo].[CountryDomainMappings] ([CountryCode] ,[Domain]) VALUES (''PT'',''EUROPE'')
3124INSERT INTO [dbo].[CountryDomainMappings] ([CountryCode] ,[Domain]) VALUES (''QA'',''EUROPE'')
3125INSERT INTO [dbo].[CountryDomainMappings] ([CountryCode] ,[Domain]) VALUES (''RO'',''EUROPE'')
3126INSERT INTO [dbo].[CountryDomainMappings] ([CountryCode] ,[Domain]) VALUES (''RS'',''EUROPE'')
3127INSERT INTO [dbo].[CountryDomainMappings] ([CountryCode] ,[Domain]) VALUES (''RU'',''EUROPE'')
3128INSERT INTO [dbo].[CountryDomainMappings] ([CountryCode] ,[Domain]) VALUES (''SA'',''EUROPE'')
3129INSERT INTO [dbo].[CountryDomainMappings] ([CountryCode] ,[Domain]) VALUES (''SE'',''NMEA'')
3130INSERT INTO [dbo].[CountryDomainMappings] ([CountryCode] ,[Domain]) VALUES (''SG'',''ASIAPACIFIC'')
3131INSERT INTO [dbo].[CountryDomainMappings] ([CountryCode] ,[Domain]) VALUES (''SI'',''EUROPE'')
3132INSERT INTO [dbo].[CountryDomainMappings] ([CountryCode] ,[Domain]) VALUES (''SK'',''EUROPE'')
3133INSERT INTO [dbo].[CountryDomainMappings] ([CountryCode] ,[Domain]) VALUES (''SN'',''EUROPE'')
3134INSERT INTO [dbo].[CountryDomainMappings] ([CountryCode] ,[Domain]) VALUES (''TH'',''ASIAPACIFIC'')
3135INSERT INTO [dbo].[CountryDomainMappings] ([CountryCode] ,[Domain]) VALUES (''TN'',''EUROPE'')
3136INSERT INTO [dbo].[CountryDomainMappings] ([CountryCode] ,[Domain]) VALUES (''TR'',''EUROPE'')
3137INSERT INTO [dbo].[CountryDomainMappings] ([CountryCode] ,[Domain]) VALUES (''TW'',''ASIAPACIFIC'')
3138INSERT INTO [dbo].[CountryDomainMappings] ([CountryCode] ,[Domain]) VALUES (''TZ'',''EUROPE'')
3139INSERT INTO [dbo].[CountryDomainMappings] ([CountryCode] ,[Domain]) VALUES (''UA'',''EUROPE'')
3140INSERT INTO [dbo].[CountryDomainMappings] ([CountryCode] ,[Domain]) VALUES (''UG'',''EUROPE'')
3141INSERT INTO [dbo].[CountryDomainMappings] ([CountryCode] ,[Domain]) VALUES (''US'',''AMERICAS'')
3142INSERT INTO [dbo].[CountryDomainMappings] ([CountryCode] ,[Domain]) VALUES (''UY'',''AMERICAS'')
3143INSERT INTO [dbo].[CountryDomainMappings] ([CountryCode] ,[Domain]) VALUES (''VN'',''ASIAPACIFIC'')
3144INSERT INTO [dbo].[CountryDomainMappings] ([CountryCode] ,[Domain]) VALUES (''ZA'',''EUROPE'')
3145INSERT INTO [dbo].[CountryDomainMappings] ([CountryCode] ,[Domain]) VALUES (''ZM'',''EUROPE'')
3146INSERT INTO [dbo].[CountryDomainMappings] ([CountryCode] ,[Domain]) VALUES (''ZW'',''EUROPE'')'
3147
3148IF(CONTEXT_INFO() = 0x01 AND @@TRANCOUNT > 0)
3149 ROLLBACK
3150GO
3151
3152-- END \20190328.4_CountryDomainMappings.sql
3153
3154-- BEGIN \20190430.1_Dictionaries.sql
3155EXEC dbo.K2Util_ExecuteScript 'd6b0833f-1e0a-4cf0-8557-4cb8e8e00221', 0,
3156N'-- =============================================
3157-- GUID:D6B0833F-1E0A-4CF0-8557-4CB8E8E00221
3158-- =============================================
3159
3160INSERT [dbo].[Dictionaries] ([DictionaryId], [Name]) VALUES (35, N''TaskNames'')
3161INSERT [dbo].[Dictionaries] ([DictionaryId], [Name]) VALUES (40, N''TransformerOrigins'')
3162
3163INSERT [dbo].[DictionaryItems] ([DictionaryItemId], [Name], [Code], [DictionaryId], [IsActive], [ItemOrder], [ExternalSystemCode]) VALUES (60006, N''Deleted'', N''Deleted'', 6, 1, NULL, NULL)
3164INSERT [dbo].[DictionaryItems] ([DictionaryItemId], [Name], [Code], [DictionaryId], [IsActive], [ItemOrder], [ExternalSystemCode]) VALUES (70004, N''Approve'', NULL, 7, 1, NULL, NULL)
3165INSERT [dbo].[DictionaryItems] ([DictionaryItemId], [Name], [Code], [DictionaryId], [IsActive], [ItemOrder], [ExternalSystemCode]) VALUES (70005, N''Reject'', NULL, 7, 1, NULL, NULL)
3166INSERT [dbo].[DictionaryItems] ([DictionaryItemId], [Name], [Code], [DictionaryId], [IsActive], [ItemOrder], [ExternalSystemCode]) VALUES (70006, N''Failure deleted'', NULL, 7, 1, NULL, NULL)
3167INSERT [dbo].[DictionaryItems] ([DictionaryItemId], [Name], [Code], [DictionaryId], [IsActive], [ItemOrder], [ExternalSystemCode]) VALUES (70007, N''Failure restored'', NULL, 7, 1, NULL, NULL)
3168INSERT [dbo].[DictionaryItems] ([DictionaryItemId], [Name], [Code], [DictionaryId], [IsActive], [ItemOrder], [ExternalSystemCode]) VALUES (80003, N''Report closure approval'', NULL, 8, 1, NULL, NULL)
3169INSERT [dbo].[DictionaryItems] ([DictionaryItemId], [Name], [Code], [DictionaryId], [IsActive], [ItemOrder], [ExternalSystemCode]) VALUES (80004, N''Due date extension approval'', NULL, 8, 1, NULL, NULL)
3170INSERT [dbo].[DictionaryItems] ([DictionaryItemId], [Name], [Code], [DictionaryId], [IsActive], [ItemOrder], [ExternalSystemCode]) VALUES (80005, N''Report revision'', NULL, 8, 1, NULL, NULL)
3171INSERT [dbo].[DictionaryItems] ([DictionaryItemId], [Name], [Code], [DictionaryId], [IsActive], [ItemOrder], [ExternalSystemCode]) VALUES (80006, N''Edit form'', NULL, 8, 1, NULL, NULL)
3172INSERT [dbo].[DictionaryItems] ([DictionaryItemId], [Name], [Code], [DictionaryId], [IsActive], [ItemOrder], [ExternalSystemCode]) VALUES (350001, N''Assign an Expert'', NULL, 35, 1, NULL, NULL)
3173INSERT [dbo].[DictionaryItems] ([DictionaryItemId], [Name], [Code], [DictionaryId], [IsActive], [ItemOrder], [ExternalSystemCode]) VALUES (350002, N''New failure'', NULL, 35, 1, NULL, NULL)
3174INSERT [dbo].[DictionaryItems] ([DictionaryItemId], [Name], [Code], [DictionaryId], [IsActive], [ItemOrder], [ExternalSystemCode]) VALUES (350003, N''Report closure approval'', NULL, 35, 1, NULL, NULL)
3175INSERT [dbo].[DictionaryItems] ([DictionaryItemId], [Name], [Code], [DictionaryId], [IsActive], [ItemOrder], [ExternalSystemCode]) VALUES (350004, N''Due date extension approval'', NULL, 35, 1, NULL, NULL)
3176INSERT [dbo].[DictionaryItems] ([DictionaryItemId], [Name], [Code], [DictionaryId], [IsActive], [ItemOrder], [ExternalSystemCode]) VALUES (350005, N''Report revision'', NULL, 35, 1, NULL, NULL)
3177INSERT [dbo].[DictionaryItems] ([DictionaryItemId], [Name], [Code], [DictionaryId], [IsActive], [ItemOrder], [ExternalSystemCode]) VALUES (400001, N''From ABB'', NULL, 40, 1, 1, NULL)
3178INSERT [dbo].[DictionaryItems] ([DictionaryItemId], [Name], [Code], [DictionaryId], [IsActive], [ItemOrder], [ExternalSystemCode]) VALUES (400002, N''Non ABB'', NULL, 40, 1, 2, NULL)
3179INSERT [dbo].[DictionaryItems] ([DictionaryItemId], [Name], [Code], [DictionaryId], [IsActive], [ItemOrder], [ExternalSystemCode]) VALUES (400003, N''Include not yet delivered units'', NULL, 40, 1, 3, NULL)'
3180
3181IF(CONTEXT_INFO() = 0x01 AND @@TRANCOUNT > 0)
3182 ROLLBACK
3183GO
3184
3185-- END \20190430.1_Dictionaries.sql
3186
3187-- BEGIN \20190619.1_Dictionaries_update.sql
3188EXEC dbo.K2Util_ExecuteScript 'd6b0833f-1e0a-4cf0-8557-4cb8e8e00421', 0,
3189N'-- =============================================
3190-- GUID:D6B0833F-1E0A-4CF0-8557-4CB8E8E00421
3191-- =============================================
3192
3193IF NOT EXISTS (SELECT * FROM [dbo].[Dictionaries] WHERE [DictionaryId] = 10) BEGIN
3194 INSERT [dbo].[Dictionaries] ([DictionaryId], [Name]) VALUES (10, N''Dictionary Item Attribute Types'') END
3195IF NOT EXISTS (SELECT * FROM [dbo].[Dictionaries] WHERE [DictionaryId] = 11) BEGIN
3196 INSERT [dbo].[Dictionaries] ([DictionaryId], [Name]) VALUES (11, N''Linked Object Types'') END
3197IF NOT EXISTS (SELECT * FROM [dbo].[Dictionaries] WHERE [DictionaryId] = 12) BEGIN
3198 INSERT [dbo].[Dictionaries] ([DictionaryId], [Name]) VALUES (12, N''Object Types'') END
3199
3200IF NOT EXISTS (SELECT * FROM [dbo].[Dictionaries] WHERE [DictionaryId] = 43) BEGIN
3201 INSERT [dbo].[Dictionaries] ([DictionaryId], [Name]) VALUES (43, N''Permissions'') END
3202IF NOT EXISTS (SELECT * FROM [dbo].[Dictionaries] WHERE [DictionaryId] = 44) BEGIN
3203 INSERT [dbo].[Dictionaries] ([DictionaryId], [Name]) VALUES (44, N''ChangeLog Types'') END
3204IF NOT EXISTS (SELECT * FROM [dbo].[Dictionaries] WHERE [DictionaryId] = 45) BEGIN
3205 INSERT [dbo].[Dictionaries] ([DictionaryId], [Name]) VALUES (45, N''Request Statuses'') END
3206IF NOT EXISTS (SELECT * FROM [dbo].[Dictionaries] WHERE [DictionaryId] = 46) BEGIN
3207 INSERT [dbo].[Dictionaries] ([DictionaryId], [Name]) VALUES (46, N''Request Types'') END
3208IF NOT EXISTS (SELECT * FROM [dbo].[Dictionaries] WHERE [DictionaryId] = 47) BEGIN
3209 INSERT [dbo].[Dictionaries] ([DictionaryId], [Name]) VALUES (47, N''Task Statuses'') END
3210
3211IF NOT EXISTS (SELECT * FROM [dbo].[DictionaryItems] WHERE [DictionaryItemId] = 11001) BEGIN
3212INSERT [dbo].[DictionaryItems] ([DictionaryItemId], [DictionaryId], [IsActive], [ItemOrder], [Name], [Code]) VALUES (11001, 11, 1, NULL, N''Attachment'', NULL)
3213END -- Linked Object Types
3214
3215IF NOT EXISTS (SELECT * FROM [dbo].[DictionaryItems] WHERE [DictionaryItemId] = 70008) BEGIN
3216INSERT [dbo].[DictionaryItems] ([DictionaryItemId], [DictionaryId], [IsActive], [ItemOrder], [Name], [Code]) VALUES (70008, 7, 1, NULL, N''Submitted'', NULL)
3217END'
3218
3219IF(CONTEXT_INFO() = 0x01 AND @@TRANCOUNT > 0)
3220 ROLLBACK
3221GO
3222
3223-- END \20190619.1_Dictionaries_update.sql
3224
3225-- BEGIN \20190620.1_DictionaryItems.sql
3226EXEC dbo.K2Util_ExecuteScript '2869898f-d14b-447f-a971-93d15512ebf1', 0,
3227N'-- =============================================
3228-- GUID:2869898F-D14B-447F-A971-93D15512EBF1
3229-- =============================================
3230
3231--Task types
3232INSERT [dbo].[DictionaryItems] ([DictionaryItemId], [Name], [Code], [DictionaryId], [IsActive], [ItemOrder], [ExternalSystemCode]) VALUES (80007, N''Report closure approval - PG Coordinator'', NULL, 8, 1, NULL, NULL)
3233INSERT [dbo].[DictionaryItems] ([DictionaryItemId], [Name], [Code], [DictionaryId], [IsActive], [ItemOrder], [ExternalSystemCode]) VALUES (80008, N''Report closure approval - Quality Manager'', NULL, 8, 1, NULL, NULL)
3234
3235--Process types
3236INSERT [dbo].[DictionaryItems] ([DictionaryItemId], [Name], [Code], [DictionaryId], [IsActive], [ItemOrder], [ExternalSystemCode]) VALUES (90002, N''SubmitFailureForClosureProcess'', NULL, 9, 1, NULL, NULL)
3237INSERT [dbo].[DictionaryItems] ([DictionaryItemId], [Name], [Code], [DictionaryId], [IsActive], [ItemOrder], [ExternalSystemCode]) VALUES (90003, N''SubmitFailureForReviewProcess'', NULL, 9, 1, NULL, NULL)
3238INSERT [dbo].[DictionaryItems] ([DictionaryItemId], [Name], [Code], [DictionaryId], [IsActive], [ItemOrder], [ExternalSystemCode]) VALUES (90004, N''RequestDueDateExtensionProcess'', NULL, 9, 1, NULL, NULL)
3239
3240--Notification types
3241INSERT [dbo].[DictionaryItems] ([DictionaryItemId], [Name], [Code], [DictionaryId], [IsActive], [ItemOrder], [ExternalSystemCode]) VALUES (40009, N''Submit failure for closure rejected'', NULL, 4, 1, NULL, NULL)
3242INSERT [dbo].[DictionaryItems] ([DictionaryItemId], [Name], [Code], [DictionaryId], [IsActive], [ItemOrder], [ExternalSystemCode]) VALUES (40010, N''Submit failure for closure approved'', NULL, 4, 1, NULL, NULL)
3243INSERT [dbo].[DictionaryItems] ([DictionaryItemId], [Name], [Code], [DictionaryId], [IsActive], [ItemOrder], [ExternalSystemCode]) VALUES (40011, N''New submit failure for review'', NULL, 4, 1, NULL, NULL)
3244INSERT [dbo].[DictionaryItems] ([DictionaryItemId], [Name], [Code], [DictionaryId], [IsActive], [ItemOrder], [ExternalSystemCode]) VALUES (40012, N''Submit failure for review rejected'', NULL, 4, 1, NULL, NULL)
3245INSERT [dbo].[DictionaryItems] ([DictionaryItemId], [Name], [Code], [DictionaryId], [IsActive], [ItemOrder], [ExternalSystemCode]) VALUES (40013, N''Submit failure for review approved'', NULL, 4, 1, NULL, NULL)
3246INSERT [dbo].[DictionaryItems] ([DictionaryItemId], [Name], [Code], [DictionaryId], [IsActive], [ItemOrder], [ExternalSystemCode]) VALUES (40014, N''New due date extension'', NULL, 4, 1, NULL, NULL)
3247INSERT [dbo].[DictionaryItems] ([DictionaryItemId], [Name], [Code], [DictionaryId], [IsActive], [ItemOrder], [ExternalSystemCode]) VALUES (40015, N''Due date extension approved'', NULL, 4, 1, NULL, NULL)
3248INSERT [dbo].[DictionaryItems] ([DictionaryItemId], [Name], [Code], [DictionaryId], [IsActive], [ItemOrder], [ExternalSystemCode]) VALUES (40016, N''Due date extension rejected'', NULL, 4, 1, NULL, NULL)
3249INSERT [dbo].[DictionaryItems] ([DictionaryItemId], [Name], [Code], [DictionaryId], [IsActive], [ItemOrder], [ExternalSystemCode]) VALUES (40017, N''New submit failure for review - Notification for PG Coordinators'', NULL, 4, 1, NULL, NULL)
3250INSERT [dbo].[DictionaryItems] ([DictionaryItemId], [Name], [Code], [DictionaryId], [IsActive], [ItemOrder], [ExternalSystemCode]) VALUES (40018, N''New submit failure for closure - Notification for Quality Managers'', NULL, 4, 1, NULL, NULL)
3251INSERT [dbo].[DictionaryItems] ([DictionaryItemId], [Name], [Code], [DictionaryId], [IsActive], [ItemOrder], [ExternalSystemCode]) VALUES (40019, N''New submit failure for closure - Notification for PG Coordinators'', NULL, 4, 1, NULL, NULL)
3252INSERT [dbo].[DictionaryItems] ([DictionaryItemId], [Name], [Code], [DictionaryId], [IsActive], [ItemOrder], [ExternalSystemCode]) VALUES (40020, N''New submit failure for review - Notification for Quality Managers'', NULL, 4, 1, NULL, NULL)'
3253
3254IF(CONTEXT_INFO() = 0x01 AND @@TRANCOUNT > 0)
3255 ROLLBACK
3256GO
3257
3258-- END \20190620.1_DictionaryItems.sql
3259
3260-- BEGIN \20190621.1_NotificationTemplates.sql
3261EXEC dbo.K2Util_ExecuteScript 'ed7c6fc7-dec2-4a95-9d9b-6c35b815822d', 0,
3262N'-- =============================================
3263-- GUID:ED7C6FC7-DEC2-4A95-9D9B-6C35B815822D
3264-- =============================================
3265
3266SET IDENTITY_INSERT [dbo].[NotificationTemplates] ON
3267
3268INSERT INTO [dbo].[NotificationTemplates] ([Id], [NotificationTypeId], [FailureTypeId], [SubjectTemplate], [ContentTemplate]) VALUES
3269(13, 40017, NULL,
3270''TF from {{COMPANY}} PGU ({{MGM_ORG}}) for a {{MVA}} MVA unit SN {{SERIAL_NUMBER}}. Report review has been requested.'',
3271''<style>
3272body, p {
3273 font-family: "Calibri",sans-serif;
3274 font-size: 11.0pt;
3275}
3276
3277thead {
3278 font-weight: bold;
3279}
3280table {
3281 border-collapse: collapse;
3282}
3283td {
3284 border-color: #A6A6A6;
3285}
3286td {
3287 padding: 5px;
3288}
3289th {
3290 text-align: left;
3291}
3292.label {
3293 font-weight: normal;
3294 border: 1px solid #A6A6A6;
3295 border-right: none;
3296}
3297.value {
3298 border: 1px solid #A6A6A6;
3299 border-left: none;
3300}
3301.separator{
3302 display: none;
3303}
3304.footer {
3305 font-family: "Calibri",sans-serif;
3306 font-size: 8.0pt;
3307 color: #A6A6A6
3308}
3309#typeOfTest {
3310 border-collapse: collapse;
3311 border: 1px solid #A6A6A6;
3312}
3313#firstParagraph {
3314 font-weight: bold;
3315 font-size: 16px;
3316 margin-bottom: -20px;
3317}
3318#secondParagraph {
3319 font-weight: bold;
3320 font-size: 20px;
3321 margin-bottom: -20px;
3322}
3323#thirdParagraph {
3324 font-weight: bold;
3325 font-size: 18px;
3326}
3327</style>
3328
3329<p id="firstParagraph">TRANSFORMER METRICS</p>
3330
3331<p id="secondParagraph">A new failure review request has been submitted by {{PROCESS_ORIGINATOR}}. To view the failure report, please follow this <a href="{{APP_URL}}failure/{{FAILURE_ID}}/preview">link</a>.</p>
3332
3333<p id="thirdParagraph">For information purposes, no action required </p>
3334
3335<p class="footer">This email has been generated automatically, please do not respond.</p>
3336''),
3337(14, 40011, NULL, ''TF from {{COMPANY}} PGU ({{MGM_ORG}}) for a {{MVA}} MVA unit SN {{SERIAL_NUMBER}}. Report review requested.'',
3338''<style>
3339body, p {
3340 font-family: "Calibri",sans-serif;
3341 font-size: 11.0pt;
3342}
3343
3344thead {
3345 font-weight: bold;
3346}
3347
3348table {
3349 border-collapse: collapse;
3350}
3351
3352td {
3353 border-color: #A6A6A6;
3354}
3355
3356td {
3357 padding: 5px;
3358}
3359
3360th {
3361 text-align: left;
3362}
3363
3364.label {
3365 font-weight: normal;
3366 border: 1px solid #A6A6A6;
3367 border-right: none;
3368}
3369
3370.value {
3371 border: 1px solid #A6A6A6;
3372 border-left: none;
3373}
3374
3375.separator{
3376 display: none;
3377}
3378
3379.footer {
3380 font-family: "Calibri",sans-serif;
3381 font-size: 8.0pt;
3382 color: #A6A6A6
3383}
3384
3385</style>
3386
3387<p>Dear {{DEAR_USER}},</p>
3388<p>A new failure review request has been submitted by {{PROCESS_ORIGINATOR}}</p>
3389
3390<p>Please review the failure report plant analysis and approve or reject it.</p>
3391<p>
3392Use the following link to open the worklist item: <a href="{{APP_URL}}failure/task/{{FAILURE_ID}}/{{PROCESS_SERIAL_NUMBER}}">Open the report</a>
3393</p>
3394<p>Please review the report and approve or reject it</p>
3395
3396<p class="footer">This email has been generated automatically, please do not respond.</p>
3397''),
3398(15, 40012, NULL, ''TF from {{COMPANY}} PGU ({{MGM_ORG}}) for a {{MVA}} MVA unit SN {{SERIAL_NUMBER}}. Report review rejected.'',
3399''<style>
3400body, p {
3401 font-family: "Calibri",sans-serif;
3402 font-size: 11.0pt;
3403}
3404
3405thead {
3406 font-weight: bold;
3407}
3408table {
3409 border-collapse: collapse;
3410}
3411td {
3412 border-color: #A6A6A6;
3413}
3414td {
3415 padding: 5px;
3416}
3417th {
3418 text-align: left;
3419}
3420.label {
3421 font-weight: normal;
3422 border: 1px solid #A6A6A6;
3423 border-right: none;
3424}
3425.value {
3426 border: 1px solid #A6A6A6;
3427 border-left: none;
3428}
3429.separator{
3430 display: none;
3431}
3432.footer {
3433 font-family: "Calibri",sans-serif;
3434 font-size: 8.0pt;
3435 color: #A6A6A6
3436}
3437#approverComment {
3438 border-collapse: collapse;
3439 border: 1px solid #A6A6A6;
3440}
3441</style>
3442
3443<p>The failure review, you submitted has been rejected.</p>
3444
3445<p>Approver comment: <br/>{{APPROVER_COMMENT}}</p>
3446
3447<p>To access the failure report, please follow this <a href="{{APP_URL}}failure/{{FAILURE_ID}}/preview">link</a></p>
3448
3449<p class="footer">This email has been generated automatically, please do not respond.</p>
3450''),
3451(16, 40013, NULL, ''TF from {{COMPANY}} PGU ({{MGM_ORG}}) for a {{MVA}} MVA unit SN {{SERIAL_NUMBER}}. Report review approved.'',
3452''<style>
3453body, p {
3454 font-family: "Calibri",sans-serif;
3455 font-size: 11.0pt;
3456}
3457
3458thead {
3459 font-weight: bold;
3460}
3461table {
3462 border-collapse: collapse;
3463}
3464td {
3465 border-color: #A6A6A6;
3466}
3467td {
3468 padding: 5px;
3469}
3470th {
3471 text-align: left;
3472}
3473.label {
3474 font-weight: normal;
3475 border: 1px solid #A6A6A6;
3476 border-right: none;
3477}
3478.value {
3479 border: 1px solid #A6A6A6;
3480 border-left: none;
3481}
3482.separator{
3483 display: none;
3484}
3485.footer {
3486 font-family: "Calibri",sans-serif;
3487 font-size: 8.0pt;
3488 color: #A6A6A6
3489}
3490#approverComment {
3491 border-collapse: collapse;
3492 border: 1px solid #A6A6A6;
3493}
3494</style>
3495
3496<p>The failure review, you submitted has been accepted.</p>
3497
3498<p>Approver comment: <br/>{{APPROVER_COMMENT}}</p>
3499
3500<p>To access the failure report, please follow this <a href="{{APP_URL}}failure/{{FAILURE_ID}}/preview">link</a></p>
3501
3502<p class="footer">This email has been generated automatically, please do not respond.</p>
3503''),
3504(17, 40009, NULL, ''{{FAILURE_REPORT_TYPE}} from {{COMPANY}} PGU ({{MGM_ORG}}) for a {{MVA}} MVA unit SN {{SERIAL_NUMBER}}. Report closure request has been rejected.'',
3505''<style>
3506body, p {
3507 font-family: "Calibri",sans-serif;
3508 font-size: 11.0pt;
3509}
3510
3511thead {
3512 font-weight: bold;
3513}
3514table {
3515 border-collapse: collapse;
3516}
3517td {
3518 border-color: #A6A6A6;
3519}
3520td {
3521 padding: 5px;
3522}
3523th {
3524 text-align: left;
3525}
3526.label {
3527 font-weight: normal;
3528 border: 1px solid #A6A6A6;
3529 border-right: none;
3530}
3531.value {
3532 border: 1px solid #A6A6A6;
3533 border-left: none;
3534}
3535.separator{
3536 display: none;
3537}
3538.footer {
3539 font-family: "Calibri",sans-serif;
3540 font-size: 8.0pt;
3541 color: #A6A6A6
3542}
3543#approverComment {
3544 border-collapse: collapse;
3545 border: 1px solid #A6A6A6;
3546}
3547</style>
3548
3549<p>The {{FAILURE_REPORT_TYPE}} closure request you submitted has been rejected.</p>
3550
3551<table id="approverComment">
3552 <thead>
3553 <th>Approver comment</th>
3554
3555 </thead>
3556 <tbody>
3557 <tr>
3558 <td class="label">{{APPROVER_COMMENT}}</td>
3559 </tr>
3560
3561 </tbody>
3562</table>
3563<p>To access the failure report, please follow this <a href="{{APP_URL}}failure/{{FAILURE_ID}}/preview">link</a></p>
3564
3565<p class="footer">This email has been generated automatically, please do not respond.</p>
3566''),
3567(18, 40010, NULL, ''{{FAILURE_REPORT_TYPE}} from {{COMPANY}} PGU ({{MGM_ORG}}) for a {{MVA}} MVA unit SN {{SERIAL_NUMBER}}. Report closure request has been approved.'',
3568''<style>
3569body, p {
3570 font-family: "Calibri",sans-serif;
3571 font-size: 11.0pt;
3572}
3573
3574thead {
3575 font-weight: bold;
3576}
3577table {
3578 border-collapse: collapse;
3579}
3580td {
3581 border-color: #A6A6A6;
3582}
3583td {
3584 padding: 5px;
3585}
3586th {
3587 text-align: left;
3588}
3589.label {
3590 font-weight: normal;
3591 border: 1px solid #A6A6A6;
3592 border-right: none;
3593}
3594.value {
3595 border: 1px solid #A6A6A6;
3596 border-left: none;
3597}
3598.separator{
3599 display: none;
3600}
3601.footer {
3602 font-family: "Calibri",sans-serif;
3603 font-size: 8.0pt;
3604 color: #A6A6A6
3605}
3606#approverComment {
3607 border-collapse: collapse;
3608 border: 1px solid #A6A6A6;
3609}
3610</style>
3611
3612<p>The {{FAILURE_REPORT_TYPE}} closure request you submitted has been accepted.</p>
3613
3614<table id="approverComment">
3615 <thead>
3616 <th>Approver comment</th>
3617
3618 </thead>
3619 <tbody>
3620 <tr>
3621 <td class="label">{{APPROVER_COMMENT}}</td>
3622 </tr>
3623
3624 </tbody>
3625</table>
3626<p>To access the failure report, please follow this <a href="{{APP_URL}}failure/{{FAILURE_ID}}/preview">link</a></p>
3627
3628<p class="footer">This email has been generated automatically, please do not respond.</p>
3629''),
3630(19, 40018, NULL, ''{{FAILURE_REPORT_TYPE}} from {{COMPANY}} PGU ({{MGM_ORG}}) for a {{MVA}} MVA unit SN {{SERIAL_NUMBER}}. Report closure requested.'',
3631''<style>
3632body, p {
3633 font-family: "Calibri",sans-serif;
3634 font-size: 11.0pt;
3635}
3636
3637thead {
3638 font-weight: bold;
3639}
3640table {
3641 border-collapse: collapse;
3642}
3643td {
3644 border-color: #A6A6A6;
3645}
3646td {
3647 padding: 5px;
3648}
3649th {
3650 text-align: left;
3651}
3652.label {
3653 font-weight: normal;
3654 border: 1px solid #A6A6A6;
3655 border-right: none;
3656}
3657.value {
3658 border: 1px solid #A6A6A6;
3659 border-left: none;
3660}
3661.separator{
3662 display: none;
3663}
3664.footer {
3665 font-family: "Calibri",sans-serif;
3666 font-size: 8.0pt;
3667 color: #A6A6A6
3668}
3669
3670</style>
3671
3672<p>A new {{FAILURE_REPORT_TYPE}} closure request has been submitted by {{PROCESS_ORIGINATOR}}</p>
3673
3674<p>Please review request as {{MGM_ORG}} Quality Manager.</p>
3675<p>
3676Use the following link to open the worklist item: <a href="{{APP_URL}}failure/task/{{FAILURE_ID}}/{{PROCESS_SERIAL_NUMBER}}">Open the report</a>
3677</p>
3678<p>Please review the report and approve or reject it</p>
3679
3680<p class="footer">This email has been generated automatically, please do not respond.</p>''),
3681(20, 40019, NULL, ''{{FAILURE_REPORT_TYPE}} from {{COMPANY}} PGU ({{MGM_ORG}}) for a {{MVA}} MVA unit SN {{SERIAL_NUMBER}}. Report closure requested.'',
3682''<style>
3683body, p {
3684 font-family: "Calibri",sans-serif;
3685 font-size: 11.0pt;
3686}
3687
3688thead {
3689 font-weight: bold;
3690}
3691table {
3692 border-collapse: collapse;
3693}
3694td {
3695 border-color: #A6A6A6;
3696}
3697td {
3698 padding: 5px;
3699}
3700th {
3701 text-align: left;
3702}
3703.label {
3704 font-weight: normal;
3705 border: 1px solid #A6A6A6;
3706 border-right: none;
3707}
3708.value {
3709 border: 1px solid #A6A6A6;
3710 border-left: none;
3711}
3712.separator{
3713 display: none;
3714}
3715.footer {
3716 font-family: "Calibri",sans-serif;
3717 font-size: 8.0pt;
3718 color: #A6A6A6
3719}
3720
3721</style>
3722
3723<p>A new {{FAILURE_REPORT_TYPE}} closure request has been submitted by {{PROCESS_ORIGINATOR}}</p>
3724
3725<p>Please review request as {{MGM_ORG}} PG Coordinator.</p>
3726<p>
3727Use the following link to open the worklist item: <a href="{{APP_URL}}failure/task/{{FAILURE_ID}}/{{PROCESS_SERIAL_NUMBER}}">Open the report</a>
3728</p>
3729<p>Please review the report and approve or reject it</p>
3730
3731<p class="footer">This email has been generated automatically, please do not respond.</p>''),
3732(21, 40014, NULL, ''TF from {{COMPANY}} PGU ({{MGM_ORG}}) for a {{MVA}} MVA unit SN {{SERIAL_NUMBER}}. Due date extension requested.'',
3733''<style>
3734body, p {
3735 font-family: "Calibri",sans-serif;
3736 font-size: 11.0pt;
3737}
3738
3739thead {
3740 font-weight: bold;
3741}
3742table {
3743 border-collapse: collapse;
3744}
3745td {
3746 border-color: #A6A6A6;
3747}
3748td {
3749 padding: 5px;
3750}
3751th {
3752 text-align: left;
3753}
3754.label {
3755 font-weight: normal;
3756 border: 1px solid #A6A6A6;
3757 border-right: none;
3758}
3759.value {
3760 border: 1px solid #A6A6A6;
3761 border-left: none;
3762}
3763.separator{
3764 display: none;
3765}
3766.footer {
3767 font-family: "Calibri",sans-serif;
3768 font-size: 8.0pt;
3769 color: #A6A6A6
3770}
3771#typeOfTest {
3772 border-collapse: collapse;
3773 border: 1px solid #A6A6A6;
3774}
3775</style>
3776
3777<p>A due date extension request has been submitted by {{PROCESS_ORIGINATOR}}</p>
3778
3779<p>Comment: {{DUE_DATE_EXTENSION_COMMENT}}</p>
3780
3781<p>To access the failure report, please follow this <a href="{{APP_URL}}failure/{{FAILURE_ID}}/preview">link</a></p>
3782<p>
3783Use the following link to open the worklist item: <a href="{{APP_URL}}failure/task/{{FAILURE_ID}}/{{PROCESS_SERIAL_NUMBER}}">Open the report</a>
3784</p>
3785<p>Please review the report and assign a new due date or reject the request.</p>
3786
3787<p class="footer">This email has been generated automatically, please do not respond.</p>''),
3788(22, 40015, NULL, ''TF from {{COMPANY}} PGU ({{MGM_ORG}}) for a {{MVA}} MVA unit SN {{SERIAL_NUMBER}}. Due date extension request has been approved.'',
3789''<style>
3790body, p {
3791 font-family: "Calibri",sans-serif;
3792 font-size: 11.0pt;
3793}
3794
3795thead {
3796 font-weight: bold;
3797}
3798table {
3799 border-collapse: collapse;
3800}
3801td {
3802 border-color: #A6A6A6;
3803}
3804td {
3805 padding: 5px;
3806}
3807th {
3808 text-align: left;
3809}
3810.label {
3811 font-weight: normal;
3812 border: 1px solid #A6A6A6;
3813 border-right: none;
3814}
3815.value {
3816 border: 1px solid #A6A6A6;
3817 border-left: none;
3818}
3819.separator{
3820 display: none;
3821}
3822.footer {
3823 font-family: "Calibri",sans-serif;
3824 font-size: 8.0pt;
3825 color: #A6A6A6
3826}
3827#approverComment {
3828 border-collapse: collapse;
3829 border: 1px solid #A6A6A6;
3830}
3831</style>
3832
3833<p>Your request for due date extension has been accepted</p>
3834
3835<table id="approverComment">
3836 <thead>
3837 <th>Approver comment</th>
3838
3839 </thead>
3840 <tbody>
3841 <tr>
3842 <td class="label">{{APPROVER_COMMENT}}</td>
3843 </tr>
3844
3845 </tbody>
3846</table>
3847<p>To access the failure report, please follow this <a href="{{APP_URL}}failure/{{FAILURE_ID}}/preview">link</a></p>
3848
3849<p class="footer">This email has been generated automatically, please do not respond.</p>''),
3850(23, 40016, NULL, ''TF from {{COMPANY}} PGU ({{MGM_ORG}}) for a {{MVA}} MVA unit SN {{SERIAL_NUMBER}}. Due date extension request has been rejected.'',
3851''<style>
3852body, p {
3853 font-family: "Calibri",sans-serif;
3854 font-size: 11.0pt;
3855}
3856
3857thead {
3858 font-weight: bold;
3859}
3860table {
3861 border-collapse: collapse;
3862}
3863td {
3864 border-color: #A6A6A6;
3865}
3866td {
3867 padding: 5px;
3868}
3869th {
3870 text-align: left;
3871}
3872.label {
3873 font-weight: normal;
3874 border: 1px solid #A6A6A6;
3875 border-right: none;
3876}
3877.value {
3878 border: 1px solid #A6A6A6;
3879 border-left: none;
3880}
3881.separator{
3882 display: none;
3883}
3884.footer {
3885 font-family: "Calibri",sans-serif;
3886 font-size: 8.0pt;
3887 color: #A6A6A6
3888}
3889#approverComment {
3890 border-collapse: collapse;
3891 border: 1px solid #A6A6A6;
3892}
3893</style>
3894
3895<p>Your request for due date extension has been rejected</p>
3896
3897<table id="approverComment">
3898 <thead>
3899 <th>Approver comment</th>
3900
3901 </thead>
3902 <tbody>
3903 <tr>
3904 <td class="label">{{APPROVER_COMMENT}}</td>
3905 </tr>
3906
3907 </tbody>
3908</table>
3909<p>To access the failure report, please follow this <a href="{{APP_URL}}failure/{{FAILURE_ID}}/preview">link</a></p>
3910
3911<p class="footer">This email has been generated automatically, please do not respond.</p>''),
3912
3913
3914(25, 40020, NULL,
3915''TF from {{COMPANY}} PGU ({{MGM_ORG}}) for a {{MVA}} MVA unit SN {{SERIAL_NUMBER}}. Report review has been requested.'',
3916''<style>
3917body, p {
3918 font-family: "Calibri",sans-serif;
3919 font-size: 11.0pt;
3920}
3921
3922thead {
3923 font-weight: bold;
3924}
3925table {
3926 border-collapse: collapse;
3927}
3928td {
3929 border-color: #A6A6A6;
3930}
3931td {
3932 padding: 5px;
3933}
3934th {
3935 text-align: left;
3936}
3937.label {
3938 font-weight: normal;
3939 border: 1px solid #A6A6A6;
3940 border-right: none;
3941}
3942.value {
3943 border: 1px solid #A6A6A6;
3944 border-left: none;
3945}
3946.separator{
3947 display: none;
3948}
3949.footer {
3950 font-family: "Calibri",sans-serif;
3951 font-size: 8.0pt;
3952 color: #A6A6A6
3953}
3954#typeOfTest {
3955 border-collapse: collapse;
3956 border: 1px solid #A6A6A6;
3957}
3958#firstParagraph {
3959 font-weight: bold;
3960 font-size: 16px;
3961 margin-bottom: -20px;
3962}
3963#secondParagraph {
3964 font-weight: bold;
3965 font-size: 20px;
3966 margin-bottom: -20px;
3967}
3968#thirdParagraph {
3969 font-weight: bold;
3970 font-size: 18px;
3971}
3972</style>
3973
3974<p>Dear {{DEAR_USER}},</p>
3975
3976<p>A new failure review request has been submitted by {{PROCESS_ORIGINATOR}}.</p>
3977<p>To view the failure report, please follow this <a href="{{APP_URL}}failure/{{FAILURE_ID}}/preview">link</a>.</p>
3978
3979<p>For information purposes, no action required.</p>
3980
3981<p class="footer">This email has been generated automatically, please do not respond.</p>
3982'')
3983
3984SET IDENTITY_INSERT [dbo].[NotificationTemplates] OFF'
3985
3986IF(CONTEXT_INFO() = 0x01 AND @@TRANCOUNT > 0)
3987 ROLLBACK
3988GO
3989
3990-- END \20190621.1_NotificationTemplates.sql
3991
3992-- BEGIN \20190809.1_FixDeployScripts.sql
3993EXEC dbo.K2Util_ExecuteScript 'a9ccd686-fbce-4b22-8801-d3a13e5a63e9', 0,
3994N'-- =============================================
3995-- GUID:A9CCD686-FBCE-4B22-8801-D3A13E5A63E9
3996-- =============================================
3997
3998SET IDENTITY_INSERT [dbo].[NotificationTemplates] ON
3999
4000DELETE FROM [dbo].[NotificationTemplates] WHERE [Id] IN (13, 14, 15, 16, 17, 18, 19, 20, 20, 21, 22, 23);
4001
4002INSERT INTO [dbo].[NotificationTemplates] ([Id], [NotificationTypeId], [FailureTypeId], [SubjectTemplate], [ContentTemplate]) VALUES
4003(13, 40017, NULL,
4004''TF from {{COMPANY}} PGU ({{MGM_ORG}}) for a {{MVA}} MVA unit SN {{SERIAL_NUMBER}}. Report review has been requested.'',
4005''<style>
4006body, p {
4007 font-family: "Calibri",sans-serif;
4008 font-size: 11.0pt;
4009}
4010
4011thead {
4012 font-weight: bold;
4013}
4014table {
4015 border-collapse: collapse;
4016}
4017td {
4018 border-color: #A6A6A6;
4019}
4020td {
4021 padding: 5px;
4022}
4023th {
4024 text-align: left;
4025}
4026.label {
4027 font-weight: normal;
4028 border: 1px solid #A6A6A6;
4029 border-right: none;
4030}
4031.value {
4032 border: 1px solid #A6A6A6;
4033 border-left: none;
4034}
4035.separator{
4036 display: none;
4037}
4038.footer {
4039 font-family: "Calibri",sans-serif;
4040 font-size: 8.0pt;
4041 color: #A6A6A6
4042}
4043#typeOfTest {
4044 border-collapse: collapse;
4045 border: 1px solid #A6A6A6;
4046}
4047#firstParagraph {
4048 font-weight: bold;
4049 font-size: 16px;
4050 margin-bottom: -20px;
4051}
4052#secondParagraph {
4053 font-weight: bold;
4054 font-size: 20px;
4055 margin-bottom: -20px;
4056}
4057#thirdParagraph {
4058 font-weight: bold;
4059 font-size: 18px;
4060}
4061</style>
4062
4063<p id="firstParagraph">TRANSFORMER METRICS</p>
4064
4065<p id="secondParagraph">A new failure review request has been submitted by {{PROCESS_ORIGINATOR}}. To view the failure report, please follow this <a href="{{APP_URL}}failure/{{FAILURE_ID}}/preview">link</a>.</p>
4066
4067<p id="thirdParagraph">For information purposes, no action required </p>
4068
4069<p class="footer">This email has been generated automatically, please do not respond.</p>
4070''),
4071(14, 40011, NULL, ''TF from {{COMPANY}} PGU ({{MGM_ORG}}) for a {{MVA}} MVA unit SN {{SERIAL_NUMBER}}. Report review requested.'',
4072''<style>
4073body, p {
4074 font-family: "Calibri",sans-serif;
4075 font-size: 11.0pt;
4076}
4077
4078thead {
4079 font-weight: bold;
4080}
4081
4082table {
4083 border-collapse: collapse;
4084}
4085
4086td {
4087 border-color: #A6A6A6;
4088}
4089
4090td {
4091 padding: 5px;
4092}
4093
4094th {
4095 text-align: left;
4096}
4097
4098.label {
4099 font-weight: normal;
4100 border: 1px solid #A6A6A6;
4101 border-right: none;
4102}
4103
4104.value {
4105 border: 1px solid #A6A6A6;
4106 border-left: none;
4107}
4108
4109.separator{
4110 display: none;
4111}
4112
4113.footer {
4114 font-family: "Calibri",sans-serif;
4115 font-size: 8.0pt;
4116 color: #A6A6A6
4117}
4118
4119</style>
4120
4121
4122<p>A new failure review request has been submitted by {{PROCESS_ORIGINATOR}}</p>
4123
4124<p>Please review the failure report plant analysis and approve or reject it.</p>
4125<p>
4126Use the following link to open the worklist item: <a href="{{APP_URL}}failure/task/{{FAILURE_ID}}/{{PROCESS_SERIAL_NUMBER}}">Open the report</a>
4127</p>
4128<p>Please review the report and approve or reject it</p>
4129
4130<p class="footer">This email has been generated automatically, please do not respond.</p>
4131''),
4132(15, 40012, NULL, ''TF from {{COMPANY}} PGU ({{MGM_ORG}}) for a {{MVA}} MVA unit SN {{SERIAL_NUMBER}}. Report review rejected.'',
4133''<style>
4134body, p {
4135 font-family: "Calibri",sans-serif;
4136 font-size: 11.0pt;
4137}
4138
4139thead {
4140 font-weight: bold;
4141}
4142table {
4143 border-collapse: collapse;
4144}
4145td {
4146 border-color: #A6A6A6;
4147}
4148td {
4149 padding: 5px;
4150}
4151th {
4152 text-align: left;
4153}
4154.label {
4155 font-weight: normal;
4156 border: 1px solid #A6A6A6;
4157 border-right: none;
4158}
4159.value {
4160 border: 1px solid #A6A6A6;
4161 border-left: none;
4162}
4163.separator{
4164 display: none;
4165}
4166.footer {
4167 font-family: "Calibri",sans-serif;
4168 font-size: 8.0pt;
4169 color: #A6A6A6
4170}
4171#approverComment {
4172 border-collapse: collapse;
4173 border: 1px solid #A6A6A6;
4174}
4175</style>
4176
4177<p>The failure review, you submitted has been rejected</p>
4178
4179<table id="approverComment">
4180 <thead>
4181 <th>Approver comment</th>
4182
4183 </thead>
4184 <tbody>
4185 <tr>
4186 <td class="label">{{APPROVER_COMMENT}}</td>
4187 </tr>
4188
4189 </tbody>
4190</table>
4191
4192<p class="footer">This email has been generated automatically, please do not respond.</p>
4193''),
4194(16, 40013, NULL, ''TF from {{COMPANY}} PGU ({{MGM_ORG}}) for a {{MVA}} MVA unit SN {{SERIAL_NUMBER}}. Report review approved.'',
4195''<style>
4196body, p {
4197 font-family: "Calibri",sans-serif;
4198 font-size: 11.0pt;
4199}
4200
4201thead {
4202 font-weight: bold;
4203}
4204table {
4205 border-collapse: collapse;
4206}
4207td {
4208 border-color: #A6A6A6;
4209}
4210td {
4211 padding: 5px;
4212}
4213th {
4214 text-align: left;
4215}
4216.label {
4217 font-weight: normal;
4218 border: 1px solid #A6A6A6;
4219 border-right: none;
4220}
4221.value {
4222 border: 1px solid #A6A6A6;
4223 border-left: none;
4224}
4225.separator{
4226 display: none;
4227}
4228.footer {
4229 font-family: "Calibri",sans-serif;
4230 font-size: 8.0pt;
4231 color: #A6A6A6
4232}
4233#approverComment {
4234 border-collapse: collapse;
4235 border: 1px solid #A6A6A6;
4236}
4237</style>
4238
4239<p>The failure review, you submitted has been approved</p>
4240
4241<table id="approverComment">
4242 <thead>
4243 <th>Approver comment</th>
4244
4245 </thead>
4246 <tbody>
4247 <tr>
4248 <td class="label">{{APPROVER_COMMENT}}</td>
4249 </tr>
4250
4251 </tbody>
4252</table>
4253
4254<p class="footer">This email has been generated automatically, please do not respond.</p>
4255''),
4256(17, 40009, NULL, ''{{FAILURE_REPORT_TYPE}} from {{COMPANY}} PGU ({{MGM_ORG}}) for a {{MVA}} MVA unit SN {{SERIAL_NUMBER}}. Report closure request has been rejected.'',
4257''<style>
4258body, p {
4259 font-family: "Calibri",sans-serif;
4260 font-size: 11.0pt;
4261}
4262
4263thead {
4264 font-weight: bold;
4265}
4266table {
4267 border-collapse: collapse;
4268}
4269td {
4270 border-color: #A6A6A6;
4271}
4272td {
4273 padding: 5px;
4274}
4275th {
4276 text-align: left;
4277}
4278.label {
4279 font-weight: normal;
4280 border: 1px solid #A6A6A6;
4281 border-right: none;
4282}
4283.value {
4284 border: 1px solid #A6A6A6;
4285 border-left: none;
4286}
4287.separator{
4288 display: none;
4289}
4290.footer {
4291 font-family: "Calibri",sans-serif;
4292 font-size: 8.0pt;
4293 color: #A6A6A6
4294}
4295#approverComment {
4296 border-collapse: collapse;
4297 border: 1px solid #A6A6A6;
4298}
4299</style>
4300
4301<p>The {{FAILURE_REPORT_TYPE}} closure request you submitted has been rejected.</p>
4302
4303<table id="approverComment">
4304 <thead>
4305 <th>Approver comment</th>
4306
4307 </thead>
4308 <tbody>
4309 <tr>
4310 <td class="label">{{APPROVER_COMMENT}}</td>
4311 </tr>
4312
4313 </tbody>
4314</table>
4315<p>To access the failure report, please follow this <a href="{{APP_URL}}failure/{{FAILURE_ID}}/preview">link</a></p>
4316
4317<p class="footer">This email has been generated automatically, please do not respond.</p>
4318''),
4319(18, 40010, NULL, ''{{FAILURE_REPORT_TYPE}} from {{COMPANY}} PGU ({{MGM_ORG}}) for a {{MVA}} MVA unit SN {{SERIAL_NUMBER}}. Report closure request has been approved.'',
4320''<style>
4321body, p {
4322 font-family: "Calibri",sans-serif;
4323 font-size: 11.0pt;
4324}
4325
4326thead {
4327 font-weight: bold;
4328}
4329table {
4330 border-collapse: collapse;
4331}
4332td {
4333 border-color: #A6A6A6;
4334}
4335td {
4336 padding: 5px;
4337}
4338th {
4339 text-align: left;
4340}
4341.label {
4342 font-weight: normal;
4343 border: 1px solid #A6A6A6;
4344 border-right: none;
4345}
4346.value {
4347 border: 1px solid #A6A6A6;
4348 border-left: none;
4349}
4350.separator{
4351 display: none;
4352}
4353.footer {
4354 font-family: "Calibri",sans-serif;
4355 font-size: 8.0pt;
4356 color: #A6A6A6
4357}
4358#approverComment {
4359 border-collapse: collapse;
4360 border: 1px solid #A6A6A6;
4361}
4362</style>
4363
4364<p>The {{FAILURE_REPORT_TYPE}} closure request you submitted has been accepted.</p>
4365
4366<table id="approverComment">
4367 <thead>
4368 <th>Approver comment</th>
4369
4370 </thead>
4371 <tbody>
4372 <tr>
4373 <td class="label">{{APPROVER_COMMENT}}</td>
4374 </tr>
4375
4376 </tbody>
4377</table>
4378<p>To access the failure report, please follow this <a href="{{APP_URL}}failure/{{FAILURE_ID}}/preview">link</a></p>
4379
4380<p class="footer">This email has been generated automatically, please do not respond.</p>
4381''),
4382(19, 40018, NULL, ''{{FAILURE_REPORT_TYPE}} from {{COMPANY}} PGU ({{MGM_ORG}}) for a {{MVA}} MVA unit SN {{SERIAL_NUMBER}}. Report closure requested.'',
4383''<style>
4384body, p {
4385 font-family: "Calibri",sans-serif;
4386 font-size: 11.0pt;
4387}
4388
4389thead {
4390 font-weight: bold;
4391}
4392table {
4393 border-collapse: collapse;
4394}
4395td {
4396 border-color: #A6A6A6;
4397}
4398td {
4399 padding: 5px;
4400}
4401th {
4402 text-align: left;
4403}
4404.label {
4405 font-weight: normal;
4406 border: 1px solid #A6A6A6;
4407 border-right: none;
4408}
4409.value {
4410 border: 1px solid #A6A6A6;
4411 border-left: none;
4412}
4413.separator{
4414 display: none;
4415}
4416.footer {
4417 font-family: "Calibri",sans-serif;
4418 font-size: 8.0pt;
4419 color: #A6A6A6
4420}
4421
4422</style>
4423
4424<p>A new {{FAILURE_REPORT_TYPE}} closure request has been submitted by {{PROCESS_ORIGINATOR}}</p>
4425
4426<p>Please review request as {{MGM_ORG}} Quality Manager.</p>
4427<p>
4428Use the following link to open the worklist item: <a href="{{APP_URL}}failure/task/{{FAILURE_ID}}/{{PROCESS_SERIAL_NUMBER}}">Open the report</a>
4429</p>
4430<p>Please review the report and approve or reject it</p>
4431
4432<p class="footer">This email has been generated automatically, please do not respond.</p>''),
4433(20, 40019, NULL, ''{{FAILURE_REPORT_TYPE}} from {{COMPANY}} PGU ({{MGM_ORG}}) for a {{MVA}} MVA unit SN {{SERIAL_NUMBER}}. Report closure requested.'',
4434''<style>
4435body, p {
4436 font-family: "Calibri",sans-serif;
4437 font-size: 11.0pt;
4438}
4439
4440thead {
4441 font-weight: bold;
4442}
4443table {
4444 border-collapse: collapse;
4445}
4446td {
4447 border-color: #A6A6A6;
4448}
4449td {
4450 padding: 5px;
4451}
4452th {
4453 text-align: left;
4454}
4455.label {
4456 font-weight: normal;
4457 border: 1px solid #A6A6A6;
4458 border-right: none;
4459}
4460.value {
4461 border: 1px solid #A6A6A6;
4462 border-left: none;
4463}
4464.separator{
4465 display: none;
4466}
4467.footer {
4468 font-family: "Calibri",sans-serif;
4469 font-size: 8.0pt;
4470 color: #A6A6A6
4471}
4472
4473</style>
4474
4475<p>A new {{FAILURE_REPORT_TYPE}} closure request has been submitted by {{PROCESS_ORIGINATOR}}</p>
4476
4477<p>Please review request as {{MGM_ORG}} PG Coordinator.</p>
4478<p>
4479Use the following link to open the worklist item: <a href="{{APP_URL}}failure/task/{{FAILURE_ID}}/{{PROCESS_SERIAL_NUMBER}}">Open the report</a>
4480</p>
4481<p>Please review the report and approve or reject it</p>
4482
4483<p class="footer">This email has been generated automatically, please do not respond.</p>''),
4484(21, 40014, NULL, ''TF from {{COMPANY}} PGU ({{MGM_ORG}}) for a {{MVA}} MVA unit SN {{SERIAL_NUMBER}}. Due date extension requested.'',
4485''<style>
4486body, p {
4487 font-family: "Calibri",sans-serif;
4488 font-size: 11.0pt;
4489}
4490
4491thead {
4492 font-weight: bold;
4493}
4494table {
4495 border-collapse: collapse;
4496}
4497td {
4498 border-color: #A6A6A6;
4499}
4500td {
4501 padding: 5px;
4502}
4503th {
4504 text-align: left;
4505}
4506.label {
4507 font-weight: normal;
4508 border: 1px solid #A6A6A6;
4509 border-right: none;
4510}
4511.value {
4512 border: 1px solid #A6A6A6;
4513 border-left: none;
4514}
4515.separator{
4516 display: none;
4517}
4518.footer {
4519 font-family: "Calibri",sans-serif;
4520 font-size: 8.0pt;
4521 color: #A6A6A6
4522}
4523#typeOfTest {
4524 border-collapse: collapse;
4525 border: 1px solid #A6A6A6;
4526}
4527</style>
4528
4529<p>A due date extension request has been submitted by {{PROCESS_ORIGINATOR}}</p>
4530
4531<p>Comment: {{DUE_DATE_EXTENSION_COMMENT}}</p>
4532
4533<p>To access the failure report, please follow this <a href="{{APP_URL}}failure/{{FAILURE_ID}}/preview">link</a></p>
4534<p>
4535Use the following link to open the worklist item: <a href="{{APP_URL}}failure/task/{{FAILURE_ID}}/{{PROCESS_SERIAL_NUMBER}}">Open the report</a>
4536</p>
4537<p>Please review the report and assign a new due date or reject the request.</p>
4538
4539<p class="footer">This email has been generated automatically, please do not respond.</p>''),
4540(22, 40015, NULL, ''TF from {{COMPANY}} PGU ({{MGM_ORG}}) for a {{MVA}} MVA unit SN {{SERIAL_NUMBER}}. Due date extension request has been approved.'',
4541''<style>
4542body, p {
4543 font-family: "Calibri",sans-serif;
4544 font-size: 11.0pt;
4545}
4546
4547thead {
4548 font-weight: bold;
4549}
4550table {
4551 border-collapse: collapse;
4552}
4553td {
4554 border-color: #A6A6A6;
4555}
4556td {
4557 padding: 5px;
4558}
4559th {
4560 text-align: left;
4561}
4562.label {
4563 font-weight: normal;
4564 border: 1px solid #A6A6A6;
4565 border-right: none;
4566}
4567.value {
4568 border: 1px solid #A6A6A6;
4569 border-left: none;
4570}
4571.separator{
4572 display: none;
4573}
4574.footer {
4575 font-family: "Calibri",sans-serif;
4576 font-size: 8.0pt;
4577 color: #A6A6A6
4578}
4579#approverComment {
4580 border-collapse: collapse;
4581 border: 1px solid #A6A6A6;
4582}
4583</style>
4584
4585<p>Your request for due date extension has been accepted</p>
4586
4587<table id="approverComment">
4588 <thead>
4589 <th>Approver comment</th>
4590
4591 </thead>
4592 <tbody>
4593 <tr>
4594 <td class="label">{{APPROVER_COMMENT}}</td>
4595 </tr>
4596
4597 </tbody>
4598</table>
4599<p>To access the failure report, please follow this <a href="{{APP_URL}}failure/{{FAILURE_ID}}/preview">link</a></p>
4600
4601<p class="footer">This email has been generated automatically, please do not respond.</p>''),
4602(23, 40016, NULL, ''TF from {{COMPANY}} PGU ({{MGM_ORG}}) for a {{MVA}} MVA unit SN {{SERIAL_NUMBER}}. Due date extension request has been rejected.'',
4603''<style>
4604body, p {
4605 font-family: "Calibri",sans-serif;
4606 font-size: 11.0pt;
4607}
4608
4609thead {
4610 font-weight: bold;
4611}
4612table {
4613 border-collapse: collapse;
4614}
4615td {
4616 border-color: #A6A6A6;
4617}
4618td {
4619 padding: 5px;
4620}
4621th {
4622 text-align: left;
4623}
4624.label {
4625 font-weight: normal;
4626 border: 1px solid #A6A6A6;
4627 border-right: none;
4628}
4629.value {
4630 border: 1px solid #A6A6A6;
4631 border-left: none;
4632}
4633.separator{
4634 display: none;
4635}
4636.footer {
4637 font-family: "Calibri",sans-serif;
4638 font-size: 8.0pt;
4639 color: #A6A6A6
4640}
4641#approverComment {
4642 border-collapse: collapse;
4643 border: 1px solid #A6A6A6;
4644}
4645</style>
4646
4647<p>Your request for due date extension has been rejected</p>
4648
4649<table id="approverComment">
4650 <thead>
4651 <th>Approver comment</th>
4652
4653 </thead>
4654 <tbody>
4655 <tr>
4656 <td class="label">{{APPROVER_COMMENT}}</td>
4657 </tr>
4658
4659 </tbody>
4660</table>
4661<p>To access the failure report, please follow this <a href="{{APP_URL}}failure/{{FAILURE_ID}}/preview">link</a></p>
4662
4663<p class="footer">This email has been generated automatically, please do not respond.</p>'')
4664
4665SET IDENTITY_INSERT [dbo].[NotificationTemplates] OFF'
4666
4667IF(CONTEXT_INFO() = 0x01 AND @@TRANCOUNT > 0)
4668 ROLLBACK
4669GO
4670
4671-- END \20190809.1_FixDeployScripts.sql
4672
4673-- BEGIN \20190809.2_ChangeNotifications.sql
4674EXEC dbo.K2Util_ExecuteScript '73d835a1-a28e-4254-93da-4b9474edfd6d', 0,
4675N'-- =============================================
4676-- GUID:73D835A1-A28E-4254-93DA-4B9474EDFD6D
4677-- =============================================
4678
4679UPDATE [dbo].[NotificationTemplates]
4680SET [SubjectTemplate] = N''{{FAILURE_REPORT_TYPE}} reported by {{COMPANY}} PGU ({{MGM_ORG}}) for a {{MVA}} MVA unit SN {{SERIAL_NUMBER}}. You have been assigned as expert support.''
4681WHERE [NotificationTypeId] = 40004;
4682
4683UPDATE [dbo].[NotificationTemplates]
4684SET [SubjectTemplate] = N''{{FAILURE_REPORT_TYPE}} reported by {{COMPANY}} PGU ({{MGM_ORG}}) for a {{MVA}} MVA unit SN {{SERIAL_NUMBER}}. Due date expires - submit for review''
4685WHERE [NotificationTypeId] = 40005 AND [FailureTypeId] = 10001;
4686
4687UPDATE [dbo].[NotificationTemplates]
4688SET [SubjectTemplate] = N''{{FAILURE_REPORT_TYPE}} reported by {{COMPANY}} PGU ({{MGM_ORG}}) for a {{MVA}} MVA unit SN {{SERIAL_NUMBER}}. Due date expires - submit for closure''
4689WHERE [NotificationTypeId] = 40005 AND [FailureTypeId] = 10002;'
4690
4691IF(CONTEXT_INFO() = 0x01 AND @@TRANCOUNT > 0)
4692 ROLLBACK
4693GO
4694
4695-- END \20190809.2_ChangeNotifications.sql
4696
4697-- BEGIN \20190809.3_DictionaryItems_update.sql
4698EXEC dbo.K2Util_ExecuteScript 'ed7c6fc7-dec2-4a95-9d9b-6c35b815852d', 0,
4699N'-- =============================================
4700-- GUID:ED7C6FC7-DEC2-4A95-9D9B-6C35B815852D
4701-- =============================================
4702
4703
4704IF NOT EXISTS (SELECT * FROM [dbo].[DictionaryItems] WHERE [DictionaryItemId] = 60007) BEGIN
4705INSERT [dbo].[DictionaryItems] ([DictionaryItemId], [DictionaryId], [IsActive], [ItemOrder], [Name], [Code]) VALUES (60007, 6, 1, NULL, N''Failure updated'', N''Failure updated'')
4706END'
4707
4708IF(CONTEXT_INFO() = 0x01 AND @@TRANCOUNT > 0)
4709 ROLLBACK
4710GO
4711
4712-- END \20190809.3_DictionaryItems_update.sql
4713
4714-- BEGIN \20190814.1_DictionaryItem_update.sql
4715EXEC dbo.K2Util_ExecuteScript '1df18ba4-ecee-4fd3-ba72-2b80d9fbcf93', 0,
4716N'-- =============================================
4717-- GUID:1DF18BA4-ECEE-4FD3-BA72-2B80D9FBCF93
4718-- =============================================
4719
4720Update [dbo].[DictionaryItems]
4721SET Name = ''Plant analysis ongoing'', Code = ''Plant analysis ongoing''
4722WHERE [DictionaryItemId] = 60002'
4723
4724IF(CONTEXT_INFO() = 0x01 AND @@TRANCOUNT > 0)
4725 ROLLBACK
4726GO
4727
4728-- END \20190814.1_DictionaryItem_update.sql
4729
4730-- BEGIN \20190814.2_NotificationTemplates.sql
4731EXEC dbo.K2Util_ExecuteScript '7d11aff3-59e7-40eb-8a8a-b1ee91fd0b01', 0,
4732N'-- =============================================
4733-- GUID:7D11AFF3-59E7-40EB-8A8A-B1EE91FD0B01
4734-- =============================================
4735
4736UPDATE dbo.NotificationTemplates
4737SET ContentTemplate =
4738''<style>
4739body, p {
4740 font-family: "Calibri",sans-serif;
4741 font-size: 11.0pt;
4742}
4743
4744thead {
4745 font-weight: bold;
4746}
4747table {
4748 border-collapse: collapse;
4749}
4750td {
4751 border-color: #A6A6A6;
4752}
4753td {
4754 padding: 5px;
4755}
4756th {
4757 text-align: left;
4758}
4759.label {
4760 font-weight: normal;
4761 border: 1px solid #A6A6A6;
4762 border-right: none;
4763}
4764.value {
4765 border: 1px solid #A6A6A6;
4766 border-left: none;
4767}
4768.separator{
4769 display: none;
4770}
4771.footer {
4772 font-family: "Calibri",sans-serif;
4773 font-size: 8.0pt;
4774 color: #A6A6A6
4775}
4776#typeOfTest {
4777 border-collapse: collapse;
4778 border: 1px solid #A6A6A6;
4779}
4780#firstParagraph {
4781 font-weight: bold;
4782 font-size: 16px;
4783 margin-bottom: -20px;
4784}
4785#secondParagraph {
4786 font-weight: bold;
4787 font-size: 20px;
4788 margin-bottom: -20px;
4789}
4790#thirdParagraph {
4791 font-weight: bold;
4792 font-size: 18px;
4793}
4794</style>
4795
4796<p>Dear {{DEAR_USER}}</p>
4797
4798<p>A new failure review request has been submitted by {{PROCESS_ORIGINATOR}}.</p>
4799<p>To view the failure report, please follow this <a href="{{APP_URL}}failure/{{FAILURE_ID}}/preview">link</a>.</p>
4800
4801<p>For information purposes, no action required.</p>
4802
4803<p class="footer">This email has been generated automatically, please do not respond.</p>''
4804WHERE NotificationTypeId = 40017'
4805
4806IF(CONTEXT_INFO() = 0x01 AND @@TRANCOUNT > 0)
4807 ROLLBACK
4808GO
4809
4810-- END \20190814.2_NotificationTemplates.sql
4811
4812-- BEGIN \20191001.1_FailureStatusChanges.sql
4813EXEC dbo.K2Util_ExecuteScript '7d11aff3-59e7-40eb-8a8a-f1ee91fd0b01', 0,
4814N'-- =============================================
4815-- GUID:7D11AFF3-59E7-40EB-8A8A-F1EE91FD0B01
4816-- =============================================
4817
4818UPDATE [dbo].[DictionaryItems]
4819SET Name = N''Final editing ongoing'', Code = N''Final editing ongoing''
4820WHERE [DictionaryItemId] = 60001
4821
4822UPDATE [dbo].[DictionaryItems]
4823SET Name = N''RCA ongoing'', Code = N''RCA ongoing''
4824 WHERE [DictionaryItemId] = 60002
4825
4826UPDATE [dbo].[DictionaryItems]
4827SET Name = N''RCA submitted for review'', Code = N''RCA submitted for review''
4828WHERE [DictionaryItemId] = 60003
4829
4830UPDATE [dbo].[DictionaryItems]
4831SET Name = N''Report approved'', Code = N''Report approved''
4832WHERE [DictionaryItemId] = 60004
4833
4834UPDATE [dbo].[DictionaryItems]
4835SET Name = N''Report submitted for final approval'', Code = N''Report submitted for final approval''
4836WHERE [DictionaryItemId] = 60005
4837
4838
4839
4840UPDATE [dbo].[FailureDescription]
4841SET [Value] = N''Manufacturing acc to drawing unachievable''
4842WHERE [Value] = N''Manucafturing acc to drawing impossible'''
4843
4844IF(CONTEXT_INFO() = 0x01 AND @@TRANCOUNT > 0)
4845 ROLLBACK
4846GO
4847
4848-- END \20191001.1_FailureStatusChanges.sql
4849
4850-- BEGIN \20191002.1_AddColumnToTransformers.sql
4851EXEC dbo.K2Util_ExecuteScript '7d11aff3-59e7-40eb-8a8a-f1ee91fd0d01', 0,
4852N'-- =============================================
4853-- GUID:7D11AFF3-59E7-40EB-8A8A-F1EE91FD0D01
4854-- =============================================
4855
4856ALTER TABLE dbo.TransformerUnits ADD
4857 CoreDesignId int NULL
4858
4859ALTER TABLE dbo.TransformerUnits ADD CONSTRAINT
4860 FK_TransformerUnits_DictionaryItems FOREIGN KEY
4861 (
4862 CoreDesignId
4863 ) REFERENCES dbo.DictionaryItems
4864 (
4865 DictionaryItemId
4866 ) ON UPDATE NO ACTION
4867 ON DELETE NO ACTION
4868
4869
4870
4871
4872IF NOT EXISTS (SELECT * FROM [dbo].[Dictionaries] WHERE [DictionaryId] = 48) BEGIN
4873 INSERT [dbo].[Dictionaries] ([DictionaryId], [Name]) VALUES (48, N''Core designs'') END
4874
4875
4876IF NOT EXISTS (SELECT * FROM [dbo].[DictionaryItems] WHERE [DictionaryItemId] = 480001) BEGIN
4877INSERT [dbo].[DictionaryItems] ([DictionaryItemId], [DictionaryId], [IsActive], [ItemOrder], [Name], [Code]) VALUES (480001, 48, 1, NULL, N''D'', NULL)
4878END -- Core designs
4879IF NOT EXISTS (SELECT * FROM [dbo].[DictionaryItems] WHERE [DictionaryItemId] = 480002) BEGIN
4880INSERT [dbo].[DictionaryItems] ([DictionaryItemId], [DictionaryId], [IsActive], [ItemOrder], [Name], [Code]) VALUES (480002, 48, 1, NULL, N''T'', NULL)
4881END
4882IF NOT EXISTS (SELECT * FROM [dbo].[DictionaryItems] WHERE [DictionaryItemId] = 480003) BEGIN
4883INSERT [dbo].[DictionaryItems] ([DictionaryItemId], [DictionaryId], [IsActive], [ItemOrder], [Name], [Code]) VALUES (480003, 48, 1, NULL, N''EY'', NULL)
4884END
4885IF NOT EXISTS (SELECT * FROM [dbo].[DictionaryItems] WHERE [DictionaryItemId] = 480004) BEGIN
4886INSERT [dbo].[DictionaryItems] ([DictionaryItemId], [DictionaryId], [IsActive], [ItemOrder], [Name], [Code]) VALUES (480004, 48, 1, NULL, N''DY'', NULL)
4887END
4888IF NOT EXISTS (SELECT * FROM [dbo].[DictionaryItems] WHERE [DictionaryItemId] = 480005) BEGIN
4889INSERT [dbo].[DictionaryItems] ([DictionaryItemId], [DictionaryId], [IsActive], [ItemOrder], [Name], [Code]) VALUES (480005, 48, 1, NULL, N''TY-1'', NULL)
4890END
4891IF NOT EXISTS (SELECT * FROM [dbo].[DictionaryItems] WHERE [DictionaryItemId] = 480006) BEGIN
4892INSERT [dbo].[DictionaryItems] ([DictionaryItemId], [DictionaryId], [IsActive], [ItemOrder], [Name], [Code]) VALUES (480006, 48, 1, NULL, N''TY-3'', NULL)
4893END
4894IF NOT EXISTS (SELECT * FROM [dbo].[DictionaryItems] WHERE [DictionaryItemId] = 480007) BEGIN
4895INSERT [dbo].[DictionaryItems] ([DictionaryItemId], [DictionaryId], [IsActive], [ItemOrder], [Name], [Code]) VALUES (480007, 48, 1, NULL, N''Shell'', NULL)
4896END
4897IF NOT EXISTS (SELECT * FROM [dbo].[DictionaryItems] WHERE [DictionaryItemId] = 480008) BEGIN
4898INSERT [dbo].[DictionaryItems] ([DictionaryItemId], [DictionaryId], [IsActive], [ItemOrder], [Name], [Code]) VALUES (480008, 48, 1, NULL, N''Other'', NULL)
4899END'
4900
4901IF(CONTEXT_INFO() = 0x01 AND @@TRANCOUNT > 0)
4902 ROLLBACK
4903GO
4904
4905-- END \20191002.1_AddColumnToTransformers.sql
4906
4907-- BEGIN \20191003.1_FailureStatusChanges.sql
4908EXEC dbo.K2Util_ExecuteScript '7d11aff3-59e7-40eb-8a8a-f1ee91fd0b06', 0,
4909N'-- =============================================
4910-- GUID:7D11AFF3-59E7-40EB-8A8A-F1EE91FD0B06
4911-- =============================================
4912
4913UPDATE [dbo].[Failures]
4914SET FaliureReportStatus = N''Final editing ongoing''
4915WHERE FaliureReportStatus = N''Plant analysis completed''
4916
4917UPDATE [dbo].[Failures]
4918SET FaliureReportStatus = N''RCA ongoing''
4919WHERE FaliureReportStatus = N''Plant analysis ongoing''
4920
4921UPDATE [dbo].[Failures]
4922SET FaliureReportStatus = N''RCA submitted for review''
4923WHERE FaliureReportStatus = N''Plant analysis submitted for review''
4924
4925UPDATE [dbo].[Failures]
4926SET FaliureReportStatus = N''Report approved''
4927WHERE FaliureReportStatus = N''Report published''
4928
4929UPDATE [dbo].[Failures]
4930SET FaliureReportStatus = N''Report submitted for final approval''
4931WHERE FaliureReportStatus = N''Report submitted for closure'''
4932
4933IF(CONTEXT_INFO() = 0x01 AND @@TRANCOUNT > 0)
4934 ROLLBACK
4935GO
4936
4937-- END \20191003.1_FailureStatusChanges.sql
4938
4939-----------------------------------
4940-- koniec skryptow z repozytorium
4941-----------------------------------
4942IF(CONTEXT_INFO() = 0x00 AND @@TRANCOUNT > 0)
4943 COMMIT
4944GO
4945
4946
4947GO
4948
4949GO
4950PRINT N'Checking existing data against newly created constraints';
4951
4952
4953GO
4954USE [$(DatabaseName)];
4955
4956
4957GO
4958ALTER TABLE [dbo].[Filters] WITH CHECK CHECK CONSTRAINT [FK_Filters_DictionaryItems];
4959
4960
4961GO
4962PRINT N'Update complete.';
4963
4964
4965GO