text stringlengths 6 9.38M |
|---|
CREATE TABLE CUSTOMER (
custkey int,
name string,
address string,
nationkey int,
phone string,
acctbal float,
mktsegment string,
comment string
) FROM FILE 'customer.tbl' USING TPCH('customer');
CREATE TABLE ORDERS (
orderkey int,
custkey int,
orderstatus string,
totalprice float,
orderdate int,
orderpriority string,
clerk string,
shippriority int,
comment string
) FROM FILE 'orders.tbl' USING TPCH('orders');
CREATE TABLE LINEITEM (
orderkey int,
partkey int,
suppkey int,
linenumber int,
quantity float,
extendedprice float,
discount float,
tax float,
returnflag string,
linestatus string,
shipdate int,
commitdate int,
receiptdate int,
shipinstruct string,
shipmode string,
comment string
) FROM FILE 'lineitem.tbl' USING TPCH('lineitem');
CREATE TABLE SUPPLIER (
suppkey int,
name string,
address string,
nationkey int,
phone string,
acctbal float,
comment string
) FROM FILE 'supplier.tbl' USING TPCH('supplier');
CREATE TABLE NATION (
nationkey int,
name string,
regionkey int,
comment string
) FROM FILE 'nation.tbl' USING TPCH('nation');
CREATE TABLE REGION (
regionkey int,
name string,
comment string
) FROM FILE 'region.tbl' USING TPCH('region');
SELECT n.name,
SUM(l.extendedprice * (1 - l.discount)) AS revenue
FROM CUSTOMER c, ORDERS o, LINEITEM l, SUPPLIER s, NATION n, REGION r
WHERE (c.custkey = o.custkey)
AND (l.orderkey = o.orderkey)
AND (l.suppkey = s.suppkey)
AND (c.nationkey = s.nationkey)
AND (s.nationkey = n.nationkey)
AND (n.regionkey = r.regionkey)
AND (r.name = 'ASIA')
AND (o.orderdate >= 19940101)
AND (o.orderdate < 19950101)
GROUP BY n.name;
|
CALL AddCompany(
'Bourns'
);
CALL AddResistor(
'Bourns',
'CR0603-FX-10R0ELF',
'0603(1608)',
'RESISTOR',
10.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-10R2ELF',
'0603(1608)',
'RESISTOR',
10.200000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-10R5ELF',
'0603(1608)',
'RESISTOR',
10.500000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-10R7ELF',
'0603(1608)',
'RESISTOR',
10.700000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-11R0ELF',
'0603(1608)',
'RESISTOR',
11.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-11R3ELF',
'0603(1608)',
'RESISTOR',
11.300000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-11R5ELF',
'0603(1608)',
'RESISTOR',
11.500000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-11R8ELF',
'0603(1608)',
'RESISTOR',
11.800000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-12R0ELF',
'0603(1608)',
'RESISTOR',
12.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-12R1ELF',
'0603(1608)',
'RESISTOR',
12.100000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-12R4ELF',
'0603(1608)',
'RESISTOR',
12.400000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-12R7ELF',
'0603(1608)',
'RESISTOR',
12.700000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-13R0ELF',
'0603(1608)',
'RESISTOR',
13.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-13R3ELF',
'0603(1608)',
'RESISTOR',
13.300000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-13R7ELF',
'0603(1608)',
'RESISTOR',
13.700000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-14R0ELF',
'0603(1608)',
'RESISTOR',
14.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-14R3ELF',
'0603(1608)',
'RESISTOR',
14.300000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-14R7ELF',
'0603(1608)',
'RESISTOR',
14.700000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-15R0ELF',
'0603(1608)',
'RESISTOR',
15.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-15R4ELF',
'0603(1608)',
'RESISTOR',
15.400000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-15R8ELF',
'0603(1608)',
'RESISTOR',
15.800000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-16R0ELF',
'0603(1608)',
'RESISTOR',
16.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-16R2ELF',
'0603(1608)',
'RESISTOR',
16.200000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-16R5ELF',
'0603(1608)',
'RESISTOR',
16.500000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-16R9ELF',
'0603(1608)',
'RESISTOR',
16.900000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-17R4ELF',
'0603(1608)',
'RESISTOR',
17.400000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-17R8ELF',
'0603(1608)',
'RESISTOR',
17.800000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-18R0ELF',
'0603(1608)',
'RESISTOR',
18.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-18R2ELF',
'0603(1608)',
'RESISTOR',
18.200000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-18R7ELF',
'0603(1608)',
'RESISTOR',
18.700000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-19R1ELF',
'0603(1608)',
'RESISTOR',
19.100000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-19R6ELF',
'0603(1608)',
'RESISTOR',
19.600000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-20R0ELF',
'0603(1608)',
'RESISTOR',
20.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-20R5ELF',
'0603(1608)',
'RESISTOR',
20.500000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-21R0ELF',
'0603(1608)',
'RESISTOR',
21.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-21R5ELF',
'0603(1608)',
'RESISTOR',
21.500000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-22R0ELF',
'0603(1608)',
'RESISTOR',
22.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-22R1ELF',
'0603(1608)',
'RESISTOR',
22.100000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-22R6ELF',
'0603(1608)',
'RESISTOR',
22.600000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-23R2ELF',
'0603(1608)',
'RESISTOR',
23.200000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-23R7ELF',
'0603(1608)',
'RESISTOR',
23.700000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-24R0ELF',
'0603(1608)',
'RESISTOR',
24.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-24R3ELF',
'0603(1608)',
'RESISTOR',
24.300000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-24R9ELF',
'0603(1608)',
'RESISTOR',
24.900000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-25R5ELF',
'0603(1608)',
'RESISTOR',
25.500000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-26R1ELF',
'0603(1608)',
'RESISTOR',
26.100000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-26R7ELF',
'0603(1608)',
'RESISTOR',
26.700000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-27R0ELF',
'0603(1608)',
'RESISTOR',
27.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-27R4ELF',
'0603(1608)',
'RESISTOR',
27.400000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-28R0ELF',
'0603(1608)',
'RESISTOR',
28.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-28R7ELF',
'0603(1608)',
'RESISTOR',
28.700000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-29R4ELF',
'0603(1608)',
'RESISTOR',
29.400000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-30R0ELF',
'0603(1608)',
'RESISTOR',
30.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-30R1ELF',
'0603(1608)',
'RESISTOR',
30.100000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-30R9ELF',
'0603(1608)',
'RESISTOR',
30.900000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-31R6ELF',
'0603(1608)',
'RESISTOR',
31.600000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-32R4ELF',
'0603(1608)',
'RESISTOR',
32.400000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-33R0ELF',
'0603(1608)',
'RESISTOR',
33.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-33R2ELF',
'0603(1608)',
'RESISTOR',
33.200000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-34R0ELF',
'0603(1608)',
'RESISTOR',
34.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-34R8ELF',
'0603(1608)',
'RESISTOR',
34.800000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-35R7ELF',
'0603(1608)',
'RESISTOR',
35.700000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-36R0ELF',
'0603(1608)',
'RESISTOR',
36.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-36R5ELF',
'0603(1608)',
'RESISTOR',
35.600000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-37R4ELF',
'0603(1608)',
'RESISTOR',
37.400000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-38R3ELF',
'0603(1608)',
'RESISTOR',
38.300000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-39R0ELF',
'0603(1608)',
'RESISTOR',
39.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-39R2ELF',
'0603(1608)',
'RESISTOR',
39.200000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-40R2ELF',
'0603(1608)',
'RESISTOR',
40.200000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-41R2ELF',
'0603(1608)',
'RESISTOR',
41.200000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-42R2ELF',
'0603(1608)',
'RESISTOR',
42.200000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-43R0ELF',
'0603(1608)',
'RESISTOR',
43.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-43R2ELF',
'0603(1608)',
'RESISTOR',
43.200000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-44R2ELF',
'0603(1608)',
'RESISTOR',
44.200000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-45R3ELF',
'0603(1608)',
'RESISTOR',
45.300000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-46R4ELF',
'0603(1608)',
'RESISTOR',
46.400000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-47R0ELF',
'0603(1608)',
'RESISTOR',
47.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-47R5ELF',
'0603(1608)',
'RESISTOR',
47.500000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-48R7ELF',
'0603(1608)',
'RESISTOR',
48.700000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-49R9ELF',
'0603(1608)',
'RESISTOR',
49.900000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-51R0ELF',
'0603(1608)',
'RESISTOR',
51.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-51R1ELF',
'0603(1608)',
'RESISTOR',
51.100000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-52R3ELF',
'0603(1608)',
'RESISTOR',
52.300000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-53R6ELF',
'0603(1608)',
'RESISTOR',
53.600000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-54R9ELF',
'0603(1608)',
'RESISTOR',
54.900000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-56R0ELF',
'0603(1608)',
'RESISTOR',
56.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-56R2ELF',
'0603(1608)',
'RESISTOR',
56.200000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-57R6ELF',
'0603(1608)',
'RESISTOR',
57.600000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-59R0ELF',
'0603(1608)',
'RESISTOR',
59.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-60R4ELF',
'0603(1608)',
'RESISTOR',
60.400000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-61R9ELF',
'0603(1608)',
'RESISTOR',
61.900000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-62R0ELF',
'0603(1608)',
'RESISTOR',
62.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-63R4ELF',
'0603(1608)',
'RESISTOR',
63.400000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-64R9ELF',
'0603(1608)',
'RESISTOR',
64.900000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-66R5ELF',
'0603(1608)',
'RESISTOR',
66.500000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-68R0ELF',
'0603(1608)',
'RESISTOR',
68.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-68R1ELF',
'0603(1608)',
'RESISTOR',
68.100000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-69R8ELF',
'0603(1608)',
'RESISTOR',
69.800000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-71R5ELF',
'0603(1608)',
'RESISTOR',
71.500000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-73R2ELF',
'0603(1608)',
'RESISTOR',
73.200000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-75R0ELF',
'0603(1608)',
'RESISTOR',
75.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-76R8ELF',
'0603(1608)',
'RESISTOR',
76.800000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-78R7ELF',
'0603(1608)',
'RESISTOR',
78.700000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-80R6ELF',
'0603(1608)',
'RESISTOR',
80.600000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-82R0ELF',
'0603(1608)',
'RESISTOR',
82.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-82R5ELF',
'0603(1608)',
'RESISTOR',
82.500000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-84R5ELF',
'0603(1608)',
'RESISTOR',
84.500000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-86R6ELF',
'0603(1608)',
'RESISTOR',
86.600000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-88R7ELF',
'0603(1608)',
'RESISTOR',
88.700000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-90R9ELF',
'0603(1608)',
'RESISTOR',
90.900000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-91R0ELF',
'0603(1608)',
'RESISTOR',
91.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-93R1ELF',
'0603(1608)',
'RESISTOR',
93.100000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-95R3ELF',
'0603(1608)',
'RESISTOR',
95.300000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-97R0ELF',
'0603(1608)',
'RESISTOR',
97.600000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1000ELF',
'0603(1608)',
'RESISTOR',
100.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1020ELF',
'0603(1608)',
'RESISTOR',
102.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1050ELF',
'0603(1608)',
'RESISTOR',
105.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1070ELF',
'0603(1608)',
'RESISTOR',
107.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1100ELF',
'0603(1608)',
'RESISTOR',
110.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1130ELF',
'0603(1608)',
'RESISTOR',
113.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1150ELF',
'0603(1608)',
'RESISTOR',
115.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1180ELF',
'0603(1608)',
'RESISTOR',
118.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1200ELF',
'0603(1608)',
'RESISTOR',
120.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1210ELF',
'0603(1608)',
'RESISTOR',
121.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1240ELF',
'0603(1608)',
'RESISTOR',
124.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1270ELF',
'0603(1608)',
'RESISTOR',
127.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1300ELF',
'0603(1608)',
'RESISTOR',
130.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1330ELF',
'0603(1608)',
'RESISTOR',
133.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1370ELF',
'0603(1608)',
'RESISTOR',
137.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1400ELF',
'0603(1608)',
'RESISTOR',
140.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1430ELF',
'0603(1608)',
'RESISTOR',
143.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1470ELF',
'0603(1608)',
'RESISTOR',
147.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1500ELF',
'0603(1608)',
'RESISTOR',
150.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1540ELF',
'0603(1608)',
'RESISTOR',
154.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1580ELF',
'0603(1608)',
'RESISTOR',
158.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1600ELF',
'0603(1608)',
'RESISTOR',
160.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1620ELF',
'0603(1608)',
'RESISTOR',
162.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1650ELF',
'0603(1608)',
'RESISTOR',
165.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1690ELF',
'0603(1608)',
'RESISTOR',
169.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1740ELF',
'0603(1608)',
'RESISTOR',
174.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1780ELF',
'0603(1608)',
'RESISTOR',
178.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1800ELF',
'0603(1608)',
'RESISTOR',
180.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1820ELF',
'0603(1608)',
'RESISTOR',
182.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1870ELF',
'0603(1608)',
'RESISTOR',
187.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1910ELF',
'0603(1608)',
'RESISTOR',
191.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1960ELF',
'0603(1608)',
'RESISTOR',
196.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-2000ELF',
'0603(1608)',
'RESISTOR',
200.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-2050ELF',
'0603(1608)',
'RESISTOR',
205.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-2100ELF',
'0603(1608)',
'RESISTOR',
210.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-2150ELF',
'0603(1608)',
'RESISTOR',
215.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-2200ELF',
'0603(1608)',
'RESISTOR',
220.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-2210ELF',
'0603(1608)',
'RESISTOR',
221.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-2260ELF',
'0603(1608)',
'RESISTOR',
226.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-2320ELF',
'0603(1608)',
'RESISTOR',
232.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-2370ELF',
'0603(1608)',
'RESISTOR',
237.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-2400ELF',
'0603(1608)',
'RESISTOR',
240.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-2430ELF',
'0603(1608)',
'RESISTOR',
243.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-2490ELF',
'0603(1608)',
'RESISTOR',
249.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-2550ELF',
'0603(1608)',
'RESISTOR',
255.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-2610ELF',
'0603(1608)',
'RESISTOR',
261.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-2670ELF',
'0603(1608)',
'RESISTOR',
267.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-2700ELF',
'0603(1608)',
'RESISTOR',
270.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-2740ELF',
'0603(1608)',
'RESISTOR',
274.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-2800ELF',
'0603(1608)',
'RESISTOR',
280.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-2870ELF',
'0603(1608)',
'RESISTOR',
287.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-2940ELF',
'0603(1608)',
'RESISTOR',
294.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-3000ELF',
'0603(1608)',
'RESISTOR',
300.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-3010ELF',
'0603(1608)',
'RESISTOR',
301.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-3090ELF',
'0603(1608)',
'RESISTOR',
309.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-3160ELF',
'0603(1608)',
'RESISTOR',
316.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-3240ELF',
'0603(1608)',
'RESISTOR',
324.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-3300ELF',
'0603(1608)',
'RESISTOR',
330.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-3320ELF',
'0603(1608)',
'RESISTOR',
332.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-3400ELF',
'0603(1608)',
'RESISTOR',
340.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-3480ELF',
'0603(1608)',
'RESISTOR',
348.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-3570ELF',
'0603(1608)',
'RESISTOR',
357.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-3600ELF',
'0603(1608)',
'RESISTOR',
360.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-3650ELF',
'0603(1608)',
'RESISTOR',
356.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-3740ELF',
'0603(1608)',
'RESISTOR',
374.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-3830ELF',
'0603(1608)',
'RESISTOR',
383.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-3900ELF',
'0603(1608)',
'RESISTOR',
390.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-3920ELF',
'0603(1608)',
'RESISTOR',
392.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-4020ELF',
'0603(1608)',
'RESISTOR',
402.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-4120ELF',
'0603(1608)',
'RESISTOR',
412.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-4220ELF',
'0603(1608)',
'RESISTOR',
422.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-4300ELF',
'0603(1608)',
'RESISTOR',
430.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-4320ELF',
'0603(1608)',
'RESISTOR',
432.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-4420ELF',
'0603(1608)',
'RESISTOR',
442.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-4530ELF',
'0603(1608)',
'RESISTOR',
453.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-4640ELF',
'0603(1608)',
'RESISTOR',
464.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-4700ELF',
'0603(1608)',
'RESISTOR',
470.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-4750ELF',
'0603(1608)',
'RESISTOR',
475.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-4870ELF',
'0603(1608)',
'RESISTOR',
487.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-4990ELF',
'0603(1608)',
'RESISTOR',
499.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-5100ELF',
'0603(1608)',
'RESISTOR',
510.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-5110ELF',
'0603(1608)',
'RESISTOR',
511.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-5230ELF',
'0603(1608)',
'RESISTOR',
523.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-5360ELF',
'0603(1608)',
'RESISTOR',
536.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-5490ELF',
'0603(1608)',
'RESISTOR',
549.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-5600ELF',
'0603(1608)',
'RESISTOR',
560.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-5620ELF',
'0603(1608)',
'RESISTOR',
562.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-5760ELF',
'0603(1608)',
'RESISTOR',
576.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-5900ELF',
'0603(1608)',
'RESISTOR',
590.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-6040ELF',
'0603(1608)',
'RESISTOR',
604.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-6190ELF',
'0603(1608)',
'RESISTOR',
619.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-6200ELF',
'0603(1608)',
'RESISTOR',
620.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-6340ELF',
'0603(1608)',
'RESISTOR',
634.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-6490ELF',
'0603(1608)',
'RESISTOR',
649.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-6650ELF',
'0603(1608)',
'RESISTOR',
665.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-6800ELF',
'0603(1608)',
'RESISTOR',
680.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-6810ELF',
'0603(1608)',
'RESISTOR',
681.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-6980ELF',
'0603(1608)',
'RESISTOR',
698.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-7150ELF',
'0603(1608)',
'RESISTOR',
715.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-7320ELF',
'0603(1608)',
'RESISTOR',
732.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-7500ELF',
'0603(1608)',
'RESISTOR',
750.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-7680ELF',
'0603(1608)',
'RESISTOR',
768.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-7870ELF',
'0603(1608)',
'RESISTOR',
787.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-8060ELF',
'0603(1608)',
'RESISTOR',
806.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-8200ELF',
'0603(1608)',
'RESISTOR',
820.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-8250ELF',
'0603(1608)',
'RESISTOR',
825.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-8450ELF',
'0603(1608)',
'RESISTOR',
845.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-8660ELF',
'0603(1608)',
'RESISTOR',
866.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-8870ELF',
'0603(1608)',
'RESISTOR',
887.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-9090ELF',
'0603(1608)',
'RESISTOR',
909.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-9100ELF',
'0603(1608)',
'RESISTOR',
910.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-9310ELF',
'0603(1608)',
'RESISTOR',
931.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-9530ELF',
'0603(1608)',
'RESISTOR',
953.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-9760ELF',
'0603(1608)',
'RESISTOR',
976.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1001ELF',
'0603(1608)',
'RESISTOR',
1000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1021ELF',
'0603(1608)',
'RESISTOR',
1020.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1051ELF',
'0603(1608)',
'RESISTOR',
1050.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1071ELF',
'0603(1608)',
'RESISTOR',
1070.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1101ELF',
'0603(1608)',
'RESISTOR',
1100.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1131ELF',
'0603(1608)',
'RESISTOR',
1130.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1151ELF',
'0603(1608)',
'RESISTOR',
1150.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1181ELF',
'0603(1608)',
'RESISTOR',
1180.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1201ELF',
'0603(1608)',
'RESISTOR',
1200.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1211ELF',
'0603(1608)',
'RESISTOR',
1210.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1241ELF',
'0603(1608)',
'RESISTOR',
1240.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1271ELF',
'0603(1608)',
'RESISTOR',
1270.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1301ELF',
'0603(1608)',
'RESISTOR',
1300.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1331ELF',
'0603(1608)',
'RESISTOR',
1330.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1371ELF',
'0603(1608)',
'RESISTOR',
1370.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1401ELF',
'0603(1608)',
'RESISTOR',
1400.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1431ELF',
'0603(1608)',
'RESISTOR',
1430.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1471ELF',
'0603(1608)',
'RESISTOR',
1470.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1501ELF',
'0603(1608)',
'RESISTOR',
1500.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1541ELF',
'0603(1608)',
'RESISTOR',
1540.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1581ELF',
'0603(1608)',
'RESISTOR',
1580.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1601ELF',
'0603(1608)',
'RESISTOR',
1600.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1621ELF',
'0603(1608)',
'RESISTOR',
1620.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1651ELF',
'0603(1608)',
'RESISTOR',
1650.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1691ELF',
'0603(1608)',
'RESISTOR',
1690.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1741ELF',
'0603(1608)',
'RESISTOR',
1740.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1781ELF',
'0603(1608)',
'RESISTOR',
1780.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1801ELF',
'0603(1608)',
'RESISTOR',
1800.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1821ELF',
'0603(1608)',
'RESISTOR',
1820.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1871ELF',
'0603(1608)',
'RESISTOR',
1870.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1911ELF',
'0603(1608)',
'RESISTOR',
1910.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1961ELF',
'0603(1608)',
'RESISTOR',
1960.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-2001ELF',
'0603(1608)',
'RESISTOR',
2000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-2051ELF',
'0603(1608)',
'RESISTOR',
2050.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-2101ELF',
'0603(1608)',
'RESISTOR',
2100.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-2151ELF',
'0603(1608)',
'RESISTOR',
2150.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-2201ELF',
'0603(1608)',
'RESISTOR',
2200.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-2211ELF',
'0603(1608)',
'RESISTOR',
2210.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-2261ELF',
'0603(1608)',
'RESISTOR',
2260.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-2321ELF',
'0603(1608)',
'RESISTOR',
2320.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-2371ELF',
'0603(1608)',
'RESISTOR',
2370.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-2401ELF',
'0603(1608)',
'RESISTOR',
2400.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-2431ELF',
'0603(1608)',
'RESISTOR',
2430.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-2491ELF',
'0603(1608)',
'RESISTOR',
2490.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-2551ELF',
'0603(1608)',
'RESISTOR',
2550.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-2611ELF',
'0603(1608)',
'RESISTOR',
2610.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-2671ELF',
'0603(1608)',
'RESISTOR',
2670.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-2701ELF',
'0603(1608)',
'RESISTOR',
2700.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-2741ELF',
'0603(1608)',
'RESISTOR',
2740.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-2801ELF',
'0603(1608)',
'RESISTOR',
2800.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-2871ELF',
'0603(1608)',
'RESISTOR',
2870.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-2941ELF',
'0603(1608)',
'RESISTOR',
2940.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-3001ELF',
'0603(1608)',
'RESISTOR',
3000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-3011ELF',
'0603(1608)',
'RESISTOR',
3010.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-3091ELF',
'0603(1608)',
'RESISTOR',
3090.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-3161ELF',
'0603(1608)',
'RESISTOR',
3160.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-3241ELF',
'0603(1608)',
'RESISTOR',
3240.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-3301ELF',
'0603(1608)',
'RESISTOR',
3300.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-3321ELF',
'0603(1608)',
'RESISTOR',
3320.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-3401ELF',
'0603(1608)',
'RESISTOR',
3400.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-3481ELF',
'0603(1608)',
'RESISTOR',
3480.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-3571ELF',
'0603(1608)',
'RESISTOR',
3570.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-3601ELF',
'0603(1608)',
'RESISTOR',
3600.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-3651ELF',
'0603(1608)',
'RESISTOR',
3560.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-3741ELF',
'0603(1608)',
'RESISTOR',
3740.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-3831ELF',
'0603(1608)',
'RESISTOR',
3830.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-3901ELF',
'0603(1608)',
'RESISTOR',
3900.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-3921ELF',
'0603(1608)',
'RESISTOR',
3920.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-4021ELF',
'0603(1608)',
'RESISTOR',
4020.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-4121ELF',
'0603(1608)',
'RESISTOR',
4120.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-4221ELF',
'0603(1608)',
'RESISTOR',
4220.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-4301ELF',
'0603(1608)',
'RESISTOR',
4300.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-4321ELF',
'0603(1608)',
'RESISTOR',
4320.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-4421ELF',
'0603(1608)',
'RESISTOR',
4420.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-4531ELF',
'0603(1608)',
'RESISTOR',
4530.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-4641ELF',
'0603(1608)',
'RESISTOR',
4640.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-4701ELF',
'0603(1608)',
'RESISTOR',
4700.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-4751ELF',
'0603(1608)',
'RESISTOR',
4750.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-4871ELF',
'0603(1608)',
'RESISTOR',
4870.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-4991ELF',
'0603(1608)',
'RESISTOR',
4990.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-5101ELF',
'0603(1608)',
'RESISTOR',
5100.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-5111ELF',
'0603(1608)',
'RESISTOR',
5110.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-5231ELF',
'0603(1608)',
'RESISTOR',
5230.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-5361ELF',
'0603(1608)',
'RESISTOR',
5360.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-5491ELF',
'0603(1608)',
'RESISTOR',
5490.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-5601ELF',
'0603(1608)',
'RESISTOR',
5600.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-5621ELF',
'0603(1608)',
'RESISTOR',
5620.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-5761ELF',
'0603(1608)',
'RESISTOR',
5760.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-5901ELF',
'0603(1608)',
'RESISTOR',
5900.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-6041ELF',
'0603(1608)',
'RESISTOR',
6040.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-6191ELF',
'0603(1608)',
'RESISTOR',
6190.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-6201ELF',
'0603(1608)',
'RESISTOR',
6200.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-6341ELF',
'0603(1608)',
'RESISTOR',
6340.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-6491ELF',
'0603(1608)',
'RESISTOR',
6490.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-6651ELF',
'0603(1608)',
'RESISTOR',
6650.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-6801ELF',
'0603(1608)',
'RESISTOR',
6800.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-6811ELF',
'0603(1608)',
'RESISTOR',
6810.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-6981ELF',
'0603(1608)',
'RESISTOR',
6980.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-7151ELF',
'0603(1608)',
'RESISTOR',
7150.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-7321ELF',
'0603(1608)',
'RESISTOR',
7320.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-7501ELF',
'0603(1608)',
'RESISTOR',
7500.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-7681ELF',
'0603(1608)',
'RESISTOR',
7680.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-7871ELF',
'0603(1608)',
'RESISTOR',
7870.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-8061ELF',
'0603(1608)',
'RESISTOR',
8060.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-8201ELF',
'0603(1608)',
'RESISTOR',
8200.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-8251ELF',
'0603(1608)',
'RESISTOR',
8250.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-8451ELF',
'0603(1608)',
'RESISTOR',
8450.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-8661ELF',
'0603(1608)',
'RESISTOR',
8660.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-8871ELF',
'0603(1608)',
'RESISTOR',
8870.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-9091ELF',
'0603(1608)',
'RESISTOR',
9090.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-9101ELF',
'0603(1608)',
'RESISTOR',
9100.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-9311ELF',
'0603(1608)',
'RESISTOR',
9310.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-9531ELF',
'0603(1608)',
'RESISTOR',
9530.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-9761ELF',
'0603(1608)',
'RESISTOR',
9760.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1002ELF',
'0603(1608)',
'RESISTOR',
10000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1022ELF',
'0603(1608)',
'RESISTOR',
10200.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1052ELF',
'0603(1608)',
'RESISTOR',
10500.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1072ELF',
'0603(1608)',
'RESISTOR',
10700.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1102ELF',
'0603(1608)',
'RESISTOR',
11000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1132ELF',
'0603(1608)',
'RESISTOR',
11300.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1152ELF',
'0603(1608)',
'RESISTOR',
11500.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1182ELF',
'0603(1608)',
'RESISTOR',
11800.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1202ELF',
'0603(1608)',
'RESISTOR',
12000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1212ELF',
'0603(1608)',
'RESISTOR',
12100.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1242ELF',
'0603(1608)',
'RESISTOR',
12400.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1272ELF',
'0603(1608)',
'RESISTOR',
12700.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1302ELF',
'0603(1608)',
'RESISTOR',
13000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1332ELF',
'0603(1608)',
'RESISTOR',
13300.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1372ELF',
'0603(1608)',
'RESISTOR',
13700.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1402ELF',
'0603(1608)',
'RESISTOR',
14000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1432ELF',
'0603(1608)',
'RESISTOR',
14300.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1472ELF',
'0603(1608)',
'RESISTOR',
14700.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1502ELF',
'0603(1608)',
'RESISTOR',
15000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1542ELF',
'0603(1608)',
'RESISTOR',
15400.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1582ELF',
'0603(1608)',
'RESISTOR',
15800.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1602ELF',
'0603(1608)',
'RESISTOR',
16000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1622ELF',
'0603(1608)',
'RESISTOR',
16200.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1652ELF',
'0603(1608)',
'RESISTOR',
16500.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1692ELF',
'0603(1608)',
'RESISTOR',
16900.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1742ELF',
'0603(1608)',
'RESISTOR',
17400.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1782ELF',
'0603(1608)',
'RESISTOR',
17800.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1802ELF',
'0603(1608)',
'RESISTOR',
18000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1822ELF',
'0603(1608)',
'RESISTOR',
18200.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1872ELF',
'0603(1608)',
'RESISTOR',
18700.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1912ELF',
'0603(1608)',
'RESISTOR',
19100.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1962ELF',
'0603(1608)',
'RESISTOR',
19600.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-2002ELF',
'0603(1608)',
'RESISTOR',
20000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-2052ELF',
'0603(1608)',
'RESISTOR',
20500.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-2102ELF',
'0603(1608)',
'RESISTOR',
21000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-2152ELF',
'0603(1608)',
'RESISTOR',
21500.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-2202ELF',
'0603(1608)',
'RESISTOR',
22000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-2212ELF',
'0603(1608)',
'RESISTOR',
22100.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-2262ELF',
'0603(1608)',
'RESISTOR',
22600.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-2322ELF',
'0603(1608)',
'RESISTOR',
23200.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-2372ELF',
'0603(1608)',
'RESISTOR',
23700.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-2402ELF',
'0603(1608)',
'RESISTOR',
24000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-2432ELF',
'0603(1608)',
'RESISTOR',
24300.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-2492ELF',
'0603(1608)',
'RESISTOR',
24900.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-2552ELF',
'0603(1608)',
'RESISTOR',
25500.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-2612ELF',
'0603(1608)',
'RESISTOR',
26100.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-2672ELF',
'0603(1608)',
'RESISTOR',
26700.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-2702ELF',
'0603(1608)',
'RESISTOR',
27000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-2742ELF',
'0603(1608)',
'RESISTOR',
27400.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-2802ELF',
'0603(1608)',
'RESISTOR',
28000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-2872ELF',
'0603(1608)',
'RESISTOR',
28700.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-2942ELF',
'0603(1608)',
'RESISTOR',
29400.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-3002ELF',
'0603(1608)',
'RESISTOR',
30000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-3012ELF',
'0603(1608)',
'RESISTOR',
30100.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-3092ELF',
'0603(1608)',
'RESISTOR',
30900.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-3162ELF',
'0603(1608)',
'RESISTOR',
31600.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-3242ELF',
'0603(1608)',
'RESISTOR',
32400.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-3302ELF',
'0603(1608)',
'RESISTOR',
33000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-3322ELF',
'0603(1608)',
'RESISTOR',
33200.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-3402ELF',
'0603(1608)',
'RESISTOR',
34000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-3482ELF',
'0603(1608)',
'RESISTOR',
34800.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-3572ELF',
'0603(1608)',
'RESISTOR',
35700.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-3602ELF',
'0603(1608)',
'RESISTOR',
36000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-3652ELF',
'0603(1608)',
'RESISTOR',
35600.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-3742ELF',
'0603(1608)',
'RESISTOR',
37400.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-3832ELF',
'0603(1608)',
'RESISTOR',
38300.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-3902ELF',
'0603(1608)',
'RESISTOR',
39000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-3922ELF',
'0603(1608)',
'RESISTOR',
39200.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-4022ELF',
'0603(1608)',
'RESISTOR',
40200.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-4122ELF',
'0603(1608)',
'RESISTOR',
41200.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-4222ELF',
'0603(1608)',
'RESISTOR',
42200.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-4302ELF',
'0603(1608)',
'RESISTOR',
43000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-4322ELF',
'0603(1608)',
'RESISTOR',
43200.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-4422ELF',
'0603(1608)',
'RESISTOR',
44200.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-4532ELF',
'0603(1608)',
'RESISTOR',
45300.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-4642ELF',
'0603(1608)',
'RESISTOR',
46400.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-4702ELF',
'0603(1608)',
'RESISTOR',
47000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-4752ELF',
'0603(1608)',
'RESISTOR',
47500.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-4872ELF',
'0603(1608)',
'RESISTOR',
48700.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-4992ELF',
'0603(1608)',
'RESISTOR',
49900.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-5102ELF',
'0603(1608)',
'RESISTOR',
51000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-5112ELF',
'0603(1608)',
'RESISTOR',
51100.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-5232ELF',
'0603(1608)',
'RESISTOR',
52300.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-5362ELF',
'0603(1608)',
'RESISTOR',
53600.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-5492ELF',
'0603(1608)',
'RESISTOR',
54900.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-5602ELF',
'0603(1608)',
'RESISTOR',
56000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-5622ELF',
'0603(1608)',
'RESISTOR',
56200.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-5762ELF',
'0603(1608)',
'RESISTOR',
57600.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-5902ELF',
'0603(1608)',
'RESISTOR',
59000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-6042ELF',
'0603(1608)',
'RESISTOR',
60400.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-6192ELF',
'0603(1608)',
'RESISTOR',
61900.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-6202ELF',
'0603(1608)',
'RESISTOR',
62000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-6342ELF',
'0603(1608)',
'RESISTOR',
63400.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-6492ELF',
'0603(1608)',
'RESISTOR',
64900.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-6652ELF',
'0603(1608)',
'RESISTOR',
66500.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-6802ELF',
'0603(1608)',
'RESISTOR',
68000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-6812ELF',
'0603(1608)',
'RESISTOR',
68100.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-6982ELF',
'0603(1608)',
'RESISTOR',
69800.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-7152ELF',
'0603(1608)',
'RESISTOR',
71500.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-7322ELF',
'0603(1608)',
'RESISTOR',
73200.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-7502ELF',
'0603(1608)',
'RESISTOR',
75000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-7682ELF',
'0603(1608)',
'RESISTOR',
76800.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-7872ELF',
'0603(1608)',
'RESISTOR',
78700.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-8062ELF',
'0603(1608)',
'RESISTOR',
80600.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-8202ELF',
'0603(1608)',
'RESISTOR',
82000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-8252ELF',
'0603(1608)',
'RESISTOR',
82500.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-8452ELF',
'0603(1608)',
'RESISTOR',
84500.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-8662ELF',
'0603(1608)',
'RESISTOR',
86600.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-8872ELF',
'0603(1608)',
'RESISTOR',
88700.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-9092ELF',
'0603(1608)',
'RESISTOR',
90900.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-9102ELF',
'0603(1608)',
'RESISTOR',
91000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-9312ELF',
'0603(1608)',
'RESISTOR',
93100.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-9532ELF',
'0603(1608)',
'RESISTOR',
95300.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-9762ELF',
'0603(1608)',
'RESISTOR',
97600.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1003ELF',
'0603(1608)',
'RESISTOR',
100000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1023ELF',
'0603(1608)',
'RESISTOR',
102000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1053ELF',
'0603(1608)',
'RESISTOR',
105000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1073ELF',
'0603(1608)',
'RESISTOR',
107000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1103ELF',
'0603(1608)',
'RESISTOR',
110000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1133ELF',
'0603(1608)',
'RESISTOR',
113000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1153ELF',
'0603(1608)',
'RESISTOR',
115000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1183ELF',
'0603(1608)',
'RESISTOR',
118000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1203ELF',
'0603(1608)',
'RESISTOR',
120000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1213ELF',
'0603(1608)',
'RESISTOR',
121000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1243ELF',
'0603(1608)',
'RESISTOR',
124000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1273ELF',
'0603(1608)',
'RESISTOR',
127000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1303ELF',
'0603(1608)',
'RESISTOR',
130000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1333ELF',
'0603(1608)',
'RESISTOR',
133000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1373ELF',
'0603(1608)',
'RESISTOR',
137000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1403ELF',
'0603(1608)',
'RESISTOR',
140000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1433ELF',
'0603(1608)',
'RESISTOR',
143000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1473ELF',
'0603(1608)',
'RESISTOR',
147000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1503ELF',
'0603(1608)',
'RESISTOR',
150000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1543ELF',
'0603(1608)',
'RESISTOR',
154000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1583ELF',
'0603(1608)',
'RESISTOR',
158000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1603ELF',
'0603(1608)',
'RESISTOR',
160000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1623ELF',
'0603(1608)',
'RESISTOR',
162000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1653ELF',
'0603(1608)',
'RESISTOR',
165000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1693ELF',
'0603(1608)',
'RESISTOR',
169000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1743ELF',
'0603(1608)',
'RESISTOR',
174000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1783ELF',
'0603(1608)',
'RESISTOR',
178000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1803ELF',
'0603(1608)',
'RESISTOR',
180000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1823ELF',
'0603(1608)',
'RESISTOR',
182000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1873ELF',
'0603(1608)',
'RESISTOR',
187000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1913ELF',
'0603(1608)',
'RESISTOR',
191000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1963ELF',
'0603(1608)',
'RESISTOR',
196000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-2003ELF',
'0603(1608)',
'RESISTOR',
200000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-2053ELF',
'0603(1608)',
'RESISTOR',
205000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-2103ELF',
'0603(1608)',
'RESISTOR',
210000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-2153ELF',
'0603(1608)',
'RESISTOR',
215000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-2203ELF',
'0603(1608)',
'RESISTOR',
220000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-2213ELF',
'0603(1608)',
'RESISTOR',
221000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-2263ELF',
'0603(1608)',
'RESISTOR',
226000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-2323ELF',
'0603(1608)',
'RESISTOR',
232000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-2373ELF',
'0603(1608)',
'RESISTOR',
237000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-2403ELF',
'0603(1608)',
'RESISTOR',
240000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-2433ELF',
'0603(1608)',
'RESISTOR',
243000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-2493ELF',
'0603(1608)',
'RESISTOR',
249000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-2553ELF',
'0603(1608)',
'RESISTOR',
255000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-2613ELF',
'0603(1608)',
'RESISTOR',
261000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-2673ELF',
'0603(1608)',
'RESISTOR',
267000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-2703ELF',
'0603(1608)',
'RESISTOR',
270000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-2743ELF',
'0603(1608)',
'RESISTOR',
274000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-2803ELF',
'0603(1608)',
'RESISTOR',
280000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-2873ELF',
'0603(1608)',
'RESISTOR',
287000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-2943ELF',
'0603(1608)',
'RESISTOR',
294000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-3003ELF',
'0603(1608)',
'RESISTOR',
300000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-3013ELF',
'0603(1608)',
'RESISTOR',
301000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-3093ELF',
'0603(1608)',
'RESISTOR',
309000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-3163ELF',
'0603(1608)',
'RESISTOR',
316000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-3243ELF',
'0603(1608)',
'RESISTOR',
324000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-3303ELF',
'0603(1608)',
'RESISTOR',
330000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-3323ELF',
'0603(1608)',
'RESISTOR',
332000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-3403ELF',
'0603(1608)',
'RESISTOR',
340000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-3483ELF',
'0603(1608)',
'RESISTOR',
348000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-3573ELF',
'0603(1608)',
'RESISTOR',
357000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-3603ELF',
'0603(1608)',
'RESISTOR',
360000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-3653ELF',
'0603(1608)',
'RESISTOR',
356000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-3743ELF',
'0603(1608)',
'RESISTOR',
374000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-3833ELF',
'0603(1608)',
'RESISTOR',
383000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-3903ELF',
'0603(1608)',
'RESISTOR',
390000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-3923ELF',
'0603(1608)',
'RESISTOR',
392000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-4023ELF',
'0603(1608)',
'RESISTOR',
402000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-4123ELF',
'0603(1608)',
'RESISTOR',
412000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-4223ELF',
'0603(1608)',
'RESISTOR',
422000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-4303ELF',
'0603(1608)',
'RESISTOR',
430000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-4323ELF',
'0603(1608)',
'RESISTOR',
432000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-4423ELF',
'0603(1608)',
'RESISTOR',
442000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-4533ELF',
'0603(1608)',
'RESISTOR',
453000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-4643ELF',
'0603(1608)',
'RESISTOR',
464000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-4703ELF',
'0603(1608)',
'RESISTOR',
470000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-4753ELF',
'0603(1608)',
'RESISTOR',
475000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-4873ELF',
'0603(1608)',
'RESISTOR',
487000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-4993ELF',
'0603(1608)',
'RESISTOR',
499000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-5103ELF',
'0603(1608)',
'RESISTOR',
510000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-5113ELF',
'0603(1608)',
'RESISTOR',
511000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-5233ELF',
'0603(1608)',
'RESISTOR',
523000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-5363ELF',
'0603(1608)',
'RESISTOR',
536000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-5493ELF',
'0603(1608)',
'RESISTOR',
549000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-5603ELF',
'0603(1608)',
'RESISTOR',
560000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-5623ELF',
'0603(1608)',
'RESISTOR',
562000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-5763ELF',
'0603(1608)',
'RESISTOR',
576000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-5903ELF',
'0603(1608)',
'RESISTOR',
590000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-6043ELF',
'0603(1608)',
'RESISTOR',
604000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-6193ELF',
'0603(1608)',
'RESISTOR',
619000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-6203ELF',
'0603(1608)',
'RESISTOR',
620000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-6343ELF',
'0603(1608)',
'RESISTOR',
634000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-6493ELF',
'0603(1608)',
'RESISTOR',
649000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-6653ELF',
'0603(1608)',
'RESISTOR',
665000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-6803ELF',
'0603(1608)',
'RESISTOR',
680000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-6813ELF',
'0603(1608)',
'RESISTOR',
681000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-6983ELF',
'0603(1608)',
'RESISTOR',
698000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-7153ELF',
'0603(1608)',
'RESISTOR',
715000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-7323ELF',
'0603(1608)',
'RESISTOR',
732000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-7503ELF',
'0603(1608)',
'RESISTOR',
750000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-7683ELF',
'0603(1608)',
'RESISTOR',
768000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-7873ELF',
'0603(1608)',
'RESISTOR',
787000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-8063ELF',
'0603(1608)',
'RESISTOR',
806000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-8203ELF',
'0603(1608)',
'RESISTOR',
820000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-8253ELF',
'0603(1608)',
'RESISTOR',
825000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-8453ELF',
'0603(1608)',
'RESISTOR',
845000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-8663ELF',
'0603(1608)',
'RESISTOR',
866000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-8873ELF',
'0603(1608)',
'RESISTOR',
887000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-9093ELF',
'0603(1608)',
'RESISTOR',
909000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-9103ELF',
'0603(1608)',
'RESISTOR',
910000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-9313ELF',
'0603(1608)',
'RESISTOR',
931000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-9533ELF',
'0603(1608)',
'RESISTOR',
953000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-9763ELF',
'0603(1608)',
'RESISTOR',
976000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0603-FX-1004ELF',
'0603(1608)',
'RESISTOR',
1000000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-10R0ELF',
'0805(2012)',
'RESISTOR',
10.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-10R2ELF',
'0805(2012)',
'RESISTOR',
10.200000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-10R5ELF',
'0805(2012)',
'RESISTOR',
10.500000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-10R7ELF',
'0805(2012)',
'RESISTOR',
10.700000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-11R0ELF',
'0805(2012)',
'RESISTOR',
11.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-11R3ELF',
'0805(2012)',
'RESISTOR',
11.300000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-11R5ELF',
'0805(2012)',
'RESISTOR',
11.500000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-11R8ELF',
'0805(2012)',
'RESISTOR',
11.800000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-12R0ELF',
'0805(2012)',
'RESISTOR',
12.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-12R1ELF',
'0805(2012)',
'RESISTOR',
12.100000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-12R4ELF',
'0805(2012)',
'RESISTOR',
12.400000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-12R7ELF',
'0805(2012)',
'RESISTOR',
12.700000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-13R0ELF',
'0805(2012)',
'RESISTOR',
13.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-13R3ELF',
'0805(2012)',
'RESISTOR',
13.300000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-13R7ELF',
'0805(2012)',
'RESISTOR',
13.700000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-14R0ELF',
'0805(2012)',
'RESISTOR',
14.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-14R3ELF',
'0805(2012)',
'RESISTOR',
14.300000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-14R7ELF',
'0805(2012)',
'RESISTOR',
14.700000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-15R0ELF',
'0805(2012)',
'RESISTOR',
15.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-15R4ELF',
'0805(2012)',
'RESISTOR',
15.400000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-15R8ELF',
'0805(2012)',
'RESISTOR',
15.800000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-16R0ELF',
'0805(2012)',
'RESISTOR',
16.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-16R2ELF',
'0805(2012)',
'RESISTOR',
16.200000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-16R5ELF',
'0805(2012)',
'RESISTOR',
16.500000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-16R9ELF',
'0805(2012)',
'RESISTOR',
16.900000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-17R4ELF',
'0805(2012)',
'RESISTOR',
17.400000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-17R8ELF',
'0805(2012)',
'RESISTOR',
17.800000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-18R0ELF',
'0805(2012)',
'RESISTOR',
18.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-18R2ELF',
'0805(2012)',
'RESISTOR',
18.200000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-18R7ELF',
'0805(2012)',
'RESISTOR',
18.700000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-19R1ELF',
'0805(2012)',
'RESISTOR',
19.100000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-19R6ELF',
'0805(2012)',
'RESISTOR',
19.600000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-20R0ELF',
'0805(2012)',
'RESISTOR',
20.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-20R5ELF',
'0805(2012)',
'RESISTOR',
20.500000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-21R0ELF',
'0805(2012)',
'RESISTOR',
21.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-21R5ELF',
'0805(2012)',
'RESISTOR',
21.500000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-22R0ELF',
'0805(2012)',
'RESISTOR',
22.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-22R1ELF',
'0805(2012)',
'RESISTOR',
22.100000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-22R6ELF',
'0805(2012)',
'RESISTOR',
22.600000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-23R2ELF',
'0805(2012)',
'RESISTOR',
23.200000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-23R7ELF',
'0805(2012)',
'RESISTOR',
23.700000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-24R0ELF',
'0805(2012)',
'RESISTOR',
24.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-24R3ELF',
'0805(2012)',
'RESISTOR',
24.300000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-24R9ELF',
'0805(2012)',
'RESISTOR',
24.900000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-25R5ELF',
'0805(2012)',
'RESISTOR',
25.500000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-26R1ELF',
'0805(2012)',
'RESISTOR',
26.100000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-26R7ELF',
'0805(2012)',
'RESISTOR',
26.700000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-27R0ELF',
'0805(2012)',
'RESISTOR',
27.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-27R4ELF',
'0805(2012)',
'RESISTOR',
27.400000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-28R0ELF',
'0805(2012)',
'RESISTOR',
28.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-28R7ELF',
'0805(2012)',
'RESISTOR',
28.700000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-29R4ELF',
'0805(2012)',
'RESISTOR',
29.400000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-30R0ELF',
'0805(2012)',
'RESISTOR',
30.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-30R1ELF',
'0805(2012)',
'RESISTOR',
30.100000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-30R9ELF',
'0805(2012)',
'RESISTOR',
30.900000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-31R6ELF',
'0805(2012)',
'RESISTOR',
31.600000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-32R4ELF',
'0805(2012)',
'RESISTOR',
32.400000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-33R0ELF',
'0805(2012)',
'RESISTOR',
33.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-33R2ELF',
'0805(2012)',
'RESISTOR',
33.200000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-34R0ELF',
'0805(2012)',
'RESISTOR',
34.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-34R8ELF',
'0805(2012)',
'RESISTOR',
34.800000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-35R7ELF',
'0805(2012)',
'RESISTOR',
35.700000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-36R0ELF',
'0805(2012)',
'RESISTOR',
36.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-36R5ELF',
'0805(2012)',
'RESISTOR',
35.600000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-37R4ELF',
'0805(2012)',
'RESISTOR',
37.400000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-38R3ELF',
'0805(2012)',
'RESISTOR',
38.300000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-39R0ELF',
'0805(2012)',
'RESISTOR',
39.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-39R2ELF',
'0805(2012)',
'RESISTOR',
39.200000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-40R2ELF',
'0805(2012)',
'RESISTOR',
40.200000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-41R2ELF',
'0805(2012)',
'RESISTOR',
41.200000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-42R2ELF',
'0805(2012)',
'RESISTOR',
42.200000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-43R0ELF',
'0805(2012)',
'RESISTOR',
43.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-43R2ELF',
'0805(2012)',
'RESISTOR',
43.200000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-44R2ELF',
'0805(2012)',
'RESISTOR',
44.200000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-45R3ELF',
'0805(2012)',
'RESISTOR',
45.300000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-46R4ELF',
'0805(2012)',
'RESISTOR',
46.400000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-47R0ELF',
'0805(2012)',
'RESISTOR',
47.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-47R5ELF',
'0805(2012)',
'RESISTOR',
47.500000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-48R7ELF',
'0805(2012)',
'RESISTOR',
48.700000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-49R9ELF',
'0805(2012)',
'RESISTOR',
49.900000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-51R0ELF',
'0805(2012)',
'RESISTOR',
51.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-51R1ELF',
'0805(2012)',
'RESISTOR',
51.100000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-52R3ELF',
'0805(2012)',
'RESISTOR',
52.300000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-53R6ELF',
'0805(2012)',
'RESISTOR',
53.600000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-54R9ELF',
'0805(2012)',
'RESISTOR',
54.900000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-56R0ELF',
'0805(2012)',
'RESISTOR',
56.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-56R2ELF',
'0805(2012)',
'RESISTOR',
56.200000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-57R6ELF',
'0805(2012)',
'RESISTOR',
57.600000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-59R0ELF',
'0805(2012)',
'RESISTOR',
59.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-60R4ELF',
'0805(2012)',
'RESISTOR',
60.400000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-61R9ELF',
'0805(2012)',
'RESISTOR',
61.900000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-62R0ELF',
'0805(2012)',
'RESISTOR',
62.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-63R4ELF',
'0805(2012)',
'RESISTOR',
63.400000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-64R9ELF',
'0805(2012)',
'RESISTOR',
64.900000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-66R5ELF',
'0805(2012)',
'RESISTOR',
66.500000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-68R0ELF',
'0805(2012)',
'RESISTOR',
68.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-68R1ELF',
'0805(2012)',
'RESISTOR',
68.100000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-69R8ELF',
'0805(2012)',
'RESISTOR',
69.800000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-71R5ELF',
'0805(2012)',
'RESISTOR',
71.500000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-73R2ELF',
'0805(2012)',
'RESISTOR',
73.200000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-75R0ELF',
'0805(2012)',
'RESISTOR',
75.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-76R8ELF',
'0805(2012)',
'RESISTOR',
76.800000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-78R7ELF',
'0805(2012)',
'RESISTOR',
78.700000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-80R6ELF',
'0805(2012)',
'RESISTOR',
80.600000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-82R0ELF',
'0805(2012)',
'RESISTOR',
82.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-82R5ELF',
'0805(2012)',
'RESISTOR',
82.500000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-84R5ELF',
'0805(2012)',
'RESISTOR',
84.500000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-86R6ELF',
'0805(2012)',
'RESISTOR',
86.600000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-88R7ELF',
'0805(2012)',
'RESISTOR',
88.700000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-90R9ELF',
'0805(2012)',
'RESISTOR',
90.900000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-91R0ELF',
'0805(2012)',
'RESISTOR',
91.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-93R1ELF',
'0805(2012)',
'RESISTOR',
93.100000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-95R3ELF',
'0805(2012)',
'RESISTOR',
95.300000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-97R0ELF',
'0805(2012)',
'RESISTOR',
97.600000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1000ELF',
'0805(2012)',
'RESISTOR',
100.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1020ELF',
'0805(2012)',
'RESISTOR',
102.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1050ELF',
'0805(2012)',
'RESISTOR',
105.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1070ELF',
'0805(2012)',
'RESISTOR',
107.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1100ELF',
'0805(2012)',
'RESISTOR',
110.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1130ELF',
'0805(2012)',
'RESISTOR',
113.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1150ELF',
'0805(2012)',
'RESISTOR',
115.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1180ELF',
'0805(2012)',
'RESISTOR',
118.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1200ELF',
'0805(2012)',
'RESISTOR',
120.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1210ELF',
'0805(2012)',
'RESISTOR',
121.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1240ELF',
'0805(2012)',
'RESISTOR',
124.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1270ELF',
'0805(2012)',
'RESISTOR',
127.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1300ELF',
'0805(2012)',
'RESISTOR',
130.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1330ELF',
'0805(2012)',
'RESISTOR',
133.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1370ELF',
'0805(2012)',
'RESISTOR',
137.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1400ELF',
'0805(2012)',
'RESISTOR',
140.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1430ELF',
'0805(2012)',
'RESISTOR',
143.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1470ELF',
'0805(2012)',
'RESISTOR',
147.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1500ELF',
'0805(2012)',
'RESISTOR',
150.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1540ELF',
'0805(2012)',
'RESISTOR',
154.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1580ELF',
'0805(2012)',
'RESISTOR',
158.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1600ELF',
'0805(2012)',
'RESISTOR',
160.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1620ELF',
'0805(2012)',
'RESISTOR',
162.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1650ELF',
'0805(2012)',
'RESISTOR',
165.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1690ELF',
'0805(2012)',
'RESISTOR',
169.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1740ELF',
'0805(2012)',
'RESISTOR',
174.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1780ELF',
'0805(2012)',
'RESISTOR',
178.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1800ELF',
'0805(2012)',
'RESISTOR',
180.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1820ELF',
'0805(2012)',
'RESISTOR',
182.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1870ELF',
'0805(2012)',
'RESISTOR',
187.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1910ELF',
'0805(2012)',
'RESISTOR',
191.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1960ELF',
'0805(2012)',
'RESISTOR',
196.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-2000ELF',
'0805(2012)',
'RESISTOR',
200.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-2050ELF',
'0805(2012)',
'RESISTOR',
205.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-2100ELF',
'0805(2012)',
'RESISTOR',
210.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-2150ELF',
'0805(2012)',
'RESISTOR',
215.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-2200ELF',
'0805(2012)',
'RESISTOR',
220.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-2210ELF',
'0805(2012)',
'RESISTOR',
221.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-2260ELF',
'0805(2012)',
'RESISTOR',
226.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-2320ELF',
'0805(2012)',
'RESISTOR',
232.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-2370ELF',
'0805(2012)',
'RESISTOR',
237.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-2400ELF',
'0805(2012)',
'RESISTOR',
240.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-2430ELF',
'0805(2012)',
'RESISTOR',
243.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-2490ELF',
'0805(2012)',
'RESISTOR',
249.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-2550ELF',
'0805(2012)',
'RESISTOR',
255.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-2610ELF',
'0805(2012)',
'RESISTOR',
261.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-2670ELF',
'0805(2012)',
'RESISTOR',
267.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-2700ELF',
'0805(2012)',
'RESISTOR',
270.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-2740ELF',
'0805(2012)',
'RESISTOR',
274.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-2800ELF',
'0805(2012)',
'RESISTOR',
280.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-2870ELF',
'0805(2012)',
'RESISTOR',
287.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-2940ELF',
'0805(2012)',
'RESISTOR',
294.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-3000ELF',
'0805(2012)',
'RESISTOR',
300.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-3010ELF',
'0805(2012)',
'RESISTOR',
301.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-3090ELF',
'0805(2012)',
'RESISTOR',
309.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-3160ELF',
'0805(2012)',
'RESISTOR',
316.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-3240ELF',
'0805(2012)',
'RESISTOR',
324.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-3300ELF',
'0805(2012)',
'RESISTOR',
330.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-3320ELF',
'0805(2012)',
'RESISTOR',
332.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-3400ELF',
'0805(2012)',
'RESISTOR',
340.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-3480ELF',
'0805(2012)',
'RESISTOR',
348.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-3570ELF',
'0805(2012)',
'RESISTOR',
357.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-3600ELF',
'0805(2012)',
'RESISTOR',
360.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-3650ELF',
'0805(2012)',
'RESISTOR',
356.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-3740ELF',
'0805(2012)',
'RESISTOR',
374.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-3830ELF',
'0805(2012)',
'RESISTOR',
383.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-3900ELF',
'0805(2012)',
'RESISTOR',
390.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-3920ELF',
'0805(2012)',
'RESISTOR',
392.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-4020ELF',
'0805(2012)',
'RESISTOR',
402.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-4120ELF',
'0805(2012)',
'RESISTOR',
412.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-4220ELF',
'0805(2012)',
'RESISTOR',
422.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-4300ELF',
'0805(2012)',
'RESISTOR',
430.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-4320ELF',
'0805(2012)',
'RESISTOR',
432.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-4420ELF',
'0805(2012)',
'RESISTOR',
442.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-4530ELF',
'0805(2012)',
'RESISTOR',
453.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-4640ELF',
'0805(2012)',
'RESISTOR',
464.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-4700ELF',
'0805(2012)',
'RESISTOR',
470.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-4750ELF',
'0805(2012)',
'RESISTOR',
475.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-4870ELF',
'0805(2012)',
'RESISTOR',
487.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-4990ELF',
'0805(2012)',
'RESISTOR',
499.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-5100ELF',
'0805(2012)',
'RESISTOR',
510.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-5110ELF',
'0805(2012)',
'RESISTOR',
511.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-5230ELF',
'0805(2012)',
'RESISTOR',
523.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-5360ELF',
'0805(2012)',
'RESISTOR',
536.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-5490ELF',
'0805(2012)',
'RESISTOR',
549.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-5600ELF',
'0805(2012)',
'RESISTOR',
560.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-5620ELF',
'0805(2012)',
'RESISTOR',
562.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-5760ELF',
'0805(2012)',
'RESISTOR',
576.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-5900ELF',
'0805(2012)',
'RESISTOR',
590.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-6040ELF',
'0805(2012)',
'RESISTOR',
604.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-6190ELF',
'0805(2012)',
'RESISTOR',
619.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-6200ELF',
'0805(2012)',
'RESISTOR',
620.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-6340ELF',
'0805(2012)',
'RESISTOR',
634.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-6490ELF',
'0805(2012)',
'RESISTOR',
649.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-6650ELF',
'0805(2012)',
'RESISTOR',
665.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-6800ELF',
'0805(2012)',
'RESISTOR',
680.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-6810ELF',
'0805(2012)',
'RESISTOR',
681.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-6980ELF',
'0805(2012)',
'RESISTOR',
698.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-7150ELF',
'0805(2012)',
'RESISTOR',
715.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-7320ELF',
'0805(2012)',
'RESISTOR',
732.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-7500ELF',
'0805(2012)',
'RESISTOR',
750.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-7680ELF',
'0805(2012)',
'RESISTOR',
768.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-7870ELF',
'0805(2012)',
'RESISTOR',
787.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-8060ELF',
'0805(2012)',
'RESISTOR',
806.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-8200ELF',
'0805(2012)',
'RESISTOR',
820.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-8250ELF',
'0805(2012)',
'RESISTOR',
825.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-8450ELF',
'0805(2012)',
'RESISTOR',
845.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-8660ELF',
'0805(2012)',
'RESISTOR',
866.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-8870ELF',
'0805(2012)',
'RESISTOR',
887.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-9090ELF',
'0805(2012)',
'RESISTOR',
909.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-9100ELF',
'0805(2012)',
'RESISTOR',
910.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-9310ELF',
'0805(2012)',
'RESISTOR',
931.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-9530ELF',
'0805(2012)',
'RESISTOR',
953.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-9760ELF',
'0805(2012)',
'RESISTOR',
976.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1001ELF',
'0805(2012)',
'RESISTOR',
1000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1021ELF',
'0805(2012)',
'RESISTOR',
1020.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1051ELF',
'0805(2012)',
'RESISTOR',
1050.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1071ELF',
'0805(2012)',
'RESISTOR',
1070.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1101ELF',
'0805(2012)',
'RESISTOR',
1100.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1131ELF',
'0805(2012)',
'RESISTOR',
1130.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1151ELF',
'0805(2012)',
'RESISTOR',
1150.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1181ELF',
'0805(2012)',
'RESISTOR',
1180.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1201ELF',
'0805(2012)',
'RESISTOR',
1200.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1211ELF',
'0805(2012)',
'RESISTOR',
1210.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1241ELF',
'0805(2012)',
'RESISTOR',
1240.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1271ELF',
'0805(2012)',
'RESISTOR',
1270.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1301ELF',
'0805(2012)',
'RESISTOR',
1300.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1331ELF',
'0805(2012)',
'RESISTOR',
1330.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1371ELF',
'0805(2012)',
'RESISTOR',
1370.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1401ELF',
'0805(2012)',
'RESISTOR',
1400.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1431ELF',
'0805(2012)',
'RESISTOR',
1430.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1471ELF',
'0805(2012)',
'RESISTOR',
1470.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1501ELF',
'0805(2012)',
'RESISTOR',
1500.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1541ELF',
'0805(2012)',
'RESISTOR',
1540.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1581ELF',
'0805(2012)',
'RESISTOR',
1580.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1601ELF',
'0805(2012)',
'RESISTOR',
1600.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1621ELF',
'0805(2012)',
'RESISTOR',
1620.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1651ELF',
'0805(2012)',
'RESISTOR',
1650.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1691ELF',
'0805(2012)',
'RESISTOR',
1690.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1741ELF',
'0805(2012)',
'RESISTOR',
1740.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1781ELF',
'0805(2012)',
'RESISTOR',
1780.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1801ELF',
'0805(2012)',
'RESISTOR',
1800.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1821ELF',
'0805(2012)',
'RESISTOR',
1820.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1871ELF',
'0805(2012)',
'RESISTOR',
1870.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1911ELF',
'0805(2012)',
'RESISTOR',
1910.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1961ELF',
'0805(2012)',
'RESISTOR',
1960.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-2001ELF',
'0805(2012)',
'RESISTOR',
2000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-2051ELF',
'0805(2012)',
'RESISTOR',
2050.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-2101ELF',
'0805(2012)',
'RESISTOR',
2100.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-2151ELF',
'0805(2012)',
'RESISTOR',
2150.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-2201ELF',
'0805(2012)',
'RESISTOR',
2200.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-2211ELF',
'0805(2012)',
'RESISTOR',
2210.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-2261ELF',
'0805(2012)',
'RESISTOR',
2260.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-2321ELF',
'0805(2012)',
'RESISTOR',
2320.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-2371ELF',
'0805(2012)',
'RESISTOR',
2370.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-2401ELF',
'0805(2012)',
'RESISTOR',
2400.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-2431ELF',
'0805(2012)',
'RESISTOR',
2430.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-2491ELF',
'0805(2012)',
'RESISTOR',
2490.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-2551ELF',
'0805(2012)',
'RESISTOR',
2550.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-2611ELF',
'0805(2012)',
'RESISTOR',
2610.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-2671ELF',
'0805(2012)',
'RESISTOR',
2670.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-2701ELF',
'0805(2012)',
'RESISTOR',
2700.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-2741ELF',
'0805(2012)',
'RESISTOR',
2740.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-2801ELF',
'0805(2012)',
'RESISTOR',
2800.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-2871ELF',
'0805(2012)',
'RESISTOR',
2870.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-2941ELF',
'0805(2012)',
'RESISTOR',
2940.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-3001ELF',
'0805(2012)',
'RESISTOR',
3000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-3011ELF',
'0805(2012)',
'RESISTOR',
3010.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-3091ELF',
'0805(2012)',
'RESISTOR',
3090.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-3161ELF',
'0805(2012)',
'RESISTOR',
3160.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-3241ELF',
'0805(2012)',
'RESISTOR',
3240.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-3301ELF',
'0805(2012)',
'RESISTOR',
3300.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-3321ELF',
'0805(2012)',
'RESISTOR',
3320.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-3401ELF',
'0805(2012)',
'RESISTOR',
3400.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-3481ELF',
'0805(2012)',
'RESISTOR',
3480.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-3571ELF',
'0805(2012)',
'RESISTOR',
3570.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-3601ELF',
'0805(2012)',
'RESISTOR',
3600.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-3651ELF',
'0805(2012)',
'RESISTOR',
3560.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-3741ELF',
'0805(2012)',
'RESISTOR',
3740.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-3831ELF',
'0805(2012)',
'RESISTOR',
3830.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-3901ELF',
'0805(2012)',
'RESISTOR',
3900.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-3921ELF',
'0805(2012)',
'RESISTOR',
3920.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-4021ELF',
'0805(2012)',
'RESISTOR',
4020.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-4121ELF',
'0805(2012)',
'RESISTOR',
4120.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-4221ELF',
'0805(2012)',
'RESISTOR',
4220.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-4301ELF',
'0805(2012)',
'RESISTOR',
4300.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-4321ELF',
'0805(2012)',
'RESISTOR',
4320.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-4421ELF',
'0805(2012)',
'RESISTOR',
4420.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-4531ELF',
'0805(2012)',
'RESISTOR',
4530.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-4641ELF',
'0805(2012)',
'RESISTOR',
4640.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-4701ELF',
'0805(2012)',
'RESISTOR',
4700.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-4751ELF',
'0805(2012)',
'RESISTOR',
4750.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-4871ELF',
'0805(2012)',
'RESISTOR',
4870.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-4991ELF',
'0805(2012)',
'RESISTOR',
4990.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-5101ELF',
'0805(2012)',
'RESISTOR',
5100.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-5111ELF',
'0805(2012)',
'RESISTOR',
5110.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-5231ELF',
'0805(2012)',
'RESISTOR',
5230.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-5361ELF',
'0805(2012)',
'RESISTOR',
5360.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-5491ELF',
'0805(2012)',
'RESISTOR',
5490.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-5601ELF',
'0805(2012)',
'RESISTOR',
5600.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-5621ELF',
'0805(2012)',
'RESISTOR',
5620.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-5761ELF',
'0805(2012)',
'RESISTOR',
5760.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-5901ELF',
'0805(2012)',
'RESISTOR',
5900.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-6041ELF',
'0805(2012)',
'RESISTOR',
6040.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-6191ELF',
'0805(2012)',
'RESISTOR',
6190.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-6201ELF',
'0805(2012)',
'RESISTOR',
6200.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-6341ELF',
'0805(2012)',
'RESISTOR',
6340.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-6491ELF',
'0805(2012)',
'RESISTOR',
6490.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-6651ELF',
'0805(2012)',
'RESISTOR',
6650.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-6801ELF',
'0805(2012)',
'RESISTOR',
6800.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-6811ELF',
'0805(2012)',
'RESISTOR',
6810.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-6981ELF',
'0805(2012)',
'RESISTOR',
6980.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-7151ELF',
'0805(2012)',
'RESISTOR',
7150.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-7321ELF',
'0805(2012)',
'RESISTOR',
7320.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-7501ELF',
'0805(2012)',
'RESISTOR',
7500.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-7681ELF',
'0805(2012)',
'RESISTOR',
7680.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-7871ELF',
'0805(2012)',
'RESISTOR',
7870.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-8061ELF',
'0805(2012)',
'RESISTOR',
8060.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-8201ELF',
'0805(2012)',
'RESISTOR',
8200.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-8251ELF',
'0805(2012)',
'RESISTOR',
8250.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-8451ELF',
'0805(2012)',
'RESISTOR',
8450.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-8661ELF',
'0805(2012)',
'RESISTOR',
8660.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-8871ELF',
'0805(2012)',
'RESISTOR',
8870.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-9091ELF',
'0805(2012)',
'RESISTOR',
9090.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-9101ELF',
'0805(2012)',
'RESISTOR',
9100.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-9311ELF',
'0805(2012)',
'RESISTOR',
9310.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-9531ELF',
'0805(2012)',
'RESISTOR',
9530.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-9761ELF',
'0805(2012)',
'RESISTOR',
9760.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1002ELF',
'0805(2012)',
'RESISTOR',
10000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1022ELF',
'0805(2012)',
'RESISTOR',
10200.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1052ELF',
'0805(2012)',
'RESISTOR',
10500.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1072ELF',
'0805(2012)',
'RESISTOR',
10700.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1102ELF',
'0805(2012)',
'RESISTOR',
11000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1132ELF',
'0805(2012)',
'RESISTOR',
11300.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1152ELF',
'0805(2012)',
'RESISTOR',
11500.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1182ELF',
'0805(2012)',
'RESISTOR',
11800.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1202ELF',
'0805(2012)',
'RESISTOR',
12000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1212ELF',
'0805(2012)',
'RESISTOR',
12100.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1242ELF',
'0805(2012)',
'RESISTOR',
12400.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1272ELF',
'0805(2012)',
'RESISTOR',
12700.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1302ELF',
'0805(2012)',
'RESISTOR',
13000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1332ELF',
'0805(2012)',
'RESISTOR',
13300.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1372ELF',
'0805(2012)',
'RESISTOR',
13700.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1402ELF',
'0805(2012)',
'RESISTOR',
14000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1432ELF',
'0805(2012)',
'RESISTOR',
14300.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1472ELF',
'0805(2012)',
'RESISTOR',
14700.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1502ELF',
'0805(2012)',
'RESISTOR',
15000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1542ELF',
'0805(2012)',
'RESISTOR',
15400.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1582ELF',
'0805(2012)',
'RESISTOR',
15800.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1602ELF',
'0805(2012)',
'RESISTOR',
16000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1622ELF',
'0805(2012)',
'RESISTOR',
16200.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1652ELF',
'0805(2012)',
'RESISTOR',
16500.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1692ELF',
'0805(2012)',
'RESISTOR',
16900.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1742ELF',
'0805(2012)',
'RESISTOR',
17400.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1782ELF',
'0805(2012)',
'RESISTOR',
17800.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1802ELF',
'0805(2012)',
'RESISTOR',
18000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1822ELF',
'0805(2012)',
'RESISTOR',
18200.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1872ELF',
'0805(2012)',
'RESISTOR',
18700.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1912ELF',
'0805(2012)',
'RESISTOR',
19100.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1962ELF',
'0805(2012)',
'RESISTOR',
19600.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-2002ELF',
'0805(2012)',
'RESISTOR',
20000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-2052ELF',
'0805(2012)',
'RESISTOR',
20500.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-2102ELF',
'0805(2012)',
'RESISTOR',
21000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-2152ELF',
'0805(2012)',
'RESISTOR',
21500.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-2202ELF',
'0805(2012)',
'RESISTOR',
22000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-2212ELF',
'0805(2012)',
'RESISTOR',
22100.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-2262ELF',
'0805(2012)',
'RESISTOR',
22600.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-2322ELF',
'0805(2012)',
'RESISTOR',
23200.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-2372ELF',
'0805(2012)',
'RESISTOR',
23700.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-2402ELF',
'0805(2012)',
'RESISTOR',
24000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-2432ELF',
'0805(2012)',
'RESISTOR',
24300.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-2492ELF',
'0805(2012)',
'RESISTOR',
24900.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-2552ELF',
'0805(2012)',
'RESISTOR',
25500.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-2612ELF',
'0805(2012)',
'RESISTOR',
26100.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-2672ELF',
'0805(2012)',
'RESISTOR',
26700.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-2702ELF',
'0805(2012)',
'RESISTOR',
27000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-2742ELF',
'0805(2012)',
'RESISTOR',
27400.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-2802ELF',
'0805(2012)',
'RESISTOR',
28000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-2872ELF',
'0805(2012)',
'RESISTOR',
28700.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-2942ELF',
'0805(2012)',
'RESISTOR',
29400.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-3002ELF',
'0805(2012)',
'RESISTOR',
30000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-3012ELF',
'0805(2012)',
'RESISTOR',
30100.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-3092ELF',
'0805(2012)',
'RESISTOR',
30900.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-3162ELF',
'0805(2012)',
'RESISTOR',
31600.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-3242ELF',
'0805(2012)',
'RESISTOR',
32400.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-3302ELF',
'0805(2012)',
'RESISTOR',
33000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-3322ELF',
'0805(2012)',
'RESISTOR',
33200.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-3402ELF',
'0805(2012)',
'RESISTOR',
34000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-3482ELF',
'0805(2012)',
'RESISTOR',
34800.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-3572ELF',
'0805(2012)',
'RESISTOR',
35700.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-3602ELF',
'0805(2012)',
'RESISTOR',
36000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-3652ELF',
'0805(2012)',
'RESISTOR',
35600.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-3742ELF',
'0805(2012)',
'RESISTOR',
37400.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-3832ELF',
'0805(2012)',
'RESISTOR',
38300.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-3902ELF',
'0805(2012)',
'RESISTOR',
39000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-3922ELF',
'0805(2012)',
'RESISTOR',
39200.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-4022ELF',
'0805(2012)',
'RESISTOR',
40200.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-4122ELF',
'0805(2012)',
'RESISTOR',
41200.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-4222ELF',
'0805(2012)',
'RESISTOR',
42200.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-4302ELF',
'0805(2012)',
'RESISTOR',
43000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-4322ELF',
'0805(2012)',
'RESISTOR',
43200.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-4422ELF',
'0805(2012)',
'RESISTOR',
44200.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-4532ELF',
'0805(2012)',
'RESISTOR',
45300.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-4642ELF',
'0805(2012)',
'RESISTOR',
46400.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-4702ELF',
'0805(2012)',
'RESISTOR',
47000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-4752ELF',
'0805(2012)',
'RESISTOR',
47500.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-4872ELF',
'0805(2012)',
'RESISTOR',
48700.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-4992ELF',
'0805(2012)',
'RESISTOR',
49900.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-5102ELF',
'0805(2012)',
'RESISTOR',
51000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-5112ELF',
'0805(2012)',
'RESISTOR',
51100.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-5232ELF',
'0805(2012)',
'RESISTOR',
52300.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-5362ELF',
'0805(2012)',
'RESISTOR',
53600.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-5492ELF',
'0805(2012)',
'RESISTOR',
54900.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-5602ELF',
'0805(2012)',
'RESISTOR',
56000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-5622ELF',
'0805(2012)',
'RESISTOR',
56200.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-5762ELF',
'0805(2012)',
'RESISTOR',
57600.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-5902ELF',
'0805(2012)',
'RESISTOR',
59000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-6042ELF',
'0805(2012)',
'RESISTOR',
60400.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-6192ELF',
'0805(2012)',
'RESISTOR',
61900.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-6202ELF',
'0805(2012)',
'RESISTOR',
62000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-6342ELF',
'0805(2012)',
'RESISTOR',
63400.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-6492ELF',
'0805(2012)',
'RESISTOR',
64900.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-6652ELF',
'0805(2012)',
'RESISTOR',
66500.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-6802ELF',
'0805(2012)',
'RESISTOR',
68000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-6812ELF',
'0805(2012)',
'RESISTOR',
68100.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-6982ELF',
'0805(2012)',
'RESISTOR',
69800.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-7152ELF',
'0805(2012)',
'RESISTOR',
71500.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-7322ELF',
'0805(2012)',
'RESISTOR',
73200.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-7502ELF',
'0805(2012)',
'RESISTOR',
75000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-7682ELF',
'0805(2012)',
'RESISTOR',
76800.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-7872ELF',
'0805(2012)',
'RESISTOR',
78700.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-8062ELF',
'0805(2012)',
'RESISTOR',
80600.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-8202ELF',
'0805(2012)',
'RESISTOR',
82000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-8252ELF',
'0805(2012)',
'RESISTOR',
82500.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-8452ELF',
'0805(2012)',
'RESISTOR',
84500.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-8662ELF',
'0805(2012)',
'RESISTOR',
86600.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-8872ELF',
'0805(2012)',
'RESISTOR',
88700.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-9092ELF',
'0805(2012)',
'RESISTOR',
90900.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-9102ELF',
'0805(2012)',
'RESISTOR',
91000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-9312ELF',
'0805(2012)',
'RESISTOR',
93100.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-9532ELF',
'0805(2012)',
'RESISTOR',
95300.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-9762ELF',
'0805(2012)',
'RESISTOR',
97600.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1003ELF',
'0805(2012)',
'RESISTOR',
100000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1023ELF',
'0805(2012)',
'RESISTOR',
102000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1053ELF',
'0805(2012)',
'RESISTOR',
105000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1073ELF',
'0805(2012)',
'RESISTOR',
107000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1103ELF',
'0805(2012)',
'RESISTOR',
110000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1133ELF',
'0805(2012)',
'RESISTOR',
113000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1153ELF',
'0805(2012)',
'RESISTOR',
115000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1183ELF',
'0805(2012)',
'RESISTOR',
118000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1203ELF',
'0805(2012)',
'RESISTOR',
120000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1213ELF',
'0805(2012)',
'RESISTOR',
121000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1243ELF',
'0805(2012)',
'RESISTOR',
124000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1273ELF',
'0805(2012)',
'RESISTOR',
127000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1303ELF',
'0805(2012)',
'RESISTOR',
130000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1333ELF',
'0805(2012)',
'RESISTOR',
133000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1373ELF',
'0805(2012)',
'RESISTOR',
137000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1403ELF',
'0805(2012)',
'RESISTOR',
140000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1433ELF',
'0805(2012)',
'RESISTOR',
143000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1473ELF',
'0805(2012)',
'RESISTOR',
147000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1503ELF',
'0805(2012)',
'RESISTOR',
150000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1543ELF',
'0805(2012)',
'RESISTOR',
154000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1583ELF',
'0805(2012)',
'RESISTOR',
158000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1603ELF',
'0805(2012)',
'RESISTOR',
160000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1623ELF',
'0805(2012)',
'RESISTOR',
162000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1653ELF',
'0805(2012)',
'RESISTOR',
165000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1693ELF',
'0805(2012)',
'RESISTOR',
169000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1743ELF',
'0805(2012)',
'RESISTOR',
174000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1783ELF',
'0805(2012)',
'RESISTOR',
178000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1803ELF',
'0805(2012)',
'RESISTOR',
180000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1823ELF',
'0805(2012)',
'RESISTOR',
182000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1873ELF',
'0805(2012)',
'RESISTOR',
187000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1913ELF',
'0805(2012)',
'RESISTOR',
191000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1963ELF',
'0805(2012)',
'RESISTOR',
196000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-2003ELF',
'0805(2012)',
'RESISTOR',
200000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-2053ELF',
'0805(2012)',
'RESISTOR',
205000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-2103ELF',
'0805(2012)',
'RESISTOR',
210000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-2153ELF',
'0805(2012)',
'RESISTOR',
215000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-2203ELF',
'0805(2012)',
'RESISTOR',
220000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-2213ELF',
'0805(2012)',
'RESISTOR',
221000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-2263ELF',
'0805(2012)',
'RESISTOR',
226000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-2323ELF',
'0805(2012)',
'RESISTOR',
232000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-2373ELF',
'0805(2012)',
'RESISTOR',
237000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-2403ELF',
'0805(2012)',
'RESISTOR',
240000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-2433ELF',
'0805(2012)',
'RESISTOR',
243000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-2493ELF',
'0805(2012)',
'RESISTOR',
249000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-2553ELF',
'0805(2012)',
'RESISTOR',
255000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-2613ELF',
'0805(2012)',
'RESISTOR',
261000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-2673ELF',
'0805(2012)',
'RESISTOR',
267000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-2703ELF',
'0805(2012)',
'RESISTOR',
270000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-2743ELF',
'0805(2012)',
'RESISTOR',
274000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-2803ELF',
'0805(2012)',
'RESISTOR',
280000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-2873ELF',
'0805(2012)',
'RESISTOR',
287000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-2943ELF',
'0805(2012)',
'RESISTOR',
294000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-3003ELF',
'0805(2012)',
'RESISTOR',
300000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-3013ELF',
'0805(2012)',
'RESISTOR',
301000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-3093ELF',
'0805(2012)',
'RESISTOR',
309000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-3163ELF',
'0805(2012)',
'RESISTOR',
316000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-3243ELF',
'0805(2012)',
'RESISTOR',
324000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-3303ELF',
'0805(2012)',
'RESISTOR',
330000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-3323ELF',
'0805(2012)',
'RESISTOR',
332000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-3403ELF',
'0805(2012)',
'RESISTOR',
340000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-3483ELF',
'0805(2012)',
'RESISTOR',
348000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-3573ELF',
'0805(2012)',
'RESISTOR',
357000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-3603ELF',
'0805(2012)',
'RESISTOR',
360000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-3653ELF',
'0805(2012)',
'RESISTOR',
356000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-3743ELF',
'0805(2012)',
'RESISTOR',
374000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-3833ELF',
'0805(2012)',
'RESISTOR',
383000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-3903ELF',
'0805(2012)',
'RESISTOR',
390000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-3923ELF',
'0805(2012)',
'RESISTOR',
392000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-4023ELF',
'0805(2012)',
'RESISTOR',
402000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-4123ELF',
'0805(2012)',
'RESISTOR',
412000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-4223ELF',
'0805(2012)',
'RESISTOR',
422000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-4303ELF',
'0805(2012)',
'RESISTOR',
430000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-4323ELF',
'0805(2012)',
'RESISTOR',
432000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-4423ELF',
'0805(2012)',
'RESISTOR',
442000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-4533ELF',
'0805(2012)',
'RESISTOR',
453000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-4643ELF',
'0805(2012)',
'RESISTOR',
464000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-4703ELF',
'0805(2012)',
'RESISTOR',
470000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-4753ELF',
'0805(2012)',
'RESISTOR',
475000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-4873ELF',
'0805(2012)',
'RESISTOR',
487000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-4993ELF',
'0805(2012)',
'RESISTOR',
499000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-5103ELF',
'0805(2012)',
'RESISTOR',
510000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-5113ELF',
'0805(2012)',
'RESISTOR',
511000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-5233ELF',
'0805(2012)',
'RESISTOR',
523000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-5363ELF',
'0805(2012)',
'RESISTOR',
536000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-5493ELF',
'0805(2012)',
'RESISTOR',
549000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-5603ELF',
'0805(2012)',
'RESISTOR',
560000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-5623ELF',
'0805(2012)',
'RESISTOR',
562000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-5763ELF',
'0805(2012)',
'RESISTOR',
576000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-5903ELF',
'0805(2012)',
'RESISTOR',
590000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-6043ELF',
'0805(2012)',
'RESISTOR',
604000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-6193ELF',
'0805(2012)',
'RESISTOR',
619000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-6203ELF',
'0805(2012)',
'RESISTOR',
620000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-6343ELF',
'0805(2012)',
'RESISTOR',
634000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-6493ELF',
'0805(2012)',
'RESISTOR',
649000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-6653ELF',
'0805(2012)',
'RESISTOR',
665000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-6803ELF',
'0805(2012)',
'RESISTOR',
680000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-6813ELF',
'0805(2012)',
'RESISTOR',
681000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-6983ELF',
'0805(2012)',
'RESISTOR',
698000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-7153ELF',
'0805(2012)',
'RESISTOR',
715000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-7323ELF',
'0805(2012)',
'RESISTOR',
732000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-7503ELF',
'0805(2012)',
'RESISTOR',
750000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-7683ELF',
'0805(2012)',
'RESISTOR',
768000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-7873ELF',
'0805(2012)',
'RESISTOR',
787000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-8063ELF',
'0805(2012)',
'RESISTOR',
806000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-8203ELF',
'0805(2012)',
'RESISTOR',
820000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-8253ELF',
'0805(2012)',
'RESISTOR',
825000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-8453ELF',
'0805(2012)',
'RESISTOR',
845000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-8663ELF',
'0805(2012)',
'RESISTOR',
866000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-8873ELF',
'0805(2012)',
'RESISTOR',
887000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-9093ELF',
'0805(2012)',
'RESISTOR',
909000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-9103ELF',
'0805(2012)',
'RESISTOR',
910000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-9313ELF',
'0805(2012)',
'RESISTOR',
931000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-9533ELF',
'0805(2012)',
'RESISTOR',
953000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-9763ELF',
'0805(2012)',
'RESISTOR',
976000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR0805-FX-1004ELF',
'0805(2012)',
'RESISTOR',
1000000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-10R0ELF',
'1206(3216)',
'RESISTOR',
10.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-10R2ELF',
'1206(3216)',
'RESISTOR',
10.200000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-10R5ELF',
'1206(3216)',
'RESISTOR',
10.500000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-10R7ELF',
'1206(3216)',
'RESISTOR',
10.700000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-11R0ELF',
'1206(3216)',
'RESISTOR',
11.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-11R3ELF',
'1206(3216)',
'RESISTOR',
11.300000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-11R5ELF',
'1206(3216)',
'RESISTOR',
11.500000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-11R8ELF',
'1206(3216)',
'RESISTOR',
11.800000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-12R0ELF',
'1206(3216)',
'RESISTOR',
12.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-12R1ELF',
'1206(3216)',
'RESISTOR',
12.100000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-12R4ELF',
'1206(3216)',
'RESISTOR',
12.400000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-12R7ELF',
'1206(3216)',
'RESISTOR',
12.700000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-13R0ELF',
'1206(3216)',
'RESISTOR',
13.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-13R3ELF',
'1206(3216)',
'RESISTOR',
13.300000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-13R7ELF',
'1206(3216)',
'RESISTOR',
13.700000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-14R0ELF',
'1206(3216)',
'RESISTOR',
14.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-14R3ELF',
'1206(3216)',
'RESISTOR',
14.300000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-14R7ELF',
'1206(3216)',
'RESISTOR',
14.700000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-15R0ELF',
'1206(3216)',
'RESISTOR',
15.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-15R4ELF',
'1206(3216)',
'RESISTOR',
15.400000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-15R8ELF',
'1206(3216)',
'RESISTOR',
15.800000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-16R0ELF',
'1206(3216)',
'RESISTOR',
16.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-16R2ELF',
'1206(3216)',
'RESISTOR',
16.200000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-16R5ELF',
'1206(3216)',
'RESISTOR',
16.500000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-16R9ELF',
'1206(3216)',
'RESISTOR',
16.900000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-17R4ELF',
'1206(3216)',
'RESISTOR',
17.400000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-17R8ELF',
'1206(3216)',
'RESISTOR',
17.800000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-18R0ELF',
'1206(3216)',
'RESISTOR',
18.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-18R2ELF',
'1206(3216)',
'RESISTOR',
18.200000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-18R7ELF',
'1206(3216)',
'RESISTOR',
18.700000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-19R1ELF',
'1206(3216)',
'RESISTOR',
19.100000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-19R6ELF',
'1206(3216)',
'RESISTOR',
19.600000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-20R0ELF',
'1206(3216)',
'RESISTOR',
20.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-20R5ELF',
'1206(3216)',
'RESISTOR',
20.500000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-21R0ELF',
'1206(3216)',
'RESISTOR',
21.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-21R5ELF',
'1206(3216)',
'RESISTOR',
21.500000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-22R0ELF',
'1206(3216)',
'RESISTOR',
22.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-22R1ELF',
'1206(3216)',
'RESISTOR',
22.100000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-22R6ELF',
'1206(3216)',
'RESISTOR',
22.600000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-23R2ELF',
'1206(3216)',
'RESISTOR',
23.200000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-23R7ELF',
'1206(3216)',
'RESISTOR',
23.700000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-24R0ELF',
'1206(3216)',
'RESISTOR',
24.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-24R3ELF',
'1206(3216)',
'RESISTOR',
24.300000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-24R9ELF',
'1206(3216)',
'RESISTOR',
24.900000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-25R5ELF',
'1206(3216)',
'RESISTOR',
25.500000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-26R1ELF',
'1206(3216)',
'RESISTOR',
26.100000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-26R7ELF',
'1206(3216)',
'RESISTOR',
26.700000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-27R0ELF',
'1206(3216)',
'RESISTOR',
27.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-27R4ELF',
'1206(3216)',
'RESISTOR',
27.400000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-28R0ELF',
'1206(3216)',
'RESISTOR',
28.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-28R7ELF',
'1206(3216)',
'RESISTOR',
28.700000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-29R4ELF',
'1206(3216)',
'RESISTOR',
29.400000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-30R0ELF',
'1206(3216)',
'RESISTOR',
30.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-30R1ELF',
'1206(3216)',
'RESISTOR',
30.100000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-30R9ELF',
'1206(3216)',
'RESISTOR',
30.900000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-31R6ELF',
'1206(3216)',
'RESISTOR',
31.600000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-32R4ELF',
'1206(3216)',
'RESISTOR',
32.400000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-33R0ELF',
'1206(3216)',
'RESISTOR',
33.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-33R2ELF',
'1206(3216)',
'RESISTOR',
33.200000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-34R0ELF',
'1206(3216)',
'RESISTOR',
34.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-34R8ELF',
'1206(3216)',
'RESISTOR',
34.800000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-35R7ELF',
'1206(3216)',
'RESISTOR',
35.700000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-36R0ELF',
'1206(3216)',
'RESISTOR',
36.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-36R5ELF',
'1206(3216)',
'RESISTOR',
35.600000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-37R4ELF',
'1206(3216)',
'RESISTOR',
37.400000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-38R3ELF',
'1206(3216)',
'RESISTOR',
38.300000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-39R0ELF',
'1206(3216)',
'RESISTOR',
39.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-39R2ELF',
'1206(3216)',
'RESISTOR',
39.200000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-40R2ELF',
'1206(3216)',
'RESISTOR',
40.200000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-41R2ELF',
'1206(3216)',
'RESISTOR',
41.200000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-42R2ELF',
'1206(3216)',
'RESISTOR',
42.200000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-43R0ELF',
'1206(3216)',
'RESISTOR',
43.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-43R2ELF',
'1206(3216)',
'RESISTOR',
43.200000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-44R2ELF',
'1206(3216)',
'RESISTOR',
44.200000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-45R3ELF',
'1206(3216)',
'RESISTOR',
45.300000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-46R4ELF',
'1206(3216)',
'RESISTOR',
46.400000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-47R0ELF',
'1206(3216)',
'RESISTOR',
47.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-47R5ELF',
'1206(3216)',
'RESISTOR',
47.500000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-48R7ELF',
'1206(3216)',
'RESISTOR',
48.700000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-49R9ELF',
'1206(3216)',
'RESISTOR',
49.900000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-51R0ELF',
'1206(3216)',
'RESISTOR',
51.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-51R1ELF',
'1206(3216)',
'RESISTOR',
51.100000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-52R3ELF',
'1206(3216)',
'RESISTOR',
52.300000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-53R6ELF',
'1206(3216)',
'RESISTOR',
53.600000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-54R9ELF',
'1206(3216)',
'RESISTOR',
54.900000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-56R0ELF',
'1206(3216)',
'RESISTOR',
56.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-56R2ELF',
'1206(3216)',
'RESISTOR',
56.200000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-57R6ELF',
'1206(3216)',
'RESISTOR',
57.600000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-59R0ELF',
'1206(3216)',
'RESISTOR',
59.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-60R4ELF',
'1206(3216)',
'RESISTOR',
60.400000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-61R9ELF',
'1206(3216)',
'RESISTOR',
61.900000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-62R0ELF',
'1206(3216)',
'RESISTOR',
62.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-63R4ELF',
'1206(3216)',
'RESISTOR',
63.400000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-64R9ELF',
'1206(3216)',
'RESISTOR',
64.900000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-66R5ELF',
'1206(3216)',
'RESISTOR',
66.500000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-68R0ELF',
'1206(3216)',
'RESISTOR',
68.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-68R1ELF',
'1206(3216)',
'RESISTOR',
68.100000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-69R8ELF',
'1206(3216)',
'RESISTOR',
69.800000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-71R5ELF',
'1206(3216)',
'RESISTOR',
71.500000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-73R2ELF',
'1206(3216)',
'RESISTOR',
73.200000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-75R0ELF',
'1206(3216)',
'RESISTOR',
75.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-76R8ELF',
'1206(3216)',
'RESISTOR',
76.800000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-78R7ELF',
'1206(3216)',
'RESISTOR',
78.700000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-80R6ELF',
'1206(3216)',
'RESISTOR',
80.600000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-82R0ELF',
'1206(3216)',
'RESISTOR',
82.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-82R5ELF',
'1206(3216)',
'RESISTOR',
82.500000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-84R5ELF',
'1206(3216)',
'RESISTOR',
84.500000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-86R6ELF',
'1206(3216)',
'RESISTOR',
86.600000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-88R7ELF',
'1206(3216)',
'RESISTOR',
88.700000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-90R9ELF',
'1206(3216)',
'RESISTOR',
90.900000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-91R0ELF',
'1206(3216)',
'RESISTOR',
91.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-93R1ELF',
'1206(3216)',
'RESISTOR',
93.100000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-95R3ELF',
'1206(3216)',
'RESISTOR',
95.300000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-97R0ELF',
'1206(3216)',
'RESISTOR',
97.600000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1000ELF',
'1206(3216)',
'RESISTOR',
100.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1020ELF',
'1206(3216)',
'RESISTOR',
102.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1050ELF',
'1206(3216)',
'RESISTOR',
105.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1070ELF',
'1206(3216)',
'RESISTOR',
107.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1100ELF',
'1206(3216)',
'RESISTOR',
110.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1130ELF',
'1206(3216)',
'RESISTOR',
113.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1150ELF',
'1206(3216)',
'RESISTOR',
115.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1180ELF',
'1206(3216)',
'RESISTOR',
118.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1200ELF',
'1206(3216)',
'RESISTOR',
120.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1210ELF',
'1206(3216)',
'RESISTOR',
121.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1240ELF',
'1206(3216)',
'RESISTOR',
124.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1270ELF',
'1206(3216)',
'RESISTOR',
127.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1300ELF',
'1206(3216)',
'RESISTOR',
130.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1330ELF',
'1206(3216)',
'RESISTOR',
133.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1370ELF',
'1206(3216)',
'RESISTOR',
137.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1400ELF',
'1206(3216)',
'RESISTOR',
140.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1430ELF',
'1206(3216)',
'RESISTOR',
143.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1470ELF',
'1206(3216)',
'RESISTOR',
147.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1500ELF',
'1206(3216)',
'RESISTOR',
150.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1540ELF',
'1206(3216)',
'RESISTOR',
154.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1580ELF',
'1206(3216)',
'RESISTOR',
158.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1600ELF',
'1206(3216)',
'RESISTOR',
160.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1620ELF',
'1206(3216)',
'RESISTOR',
162.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1650ELF',
'1206(3216)',
'RESISTOR',
165.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1690ELF',
'1206(3216)',
'RESISTOR',
169.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1740ELF',
'1206(3216)',
'RESISTOR',
174.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1780ELF',
'1206(3216)',
'RESISTOR',
178.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1800ELF',
'1206(3216)',
'RESISTOR',
180.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1820ELF',
'1206(3216)',
'RESISTOR',
182.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1870ELF',
'1206(3216)',
'RESISTOR',
187.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1910ELF',
'1206(3216)',
'RESISTOR',
191.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1960ELF',
'1206(3216)',
'RESISTOR',
196.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-2000ELF',
'1206(3216)',
'RESISTOR',
200.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-2050ELF',
'1206(3216)',
'RESISTOR',
205.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-2100ELF',
'1206(3216)',
'RESISTOR',
210.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-2150ELF',
'1206(3216)',
'RESISTOR',
215.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-2200ELF',
'1206(3216)',
'RESISTOR',
220.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-2210ELF',
'1206(3216)',
'RESISTOR',
221.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-2260ELF',
'1206(3216)',
'RESISTOR',
226.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-2320ELF',
'1206(3216)',
'RESISTOR',
232.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-2370ELF',
'1206(3216)',
'RESISTOR',
237.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-2400ELF',
'1206(3216)',
'RESISTOR',
240.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-2430ELF',
'1206(3216)',
'RESISTOR',
243.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-2490ELF',
'1206(3216)',
'RESISTOR',
249.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-2550ELF',
'1206(3216)',
'RESISTOR',
255.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-2610ELF',
'1206(3216)',
'RESISTOR',
261.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-2670ELF',
'1206(3216)',
'RESISTOR',
267.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-2700ELF',
'1206(3216)',
'RESISTOR',
270.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-2740ELF',
'1206(3216)',
'RESISTOR',
274.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-2800ELF',
'1206(3216)',
'RESISTOR',
280.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-2870ELF',
'1206(3216)',
'RESISTOR',
287.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-2940ELF',
'1206(3216)',
'RESISTOR',
294.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-3000ELF',
'1206(3216)',
'RESISTOR',
300.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-3010ELF',
'1206(3216)',
'RESISTOR',
301.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-3090ELF',
'1206(3216)',
'RESISTOR',
309.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-3160ELF',
'1206(3216)',
'RESISTOR',
316.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-3240ELF',
'1206(3216)',
'RESISTOR',
324.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-3300ELF',
'1206(3216)',
'RESISTOR',
330.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-3320ELF',
'1206(3216)',
'RESISTOR',
332.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-3400ELF',
'1206(3216)',
'RESISTOR',
340.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-3480ELF',
'1206(3216)',
'RESISTOR',
348.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-3570ELF',
'1206(3216)',
'RESISTOR',
357.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-3600ELF',
'1206(3216)',
'RESISTOR',
360.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-3650ELF',
'1206(3216)',
'RESISTOR',
356.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-3740ELF',
'1206(3216)',
'RESISTOR',
374.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-3830ELF',
'1206(3216)',
'RESISTOR',
383.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-3900ELF',
'1206(3216)',
'RESISTOR',
390.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-3920ELF',
'1206(3216)',
'RESISTOR',
392.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-4020ELF',
'1206(3216)',
'RESISTOR',
402.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-4120ELF',
'1206(3216)',
'RESISTOR',
412.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-4220ELF',
'1206(3216)',
'RESISTOR',
422.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-4300ELF',
'1206(3216)',
'RESISTOR',
430.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-4320ELF',
'1206(3216)',
'RESISTOR',
432.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-4420ELF',
'1206(3216)',
'RESISTOR',
442.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-4530ELF',
'1206(3216)',
'RESISTOR',
453.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-4640ELF',
'1206(3216)',
'RESISTOR',
464.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-4700ELF',
'1206(3216)',
'RESISTOR',
470.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-4750ELF',
'1206(3216)',
'RESISTOR',
475.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-4870ELF',
'1206(3216)',
'RESISTOR',
487.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-4990ELF',
'1206(3216)',
'RESISTOR',
499.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-5100ELF',
'1206(3216)',
'RESISTOR',
510.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-5110ELF',
'1206(3216)',
'RESISTOR',
511.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-5230ELF',
'1206(3216)',
'RESISTOR',
523.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-5360ELF',
'1206(3216)',
'RESISTOR',
536.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-5490ELF',
'1206(3216)',
'RESISTOR',
549.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-5600ELF',
'1206(3216)',
'RESISTOR',
560.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-5620ELF',
'1206(3216)',
'RESISTOR',
562.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-5760ELF',
'1206(3216)',
'RESISTOR',
576.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-5900ELF',
'1206(3216)',
'RESISTOR',
590.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-6040ELF',
'1206(3216)',
'RESISTOR',
604.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-6190ELF',
'1206(3216)',
'RESISTOR',
619.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-6200ELF',
'1206(3216)',
'RESISTOR',
620.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-6340ELF',
'1206(3216)',
'RESISTOR',
634.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-6490ELF',
'1206(3216)',
'RESISTOR',
649.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-6650ELF',
'1206(3216)',
'RESISTOR',
665.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-6800ELF',
'1206(3216)',
'RESISTOR',
680.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-6810ELF',
'1206(3216)',
'RESISTOR',
681.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-6980ELF',
'1206(3216)',
'RESISTOR',
698.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-7150ELF',
'1206(3216)',
'RESISTOR',
715.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-7320ELF',
'1206(3216)',
'RESISTOR',
732.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-7500ELF',
'1206(3216)',
'RESISTOR',
750.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-7680ELF',
'1206(3216)',
'RESISTOR',
768.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-7870ELF',
'1206(3216)',
'RESISTOR',
787.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-8060ELF',
'1206(3216)',
'RESISTOR',
806.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-8200ELF',
'1206(3216)',
'RESISTOR',
820.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-8250ELF',
'1206(3216)',
'RESISTOR',
825.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-8450ELF',
'1206(3216)',
'RESISTOR',
845.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-8660ELF',
'1206(3216)',
'RESISTOR',
866.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-8870ELF',
'1206(3216)',
'RESISTOR',
887.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-9090ELF',
'1206(3216)',
'RESISTOR',
909.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-9100ELF',
'1206(3216)',
'RESISTOR',
910.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-9310ELF',
'1206(3216)',
'RESISTOR',
931.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-9530ELF',
'1206(3216)',
'RESISTOR',
953.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-9760ELF',
'1206(3216)',
'RESISTOR',
976.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1001ELF',
'1206(3216)',
'RESISTOR',
1000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1021ELF',
'1206(3216)',
'RESISTOR',
1020.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1051ELF',
'1206(3216)',
'RESISTOR',
1050.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1071ELF',
'1206(3216)',
'RESISTOR',
1070.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1101ELF',
'1206(3216)',
'RESISTOR',
1100.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1131ELF',
'1206(3216)',
'RESISTOR',
1130.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1151ELF',
'1206(3216)',
'RESISTOR',
1150.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1181ELF',
'1206(3216)',
'RESISTOR',
1180.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1201ELF',
'1206(3216)',
'RESISTOR',
1200.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1211ELF',
'1206(3216)',
'RESISTOR',
1210.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1241ELF',
'1206(3216)',
'RESISTOR',
1240.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1271ELF',
'1206(3216)',
'RESISTOR',
1270.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1301ELF',
'1206(3216)',
'RESISTOR',
1300.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1331ELF',
'1206(3216)',
'RESISTOR',
1330.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1371ELF',
'1206(3216)',
'RESISTOR',
1370.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1401ELF',
'1206(3216)',
'RESISTOR',
1400.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1431ELF',
'1206(3216)',
'RESISTOR',
1430.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1471ELF',
'1206(3216)',
'RESISTOR',
1470.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1501ELF',
'1206(3216)',
'RESISTOR',
1500.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1541ELF',
'1206(3216)',
'RESISTOR',
1540.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1581ELF',
'1206(3216)',
'RESISTOR',
1580.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1601ELF',
'1206(3216)',
'RESISTOR',
1600.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1621ELF',
'1206(3216)',
'RESISTOR',
1620.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1651ELF',
'1206(3216)',
'RESISTOR',
1650.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1691ELF',
'1206(3216)',
'RESISTOR',
1690.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1741ELF',
'1206(3216)',
'RESISTOR',
1740.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1781ELF',
'1206(3216)',
'RESISTOR',
1780.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1801ELF',
'1206(3216)',
'RESISTOR',
1800.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1821ELF',
'1206(3216)',
'RESISTOR',
1820.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1871ELF',
'1206(3216)',
'RESISTOR',
1870.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1911ELF',
'1206(3216)',
'RESISTOR',
1910.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1961ELF',
'1206(3216)',
'RESISTOR',
1960.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-2001ELF',
'1206(3216)',
'RESISTOR',
2000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-2051ELF',
'1206(3216)',
'RESISTOR',
2050.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-2101ELF',
'1206(3216)',
'RESISTOR',
2100.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-2151ELF',
'1206(3216)',
'RESISTOR',
2150.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-2201ELF',
'1206(3216)',
'RESISTOR',
2200.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-2211ELF',
'1206(3216)',
'RESISTOR',
2210.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-2261ELF',
'1206(3216)',
'RESISTOR',
2260.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-2321ELF',
'1206(3216)',
'RESISTOR',
2320.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-2371ELF',
'1206(3216)',
'RESISTOR',
2370.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-2401ELF',
'1206(3216)',
'RESISTOR',
2400.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-2431ELF',
'1206(3216)',
'RESISTOR',
2430.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-2491ELF',
'1206(3216)',
'RESISTOR',
2490.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-2551ELF',
'1206(3216)',
'RESISTOR',
2550.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-2611ELF',
'1206(3216)',
'RESISTOR',
2610.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-2671ELF',
'1206(3216)',
'RESISTOR',
2670.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-2701ELF',
'1206(3216)',
'RESISTOR',
2700.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-2741ELF',
'1206(3216)',
'RESISTOR',
2740.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-2801ELF',
'1206(3216)',
'RESISTOR',
2800.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-2871ELF',
'1206(3216)',
'RESISTOR',
2870.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-2941ELF',
'1206(3216)',
'RESISTOR',
2940.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-3001ELF',
'1206(3216)',
'RESISTOR',
3000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-3011ELF',
'1206(3216)',
'RESISTOR',
3010.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-3091ELF',
'1206(3216)',
'RESISTOR',
3090.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-3161ELF',
'1206(3216)',
'RESISTOR',
3160.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-3241ELF',
'1206(3216)',
'RESISTOR',
3240.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-3301ELF',
'1206(3216)',
'RESISTOR',
3300.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-3321ELF',
'1206(3216)',
'RESISTOR',
3320.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-3401ELF',
'1206(3216)',
'RESISTOR',
3400.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-3481ELF',
'1206(3216)',
'RESISTOR',
3480.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-3571ELF',
'1206(3216)',
'RESISTOR',
3570.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-3601ELF',
'1206(3216)',
'RESISTOR',
3600.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-3651ELF',
'1206(3216)',
'RESISTOR',
3560.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-3741ELF',
'1206(3216)',
'RESISTOR',
3740.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-3831ELF',
'1206(3216)',
'RESISTOR',
3830.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-3901ELF',
'1206(3216)',
'RESISTOR',
3900.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-3921ELF',
'1206(3216)',
'RESISTOR',
3920.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-4021ELF',
'1206(3216)',
'RESISTOR',
4020.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-4121ELF',
'1206(3216)',
'RESISTOR',
4120.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-4221ELF',
'1206(3216)',
'RESISTOR',
4220.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-4301ELF',
'1206(3216)',
'RESISTOR',
4300.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-4321ELF',
'1206(3216)',
'RESISTOR',
4320.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-4421ELF',
'1206(3216)',
'RESISTOR',
4420.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-4531ELF',
'1206(3216)',
'RESISTOR',
4530.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-4641ELF',
'1206(3216)',
'RESISTOR',
4640.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-4701ELF',
'1206(3216)',
'RESISTOR',
4700.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-4751ELF',
'1206(3216)',
'RESISTOR',
4750.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-4871ELF',
'1206(3216)',
'RESISTOR',
4870.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-4991ELF',
'1206(3216)',
'RESISTOR',
4990.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-5101ELF',
'1206(3216)',
'RESISTOR',
5100.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-5111ELF',
'1206(3216)',
'RESISTOR',
5110.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-5231ELF',
'1206(3216)',
'RESISTOR',
5230.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-5361ELF',
'1206(3216)',
'RESISTOR',
5360.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-5491ELF',
'1206(3216)',
'RESISTOR',
5490.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-5601ELF',
'1206(3216)',
'RESISTOR',
5600.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-5621ELF',
'1206(3216)',
'RESISTOR',
5620.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-5761ELF',
'1206(3216)',
'RESISTOR',
5760.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-5901ELF',
'1206(3216)',
'RESISTOR',
5900.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-6041ELF',
'1206(3216)',
'RESISTOR',
6040.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-6191ELF',
'1206(3216)',
'RESISTOR',
6190.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-6201ELF',
'1206(3216)',
'RESISTOR',
6200.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-6341ELF',
'1206(3216)',
'RESISTOR',
6340.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-6491ELF',
'1206(3216)',
'RESISTOR',
6490.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-6651ELF',
'1206(3216)',
'RESISTOR',
6650.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-6801ELF',
'1206(3216)',
'RESISTOR',
6800.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-6811ELF',
'1206(3216)',
'RESISTOR',
6810.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-6981ELF',
'1206(3216)',
'RESISTOR',
6980.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-7151ELF',
'1206(3216)',
'RESISTOR',
7150.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-7321ELF',
'1206(3216)',
'RESISTOR',
7320.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-7501ELF',
'1206(3216)',
'RESISTOR',
7500.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-7681ELF',
'1206(3216)',
'RESISTOR',
7680.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-7871ELF',
'1206(3216)',
'RESISTOR',
7870.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-8061ELF',
'1206(3216)',
'RESISTOR',
8060.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-8201ELF',
'1206(3216)',
'RESISTOR',
8200.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-8251ELF',
'1206(3216)',
'RESISTOR',
8250.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-8451ELF',
'1206(3216)',
'RESISTOR',
8450.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-8661ELF',
'1206(3216)',
'RESISTOR',
8660.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-8871ELF',
'1206(3216)',
'RESISTOR',
8870.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-9091ELF',
'1206(3216)',
'RESISTOR',
9090.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-9101ELF',
'1206(3216)',
'RESISTOR',
9100.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-9311ELF',
'1206(3216)',
'RESISTOR',
9310.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-9531ELF',
'1206(3216)',
'RESISTOR',
9530.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-9761ELF',
'1206(3216)',
'RESISTOR',
9760.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1002ELF',
'1206(3216)',
'RESISTOR',
10000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1022ELF',
'1206(3216)',
'RESISTOR',
10200.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1052ELF',
'1206(3216)',
'RESISTOR',
10500.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1072ELF',
'1206(3216)',
'RESISTOR',
10700.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1102ELF',
'1206(3216)',
'RESISTOR',
11000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1132ELF',
'1206(3216)',
'RESISTOR',
11300.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1152ELF',
'1206(3216)',
'RESISTOR',
11500.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1182ELF',
'1206(3216)',
'RESISTOR',
11800.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1202ELF',
'1206(3216)',
'RESISTOR',
12000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1212ELF',
'1206(3216)',
'RESISTOR',
12100.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1242ELF',
'1206(3216)',
'RESISTOR',
12400.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1272ELF',
'1206(3216)',
'RESISTOR',
12700.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1302ELF',
'1206(3216)',
'RESISTOR',
13000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1332ELF',
'1206(3216)',
'RESISTOR',
13300.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1372ELF',
'1206(3216)',
'RESISTOR',
13700.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1402ELF',
'1206(3216)',
'RESISTOR',
14000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1432ELF',
'1206(3216)',
'RESISTOR',
14300.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1472ELF',
'1206(3216)',
'RESISTOR',
14700.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1502ELF',
'1206(3216)',
'RESISTOR',
15000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1542ELF',
'1206(3216)',
'RESISTOR',
15400.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1582ELF',
'1206(3216)',
'RESISTOR',
15800.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1602ELF',
'1206(3216)',
'RESISTOR',
16000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1622ELF',
'1206(3216)',
'RESISTOR',
16200.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1652ELF',
'1206(3216)',
'RESISTOR',
16500.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1692ELF',
'1206(3216)',
'RESISTOR',
16900.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1742ELF',
'1206(3216)',
'RESISTOR',
17400.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1782ELF',
'1206(3216)',
'RESISTOR',
17800.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1802ELF',
'1206(3216)',
'RESISTOR',
18000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1822ELF',
'1206(3216)',
'RESISTOR',
18200.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1872ELF',
'1206(3216)',
'RESISTOR',
18700.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1912ELF',
'1206(3216)',
'RESISTOR',
19100.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1962ELF',
'1206(3216)',
'RESISTOR',
19600.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-2002ELF',
'1206(3216)',
'RESISTOR',
20000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-2052ELF',
'1206(3216)',
'RESISTOR',
20500.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-2102ELF',
'1206(3216)',
'RESISTOR',
21000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-2152ELF',
'1206(3216)',
'RESISTOR',
21500.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-2202ELF',
'1206(3216)',
'RESISTOR',
22000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-2212ELF',
'1206(3216)',
'RESISTOR',
22100.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-2262ELF',
'1206(3216)',
'RESISTOR',
22600.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-2322ELF',
'1206(3216)',
'RESISTOR',
23200.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-2372ELF',
'1206(3216)',
'RESISTOR',
23700.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-2402ELF',
'1206(3216)',
'RESISTOR',
24000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-2432ELF',
'1206(3216)',
'RESISTOR',
24300.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-2492ELF',
'1206(3216)',
'RESISTOR',
24900.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-2552ELF',
'1206(3216)',
'RESISTOR',
25500.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-2612ELF',
'1206(3216)',
'RESISTOR',
26100.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-2672ELF',
'1206(3216)',
'RESISTOR',
26700.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-2702ELF',
'1206(3216)',
'RESISTOR',
27000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-2742ELF',
'1206(3216)',
'RESISTOR',
27400.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-2802ELF',
'1206(3216)',
'RESISTOR',
28000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-2872ELF',
'1206(3216)',
'RESISTOR',
28700.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-2942ELF',
'1206(3216)',
'RESISTOR',
29400.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-3002ELF',
'1206(3216)',
'RESISTOR',
30000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-3012ELF',
'1206(3216)',
'RESISTOR',
30100.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-3092ELF',
'1206(3216)',
'RESISTOR',
30900.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-3162ELF',
'1206(3216)',
'RESISTOR',
31600.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-3242ELF',
'1206(3216)',
'RESISTOR',
32400.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-3302ELF',
'1206(3216)',
'RESISTOR',
33000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-3322ELF',
'1206(3216)',
'RESISTOR',
33200.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-3402ELF',
'1206(3216)',
'RESISTOR',
34000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-3482ELF',
'1206(3216)',
'RESISTOR',
34800.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-3572ELF',
'1206(3216)',
'RESISTOR',
35700.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-3602ELF',
'1206(3216)',
'RESISTOR',
36000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-3652ELF',
'1206(3216)',
'RESISTOR',
35600.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-3742ELF',
'1206(3216)',
'RESISTOR',
37400.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-3832ELF',
'1206(3216)',
'RESISTOR',
38300.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-3902ELF',
'1206(3216)',
'RESISTOR',
39000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-3922ELF',
'1206(3216)',
'RESISTOR',
39200.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-4022ELF',
'1206(3216)',
'RESISTOR',
40200.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-4122ELF',
'1206(3216)',
'RESISTOR',
41200.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-4222ELF',
'1206(3216)',
'RESISTOR',
42200.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-4302ELF',
'1206(3216)',
'RESISTOR',
43000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-4322ELF',
'1206(3216)',
'RESISTOR',
43200.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-4422ELF',
'1206(3216)',
'RESISTOR',
44200.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-4532ELF',
'1206(3216)',
'RESISTOR',
45300.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-4642ELF',
'1206(3216)',
'RESISTOR',
46400.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-4702ELF',
'1206(3216)',
'RESISTOR',
47000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-4752ELF',
'1206(3216)',
'RESISTOR',
47500.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-4872ELF',
'1206(3216)',
'RESISTOR',
48700.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-4992ELF',
'1206(3216)',
'RESISTOR',
49900.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-5102ELF',
'1206(3216)',
'RESISTOR',
51000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-5112ELF',
'1206(3216)',
'RESISTOR',
51100.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-5232ELF',
'1206(3216)',
'RESISTOR',
52300.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-5362ELF',
'1206(3216)',
'RESISTOR',
53600.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-5492ELF',
'1206(3216)',
'RESISTOR',
54900.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-5602ELF',
'1206(3216)',
'RESISTOR',
56000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-5622ELF',
'1206(3216)',
'RESISTOR',
56200.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-5762ELF',
'1206(3216)',
'RESISTOR',
57600.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-5902ELF',
'1206(3216)',
'RESISTOR',
59000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-6042ELF',
'1206(3216)',
'RESISTOR',
60400.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-6192ELF',
'1206(3216)',
'RESISTOR',
61900.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-6202ELF',
'1206(3216)',
'RESISTOR',
62000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-6342ELF',
'1206(3216)',
'RESISTOR',
63400.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-6492ELF',
'1206(3216)',
'RESISTOR',
64900.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-6652ELF',
'1206(3216)',
'RESISTOR',
66500.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-6802ELF',
'1206(3216)',
'RESISTOR',
68000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-6812ELF',
'1206(3216)',
'RESISTOR',
68100.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-6982ELF',
'1206(3216)',
'RESISTOR',
69800.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-7152ELF',
'1206(3216)',
'RESISTOR',
71500.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-7322ELF',
'1206(3216)',
'RESISTOR',
73200.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-7502ELF',
'1206(3216)',
'RESISTOR',
75000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-7682ELF',
'1206(3216)',
'RESISTOR',
76800.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-7872ELF',
'1206(3216)',
'RESISTOR',
78700.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-8062ELF',
'1206(3216)',
'RESISTOR',
80600.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-8202ELF',
'1206(3216)',
'RESISTOR',
82000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-8252ELF',
'1206(3216)',
'RESISTOR',
82500.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-8452ELF',
'1206(3216)',
'RESISTOR',
84500.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-8662ELF',
'1206(3216)',
'RESISTOR',
86600.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-8872ELF',
'1206(3216)',
'RESISTOR',
88700.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-9092ELF',
'1206(3216)',
'RESISTOR',
90900.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-9102ELF',
'1206(3216)',
'RESISTOR',
91000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-9312ELF',
'1206(3216)',
'RESISTOR',
93100.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-9532ELF',
'1206(3216)',
'RESISTOR',
95300.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-9762ELF',
'1206(3216)',
'RESISTOR',
97600.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1003ELF',
'1206(3216)',
'RESISTOR',
100000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1023ELF',
'1206(3216)',
'RESISTOR',
102000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1053ELF',
'1206(3216)',
'RESISTOR',
105000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1073ELF',
'1206(3216)',
'RESISTOR',
107000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1103ELF',
'1206(3216)',
'RESISTOR',
110000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1133ELF',
'1206(3216)',
'RESISTOR',
113000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1153ELF',
'1206(3216)',
'RESISTOR',
115000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1183ELF',
'1206(3216)',
'RESISTOR',
118000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1203ELF',
'1206(3216)',
'RESISTOR',
120000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1213ELF',
'1206(3216)',
'RESISTOR',
121000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1243ELF',
'1206(3216)',
'RESISTOR',
124000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1273ELF',
'1206(3216)',
'RESISTOR',
127000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1303ELF',
'1206(3216)',
'RESISTOR',
130000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1333ELF',
'1206(3216)',
'RESISTOR',
133000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1373ELF',
'1206(3216)',
'RESISTOR',
137000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1403ELF',
'1206(3216)',
'RESISTOR',
140000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1433ELF',
'1206(3216)',
'RESISTOR',
143000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1473ELF',
'1206(3216)',
'RESISTOR',
147000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1503ELF',
'1206(3216)',
'RESISTOR',
150000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1543ELF',
'1206(3216)',
'RESISTOR',
154000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1583ELF',
'1206(3216)',
'RESISTOR',
158000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1603ELF',
'1206(3216)',
'RESISTOR',
160000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1623ELF',
'1206(3216)',
'RESISTOR',
162000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1653ELF',
'1206(3216)',
'RESISTOR',
165000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1693ELF',
'1206(3216)',
'RESISTOR',
169000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1743ELF',
'1206(3216)',
'RESISTOR',
174000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1783ELF',
'1206(3216)',
'RESISTOR',
178000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1803ELF',
'1206(3216)',
'RESISTOR',
180000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1823ELF',
'1206(3216)',
'RESISTOR',
182000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1873ELF',
'1206(3216)',
'RESISTOR',
187000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1913ELF',
'1206(3216)',
'RESISTOR',
191000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1963ELF',
'1206(3216)',
'RESISTOR',
196000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-2003ELF',
'1206(3216)',
'RESISTOR',
200000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-2053ELF',
'1206(3216)',
'RESISTOR',
205000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-2103ELF',
'1206(3216)',
'RESISTOR',
210000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-2153ELF',
'1206(3216)',
'RESISTOR',
215000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-2203ELF',
'1206(3216)',
'RESISTOR',
220000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-2213ELF',
'1206(3216)',
'RESISTOR',
221000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-2263ELF',
'1206(3216)',
'RESISTOR',
226000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-2323ELF',
'1206(3216)',
'RESISTOR',
232000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-2373ELF',
'1206(3216)',
'RESISTOR',
237000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-2403ELF',
'1206(3216)',
'RESISTOR',
240000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-2433ELF',
'1206(3216)',
'RESISTOR',
243000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-2493ELF',
'1206(3216)',
'RESISTOR',
249000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-2553ELF',
'1206(3216)',
'RESISTOR',
255000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-2613ELF',
'1206(3216)',
'RESISTOR',
261000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-2673ELF',
'1206(3216)',
'RESISTOR',
267000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-2703ELF',
'1206(3216)',
'RESISTOR',
270000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-2743ELF',
'1206(3216)',
'RESISTOR',
274000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-2803ELF',
'1206(3216)',
'RESISTOR',
280000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-2873ELF',
'1206(3216)',
'RESISTOR',
287000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-2943ELF',
'1206(3216)',
'RESISTOR',
294000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-3003ELF',
'1206(3216)',
'RESISTOR',
300000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-3013ELF',
'1206(3216)',
'RESISTOR',
301000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-3093ELF',
'1206(3216)',
'RESISTOR',
309000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-3163ELF',
'1206(3216)',
'RESISTOR',
316000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-3243ELF',
'1206(3216)',
'RESISTOR',
324000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-3303ELF',
'1206(3216)',
'RESISTOR',
330000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-3323ELF',
'1206(3216)',
'RESISTOR',
332000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-3403ELF',
'1206(3216)',
'RESISTOR',
340000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-3483ELF',
'1206(3216)',
'RESISTOR',
348000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-3573ELF',
'1206(3216)',
'RESISTOR',
357000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-3603ELF',
'1206(3216)',
'RESISTOR',
360000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-3653ELF',
'1206(3216)',
'RESISTOR',
356000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-3743ELF',
'1206(3216)',
'RESISTOR',
374000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-3833ELF',
'1206(3216)',
'RESISTOR',
383000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-3903ELF',
'1206(3216)',
'RESISTOR',
390000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-3923ELF',
'1206(3216)',
'RESISTOR',
392000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-4023ELF',
'1206(3216)',
'RESISTOR',
402000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-4123ELF',
'1206(3216)',
'RESISTOR',
412000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-4223ELF',
'1206(3216)',
'RESISTOR',
422000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-4303ELF',
'1206(3216)',
'RESISTOR',
430000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-4323ELF',
'1206(3216)',
'RESISTOR',
432000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-4423ELF',
'1206(3216)',
'RESISTOR',
442000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-4533ELF',
'1206(3216)',
'RESISTOR',
453000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-4643ELF',
'1206(3216)',
'RESISTOR',
464000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-4703ELF',
'1206(3216)',
'RESISTOR',
470000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-4753ELF',
'1206(3216)',
'RESISTOR',
475000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-4873ELF',
'1206(3216)',
'RESISTOR',
487000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-4993ELF',
'1206(3216)',
'RESISTOR',
499000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-5103ELF',
'1206(3216)',
'RESISTOR',
510000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-5113ELF',
'1206(3216)',
'RESISTOR',
511000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-5233ELF',
'1206(3216)',
'RESISTOR',
523000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-5363ELF',
'1206(3216)',
'RESISTOR',
536000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-5493ELF',
'1206(3216)',
'RESISTOR',
549000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-5603ELF',
'1206(3216)',
'RESISTOR',
560000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-5623ELF',
'1206(3216)',
'RESISTOR',
562000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-5763ELF',
'1206(3216)',
'RESISTOR',
576000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-5903ELF',
'1206(3216)',
'RESISTOR',
590000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-6043ELF',
'1206(3216)',
'RESISTOR',
604000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-6193ELF',
'1206(3216)',
'RESISTOR',
619000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-6203ELF',
'1206(3216)',
'RESISTOR',
620000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-6343ELF',
'1206(3216)',
'RESISTOR',
634000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-6493ELF',
'1206(3216)',
'RESISTOR',
649000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-6653ELF',
'1206(3216)',
'RESISTOR',
665000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-6803ELF',
'1206(3216)',
'RESISTOR',
680000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-6813ELF',
'1206(3216)',
'RESISTOR',
681000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-6983ELF',
'1206(3216)',
'RESISTOR',
698000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-7153ELF',
'1206(3216)',
'RESISTOR',
715000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-7323ELF',
'1206(3216)',
'RESISTOR',
732000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-7503ELF',
'1206(3216)',
'RESISTOR',
750000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-7683ELF',
'1206(3216)',
'RESISTOR',
768000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-7873ELF',
'1206(3216)',
'RESISTOR',
787000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-8063ELF',
'1206(3216)',
'RESISTOR',
806000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-8203ELF',
'1206(3216)',
'RESISTOR',
820000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-8253ELF',
'1206(3216)',
'RESISTOR',
825000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-8453ELF',
'1206(3216)',
'RESISTOR',
845000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-8663ELF',
'1206(3216)',
'RESISTOR',
866000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-8873ELF',
'1206(3216)',
'RESISTOR',
887000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-9093ELF',
'1206(3216)',
'RESISTOR',
909000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-9103ELF',
'1206(3216)',
'RESISTOR',
910000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-9313ELF',
'1206(3216)',
'RESISTOR',
931000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-9533ELF',
'1206(3216)',
'RESISTOR',
953000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-9763ELF',
'1206(3216)',
'RESISTOR',
976000.000000,
0.010000
);
CALL AddResistor(
'Bourns',
'CR1206-FX-1004ELF',
'1206(3216)',
'RESISTOR',
1000000.000000,
0.010000
);
CALL AddZenerDiode(
'Bourns',
'CD0603-Z2',
'0603(1608)',
'ZENER_DIODE',
2.000000
);
CALL AddZenerDiode(
'Bourns',
'CD0603-Z2V2',
'0603(1608)',
'ZENER_DIODE',
2.200000
);
CALL AddZenerDiode(
'Bourns',
'CD0603-Z2V4',
'0603(1608)',
'ZENER_DIODE',
2.400000
);
CALL AddZenerDiode(
'Bourns',
'CD0603-Z2V7',
'0603(1608)',
'ZENER_DIODE',
2.700000
);
CALL AddZenerDiode(
'Bourns',
'CD0603-Z3',
'0603(1608)',
'ZENER_DIODE',
3.000000
);
CALL AddZenerDiode(
'Bourns',
'CD0603-Z3V3',
'0603(1608)',
'ZENER_DIODE',
3.300000
);
CALL AddZenerDiode(
'Bourns',
'CD0603-Z3V6',
'0603(1608)',
'ZENER_DIODE',
3.600000
);
CALL AddZenerDiode(
'Bourns',
'CD0603-Z3V9',
'0603(1608)',
'ZENER_DIODE',
3.900000
);
CALL AddZenerDiode(
'Bourns',
'CD0603-Z4V3',
'0603(1608)',
'ZENER_DIODE',
4.300000
);
CALL AddZenerDiode(
'Bourns',
'CD0603-Z4V7',
'0603(1608)',
'ZENER_DIODE',
4.700000
);
CALL AddZenerDiode(
'Bourns',
'CD0603-Z5V1',
'0603(1608)',
'ZENER_DIODE',
5.100000
);
CALL AddZenerDiode(
'Bourns',
'CD0603-Z5V6',
'0603(1608)',
'ZENER_DIODE',
5.600000
);
CALL AddZenerDiode(
'Bourns',
'CD0603-Z6V2',
'0603(1608)',
'ZENER_DIODE',
6.200000
);
CALL AddZenerDiode(
'Bourns',
'CD0603-Z6V8',
'0603(1608)',
'ZENER_DIODE',
6.800000
);
CALL AddZenerDiode(
'Bourns',
'CD0603-Z7V5',
'0603(1608)',
'ZENER_DIODE',
7.500000
);
CALL AddZenerDiode(
'Bourns',
'CD0603-Z8V2',
'0603(1608)',
'ZENER_DIODE',
8.200000
);
CALL AddZenerDiode(
'Bourns',
'CD0603-Z9V1',
'0603(1608)',
'ZENER_DIODE',
9.100000
);
CALL AddZenerDiode(
'Bourns',
'CD0603-Z10',
'0603(1608)',
'ZENER_DIODE',
10.000000
);
CALL AddZenerDiode(
'Bourns',
'CD0603-Z11',
'0603(1608)',
'ZENER_DIODE',
11.000000
);
CALL AddZenerDiode(
'Bourns',
'CD0603-Z12',
'0603(1608)',
'ZENER_DIODE',
12.000000
);
CALL AddZenerDiode(
'Bourns',
'CD0603-Z13',
'0603(1608)',
'ZENER_DIODE',
13.000000
);
CALL AddZenerDiode(
'Bourns',
'CD0603-Z15',
'0603(1608)',
'ZENER_DIODE',
15.000000
);
CALL AddZenerDiode(
'Bourns',
'CD0603-Z16',
'0603(1608)',
'ZENER_DIODE',
16.000000
);
CALL AddZenerDiode(
'Bourns',
'CD0603-Z18',
'0603(1608)',
'ZENER_DIODE',
18.000000
);
CALL AddZenerDiode(
'Bourns',
'CD0603-Z20',
'0603(1608)',
'ZENER_DIODE',
20.000000
);
CALL AddZenerDiode(
'Bourns',
'CD0603-Z22',
'0603(1608)',
'ZENER_DIODE',
22.000000
);
CALL AddZenerDiode(
'Bourns',
'CD0603-Z24',
'0603(1608)',
'ZENER_DIODE',
24.000000
);
CALL AddZenerDiode(
'Bourns',
'CD0603-Z27',
'0603(1608)',
'ZENER_DIODE',
27.000000
);
CALL AddZenerDiode(
'Bourns',
'CD0603-Z30',
'0603(1608)',
'ZENER_DIODE',
30.000000
);
CALL AddZenerDiode(
'Bourns',
'CD0603-Z33',
'0603(1608)',
'ZENER_DIODE',
33.000000
);
CALL AddZenerDiode(
'Bourns',
'CD0603-Z36',
'0603(1608)',
'ZENER_DIODE',
36.000000
);
CALL AddZenerDiode(
'Bourns',
'CD0603-Z39',
'0603(1608)',
'ZENER_DIODE',
39.000000
);
CALL AddZenerDiode(
'Bourns',
'CD1005-Z2',
'1005(2512)',
'ZENER_DIODE',
2.000000
);
CALL AddZenerDiode(
'Bourns',
'CD1005-Z2V2',
'1005(2512)',
'ZENER_DIODE',
2.200000
);
CALL AddZenerDiode(
'Bourns',
'CD1005-Z2V4',
'1005(2512)',
'ZENER_DIODE',
2.400000
);
CALL AddZenerDiode(
'Bourns',
'CD1005-Z2V7',
'1005(2512)',
'ZENER_DIODE',
2.700000
);
CALL AddZenerDiode(
'Bourns',
'CD1005-Z3',
'1005(2512)',
'ZENER_DIODE',
3.000000
);
CALL AddZenerDiode(
'Bourns',
'CD1005-Z3V3',
'1005(2512)',
'ZENER_DIODE',
3.300000
);
CALL AddZenerDiode(
'Bourns',
'CD1005-Z3V6',
'1005(2512)',
'ZENER_DIODE',
3.600000
);
CALL AddZenerDiode(
'Bourns',
'CD1005-Z3V9',
'1005(2512)',
'ZENER_DIODE',
3.900000
);
CALL AddZenerDiode(
'Bourns',
'CD1005-Z4V3',
'1005(2512)',
'ZENER_DIODE',
4.300000
);
CALL AddZenerDiode(
'Bourns',
'CD1005-Z4V7',
'1005(2512)',
'ZENER_DIODE',
4.700000
);
CALL AddZenerDiode(
'Bourns',
'CD1005-Z5V1',
'1005(2512)',
'ZENER_DIODE',
5.100000
);
CALL AddZenerDiode(
'Bourns',
'CD1005-Z5V6',
'1005(2512)',
'ZENER_DIODE',
5.600000
);
CALL AddZenerDiode(
'Bourns',
'CD1005-Z6V2',
'1005(2512)',
'ZENER_DIODE',
6.200000
);
CALL AddZenerDiode(
'Bourns',
'CD1005-Z6V8',
'1005(2512)',
'ZENER_DIODE',
6.800000
);
CALL AddZenerDiode(
'Bourns',
'CD1005-Z7V5',
'1005(2512)',
'ZENER_DIODE',
7.500000
);
CALL AddZenerDiode(
'Bourns',
'CD1005-Z8V2',
'1005(2512)',
'ZENER_DIODE',
8.200000
);
CALL AddZenerDiode(
'Bourns',
'CD1005-Z9V1',
'1005(2512)',
'ZENER_DIODE',
9.100000
);
CALL AddZenerDiode(
'Bourns',
'CD1005-Z10',
'1005(2512)',
'ZENER_DIODE',
10.000000
);
CALL AddZenerDiode(
'Bourns',
'CD1005-Z11',
'1005(2512)',
'ZENER_DIODE',
11.000000
);
CALL AddZenerDiode(
'Bourns',
'CD1005-Z12',
'1005(2512)',
'ZENER_DIODE',
12.000000
);
CALL AddZenerDiode(
'Bourns',
'CD1005-Z13',
'1005(2512)',
'ZENER_DIODE',
13.000000
);
CALL AddZenerDiode(
'Bourns',
'CD1005-Z15',
'1005(2512)',
'ZENER_DIODE',
15.000000
);
CALL AddZenerDiode(
'Bourns',
'CD1005-Z16',
'1005(2512)',
'ZENER_DIODE',
16.000000
);
CALL AddZenerDiode(
'Bourns',
'CD1005-Z18',
'1005(2512)',
'ZENER_DIODE',
18.000000
);
CALL AddZenerDiode(
'Bourns',
'CD1005-Z20',
'1005(2512)',
'ZENER_DIODE',
20.000000
);
CALL AddZenerDiode(
'Bourns',
'CD1005-Z22',
'1005(2512)',
'ZENER_DIODE',
22.000000
);
CALL AddZenerDiode(
'Bourns',
'CD1005-Z24',
'1005(2512)',
'ZENER_DIODE',
24.000000
);
CALL AddZenerDiode(
'Bourns',
'CD1005-Z27',
'1005(2512)',
'ZENER_DIODE',
27.000000
);
CALL AddZenerDiode(
'Bourns',
'CD1005-Z30',
'1005(2512)',
'ZENER_DIODE',
30.000000
);
CALL AddZenerDiode(
'Bourns',
'CD1005-Z33',
'1005(2512)',
'ZENER_DIODE',
33.000000
);
CALL AddZenerDiode(
'Bourns',
'CD1005-Z36',
'1005(2512)',
'ZENER_DIODE',
36.000000
);
CALL AddZenerDiode(
'Bourns',
'CD1005-Z39',
'1005(2512)',
'ZENER_DIODE',
39.000000
);
|
-- This file can be executed on any reasonably recent version of MySQL or MariaDB.
-- Some of the routines may be overwritten when executing more specific files.
CREATE DATABASE IF NOT EXISTS _;
USE _;
/*
Generic Routines
================
*/
DELIMITER ||
DROP FUNCTION IF EXISTS quote_name;
CREATE FUNCTION quote_name(p_name VARCHAR(64))
RETURNS TEXT
DETERMINISTIC
CONTAINS SQL
COMMENT 'Return specified name quoted with backticks and escaped'
BEGIN
RETURN CONCAT('`', REPLACE(p_name, '`', '``'), '`');
END ||
DROP FUNCTION IF EXISTS quote_name2;
CREATE FUNCTION quote_name2(p_name1 VARCHAR(64), p_name2 VARCHAR(64))
RETURNS TEXT
DETERMINISTIC
CONTAINS SQL
COMMENT 'Return specified FQN quoted with backticks and escaped'
BEGIN
RETURN CONCAT(
'`', REPLACE(p_name1, '`', '``'), '`',
'.',
'`', REPLACE(p_name2, '`', '``'), '`'
);
END ||
DROP FUNCTION IF EXISTS quote_name3;
CREATE FUNCTION quote_name3(p_name1 VARCHAR(64), p_name2 VARCHAR(64), p_name3 VARCHAR(64))
RETURNS TEXT
DETERMINISTIC
CONTAINS SQL
COMMENT 'Return specified FQN quoted with backticks and escaped'
BEGIN
RETURN CONCAT(
'`', REPLACE(p_name1, '`', '``'), '`',
'.',
'`', REPLACE(p_name2, '`', '``'), '`'
'.',
'`', REPLACE(p_name3, '`', '``'), '`'
);
END ||
DROP PROCEDURE IF EXISTS run_sql;
CREATE PROCEDURE run_sql(IN in_sql TEXT)
MODIFIES SQL DATA
COMMENT 'Run specified SQL query. Cannot be called recursively'
BEGIN
SET @_run_sql_sql = in_sql;
PREPARE _stmt_run_sql_sql FROM @_run_sql_sql;
EXECUTE _stmt_run_sql_sql;
DEALLOCATE PREPARE _stmt_run_sql_sql;
SET @_run_sql_sql = NULL;
END ||
DELIMITER ;
/*
Current Transaction
===================
*/
DELIMITER ||
DROP FUNCTION IF EXISTS is_trx_in_progress;
CREATE FUNCTION is_trx_in_progress()
RETURNS BOOL
NOT DETERMINISTIC
READS SQL DATA
COMMENT 'Return wether a transaction is in progress'
BEGIN
RETURN EXISTS (
SELECT TRX_ID
FROM information_schema.INNODB_TRX
WHERE TRX_MYSQL_THREAD_ID = CONNECTION_ID()
);
END ||
DROP FUNCTION IF EXISTS get_current_trx_id;
CREATE FUNCTION get_current_trx_id()
RETURNS BIGINT UNSIGNED
NOT DETERMINISTIC
READS SQL DATA
COMMENT 'Return the id of current transaction'
BEGIN
RETURN (
SELECT TRX_ID
FROM information_schema.INNODB_TRX
WHERE TRX_MYSQL_THREAD_ID = CONNECTION_ID()
);
END ||
DROP TABLE IF EXISTS trx_history;
CREATE TABLE trx_history (
trx_id BIGINT UNSIGNED NOT NULL,
trx_timestamp TIMESTAMP(6) NOT NULL,
event VARCHAR(50) NOT NULL,
PRIMARY KEY (trx_id, trx_timestamp)
)
ENGINE InnoDB,
COMMENT 'History of transaction ids and time'
||
DROP PROCEDURE IF EXISTS record_current_trx_id;
CREATE PROCEDURE record_current_trx_id(
IN in_event VARCHAR(50),
OUT out_trx_id BIGINT UNSIGNED
)
MODIFIES SQL DATA
COMMENT 'Write the id of current transaction into _.trx_history'
BEGIN
DECLARE v_trx_id BIGINT UNSIGNED
DEFAULT _.get_current_trx_id();
INSERT INTO trx_history
(trx_id, trx_timestamp, event)
VALUES
(v_trx_id, NOW(6), in_event);
SET out_trx_id := v_trx_id;
END ||
DELIMITER ;
|
alter user KCDEV30A Account unlock; |
--drop table tmp_product purge;
--drop table tmp_sales_territory purge;
--drop table tmp_trade_channel purge;
--drop table tmp_Detail_Node purge;
--drop table tmp_Agg_Node purge;
--drop table tmp_cdt purge;
--drop table tmp_AggNodeRule purge;
--session level
create global temporary table tmp_product(ProductID number) on commit preserve rows;
create global temporary table tmp_sales_territory(territoryid number) on commit preserve rows;
create global temporary table tmp_trade_channel(channelid number) on commit preserve rows;
create global temporary table tmp_Detail_Node(DetailNodeID number) on commit preserve rows;
create global temporary table tmp_Agg_Node(AggNodeID number) on commit preserve rows;
create global temporary table tmp_cdt(tabid number,attrordno number,ope number,val_idx number,addr number) on commit preserve rows;
--table :when a detail node meet all of the rules of an aggregation .record it in this table
create global temporary table tmp_AggNodeRule(AttributeType number,AttributeNo number,AttributeValID number) on commit preserve rows;
comment on column tmp_AggNodeRule.ATTRIBUTENO is 'the index of the attributes from 0 to 18';
|
DROP TABLE PESSOA
DROP TABLE ITEM
|
INSERT INTO acl_sid (id, # primary key
principal, # is principal(like user) or authority(like role)
sid # principal or authority name
)
VALUES (1, 1, 'manager'),
(2, 1, 'hr'),
(3, 0, 'ROLE_EDITOR');
INSERT INTO acl_class (id,
class # acl domain object's class
)
VALUES (1, 'github.wzt3309.domain.NoticeMessage');
INSERT INTO acl_object_identity (id, # primary key
object_id_class, # reference to acl_class(id)
object_id_identity, # domain object's id reference to domain object table primary key(system_message(id))
parent_object, # parent object's id reference acl_object_identity(id)
owner_sid, # owner's sid reference to acl_sid(id)
entries_inheriting # can inherit authorities from parent object or not
)
VALUES (1, 1, 1, NULl, 3, 0),
(2, 1, 2, NULL, 3, 0),
(3, 1, 3, NULL, 3, 0);
# used to store specific permission information
INSERT INTO acl_entry (id, # primary key
acl_object_identity, # reference to acl_object_identity
ace_order, # ace order for the order of permission check
sid, # permission of whom for the object reference acl_sid
mask, # mask corresponding to permission e.g. r(0001) w(0010) rw(0011)
granting, # whether granting the permission represented by the mask
audit_success, # about audit
audit_failure)
VALUES (1, 1, 1, 1, 1, 1, 1, 1),
(2, 1, 2, 1, 2, 1, 1, 1),
(3, 1, 3, 3, 1, 1, 1, 1),
(4, 2, 1, 2, 1, 1, 1, 1),
(5, 2, 2, 3, 1, 1, 1, 1),
(6, 3, 1, 3, 1, 1, 1, 1),
(7, 3, 2, 3, 2, 1, 1, 1);
INSERT INTO system_message(id, content)
VALUES (1, 'First Level Message'),
(2, 'Second Level Message'),
(3, 'Third Level Message'); |
/*Section 13. MySQL data types
MySQL data types – show you various data types in MySQL so that you can apply them effectively in designing database tables.
INT – show you how to use integer data type.
DECIMAL – show you how to use DECIMAL data type to store exact values in decimal format.
BIT – introduce you BIT data type and how to store bit values in MySQL.
BOOLEAN – explain to you how MySQL handles Boolean values by using TINYINT(1) internally.
CHAR – guide to CHAR data type for storing the fixed-length string.
VARCHAR – give you the essential guide to VARCHAR data type.
TEXT – show you how to store text data using TEXT data type.
DATE – introduce you to the DATE data type and show you some date functions to handle the date data effectively.
TIME – walk you through the features of TIME data type and show you how to use some useful temporal functions to handle time data.
DATETIME – introduce you to the DATETIME data type and some useful functions to manipulate DATETIME values.
TIMESTAMP – introduce you to TIMESTAMP and its features called automatic initialization and automatic update that allows you to define auto-initialized and auto-updated columns for a table.
JSON – show you how to use JSON data type to store JSON documents.
ENUM – learn how to use ENUM data type correctly to store enumeration values. */
#YYYY-MM-DD HH:MM:SS
SELECT NOW();
SELECT DATE(NOW());
SELECT CURDATE();
#ENUM Datatype
#MySQL constraints
#NO NULL - column_name data_type NOT NULL;
#PRIMARY Key - user_id INT AUTO_INCREMENT PRIMARY KEY,
/* FOREIGN KEY
CONSTRAINT constraint_name
FOREIGN KEY foreign_key_name (columns)
REFERENCES parent_table(columns)
ON DELETE action
ON UPDATE action
*/
#UNIQUE constraints
|
insert into @key_columns(col) values ({Column}); |
.headers on
.nullvalue '-null-'
.mode csv
-- -- 01
SELECT name FROM Site;
|
-- phpMyAdmin SQL Dump
-- version 5.0.2
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: Mar 31, 2021 at 03:52 PM
-- Server version: 10.4.13-MariaDB
-- PHP Version: 7.4.8
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
START TRANSACTION;
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Database: `twivuze`
--
-- --------------------------------------------------------
--
-- Table structure for table `timeslots`
--
CREATE TABLE `timeslots` (
`id` int(10) UNSIGNED NOT NULL,
`time` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`calender_id` bigint(20) NOT NULL,
`slot` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL,
`created_at` timestamp NULL DEFAULT NULL,
`updated_at` timestamp NULL DEFAULT NULL,
`taken` tinyint(1) NOT NULL DEFAULT 0,
`taken_user_id` bigint(20) DEFAULT NULL,
`taken_by_type` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'Consult-Online'
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci;
--
-- Dumping data for table `timeslots`
--
INSERT INTO `timeslots` (`id`, `time`, `calender_id`, `slot`, `created_at`, `updated_at`, `taken`, `taken_user_id`, `taken_by_type`) VALUES
(143, '05:15 AM', 24, 'Morning', '2020-11-14 19:19:25', '2021-03-04 20:40:58', 1, 2, 'Consult-Online'),
(144, '13:15 PM', 24, 'Afternoon', '2020-11-14 19:19:25', '2020-11-14 19:19:25', 0, NULL, 'Consult-Online'),
(164, '05:15 AM', 29, 'Morning', '2020-11-15 09:43:34', '2020-11-15 09:43:34', 0, NULL, 'Consult-Online'),
(165, '13:35 PM', 29, 'Afternoon', '2020-11-15 09:43:34', '2020-11-15 09:43:34', 0, NULL, 'Consult-Online'),
(166, '05:35 AM', 30, 'Morning', '2020-11-15 09:43:46', '2020-11-15 09:43:46', 0, NULL, 'Consult-Online'),
(167, '13:15 PM', 30, 'Afternoon', '2020-11-15 09:43:46', '2020-11-15 09:43:46', 0, NULL, 'Consult-Online'),
(168, '06:35 AM', 31, 'Morning', '2020-11-15 13:40:55', '2020-11-15 13:40:55', 0, NULL, 'Consult-Online'),
(169, '16:55 PM', 31, 'Afternoon', '2020-11-15 13:40:55', '2020-11-15 13:40:55', 0, NULL, 'Consult-Online'),
(170, '17:15 PM', 31, 'Afternoon', '2020-11-15 13:40:55', '2020-11-15 13:40:55', 0, NULL, 'Consult-Online'),
(171, '17:35 PM', 31, 'Afternoon', '2020-11-15 13:40:55', '2020-11-15 13:40:55', 0, NULL, 'Consult-Online'),
(172, '17:55 PM', 31, 'Afternoon', '2020-11-15 13:40:55', '2020-11-15 13:40:55', 0, NULL, 'Consult-Online'),
(173, '18:15 PM', 31, 'Afternoon', '2020-11-15 13:40:55', '2020-11-15 13:40:55', 0, NULL, 'Consult-Online'),
(174, '18:35 PM', 31, 'Afternoon', '2020-11-15 13:40:55', '2020-11-15 13:40:55', 0, NULL, 'Consult-Online'),
(175, '18:55 PM', 31, 'Afternoon', '2020-11-15 13:40:55', '2020-11-15 13:40:55', 0, NULL, 'Consult-Online'),
(176, '08:15 AM', 32, 'Morning', '2020-11-15 13:41:47', '2021-03-04 18:59:45', 1, 2, 'Consult-Online'),
(177, '08:35 AM', 32, 'Morning', '2020-11-15 13:41:47', '2020-11-15 13:47:54', 1, 49, 'Consult-In-Person'),
(178, '08:55 AM', 32, 'Morning', '2020-11-15 13:41:47', '2021-03-04 19:07:17', 1, 2, 'Consult-In-Person'),
(179, '09:15 AM', 32, 'Morning', '2020-11-15 13:41:47', '2020-11-15 13:41:47', 0, NULL, 'Consult-Online'),
(180, '09:35 AM', 32, 'Morning', '2020-11-15 13:41:47', '2020-11-15 13:41:47', 0, NULL, 'Consult-Online'),
(181, '09:55 AM', 32, 'Morning', '2020-11-15 13:41:47', '2020-11-15 13:41:47', 0, NULL, 'Consult-Online'),
(182, '10:15 AM', 32, 'Morning', '2020-11-15 13:41:47', '2020-11-15 13:41:47', 0, NULL, 'Consult-Online'),
(183, '10:35 AM', 32, 'Morning', '2020-11-15 13:41:47', '2020-11-15 13:41:47', 0, NULL, 'Consult-Online'),
(184, '10:55 AM', 32, 'Morning', '2020-11-15 13:41:47', '2020-11-15 13:41:47', 0, NULL, 'Consult-Online'),
(185, '11:15 AM', 32, 'Morning', '2020-11-15 13:41:47', '2020-11-15 13:41:47', 0, NULL, 'Consult-Online'),
(186, '11:35 AM', 32, 'Morning', '2020-11-15 13:41:47', '2020-11-15 13:41:47', 0, NULL, 'Consult-Online'),
(187, '11:55 AM', 32, 'Morning', '2020-11-15 13:41:47', '2020-11-15 13:41:47', 0, NULL, 'Consult-Online'),
(188, '12:15 AM', 32, 'Morning', '2020-11-15 13:41:47', '2020-11-15 13:41:47', 0, NULL, 'Consult-Online'),
(189, '12:35 AM', 32, 'Morning', '2020-11-15 13:41:47', '2020-11-15 13:41:47', 0, NULL, 'Consult-Online'),
(190, '12:55 AM', 32, 'Morning', '2020-11-15 13:41:47', '2020-11-15 13:41:47', 0, NULL, 'Consult-Online'),
(191, '13:15 PM', 32, 'Afternoon', '2020-11-15 13:41:47', '2020-11-15 13:41:47', 0, NULL, 'Consult-Online'),
(192, '08:15 AM', 33, 'Morning', '2020-11-15 13:43:19', '2020-11-15 13:43:19', 0, NULL, 'Consult-Online'),
(193, '08:35 AM', 33, 'Morning', '2020-11-15 13:43:19', '2020-11-15 13:43:19', 0, NULL, 'Consult-Online'),
(194, '08:55 AM', 33, 'Morning', '2020-11-15 13:43:19', '2020-11-15 13:43:19', 0, NULL, 'Consult-Online'),
(195, '09:15 AM', 33, 'Morning', '2020-11-15 13:43:19', '2020-11-15 13:43:19', 0, NULL, 'Consult-Online'),
(196, '09:35 AM', 33, 'Morning', '2020-11-15 13:43:19', '2020-11-15 13:43:19', 0, NULL, 'Consult-Online'),
(197, '09:55 AM', 33, 'Morning', '2020-11-15 13:43:19', '2020-11-15 13:43:19', 0, NULL, 'Consult-Online'),
(198, '10:15 AM', 33, 'Morning', '2020-11-15 13:43:19', '2020-11-15 13:43:19', 0, NULL, 'Consult-Online'),
(199, '10:35 AM', 33, 'Morning', '2020-11-15 13:43:19', '2020-11-15 13:43:19', 0, NULL, 'Consult-Online'),
(200, '10:55 AM', 33, 'Morning', '2020-11-15 13:43:19', '2020-11-15 13:43:19', 0, NULL, 'Consult-Online'),
(201, '13:15 PM', 33, 'Afternoon', '2020-11-15 13:43:19', '2020-11-15 13:43:19', 0, NULL, 'Consult-Online'),
(202, '07:15 AM', 34, 'Morning', '2020-12-03 10:37:56', '2020-12-03 10:37:56', 0, NULL, 'Consult-Online'),
(203, '13:15 PM', 34, 'Afternoon', '2020-12-03 10:37:56', '2020-12-03 10:37:56', 0, NULL, 'Consult-Online'),
(204, '08:15 AM', 35, 'Morning', '2020-12-07 23:02:45', '2020-12-07 23:02:45', 0, NULL, 'Consult-Online'),
(205, '08:35 AM', 35, 'Morning', '2020-12-07 23:02:45', '2020-12-07 23:02:45', 0, NULL, 'Consult-Online'),
(206, '08:55 AM', 35, 'Morning', '2020-12-07 23:02:45', '2020-12-07 23:02:45', 0, NULL, 'Consult-Online'),
(207, '09:15 AM', 35, 'Morning', '2020-12-07 23:02:45', '2020-12-07 23:02:45', 0, NULL, 'Consult-Online'),
(208, '09:35 AM', 35, 'Morning', '2020-12-07 23:02:45', '2020-12-07 23:02:45', 0, NULL, 'Consult-Online'),
(209, '09:55 AM', 35, 'Morning', '2020-12-07 23:02:45', '2020-12-07 23:02:45', 0, NULL, 'Consult-Online'),
(210, '10:15 AM', 35, 'Morning', '2020-12-07 23:02:45', '2020-12-07 23:02:45', 0, NULL, 'Consult-Online'),
(211, '10:35 AM', 35, 'Morning', '2020-12-07 23:02:45', '2020-12-07 23:02:45', 0, NULL, 'Consult-Online'),
(212, '10:55 AM', 35, 'Morning', '2020-12-07 23:02:45', '2020-12-07 23:02:45', 0, NULL, 'Consult-Online'),
(213, '11:15 AM', 35, 'Morning', '2020-12-07 23:02:45', '2020-12-07 23:02:45', 0, NULL, 'Consult-Online'),
(214, '11:35 AM', 35, 'Morning', '2020-12-07 23:02:45', '2020-12-07 23:02:45', 0, NULL, 'Consult-Online'),
(215, '11:55 AM', 35, 'Morning', '2020-12-07 23:02:45', '2020-12-07 23:02:45', 0, NULL, 'Consult-Online'),
(216, '12:15 AM', 35, 'Morning', '2020-12-07 23:02:45', '2020-12-07 23:02:45', 0, NULL, 'Consult-Online'),
(217, '12:35 AM', 35, 'Morning', '2020-12-07 23:02:45', '2020-12-07 23:02:45', 0, NULL, 'Consult-Online'),
(218, '12:55 AM', 35, 'Morning', '2020-12-07 23:02:45', '2020-12-07 23:02:45', 0, NULL, 'Consult-Online'),
(219, '13:15 PM', 35, 'Afternoon', '2020-12-07 23:02:45', '2020-12-07 23:02:45', 0, NULL, 'Consult-Online'),
(220, '13:35 PM', 35, 'Afternoon', '2020-12-07 23:02:45', '2020-12-07 23:02:45', 0, NULL, 'Consult-Online'),
(221, '13:55 PM', 35, 'Afternoon', '2020-12-07 23:02:45', '2020-12-07 23:02:45', 0, NULL, 'Consult-Online'),
(222, '14:15 PM', 35, 'Afternoon', '2020-12-07 23:02:45', '2020-12-07 23:02:45', 0, NULL, 'Consult-Online'),
(223, '14:35 PM', 35, 'Afternoon', '2020-12-07 23:02:45', '2020-12-07 23:02:45', 0, NULL, 'Consult-Online'),
(224, '14:55 PM', 35, 'Afternoon', '2020-12-07 23:02:45', '2020-12-07 23:02:45', 0, NULL, 'Consult-Online'),
(225, '15:15 PM', 35, 'Afternoon', '2020-12-07 23:02:45', '2020-12-07 23:02:45', 0, NULL, 'Consult-Online'),
(226, '15:35 PM', 35, 'Afternoon', '2020-12-07 23:02:45', '2020-12-07 23:02:45', 0, NULL, 'Consult-Online'),
(227, '15:55 PM', 35, 'Afternoon', '2020-12-07 23:02:45', '2020-12-07 23:02:45', 0, NULL, 'Consult-Online'),
(228, '16:15 PM', 35, 'Afternoon', '2020-12-07 23:02:45', '2020-12-07 23:02:45', 0, NULL, 'Consult-Online'),
(229, '16:35 PM', 35, 'Afternoon', '2020-12-07 23:02:45', '2020-12-07 23:02:45', 0, NULL, 'Consult-Online'),
(230, '17:15 PM', 35, 'Afternoon', '2020-12-07 23:02:45', '2020-12-07 23:02:45', 0, NULL, 'Consult-Online'),
(231, '17:35 PM', 35, 'Afternoon', '2020-12-07 23:02:45', '2020-12-07 23:02:45', 0, NULL, 'Consult-Online'),
(232, '17:55 PM', 35, 'Afternoon', '2020-12-07 23:02:45', '2020-12-07 23:02:45', 0, NULL, 'Consult-Online'),
(233, '07:15 AM', 36, 'Morning', '2020-12-10 14:19:37', '2020-12-10 14:19:37', 0, NULL, 'Consult-Online'),
(234, '07:35 AM', 36, 'Morning', '2020-12-10 14:19:37', '2020-12-10 14:19:37', 0, NULL, 'Consult-Online'),
(235, '07:55 AM', 36, 'Morning', '2020-12-10 14:19:37', '2020-12-10 14:19:37', 0, NULL, 'Consult-Online'),
(236, '12:15 AM', 36, 'Morning', '2020-12-10 14:19:37', '2020-12-10 14:19:37', 0, NULL, 'Consult-Online'),
(237, '17:15 PM', 36, 'Afternoon', '2020-12-10 14:19:37', '2020-12-10 14:19:37', 0, NULL, 'Consult-Online'),
(238, '17:35 PM', 36, 'Afternoon', '2020-12-10 14:19:37', '2020-12-10 14:19:37', 0, NULL, 'Consult-Online'),
(239, '18:35 PM', 36, 'Afternoon', '2020-12-10 14:19:37', '2020-12-10 14:19:37', 0, NULL, 'Consult-Online'),
(240, '18:55 PM', 36, 'Afternoon', '2020-12-10 14:19:37', '2020-12-10 14:19:37', 0, NULL, 'Consult-Online'),
(241, '11:15 AM', 37, 'Morning', '2020-12-10 14:19:56', '2020-12-10 14:19:56', 0, NULL, 'Consult-Online'),
(242, '11:35 AM', 37, 'Morning', '2020-12-10 14:19:56', '2020-12-10 14:19:56', 0, NULL, 'Consult-Online'),
(243, '12:15 AM', 37, 'Morning', '2020-12-10 14:19:56', '2020-12-10 14:19:56', 0, NULL, 'Consult-Online'),
(244, '12:35 AM', 37, 'Morning', '2020-12-10 14:19:56', '2020-12-10 14:19:56', 0, NULL, 'Consult-Online'),
(245, '12:55 AM', 37, 'Morning', '2020-12-10 14:19:56', '2020-12-10 14:19:56', 0, NULL, 'Consult-Online'),
(246, '13:55 PM', 37, 'Afternoon', '2020-12-10 14:19:56', '2020-12-10 14:19:56', 0, NULL, 'Consult-Online'),
(247, '14:35 PM', 37, 'Afternoon', '2020-12-10 14:19:56', '2020-12-10 14:19:56', 0, NULL, 'Consult-Online'),
(248, '15:15 PM', 37, 'Afternoon', '2020-12-10 14:19:56', '2020-12-10 14:19:56', 0, NULL, 'Consult-Online'),
(249, '05:15 AM', 38, 'Morning', '2021-01-27 14:38:31', '2021-01-27 14:38:31', 0, NULL, 'Consult-Online'),
(250, '13:35 PM', 39, 'Afternoon', '2021-01-27 14:38:54', '2021-01-27 14:38:54', 0, NULL, 'Consult-Online'),
(251, '05:15 AM', 40, 'Morning', '2021-03-31 04:56:24', '2021-03-31 04:59:32', 1, 3, 'Consult-Online'),
(252, '05:55 AM', 40, 'Morning', '2021-03-31 04:56:24', '2021-03-31 05:08:39', 1, 3, 'Consult-Online'),
(253, '06:15 AM', 40, 'Morning', '2021-03-31 04:56:24', '2021-03-31 09:39:43', 1, 2, 'Consult-Online'),
(254, '06:55 AM', 40, 'Morning', '2021-03-31 04:56:25', '2021-03-31 09:37:08', 1, 2, 'Consult-Online'),
(255, '07:15 AM', 40, 'Morning', '2021-03-31 04:56:25', '2021-03-31 09:31:51', 1, 2, 'Consult-Online'),
(256, '07:35 AM', 40, 'Morning', '2021-03-31 04:56:25', '2021-03-31 05:13:07', 1, 3, 'Consult-Online'),
(257, '07:55 AM', 40, 'Morning', '2021-03-31 04:56:25', '2021-03-31 09:23:48', 1, 2, 'Consult-Online'),
(258, '13:15 PM', 40, 'Afternoon', '2021-03-31 04:56:25', '2021-03-31 09:17:29', 1, 2, 'Consult-Online'),
(259, '07:15 AM', 41, 'Morning', '2021-03-31 09:51:59', '2021-03-31 09:51:59', 0, NULL, 'Consult-Online'),
(260, '07:35 AM', 41, 'Morning', '2021-03-31 09:52:00', '2021-03-31 09:52:00', 0, NULL, 'Consult-Online'),
(261, '16:15 PM', 41, 'Afternoon', '2021-03-31 09:52:00', '2021-03-31 10:05:37', 1, 2, 'Consult-Online'),
(262, '16:35 PM', 41, 'Afternoon', '2021-03-31 09:52:00', '2021-03-31 10:10:59', 1, 2, 'Consult-Online'),
(263, '16:55 PM', 41, 'Afternoon', '2021-03-31 09:52:00', '2021-03-31 10:15:52', 1, 2, 'Consult-Online'),
(264, '17:15 PM', 41, 'Afternoon', '2021-03-31 09:52:00', '2021-03-31 12:42:49', 1, 2, 'Consult-Online'),
(265, '17:35 PM', 41, 'Afternoon', '2021-03-31 09:52:00', '2021-03-31 13:06:39', 1, 2, 'Consult-Online'),
(266, '17:55 PM', 41, 'Afternoon', '2021-03-31 09:52:00', '2021-03-31 13:15:35', 1, 2, 'Consult-Online'),
(267, '18:15 PM', 41, 'Afternoon', '2021-03-31 09:52:00', '2021-03-31 09:52:00', 0, NULL, 'Consult-Online'),
(268, '18:35 PM', 41, 'Afternoon', '2021-03-31 09:52:00', '2021-03-31 09:52:00', 0, NULL, 'Consult-Online'),
(269, '18:55 PM', 41, 'Afternoon', '2021-03-31 09:52:00', '2021-03-31 09:52:00', 0, NULL, 'Consult-Online');
--
-- Indexes for dumped tables
--
--
-- Indexes for table `timeslots`
--
ALTER TABLE `timeslots`
ADD PRIMARY KEY (`id`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `timeslots`
--
ALTER TABLE `timeslots`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=270;
COMMIT;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
INSERT INTO burgers (burger_name, devoured) VALUES ('Cheese Burger', true);
INSERT INTO burgers (burger_name, devoured) VALUES ('Avocado Burger', true);
INSERT INTO burgers (burger_name, devoured) VALUES ('Hummus Burger', false); |
metadata :name => "sslappl",
:description => "Agent for SSL components",
:author => "Cristian Roldan",
:license => "ASL v2",
:version => "1.0",
:url => "http://projects.puppetlabs.com/projects/mcollective-plugins/wiki",
:timeout => 60
action "echo", :description => "Echos back any message it receives" do
display :always
input :msg,
:prompt => "Service Name",
:description => "The service to get the status for",
:type => :string,
:validation => '^[a-zA-Z\-_\d]+$',
:optional => false,
:maxlength => 30
output :msg,
:description => "The message we received",
:display_as => "Message"
end
action "getSSLComponents", :description => "Search for crt and key" do
display :always
input :vhname,
:prompt => "virtual host name ",
:description => " return the virtual host configuracion",
:type => :string,
:validation => '^.*$',
:optional => false,
:maxlength => 60
output :key,
:description => "private key",
:display_as => "key"
output :crt,
:description => "X509v3 certificate",
:display_as => "crt"
output :exitcode,
:description => "Exit code",
:display_as => "Exit Code"
end
|
/**********************************************************
* SQL Query & Function Example1
**********************************************************/
/**
-- Employees Table Columns
-- EMPLOYEE_ID
-- FIRST_NAME
-- LAST_NAME
-- EMAIL
-- PHONE_NUMBER
-- HIRE_DATE
-- JOB_ID
-- SALARY
-- COMMISSION_PCT
-- MANAGER_ID
-- DEPARTMENT_ID
**/
--부서번호가 10번인 부서의 사람 중 사원번호, 이름, 월급을 출력하라
select employee_id, first_name, salary from employees where department_id = 10;
--사원번호가 7369인 사람 중 이름, 입사일, 부서 번호를 출력하라.
select first_name, hire_date, department_id from employees where employee_id = 7369;
--이름이 Ellen인 사람의 모든 정보를 출력하라.
select * from employees where first_name = 'Ellen';
--입사일이 08/04/21인 사원의 이름, 부서번호, 월급을 출력하라.
select first_name, department_id, salary from employees where hire_date = to_date('21-APR-08');
--직무가 SA_MAN 아닌 사람의 모든 정보를 출력하라.
select * from employees where job_id != 'SA_MAN';
--입사일이 08/04/21 이후에 입사한 사원의 정보를 출력하라.
select * from employees where hire_date > to_date('21-APR-08');
--부서번호와 20,30번을 제외한 모든 사람의 이름, 사원번호, 부서번호를 출력하라.
select first_name, employee_id, department_id from employees where department_id != 20 and department_id != 30;
--이름이 S로 시작하는 사원의 사원번호, 이름, 입사일, 부서번호를 출력하라.
select employee_id, first_name, hire_date, department_id from employees where first_name like 'S%';
--이름이 s로 시작하고 마지막 글자가 t인 사람이 정보를 출력하라.
select employee_id, first_name, hire_date, department_id from employees where first_name like 'S%t';
/**
employees 테이블에서 이름, 급여, 상여, 총액을 구하여 총액 많은 순서로 출력하라 단 상여금이 NULL인 사람은 제외
*/
select first_name, salary, (salary*commission_pct) as bonus, (salary+salary*commission_pct) as total from employees;
/**
10번 부서의 모든 사람들에게 급여의 13%를 보너스로 지불하기로 하였다. 이름, 급여, 보너스금액, 부서번호를 출력하라.
**/
select first_name, salary, (salary*0.13) bonus, department_id from employees;
/**
30번 부서의 연봉을 계산하여 이름, 부서번호, 급여, 연봉을 출력하라. 단 연말에 급여의 150%를 보너스로 지급한다.
-- 연봉 = sal*12+(sal*1.5)
**/
select first_name, department_id, salary, (salary*12+salary*1.5) annual from employees where department_id = 30;
/**
부서번호가 20인 부서의 시간당 임금을 계산하여 출력하라. 단 1달의 근무일수는 12일이고 1일 근무시간은 5시간이다.
출력양식은 이름, 급여, 시간당 임금(소수이하 1번째 자리에서 반올림)을 출력하라.
-- 시급 = sal/일수/시간 -> sal/ 12/5
-- round(m, n) m을 소수점 n자리에서 반올림
**/
select first_name, salary, round(salary/12/5) sph from employees where department_id = 20;
/**
급여가 1500부터 3000사이의 사람은 급여의 5%를 회비로 지불하기로 하였다. 이를 이름, 급여, 회비(-2자리에서 반올림)를 출력하라.
-- 회비 = sal * 0.05
-- -2자리에서 반올림 : 정수 2번째 자리에서 반올림.. 100단위로
**/
select first_name, salary, round((salary*0.05),-2) dues from employees where salary between 1500 and 3000;
/**
입사일부터 지금까지의 날짜수를 출력하라. 부서번호, 이름, 입사일, 현재일, 근무일수(소수점이하절삭), 근무년수,
근무월수(30일 기준)를 출력하라.
-- 지금 날짜 : sysdate
-- 근무 일수 : 현재날짜 - 입사일 = sysdate - hire_date -> 날짜 - 날짜 : 일수 나옴
-- 근무 년수 : to_char(sysdate,'YYYY')-to_char(hiredate,'YYYY')
-- 근무 월수 : 근무일수 / 1달(30일)
**/
select department_id, first_name, hire_date, sysdate,
round(sysdate-hire_date) workingday,
to_char(sysdate,'yyyy')-to_char(hire_date,'yyyy') workingyear,
round((sysdate-hire_date)/30) workingmonth
from employees;
/**
입사일로부터 오늘까지의 일수를 구하여 이름, 입사일, 근무일수를 출력하라.
--round(sysdate-hiredate,0) 근무일수
**/
select first_name, hire_date, round(sysdate - hire_date) workingday from employees;
/**
입사일을 2012년 7월 5일의 형태로 이름, 입사일을 출력하라.
-- 날짜 형시 앞에 fm 은 선행 '0'을 표현하지 않는다는 뜻..
-- 'fmYYYY"년" MM"월" DD"일'
**/
select first_name, to_char(hire_date,'fmyyyy"년"mm"월"dd"일"') from employees;
/**
이름(first_name)의 글자수가 6자이상인 사람의 이름을 앞에서 3자만 구하여 소문자로 이름만을 출력하라.
-- substr(str, position, length) : str 문자를 positin 부터 length길이 만큼 표현
-- lower(str) 소문자 변환
-- length(str) str의 길이
**/
select lower(substr(first_name,0,3)) from employees where length(first_name)>=6;
/**
10번 부서 월급의 평균ㅡ 최고, 최저, 인원수를 구하여 출력하라
**/
select avg(salary), max(salary), min(salary), count(*) from employees group by department_id;
/**
각 부서별 급여의 평균, 최고, 최저, 인원수를 구하여 출력하라.
**/
select avg(salary), max(salary), min(salary), count(*) from employees group by department_id;
/**
각 부서별 같은 업무를 하는 사람의 인원수를 구하여 부서번호, 업무명, 인원수를 출력하라.
**/
select department_id, job_id, count(*)
from employees
group by department_id, job_id
order by department_id, job_id;
/**
같은 업무를 하는 사람의 수가 4명 이상인 업무와 인원수를 출력하라.
**/
select job_id, count(*) cnt
from employees
group by job_id
having count(*) >= 4;
/**
각 부서별 평균월급, 전체월급, 최고월급, 최저월급,을 구하여 평균월급이 많은순으로 출력하라.
**/
select avg(salary), sum(salary), max(salary), min(salary)
from employees
group by department_id
order by avg(salary) desc;
|
INSERT INTO BATCH_JOB_ERROR_CODE
(ERROR_CODE, DESCRIPTION, SOLUTION, CATEGORY, REG_DATE, MOD_DATE)
VALUES
('JOB999', '정의되지 않은 오류가 발생하였습니다.', '오류내용 또는 로그 정보를 확인하여 조치하여 주십시오.', 'W', '20130120111023', '20130120111023');
INSERT INTO BATCH_JOB_ERROR_CODE
(ERROR_CODE, DESCRIPTION, SOLUTION, CATEGORY, REG_DATE, MOD_DATE)
VALUES
('JOB001', '배치 스케줄러를 시작할 수 없습니다.', '오류 내용 또는 로그 정보를 확인하여 조치후에 재시작 하여 주십시오.', 'E', '20130120104238', '20130120104238');
INSERT INTO BATCH_JOB_ERROR_CODE
(ERROR_CODE, DESCRIPTION, SOLUTION, CATEGORY, REG_DATE, MOD_DATE)
VALUES
('JOB002', '배치 스케줄러를 리로딩 도중에 오류가 발생하였습니다.', '오류 내용 또는 로그 정보를 확인하여 조치후에 재시작하여 주십시오.', 'E', '20130306104452', '20130306104452');
INSERT INTO BATCH_JOB_ERROR_CODE
(ERROR_CODE, DESCRIPTION, SOLUTION, CATEGORY, REG_DATE, MOD_DATE)
VALUES
('JOB003', '배치 프로그램을 중지하였습니다.', '해당 프로세스를 중지하였습니다. 로그를 확인하여 주십시오.', 'E', '20130120104436', '20130120104436');
INSERT INTO BATCH_JOB_ERROR_CODE
(ERROR_CODE, DESCRIPTION, SOLUTION, CATEGORY, REG_DATE, MOD_DATE)
VALUES
('JOB004', 'Database Lock 테이블을 사용하는 도중에 오류가 발생하였습니다.', '오류내용 또는 로그 정보를 확인하여 BATCH_JOB_LOCK 테이블을 확인한 후에 조치하여 주십시오.', 'E', '20130120104600', '20130120104600');
INSERT INTO BATCH_JOB_ERROR_CODE
(ERROR_CODE, DESCRIPTION, SOLUTION, CATEGORY, REG_DATE, MOD_DATE)
VALUES
('JOB005', '배치설정 파일을 로딩하는 도중에 오류가 발생하였습니다.', '오류내용 또는 로그 정보를 확인하여 config.properties 파일에 있는 batch.properties 정보가 올바른지 확인하여 조치하여 주십시오.', 'W', '20130120104827', '20130120104827');
INSERT INTO BATCH_JOB_ERROR_CODE
(ERROR_CODE, DESCRIPTION, SOLUTION, CATEGORY, REG_DATE, MOD_DATE)
VALUES
('JOB006', 'Database 연결설정 파일을 로딩하는 도중에 오류가 발생하였습니다.', '배치설정 정보에서 DB연결설정 정보가 올바른지 확인하여 조치하여 주십시오.', 'W', '20130120105022', '20130120105022');
INSERT INTO BATCH_JOB_ERROR_CODE
(ERROR_CODE, DESCRIPTION, SOLUTION, CATEGORY, REG_DATE, MOD_DATE)
VALUES
('JOB007', 'JDBC 템플릿 파일을 가져오는 도중에 오류가 발생하였습니다.', '배치설정 정보에서 Template 설정이 올바른지 확인하여 조치하여 주십시오.', 'W', '20130120105148', '20130120105148');
INSERT INTO BATCH_JOB_ERROR_CODE
(ERROR_CODE, DESCRIPTION, SOLUTION, CATEGORY, REG_DATE, MOD_DATE)
VALUES
('JOB008', '배치설정 정보를 가져오는 도중에 오류가 발생하였습니다.', '배치설정 정보가 올바른지 확인하여 조치하여 주십시오.', 'W', '20130120105301', '20130120105301');
INSERT INTO BATCH_JOB_ERROR_CODE
(ERROR_CODE, DESCRIPTION, SOLUTION, CATEGORY, REG_DATE, MOD_DATE)
VALUES
('JOB009', '배치ID 정보를 배치설정 정보에서 찾을 수 없습니다.', '해당 배치ID의 정보가 배치설정 정보에 등록되어 있는지 확인하여 조치하여 주십시오.', 'W', '20130120105437', '20130120105437');
INSERT INTO BATCH_JOB_ERROR_CODE
(ERROR_CODE, DESCRIPTION, SOLUTION, CATEGORY, REG_DATE, MOD_DATE)
VALUES
('JOB010', '클래스를 생성하는 도중에 오류가 발생하였습니다.', '설정된 클래스 정보가 올바른지 확인하여 조치하여 주십시오.', 'W', '20130120105548', '20130120105548');
INSERT INTO BATCH_JOB_ERROR_CODE
(ERROR_CODE, DESCRIPTION, SOLUTION, CATEGORY, REG_DATE, MOD_DATE)
VALUES
('JOB011', 'Batch Job을 처리하는 도중에 오류가 발생하였습니다.', '오류내용 또는 로그 정보를 확인하여 조치하여 주십시오.', 'W', '20130120105650', '20130120105650');
INSERT INTO BATCH_JOB_ERROR_CODE
(ERROR_CODE, DESCRIPTION, SOLUTION, CATEGORY, REG_DATE, MOD_DATE)
VALUES
('JOB012', '스케줄링을 설정을 하는 도중에 오류가 발생하였습니다.', '스케줄링 패턴 정보가 올바른지 또는 오류내용을 확인하여 조치하여 주십시오.', 'E', '20130304131018', '20130304131018');
INSERT INTO BATCH_JOB_ERROR_CODE
(ERROR_CODE, DESCRIPTION, SOLUTION, CATEGORY, REG_DATE, MOD_DATE)
VALUES
('JOB013', 'JDBC Item 정보를 읽어오는 도중에 오류가 발생하였습니다.', 'Template 파일의 해당 쿼리가 올바른지 확인하여 조치하여 주십시오.', 'W', '20130120105858', '20130120105858');
INSERT INTO BATCH_JOB_ERROR_CODE
(ERROR_CODE, DESCRIPTION, SOLUTION, CATEGORY, REG_DATE, MOD_DATE)
VALUES
('JOB014', 'JDBC Item 정보를 저장하는 도중에 오류가 발생하였습니다.', 'Template 파일의 해당 쿼리가 올바른지 확인하여 조치하여 주십시오.', 'W', '20130120110045', '20130120110045');
INSERT INTO BATCH_JOB_ERROR_CODE
(ERROR_CODE, DESCRIPTION, SOLUTION, CATEGORY, REG_DATE, MOD_DATE)
VALUES
('JOB015', 'Database Connection을 가져오는 도중에 오류가 발생하였습니다.', 'DB 서버 연결 정보가 올바르게 되었는지 확인하거나 DB 서버와의 네트워크 연결 상태가 이상이 없는지 확인하여 조치하여 주십시오.', 'W', '20130120110217', '20130120110217');
INSERT INTO BATCH_JOB_ERROR_CODE
(ERROR_CODE, DESCRIPTION, SOLUTION, CATEGORY, REG_DATE, MOD_DATE)
VALUES
('JOB016', '배치 스케줄러에서 Job 정보를 찾을 수 없습니다.', '오류내용 또는 로그 정보를 확인하여 조치하여 주십시오.', 'E', '20130120110834', '20130120110834');
INSERT INTO BATCH_JOB_ERROR_CODE
(ERROR_CODE, DESCRIPTION, SOLUTION, CATEGORY, REG_DATE, MOD_DATE)
VALUES
('JOB017', 'JDBC Job을 처리하는 도중에 오류가 발생하였습니다.', '오류내용 또는 로그 정보를 확인하여 조치하여 주십시오.', 'W', '20130120110834', '20130120110834');
INSERT INTO BATCH_JOB_ERROR_CODE
(ERROR_CODE, DESCRIPTION, SOLUTION, CATEGORY, REG_DATE, MOD_DATE)
VALUES
('JOB018', '해당 사용자ID가 존재하지 않습니다.', '오류내용 또는 로그 정보를 확인하여 조치하여 주십시오.', 'E', '20130206130943', '20130206130943');
INSERT INTO BATCH_JOB_ERROR_CODE
(ERROR_CODE, DESCRIPTION, SOLUTION, CATEGORY, REG_DATE, MOD_DATE)
VALUES
('JSQL99', '정의되지 않은 SQL 오류가 발생하였습니다.', '오류내용 또는 로그 정보를 확인하여 조치하여 주십시오.', 'W', '20130124134254', '20130124134254');
INSERT INTO BATCH_JOB_ERROR_CODE
(ERROR_CODE, DESCRIPTION, SOLUTION, CATEGORY, REG_DATE, MOD_DATE)
VALUES
('JSQL01', '잘못된 SQL 문법 오류가 발생하였습니다.', '오류내용 또는 로그 정보를 확인하여 조치하여 주십시오.', 'E', '20130124134254', '20130124134254');
INSERT INTO BATCH_JOB_ERROR_CODE
(ERROR_CODE, DESCRIPTION, SOLUTION, CATEGORY, REG_DATE, MOD_DATE)
VALUES
('JSQL02', '잘못된 ResultSet 접근 오류가 발생하였습니다.', '오류내용 또는 로그 정보를 확인하여 조치하여 주십시오.', 'E', '20130124134254', '20130124134254');
INSERT INTO BATCH_JOB_ERROR_CODE
(ERROR_CODE, DESCRIPTION, SOLUTION, CATEGORY, REG_DATE, MOD_DATE)
VALUES
('JSQL03', '중복된 데이터가 존재합니다.', '오류내용 또는 로그 정보를 확인하여 조치하여 주십시오.', 'E', '20130124134342', '20130124134342');
INSERT INTO BATCH_JOB_ERROR_CODE
(ERROR_CODE, DESCRIPTION, SOLUTION, CATEGORY, REG_DATE, MOD_DATE)
VALUES
('JSQL04', '해당 데이터가 존재하지 않습니다.', '오류내용 또는 로그 정보를 확인하여 조치하여 주십시오.', 'E', '20130124134254', '20130124134254');
--------------------------------------------
-- 코드 추가. (15.01.09)
INSERT INTO BATCH_JOB_ERROR_CODE
(ERROR_CODE, DESCRIPTION, SOLUTION, CATEGORY, REG_DATE, MOD_DATE)
VALUES
('JSQL05', '데이터에 대한 무결성 위반 오류가 발생하였습니다.', '데이터 및 해당 테이블의 컬럼 속성(필드 자릿수, NOT NULL 등) 정보를 확인하여 조치하여 주십시오.', 'E', '20130124134254', '20130124134254');
INSERT INTO BATCH_JOB_ERROR_CODE
(ERROR_CODE, DESCRIPTION, SOLUTION, CATEGORY, REG_DATE, MOD_DATE)
VALUES
('JSQL06', '데이터 액세스 리소스 오류가 발생하였습니다.', '오류내용 또는 로그 정보를 확인하여 조치하여 주십시오.', 'E', '20130124134254', '20130124134254');
INSERT INTO BATCH_JOB_ERROR_CODE
(ERROR_CODE, DESCRIPTION, SOLUTION, CATEGORY, REG_DATE, MOD_DATE)
VALUES
('JSQL07', '일시적인 데이터 액세스 리소스 오류가 발생하였습니다.', '오류내용 또는 로그 정보를 확인하여 조치하여 주십시오.', 'E', '20130124134254', '20130124134254');
INSERT INTO BATCH_JOB_ERROR_CODE
(ERROR_CODE, DESCRIPTION, SOLUTION, CATEGORY, REG_DATE, MOD_DATE)
VALUES
('JSQL08', 'Lock 획득 오류가 발생하였습니다.', '오류내용 또는 로그 정보를 확인하여 조치하여 주십시오.', 'E', '20130124134254', '20130124134254');
INSERT INTO BATCH_JOB_ERROR_CODE
(ERROR_CODE, DESCRIPTION, SOLUTION, CATEGORY, REG_DATE, MOD_DATE)
VALUES
('JSQL09', 'Deadlock 오류가 발생하였습니다.', '오류내용 또는 로그 정보를 확인하여 조치하여 주십시오.', 'E', '20130124134254', '20130124134254');
INSERT INTO BATCH_JOB_ERROR_CODE
(ERROR_CODE, DESCRIPTION, SOLUTION, CATEGORY, REG_DATE, MOD_DATE)
VALUES
('JSQL10', '이 트랜잭션에 대한 직렬화 액세스를 할 수 없습니다.', '오류내용 또는 로그 정보를 확인하여 조치하여 주십시오.', 'E', '20130124134254', '20130124134254');
|
-- phpMyAdmin SQL Dump
-- version 4.5.1
-- http://www.phpmyadmin.net
--
-- Host: 127.0.0.1
-- Generation Time: Feb 12, 2018 at 04:59 AM
-- Server version: 10.1.13-MariaDB
-- PHP Version: 5.6.23
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Database: `online_exam_system`
--
-- --------------------------------------------------------
--
-- Table structure for table `admin_info`
--
CREATE TABLE `admin_info` (
`aId` int(11) NOT NULL,
`admin_privilege` varchar(35) NOT NULL,
`email` varchar(100) NOT NULL,
`password` varchar(64) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `admin_info`
--
INSERT INTO `admin_info` (`aId`, `admin_privilege`, `email`, `password`) VALUES
(1, '', 'raju311286@gmail.com', '1234556');
-- --------------------------------------------------------
--
-- Table structure for table `course_info`
--
CREATE TABLE `course_info` (
`id` int(10) NOT NULL,
`cName` varchar(60) NOT NULL,
`cDetails` varchar(300) NOT NULL,
`cMarks` int(10) NOT NULL,
`totalExam` int(10) NOT NULL,
`cDuration` int(10) NOT NULL,
`status` int(10) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `course_info`
--
INSERT INTO `course_info` (`id`, `cName`, `cDetails`, `cMarks`, `totalExam`, `cDuration`, `status`) VALUES
(1, 'php', 'testing course', 200, 10, 6, 1),
(2, 'java', 'testion', 100, 6, 10, 0),
(4, 'test', 't', 23, 2, 0, 0),
(5, 'asp.net', 'testing', 300, 20, 6, 0),
(8, 'javascript', 'test', 2, 2, 2, 0);
-- --------------------------------------------------------
--
-- Table structure for table `createtopic`
--
CREATE TABLE `createtopic` (
`id` int(10) NOT NULL,
`cid` int(10) NOT NULL,
`ctName` varchar(30) NOT NULL,
`ctDetails` varchar(300) NOT NULL,
`marks` int(10) NOT NULL,
`numberQuestion` int(10) NOT NULL,
`examDuration` int(10) NOT NULL,
`status` int(10) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `createtopic`
--
INSERT INTO `createtopic` (`id`, `cid`, `ctName`, `ctDetails`, `marks`, `numberQuestion`, `examDuration`, `status`) VALUES
(7, 5, 'asp.net basic', 'testing', 50, 30, 60, 0),
(8, 1, 'html', 'te', 180, 20, 6, 0);
-- --------------------------------------------------------
--
-- Table structure for table `eamil_send_info`
--
CREATE TABLE `eamil_send_info` (
`id` int(11) NOT NULL,
`emailtype` int(11) NOT NULL,
`emailId` varchar(100) NOT NULL,
`emailpassword` varchar(100) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `eamil_send_info`
--
INSERT INTO `eamil_send_info` (`id`, `emailtype`, `emailId`, `emailpassword`) VALUES
(1, 1, 'raju311286@gmail.com', '1234353');
-- --------------------------------------------------------
--
-- Table structure for table `exam_infor`
--
CREATE TABLE `exam_infor` (
`id` int(11) NOT NULL,
`sid` int(11) NOT NULL,
`topic_id` int(11) NOT NULL,
`number_question` int(11) NOT NULL,
`duration` int(11) NOT NULL,
`exam_code` varchar(10) NOT NULL,
`status` int(11) NOT NULL,
`date` date NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `exam_infor`
--
INSERT INTO `exam_infor` (`id`, `sid`, `topic_id`, `number_question`, `duration`, `exam_code`, `status`, `date`) VALUES
(29, 23, 8, 20, 6, 'qM23tNrczW', 0, '2018-02-15'),
(31, 23, 8, 20, 6, '38sFQ0d08q', 0, '2018-02-20'),
(32, 23, 8, 20, 6, 'wVSi2R1m0W', 0, '2018-02-20'),
(33, 23, 8, 20, 6, 'IVGDEVequa', 0, '2018-02-21'),
(34, 23, 8, 20, 6, 'HJ4FwE1T68', 0, '2018-02-13'),
(35, 23, 8, 20, 6, 'lqz83HkoHp', 0, '2018-02-13');
-- --------------------------------------------------------
--
-- Table structure for table `file_info`
--
CREATE TABLE `file_info` (
`id` int(100) NOT NULL,
`file_name` varchar(100) NOT NULL,
`folder_name` varchar(100) NOT NULL,
`meta_keyword` varchar(150) NOT NULL,
`meta_description` varchar(200) NOT NULL,
`meta_title` varchar(100) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `file_info`
--
INSERT INTO `file_info` (`id`, `file_name`, `folder_name`, `meta_keyword`, `meta_description`, `meta_title`) VALUES
(1, 'home', 'root', 'test', 'test', 'Demo online exam system'),
(2, 'login', 'root', 'Student login', 'Student login', 'Student login'),
(3, 'registration', 'root', 'Registration', 'Description', 'STUDENT REGISTRATION'),
(4, 'teacherLogin', 'root', '', '', 'TEACHER LOGIN'),
(5, 'teregistration', 'root', '', '', 'Teacher Regisrtation'),
(6, 'homeContent', 'admin', 'thanks', 'thanks', 'Admin panel'),
(7, 'courseRegistration', 'admin', 'course Registration', 'course Registration', 'course Registration'),
(8, 'homeTopic', 'admin', 'home Topic', 'home Topic ', 'home Topic'),
(9, 'createTopic', 'admin', 'create Topic', 'create Topic', 'create Topic'),
(10, 'check_email', 'root', 'verify Email', 'verify Email', 'verify Email'),
(11, 'addfile', 'admin', 'add file information', 'add file information', 'Add file information'),
(12, 'file_home', 'admin', 'File information ', 'File information ', 'File information '),
(13, 'upload_home', 'admin', 'Upload home', 'Upload home', 'Upload home'),
(14, 'add_upload', 'admin', 'add upload', 'add upload', 'add upload'),
(15, 'slider_details', 'admin', 'slider_details', 'slider_details', 'slider_details'),
(16, 'test', 'admin', '', '', ''),
(17, 'course_home', 'student', 'course_home', 'course_home', 'course_home'),
(18, 'couse_details', 'student', 'couse_details', 'couse_details', 'couse_details');
-- --------------------------------------------------------
--
-- Stand-in structure for view `name`
--
CREATE TABLE `name` (
`sname` varchar(35)
,`email` varchar(100)
);
-- --------------------------------------------------------
--
-- Table structure for table `question_info`
--
CREATE TABLE `question_info` (
`qId` int(11) NOT NULL,
`question` varchar(200) NOT NULL,
`qTypeId` int(11) NOT NULL,
`tId` int(11) NOT NULL,
`qChOne` varchar(100) NOT NULL,
`qChTwo` varchar(100) NOT NULL,
`qChThree` varchar(100) NOT NULL,
`qChAns` varchar(100) NOT NULL,
`qHints` varchar(200) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `selectcourse_infom`
--
CREATE TABLE `selectcourse_infom` (
`id` int(11) NOT NULL,
`sid` int(11) NOT NULL,
`courseid` int(11) NOT NULL,
`course_name` varchar(50) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `selectcourse_infom`
--
INSERT INTO `selectcourse_infom` (`id`, `sid`, `courseid`, `course_name`) VALUES
(1, 23, 1, ''),
(2, 23, 2, ''),
(4, 23, 8, ''),
(5, 23, 5, '');
-- --------------------------------------------------------
--
-- Table structure for table `slide_in`
--
CREATE TABLE `slide_in` (
`id` int(11) NOT NULL,
`file_id` int(11) NOT NULL,
`slide_id` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `slide_in`
--
INSERT INTO `slide_in` (`id`, `file_id`, `slide_id`) VALUES
(1, 1, 2),
(2, 4, 2),
(3, 5, 2),
(4, 1, 5),
(5, 1, 6),
(8, 3, 7),
(9, 1, 7),
(10, 1, 9),
(11, 2, 2);
-- --------------------------------------------------------
--
-- Stand-in structure for view `studentname`
--
CREATE TABLE `studentname` (
`gender` varchar(6)
,`sName` varchar(35)
);
-- --------------------------------------------------------
--
-- Table structure for table `student_backup`
--
CREATE TABLE `student_backup` (
`sId` int(6) UNSIGNED NOT NULL,
`sName` varchar(30) NOT NULL,
`gender` varchar(30) NOT NULL,
`mobile` varchar(18) DEFAULT NULL,
`email` varchar(50) DEFAULT NULL,
`lastEdu` varchar(50) DEFAULT NULL,
`lastEduResult` varchar(50) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `student_backup`
--
INSERT INTO `student_backup` (`sId`, `sName`, `gender`, `mobile`, `email`, `lastEdu`, `lastEduResult`) VALUES
(3, 'jasim uddin', 'Male', '01831353304', 'raju311286@gmail.com', 'B.Sc', '3.00'),
(4, 'lict3', 'Male', '01234567', 'ru@gmail.com', 'SSC', '3.00'),
(5, 'jsim', 'Male', '2332', 'er@gmail.com', 'SSC', '3.00'),
(7, 'testing', 'Male', '012345678', 'tu@gmail.com', 'SSC', '3.00'),
(9, 'jasim uddin', 'Male', '32423', 'raju311286@gmail.com ', 'SSC', '4'),
(10, 'jasim uddin', 'Male', '01831353304', 'raju311286@gmail.com', 'SSC', '3.00'),
(11, 'jasim uddin', 'Male', '01831353304', 'raju311286@gmail.com', 'SSC', '3.00'),
(12, 'jasim uddin', 'Male', '01831353304', 'raju311286@gmail.com', 'SSC', '3.00'),
(13, 'jasim uddin', 'Male', '123213', 'raju311286@gmail.com', 'SSC', '3.00'),
(14, 'jasim uddin', 'Male', '01831353304', 'raju311286@gmail.com', 'SSC', '3.00'),
(15, 'jasim uddin', 'Male', '01831353304', 'raju311286@gmail.com', 'SSC', '3.00'),
(16, 'jasim uddin', 'Male', '01831353304', 'raju311286@gmail.com', 'SSC', '3.00'),
(17, 'jasim uddin', 'Male', '01831353304', 'raju311286@gmail.com', 'SSC', '3.00'),
(18, 'jasim uddin', 'Male', '01831353304', 'raju311286@gmail.com', 'SSC', '3.00'),
(20, 'jasim uddin', 'Male', '01831353304', 'raju311286@gmail.com', 'B.Sc', '3.00'),
(22, 'jasim uddin', 'Male', '01831353304', 'raju311286@gmail.com', 'B.Sc', '2');
-- --------------------------------------------------------
--
-- Table structure for table `student_info`
--
CREATE TABLE `student_info` (
`sId` int(11) NOT NULL,
`sName` varchar(35) NOT NULL,
`gender` varchar(6) NOT NULL,
`email` varchar(100) NOT NULL,
`mobile` varchar(18) NOT NULL,
`lastEdu` varchar(50) NOT NULL,
`lastEduResult` varchar(100) NOT NULL,
`dateOfBirth` date NOT NULL,
`password` varchar(64) NOT NULL,
`simage` varchar(100) NOT NULL,
`code` varchar(6) NOT NULL,
`status` int(11) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `student_info`
--
INSERT INTO `student_info` (`sId`, `sName`, `gender`, `email`, `mobile`, `lastEdu`, `lastEduResult`, `dateOfBirth`, `password`, `simage`, `code`, `status`) VALUES
(6, 'testing', 'Female', 'ty@gmail.com', '2345677', 'SSC', '3.00', '0000-00-00', 'aecd7b14f7674d7e8741596159f6f7868bb4fada', '', '', 0),
(8, 'jasim uddin', 'Male', 'raju3112@gmail.com', '01831353304', 'SSC', 'thanks', '0000-00-00', 'aecd7b14f7674d7e8741596159f6f7868bb4fada', '', '', 0),
(19, 'kamrul Hassan', 'Male', 'kamrulhasan3174007@gmail.com', '2345678', 'B.Sc', '3.50', '0000-00-00', '10470c3b4b1fed12c3baac014be15fac67c6e815', '', '5nTNLD', 0),
(21, 'Tamanna', 'Female', 'tamannafarabi@yahoo.com', '123232434', 'B.Sc', '4', '0000-00-00', '7f06c04d59bd83605193621e8d0d693bd30cdc9e', '', 'v126CB', 0),
(23, 'jasim uddin', 'Male', 'raju311286@gmail.com', '01831353304', 'B.Sc', '3.00', '0000-00-00', 'aecd7b14f7674d7e8741596159f6f7868bb4fada', '', 'bmbv9d', 1);
--
-- Triggers `student_info`
--
DELIMITER $$
CREATE TRIGGER `student_backup` BEFORE DELETE ON `student_info` FOR EACH ROW INSERT INTO student_backup(sId,sName, gender, mobile, email, lastEdu, lastEduResult)
VALUES(OLD.sId, OLD.sName, OLD.gender, OLD.mobile, OLD.email, OLD.lastEdu, OLD.lastEduResult)
$$
DELIMITER ;
-- --------------------------------------------------------
--
-- Table structure for table `teacher_info`
--
CREATE TABLE `teacher_info` (
`tId` int(11) NOT NULL,
`tName` varchar(35) NOT NULL,
`gender` varchar(6) NOT NULL,
`email` varchar(100) NOT NULL,
`mobile` varchar(18) DEFAULT NULL,
`lastEdu` varchar(50) NOT NULL,
`experience` varchar(100) NOT NULL,
`dateOfBirth` date DEFAULT NULL,
`password` varchar(64) NOT NULL,
`status` int(11) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `teacher_info`
--
INSERT INTO `teacher_info` (`tId`, `tName`, `gender`, `email`, `mobile`, `lastEdu`, `experience`, `dateOfBirth`, `password`, `status`) VALUES
(1, 'jasim uddin', 'Male', 'raju311286@gmail.com', '01831353304', 'B.Sc', '4', NULL, 'a346bc80408d9b2a5063fd1bddb20e2d5586ec30', 1);
-- --------------------------------------------------------
--
-- Table structure for table `uploader_info`
--
CREATE TABLE `uploader_info` (
`id` int(11) NOT NULL,
`Filename` varchar(200) NOT NULL,
`companyname` varchar(50) DEFAULT NULL,
`type` int(11) NOT NULL,
`filetype` varchar(4) NOT NULL,
`paidstatus` int(11) NOT NULL DEFAULT '0'
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `uploader_info`
--
INSERT INTO `uploader_info` (`id`, `Filename`, `companyname`, `type`, `filetype`, `paidstatus`) VALUES
(2, 'slider-a376033f151815545556748633711105229.jpg', '', 0, 'img', 0),
(4, 'ad-99064ba6151815571176771481311066648.html', 'test', 1, 'html', 1),
(5, 'slider-60b2149f151820239726732485610452089.jpg', '', 0, 'img', 0),
(6, 'slider-852c296d151820258079537985110162440.png', '', 0, 'img', 0),
(7, 'slider-448d5eda151823438346748457110714158.jpg', '', 0, 'img', 0),
(8, 'ad-b75bd27b151823741192942238310842062.html', 'test', 1, 'html', 0),
(9, 'slider-074177d3151825413582423762110054739.jpg', '', 0, 'img', 0);
-- --------------------------------------------------------
--
-- Structure for view `name`
--
DROP TABLE IF EXISTS `name`;
CREATE ALGORITHM=UNDEFINED DEFINER=`root`@`localhost` SQL SECURITY DEFINER VIEW `name` AS select `student_info`.`sName` AS `sname`,`student_info`.`email` AS `email` from `student_info` ;
-- --------------------------------------------------------
--
-- Structure for view `studentname`
--
DROP TABLE IF EXISTS `studentname`;
CREATE ALGORITHM=UNDEFINED DEFINER=`root`@`localhost` SQL SECURITY DEFINER VIEW `studentname` AS select `student_info`.`gender` AS `gender`,`student_info`.`sName` AS `sName` from `student_info` ;
--
-- Indexes for dumped tables
--
--
-- Indexes for table `admin_info`
--
ALTER TABLE `admin_info`
ADD PRIMARY KEY (`aId`);
--
-- Indexes for table `course_info`
--
ALTER TABLE `course_info`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `createtopic`
--
ALTER TABLE `createtopic`
ADD PRIMARY KEY (`id`),
ADD KEY `cid` (`cid`);
--
-- Indexes for table `eamil_send_info`
--
ALTER TABLE `eamil_send_info`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `exam_infor`
--
ALTER TABLE `exam_infor`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `file_info`
--
ALTER TABLE `file_info`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `question_info`
--
ALTER TABLE `question_info`
ADD PRIMARY KEY (`qId`);
--
-- Indexes for table `selectcourse_infom`
--
ALTER TABLE `selectcourse_infom`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `slide_in`
--
ALTER TABLE `slide_in`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `student_backup`
--
ALTER TABLE `student_backup`
ADD PRIMARY KEY (`sId`);
--
-- Indexes for table `student_info`
--
ALTER TABLE `student_info`
ADD PRIMARY KEY (`sId`);
--
-- Indexes for table `teacher_info`
--
ALTER TABLE `teacher_info`
ADD PRIMARY KEY (`tId`);
--
-- Indexes for table `uploader_info`
--
ALTER TABLE `uploader_info`
ADD PRIMARY KEY (`id`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `admin_info`
--
ALTER TABLE `admin_info`
MODIFY `aId` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT for table `course_info`
--
ALTER TABLE `course_info`
MODIFY `id` int(10) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9;
--
-- AUTO_INCREMENT for table `createtopic`
--
ALTER TABLE `createtopic`
MODIFY `id` int(10) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9;
--
-- AUTO_INCREMENT for table `eamil_send_info`
--
ALTER TABLE `eamil_send_info`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT for table `exam_infor`
--
ALTER TABLE `exam_infor`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=36;
--
-- AUTO_INCREMENT for table `file_info`
--
ALTER TABLE `file_info`
MODIFY `id` int(100) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=19;
--
-- AUTO_INCREMENT for table `question_info`
--
ALTER TABLE `question_info`
MODIFY `qId` int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `selectcourse_infom`
--
ALTER TABLE `selectcourse_infom`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6;
--
-- AUTO_INCREMENT for table `slide_in`
--
ALTER TABLE `slide_in`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=12;
--
-- AUTO_INCREMENT for table `student_backup`
--
ALTER TABLE `student_backup`
MODIFY `sId` int(6) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=23;
--
-- AUTO_INCREMENT for table `student_info`
--
ALTER TABLE `student_info`
MODIFY `sId` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=24;
--
-- AUTO_INCREMENT for table `teacher_info`
--
ALTER TABLE `teacher_info`
MODIFY `tId` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT for table `uploader_info`
--
ALTER TABLE `uploader_info`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10;
--
-- Constraints for dumped tables
--
--
-- Constraints for table `createtopic`
--
ALTER TABLE `createtopic`
ADD CONSTRAINT `createtopic_ibfk_1` FOREIGN KEY (`cid`) REFERENCES `course_info` (`id`);
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
CREATE PROC SEL_SOCIOFEBRERO
AS
SELECT E.NOMBRE,CD.NOMBRE,C.Observacion,cast(isnull (C.TOTAL,0) AS DECIMAL(18,2)) AS TOTAL FROM ERP.COMPROBANTE C
INNER JOIN ERP.ComprobanteDetalle CD
ON C.ID = CD.IDCOMPROBANTE
INNER JOIN ERP.Cliente CL
ON CL.ID=C.IdCliente
INNER JOIN ERP.Entidad E
ON CL.IdEntidad=E.ID
INNER JOIN ERP.EntidadTipoDocumento ETP
ON E.ID=ETP.IdEntidad
WHERE MONTH(C.FECHAREGISTRO)=02
AND C.FlagBorrador =0
AND C.IdTipoComprobante = 202
AND C.Documento Is Not NULL
AND NOT C.IdComprobanteEstado = 3
AND CD.NOMBRE LIKE '%ENERO%'
AND NOT CD.NOMBRE LIKE '%CASILLERO%'
UNION
SELECT E.NOMBRE,CD.NOMBRE,C.Observacion,cast(isnull (C.TOTAL,0) AS DECIMAL(18,2)) AS TOTAL FROM ERP.COMPROBANTE C
INNER JOIN ERP.ComprobanteDetalle CD
ON C.ID = CD.IDCOMPROBANTE
INNER JOIN ERP.Cliente CL
ON CL.ID=C.IdCliente
INNER JOIN ERP.Entidad E
ON CL.IdEntidad=E.ID
INNER JOIN ERP.EntidadTipoDocumento ETP
ON E.ID=ETP.IdEntidad
WHERE MONTH(C.FECHAREGISTRO)=02
AND C.FlagBorrador =0
AND C.IdTipoComprobante = 202
AND C.Documento Is Not NULL
AND NOT C.IdComprobanteEstado = 3
AND C.Observacion LIKE '%ENERO%' |
/*
Copyright 2020-2021 Snowplow Analytics Ltd. All rights reserved.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
*/
-- A table storing an identifier for this run of a model - used to identify runs of the model across multiple modules/steps (eg. base, page views share this id per run)
CREATE TABLE IF NOT EXISTS {{.scratch_schema}}.metadata_run_id{{.entropy}} (
run_id TIMESTAMP
);
-- When base runs, it's always the first module. So it's safe to just truncate here.
TRUNCATE TABLE {{.scratch_schema}}.metadata_run_id{{.entropy}};
INSERT INTO {{.scratch_schema}}.metadata_run_id{{.entropy}} (
SELECT
CURRENT_TIMESTAMP()
);
-- Permanent metadata table
CREATE TABLE IF NOT EXISTS {{.output_schema}}.datamodel_metadata{{.entropy}} (
run_id TIMESTAMP,
model_version STRING,
model STRING,
module STRING,
run_start_tstamp TIMESTAMP,
run_end_tstamp TIMESTAMP,
rows_this_run INT64,
distinct_key STRING,
distinct_key_count INT64,
time_key STRING,
min_time_key TIMESTAMP,
max_time_key TIMESTAMP,
duplicate_rows_removed INT64,
distinct_keys_removed INT64
)
PARTITION BY DATE(run_start_tstamp);
-- Setup temp metadata tables for this run
CREATE OR REPLACE TABLE {{.scratch_schema}}.base_metadata_this_run{{.entropy}} (
id STRING,
run_id TIMESTAMP,
model_version STRING,
model STRING,
module STRING,
run_start_tstamp TIMESTAMP,
run_end_tstamp TIMESTAMP,
rows_this_run INT64,
distinct_key STRING,
distinct_key_count INT64,
time_key STRING,
min_time_key TIMESTAMP,
max_time_key TIMESTAMP,
duplicate_rows_removed INT64,
distinct_keys_removed INT64
);
INSERT INTO {{.scratch_schema}}.base_metadata_this_run{{.entropy}} (
SELECT
'run',
run_id,
'{{.model_version}}',
'web',
'base',
CURRENT_TIMESTAMP(),
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL,
NULL
FROM {{.scratch_schema}}.metadata_run_id{{.entropy}}
);
-- Setup manifests
CREATE TABLE IF NOT EXISTS {{.output_schema}}.base_event_id_manifest{{.entropy}}
PARTITION BY DATE(collector_tstamp)
AS (
SELECT
'seed' AS event_id,
TIMESTAMP('{{.start_date}}') AS collector_tstamp
);
CREATE TABLE IF NOT EXISTS {{.output_schema}}.base_session_id_manifest{{.entropy}}
PARTITION BY DATE(min_tstamp)
AS (
SELECT
'seed' AS session_id,
TIMESTAMP('{{.start_date}}') AS min_tstamp
);
|
-- phpMyAdmin SQL Dump
-- version 4.0.10deb1
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Jan 21, 2016 at 08:31 PM
-- Server version: 5.5.46-0ubuntu0.14.04.2
-- PHP Version: 5.5.9-1ubuntu4.14
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
--
-- Database: `ivertise_africa`
--
-- --------------------------------------------------------
--
-- Table structure for table `buyers`
--
CREATE TABLE IF NOT EXISTS `buyers` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`fullname` varchar(255) NOT NULL,
`username` varchar(255) NOT NULL,
`email` varchar(255) NOT NULL,
`password` varchar(255) NOT NULL,
`phone` int(15) NOT NULL,
`dob` date NOT NULL,
`gender` varchar(255) NOT NULL,
`country` varchar(255) NOT NULL,
`city` varchar(255) NOT NULL,
`address` varchar(255) NOT NULL,
`product_name` varchar(255) NOT NULL,
`org_type` varchar(255) NOT NULL,
`downloads` int(10) NOT NULL,
`isActivated` int(1) NOT NULL,
`createdAt` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;
--
-- Dumping data for table `buyers`
--
INSERT INTO `buyers` (`id`, `fullname`, `username`, `email`, `password`, `phone`, `dob`, `gender`, `country`, `city`, `address`, `product_name`, `org_type`, `downloads`, `isActivated`, `createdAt`) VALUES
(1, 'Kevin Barasa', 'kev_barasa', 'bkevin001@yahoo.com', 'password', 2147483647, '1992-07-11', 'Male', 'Kenya', 'Nairobi', 'Ngong Road', 'Purple Flower Image ', 'CloudCore Technologies', 28, 1, '2016-01-21 17:26:09');
-- --------------------------------------------------------
--
-- Table structure for table `images`
--
CREATE TABLE IF NOT EXISTS `images` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`type` varchar(255) NOT NULL,
`description` varchar(255) NOT NULL,
`keywords` varchar(255) NOT NULL,
`category` varchar(255) NOT NULL,
`price` int(10) NOT NULL,
`title` varchar(255) NOT NULL,
`pixels` varchar(255) NOT NULL,
`size` int(11) NOT NULL,
`viewed` int(11) NOT NULL,
`downloaded` int(11) NOT NULL,
`licence` varchar(255) NOT NULL,
`createdAt` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00' ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;
-- --------------------------------------------------------
--
-- Table structure for table `users`
--
CREATE TABLE IF NOT EXISTS `users` (
`id` int(10) NOT NULL AUTO_INCREMENT,
`fullname` varchar(255) NOT NULL,
`username` varchar(255) NOT NULL,
`email` varchar(255) NOT NULL,
`password` varchar(255) NOT NULL,
`dob` date NOT NULL,
`gender` varchar(255) NOT NULL,
`phone` int(15) NOT NULL,
`country` varchar(255) NOT NULL,
`org_type` varchar(255) NOT NULL,
`isAdmin` int(1) NOT NULL,
`isActivated` int(1) NOT NULL,
`downloads` int(10) NOT NULL,
`createdAt` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00' ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=2 ;
--
-- Dumping data for table `users`
--
INSERT INTO `users` (`id`, `fullname`, `username`, `email`, `password`, `dob`, `gender`, `phone`, `country`, `org_type`, `isAdmin`, `isActivated`, `downloads`, `createdAt`) VALUES
(1, 'Kevin Barasa', 'kev_barasa', 'bkevin001@yahoo.com', 'password', '1992-07-11', 'Male', 2147483647, 'Kenya', 'Media & Marketing', 1, 1, 0, '0000-00-00 00:00:00');
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
-- works like MINUS operator
select a.id
from table1 as a
where <condition>
AND a.id NOT IN (select b.id
from table2 as b
where <condition>);
-- attendence query
SELECT
c.c_fname,
c.c_gender,
c.c_lname,
c.c_grade,
TIMESTAMPDIFF(YEAR, c.c_dob, CURDATE()) AS Age,
c.c_school,
pr.prog_id,
pr.prog_name,
ps.prog_sec,
pr.prog_name,
ps.prog_day
FROM prog_section ps
JOIN program pr
ON ps.prog_id = pr.prog_id
JOIN enrollment e
ON ps.prog_sec = e.prog_sec
JOIN child c
ON e.c_id = c.c_id
JOIN person pe
ON e.person_id = pe.person_id
WHERE ps.prog_sec_active = TRUE
AND ps.prog_sec = :prog_sec
ORDER BY
c.c_fname,
c.c_lname;
SELECT
p.prog_id,
p.prog_name,
ps.prog_age_range,
ps.prog_day,
ps.prog_sec_desc,
ps.prog_time,
ps.prog_sec
FROM prog_section ps
Join program p
ON ps.prog_id = p.prog_id
WHERE ps.prog_sec = :prog_sec
UPDATE
enrollment e
JOIN child c
ON e.e_num = 5
AND e.c_id = c.c_id
JOIN prog_section ps
ON e.prog_sec = ps.prog_sec
JOIN transportation t
ON ps.prog_sec = t.prog_sec
SET
e.e_status = true,
e.e_consent_sacm_van = false,
e.e_consent_attend = false,
e.e_consent_sm_phone = false,
e.e_consent_emg_med = false,
e.e_consent_to_publish = false,
t.trans_type_to = "SACM Van",
t.trans_type_from = "SACM Van"
UPDATE
enrollment e
JOIN child c
ON e.e_num = 5
AND e.c_id = c.c_id
JOIN prog_section ps
ON e.prog_sec = ps.prog_sec
SET
e.e_status = true,
e.e_consent_sacm_van = false,
e.e_consent_attend = false,
e.e_consent_sm_phone = false,
e.e_consent_emg_med = false,
e.e_consent_to_publish = false
UPDATE
transportation t
SET
t.trans_type_to = "SACM Van",
t.trans_type_from = "Walk"
WHERE
t.c_id = 2
AND
t.prog_sec = 10
UPDATE
transportation t
SET
t.trans_type_to = "SACM Van",
t.trans_type_from = "Walk"
WHERE
t.c_id = 6
AND
t.prog_sec = 1
UPDATE
transportation t
SET
t.trans_type_to = "NATALIE",
t.trans_type_from = "NATALIE"
WHERE
t.c_id = :c_id
AND
t.prog_sec = :prog_sec
-- currently used to find enroolments
SELECT
e.e_num,
e.c_id,
e.person_id,
e.prog_sec,
e.e_status,
e.e_consent_sacm_van,
e.e_consent_attend,
e.e_consent_sm_phone,
e.e_consent_emg_med,
e.e_consent_to_publish,
p.prog_name,
ps.prog_age_range,
ps.prog_day,
ps.prog_sec_desc,
ps.prog_time,
ps.prog_sec
FROM enrollment e
JOIN prog_section ps
ON e.prog_sec = ps.prog_sec
JOIN program p
ON ps.prog_id = p.prog_id
WHERE ps.prog_sec_active = true
AND e.c_id = 2
AND e.e_num = 5
-- mike's working join update
UPDATE donations
JOIN program_donation ON donations.don_id = program_donation.don_id
SET
don_date = :don_date3,
don_desc = :don_desc3,
don_type = :don_type3,
prog_sec = :prog_sec3
WHERE
donations.don_id = :don_id2
SELECT
t.trans_type_to,
t.trans_type_from
FROM enrollment e
JOIN prog_section ps ON e.prog_sec = ps.prog_sec
JOIN transportation t ON ps.prog_sec = t.prog_sec
WHERE e.e_num = 1
AND t.c_id = 1
UPDATE
enrollment e
JOIN prog_section ps ON e.prog_sec = ps.prog_sec
JOIN transportation t ON ps.prog_sec = t.prog_sec
SET
t.trans_type_to = :trans_type_to,
t.trans_type_from = :trans_type_from
WHERE e.e_num = :e_num
AND t.c_id = :c_id
UPDATE
enrollment e
JOIN prog_section ps ON e.prog_sec = ps.prog_sec
JOIN transportation t ON ps.prog_sec = t.prog_sec
SET
t.trans_type_to = "School bus",
t.trans_type_from = "Pick-up"
WHERE e.e_num = 1
AND t.c_id = 1
if($don_type == "Time" || $don_type == "Service")
{
$p_is_volunteer = true;
$update_volunteer =
'UPDATE person
SET p_is_volunteer = true
WHERE person_id = :person_id';
$stmt5a = $db->prepare($update_volunteer);
$stmt5a->bindValue(':person_id', $person_id);
$stmt5a->execute();
$stmt5a->closeCursor();
}
UPDATE person p
JOIN volunteer v ON p.person_id = v.person_id
SET p_is_volunteer = true,
sec_skill_type = "Time or Service"
WHERE person_id = :person_id
UPDATE person p
JOIN volunteer v ON p.person_id = v.person_id
SET
v.sec_skill_type = "Time or Service"
WHERE v.person_id = 14
$insert_volunteer =
'INSERT INTO volunteer
(person_id, primary_skill_type, sec_skill_type)
VALUES
(:person_id, :primary_skill_type, :sec_skill_type)';
$stmt = $db->prepare($insert_volunteer);
$stmt->bindValue(':person_id', $person_id);
$stmt->bindValue(':primary_skill_type', $primary_skill_type);
$stmt->bindValue(':sec_skill_type', $sec_skill_type);
$stmt->execute();
$stmt->closeCursor();
-- reports queries work
-- this first query is a list of all DONATIONs, with People and their information who gave them and their affilation with an organization and all of its information
SELECT
d.person_id,
p.p_fname,
p.p_lname,
p.p_cell_phone,
p.p_email,
p.p_st_address,
p.p_city,
p.p_state,
p.p_zipcode,
d.don_type,
d.don_desc,
d.don_date,
pr.prog_name,
ps.prog_day,
o.org_name,
o.org_email,
o.org_st_address,
o.org_city,
o.org_state,
o.org_zipcode,
o.org_phone
FROM donations d
JOIN organizations o
ON o.org_id = d.org_id
JOIN person p
ON p.person_id = d.person_id
JOIN program_donation pd
ON pd.don_id = d.don_id
JOIN prog_section ps
ON ps.prog_sec = pd.prog_sec
JOIN program pr
ON pr.prog_id = ps.prog_id
Order by d.don_id
--THIS WILL WORK FOR YOUR ALL DONATIONS (OF ITEM OR FUNDS) BUTTON SHOULD YOU CHOOSE TO ADD IT BACK IN
--THIS WORKS - lists ALL information for all donations of item or funds
SELECT
d.person_id,
p.p_fname,
p.p_lname,
p.p_cell_phone,
p.p_email,
p.p_st_address,
p.p_city,
p.p_state,
p.p_zipcode,
d.don_type,
d.don_desc,
d.don_date,
pr.prog_name,
ps.prog_day,
o.org_name,
o.org_email,
o.org_st_address,
o.org_city,
o.org_state,
o.org_zipcode,
o.org_phone
FROM donations d
JOIN organizations o
ON o.org_id = d.org_id
JOIN person p
ON p.person_id = d.person_id
JOIN program_donation pd
ON pd.don_id = d.don_id
JOIN prog_section ps
ON ps.prog_sec = pd.prog_sec
JOIN program pr
ON pr.prog_id = ps.prog_id
WHERE don_type = "Item"
OR don_type = "Funds"
Order by d.don_id
--THIS WILL WORK FOR YOUR DONATIONS (OF ITEM OR FUNDS) BY KEYWORD SEARCH
--THIS WORKS - to find a don_desc from the list of all information for all donations (of item or funds) using don_desc
SELECT
d.person_id,
p.p_fname,
p.p_lname,
p.p_cell_phone,
p.p_email,
p.p_st_address,
p.p_city,
p.p_state,
p.p_zipcode,
d.don_type,
d.don_desc,
d.don_date,
pr.prog_name,
ps.prog_day,
o.org_name,
o.org_email,
o.org_st_address,
o.org_city,
o.org_state,
o.org_zipcode,
o.org_phone
FROM donations d
JOIN organizations o
ON o.org_id = d.org_id
AND d.don_desc = :don_desc
JOIN person p
ON p.person_id = d.person_id
JOIN program_donation pd
ON pd.don_id = d.don_id
JOIN prog_section ps
ON ps.prog_sec = pd.prog_sec
JOIN program pr
ON pr.prog_id = ps.prog_id
WHERE don_type = "Item"
OR don_type = "Funds"
Order by d.don_id
--THIS WILL WORK FOR YOUR DONATIONS (OF ITEM OR FUNDS) BY PROGRAM SEARCH
--THIS WORKS - to find all donations from the list of all information for all donations (of item or funds) using prog_id
SELECT
d.person_id,
p.p_fname,
p.p_lname,
p.p_cell_phone,
p.p_email,
p.p_st_address,
p.p_city,
p.p_state,
p.p_zipcode,
d.don_type,
d.don_desc,
d.don_date,
pr.prog_name,
ps.prog_day,
o.org_name,
o.org_email,
o.org_st_address,
o.org_city,
o.org_state,
o.org_zipcode,
o.org_phone
FROM donations d
JOIN organizations o
ON o.org_id = d.org_id
JOIN person p
ON p.person_id = d.person_id
JOIN program_donation pd
ON pd.don_id = d.don_id
JOIN prog_section ps
ON ps.prog_sec = pd.prog_sec
JOIN program pr
ON pr.prog_id = ps.prog_id
AND pr.prog_id = :prog_id
WHERE don_type = "Item"
OR don_type = "Funds"
Order by d.don_id
--THIS WILL WORK FOR YOUR DONATIONS (OF ITEM OR FUNDS) BY PERSON SEARCH
--THIS WORKS - to find a certain person from the list of all information for all donations (of item or funds) using person_id
SELECT
d.person_id,
p.p_fname,
p.p_lname,
p.p_cell_phone,
p.p_email,
p.p_st_address,
p.p_city,
p.p_state,
p.p_zipcode,
d.don_type,
d.don_desc,
d.don_date,
pr.prog_name,
ps.prog_day,
o.org_name,
o.org_email,
o.org_st_address,
o.org_city,
o.org_state,
o.org_zipcode,
o.org_phone
FROM donations d
JOIN organizations o
ON o.org_id = d.org_id
JOIN person p
ON p.person_id = d.person_id
AND d.person_id = :person_id
JOIN program_donation pd
ON pd.don_id = d.don_id
JOIN prog_section ps
ON ps.prog_sec = pd.prog_sec
JOIN program pr
ON pr.prog_id = ps.prog_id
WHERE don_type = "Item"
OR don_type = "Funds"
Order by d.don_id
--THIS WILL WORK FOR YOUR DONATIONS (OF ITEM OR FUNDS) BY ORGANIZATION SEARCH
--THIS WORKS - to find a certain organization and its information from the list of all information for all donations (of item or funds) using org_id
SELECT
d.person_id,
p.p_fname,
p.p_lname,
p.p_cell_phone,
p.p_email,
p.p_st_address,
p.p_city,
p.p_state,
p.p_zipcode,
d.don_type,
d.don_desc,
d.don_date,
pr.prog_name,
ps.prog_day,
o.org_name,
o.org_email,
o.org_st_address,
o.org_city,
o.org_state,
o.org_zipcode,
o.org_phone
FROM donations d
JOIN organizations o
ON o.org_id = d.org_id
AND d.org_id = :org_id
JOIN person p
ON p.person_id = d.person_id
JOIN program_donation pd
ON pd.don_id = d.don_id
JOIN prog_section ps
ON ps.prog_sec = pd.prog_sec
JOIN program pr
ON pr.prog_id = ps.prog_id
WHERE don_type = "Item"
OR don_type = "Funds"
Order by d.don_id
--THIS WILL WORK FOR AN ALL ACTUAL VOLUNTEERS (OF TIME OR SERVICE) IF YOU WOULD LIKE TO ADD, BUT NOT NECCESSARY. (IN ADDITION TO THE POSSIBLE VOLUNTEERS W/SKILLS LIST)
--THIS WORKS - lists all information for all donations of Time or Service
SELECT
d.person_id,
p.p_fname,
p.p_lname,
p.p_cell_phone,
p.p_email,
p.p_st_address,
p.p_city,
p.p_state,
p.p_zipcode,
d.don_type,
d.don_desc,
d.don_date,
pr.prog_name,
ps.prog_day,
o.org_name,
o.org_email,
o.org_st_address,
o.org_city,
o.org_state,
o.org_zipcode,
o.org_phone
FROM donations d
JOIN organizations o
ON o.org_id = d.org_id
JOIN person p
ON p.person_id = d.person_id
JOIN program_donation pd
ON pd.don_id = d.don_id
JOIN prog_section ps
ON ps.prog_sec = pd.prog_sec
JOIN program pr
ON pr.prog_id = ps.prog_id
WHERE don_type = "Time"
OR don_type = "Service"
Order by d.don_id
--THIS WILL WORK FOR YOUR VOLUNTEER LSIT (OF TIME OR SERVICE) BY PROGRAM SEARCH
--THIS WORKS - to find all Volunteers for a certain prog_name from the list of all information for all donations (of Servie or Time) using prog_name
SELECT
d.person_id,
p.p_fname,
p.p_lname,
p.p_cell_phone,
p.p_email,
p.p_st_address,
p.p_city,
p.p_state,
p.p_zipcode,
d.don_type,
d.don_desc,
d.don_date,
pr.prog_name,
ps.prog_day,
o.org_name,
o.org_email,
o.org_st_address,
o.org_city,
o.org_state,
o.org_zipcode,
o.org_phone
FROM donations d
JOIN organizations o
ON o.org_id = d.org_id
JOIN person p
ON p.person_id = d.person_id
JOIN program_donation pd
ON pd.don_id = d.don_id
JOIN prog_section ps
ON ps.prog_sec = pd.prog_sec
JOIN program pr
ON pr.prog_id = ps.prog_id
AND pr.prog_id = :prog_id
WHERE don_type = "Service"
OR don_type = "Time"
Order by d.don_id
--THIS WILL WORK FOR YOUR VOLUNTEER LSIT (OF TIME OR SERVICE) BY PERSON SEARCH
--THIS WORKS - to find a certain person from the list of all information for all donations (of Time or Service) using person_id
SELECT
d.person_id,
p.p_fname,
p.p_lname,
p.p_cell_phone,
p.p_email,
p.p_st_address,
p.p_city,
p.p_state,
p.p_zipcode,
d.don_type,
d.don_desc,
d.don_date,
pr.prog_name,
ps.prog_day,
o.org_name,
o.org_email,
o.org_st_address,
o.org_city,
o.org_state,
o.org_zipcode,
o.org_phone
FROM donations d
JOIN organizations o
ON o.org_id = d.org_id
JOIN person p
ON p.person_id = d.person_id
AND d.person_id = :person_id
JOIN program_donation pd
ON pd.don_id = d.don_id
JOIN prog_section ps
ON ps.prog_sec = pd.prog_sec
JOIN program pr
ON pr.prog_id = ps.prog_id
WHERE don_type = "Time"
OR don_type = "Service"
Order by d.don_id
--THIS WILL WORK FOR YOUR VOLUNTEER LSIT (OF TIME OR SERVICE) BY ORGANIZATION SEARCH
--THIS WORKS - to get a list of all Volunteers from a certain organization and its information for all donations (of item or funds) using org_id
SELECT
d.person_id,
p.p_fname,
p.p_lname,
p.p_cell_phone,
p.p_email,
p.p_st_address,
p.p_city,
p.p_state,
p.p_zipcode,
d.don_type,
d.don_desc,
d.don_date,
pr.prog_name,
ps.prog_day,
o.org_name,
o.org_email,
o.org_st_address,
o.org_city,
o.org_state,
o.org_zipcode,
o.org_phone
FROM donations d
JOIN organizations o
ON o.org_id = d.org_id
AND d.org_id = :org_id
JOIN person p
ON p.person_id = d.person_id
JOIN program_donation pd
ON pd.don_id = d.don_id
JOIN prog_section ps
ON ps.prog_sec = pd.prog_sec
JOIN program pr
ON pr.prog_id = ps.prog_id
WHERE don_type = "Time"
OR don_type = "Service"
Order by d.don_id
--THIS WILL WORK FOR YOUR VOLUNTEER LIST (OF TIME OR SERVICE) BY ORGANIZATION AND PROGRAM SEARCH
--THIS WORKS - to get a list of all Volunteers from a certain organization and its information from the list of all information for all donations (of Time or Service) using org_id and prog_id
SELECT
d.person_id,
p.p_fname,
p.p_lname,
p.p_cell_phone,
p.p_email,
p.p_st_address,
p.p_city,
p.p_state,
p.p_zipcode,
d.don_type,
d.don_desc,
d.don_date,
pr.prog_name,
ps.prog_day,
o.org_name,
o.org_email,
o.org_st_address,
o.org_city,
o.org_state,
o.org_zipcode,
o.org_phone
FROM donations d
JOIN organizations o
ON o.org_id = d.org_id
AND d.org_id = :org_id
JOIN person p
ON p.person_id = d.person_id
JOIN program_donation pd
ON pd.don_id = d.don_id
JOIN prog_section ps
ON ps.prog_sec = pd.prog_sec
JOIN program pr
ON pr.prog_id = ps.prog_id
AND pd.prog_id = :prog_id
WHERE don_type = "Time"
OR don_type = "Service"
Order by d.don_id
--THIS WILL WORK FOR YOUR VOLUNTEER LSIT (OF TIME OR SERVICE) BY DAY SEARCH
--THIS WORKS - to find a Volunteers from the list of all information for all donations (of Time or Service) using prog_day
SELECT
d.person_id,
p.p_fname,
p.p_lname,
p.p_cell_phone,
p.p_email,
p.p_st_address,
p.p_city,
p.p_state,
p.p_zipcode,
d.don_type,
d.don_desc,
d.don_date,
pr.prog_name,
ps.prog_day,
o.org_name,
o.org_email,
o.org_st_address,
o.org_city,
o.org_state,
o.org_zipcode,
o.org_phone
FROM donations d
JOIN organizations o
ON o.org_id = d.org_id
JOIN person p
ON p.person_id = d.person_id
JOIN program_donation pd
ON pd.don_id = d.don_id
JOIN prog_section ps
ON ps.prog_sec = pd.prog_sec
AND ps.prog_day = :prog_day
JOIN program pr
ON pr.prog_id = ps.prog_id
WHERE don_type = "Time"
OR don_type = "Service"
Order by d.don_id
--get kids who havv been enrolled but not currently enrolled in any active sections
SELECT e.c_id,
c.c_fname,
c.c_gender,
c.c_lname,
c.c_grade,
TIMESTAMPDIFF(YEAR, c.c_dob, CURDATE()) AS age,
c.c_city,
c.c_st_address,
c.c_school,
e.person_id,
p.p_fname,
p.p_lname,
e.e_num,
p.p_cell_phone
FROM child c
JOIN enrollment e
ON c.c_id = e.c_id
JOIN transportation t
ON c.c_id = t.c_id
AND e.prog_sec = t.prog_sec
JOIN prog_section ps
ON ps.prog_sec = t.prog_sec
JOIN program pr
ON ps.prog_id = pr.prog_id
jOIN person p
ON e.person_id = p.person_id
WHERE e.c_id NOT IN(
SELECT e.c_id
FROM child c
JOIN enrollment e
ON c.c_id = e.c_id
JOIN transportation t
ON c.c_id = t.c_id
AND e.prog_sec = t.prog_sec
JOIN prog_section ps
ON ps.prog_sec = t.prog_sec
JOIN program pr
ON ps.prog_id = pr.prog_id
jOIN person p
ON e.person_id = p.person_id
WHERE ps.prog_sec_active = true
)
GROUP BY c.c_id
ORDER BY c.c_lname,c.c_fname |
CREATE TABLE tx_f2portfolio_domain_model_project (
uid int(11) NOT NULL auto_increment,
pid int(11) DEFAULT '0' NOT NULL,
name tinytext,
description tinytext,
outstanding tinyint(1) unsigned DEFAULT '0' NOT NULL,
date int(11) DEFAULT '0' NOT NULL,
tags int(11) unsigned DEFAULT '0' NOT NULL,
images varchar(100) DEFAULT '',
tstamp int(11) unsigned DEFAULT '0' NOT NULL,
crdate int(11) unsigned DEFAULT '0' NOT NULL,
deleted tinyint(4) unsigned DEFAULT '0' NOT NULL,
hidden tinyint(4) unsigned DEFAULT '0' NOT NULL,
t3ver_oid int(11) DEFAULT '0' NOT NULL,
t3ver_id int(11) DEFAULT '0' NOT NULL,
t3ver_wsid int(11) DEFAULT '0' NOT NULL,
t3ver_label varchar(30) DEFAULT '' NOT NULL,
t3ver_state tinyint(4) DEFAULT '0' NOT NULL,
t3ver_stage tinyint(4) DEFAULT '0' NOT NULL,
t3ver_count int(11) DEFAULT '0' NOT NULL,
t3ver_tstamp int(11) DEFAULT '0' NOT NULL,
t3_origuid int(11) DEFAULT '0' NOT NULL,
sys_language_uid int(11) DEFAULT '0' NOT NULL,
l18n_parent int(11) DEFAULT '0' NOT NULL,
l18n_diffsource mediumblob NOT NULL,
PRIMARY KEY (uid),
KEY parent (pid)
);
CREATE TABLE tx_f2portfolio_domain_model_tag (
uid int(11) NOT NULL auto_increment,
pid int(11) DEFAULT '0' NOT NULL,
name tinytext,
description tinytext,
projects int(11) unsigned DEFAULT '0' NOT NULL,
tstamp int(11) unsigned DEFAULT '0' NOT NULL,
crdate int(11) unsigned DEFAULT '0' NOT NULL,
deleted tinyint(4) unsigned DEFAULT '0' NOT NULL,
hidden tinyint(4) unsigned DEFAULT '0' NOT NULL,
t3ver_oid int(11) DEFAULT '0' NOT NULL,
t3ver_id int(11) DEFAULT '0' NOT NULL,
t3ver_wsid int(11) DEFAULT '0' NOT NULL,
t3ver_label varchar(30) DEFAULT '' NOT NULL,
t3ver_state tinyint(4) DEFAULT '0' NOT NULL,
t3ver_stage tinyint(4) DEFAULT '0' NOT NULL,
t3ver_count int(11) DEFAULT '0' NOT NULL,
t3ver_tstamp int(11) DEFAULT '0' NOT NULL,
t3_origuid int(11) DEFAULT '0' NOT NULL,
sys_language_uid int(11) DEFAULT '0' NOT NULL,
l18n_parent int(11) DEFAULT '0' NOT NULL,
l18n_diffsource mediumblob NOT NULL,
PRIMARY KEY (uid),
KEY parent (pid)
);
CREATE TABLE tx_f2portfolio_domain_model_images (
uid int(11) NOT NULL auto_increment,
pid int(11) DEFAULT '0' NOT NULL,
name tinytext,
file tinytext,
alttext tinytext,
longdesc tinytext,
description tinytext,
tstamp int(11) unsigned DEFAULT '0' NOT NULL,
crdate int(11) unsigned DEFAULT '0' NOT NULL,
deleted tinyint(4) unsigned DEFAULT '0' NOT NULL,
hidden tinyint(4) unsigned DEFAULT '0' NOT NULL,
t3ver_oid int(11) DEFAULT '0' NOT NULL,
t3ver_id int(11) DEFAULT '0' NOT NULL,
t3ver_wsid int(11) DEFAULT '0' NOT NULL,
t3ver_label varchar(30) DEFAULT '' NOT NULL,
t3ver_state tinyint(4) DEFAULT '0' NOT NULL,
t3ver_stage tinyint(4) DEFAULT '0' NOT NULL,
t3ver_count int(11) DEFAULT '0' NOT NULL,
t3ver_tstamp int(11) DEFAULT '0' NOT NULL,
t3_origuid int(11) DEFAULT '0' NOT NULL,
sys_language_uid int(11) DEFAULT '0' NOT NULL,
l18n_parent int(11) DEFAULT '0' NOT NULL,
l18n_diffsource mediumblob NOT NULL,
PRIMARY KEY (uid),
KEY parent (pid)
);
CREATE TABLE tx_f2portfolio_project_tag_mm (
uid int(10) NOT NULL auto_increment,
pid int(11) DEFAULT '0' NOT NULL,
uid_local int(11) unsigned DEFAULT '0' NOT NULL,
uid_foreign int(11) unsigned DEFAULT '0' NOT NULL,
tablenames varchar(255) DEFAULT '' NOT NULL,
sorting int(11) unsigned DEFAULT '0' NOT NULL,
sorting_foreign int(11) unsigned DEFAULT '0' NOT NULL,
tstamp int(10) unsigned DEFAULT '0' NOT NULL,
crdate int(10) unsigned DEFAULT '0' NOT NULL,
hidden tinyint(3) unsigned DEFAULT '0' NOT NULL,
PRIMARY KEY (uid),
KEY parent (pid)
); |
SELECT CONTRACT_INFO.CONTRACT_NO,
CASE WHEN CONTRACT_INFO.CONTRACT_CONDITION <= /*constDto.contractConditionFrom*/'20'
----------------------------------------------------------------------------------------------------mult
--OR CONTRACT_INFO.ACCEPTANCE_CHECK_DATE >
OR CONVERT(DATE,P07.END_DATE) >
----------------------------------------------------------------------------------------------------
CONVERT(DATE,/*paramDto.targetYmLastDay*/'31-Jan-2012') OR P07.END_DATE IS NULL THEN /*constDto.monthlyExecuteConfirmedFlg0*/'0'
ELSE /*constDto.monthlyExecuteConfirmedFlg1*/'1' END AS MONTHLY_EXECUTE_CONFIRMED_FLG,
----------------------------------------------------------------------------------------------------mult
--CONTRACT_INFO.CUSTOMER_ACTUAL_NATIONALITY,
CUSTOMER_MST.ACTUAL_NATIONALITY AS CUSTOMER_ACTUAL_NATIONALITY,
----------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------mult
-- CASE WHEN COALESCE(COALESCE(CONTRACT_INFO.CUSTOMER_ACTUAL_NATIONALITY, CONTRACT_INFO.CUSTOMER_NATIONALITY), constDto.nationality700'700') = constDto.nationality111'111'
CASE WHEN COALESCE(COALESCE(CUSTOMER_MST.ACTUAL_NATIONALITY, CUSTOMER_MST.NATIONALITY), /*constDto.nationality700*/'700') = /*constDto.nationality111*/'111'
----------------------------------------------------------------------------------------------------
THEN /*constDto.japaneseCase0*/'0' ELSE /*constDto.japaneseCase1*/'1' END AS JAPANESE_FLG,
CONTRACT_INFO.SANCTION_DIVISION,
CONTRACT_INFO.CUSTOMER_CODE,
----------------------------------------------------------------------------------------------------mult
--CONTRACT_INFO.CUSTOMER_ARTIFICIAL_INDIVIDUAL_FLG,
CUSTOMER_MST.CUSTOMER_KBN AS CUSTOMER_ARTIFICIAL_INDIVIDUAL_FLG,
----------------------------------------------------------------------------------------------------
CONTRACT_INFO.CASE_NO,
CONTRACT_INFO.TRADE_MORPHOLOGY,
CONTRACT_INFO.DEALING_TYPE,
CONTRACT_INFO.BUSINESS_DISCUSSION_DEPT_NAME,
CASE WHEN COALESCE(CONTRACT_INFO.BUSINESS_DISCUSSION_DEPT_NAME, '') = ''
THEN /*constDto.coworkerKbn2*/'2' ELSE /*constDto.coworkerKbn1*/'1' END AS COWORKER_KBN,
CONTRACT_INFO.KEY_CURRENCY_ID,
----------------------------------------------------------------------------------------------------mult
--CONTRACT_INFO.OBTAIN_SUM_TOTAL,
--CONTRACT_INFO.OBTAIN_SUM_TOTAL - COALESCE(CONTRACT_INFO.PREPAY_FEE, 0) - CONTRACT_INFO.DOWNPAY AS CREDIT_AMT,
--CONTRACT_INFO.REMAINDER_AMOUNT,
CONTRACT_INFO.OBTAIN_SUM_TOTAL_NO_VAT AS OBTAIN_SUM_TOTAL,
CONTRACT_INFO.OBTAIN_SUM_TOTAL_NO_VAT - COALESCE(CONTRACT_INFO.PREPAY_FEE_NO_VAT, 0) - CONTRACT_INFO.DOWNPAY_NO_VAT AS CREDIT_AMT,
CONTRACT_INFO.REMAINDER_AMOUNT_NO_VAT AS REMAINDER_AMOUNT,
----------------------------------------------------------------------------------------------------
CONTRACT_INFO.GROSS_MARGIN_PRESENT_VALUE,
CONTRACT_INFO.CONTRACT_PERIOD,
COALESCE(CONTRACT_INFO.CONTRACT_BASIC_SPREAD, 0) AS CONTRACT_BASIC_SPREAD,
----------------------------------------------------------------------------------------------------mult
--COALESCE(CONTRACT_INFO.RISK_PREMIUM, 0) AS RISK_PREMIUM,
COALESCE(CONTRACT_INFO.CONTRACT_BASIC_INTEREST_RATE, 0) AS RISK_PREMIUM,
----------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------mult
--COALESCE(CONTRACT_INFO.SURFACE_RATE, 0) AS SURFACE_RATE,
COALESCE(CONTRACT_INFO.EARNINGS_RATE, 0) AS SURFACE_RATE,
----------------------------------------------------------------------------------------------------
CONTRACT_INFO.RATE_TYPE,
CONTRACT_INFO.JUDGE_CONTRACT_DATE,
CASE WHEN CONTRACT_INFO.CONTRACT_CONDITION <= /*constDto.contractConditionFrom*/'20'
THEN CONTRACT_INFO.ACCEPTANCE_CHECK_SCHEDULED_DATE
ELSE CONTRACT_INFO.ACCEPTANCE_CHECK_DATE END AS JUDGE_CHECK_DATE,
-- 親会社名
-- CASE WHEN 同一体親会社名 Is Not Null THEN 同一体親会社名 & 改行 ELSE '' END
(CASE WHEN CUSTOMER_MST.COMBINED_PARENT_COMPANY_NAME IS NOT NULL THEN CUSTOMER_MST.COMBINED_PARENT_COMPANY_NAME + CHAR(10) ELSE '' END
+ CUSTOMER_MST.PARENT_COMPANY_NAME +
CASE WHEN CUSTOMER_MST.PC_INVESTMENT_RATIO IS NOT NULL THEN CAST(CUSTOMER_MST.PC_INVESTMENT_RATIO AS VARCHAR) + '%' ELSE ''END
) AS PARENT_COMPANY_NAME,
CONTRACT_INFO.END_AGREEMENT_CONTRACT_DATE,
----------------------------------------------------------------------------------------------------mult
--COALESCE(CUSTOMER_MST.CUSTOMER_ABBR_ENG, CUSTOMER_MST.CUSTOMER_NAME) AS CUSTOMER_NAME,
CUSTOMER_MST.CUSTOMER_NAME AS CUSTOMER_NAME,
----------------------------------------------------------------------------------------------------
----------------------------------------------------------------------------------------------------mult
--LEFT(COALESCE(CUSTOMER_MST.LEGAL_DOMICILE, ''), 2) AS CUSTOMER_AREA,
'' AS CUSTOMER_AREA,
----------------------------------------------------------------------------------------------------
CM1.CODE_NAME AS RANKING_NAME,
CM2.CODE_NAME AS ITEM_NAME,
LAST_CONFIRMED_STATE.CONFIRMED_FLG AS LAST_CONFIRMED_FLG,
LAST_CONFIRMED_STATE.ACCEPTANCE_CHECK_DATE AS LAST_ACCEPTANCE_CHECK_DATE,
REPORT_CONTENTS.REPORT_BASE_DATE AS OLD_REPORT_BASE_DATE,
REPORT_CONTENTS.REPORT_LINE_NO AS OLD_REPORT_LINE_NO,
REPORT_CONTENTS.CONFIRMED_FLG AS OLD_CONFIRMED_FLG,
REPORT_CONTENTS.CUSTOMER_ACTUAL_NATIONALITY AS OLD_CUSTOMER_ACTUAL_NATIONALITY,
REPORT_CONTENTS.JAPANESE_CASE AS OLD_JAPANESE_CASE,
REPORT_CONTENTS.SANCTION_DIVISION AS OLD_SANCTION_DIVISION,
REPORT_CONTENTS.CUSTOMER_CODE AS OLD_CUSTOMER_CODE,
REPORT_CONTENTS.CUSTOMER_RANKING AS OLD_CUSTOMER_RANKING,
----------------------------------------------------------------------------------------------------mult
--REPORT_CONTENTS.CUSTOMER_NEW_EXISTING AS OLD_CUSTOMER_NEW_EXISTING,
ISNULL(REPORT_CONTENTS.CUSTOMER_NEW_EXISTING,
CASE WHEN
(SELECT COUNT(*)
FROM CONTRACT_INFO C1
WHERE ((C1.CONTRACT_CONDITION > /*constDto.contractConditionFrom*/'20'
AND C1.CONTRACT_CONDITION < /*constDto.contractConditionTo*/'52'
AND C1.END_DATE > /*paramDto.lastPeriodLastDay*/'31-Dec-2011')
OR (C1.CONTRACT_CONDITION = /*constDto.contractConditionTo*/'52'
AND C1.END_AGREEMENT_DATE > /*paramDto.lastPeriodLastDay*/'31-Dec-2011'))
AND C1.ACCEPTANCE_CHECK_DATE <= /*paramDto.lastPeriodLastDay*/'31-Dec-2011'
AND C1.CUSTOMER_CODE = CONTRACT_INFO.CUSTOMER_CODE
AND C1.CONTRACT_NO <> CONTRACT_INFO.CONTRACT_NO ) > 0
THEN /*constDto.executeKbn2*/'2'
ELSE /*constDto.executeKbn1*/'1' END
)AS OLD_CUSTOMER_NEW_EXISTING,
----------------------------------------------------------------------------------------------------
REPORT_CONTENTS.CUSTOMER_NAME AS OLD_CUSTOMER_NAME,
REPORT_CONTENTS.PARENT_COMPANY_NAME AS OLD_PARENT_COMPANY_NAME,
REPORT_CONTENTS.CASE_NO AS OLD_CASE_NO,
REPORT_CONTENTS.TRADE_MORPHOLOGY AS OLD_TRADE_MORPHOLOGY,
REPORT_CONTENTS.DEALING_TYPE AS OLD_DEALING_TYPE,
REPORT_CONTENTS.ITEM_CODE AS OLD_ITEM_CODE,
REPORT_CONTENTS.CUSTOMER_PROVINCE AS OLD_CUSTOMER_PROVINCE,
REPORT_CONTENTS.BUSINESS_DISCUSSION_DEPT_NAME AS OLD_BUSINESS_DISCUSSION_DEPT_NAME ,
REPORT_CONTENTS.COWORK_FLG AS OLD_COWORK_FLG,
REPORT_CONTENTS.KEY_CURRENCY_ID AS OLD_KEY_CURRENCY_ID,
REPORT_CONTENTS.OBTAIN_SUM_TOTAL AS OLD_OBTAIN_SUM_TOTAL,
REPORT_CONTENTS.NET_FINANCE AS OLD_NET_FINANCE,
REPORT_CONTENTS.REMAINDER_AMOUNT AS OLD_REMAINDER_AMOUNT,
REPORT_CONTENTS.GROSS_MARGIN_PRESENT_VALUE AS OLD_GROSS_MARGIN_PRESENT_VALUE,
REPORT_CONTENTS.CONTRACT_PERIOD AS OLD_CONTRACT_PERIOD,
REPORT_CONTENTS.CONTRACT_BASIC_SPREAD AS OLD_CONTRACT_BASIC_SPREAD,
REPORT_CONTENTS.RISK_PREMIUM AS OLD_RISK_PREMIUM,
REPORT_CONTENTS.SURFACE_RATE AS OLD_SURFACE_RATE,
REPORT_CONTENTS.RATE_TYPE AS OLD_RATE_TYPE,
REPORT_CONTENTS.CONTRACT_DATE AS OLD_CONTRACT_DATE,
REPORT_CONTENTS.ACCEPTANCE_CHECK_DATE AS OLD_ACCEPTANCE_CHECK_DATE,
REPORT_CONTENTS.END_AGREEMENT_CONTRACT_DATE AS OLD_END_AGREEMENT_CONTRACT_DATE
----------------------------------------------------------------------------------------------------mult
,P05.END_DATE AS SIGN_APPLICATION_DATE
,P07.END_DATE AS DRAW_DOWN_APPLICATION_DATE
----------------------------------------------------------------------------------------------------
FROM (SELECT *,
----------------------------------------------------------------------------------------------------mult
--COALESCE(CONTRACT_DATE, CONTRACT_SCHEDULED_DATE) AS JUDGE_CONTRACT_DATE
CONTRACT_DATE AS JUDGE_CONTRACT_DATE
----------------------------------------------------------------------------------------------------
FROM CONTRACT_INFO
WHERE CONTRACT_INFO.CONTRACT_CONDITION < /*constDto.contractConditionTo*/'52'
AND CONTRACT_INFO.CANCAL_STATE = /*constDto.cancelState1*/'1'
AND NOT CONTRACT_NO IN (SELECT CONTRACT_NO
FROM MONTHRY_EXECUTE_REPORT_DATA
WHERE REPORT_BASE_DATE = /*paramDto.targetYmLastDay*/'31-Jan-2012')) CONTRACT_INFO
INNER JOIN CUSTOMER_MST ON CONTRACT_INFO.CUSTOMER_CODE = CUSTOMER_MST.CUSTOMER_CODE
LEFT JOIN CODE_MASTER CM1 ON CM1.CODE_TYPE = /*constDto.rankingCodeType*/'216'
AND CM1.COUNTRY_ID = /*countryId*/'86'
----------------------------------------------------------------------------------------------------mult
--AND CM1.CODE_ID = CUSTOMER_MST.RANKING
AND CM1.CODE_ID = CUSTOMER_MST.OTHERS_DROPDOWN1
----------------------------------------------------------------------------------------------------
INNER JOIN (SELECT CONTRACT_NO,
----------------------------------------------------------------------------------------------------mult
--ITEM_CODE,
SUPPLIES_NO,
----------------------------------------------------------------------------------------------------
ROW_NUMBER() OVER (PARTITION BY CONTRACT_NO ORDER BY SUPPLIES_NO) AS ROWNUM
FROM CONTRACT_SUPPLIES_INFO) CONTRACT_SUPPLIES_INFO ON CONTRACT_SUPPLIES_INFO.ROWNUM = 1
AND CONTRACT_SUPPLIES_INFO.CONTRACT_NO = CONTRACT_INFO.CONTRACT_NO
----------------------------------------------------------------------------------------------------mult
INNER JOIN OBJ_GOODS_INFO ON OBJ_GOODS_INFO.SUPPLIES_NO = CONTRACT_SUPPLIES_INFO.SUPPLIES_NO
----------------------------------------------------------------------------------------------------
LEFT JOIN CODE_MASTER CM2 ON CM2.CODE_TYPE = /*constDto.itemCodeType*/'174'
AND CM2.COUNTRY_ID = /*countryId*/'86'
----------------------------------------------------------------------------------------------------mult
-- AND CM2.CODE_ID = CONTRACT_SUPPLIES_INFO.ITEM_CODE
AND CM2.CODE_ID = OBJ_GOODS_INFO.ITEM_CODE
----------------------------------------------------------------------------------------------------
INNER JOIN (SELECT CONTRACT_NO,
REPORT_TYPE,
ROW_NUMBER() OVER (PARTITION BY CONTRACT_NO ORDER BY REPORT_BASE_DATE DESC) AS ROWNUM
FROM MONTHRY_EXECUTE_REPORT_DATA
WHERE REPORT_BASE_DATE < /*paramDto.targetYmFirstDay*/'01-Jan-2012') REPORT_TYPE ON REPORT_TYPE.ROWNUM = 1
AND REPORT_TYPE.REPORT_TYPE <> /*constDto.monthlyExecuteReportType2*/'2'
AND CONTRACT_INFO.CONTRACT_NO = REPORT_TYPE.CONTRACT_NO
INNER JOIN (SELECT CONTRACT_NO,
CONFIRMED_FLG,
ACCEPTANCE_CHECK_DATE,
ROW_NUMBER() OVER (PARTITION BY CONTRACT_NO ORDER BY REPORT_BASE_DATE DESC) ROWNUM
FROM MONTHRY_EXECUTE_REPORT_DATA
WHERE REPORT_BASE_DATE < /*paramDto.targetYmFirstDay*/'01-Jan-2012'
AND CANCAL_CORRECT_FLG = /*constDto.cancelCorrectFlg0*/'0') LAST_CONFIRMED_STATE ON LAST_CONFIRMED_STATE.ROWNUM = 1
AND CONTRACT_INFO.CONTRACT_NO = LAST_CONFIRMED_STATE.CONTRACT_NO
LEFT JOIN (SELECT *,
ROW_NUMBER() OVER (PARTITION BY CONTRACT_NO ORDER BY REPORT_BASE_DATE DESC) AS ROWNUM
FROM MONTHRY_EXECUTE_REPORT_DATA
WHERE CANCAL_CORRECT_FLG = /*constDto.cancelCorrectFlg0*/'0'
AND REPORT_BASE_DATE < /*paramDto.targetYmFirstDay*/'01-Jan-2012'
AND REPORT_TYPE <> /*constDto.monthlyExecuteReportType9*/'9') REPORT_CONTENTS ON REPORT_CONTENTS.ROWNUM = 1
AND CONTRACT_INFO.CONTRACT_NO = REPORT_CONTENTS.CONTRACT_NO
----------------------------------------------------------------------------------------------------mult
LEFT JOIN(
SELECT P1.END_DATE AS END_DATE ,P2.CONTACT_KEY AS CONTACT_KEY
FROM
PROCESS_HISTORY_INFO P1
INNER JOIN (SELECT MAX(END_DATE) AS END_DATE ,PROCESS_NO FROM PROCESS_HISTORY_INFO
WHERE ACTION_TYPE in (/*constDto.actionTypeApprove*/'4' ,/*constDto.actionTypeForward*/'1')
AND CONVERT(DATE,END_DATE) <= CONVERT(DATE,/*paramDto.targetYmLastDay*/)
GROUP BY PROCESS_NO) P11
ON P1.PROCESS_NO = P11.PROCESS_NO AND P1.END_DATE = P11.END_DATE
INNER JOIN (SELECT CONTACT_KEY,MAX(PROCESS_NO) AS PROCESS_NO FROM PROCESS_NODE_STATUS
WHERE PROCESS_TYPE=/*constDto.signApplication*/'05'
GROUP BY CONTACT_KEY) P2
ON P1.PROCESS_NO = P2.PROCESS_NO
) P05 ON P05.CONTACT_KEY = CONTRACT_INFO.CONTRACT_NO
LEFT JOIN(
SELECT P1.END_DATE AS END_DATE ,P2.CONTACT_KEY AS CONTACT_KEY
FROM
PROCESS_HISTORY_INFO P1
INNER JOIN (SELECT MAX(END_DATE) AS END_DATE ,PROCESS_NO FROM PROCESS_HISTORY_INFO
WHERE ACTION_TYPE in (/*constDto.actionTypeApprove*/'4' ,/*constDto.actionTypeForward*/'1')
AND CONVERT(DATE,END_DATE) <= CONVERT(DATE,/*paramDto.targetYmLastDay*/)
GROUP BY PROCESS_NO) P11
ON P1.PROCESS_NO = P11.PROCESS_NO AND P1.END_DATE = P11.END_DATE
INNER JOIN (SELECT CONTACT_KEY,MAX(PROCESS_NO) AS PROCESS_NO FROM PROCESS_NODE_STATUS
WHERE PROCESS_TYPE=/*constDto.drawDownApplication*/'07'
GROUP BY CONTACT_KEY) P2
ON P1.PROCESS_NO = P2.PROCESS_NO
) P07 ON P07.CONTACT_KEY = CONTRACT_INFO.CONTRACT_NO
----------------------------------------------------------------------------------------------------
WHERE LAST_CONFIRMED_STATE.CONFIRMED_FLG = /*constDto.monthlyExecuteConfirmedFlg0*/'0'
OR LAST_CONFIRMED_STATE.ACCEPTANCE_CHECK_DATE >= /*paramDto.currentPeriodFirstDay*/'01-Jan-2012' |
REM
REM This is where you can put your own synchronizing for a PDB based on APPLICATIOM CONTAINER
REM
alter pluggable database application DB_APP sync;
REM alter pluggable database application APEX sync;
exit |
create table file_data(
id int primary key auto_increment not null,
filename varchar(200) not null,
filesize int not null,
server_path varchar(200) not null,
metadata text default null,
create_date datetime not null
); |
--MEMBERS--
--city council district
select
city_council_district
,count(distinct enterprise_id)
from analytics.members
where city_council_district in ('CT01','CT03','CT05','CT07','CT09')
and reg_addr_state = 'NM'
and reg_addr_city = 'ALBUQUERQUE'
and is_member is true
and is_registered is true
--likely voters---
and ((e2013gvm is not null and e2011gvm is not null)
or (e2013gvm is not null and e2009gvm is not null)
or (e2013gvm is not null and e2007gvm is not null)
or (e2011gvm is not null and e2009gvm is not null)
or (e2011gvm is not null and e2007gvm is not null)
or (e2009gvm is not null and e2007gvm is not null))
group by 1
order by 1
---partisan score
select
case
when partisan_score > '60' then 'High partisan (60+)'
when partisan_score >= '30' and partisan_score <= '60' then 'Mid partisan (30-60)'
when partisan_score < '30' then 'Low partisan (>30)' else 'unk' end
,count (distinct enterprise_id)
from analytics.members
where reg_addr_state = 'NM'
and reg_addr_city = 'ALBUQUERQUE'
and is_member is true
and is_registered is true
--likely voters---
/*and ((e2013gvm is not null and e2011gvm is not null)
or (e2013gvm is not null and e2009gvm is not null)
or (e2013gvm is not null and e2007gvm is not null)
or (e2011gvm is not null and e2009gvm is not null)
or (e2011gvm is not null and e2007gvm is not null)
or (e2009gvm is not null and e2007gvm is not null))*/
--Districts--
--and city_council_district in ('1','3','5','7','9')
group by 1
order by 1
-- RACE
select
race
,count (distinct enterprise_id)
from analytics.members
where is_member is true
and reg_addr_state = 'NM'
and reg_addr_city = 'ALBUQUERQUE'
--registered members---
and is_registered is true
--likely voters---
/*and ((e2013gvm is not null and e2011gvm is not null)
or (e2013gvm is not null and e2009gvm is not null)
or (e2013gvm is not null and e2007gvm is not null)
or (e2011gvm is not null and e2009gvm is not null)
or (e2011gvm is not null and e2007gvm is not null)
or (e2009gvm is not null and e2007gvm is not null))*/
group by 1
order by 2 desc
;
-- Sex --
select
gender
,count (distinct enterprise_id)
from analytics.members
where is_member is true
and reg_addr_state = 'NM'
and reg_addr_city = 'ALBUQUERQUE'
--registered members---
and is_registered is true
--likely voters---
and ((e2013gvm is not null and e2011gvm is not null)
or (e2013gvm is not null and e2009gvm is not null)
or (e2013gvm is not null and e2007gvm is not null)
or (e2011gvm is not null and e2009gvm is not null)
or (e2011gvm is not null and e2007gvm is not null)
or (e2009gvm is not null and e2007gvm is not null))
group by 1
order by 1
;
--- MEMBER TYPE ---
select
member_type
,count (distinct enterprise_id)
from analytics.members
where member_type in ('Regular','Retiree','Agency Fee Payer')
and reg_addr_state = 'NM'
and reg_addr_city = 'ALBUQUERQUE'
---registered members---
and is_registered is true
--likely voters---
/*and ((e2013gvm is not null and e2011gvm is not null)
or (e2013gvm is not null and e2009gvm is not null)
or (e2013gvm is not null and e2007gvm is not null)
or (e2011gvm is not null and e2009gvm is not null)
or (e2011gvm is not null and e2007gvm is not null)
or (e2009gvm is not null and e2007gvm is not null))*/
group by 1
order by 1
;
--PEOPLE
select
aff_name
,count(distinct enterprise_id)
from analytics.members
where reg_addr_state = 'NM'
and reg_addr_city = 'ALBUQUERQUE'
and aff_state = 'NM'
and people_contributor is not null
and is_registered is true
--likely voters---
/*and ((e2013gvm is not null and e2011gvm is not null)
or (e2013gvm is not null and e2009gvm is not null)
or (e2013gvm is not null and e2007gvm is not null)
or (e2011gvm is not null and e2009gvm is not null)
or (e2011gvm is not null and e2007gvm is not null)
or (e2009gvm is not null and e2007gvm is not null))*/
group by 1
order by 2 desc
;
--- Members by aff
select
aff_name
,count(distinct enterprise_id)
from analytics.members
where is_member is true
and reg_addr_state = 'NM'
and reg_addr_city = 'ALBUQUERQUE'
and aff_state = 'NM'
and is_registered is true
--likely voters---
/*and ((e2013gvm is not null and e2011gvm is not null)
or (e2013gvm is not null and e2009gvm is not null)
or (e2013gvm is not null and e2007gvm is not null)
or (e2011gvm is not null and e2009gvm is not null)
or (e2011gvm is not null and e2007gvm is not null)
or (e2009gvm is not null and e2007gvm is not null))*/
group by 1
order by 2 desc;
--- JOB SECTOR --
SELECT
count(distinct aff_name)
, job_sector
from analytics_staging.jobs_data
where aff_council in ('18')
group by 2
order by 1 desc;
--IVPs
select
ent_first_name
,ent_last_name
from analytics.members
where enterprise_id in ('11064508','12288767','12749761','10028499','10946222','14456366','10557060','11728359','13322616','10350612','13922244','10744007','11117420','10430420','11273142','10216950','10779529','13134966','12126507','14415250','10539848','14343382','10007299','11052176','10406529','10659643','11397153','10350739','13957469','10905705','10457780','11347714')
and county_name in ('NEW YORK','RICHMOND','KINGS','QUEENS','BRONX')
and cat_state_code = 'NY'
--reg status
select
case
when is_registered is true then 'Registered'
else 'Unregistered' end as "Reg Status"
,count (distinct enterprise_id )
from analytics.members
where is_member is true
and reg_addr_state = 'NM'
and reg_addr_city = 'ALBUQUERQUE'
group by 1
order by 1
--HH
select
count(distinct h.dwid||h.cat_state_code)
from analytics.householders h
left join analytics.members using (afscme_hh_id)
where is_member is true
and h.reg_addr_state = 'NM'
and h.reg_addr_city = 'ALBUQUERQUE'
--likely voters---
/*and ((h.e2013gvm is not null and h.e2011gvm is not null)
or (h.e2013gvm is not null and h.e2009gvm is not null)
or (h.e2013gvm is not null and h.e2007gvm is not null)
or (h.e2011gvm is not null and h.e2009gvm is not null)
or (h.e2011gvm is not null and h.e2007gvm is not null)
or (h.e2009gvm is not null and h.e2007gvm is not null))*/
and h.is_registered is true
--data for map
select
enterprise_id
,reg_latitude
,reg_longitude
,partisan_score
from analytics.members
where ((e2013gvm is not null and e2009gvm is not null)
or (e2013gvm is not null and e2005gvm is not null)
or (e2009gvm is not null and e2005gvm is not null))
and reg_addr_state = 'OH'
and reg_addr_city = 'CLEVELAND'
and is_registered is true
and is_member is true
---------GENERAL PUBLIC-----------
--likely electorate, 18,2% based on avg: 2013, 2011, 2009, 2007, 2005
select
sum(case when ts_tsmart_local_voter_score > 42 then 1 else 0 end)::float/count(voterbase_id)
from ts.usa
where vb_vf_reg_state = 'NM'
and vb_vf_reg_city = 'ALBUQUERQUE'
and vb_voterbase_registration_status = 'Registered'
---race
select
vb_vf_city_council
,case
when vb_voterbase_race = 'Caucasian' then 'White'
when vb_voterbase_race = 'Hispanic' then 'Hispanic'
when vb_voterbase_race is null then 'null'
else 'Other' end as race,
count(distinct voterbase_id)
from ts.usa
where vb_voterbase_registration_status = 'Registered'
and vb_vf_reg_state = 'NM'
and vb_vf_reg_city = 'ALBUQUERQUE'
---likely voters---
and ts_tsmart_local_voter_score > 42
and vb_vf_city_council in ('01','03','05','07','09')
group by 1,2
order by 1,3 desc
----SEX
select
vb_vf_city_council
,vb_voterbase_gender
,count(distinct voterbase_id)
from ts.usa
where vb_voterbase_registration_status = 'Registered'
and vb_vf_reg_state = 'NM'
and vb_vf_reg_city = 'ALBUQUERQUE'
---likely voters---
and ts_tsmart_local_voter_score > 42
and vb_vf_city_council in ('01','03','05','07','09')
group by 1, 2
order by 1, 2
----partisanship
select
vb_vf_city_council,
case
when ts_tsmart_partisan_score < '30' then 'Low partisan (>30)'
when ts_tsmart_partisan_score >= '30' and ts_tsmart_partisan_score <= '60' then 'Mid partisan (30-60)'
when ts_tsmart_partisan_score > '60' then 'High partisan (60+)' else 'unk' end
,count (distinct voterbase_id)
from ts.usa
where vb_voterbase_registration_status = 'Registered'
and vb_vf_reg_state = 'NM'
and vb_vf_reg_city = 'ALBUQUERQUE'
and ts_tsmart_local_voter_score > 42
and vb_vf_city_council in ('01','03','05','07','09')
group by 1,2
order by 1,2
|
-- MySQL dump 10.13 Distrib 5.5.59, for Linux (x86_64)
--
-- Host: localhost Database: moodle
-- ------------------------------------------------------
-- Server version 5.5.59
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `mdl_oauth2_issuer`
--
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE IF NOT EXISTS `mdl_oauth2_issuer` (
`id` bigint(10) NOT NULL AUTO_INCREMENT,
`timecreated` bigint(10) NOT NULL,
`timemodified` bigint(10) NOT NULL,
`usermodified` bigint(10) NOT NULL,
`name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT '',
`image` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`baseurl` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`clientid` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`clientsecret` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`loginscopes` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`loginscopesoffline` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`loginparams` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`loginparamsoffline` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`alloweddomains` longtext COLLATE utf8mb4_unicode_ci NOT NULL,
`scopessupported` longtext COLLATE utf8mb4_unicode_ci,
`showonloginpage` tinyint(2) NOT NULL DEFAULT '1',
`basicauth` tinyint(2) NOT NULL DEFAULT '0',
`enabled` tinyint(2) NOT NULL DEFAULT '1',
`sortorder` bigint(10) NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci ROW_FORMAT=COMPRESSED;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `mdl_oauth2_issuer`
--
START TRANSACTION;
/*!40000 ALTER TABLE `mdl_oauth2_endpoint` DISABLE KEYS */;
DELETE FROM `mdl_oauth2_endpoint` WHERE issuerid=(SELECT id FROM `mdl_oauth2_issuer` WHERE mdl_oauth2_issuer.name='${OWNCLOUD_NAME}');
/*!40000 ALTER TABLE `mdl_oauth2_endpoint` ENABLE KEYS */;
/*!40000 ALTER TABLE `mdl_oauth2_user_field_mapping` DISABLE KEYS */;
DELETE FROM `mdl_oauth2_user_field_mapping` WHERE issuerid=(SELECT id FROM `mdl_oauth2_issuer` WHERE mdl_oauth2_issuer.name='${OWNCLOUD_NAME}');
/*!40000 ALTER TABLE `mdl_oauth2_user_field_mapping` ENABLE KEYS */;
/*!40000 ALTER TABLE `mdl_oauth2_issuer` DISABLE KEYS */;
DELETE FROM `mdl_oauth2_issuer` WHERE name='${OWNCLOUD_NAME}';
INSERT INTO `mdl_oauth2_issuer` (timecreated, timemodified, usermodified, name, image, baseurl, clientid, clientsecret, loginscopes, loginscopesoffline, loginparams, loginparamsoffline, alloweddomains, scopessupported, showonloginpage, basicauth, enabled, sortorder) VALUES (1516290702,1516711066,69,'${OWNCLOUD_NAME}','','${OWNCLOUD_URL}','${OWNCLOUD_CLIENT_ID}','${OWNCLOUD_CLIENT_SECRET}','openid profile email','openid profile email','','','',NULL,0,0,1,0);
/*!40000 ALTER TABLE `mdl_oauth2_issuer` ENABLE KEYS */;
COMMIT;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2018-01-26 18:06:34
|
/*
Navicat Premium Data Transfer
Source Server : 本地
Source Server Type : MySQL
Source Server Version : 50717
Source Host : localhost:3306
Source Schema : wk
Target Server Type : MySQL
Target Server Version : 50717
File Encoding : 65001
Date: 10/11/2018 11:41:16
*/
SET NAMES utf8mb4;
SET FOREIGN_KEY_CHECKS = 0;
-- ----------------------------
-- Table structure for wk_account
-- ----------------------------
DROP TABLE IF EXISTS `wk_account`;
CREATE TABLE `wk_account` (
`id` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
`name` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
`user_name` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
`user_id` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
`bank_name` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
`card_number` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
`web_user_name` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
`web_password` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
`seg` int(11) NULL DEFAULT NULL,
`remark` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
`create_time` datetime(0) NULL DEFAULT NULL,
`update_time` datetime(0) NULL DEFAULT NULL,
`opt_id` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '资金账户信息表' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of wk_account
-- ----------------------------
INSERT INTO `wk_account` VALUES ('37395154-bfe9-49e3-a774-a38adc3ea16d', '中行卡', 'administrator', 'b78c71ea-0051-44cc-9bd3-e021b0e1d16d', '中国银行', '165415161561', '123456', '123456', 2, '测试', '2018-11-08 08:37:54', '2018-11-08 08:37:54', NULL);
INSERT INTO `wk_account` VALUES ('fjwoafjoweij', 'fiewjf', 'jfwiejf', NULL, 'jioji', 'o', 'ioj', 'oij', 21, NULL, '2018-11-05 14:06:08', '2018-11-05 14:06:05', 'jio');
-- ----------------------------
-- Table structure for wk_bank
-- ----------------------------
DROP TABLE IF EXISTS `wk_bank`;
CREATE TABLE `wk_bank` (
`id` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
`name` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '银行名称',
`nick_name` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '银行简称',
`seg` int(10) NULL DEFAULT NULL COMMENT '排序值',
`remark` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备注',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '银行列表' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of wk_bank
-- ----------------------------
INSERT INTO `wk_bank` VALUES ('aaaa', '农业银行', '农行', 1, NULL);
INSERT INTO `wk_bank` VALUES ('fawffawefaewfewa', '中国银行', '中行', 1, NULL);
INSERT INTO `wk_bank` VALUES ('jfowejfi', '工商银行', '工行', 1, NULL);
INSERT INTO `wk_bank` VALUES ('ofiwaefowofo', '建设银行', '建行', 1, NULL);
-- ----------------------------
-- Table structure for wk_card
-- ----------------------------
DROP TABLE IF EXISTS `wk_card`;
CREATE TABLE `wk_card` (
`id` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
`customer_id` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '客户ID',
`self` int(1) NULL DEFAULT NULL COMMENT '是否客户自己的卡。1为是,其它为否',
`card_name` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
`name` varchar(16) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
`id_number` char(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
`phone` char(11) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
`bank_name` varchar(16) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
`card_number` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
`password` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
`bill_date` int(11) NULL DEFAULT NULL,
`replay_date` int(11) NULL DEFAULT NULL,
`valid_date` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '有效期',
`total` decimal(10, 2) NULL DEFAULT NULL,
`bill` decimal(10, 2) NULL DEFAULT NULL,
`replay_rate` decimal(3, 2) NULL DEFAULT NULL,
`mini_fee` decimal(10, 2) NULL DEFAULT NULL,
`cash_rate` decimal(3, 2) NULL DEFAULT NULL,
`income` int(11) NULL DEFAULT NULL,
`remark` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
`seg` int(11) NULL DEFAULT NULL,
`create_time` datetime(0) NULL DEFAULT NULL,
`update_time` datetime(0) NULL DEFAULT NULL,
`opt_id` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '客户信用卡信息' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of wk_card
-- ----------------------------
INSERT INTO `wk_card` VALUES ('148c3c93-a731-4cd4-bd3a-de4acae82d1b', 'c2896645-ab6e-4813-88d6-662968edbe8b', 1, '赵鹏运', '共时晃', '165156', '1515615616', '农业银行', '161561', '133123', 2, 20, '2018-11', 50000.00, 4000.00, 0.04, 60.00, 0.06, 2, '肤', 2, '2018-11-07 11:17:39', '2018-11-10 09:55:10', 'b78c71ea-0051-44cc-9bd3-e021b0e1d16d');
INSERT INTO `wk_card` VALUES ('22b4f34e-827b-4dd0-af0d-15f7151b1dec', 'c2896645-ab6e-4813-88d6-662968edbe8b', 1, '中行', '张三', '165156', '1651', '中国银行', '515641561', '132', 5, 15, '2018-11-07', 50000.00, 20000.00, 0.02, 20.00, 0.06, 1, '161 51 51 561 6 ', 2, '2018-11-02 08:41:45', '2018-11-02 08:41:45', NULL);
INSERT INTO `wk_card` VALUES ('9d9091c7-58bc-40e4-8b3b-84863d41ef79', 'c2896645-ab6e-4813-88d6-662968edbe8b', 1, '中行', '张三', '156156', '1561', '农业银行', '651', '516', 156, 165, '2018-11-14', 15000.00, 5000.00, 0.03, 20.00, 0.06, 1, 'awf \n \ne地\n脸', 2, '2018-11-02 11:21:37', NULL, NULL);
INSERT INTO `wk_card` VALUES ('abe58281-b616-463e-b820-14db053c7d99', 'c2896645-ab6e-4813-88d6-662968edbe8b', 2, '中行', '张三', '156156', '1561', '中国银行', '651', '516', 156, 165, '2018-11', 15000.00, 5000.00, 0.03, 20.00, 0.06, 1, 'awf \n \ne地\n脸', 2, '2018-11-02 08:43:02', '2018-11-07 11:15:00', 'b78c71ea-0051-44cc-9bd3-e021b0e1d16d');
INSERT INTO `wk_card` VALUES ('fde56175-6d9a-4804-9b1e-ce31597809bd', 'c2896645-ab6e-4813-88d6-662968edbe8b', 1, '中行', '张三', '16545615', '165156', '中国银行', '4165515', '15', 15, 15, '2018-11-29', 51515.00, 1510.00, 0.03, 30.00, 0.60, 1, '216 1256 165 156 ', 1, '2018-11-02 08:38:26', '2018-11-02 08:38:26', NULL);
-- ----------------------------
-- Table structure for wk_customer
-- ----------------------------
DROP TABLE IF EXISTS `wk_customer`;
CREATE TABLE `wk_customer` (
`id` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
`name` varchar(16) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
`id_number` char(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
`phone` char(11) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
`worker_id` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
`font_img` varchar(512) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
`after_img` varchar(512) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
`home_img` varchar(512) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
`remark` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
`seg` int(11) NULL DEFAULT NULL,
`create_time` datetime(0) NULL DEFAULT NULL,
`update_time` datetime(0) NULL DEFAULT NULL,
`opt_id` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '客户信息表' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of wk_customer
-- ----------------------------
INSERT INTO `wk_customer` VALUES ('', '项羽', '11651651561', '13625865421', 'b78c71ea-0051-44cc-9bd3-e021b0e1d16d', '11', '1', '1', '1替 地', 1, '2018-11-01 08:45:09', '2018-11-07 07:54:41', 'b78c71ea-0051-44cc-9bd3-e021b0e1d16d');
INSERT INTO `wk_customer` VALUES ('c2896645-ab6e-4813-88d6-662968edbe8b', '刘备', '16165', '131656', 'b78c71ea-0051-44cc-9bd3-e021b0e1d16d', '05f85c8d-9625-495d-9042-04fd924585d5/77272e6f-abe3-4e90-9b1e-bc699a4702e0.jpg', '05f85c8d-9625-495d-9042-04fd924585d5/dbd10184-8138-41f0-a49c-0f09b7d59f06.jpg', '05f85c8d-9625-495d-9042-04fd924585d5/83e2d06c-be61-4a18-84e7-dcad8f9279d8.jpg', 'ffewefwafew', 2, '2018-11-01 07:17:52', '2018-11-07 07:53:59', 'b78c71ea-0051-44cc-9bd3-e021b0e1d16d');
-- ----------------------------
-- Table structure for wk_mall
-- ----------------------------
DROP TABLE IF EXISTS `wk_mall`;
CREATE TABLE `wk_mall` (
`id` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
`name` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '商户名称',
`nick_name` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '商户简称',
`seg` int(10) NULL DEFAULT NULL COMMENT '排序值',
`remark` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备注',
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '商户列表' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Table structure for wk_model
-- ----------------------------
DROP TABLE IF EXISTS `wk_model`;
CREATE TABLE `wk_model` (
`id` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
`name` varchar(16) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
`icon` varchar(128) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '图标类名',
`remark` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
`seg` int(11) NULL DEFAULT NULL,
`create_time` datetime(0) NULL DEFAULT NULL,
`update_time` datetime(0) NULL DEFAULT NULL,
`opt_id` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '操作模块表' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of wk_model
-- ----------------------------
INSERT INTO `wk_model` VALUES ('24c2a625-18ab-495c-885b-ae06f539a1e9', '组织管理', NULL, '系统组织树结构', 2, '2018-11-05 21:01:05', '2018-11-05 21:01:05', NULL);
INSERT INTO `wk_model` VALUES ('5ca012d4-942b-46e7-9fa1-d4b500f51cb7', '信用卡管理', NULL, '信用卡管理模块', 40, '2018-11-05 21:36:05', '2018-11-05 21:36:05', NULL);
INSERT INTO `wk_model` VALUES ('906b3ac8-b30f-47c8-8454-641bd02d57b8', '客户管理', NULL, '客户管理,增删查改', 10, '2018-11-05 21:24:56', '2018-11-05 21:25:11', NULL);
INSERT INTO `wk_model` VALUES ('9ff50792-b092-4f1e-b5b9-9dce75651eff', '资金账户管理', NULL, '资金账户管理模块', 50, '2018-11-05 21:41:13', '2018-11-05 21:41:13', NULL);
INSERT INTO `wk_model` VALUES ('b34bd8ad-48c6-452d-b743-b9cb8835ac33', '员工管理', NULL, '员工信息列表管理,增删查改', 4, '2018-11-05 21:05:17', '2018-11-05 21:05:17', NULL);
INSERT INTO `wk_model` VALUES ('b681f67b-75dc-4734-9479-aa7fdfa4ec3a', '订单管理', NULL, '订单管理模块', 60, '2018-11-05 21:48:25', '2018-11-05 21:48:25', NULL);
INSERT INTO `wk_model` VALUES ('d56a4fa3-0e85-4600-b9ad-b585a9cd4051', '角色管理', NULL, '角色的增删查改', 3, '2018-11-05 21:03:16', '2018-11-05 21:03:16', NULL);
INSERT INTO `wk_model` VALUES ('e689a2b9-62d8-460f-819c-0ac53d041662', 'POS机管理', NULL, 'POS机管理,增删查改', 20, '2018-11-05 21:31:05', '2018-11-05 21:31:05', NULL);
INSERT INTO `wk_model` VALUES ('f8d99f8e-fd37-4f7f-b732-7a56e5d028a5', '模块管理', NULL, '系统的各个模块定义', 1, '2018-11-05 20:45:11', '2018-11-05 20:45:11', NULL);
-- ----------------------------
-- Table structure for wk_opt_type
-- ----------------------------
DROP TABLE IF EXISTS `wk_opt_type`;
CREATE TABLE `wk_opt_type` (
`id` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
`name` varchar(16) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
`remark` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
`seg` int(11) NULL DEFAULT NULL,
`create_time` datetime(0) NULL DEFAULT NULL,
`update_time` datetime(0) NULL DEFAULT NULL,
`opt_id` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '操作类型表,\r\n\r\n还款\r\n消费\r\n取现刷卡\r\n取现转账\r\n' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of wk_opt_type
-- ----------------------------
INSERT INTO `wk_opt_type` VALUES ('1', '1', '1', 1, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '1');
-- ----------------------------
-- Table structure for wk_order
-- ----------------------------
DROP TABLE IF EXISTS `wk_order`;
CREATE TABLE `wk_order` (
`id` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
`customer_id` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '下单人(客户)',
`type` int(11) NULL DEFAULT NULL COMMENT '订单类型',
`total` decimal(10, 2) NULL DEFAULT NULL,
`rate` decimal(3, 3) NULL DEFAULT NULL,
`fee` decimal(10, 2) NULL DEFAULT NULL,
`discount` decimal(10, 2) NULL DEFAULT NULL,
`real_fee` decimal(10, 2) NULL DEFAULT NULL,
`status` int(11) NULL DEFAULT NULL,
`remark` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
`seg` int(11) NULL DEFAULT NULL,
`create_time` datetime(0) NULL DEFAULT NULL,
`update_time` datetime(0) NULL DEFAULT NULL,
`opt_id` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '订单表' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of wk_order
-- ----------------------------
INSERT INTO `wk_order` VALUES ('1', 'c2896645-ab6e-4813-88d6-662968edbe8b', 1, 1.00, 0.999, 1.00, 1.00, 1.00, 1, '1', 1, '2018-11-06 22:27:53', '2018-11-07 08:31:12', 'b78c71ea-0051-44cc-9bd3-e021b0e1d16d');
INSERT INTO `wk_order` VALUES ('101ff879-300e-422f-9add-fab003fbafb7', 'c2896645-ab6e-4813-88d6-662968edbe8b', 1, 1561561.00, 0.050, 50.00, 10.00, 40.00, 0, '亲朋', 2, '2018-11-07 00:17:25', '2018-11-09 08:11:35', 'b78c71ea-0051-44cc-9bd3-e021b0e1d16d');
INSERT INTO `wk_order` VALUES ('727bdc76-94ec-4fd2-aca6-a1b424ff1e64', 'c2896645-ab6e-4813-88d6-662968edbe8b', 1, 1651561.00, 0.040, 10.00, 40.00, 30.00, 2, 'new user', 2, '2018-11-07 00:22:23', '2018-11-07 00:22:23', NULL);
INSERT INTO `wk_order` VALUES ('d053d43e-7b28-490c-8ec7-320a2c2a9d14', 'c2896645-ab6e-4813-88d6-662968edbe8b', 2, 4651561.00, 0.040, 50.00, 10.00, 40.00, 3, '2018', 2, '2018-11-07 05:47:09', '2018-11-07 08:03:04', 'b78c71ea-0051-44cc-9bd3-e021b0e1d16d');
-- ----------------------------
-- Table structure for wk_order_export
-- ----------------------------
DROP TABLE IF EXISTS `wk_order_export`;
CREATE TABLE `wk_order_export` (
`id` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
`order_id` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '所属订单ID',
`export_date` datetime(0) NULL DEFAULT NULL COMMENT '出账日期',
`type` int(2) NULL DEFAULT NULL COMMENT '操作类型-订单类型',
`export_account_id` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '转出账户',
`import_account_id` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '转入账户',
`card_password` varbinary(64) NULL DEFAULT NULL COMMENT '卡密码',
`name` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '姓名',
`card_number` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '卡号',
`import_bill` decimal(10, 3) NULL DEFAULT NULL COMMENT '还入金额',
`rate` decimal(6, 2) NULL DEFAULT NULL COMMENT '手续费率',
`fee` decimal(10, 2) NULL DEFAULT NULL COMMENT '手续费',
`remark` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备注',
`seg` int(11) NULL DEFAULT NULL,
`create_time` datetime(0) NULL DEFAULT NULL,
`update_time` datetime(0) NULL DEFAULT NULL,
`opt_id` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '订单出账表,帮客户还款细节' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of wk_order_export
-- ----------------------------
INSERT INTO `wk_order_export` VALUES ('4b0a3fe9-e0e3-4396-8f09-7c53427e42d3', 'd053d43e-7b28-490c-8ec7-320a2c2a9d14', '2018-11-09 00:00:00', 1, 'fjwoafjoweij', '37395154-bfe9-49e3-a774-a38adc3ea16d', 0x66776566, '远东回', 'fwafew423423', 15165.000, 0.60, 20.00, '测试', 2, '2018-11-08 21:55:23', '2018-11-08 21:55:23', 'b78c71ea-0051-44cc-9bd3-e021b0e1d16d');
INSERT INTO `wk_order_export` VALUES ('8d6556b6-58e1-40f2-9931-d731f254be4a', 'd053d43e-7b28-490c-8ec7-320a2c2a9d14', '2018-11-09 02:03:52', 2, '37395154-bfe9-49e3-a774-a38adc3ea16d', 'fjwoafjoweij', 0x66667765666565, '张飞', 'fewafew', 561.000, 0.38, 6516.00, 'imya ', 2, '2018-11-08 21:49:25', '2018-11-09 00:01:03', 'b78c71ea-0051-44cc-9bd3-e021b0e1d16d');
INSERT INTO `wk_order_export` VALUES ('914c7379-67c2-42b6-8c71-587147c6a295', 'd053d43e-7b28-490c-8ec7-320a2c2a9d14', '2018-11-09 00:00:00', 2, '37395154-bfe9-49e3-a774-a38adc3ea16d', 'fjwoafjoweij', 0x666677656166, 'feff', '24234', 324234.000, 0.60, 32432.00, 'fwef f wf f we 33', 3, '2018-11-08 23:40:55', '2018-11-09 00:06:18', 'b78c71ea-0051-44cc-9bd3-e021b0e1d16d');
INSERT INTO `wk_order_export` VALUES ('b818cee2-70d3-4cde-808e-7138c722d5d7', 'd053d43e-7b28-490c-8ec7-320a2c2a9d14', '2018-11-08 23:42:00', 1, '37395154-bfe9-49e3-a774-a38adc3ea16d', '37395154-bfe9-49e3-a774-a38adc3ea16d', 0x66657766, '零用', 'fwafewfewf', 432.000, 0.60, 32423.00, 'fef fwe fw', 2, '2018-11-08 23:42:39', '2018-11-08 23:42:39', 'b78c71ea-0051-44cc-9bd3-e021b0e1d16d');
INSERT INTO `wk_order_export` VALUES ('ddaaee89-20c1-4e84-b1ac-76a0c5dee111', 'd053d43e-7b28-490c-8ec7-320a2c2a9d14', '2018-11-09 07:33:43', 1, '37395154-bfe9-49e3-a774-a38adc3ea16d', '37395154-bfe9-49e3-a774-a38adc3ea16d', 0x333433343233, 'efw', '45545453345', 3423432.000, 0.38, 32432.00, 'fwefw', 23, '2018-11-08 23:34:27', '2018-11-08 23:34:27', 'b78c71ea-0051-44cc-9bd3-e021b0e1d16d');
-- ----------------------------
-- Table structure for wk_order_import
-- ----------------------------
DROP TABLE IF EXISTS `wk_order_import`;
CREATE TABLE `wk_order_import` (
`id` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
`order_id` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '所属订单ID',
`export_date` datetime(0) NULL DEFAULT NULL COMMENT '出账日期',
`type` int(2) NULL DEFAULT NULL COMMENT '操作类型-订单类型',
`pos_id` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT 'POS名称(保存POS的ID)',
`mall_name` varchar(128) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '商户名称',
`consume_account_id` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '消费账户',
`bill` decimal(10, 2) NULL DEFAULT NULL COMMENT '消费金额',
`consume_type` int(2) NULL DEFAULT NULL COMMENT '消费方式,1-正常刷卡,2-双免闪付',
`result` int(2) NULL DEFAULT NULL COMMENT '操作结果,1-成功,2-失败',
`rate` decimal(6, 3) NULL DEFAULT NULL COMMENT '手续费率',
`fee` decimal(10, 2) NULL DEFAULT NULL COMMENT '成本手续费=消费金额*费率',
`import_bill` decimal(10, 2) NULL DEFAULT NULL COMMENT '到账金额=消费金额-手续费',
`should_bill` decimal(10, 2) NULL DEFAULT NULL COMMENT '应该刷余额(=还入金额总和-消费金额总和)',
`remark` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '备注',
`seg` int(11) NULL DEFAULT NULL,
`create_time` datetime(0) NULL DEFAULT NULL,
`update_time` datetime(0) NULL DEFAULT NULL,
`opt_id` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '订单出账表,帮客户还款细节' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of wk_order_import
-- ----------------------------
INSERT INTO `wk_order_import` VALUES ('140861ad-4640-4a28-bc52-6232283d17bd', 'd053d43e-7b28-490c-8ec7-320a2c2a9d14', '2018-11-09 00:00:00', 2, '1', '洪源装璜', '37395154-bfe9-49e3-a774-a38adc3ea16d', 21516.00, 1, 1, 0.600, 135.00, 51.00, 12.00, '测试111', 2, '2018-11-09 07:20:04', '2018-11-09 07:58:08', 'b78c71ea-0051-44cc-9bd3-e021b0e1d16d');
INSERT INTO `wk_order_import` VALUES ('15073f2a-f644-4580-bc8a-56866e0af155', '', '2018-11-09 01:06:42', 2, '92e4bfed-83f6-44fe-a1e2-19853d7ed967', '来宾国际大酒店', '37395154-bfe9-49e3-a774-a38adc3ea16d', 2566165.00, NULL, 1, 0.380, 20.00, 40000.00, 500.00, '测试', 2, '2018-11-09 01:07:45', '2018-11-09 01:07:45', 'b78c71ea-0051-44cc-9bd3-e021b0e1d16d');
-- ----------------------------
-- Table structure for wk_order_type
-- ----------------------------
DROP TABLE IF EXISTS `wk_order_type`;
CREATE TABLE `wk_order_type` (
`id` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
`name` varchar(16) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
`remark` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
`seg` int(11) NULL DEFAULT NULL,
`create_time` datetime(0) NULL DEFAULT NULL,
`update_time` datetime(0) NULL DEFAULT NULL,
`opt_id` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '订单类型表' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of wk_order_type
-- ----------------------------
INSERT INTO `wk_order_type` VALUES ('1', '1', '1', 1, '0000-00-00 00:00:00', '0000-00-00 00:00:00', '1');
-- ----------------------------
-- Table structure for wk_org
-- ----------------------------
DROP TABLE IF EXISTS `wk_org`;
CREATE TABLE `wk_org` (
`id` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
`name` varchar(16) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
`parents` varchar(512) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
`parent_id` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
`remark` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
`seg` int(11) NULL DEFAULT NULL,
`create_time` datetime(0) NULL DEFAULT NULL,
`update_time` datetime(0) NULL DEFAULT NULL,
`opt_id` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '组织结构表' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of wk_org
-- ----------------------------
INSERT INTO `wk_org` VALUES ('1', '总公司1', '0', '0', 'jfweoifjewiof', 1, '2018-10-16 23:02:18', '2018-10-16 23:02:18', '8f269ec7-6ad4-48cc-a6d8-42a9d94ccd23');
INSERT INTO `wk_org` VALUES ('2', '一级分公司1', '0,1', '1', '12', 1, '2018-10-23 01:12:03', '2018-10-23 01:12:03', '8f269ec7-6ad4-48cc-a6d8-42a9d94ccd23');
INSERT INTO `wk_org` VALUES ('3', '一级分公司2', '0,1', '1', '12', 1, '2018-10-24 00:38:47', '2018-10-24 00:38:47', '8f269ec7-6ad4-48cc-a6d8-42a9d94ccd23');
INSERT INTO `wk_org` VALUES ('4', '总公司2', '0', '0', '12', 1, '2018-10-23 23:51:26', '2018-10-23 23:51:26', '8f269ec7-6ad4-48cc-a6d8-42a9d94ccd23');
INSERT INTO `wk_org` VALUES ('5', '一级分公司21', '0,4', '4', '12', 1, '2018-10-24 22:24:25', '2018-10-24 22:24:25', '8f269ec7-6ad4-48cc-a6d8-42a9d94ccd23');
INSERT INTO `wk_org` VALUES ('5a23a6d9-6d6b-4a1e-9785-a57677bb44bf', '二级分公司', '0,1,3', '3', '工地', 1, '2018-10-28 20:26:00', '2018-10-28 20:26:00', NULL);
INSERT INTO `wk_org` VALUES ('6', '一级分公司22', '0,4', '4', '12', 1, '2018-10-24 22:29:05', '2018-10-24 22:29:05', '8f269ec7-6ad4-48cc-a6d8-42a9d94ccd23');
-- ----------------------------
-- Table structure for wk_permission
-- ----------------------------
DROP TABLE IF EXISTS `wk_permission`;
CREATE TABLE `wk_permission` (
`id` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
`model_id` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
`name` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
`action` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
`opt_type` varchar(16) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '操作类型:click | view | page',
`remark` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
`seg` int(11) NULL DEFAULT NULL,
`create_time` datetime(0) NULL DEFAULT NULL,
`update_time` datetime(0) NULL DEFAULT NULL,
`opt_id` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '权限表' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of wk_permission
-- ----------------------------
INSERT INTO `wk_permission` VALUES ('00406da9-5209-4963-a69b-95e034ec8bcf', 'e689a2b9-62d8-460f-819c-0ac53d041662', 'POS机删除', 'pos/delete', 'click', 'POS机删除 请求', 1, '2018-11-05 21:33:33', '2018-11-05 21:33:33', NULL);
INSERT INTO `wk_permission` VALUES ('0823b3aa-6d77-4369-a5f5-3d816ab03ab1', '906b3ac8-b30f-47c8-8454-641bd02d57b8', '客户搜索', 'customer/search', 'click', '客户搜索请求', 1, '2018-11-05 22:00:07', '2018-11-05 22:00:07', NULL);
INSERT INTO `wk_permission` VALUES ('0a680f3c-024a-49f2-b69b-63016bca024d', 'b681f67b-75dc-4734-9479-aa7fdfa4ec3a', '订单管理页面', 'page/order_manager.html', 'page', '订单管理页面', 60, '2018-11-05 21:48:57', '2018-11-05 21:48:57', NULL);
INSERT INTO `wk_permission` VALUES ('0a909fd1-bcc9-4856-9d71-77bafca2d0e7', 'e689a2b9-62d8-460f-819c-0ac53d041662', 'POS机新增', 'pos/add', 'click', 'POS机新增请求', 1, '2018-11-05 21:32:43', '2018-11-05 21:32:43', NULL);
INSERT INTO `wk_permission` VALUES ('0afeffce-4996-489a-bf6d-86a3d4121433', '24c2a625-18ab-495c-885b-ae06f539a1e9', '组织管理页面', 'page/org_manager.html', 'page', '组织树,增删查改', 1, '2018-11-05 21:01:51', '2018-11-05 21:01:51', NULL);
INSERT INTO `wk_permission` VALUES ('0d531637-c37b-4269-b502-a13ef97a5968', '24c2a625-18ab-495c-885b-ae06f539a1e9', '组织修改', 'org/update', 'click', '组织修改请求', 12, '2018-11-05 21:21:11', '2018-11-05 21:21:11', NULL);
INSERT INTO `wk_permission` VALUES ('19a68cf4-4592-4785-a9e5-0b6b359a6a63', 'b681f67b-75dc-4734-9479-aa7fdfa4ec3a', '订单删除', 'order/delete', 'click', '订单删除请求', 1, '2018-11-05 21:54:35', '2018-11-05 21:54:35', NULL);
INSERT INTO `wk_permission` VALUES ('207b9351-e4f0-40fe-bd3a-1fdc3a3eda45', 'b34bd8ad-48c6-452d-b743-b9cb8835ac33', '员工查询', 'worker/get', 'click', '查询一个员工信息', 1, '2018-11-05 21:14:14', '2018-11-05 21:14:14', NULL);
INSERT INTO `wk_permission` VALUES ('27e876d0-0182-4be9-9a3d-0e0ac0306744', 'b681f67b-75dc-4734-9479-aa7fdfa4ec3a', '订单搜索', 'order/search', 'click', '订单搜索请求', 1, '2018-11-05 21:55:20', '2018-11-05 21:55:20', NULL);
INSERT INTO `wk_permission` VALUES ('2981fe45-a18e-4e07-9e72-3859bfd64b11', 'b681f67b-75dc-4734-9479-aa7fdfa4ec3a', '订单新增页面', 'page/order_add.html', 'page', '订单新增页面', 50, '2018-11-05 21:52:54', '2018-11-05 21:52:54', NULL);
INSERT INTO `wk_permission` VALUES ('29d3a02d-7bca-4195-a23c-ea8b443ceb75', 'e689a2b9-62d8-460f-819c-0ac53d041662', 'POS机新增页面', 'page/pos_add.html', 'page', 'POS机新增填写页面', 18, '2018-11-05 21:32:16', '2018-11-05 21:33:48', NULL);
INSERT INTO `wk_permission` VALUES ('2db732bd-15f6-403f-bb66-1e97be1d31da', 'b34bd8ad-48c6-452d-b743-b9cb8835ac33', '员工删除', 'worker/delete', 'click', '删除请求', 1, '2018-11-05 21:12:41', '2018-11-05 21:12:41', NULL);
INSERT INTO `wk_permission` VALUES ('2faf78a7-fa11-4f3b-9999-5869f14491f6', 'f8d99f8e-fd37-4f7f-b732-7a56e5d028a5', '模块新增', 'model/add', 'click', '新增模块提交数据到后台的请求地址', 30, '2018-11-05 20:49:07', '2018-11-05 20:49:07', NULL);
INSERT INTO `wk_permission` VALUES ('34b41684-73c4-408c-8c30-0273a3268a48', 'd56a4fa3-0e85-4600-b9ad-b585a9cd4051', '角色查询', 'role/get', 'click', '角色查询请求', 11, '2018-11-05 21:23:07', '2018-11-05 21:23:07', NULL);
INSERT INTO `wk_permission` VALUES ('3528b554-2837-4127-ac39-4c8779c7b0c9', '906b3ac8-b30f-47c8-8454-641bd02d57b8', '客户新增页面', 'page/customer_add.html', 'page', '客户新增页面', 25, '2018-11-05 21:26:44', '2018-11-05 21:27:11', NULL);
INSERT INTO `wk_permission` VALUES ('370c3f03-845c-4649-9954-3325716a807e', 'f8d99f8e-fd37-4f7f-b732-7a56e5d028a5', '模块新增页面', 'page/model_add.html', 'page', '添加一个新模块页面', 40, '2018-11-05 20:47:18', '2018-11-05 20:47:40', NULL);
INSERT INTO `wk_permission` VALUES ('37a57edd-14c9-4541-88bc-784b06d740b6', '906b3ac8-b30f-47c8-8454-641bd02d57b8', '客户管理页面', 'page/customer_manager.html', 'page', '客户管理页面,增删查改', 30, '2018-11-05 21:25:54', '2018-11-05 21:25:54', NULL);
INSERT INTO `wk_permission` VALUES ('37f3792e-b042-461f-81dd-bec5beae997f', 'b34bd8ad-48c6-452d-b743-b9cb8835ac33', '员工新增页面', 'page/worker_add.html', 'page', '填写新加入员工信息页面', 28, '2018-11-05 21:06:25', '2018-11-05 21:16:31', NULL);
INSERT INTO `wk_permission` VALUES ('42f17cc2-e502-4603-a573-be82d689e760', '5ca012d4-942b-46e7-9fa1-d4b500f51cb7', '信用卡管理页面', 'page/card_manager.html', 'page', '信用卡管理页面', 40, '2018-11-05 21:36:37', '2018-11-05 21:36:37', NULL);
INSERT INTO `wk_permission` VALUES ('4315f908-1041-40e8-87b2-575cef86079e', 'b34bd8ad-48c6-452d-b743-b9cb8835ac33', '员工搜索', 'worker/search', 'click', '搜索出列表', 11, '2018-11-05 21:15:08', '2018-11-05 21:15:08', NULL);
INSERT INTO `wk_permission` VALUES ('48ff4405-63e6-44d5-9253-945333459cfa', '5ca012d4-942b-46e7-9fa1-d4b500f51cb7', '信用卡删除', 'card/delete', 'click', '信用卡删除请求', 1, '2018-11-05 21:38:14', '2018-11-05 21:38:14', NULL);
INSERT INTO `wk_permission` VALUES ('495f9c39-cdeb-4a58-81da-c3ae715d8035', 'e689a2b9-62d8-460f-819c-0ac53d041662', 'POS机修改', 'pos/update', 'click', 'POS机修改', 1, '2018-11-05 21:33:08', '2018-11-05 21:33:08', NULL);
INSERT INTO `wk_permission` VALUES ('4a0912b6-6182-4ca0-9fbf-aac7925f622e', 'f8d99f8e-fd37-4f7f-b732-7a56e5d028a5', '模块管理列表', 'page/model_manager.html', 'page', '显示所有的模块及模块对应的权限页面', 50, '2018-11-05 20:46:27', '2018-11-05 20:46:27', NULL);
INSERT INTO `wk_permission` VALUES ('5b9f3ef1-19dc-48d1-9f53-4db964bf4739', 'b34bd8ad-48c6-452d-b743-b9cb8835ac33', '员工详情信息', 'page/worker_detail.html', 'click', '详细信息页面,只可查看', 24, '2018-11-05 21:09:15', '2018-11-05 21:16:50', NULL);
INSERT INTO `wk_permission` VALUES ('5d310b96-1c7b-4472-90c6-47ecbcf2eb44', 'd56a4fa3-0e85-4600-b9ad-b585a9cd4051', '角色管理页面', 'page/role_manager.html', 'page', '角色的增删查改', 1, '2018-11-05 21:03:58', '2018-11-05 21:03:58', NULL);
INSERT INTO `wk_permission` VALUES ('5e72ded9-78b4-42a9-bb67-9e06b80f32ef', '9ff50792-b092-4f1e-b5b9-9dce75651eff', '资金账户搜索', 'account/search', 'click', '资金账户信息搜索请求', 1, '2018-11-05 21:46:50', '2018-11-05 21:46:50', NULL);
INSERT INTO `wk_permission` VALUES ('60924bf9-862c-4ae5-9e19-fcaf90864a22', '906b3ac8-b30f-47c8-8454-641bd02d57b8', '客户新增', 'customer/add', 'click', '客户新增请求', 10, '2018-11-05 21:27:49', '2018-11-05 21:27:49', NULL);
INSERT INTO `wk_permission` VALUES ('60ca75cd-45ec-4e36-b606-5618125f40db', 'b34bd8ad-48c6-452d-b743-b9cb8835ac33', '员工修改页面', 'page/worker_update.html', 'page', '填写修改员工信息页面', 26, '2018-11-05 21:10:56', '2018-11-05 21:16:42', NULL);
INSERT INTO `wk_permission` VALUES ('721470d6-8325-47b5-a0e1-e6ada4b0a5c7', '5ca012d4-942b-46e7-9fa1-d4b500f51cb7', '信用卡修改', 'card/update', 'click', '信用卡修改', 1, '2018-11-05 21:38:43', '2018-11-05 21:38:43', NULL);
INSERT INTO `wk_permission` VALUES ('72da503e-9dc2-4f0b-b9d7-01307ef48afe', 'e689a2b9-62d8-460f-819c-0ac53d041662', 'POS机管理页面', 'page/pos_manager.html', 'page', 'POS机管理页面', 20, '2018-11-05 21:31:39', '2018-11-05 21:31:39', NULL);
INSERT INTO `wk_permission` VALUES ('785eaa24-48da-4a5b-97d6-baaebe89c146', 'f8d99f8e-fd37-4f7f-b732-7a56e5d028a5', '模块删除', 'model/delete', 'click', '删除请求后台地址', 33, '2018-11-05 20:56:39', '2018-11-05 20:56:39', NULL);
INSERT INTO `wk_permission` VALUES ('7a5be87d-0203-47de-b3e4-bd81e6c2e963', '9ff50792-b092-4f1e-b5b9-9dce75651eff', '资金账户修改', 'account/update', 'click', '资金账户修改', 1, '2018-11-05 21:45:38', '2018-11-05 21:45:38', NULL);
INSERT INTO `wk_permission` VALUES ('8151b8eb-b266-4b3c-a2f4-4f8eb9fd6ffd', '24c2a625-18ab-495c-885b-ae06f539a1e9', '组织删除', 'org/delete', 'click', '组织删除', 13, '2018-11-05 21:21:34', '2018-11-05 21:21:34', NULL);
INSERT INTO `wk_permission` VALUES ('86da73e7-c991-41c2-a2a9-423e5ea582da', '906b3ac8-b30f-47c8-8454-641bd02d57b8', '客户信息修改', 'customer/update', 'click', '客户信息修改请求', 11, '2018-11-05 21:29:37', '2018-11-05 21:29:37', NULL);
INSERT INTO `wk_permission` VALUES ('89aed3d8-25d5-4d7f-ab40-3ae2287ec91b', 'b681f67b-75dc-4734-9479-aa7fdfa4ec3a', '订单查询', 'order/get', 'click', '订单查询请求', 1, '2018-11-05 21:54:56', '2018-11-05 21:54:56', NULL);
INSERT INTO `wk_permission` VALUES ('8e0685f7-1619-44cf-8aaf-13322418eb24', '9ff50792-b092-4f1e-b5b9-9dce75651eff', '资金账户新增', 'account/add', 'click', '资金账户新增请求', 1, '2018-11-05 21:44:48', '2018-11-05 21:44:48', NULL);
INSERT INTO `wk_permission` VALUES ('8eebc6ca-7a36-4c6e-8eb6-b08bce6283ab', '24c2a625-18ab-495c-885b-ae06f539a1e9', '组织查询', 'org/get', 'click', '组织查询', 14, '2018-11-05 21:22:04', '2018-11-05 21:22:04', NULL);
INSERT INTO `wk_permission` VALUES ('9570f4b8-4320-411a-9017-7b65eab7881d', 'e689a2b9-62d8-460f-819c-0ac53d041662', 'POS机搜索', 'pos/search', 'click', 'POS机搜索', 1, '2018-11-05 21:34:31', '2018-11-05 21:34:31', NULL);
INSERT INTO `wk_permission` VALUES ('990c3ec0-5740-4717-9d8c-03bc80b7bf07', '5ca012d4-942b-46e7-9fa1-d4b500f51cb7', '信用卡搜索', 'card/search', 'click', '信用卡搜索', 1, '2018-11-05 21:40:14', '2018-11-05 21:40:14', NULL);
INSERT INTO `wk_permission` VALUES ('9c37b33b-98cd-4c0d-a88f-49c20e785f3f', '906b3ac8-b30f-47c8-8454-641bd02d57b8', '客户查询', 'customer/get', 'click', '客户查询请求', 1, '2018-11-05 21:59:42', '2018-11-05 21:59:42', NULL);
INSERT INTO `wk_permission` VALUES ('a0e92d37-dbe6-4d5c-8731-ea234a6bad03', '24c2a625-18ab-495c-885b-ae06f539a1e9', '组织搜索', 'org/search', 'click', '组织搜索', 15, '2018-11-05 21:22:30', '2018-11-05 21:22:30', NULL);
INSERT INTO `wk_permission` VALUES ('a1f4782a-91b6-4a13-9bfb-7bcacb9bb7ed', '906b3ac8-b30f-47c8-8454-641bd02d57b8', '客户删除', 'customer/delete', 'click', '客户删除请求', 1, '2018-11-05 21:59:17', '2018-11-05 21:59:17', NULL);
INSERT INTO `wk_permission` VALUES ('a22ad731-3aea-471f-9f6f-77c736c569cb', '5ca012d4-942b-46e7-9fa1-d4b500f51cb7', '信用卡新增页面', 'page/card_add.html', 'page', '信用卡管理新增页面', 38, '2018-11-05 21:37:10', '2018-11-05 21:37:10', NULL);
INSERT INTO `wk_permission` VALUES ('a51ccb15-0b06-4e91-b42d-89047e488412', '5ca012d4-942b-46e7-9fa1-d4b500f51cb7', '信用卡新增', 'card/add', 'click', '信用卡管理新增', 1, '2018-11-05 21:37:32', '2018-11-05 21:37:32', NULL);
INSERT INTO `wk_permission` VALUES ('a56c42d9-3fd3-4ed1-85b1-fd5274b74e9e', '5ca012d4-942b-46e7-9fa1-d4b500f51cb7', '信用卡查询', 'card/get', 'click', '信用卡管理查询', 1, '2018-11-05 21:39:54', '2018-11-05 21:39:54', NULL);
INSERT INTO `wk_permission` VALUES ('a5a10ec2-0bdc-4b93-ac2c-fc83babc7353', '9ff50792-b092-4f1e-b5b9-9dce75651eff', '资金账户新增页面', 'page/account_add.html', 'page', '资金账户新增页面', 40, '2018-11-05 21:42:51', '2018-11-05 21:42:51', NULL);
INSERT INTO `wk_permission` VALUES ('ab2142fb-a20d-4255-9aa9-0440e23d03e3', '24c2a625-18ab-495c-885b-ae06f539a1e9', '组织新增', 'org/add', 'click', '组织新增请求', 10, '2018-11-05 21:20:45', '2018-11-05 21:20:45', NULL);
INSERT INTO `wk_permission` VALUES ('ae559f35-73a8-44fe-969c-1bfd1a46ad30', 'd56a4fa3-0e85-4600-b9ad-b585a9cd4051', '角色新增', 'role/add', 'click', '角色新增请求', 10, '2018-11-05 21:18:21', '2018-11-05 21:18:21', NULL);
INSERT INTO `wk_permission` VALUES ('afb19edd-fbdc-4cd2-865f-4a304ba3da33', 'b681f67b-75dc-4734-9479-aa7fdfa4ec3a', '订单修改', 'order/update', 'click', '订单修改请求', 1, '2018-11-05 21:54:07', '2018-11-05 21:54:07', NULL);
INSERT INTO `wk_permission` VALUES ('b8e4a5cf-2b28-4884-b7af-f14bba82b539', 'b34bd8ad-48c6-452d-b743-b9cb8835ac33', '员工修改', 'worker/update', 'click', '修改后台 请求地址', 1, '2018-11-05 21:11:34', '2018-11-05 21:11:34', NULL);
INSERT INTO `wk_permission` VALUES ('bd43a25c-9a2e-46cd-b10d-ed9d18fb355c', 'd56a4fa3-0e85-4600-b9ad-b585a9cd4051', '角色删除', 'role/delete', 'click', '角色删除请求', 11, '2018-11-05 21:19:20', '2018-11-05 21:19:20', NULL);
INSERT INTO `wk_permission` VALUES ('c2ace550-9ee8-41fe-98cd-b29a6ee4aa9f', '9ff50792-b092-4f1e-b5b9-9dce75651eff', '资金账户查询', 'account/get', 'click', '资金账户查询', 1, '2018-11-05 21:46:04', '2018-11-05 21:46:04', NULL);
INSERT INTO `wk_permission` VALUES ('c8cdb2b7-4c95-451a-a91c-5ca55b258cc0', 'f8d99f8e-fd37-4f7f-b732-7a56e5d028a5', '模块修改', 'model/update', 'click', '提交修改数据到后台的请求地址', 31, '2018-11-05 20:55:08', '2018-11-05 20:55:08', NULL);
INSERT INTO `wk_permission` VALUES ('cc09e43b-a2ce-4bc7-9a5e-d336dba260c4', 'd56a4fa3-0e85-4600-b9ad-b585a9cd4051', '角色搜索', 'role/search', 'click', '角色搜索请求', 12, '2018-11-05 21:23:43', '2018-11-05 21:23:43', NULL);
INSERT INTO `wk_permission` VALUES ('d42892ee-e813-4f8f-bef8-2fe1fccd24b8', 'd56a4fa3-0e85-4600-b9ad-b585a9cd4051', '角色修改', 'role/update', 'click', '角色修改请求', 12, '2018-11-05 21:19:57', '2018-11-05 21:19:57', NULL);
INSERT INTO `wk_permission` VALUES ('d7febddf-16aa-4259-b102-d12e162387b9', 'b34bd8ad-48c6-452d-b743-b9cb8835ac33', '员工管理页面', 'page/worker_manager.html', 'page', '员工管理页面,可增删查改', 30, '2018-11-05 21:07:14', '2018-11-05 21:16:09', NULL);
INSERT INTO `wk_permission` VALUES ('da198f37-7cd5-4ee7-8bec-f7c71a7e4370', 'e689a2b9-62d8-460f-819c-0ac53d041662', 'POS机查询', 'pos/get', 'click', 'POS机查询', 1, '2018-11-05 21:34:11', '2018-11-05 21:34:11', NULL);
INSERT INTO `wk_permission` VALUES ('e1fff5a3-a2d7-4506-8471-82a20c1be973', '9ff50792-b092-4f1e-b5b9-9dce75651eff', '资金账户删除', 'account/delete', 'click', '资金账户删除请求', 1, '2018-11-05 21:45:12', '2018-11-05 21:45:12', NULL);
INSERT INTO `wk_permission` VALUES ('ebb9dc27-61df-4a84-b7d9-1951a033c4e5', 'b681f67b-75dc-4734-9479-aa7fdfa4ec3a', '订单新增', 'order/add', 'click', '订单新增请求', 1, '2018-11-05 21:53:42', '2018-11-05 21:53:42', NULL);
INSERT INTO `wk_permission` VALUES ('f2559fdd-68e4-4894-b0b4-405b014021ec', 'f8d99f8e-fd37-4f7f-b732-7a56e5d028a5', '模块修改页面', 'page/model_update.html', 'click', '填写修改模块信息页面', 39, '2018-11-05 20:50:18', '2018-11-05 20:58:24', NULL);
INSERT INTO `wk_permission` VALUES ('f6d2315e-d2cb-4762-9412-f55563fbd1ef', '9ff50792-b092-4f1e-b5b9-9dce75651eff', '资金账户管理页面', 'page/account_manager.html', 'page', '资金账户管理页面', 50, '2018-11-05 21:42:17', '2018-11-05 21:42:17', NULL);
INSERT INTO `wk_permission` VALUES ('fe15c1a7-d2ca-48be-8850-dc6e19fc7ceb', 'b34bd8ad-48c6-452d-b743-b9cb8835ac33', '员工新增', 'worker/add', 'click', '新增请求地址', 1, '2018-11-05 21:08:38', '2018-11-05 21:08:38', NULL);
-- ----------------------------
-- Table structure for wk_pos
-- ----------------------------
DROP TABLE IF EXISTS `wk_pos`;
CREATE TABLE `wk_pos` (
`id` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
`name` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
`import_user_id` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '入账人ID(员工)',
`import_user_name` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '入账人名(员工)',
`bank_name` varchar(16) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
`card_number` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
`rate_id` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
`remark` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
`seg` int(11) NULL DEFAULT NULL,
`create_time` datetime(0) NULL DEFAULT NULL,
`update_time` datetime(0) NULL DEFAULT NULL,
`opt_id` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = 'POS机信息表' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of wk_pos
-- ----------------------------
INSERT INTO `wk_pos` VALUES ('1', '中行POS机', 'c2896645-ab6e-4813-88d6-662968edbe8b', '刘备', '农业银行', '100000000', '0.05', '1', 1, '2018-11-01 09:04:58', '2018-11-09 01:05:41', 'b78c71ea-0051-44cc-9bd3-e021b0e1d16d');
INSERT INTO `wk_pos` VALUES ('92e4bfed-83f6-44fe-a1e2-19853d7ed967', '工行POS机', NULL, '项羽', '工商银行', '22222222222222222', '0.3', '测试', 1, '2018-11-01 09:04:18', '2018-11-09 01:06:20', 'b78c71ea-0051-44cc-9bd3-e021b0e1d16d');
-- ----------------------------
-- Table structure for wk_rate
-- ----------------------------
DROP TABLE IF EXISTS `wk_rate`;
CREATE TABLE `wk_rate` (
`id` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
`rate` decimal(3, 3) NULL DEFAULT NULL,
`remark` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
`seg` int(11) NULL DEFAULT NULL,
`create_time` datetime(0) NULL DEFAULT NULL,
`update_time` datetime(0) NULL DEFAULT NULL,
`opt_id` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '费率表' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of wk_rate
-- ----------------------------
INSERT INTO `wk_rate` VALUES ('1lkffwefew2fwe684fwe3f15e6f84we6f1', 0.380, '1', 1, '2018-11-07 23:29:51', '2018-11-07 23:30:05', '1');
INSERT INTO `wk_rate` VALUES ('fewf5w48f6ew6f4we6fe8wf46wef5ew6', 0.600, '', NULL, '2018-11-07 23:29:56', '2018-11-07 23:29:59', '1');
-- ----------------------------
-- Table structure for wk_role
-- ----------------------------
DROP TABLE IF EXISTS `wk_role`;
CREATE TABLE `wk_role` (
`id` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
`name` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
`remark` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
`seg` int(11) NULL DEFAULT NULL,
`create_time` datetime(0) NULL DEFAULT NULL,
`update_time` datetime(0) NULL DEFAULT NULL,
`opt_id` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '角色表\r\n' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of wk_role
-- ----------------------------
INSERT INTO `wk_role` VALUES ('b8865e66-4a93-48a0-8a35-b3a8eb26045a', '系统管理员', '所有操作权限', 2, '2018-10-28 11:10:08', '2018-11-06 07:56:27', NULL);
INSERT INTO `wk_role` VALUES ('f1c8eb9c-7f3f-4193-a8d6-4f7a498ad713', '老板', '投资人', 1, '2018-10-28 08:16:02', '2018-10-28 08:16:02', NULL);
-- ----------------------------
-- Table structure for wk_role_model
-- ----------------------------
DROP TABLE IF EXISTS `wk_role_model`;
CREATE TABLE `wk_role_model` (
`role_id` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '角色ID',
`model_id` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '模块ID',
PRIMARY KEY (`role_id`, `model_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '角色-模块权限关联表' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of wk_role_model
-- ----------------------------
INSERT INTO `wk_role_model` VALUES ('b8865e66-4a93-48a0-8a35-b3a8eb26045a', '24c2a625-18ab-495c-885b-ae06f539a1e9');
INSERT INTO `wk_role_model` VALUES ('b8865e66-4a93-48a0-8a35-b3a8eb26045a', '5ca012d4-942b-46e7-9fa1-d4b500f51cb7');
INSERT INTO `wk_role_model` VALUES ('b8865e66-4a93-48a0-8a35-b3a8eb26045a', '906b3ac8-b30f-47c8-8454-641bd02d57b8');
INSERT INTO `wk_role_model` VALUES ('b8865e66-4a93-48a0-8a35-b3a8eb26045a', '9ff50792-b092-4f1e-b5b9-9dce75651eff');
INSERT INTO `wk_role_model` VALUES ('b8865e66-4a93-48a0-8a35-b3a8eb26045a', 'b34bd8ad-48c6-452d-b743-b9cb8835ac33');
INSERT INTO `wk_role_model` VALUES ('b8865e66-4a93-48a0-8a35-b3a8eb26045a', 'b681f67b-75dc-4734-9479-aa7fdfa4ec3a');
INSERT INTO `wk_role_model` VALUES ('b8865e66-4a93-48a0-8a35-b3a8eb26045a', 'd56a4fa3-0e85-4600-b9ad-b585a9cd4051');
INSERT INTO `wk_role_model` VALUES ('b8865e66-4a93-48a0-8a35-b3a8eb26045a', 'e689a2b9-62d8-460f-819c-0ac53d041662');
INSERT INTO `wk_role_model` VALUES ('b8865e66-4a93-48a0-8a35-b3a8eb26045a', 'f8d99f8e-fd37-4f7f-b732-7a56e5d028a5');
INSERT INTO `wk_role_model` VALUES ('f1c8eb9c-7f3f-4193-a8d6-4f7a498ad713', '24c2a625-18ab-495c-885b-ae06f539a1e9');
INSERT INTO `wk_role_model` VALUES ('f1c8eb9c-7f3f-4193-a8d6-4f7a498ad713', '906b3ac8-b30f-47c8-8454-641bd02d57b8');
INSERT INTO `wk_role_model` VALUES ('f1c8eb9c-7f3f-4193-a8d6-4f7a498ad713', 'b34bd8ad-48c6-452d-b743-b9cb8835ac33');
INSERT INTO `wk_role_model` VALUES ('f1c8eb9c-7f3f-4193-a8d6-4f7a498ad713', 'b681f67b-75dc-4734-9479-aa7fdfa4ec3a');
INSERT INTO `wk_role_model` VALUES ('f1c8eb9c-7f3f-4193-a8d6-4f7a498ad713', 'd56a4fa3-0e85-4600-b9ad-b585a9cd4051');
INSERT INTO `wk_role_model` VALUES ('f1c8eb9c-7f3f-4193-a8d6-4f7a498ad713', 'f8d99f8e-fd37-4f7f-b732-7a56e5d028a5');
-- ----------------------------
-- Table structure for wk_role_permission
-- ----------------------------
DROP TABLE IF EXISTS `wk_role_permission`;
CREATE TABLE `wk_role_permission` (
`role_id` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
`permission_id` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
PRIMARY KEY (`role_id`, `permission_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '角色权限关联表\r\n' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of wk_role_permission
-- ----------------------------
INSERT INTO `wk_role_permission` VALUES ('b8865e66-4a93-48a0-8a35-b3a8eb26045a', '00406da9-5209-4963-a69b-95e034ec8bcf');
INSERT INTO `wk_role_permission` VALUES ('b8865e66-4a93-48a0-8a35-b3a8eb26045a', '0823b3aa-6d77-4369-a5f5-3d816ab03ab1');
INSERT INTO `wk_role_permission` VALUES ('b8865e66-4a93-48a0-8a35-b3a8eb26045a', '0a680f3c-024a-49f2-b69b-63016bca024d');
INSERT INTO `wk_role_permission` VALUES ('b8865e66-4a93-48a0-8a35-b3a8eb26045a', '0a909fd1-bcc9-4856-9d71-77bafca2d0e7');
INSERT INTO `wk_role_permission` VALUES ('b8865e66-4a93-48a0-8a35-b3a8eb26045a', '0afeffce-4996-489a-bf6d-86a3d4121433');
INSERT INTO `wk_role_permission` VALUES ('b8865e66-4a93-48a0-8a35-b3a8eb26045a', '0d531637-c37b-4269-b502-a13ef97a5968');
INSERT INTO `wk_role_permission` VALUES ('b8865e66-4a93-48a0-8a35-b3a8eb26045a', '19a68cf4-4592-4785-a9e5-0b6b359a6a63');
INSERT INTO `wk_role_permission` VALUES ('b8865e66-4a93-48a0-8a35-b3a8eb26045a', '207b9351-e4f0-40fe-bd3a-1fdc3a3eda45');
INSERT INTO `wk_role_permission` VALUES ('b8865e66-4a93-48a0-8a35-b3a8eb26045a', '27e876d0-0182-4be9-9a3d-0e0ac0306744');
INSERT INTO `wk_role_permission` VALUES ('b8865e66-4a93-48a0-8a35-b3a8eb26045a', '2981fe45-a18e-4e07-9e72-3859bfd64b11');
INSERT INTO `wk_role_permission` VALUES ('b8865e66-4a93-48a0-8a35-b3a8eb26045a', '29d3a02d-7bca-4195-a23c-ea8b443ceb75');
INSERT INTO `wk_role_permission` VALUES ('b8865e66-4a93-48a0-8a35-b3a8eb26045a', '2db732bd-15f6-403f-bb66-1e97be1d31da');
INSERT INTO `wk_role_permission` VALUES ('b8865e66-4a93-48a0-8a35-b3a8eb26045a', '2faf78a7-fa11-4f3b-9999-5869f14491f6');
INSERT INTO `wk_role_permission` VALUES ('b8865e66-4a93-48a0-8a35-b3a8eb26045a', '34b41684-73c4-408c-8c30-0273a3268a48');
INSERT INTO `wk_role_permission` VALUES ('b8865e66-4a93-48a0-8a35-b3a8eb26045a', '3528b554-2837-4127-ac39-4c8779c7b0c9');
INSERT INTO `wk_role_permission` VALUES ('b8865e66-4a93-48a0-8a35-b3a8eb26045a', '370c3f03-845c-4649-9954-3325716a807e');
INSERT INTO `wk_role_permission` VALUES ('b8865e66-4a93-48a0-8a35-b3a8eb26045a', '37a57edd-14c9-4541-88bc-784b06d740b6');
INSERT INTO `wk_role_permission` VALUES ('b8865e66-4a93-48a0-8a35-b3a8eb26045a', '37f3792e-b042-461f-81dd-bec5beae997f');
INSERT INTO `wk_role_permission` VALUES ('b8865e66-4a93-48a0-8a35-b3a8eb26045a', '42f17cc2-e502-4603-a573-be82d689e760');
INSERT INTO `wk_role_permission` VALUES ('b8865e66-4a93-48a0-8a35-b3a8eb26045a', '4315f908-1041-40e8-87b2-575cef86079e');
INSERT INTO `wk_role_permission` VALUES ('b8865e66-4a93-48a0-8a35-b3a8eb26045a', '48ff4405-63e6-44d5-9253-945333459cfa');
INSERT INTO `wk_role_permission` VALUES ('b8865e66-4a93-48a0-8a35-b3a8eb26045a', '495f9c39-cdeb-4a58-81da-c3ae715d8035');
INSERT INTO `wk_role_permission` VALUES ('b8865e66-4a93-48a0-8a35-b3a8eb26045a', '4a0912b6-6182-4ca0-9fbf-aac7925f622e');
INSERT INTO `wk_role_permission` VALUES ('b8865e66-4a93-48a0-8a35-b3a8eb26045a', '5b9f3ef1-19dc-48d1-9f53-4db964bf4739');
INSERT INTO `wk_role_permission` VALUES ('b8865e66-4a93-48a0-8a35-b3a8eb26045a', '5d310b96-1c7b-4472-90c6-47ecbcf2eb44');
INSERT INTO `wk_role_permission` VALUES ('b8865e66-4a93-48a0-8a35-b3a8eb26045a', '5e72ded9-78b4-42a9-bb67-9e06b80f32ef');
INSERT INTO `wk_role_permission` VALUES ('b8865e66-4a93-48a0-8a35-b3a8eb26045a', '60924bf9-862c-4ae5-9e19-fcaf90864a22');
INSERT INTO `wk_role_permission` VALUES ('b8865e66-4a93-48a0-8a35-b3a8eb26045a', '60ca75cd-45ec-4e36-b606-5618125f40db');
INSERT INTO `wk_role_permission` VALUES ('b8865e66-4a93-48a0-8a35-b3a8eb26045a', '721470d6-8325-47b5-a0e1-e6ada4b0a5c7');
INSERT INTO `wk_role_permission` VALUES ('b8865e66-4a93-48a0-8a35-b3a8eb26045a', '72da503e-9dc2-4f0b-b9d7-01307ef48afe');
INSERT INTO `wk_role_permission` VALUES ('b8865e66-4a93-48a0-8a35-b3a8eb26045a', '785eaa24-48da-4a5b-97d6-baaebe89c146');
INSERT INTO `wk_role_permission` VALUES ('b8865e66-4a93-48a0-8a35-b3a8eb26045a', '7a5be87d-0203-47de-b3e4-bd81e6c2e963');
INSERT INTO `wk_role_permission` VALUES ('b8865e66-4a93-48a0-8a35-b3a8eb26045a', '8151b8eb-b266-4b3c-a2f4-4f8eb9fd6ffd');
INSERT INTO `wk_role_permission` VALUES ('b8865e66-4a93-48a0-8a35-b3a8eb26045a', '86da73e7-c991-41c2-a2a9-423e5ea582da');
INSERT INTO `wk_role_permission` VALUES ('b8865e66-4a93-48a0-8a35-b3a8eb26045a', '89aed3d8-25d5-4d7f-ab40-3ae2287ec91b');
INSERT INTO `wk_role_permission` VALUES ('b8865e66-4a93-48a0-8a35-b3a8eb26045a', '8e0685f7-1619-44cf-8aaf-13322418eb24');
INSERT INTO `wk_role_permission` VALUES ('b8865e66-4a93-48a0-8a35-b3a8eb26045a', '8eebc6ca-7a36-4c6e-8eb6-b08bce6283ab');
INSERT INTO `wk_role_permission` VALUES ('b8865e66-4a93-48a0-8a35-b3a8eb26045a', '9570f4b8-4320-411a-9017-7b65eab7881d');
INSERT INTO `wk_role_permission` VALUES ('b8865e66-4a93-48a0-8a35-b3a8eb26045a', '990c3ec0-5740-4717-9d8c-03bc80b7bf07');
INSERT INTO `wk_role_permission` VALUES ('b8865e66-4a93-48a0-8a35-b3a8eb26045a', '9c37b33b-98cd-4c0d-a88f-49c20e785f3f');
INSERT INTO `wk_role_permission` VALUES ('b8865e66-4a93-48a0-8a35-b3a8eb26045a', 'a0e92d37-dbe6-4d5c-8731-ea234a6bad03');
INSERT INTO `wk_role_permission` VALUES ('b8865e66-4a93-48a0-8a35-b3a8eb26045a', 'a1f4782a-91b6-4a13-9bfb-7bcacb9bb7ed');
INSERT INTO `wk_role_permission` VALUES ('b8865e66-4a93-48a0-8a35-b3a8eb26045a', 'a22ad731-3aea-471f-9f6f-77c736c569cb');
INSERT INTO `wk_role_permission` VALUES ('b8865e66-4a93-48a0-8a35-b3a8eb26045a', 'a51ccb15-0b06-4e91-b42d-89047e488412');
INSERT INTO `wk_role_permission` VALUES ('b8865e66-4a93-48a0-8a35-b3a8eb26045a', 'a56c42d9-3fd3-4ed1-85b1-fd5274b74e9e');
INSERT INTO `wk_role_permission` VALUES ('b8865e66-4a93-48a0-8a35-b3a8eb26045a', 'a5a10ec2-0bdc-4b93-ac2c-fc83babc7353');
INSERT INTO `wk_role_permission` VALUES ('b8865e66-4a93-48a0-8a35-b3a8eb26045a', 'ab2142fb-a20d-4255-9aa9-0440e23d03e3');
INSERT INTO `wk_role_permission` VALUES ('b8865e66-4a93-48a0-8a35-b3a8eb26045a', 'ae559f35-73a8-44fe-969c-1bfd1a46ad30');
INSERT INTO `wk_role_permission` VALUES ('b8865e66-4a93-48a0-8a35-b3a8eb26045a', 'afb19edd-fbdc-4cd2-865f-4a304ba3da33');
INSERT INTO `wk_role_permission` VALUES ('b8865e66-4a93-48a0-8a35-b3a8eb26045a', 'b8e4a5cf-2b28-4884-b7af-f14bba82b539');
INSERT INTO `wk_role_permission` VALUES ('b8865e66-4a93-48a0-8a35-b3a8eb26045a', 'bd43a25c-9a2e-46cd-b10d-ed9d18fb355c');
INSERT INTO `wk_role_permission` VALUES ('b8865e66-4a93-48a0-8a35-b3a8eb26045a', 'c2ace550-9ee8-41fe-98cd-b29a6ee4aa9f');
INSERT INTO `wk_role_permission` VALUES ('b8865e66-4a93-48a0-8a35-b3a8eb26045a', 'c8cdb2b7-4c95-451a-a91c-5ca55b258cc0');
INSERT INTO `wk_role_permission` VALUES ('b8865e66-4a93-48a0-8a35-b3a8eb26045a', 'cc09e43b-a2ce-4bc7-9a5e-d336dba260c4');
INSERT INTO `wk_role_permission` VALUES ('b8865e66-4a93-48a0-8a35-b3a8eb26045a', 'd42892ee-e813-4f8f-bef8-2fe1fccd24b8');
INSERT INTO `wk_role_permission` VALUES ('b8865e66-4a93-48a0-8a35-b3a8eb26045a', 'd7febddf-16aa-4259-b102-d12e162387b9');
INSERT INTO `wk_role_permission` VALUES ('b8865e66-4a93-48a0-8a35-b3a8eb26045a', 'da198f37-7cd5-4ee7-8bec-f7c71a7e4370');
INSERT INTO `wk_role_permission` VALUES ('b8865e66-4a93-48a0-8a35-b3a8eb26045a', 'e1fff5a3-a2d7-4506-8471-82a20c1be973');
INSERT INTO `wk_role_permission` VALUES ('b8865e66-4a93-48a0-8a35-b3a8eb26045a', 'ebb9dc27-61df-4a84-b7d9-1951a033c4e5');
INSERT INTO `wk_role_permission` VALUES ('b8865e66-4a93-48a0-8a35-b3a8eb26045a', 'f2559fdd-68e4-4894-b0b4-405b014021ec');
INSERT INTO `wk_role_permission` VALUES ('b8865e66-4a93-48a0-8a35-b3a8eb26045a', 'f6d2315e-d2cb-4762-9412-f55563fbd1ef');
INSERT INTO `wk_role_permission` VALUES ('b8865e66-4a93-48a0-8a35-b3a8eb26045a', 'fe15c1a7-d2ca-48be-8850-dc6e19fc7ceb');
INSERT INTO `wk_role_permission` VALUES ('f1c8eb9c-7f3f-4193-a8d6-4f7a498ad713', '0a680f3c-024a-49f2-b69b-63016bca024d');
INSERT INTO `wk_role_permission` VALUES ('f1c8eb9c-7f3f-4193-a8d6-4f7a498ad713', '37a57edd-14c9-4541-88bc-784b06d740b6');
INSERT INTO `wk_role_permission` VALUES ('f1c8eb9c-7f3f-4193-a8d6-4f7a498ad713', '42f17cc2-e502-4603-a573-be82d689e760');
-- ----------------------------
-- Table structure for wk_worker
-- ----------------------------
DROP TABLE IF EXISTS `wk_worker`;
CREATE TABLE `wk_worker` (
`id` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL,
`org_id` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
`role_id` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
`user_name` varchar(32) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
`password` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
`name` varchar(16) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
`id_number` char(20) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
`phone` char(11) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
`weixin` char(16) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
`font_img` varchar(512) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
`after_img` varchar(512) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
`home_img` varchar(512) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
`remark` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
`seg` int(11) NULL DEFAULT NULL,
`create_time` datetime(0) NULL DEFAULT NULL,
`update_time` datetime(0) NULL DEFAULT NULL,
`opt_id` varchar(64) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL,
PRIMARY KEY (`id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci COMMENT = '操作员表' ROW_FORMAT = Dynamic;
-- ----------------------------
-- Records of wk_worker
-- ----------------------------
INSERT INTO `wk_worker` VALUES ('b78c71ea-0051-44cc-9bd3-e021b0e1d16d', '1', 'b8865e66-4a93-48a0-8a35-b3a8eb26045a', 'admin', '21232f297a57a5a743894a0e4a801fc3', 'administrator', '111111111111111111', '1399999999', 'weixin1998', 'b78c71ea-0051-44cc-9bd3-e021b0e1d16d/50f393ec-e00a-49bc-8933-07628c68593c.jpg', 'b78c71ea-0051-44cc-9bd3-e021b0e1d16d/71b82a10-97e7-453e-9852-1106133d0c0e.jpg', 'b78c71ea-0051-44cc-9bd3-e021b0e1d16d/8ff51956-fcdc-4d0d-8e9d-a9d6c1d1ae0e.jpg', '123165465185 ', 1000, '2018-11-02 08:23:28', '2018-11-06 20:32:29', NULL);
SET FOREIGN_KEY_CHECKS = 1;
|
insert into users (email, phone, pass) values ('ndaborn0@digg.com', '682-387-5547', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('gbonnette1@barnesandnoble.com', '313-304-6381', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('bbowlands2@yellowpages.com', '490-490-3025', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('fmallam3@washingtonpost.com', '720-647-7861', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('mhelder4@taobao.com', '334-906-1905', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('llaroux5@biglobe.ne.jp', '280-759-7350', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('mgaltone6@unesco.org', '267-293-4418', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('rberrane7@hugedomains.com', '713-815-8674', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('pjaquin8@umn.edu', '535-542-6053', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('gmonroe9@mozilla.com', '729-261-2436', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('nmcgregora@wunderground.com', '669-429-1282', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('wscarsbrookb@toplist.cz', '609-361-1547', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('eiansonc@prlog.org', '529-754-0029', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('acollinsond@auda.org.au', '871-491-7379', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('smackibbone@taobao.com', '934-602-9695', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('adohmsf@typepad.com', '505-474-6376', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('rswaffordg@addtoany.com', '793-495-1841', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('cfaireyh@booking.com', '103-791-2267', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('isimsi@time.com', '969-979-8042', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('uhryniewiczj@discuz.net', '259-120-9076', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('flongmeadk@qq.com', '340-770-2817', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('ecurrol@loc.gov', '148-394-5166', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('rdonahuem@sitemeter.com', '512-282-4210', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('psantenn@angelfire.com', '665-235-6988', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('kkyddo@edublogs.org', '124-425-2820', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('ahurdlep@archive.org', '507-561-4374', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('wsinsonq@vinaora.com', '765-134-7992', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('ccoppardr@diigo.com', '755-396-3466', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('mivashintsovs@deliciousdays.com', '444-570-5237', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('ddorkinst@state.gov', '705-220-6749', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('pgheeraertu@alibaba.com', '146-157-5500', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('mmacvicarv@gnu.org', '915-890-3459', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('ksartinw@craigslist.org', '327-632-0542', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('sgresleyx@telegraph.co.uk', '191-712-8521', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('dgoomy@wired.com', '417-340-7879', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('nfludgatez@skyrock.com', '483-658-1345', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('fwaldren10@eepurl.com', '425-284-4822', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('dmilkeham11@independent.co.uk', '279-102-4403', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('glightollers12@sfgate.com', '446-232-5627', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('sochterlony13@php.net', '222-211-6344', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('phugnet14@aboutads.info', '961-926-7836', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('isoff15@dion.ne.jp', '767-796-7462', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('lquantrill16@indiegogo.com', '236-532-8842', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('pbrenard17@wordpress.org', '908-619-2699', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('dbuncher18@bbb.org', '400-938-3098', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('bmacandreis19@apache.org', '595-416-5341', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('klowson1a@google.com.hk', '774-148-9040', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('cskirling1b@yellowbook.com', '760-469-2587', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('wpiet1c@php.net', '436-575-6437', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('cubsdall1d@unblog.fr', '543-154-0370', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('pvedekhin1e@netvibes.com', '905-168-5442', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('tskinley1f@google.co.jp', '256-653-6955', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('mtuft1g@go.com', '391-691-7915', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('slosseljong1h@army.mil', '128-350-1191', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('tfeavearyear1i@edublogs.org', '437-994-1729', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('tdiaper1j@dyndns.org', '261-747-3512', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('kradcliffe1k@fema.gov', '517-419-1066', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('obysaker1l@spotify.com', '879-291-6238', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('sclinnick1m@webmd.com', '797-150-1582', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('dmccloy1n@seattletimes.com', '638-885-7190', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('lstleger1o@wired.com', '905-843-8705', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('lwanless1p@so-net.ne.jp', '402-238-0392', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('kdomanski1q@miitbeian.gov.cn', '940-313-2504', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('mlympenie1r@last.fm', '290-809-4049', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('araleston1s@livejournal.com', '982-855-0664', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('iveltman1t@latimes.com', '349-160-1768', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('jsquire1u@shareasale.com', '409-272-0031', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('nlowth1v@tamu.edu', '325-549-2092', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('vrowena1w@zimbio.com', '972-523-2425', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('ksimco1x@clickbank.net', '687-963-5881', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('dbick1y@icio.us', '214-465-6707', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('gobal1z@ocn.ne.jp', '730-740-1367', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('mjaumet20@homestead.com', '403-652-5765', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('zwillshaw21@dailymotion.com', '947-328-3178', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('mwaldock22@photobucket.com', '453-431-0791', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('eoselton23@moonfruit.com', '639-770-1079', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('gbloschke24@wunderground.com', '919-495-3401', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('ftrewinnard25@ucoz.ru', '142-642-0346', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('alantoph26@tripadvisor.com', '313-694-0740', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('mbabonau27@tmall.com', '548-376-7691', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('mdalman28@slate.com', '973-465-7197', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('ltigner29@noaa.gov', '535-608-4959', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('mdurrant2a@sfgate.com', '827-106-8195', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('jmallett2b@house.gov', '203-302-4606', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('dpipes2c@mysql.com', '550-518-3905', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('jfishly2d@cocolog-nifty.com', '871-804-5455', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('pbursnoll2e@virginia.edu', '304-183-1775', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('gdanieli2f@businesswire.com', '245-234-6213', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('asigart2g@umn.edu', '624-198-6690', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('ggeall2h@bloglines.com', '529-258-5309', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('mbuckmaster2i@nps.gov', '740-145-4269', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('pdallas2j@noaa.gov', '279-831-0870', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('mveryard2k@flavors.me', '767-457-9681', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('sbyatt2l@g.co', '532-162-9112', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('frandalston2m@loc.gov', '455-938-7343', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('mrichen2n@github.io', '760-279-7055', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('abauduin2o@cafepress.com', '624-261-6631', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('abehagg2p@irs.gov', '752-663-4534', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('cbrain2q@behance.net', '645-321-0221', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('ebickersteth2r@patch.com', '212-991-0979', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('mmacshane2s@who.int', '607-975-8713', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('bjacobowitz2t@pbs.org', '583-926-6627', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('lferry2u@dagondesign.com', '883-919-1736', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('glaverty2v@tinyurl.com', '252-760-4239', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('carnold2w@seattletimes.com', '659-642-3970', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('rmarrington2x@parallels.com', '138-924-7755', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('astalley2y@etsy.com', '569-855-9105', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('hlemerle2z@baidu.com', '499-440-3748', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('nlintill30@theatlantic.com', '265-389-1688', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('lrowantree31@godaddy.com', '592-935-9927', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('dcheine32@china.com.cn', '168-143-7918', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('adowsing33@hc360.com', '545-565-0607', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('aflasby34@theguardian.com', '886-647-6852', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('hrainsdon35@wiley.com', '670-999-2473', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('smacrae36@auda.org.au', '560-631-1187', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('elamberto37@businessinsider.com', '744-461-3334', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('wabsolon38@apple.com', '364-609-1073', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('tstribbling39@goo.gl', '261-502-9968', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('eprowse3a@1688.com', '636-303-6246', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('wharmson3b@wix.com', '903-591-5939', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('acastro3c@exblog.jp', '174-330-7522', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('bdeinhard3d@wikispaces.com', '384-682-2973', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('nlembcke3e@dyndns.org', '204-244-1851', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('hfradson3f@technorati.com', '892-104-1364', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('pquarlis3g@engadget.com', '258-999-5128', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('mboxe3h@spiegel.de', '334-975-7702', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('rclunan3i@nydailynews.com', '368-805-0685', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('wbellows3j@princeton.edu', '164-922-1118', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('dlawland3k@ezinearticles.com', '995-793-1646', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('landers3l@twitter.com', '467-660-3365', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('abracco3m@sakura.ne.jp', '263-206-1454', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('dingliss3n@geocities.com', '172-175-6440', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('pdevorill3o@hud.gov', '695-142-0243', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('bbrogden3p@omniture.com', '404-506-8303', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('jcrosse3q@nhs.uk', '388-951-1204', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('lgatecliff3r@sciencedaily.com', '555-728-8345', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('abene3s@digg.com', '193-340-8343', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('fdugood3t@upenn.edu', '459-354-7721', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('dway3u@chron.com', '677-153-6294', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('ggogan3v@marketwatch.com', '187-656-8294', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('gimpy3w@cbslocal.com', '922-948-9292', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('nbraysher3x@wordpress.com', '272-646-6056', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('wesposita3y@wikipedia.org', '904-250-2547', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('gkeems3z@unicef.org', '248-466-1428', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('mbortoletti40@over-blog.com', '951-510-4575', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('cparsand41@reuters.com', '286-597-8330', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('mmarqyes42@feedburner.com', '773-175-9209', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('lmccaull43@posterous.com', '389-567-6000', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('llidgertwood44@stumbleupon.com', '994-808-9448', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('aiacovaccio45@aol.com', '635-213-8566', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('mroblett46@psu.edu', '663-274-8379', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('oliddell47@zdnet.com', '209-533-9883', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('kmcausland48@lulu.com', '860-473-4214', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('lormond49@behance.net', '256-364-0849', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('dbenjefield4a@cargocollective.com', '223-433-3599', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('wsexten4b@intel.com', '787-494-7488', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('rjiroutka4c@woothemes.com', '355-134-9936', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('obarnsley4d@jigsy.com', '663-431-2479', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('lroper4e@europa.eu', '549-505-4937', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('ssalvatore4f@de.vu', '839-454-5660', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('gdoe4g@blinklist.com', '546-703-8351', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('ibeckham4h@de.vu', '249-502-4956', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('dstirland4i@sakura.ne.jp', '284-344-3925', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('nhaine4j@uiuc.edu', '530-502-9470', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('agalliford4k@marketwatch.com', '885-934-1693', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('cdeere4l@loc.gov', '745-294-9538', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('gcock4m@slideshare.net', '957-761-7182', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('bmcgillicuddy4n@t-online.de', '251-589-1034', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('jtoupe4o@desdev.cn', '415-294-3116', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('rgirardez4p@amazon.com', '872-209-8910', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('vhardaway4q@lulu.com', '851-157-2276', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('rfitchet4r@vimeo.com', '133-583-3066', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('jbengle4s@tinypic.com', '349-198-2011', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('ayakovl4t@acquirethisname.com', '802-838-5870', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('draper4u@trellian.com', '483-843-6775', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('cbarnham4v@ca.gov', '357-665-9093', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('rlithgow4w@360.cn', '331-585-1431', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('lvella4x@ameblo.jp', '872-661-3000', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('gtruswell4y@sfgate.com', '903-966-9135', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('achippin4z@g.co', '645-994-8187', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('bcourtese50@psu.edu', '426-406-8406', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('vlathee51@ustream.tv', '688-887-9941', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('ralcott52@comsenz.com', '243-422-9921', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('aadenot53@goo.gl', '931-469-7734', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('cluckie54@liveinternet.ru', '386-292-6196', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('hrewcassell55@ustream.tv', '482-923-7540', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('balman56@java.com', '735-152-2151', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('npaddington57@ibm.com', '113-172-6753', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('wrepp58@g.co', '799-988-4747', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('astoyell59@marketwatch.com', '107-905-5343', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('kgrelka5a@slideshare.net', '798-991-4360', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('pswenson5b@cdc.gov', '803-700-4748', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('mbrimming5c@blogger.com', '183-469-4184', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('rilott5d@statcounter.com', '265-387-0694', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('cdoutch5e@digg.com', '992-939-2855', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('fransbury5f@newsvine.com', '416-666-1124', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('gdibdall5g@biblegateway.com', '704-826-5829', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('lzoellner5h@myspace.com', '114-172-1252', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('ldelacoste5i@about.com', '494-712-8041', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('pcrowest5j@wiley.com', '740-832-7447', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('msine5k@squarespace.com', '137-351-6816', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('gballefant5l@1688.com', '544-619-5965', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('aluchelli5m@1und1.de', '564-377-2656', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('cwatt5n@whitehouse.gov', '519-696-5541', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('sstoffel5o@amazon.co.jp', '263-386-8237', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('cogles5p@home.pl', '969-700-1454', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('ccarlyle5q@ucsd.edu', '311-357-5790', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('scumberbatch5r@1688.com', '635-260-6716', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('wbeaufoy5s@vk.com', '304-366-4677', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('scremer5t@prnewswire.com', '943-316-8690', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('roury5u@wp.com', '818-954-8056', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('tfiggures5v@facebook.com', '497-979-0485', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('twatkin5w@ucla.edu', '157-837-0106', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('cknoton5x@bloglovin.com', '870-304-6471', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('ggolde5y@slate.com', '845-688-4560', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('kferson5z@fc2.com', '491-355-8516', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('hstonefewings60@prlog.org', '954-631-0870', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('ctennant61@over-blog.com', '401-864-8956', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('rroff62@fastcompany.com', '171-558-4593', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('nwhitlow63@statcounter.com', '413-370-1826', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('fblanckley64@comcast.net', '451-470-0523', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('dheigho65@cisco.com', '718-705-8259', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('dschankel66@ocn.ne.jp', '719-252-3055', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('nfawcus67@economist.com', '631-522-4516', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('mclitsome68@i2i.jp', '582-227-4646', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('rkornyakov69@woothemes.com', '930-606-9922', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('lfirsby6a@japanpost.jp', '178-355-0398', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('olyles6b@buzzfeed.com', '948-489-2714', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('cboylund6c@is.gd', '851-392-1801', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('mbeasley6d@upenn.edu', '168-830-6589', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('dsaunder6e@slate.com', '994-700-9301', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('epiotrowski6f@ovh.net', '478-194-1318', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('cchristofides6g@geocities.com', '488-685-6327', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('sziemen6h@163.com', '753-254-4073', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('tgrindley6i@stumbleupon.com', '134-216-5427', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('prothon6j@businessinsider.com', '500-768-0309', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('ncatteroll6k@skyrock.com', '356-507-6899', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('rcaslake6l@uiuc.edu', '245-582-3236', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('cvickerman6m@vk.com', '124-226-6376', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('warnault6n@is.gd', '410-773-7405', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('phryniewicki6o@reverbnation.com', '136-348-5953', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('tlawlie6p@about.com', '916-925-3939', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('bjankowski6q@ted.com', '982-737-2141', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('preddish6r@digg.com', '490-536-3560', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('eblenkensop6s@seattletimes.com', '868-234-3508', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('cgaffney6t@yahoo.co.jp', '685-772-4245', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('eloch6u@vistaprint.com', '181-585-5339', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('msandey6v@discuz.net', '956-292-2209', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('akleeman6w@merriam-webster.com', '135-799-2618', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('blunck6x@amazon.com', '131-985-0137', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('ikittredge6y@independent.co.uk', '664-921-3452', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('jteal6z@dot.gov', '146-761-5804', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('brosellini70@ft.com', '590-767-7547', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('abolliver71@domainmarket.com', '449-877-9487', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('msturman72@chron.com', '239-244-3957', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('jgeorg73@wordpress.com', '419-324-4854', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('mchalfont74@nhs.uk', '518-684-8734', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('amacanelley75@scientificamerican.com', '310-283-9532', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('sakid76@last.fm', '772-777-4657', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('aveel77@wix.com', '733-441-9158', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('ftitt78@hatena.ne.jp', '215-238-8214', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('ngideon79@joomla.org', '835-901-7180', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('mmassy7a@live.com', '524-645-7136', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('cclewer7b@vimeo.com', '569-969-5263', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('rcawsey7c@ustream.tv', '554-669-4520', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('epods7d@eepurl.com', '635-487-3999', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('tclayworth7e@symantec.com', '828-584-5133', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('syegoshin7f@e-recht24.de', '174-233-5421', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('lbothram7g@elpais.com', '860-959-9993', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('mcaldera7h@disqus.com', '399-867-3531', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('pvernay7i@domainmarket.com', '312-776-1968', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('cdomican7j@ehow.com', '395-766-2830', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('ushowt7k@barnesandnoble.com', '460-469-1894', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('pswinley7l@ed.gov', '602-264-5436', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('molrenshaw7m@ow.ly', '956-580-3839', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('kadriano7n@ebay.com', '590-773-1680', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('rzoren7o@mac.com', '756-977-2384', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('hhiers7p@merriam-webster.com', '167-916-4285', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('npydcock7q@google.ru', '224-348-4796', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('kholde7r@gnu.org', '950-249-3056', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('dglazier7s@latimes.com', '652-267-0100', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('kstratley7t@msn.com', '772-860-1547', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('aroan7u@gravatar.com', '244-836-9509', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('cspiers7v@nature.com', '895-598-8394', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('apaullin7w@squarespace.com', '955-888-1907', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('mbotte7x@house.gov', '489-303-7191', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('cfydo7y@behance.net', '553-494-3600', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('jdelooze7z@furl.net', '100-356-6600', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('ybrunt80@list-manage.com', '758-979-7031', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('goshevlan81@yahoo.com', '495-506-8093', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('gelbourne82@freewebs.com', '444-485-2848', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('cmaslen83@aol.com', '832-851-4340', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('ezanotti84@fda.gov', '359-428-5813', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('lbolton85@amazon.com', '645-675-3771', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('awhitington86@yahoo.com', '685-911-6192', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('ielliff87@biglobe.ne.jp', '860-944-8829', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('ltimblett88@gov.uk', '812-876-8573', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('aedis89@cnet.com', '523-154-8688', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('szavittieri8a@howstuffworks.com', '732-794-4737', '6c8f49934f14e6f02119487778b6395476ffdd33');
insert into users (email, phone, pass) values ('dwyne8b@latimes.com', '509-824-3239', '6c8f49934f14e6f02119487778b6395476ffdd33');
|
# Host: localhost (Version: 5.5.53)
# Date: 2018-01-18 20:36:57
# Generator: MySQL-Front 5.3 (Build 4.234)
/*!40101 SET NAMES utf8 */;
#
# Structure for table "ih_goods"
#
DROP TABLE IF EXISTS `ih_goods`;
CREATE TABLE `ih_goods` (
`goods_id` int(10) unsigned NOT NULL AUTO_INCREMENT,
`cat_id` int(11) NOT NULL,
`goods_name` varchar(255) NOT NULL,
PRIMARY KEY (`goods_id`)
) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8;
#
# Structure for table "ih_log"
#
DROP TABLE IF EXISTS `ih_log`;
CREATE TABLE `ih_log` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`event` varchar(255) NOT NULL DEFAULT '' COMMENT '返回事件',
`type` tinyint(3) NOT NULL DEFAULT '0' COMMENT '状态码',
`addtime` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP COMMENT '时间',
PRIMARY KEY (`id`)
) ENGINE=MyISAM AUTO_INCREMENT=463 DEFAULT CHARSET=utf8 COMMENT='记录日志';
#
# Structure for table "ih_order"
#
DROP TABLE IF EXISTS `ih_order`;
CREATE TABLE `ih_order` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`order_sn` char(32) NOT NULL,
`user_id` int(11) NOT NULL DEFAULT '0' COMMENT '用户id',
`status` int(11) NOT NULL DEFAULT '0' COMMENT '状态码',
`goods_id` int(11) NOT NULL DEFAULT '0' COMMENT '购买数量',
`sku_id` int(11) NOT NULL DEFAULT '0' COMMENT '产品id',
`price` float DEFAULT NULL COMMENT '产品价格',
`addtime` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='订单表';
#
# Structure for table "ih_store"
#
DROP TABLE IF EXISTS `ih_store`;
CREATE TABLE `ih_store` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`goods_id` int(11) NOT NULL,
`sku_id` int(10) unsigned NOT NULL DEFAULT '0',
`number` int(10) NOT NULL DEFAULT '0',
`freez` int(11) NOT NULL DEFAULT '0' COMMENT '虚拟库存',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COMMENT='库存';
|
select
ID,
coalesce(caption, '') as caption,
name,
edrpou,
inn,
email
from org_organization
where record_state <> 4 |
-- phpMyAdmin SQL Dump
-- version 4.6.5.2
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: Jul 10, 2017 at 12:51 PM
-- Server version: 10.1.21-MariaDB
-- PHP Version: 5.6.30
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Database: `restaurant`
--
-- --------------------------------------------------------
--
-- Table structure for table `tadmins`
--
CREATE TABLE `tadmins` (
`fIdAdmin` int(11) UNSIGNED NOT NULL,
`fUsername` varchar(32) DEFAULT NULL,
`fPassword` varchar(32) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `tadmins`
--
INSERT INTO `tadmins` (`fIdAdmin`, `fUsername`, `fPassword`) VALUES
(1, 'admin', 'admin');
-- --------------------------------------------------------
--
-- Table structure for table `tcategorii`
--
CREATE TABLE `tcategorii` (
`fIdCategorie` int(11) UNSIGNED NOT NULL,
`fNumeCategorie` varchar(50) NOT NULL DEFAULT ''
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
--
-- Dumping data for table `tcategorii`
--
INSERT INTO `tcategorii` (`fIdCategorie`, `fNumeCategorie`) VALUES
(1, 'MENIURI'),
(2, 'APERITIVE'),
(3, 'CIORBE/SUPE'),
(4, 'FELURI PRINCIPALE'),
(5, 'GARNITURI'),
(6, 'SALATE'),
(7, 'DESERT'),
(8, 'BAUTURI');
-- --------------------------------------------------------
--
-- Table structure for table `tcomentarii`
--
CREATE TABLE `tcomentarii` (
`fIdComentariu` int(11) UNSIGNED NOT NULL,
`fIdProdus` int(11) UNSIGNED NOT NULL DEFAULT '0',
`fIdUtilizator` int(11) NOT NULL DEFAULT '0',
`fComentariu` varchar(100) DEFAULT NULL,
`fData` date NOT NULL DEFAULT '0000-00-00',
`fAprobat` tinyint(1) UNSIGNED NOT NULL DEFAULT '0',
`fValoareVot` int(11) UNSIGNED NOT NULL DEFAULT '0'
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
--
-- Dumping data for table `tcomentarii`
--
INSERT INTO `tcomentarii` (`fIdComentariu`, `fIdProdus`, `fIdUtilizator`, `fComentariu`, `fData`, `fAprobat`, `fValoareVot`) VALUES
(22, 0, 8, 'a fost ok', '0000-00-00', 1, 3),
(25, 0, 10, 'delicios', '0000-00-00', 0, 5);
-- --------------------------------------------------------
--
-- Table structure for table `tcomenzi`
--
CREATE TABLE `tcomenzi` (
`fIdComanda` int(11) UNSIGNED NOT NULL,
`fIdUtilizator` int(11) UNSIGNED NOT NULL DEFAULT '0',
`fIdCupon` int(11) DEFAULT NULL,
`fNumeCumparator` varchar(100) DEFAULT NULL,
`fEmailCumparator` varchar(100) DEFAULT NULL,
`fAdresaCumparator` text,
`fDataComanda` date DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
--
-- Dumping data for table `tcomenzi`
--
INSERT INTO `tcomenzi` (`fIdComanda`, `fIdUtilizator`, `fIdCupon`, `fNumeCumparator`, `fEmailCumparator`, `fAdresaCumparator`, `fDataComanda`) VALUES
(7, 7, NULL, 'david', 'david@gmail.com', '26-28 Mehedinti , Cluj Napoca', '2017-07-03'),
(6, 8, NULL, 'david1', 'david1@gmail.com', 'strada abs nr 12', '2017-07-03');
-- --------------------------------------------------------
--
-- Table structure for table `tcos`
--
CREATE TABLE `tcos` (
`fIdItem` int(11) UNSIGNED NOT NULL,
`fIdUtilizator` int(11) UNSIGNED NOT NULL DEFAULT '0',
`fIdProdus` int(11) UNSIGNED NOT NULL DEFAULT '0',
`fCantitate` int(11) UNSIGNED NOT NULL DEFAULT '0',
`fIdSesiune` varchar(50) NOT NULL DEFAULT ''
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
-- --------------------------------------------------------
--
-- Table structure for table `tproduse`
--
CREATE TABLE `tproduse` (
`fIdProdus` int(11) UNSIGNED NOT NULL,
`fIdSubcategorie` int(11) UNSIGNED NOT NULL DEFAULT '0',
`fNumeProdus` varchar(255) NOT NULL DEFAULT '',
`fCodProdus` varchar(50) DEFAULT NULL,
`fImagine` varchar(100) DEFAULT NULL,
`fDescriere` varchar(255) DEFAULT NULL,
`fPret` varchar(50) NOT NULL DEFAULT '0'
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
--
-- Dumping data for table `tproduse`
--
INSERT INTO `tproduse` (`fIdProdus`, `fIdSubcategorie`, `fNumeProdus`, `fCodProdus`, `fImagine`, `fDescriere`, `fPret`) VALUES
(1, 1, 'Meniul1', '12', '1.jpg', '1 Pizza Capriciossa + 1 portie Clatite Dulceata', '25'),
(11, 8, 'Supa crema de sparanghel', '11', '7.jpg', 'sparanghel,morcovi,telina,zucchini,ceapa alba', '8'),
(2, 1, 'Meniul2', '2', '1.jpg', '1 ciorba Vacuta + Snitel Pui + Cartofi Prajiti', '25'),
(10, 7, 'Ciorba de vacuta', '10', '6.jpg', 'pulpa de vita,cartofi,telina,morcovi,ardei gras,ceapa alba', '7'),
(3, 1, 'Meniul 3', '3', '1.jpg', '1 Ciorba Vacuta+ 1 Spaghete Carbonara', '25'),
(8, 5, 'Mix aperitiv de post', '8', '4.jpg', 'humus,vinete,masline verzi,pesto', '20'),
(9, 7, 'Ciorba de burta', 's1', '5.jpg', 'burta vita,ou,morcovi,usturoi,gogosari murati,smantana lichida,otet', '9'),
(4, 2, 'Meniul4', '4', '1.jpg', 'Piure de cartofi + Salata de varza', '12'),
(5, 4, 'Biftec tartar', '5', '2.jpg', 'muschi de vita,castraveti murati,ceapa alba,ou,unt,sosuri specifice,capere', '27'),
(6, 4, 'Tartar de somon', '6', '3.jpg', 'somon,somon fumee,capere,lamaie,unt,marar,chivas,sos soia', '25'),
(12, 8, 'Supa crema de rosii', '12', '9.jpg', 'rosii fresh,morcovi,telina,usturoi,ceapa alba,busuioc fresh,oregano', '7'),
(13, 10, 'Ceafa de porc grill', '13', '10.jpg', 'Ceafa de porc,rozmarin fresh,boia ardei dulce', '12'),
(14, 10, 'Piept de pui grill', '14', '11.jpg', 'piept de pui,rozmarin fresh', '10'),
(15, 10, 'Ton rosu in crusta de susan', '15', '12.jpg', 'ton rosu,susan,lamaie', '40'),
(16, 12, 'Ciuperci gratinate', '16', '13.jpg', 'ciuperci champignon fresh, mozzarella', '11'),
(17, 15, 'Brocolli grill', '17', '14.jpg', 'brocolli,unt', '8'),
(18, 13, 'Legume sote', '18', '15.jpg', 'ardei gras,usturoi,fasole verde pastai,unt,mazare boabe,conopida,baby morcov,rozmarin fresh', '9'),
(19, 15, 'Ratatouille de legume', '18', '16.jpg', 'ardei gras,ceapa rosie,ciuperci,vinete,zucchini,usturoi', '9'),
(20, 13, 'Spanac cu muguri de pin', '20', '17.jpg', 'spanac,muguri pin,rosii cherry,parmezan', '10'),
(21, 16, 'Salata cu branza Halloumi grill', '3', '18.jpg', 'branza halloumi,rucola,rosii cherry,radicchio,valeriana,baby spanac,oregano', '28'),
(22, 16, 'Salata Capresse', '22', '19.jpg', 'rosii,rosii cherry,mozzarella,busuioc fresh', '12'),
(23, 18, 'Salata mixta de vara', '23', '20.jpg', 'ardei gras,ceapa rosie,rosii,castraveti,salata verde,masline negre,oregano', '9'),
(24, 19, 'Cheese cake cu zmeura', '24', '21.jpg', 'Cheese cake cu zmeura', '15'),
(25, 20, 'Prune cu nuci', '25', '22.jpg', 'Prune cu nuci', '13');
-- --------------------------------------------------------
--
-- Table structure for table `tprodusecomenzi`
--
CREATE TABLE `tprodusecomenzi` (
`fIdArticol` int(11) UNSIGNED NOT NULL,
`fIdComanda` int(11) DEFAULT NULL,
`fIdProdus` int(11) DEFAULT NULL,
`fCantitate` int(11) DEFAULT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `tprodusecomenzi`
--
INSERT INTO `tprodusecomenzi` (`fIdArticol`, `fIdComanda`, `fIdProdus`, `fCantitate`) VALUES
(9, 6, 13, 1),
(10, 6, 17, 1),
(11, 6, 24, 1),
(12, 7, 1, 1),
(13, 7, 11, 1);
-- --------------------------------------------------------
--
-- Table structure for table `tsubcategorii`
--
CREATE TABLE `tsubcategorii` (
`fIdSubcategorie` int(11) UNSIGNED NOT NULL,
`fIdCategorie` int(11) UNSIGNED NOT NULL DEFAULT '0',
`fNumeSubcategorie` varchar(100) NOT NULL DEFAULT ''
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
--
-- Dumping data for table `tsubcategorii`
--
INSERT INTO `tsubcategorii` (`fIdSubcategorie`, `fIdCategorie`, `fNumeSubcategorie`) VALUES
(1, 1, 'FRUPT'),
(2, 1, 'POST'),
(3, 1, 'VEGETARIAN'),
(4, 2, 'FRUPT'),
(5, 2, 'POST'),
(6, 2, 'VEGETARIAN'),
(7, 3, 'FRUPT'),
(8, 3, 'POST'),
(9, 3, 'VEGETARIAN'),
(10, 4, 'FRUPT'),
(11, 4, 'POST'),
(12, 4, 'VEGETARIAN'),
(13, 5, 'FRUPT'),
(14, 5, 'POST'),
(15, 5, 'VEGETARIAN'),
(16, 6, 'FRUPT'),
(17, 6, 'POST'),
(18, 6, 'VEGETARIAN'),
(19, 7, 'FRUPT'),
(20, 7, 'POST'),
(21, 7, 'VEGETARIAN'),
(22, 8, 'FRUPT'),
(23, 8, 'POST'),
(24, 8, 'VEGETARIAN');
-- --------------------------------------------------------
--
-- Table structure for table `tutilizatori`
--
CREATE TABLE `tutilizatori` (
`fIdUtilizator` int(11) UNSIGNED NOT NULL,
`fNumeUtilizator` varchar(32) NOT NULL DEFAULT '',
`fParola` varchar(32) NOT NULL DEFAULT '',
`fEmail` varchar(150) NOT NULL DEFAULT '',
`fAdresa` text,
`fDataInregistrare` date DEFAULT NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1;
--
-- Dumping data for table `tutilizatori`
--
INSERT INTO `tutilizatori` (`fIdUtilizator`, `fNumeUtilizator`, `fParola`, `fEmail`, `fAdresa`, `fDataInregistrare`) VALUES
(8, 'david1', '1234asdf', 'david1@gmail.com', 'strada abs nr 12', '2017-07-03'),
(10, 'david', '1234asdf', 'david@gmail.com', 'strada mehedinti nr 26-28', '2017-07-09'),
(9, 'david3', '1234asdf', 'david3@gmail.com', 'strada alabala nr 1', '2017-07-07');
--
-- Indexes for dumped tables
--
--
-- Indexes for table `tadmins`
--
ALTER TABLE `tadmins`
ADD PRIMARY KEY (`fIdAdmin`);
--
-- Indexes for table `tcategorii`
--
ALTER TABLE `tcategorii`
ADD PRIMARY KEY (`fIdCategorie`),
ADD UNIQUE KEY `fIdCategorie` (`fIdCategorie`),
ADD KEY `fIdCategorie_2` (`fIdCategorie`);
--
-- Indexes for table `tcomentarii`
--
ALTER TABLE `tcomentarii`
ADD PRIMARY KEY (`fIdComentariu`),
ADD UNIQUE KEY `fIdComentariu` (`fIdComentariu`),
ADD KEY `fIdComentariu_2` (`fIdComentariu`);
--
-- Indexes for table `tcomenzi`
--
ALTER TABLE `tcomenzi`
ADD PRIMARY KEY (`fIdComanda`),
ADD UNIQUE KEY `fIdComanda` (`fIdComanda`),
ADD KEY `fIdComanda_2` (`fIdComanda`);
--
-- Indexes for table `tcos`
--
ALTER TABLE `tcos`
ADD PRIMARY KEY (`fIdItem`),
ADD UNIQUE KEY `fIdItem` (`fIdItem`),
ADD KEY `fIdItem_2` (`fIdItem`);
--
-- Indexes for table `tproduse`
--
ALTER TABLE `tproduse`
ADD PRIMARY KEY (`fIdProdus`),
ADD UNIQUE KEY `fIdProdus` (`fIdProdus`),
ADD KEY `fIdProdus_2` (`fIdProdus`);
--
-- Indexes for table `tprodusecomenzi`
--
ALTER TABLE `tprodusecomenzi`
ADD PRIMARY KEY (`fIdArticol`);
--
-- Indexes for table `tsubcategorii`
--
ALTER TABLE `tsubcategorii`
ADD PRIMARY KEY (`fIdSubcategorie`),
ADD UNIQUE KEY `fIdSubcategorie` (`fIdSubcategorie`),
ADD KEY `fIdSubcategorie_2` (`fIdSubcategorie`);
--
-- Indexes for table `tutilizatori`
--
ALTER TABLE `tutilizatori`
ADD PRIMARY KEY (`fIdUtilizator`),
ADD UNIQUE KEY `fIdUser` (`fIdUtilizator`),
ADD KEY `fIdUser_2` (`fIdUtilizator`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `tadmins`
--
ALTER TABLE `tadmins`
MODIFY `fIdAdmin` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT for table `tcategorii`
--
ALTER TABLE `tcategorii`
MODIFY `fIdCategorie` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10;
--
-- AUTO_INCREMENT for table `tcomentarii`
--
ALTER TABLE `tcomentarii`
MODIFY `fIdComentariu` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=26;
--
-- AUTO_INCREMENT for table `tcomenzi`
--
ALTER TABLE `tcomenzi`
MODIFY `fIdComanda` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=9;
--
-- AUTO_INCREMENT for table `tcos`
--
ALTER TABLE `tcos`
MODIFY `fIdItem` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=25;
--
-- AUTO_INCREMENT for table `tproduse`
--
ALTER TABLE `tproduse`
MODIFY `fIdProdus` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=26;
--
-- AUTO_INCREMENT for table `tprodusecomenzi`
--
ALTER TABLE `tprodusecomenzi`
MODIFY `fIdArticol` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=15;
--
-- AUTO_INCREMENT for table `tsubcategorii`
--
ALTER TABLE `tsubcategorii`
MODIFY `fIdSubcategorie` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=25;
--
-- AUTO_INCREMENT for table `tutilizatori`
--
ALTER TABLE `tutilizatori`
MODIFY `fIdUtilizator` int(11) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
USE regalonatural; DELETE FROM regalonatural.ps_cart_rule_product_rule;
INSERT INTO `ps_cart_rule_product_rule` VALUES (1,1,'products');
|
SELECT
F.COST_PERIOD_ID, --社内コスト期間
CODE_MASTER.CODE_NAME AS COST_PERIOD_NAME --社内コスト期間名
FROM FUNDING_COST_MST F --社内コストマスタ
LEFT JOIN CODE_MASTER
ON CODE_MASTER.CODE_TYPE = CAST(/*fFundingCostMstKbn*/ AS CHAR(3))
AND CODE_MASTER.CODE_ID = F.COST_PERIOD_ID
AND CODE_MASTER.COUNTRY_ID = /*countryId*/
WHERE 1 = 1
AND F.START_DATE = (SELECT MAX(START_DATE) FROM FUNDING_COST_MST WHERE START_DATE <= /*businessDate*/)
AND F.RATE_TYPE = CAST(/*rateType*/ AS CHAR(1))
AND F.DELETE_FLG = CAST(/*deleteFlg*/ AS CHAR(1))
|
use native_db;
CREATE table sample_content (
id INT(10) auto_increment primary key,
item_title varchar(100),
group_name varchar(100),
notes text,
main_desc text,
long_desc text,
note_context text,
research_notes text,
display text,
prim_doc text
); |
-- Create moderation_queues table
DROP TABLE IF EXISTS moderation.distributed_moderation_queues;
CREATE TABLE IF NOT EXISTS moderation.distributed_moderation_queues
(
user_id UInt64,
campaign_id Array(UInt64),
advert_group_id UInt64 DEFAULT 0,
advert_id UInt64 DEFAULT 0,
object_id UInt64,
kind_of_object String,
object_type String,
queue_type String,
industry_id Array(UInt64),
category_id Array(UInt64),
queue_time DateTime,
queue_date Date DEFAULT toDate(queue_time)
) ENGINE = MergeTree()
PARTITION BY toYYYYMM(queue_date)
ORDER BY (
queue_date,
kind_of_object,
user_id,
advert_group_id,
advert_id,
object_id,
object_type,
queue_type,
queue_time
)
SETTINGS index_granularity = 8192;
|
-- phpMyAdmin SQL Dump
-- version 4.8.5
-- https://www.phpmyadmin.net/
--
-- Host: 127.0.0.1
-- Generation Time: Apr 23, 2019 at 07:55 AM
-- Server version: 10.1.36-MariaDB
-- PHP Version: 7.3.3
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET AUTOCOMMIT = 0;
START TRANSACTION;
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Database: `ci_blog`
--
-- --------------------------------------------------------
--
-- Table structure for table `posts`
--
CREATE TABLE `posts` (
`id` int(11) NOT NULL,
`category_id` int(11) NOT NULL,
`user_id` int(11) NOT NULL,
`title` varchar(255) NOT NULL,
`url_title` varchar(255) NOT NULL,
`body` text NOT NULL,
`post_image` varchar(255) NOT NULL,
`created_date` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `posts`
--
INSERT INTO `posts` (`id`, `category_id`, `user_id`, `title`, `url_title`, `body`, `post_image`, `created_date`) VALUES
(12, 5, 1, 'Post one', 'Post-one', '<p>In viverra volutpat lorem, vel tincidunt ante dictum sed. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Sed bibendum odio enim, sed pulvinar nisi lobortis eget. Phasellus ac tellus odio. Mauris sit amet eros vestibulum, sollicitudin sapien eget, maximus mauris. Nulla gravida id tortor quis rhoncus. Proin eu massa fringilla elit dapibus eleifend vitae nec lectus. Curabitur at iaculis mauris. In pharetra sapien nec nibh laoreet rutrum. Quisque turpis enim, lobortis eget nisi sed, ullamcorper accumsan felis. Nullam erat odio, interdum ac mi tristique, facilisis ullamcorper dolor. Maecenas suscipit accumsan est et viverra. Duis ullamcorper bibendum maximus. Proin aliquam ex justo, in eleifend dui pharetra a. Pellentesque vel tortor est. Nam fermentum posuere enim.</p>\r\n', 'noimage.jpg', '2019-04-19 11:50:22'),
(13, 6, 1, 'Post four', 'Post-four', '<p>In viverra volutpat lorem, vel tincidunt ante dictum sed. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Sed bibendum odio enim, sed pulvinar nisi lobortis eget. Phasellus ac tellus odio. Mauris sit amet eros vestibulum, sollicitudin sapien eget, maximus mauris. Nulla gravida id tortor quis rhoncus. Proin eu massa fringilla elit dapibus eleifend vitae nec lectus. Curabitur at iaculis mauris. In pharetra sapien nec nibh laoreet rutrum. Quisque turpis enim, lobortis eget nisi sed, ullamcorper accumsan felis. Nullam erat odio, interdum ac mi tristique, facilisis ullamcorper dolor. Maecenas suscipit accumsan est et viverra. Duis ullamcorper bibendum maximus. Proin aliquam ex justo, in eleifend dui pharetra a. Pellentesque vel tortor est. Nam fermentum posuere enim.</p>\r\n', 'noimage.jpg', '2019-04-19 11:50:48'),
(14, 4, 1, 'Post five', 'post-five', '<p>In viverra volutpat lorem, vel tincidunt ante dictum sed. Class aptent taciti sociosqu ad litora torquent per conubia nostra, per inceptos himenaeos. Sed bibendum odio enim, sed pulvinar nisi lobortis eget. Phasellus ac tellus odio. Mauris sit amet eros vestibulum, sollicitudin sapien eget, maximus mauris. Nulla gravida id tortor quis rhoncus. Proin eu massa fringilla elit dapibus eleifend vitae nec lectus. Curabitur at iaculis mauris. In pharetra sapien nec nibh laoreet rutrum. Quisque turpis enim, lobortis eget nisi sed, ullamcorper accumsan felis. Nullam erat odio, interdum ac mi tristique, facilisis ullamcorper dolor. Maecenas suscipit accumsan est et viverra. Duis ullamcorper bibendum maximus. Proin aliquam ex justo, in eleifend dui pharetra a. Pellentesque vel tortor est. Nam fermentum posuere enim.</p>\r\n', 'noimage.jpg', '2019-04-19 11:51:35');
--
-- Indexes for dumped tables
--
--
-- Indexes for table `posts`
--
ALTER TABLE `posts`
ADD PRIMARY KEY (`id`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `posts`
--
ALTER TABLE `posts`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=15;
COMMIT;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
/*
SQLyog Ultimate v9.10
MySQL - 5.1.73-community : Database - file_manage
*********************************************************************
*/
/*!40101 SET NAMES utf8 */;
/*!40101 SET SQL_MODE=''*/;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
CREATE DATABASE /*!32312 IF NOT EXISTS*/`file_manage` /*!40100 DEFAULT CHARACTER SET utf8 */;
USE `file_manage`;
/*Table structure for table `klfile` */
DROP TABLE IF EXISTS `klfile`;
CREATE TABLE `klfile` (
`klfile_ID` int(11) NOT NULL AUTO_INCREMENT,
`klfile_fileName` varchar(30) NOT NULL COMMENT '文件名',
`klfile_author` varchar(30) NOT NULL COMMENT '上传者',
`klfile_uploadingTime` varchar(30) NOT NULL DEFAULT '2017-01-01' COMMENT '上传时间',
`klfile_visitTime` int(20) NOT NULL COMMENT '浏览次数',
`klfile_downloads` int(20) NOT NULL COMMENT '下载次数',
`klfile_fileType` varchar(10) NOT NULL COMMENT '文件类型',
`klfile_fileSize` double DEFAULT NULL COMMENT '文件大小',
`klfile_documentClassification` varchar(20) NOT NULL COMMENT '所在类型',
PRIMARY KEY (`klfile_ID`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*Data for the table `klfile` */
/*Table structure for table `manager` */
DROP TABLE IF EXISTS `manager`;
CREATE TABLE `manager` (
`manager_ID` int(11) NOT NULL AUTO_INCREMENT COMMENT '管理员ID',
`manager_number` varchar(20) NOT NULL COMMENT '账号',
`manager_password` varchar(30) NOT NULL COMMENT '登陆密码',
`manager_lastTime` datetime DEFAULT NULL COMMENT '最后登录时间',
`manager_loginTime` int(11) DEFAULT '0' COMMENT '登陆次数',
PRIMARY KEY (`manager_ID`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*Data for the table `manager` */
/*Table structure for table `student` */
DROP TABLE IF EXISTS `student`;
CREATE TABLE `student` (
`student_ID` int(11) NOT NULL AUTO_INCREMENT COMMENT '学生ID',
`student_number` varchar(20) NOT NULL COMMENT '学号',
`student_password` varchar(30) NOT NULL COMMENT '登陆密码',
`student_name` varchar(20) NOT NULL COMMENT '姓名',
`student_phone` varchar(11) NOT NULL COMMENT '电话',
`student_email` varchar(30) NOT NULL COMMENT '邮箱',
`student_QQ` varchar(20) DEFAULT NULL COMMENT 'qq',
`student_weChat` varchar(20) DEFAULT NULL COMMENT '微信',
`student_brithday` varchar(20) DEFAULT '1990-01-01' COMMENT '生日',
`student_class` varchar(10) DEFAULT NULL COMMENT '班级',
`student_academy` varchar(20) DEFAULT NULL COMMENT '学院',
`student_strongPoint` varchar(50) NOT NULL COMMENT '知识特长',
`student_loginTime` int(10) DEFAULT NULL COMMENT '登陆次数',
`student_lastTime` varchar(20) DEFAULT NULL COMMENT '最后登录时间',
PRIMARY KEY (`student_ID`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*Data for the table `student` */
/*Table structure for table `studentfile` */
DROP TABLE IF EXISTS `studentfile`;
CREATE TABLE `studentfile` (
`studentFile_ID` int(11) NOT NULL AUTO_INCREMENT,
`studentFile_fileName` varchar(50) NOT NULL COMMENT '浏览过的文件名',
`studentFile_browseTime` varchar(20) NOT NULL DEFAULT '2017-01-01' COMMENT '浏览时间',
`studentFile_download` int(11) NOT NULL DEFAULT '0' COMMENT '是否下载过(0没下载过)',
`studentFile_studentName` varchar(20) NOT NULL COMMENT '学生姓名',
`studentFile_uploading` int(11) NOT NULL DEFAULT '0' COMMENT '是否是本人上传(1为本人上传)',
`studentFile_evaluate` varchar(100) DEFAULT NULL COMMENT '评价',
PRIMARY KEY (`studentFile_ID`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*Data for the table `studentfile` */
/*Table structure for table `teacher` */
DROP TABLE IF EXISTS `teacher`;
CREATE TABLE `teacher` (
`teacher_ID` int(11) NOT NULL AUTO_INCREMENT COMMENT '老师ID',
`teacher_number` varchar(20) NOT NULL COMMENT '考试登陆账号',
`teacher_password` varchar(30) NOT NULL COMMENT '登陆密码',
`teacher_name` varchar(10) NOT NULL COMMENT '老师密码',
`teacher_title` varchar(10) DEFAULT NULL COMMENT '老师职称',
`teacher_duty` varchar(10) DEFAULT NULL COMMENT '职务',
`teacher_department` varchar(20) DEFAULT NULL COMMENT '部门',
`teacher_office` varchar(20) DEFAULT NULL COMMENT '办公室',
`teacher_phone` varchar(11) NOT NULL COMMENT '电话',
`teacher_telephone` varchar(11) DEFAULT NULL COMMENT '固定电话',
`teacher_email` varchar(20) NOT NULL COMMENT '老师邮箱',
`teacher_academy` varchar(20) DEFAULT NULL COMMENT '老师院系',
`teacher_honor` varchar(100) DEFAULT NULL COMMENT '老师获奖情况',
`teacher_loginTime` int(11) DEFAULT NULL COMMENT '登陆次数',
`teacher_lastTime` varchar(10) DEFAULT NULL COMMENT '最后登录时间',
PRIMARY KEY (`teacher_ID`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*Data for the table `teacher` */
/*Table structure for table `teacherfile` */
DROP TABLE IF EXISTS `teacherfile`;
CREATE TABLE `teacherfile` (
`teacherFile_ID` int(11) NOT NULL AUTO_INCREMENT,
`teacherFile_fileName` varchar(30) NOT NULL COMMENT '老师浏览文件名',
`teacherFile_browseTime` varchar(30) DEFAULT '2017-01-01' COMMENT '浏览时间',
`teacherFile_download` int(11) NOT NULL DEFAULT '0' COMMENT '是否被下载过(0为没被下载过)',
`teacherFile_teacherName` varchar(20) NOT NULL COMMENT '教师姓名',
`teacherFile_uploading` int(11) DEFAULT '0' COMMENT '是否为本人上传(1为本人上传)',
`teacherFile_evaluate` varchar(100) DEFAULT NULL COMMENT '对文件的评价',
PRIMARY KEY (`teacherFile_ID`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
/*Data for the table `teacherfile` */
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
|
-- Your SQL goes here
-- this directory was made hidden so that the game_mode_option_table can be setup first!
CREATE TABLE interaction_history (
id BIGSERIAL PRIMARY KEY,
person BIGSERIAL REFERENCES users(id),
enjoyed_interaction BOOL,
start_date TIMESTAMP NOT NULL,
start_time TIMESTAMP NOT NULL,
end_date TIMESTAMP ,
end_time TIMESTAMP ,
mode text REFERENCES game_mode (valid_mode) ON UPDATE CASCADE
); |
-- MySQL dump 10.13 Distrib 5.5.46, for debian-linux-gnu (x86_64)
--
-- Host: localhost Database: exp_sys
-- ------------------------------------------------------
-- Server version 5.5.46-0ubuntu0.14.04.2
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
/*!40103 SET @OLD_TIME_ZONE=@@TIME_ZONE */;
/*!40103 SET TIME_ZONE='+00:00' */;
/*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */;
/*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */;
/*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */;
/*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */;
--
-- Table structure for table `condition`
--
DROP TABLE IF EXISTS `condition`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `condition` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) DEFAULT NULL,
`cond_list` text COMMENT '条件列表,以逗号分隔。如,对于browser的cond_list:chrome,firefox,ie,...',
`owner_id` int(11) DEFAULT NULL,
`description` text,
PRIMARY KEY (`id`),
UNIQUE KEY `name_UNIQUE` (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `condition`
--
LOCK TABLES `condition` WRITE;
/*!40000 ALTER TABLE `condition` DISABLE KEYS */;
/*!40000 ALTER TABLE `condition` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `diversion`
--
DROP TABLE IF EXISTS `diversion`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `diversion` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`type` enum('uuid','user','random') DEFAULT NULL,
`buckets` int(11) DEFAULT '10000',
`description` text COMMENT '该流量分配方式的总桶数',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `diversion`
--
LOCK TABLES `diversion` WRITE;
/*!40000 ALTER TABLE `diversion` DISABLE KEYS */;
/*!40000 ALTER TABLE `diversion` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `domain`
--
DROP TABLE IF EXISTS `domain`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `domain` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`parent_id` int(11) DEFAULT NULL COMMENT '父domain id',
`name` varchar(255) DEFAULT NULL COMMENT '域名',
`owner_id` int(11) DEFAULT NULL,
`enabled` tinyint(1) DEFAULT NULL COMMENT '是否启用',
`buckets` int(11) DEFAULT NULL COMMENT '流量大小 [0,10000]',
`create_time` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `name_UNIQUE` (`name`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `domain`
--
LOCK TABLES `domain` WRITE;
/*!40000 ALTER TABLE `domain` DISABLE KEYS */;
/*!40000 ALTER TABLE `domain` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `exp_group`
--
DROP TABLE IF EXISTS `exp_group`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `exp_group` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`exp_list` varchar(255) DEFAULT NULL COMMENT '实验组内的实验id列表,以逗号分隔',
`name` varchar(255) DEFAULT NULL,
`description` text,
`owner_id` int(11) DEFAULT NULL,
`create_time` datetime DEFAULT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `exp_group`
--
LOCK TABLES `exp_group` WRITE;
/*!40000 ALTER TABLE `exp_group` DISABLE KEYS */;
/*!40000 ALTER TABLE `exp_group` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `experiment`
--
DROP TABLE IF EXISTS `experiment`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `experiment` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) DEFAULT NULL,
`owner_id` int(11) DEFAULT NULL,
`description` text,
`control_id` int(11) DEFAULT NULL COMMENT '控制组id',
`layer_id` int(11) DEFAULT NULL,
`diversion_id` int(11) DEFAULT NULL COMMENT '流量分配方式',
`conditions` text COMMENT '流量过滤条件,json格式。如:{‘broswer’: [‘IE’, ‘firefox’], ‘build_version’: [‘1.8’, ‘1.9’]}',
`parameters` text COMMENT '参数列表。如:param1=val1;param2=val2;...',
`buckets` int(11) DEFAULT NULL COMMENT '抽样桶数量 [0,10000]',
`start_time` datetime DEFAULT NULL COMMENT '实验启动时间',
`end_time` datetime DEFAULT NULL COMMENT '实验结束时间',
`status` enum('draft','pending','rejected','revert','pause','deploy','published','completed') DEFAULT NULL COMMENT '实验状态:草稿、待审核、被拒绝、撤销、暂停、待发布、已发布、完成',
`create_time` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
KEY `layer_id` (`layer_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `experiment`
--
LOCK TABLES `experiment` WRITE;
/*!40000 ALTER TABLE `experiment` DISABLE KEYS */;
/*!40000 ALTER TABLE `experiment` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `layer`
--
DROP TABLE IF EXISTS `layer`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `layer` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) DEFAULT NULL,
`domain_id` int(11) DEFAULT NULL,
`owner_id` int(11) DEFAULT NULL,
`launch` tinyint(1) DEFAULT '0' COMMENT '是否launch layer',
`enabled` tinyint(1) DEFAULT NULL COMMENT '是否启动',
`create_time` datetime DEFAULT NULL,
PRIMARY KEY (`id`),
UNIQUE KEY `name_UNIQUE` (`name`),
KEY `domain_id` (`domain_id`),
KEY `user_id` (`owner_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `layer`
--
LOCK TABLES `layer` WRITE;
/*!40000 ALTER TABLE `layer` DISABLE KEYS */;
/*!40000 ALTER TABLE `layer` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `parameter`
--
DROP TABLE IF EXISTS `parameter`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `parameter` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(255) DEFAULT NULL,
`layer_id` int(11) DEFAULT NULL,
`type` enum('bool','int','double','string') DEFAULT NULL COMMENT '参数类型',
`value` varchar(255) DEFAULT NULL COMMENT '参数缺省值',
`owner_id` int(11) DEFAULT NULL COMMENT '负责人id',
`create_time` datetime DEFAULT NULL COMMENT '参数创建时间',
`description` text COMMENT '具体参数说明',
PRIMARY KEY (`id`),
UNIQUE KEY `name_UNIQUE` (`name`),
KEY `layer_id` (`layer_id`),
KEY `owner_id` (`owner_id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `parameter`
--
LOCK TABLES `parameter` WRITE;
/*!40000 ALTER TABLE `parameter` DISABLE KEYS */;
/*!40000 ALTER TABLE `parameter` ENABLE KEYS */;
UNLOCK TABLES;
--
-- Table structure for table `user`
--
DROP TABLE IF EXISTS `user`;
/*!40101 SET @saved_cs_client = @@character_set_client */;
/*!40101 SET character_set_client = utf8 */;
CREATE TABLE `user` (
`user_id` int(11) NOT NULL COMMENT '和user表保持同步',
`username` varchar(45) CHARACTER SET latin1 DEFAULT NULL,
`role` enum('user','manager','admin') DEFAULT NULL COMMENT '角色(普通用户、审核用户、管理员)',
PRIMARY KEY (`user_id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='用户表';
/*!40101 SET character_set_client = @saved_cs_client */;
--
-- Dumping data for table `user`
--
LOCK TABLES `user` WRITE;
/*!40000 ALTER TABLE `user` DISABLE KEYS */;
/*!40000 ALTER TABLE `user` ENABLE KEYS */;
UNLOCK TABLES;
/*!40103 SET TIME_ZONE=@OLD_TIME_ZONE */;
/*!40101 SET SQL_MODE=@OLD_SQL_MODE */;
/*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */;
/*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
/*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
-- Dump completed on 2015-11-12 11:54:40
|
/*
database: ecoai
*/
SET NAMES utf8;
SET FOREIGN_KEY_CHECKS = 0;
-- ----------------------------
-- Table structure for `observation_met_city`
-- ----------------------------
DROP TABLE IF EXISTS `observation_met_city`;
CREATE TABLE `observation_met_city` (
`id` bigint(20) NOT NULL AUTO_INCREMENT,
`city_id` int(11) DEFAULT NULL,
`file_date` datetime DEFAULT NULL,
`met_type` varchar(16) DEFAULT NULL,
`met_unit` varchar(8) DEFAULT NULL,
`observed_time` datetime DEFAULT NULL,
`met_value` varchar(16) DEFAULT NULL,
PRIMARY KEY (`id`) USING BTREE
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8 ROW_FORMAT=DYNAMIC COMMENT='城市气象观测表';
|
CREATE DATABASE IF NOT EXISTS `storyproject` DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci;
USE `storyproject`;
CREATE TABLE `searchresults` (
`id` int(10) UNSIGNED NOT NULL,
`searchedterm` varchar(128) NOT NULL,
`searchedtime` datetime NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Table for storing returned video ids related to searched results';
CREATE TABLE `videodetails` (
`videoid` varchar(128) NOT NULL,
`videotitle` varchar(255) DEFAULT NULL,
`channelid` varchar(128) NOT NULL,
`channeltitle` varchar(255) DEFAULT NULL,
`description` text,
`publisheddate` datetime NOT NULL,
`thumbnailurl` varchar(255) DEFAULT NULL,
`searchedterm` varchar(128) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COMMENT='Table for Storing Video details';
ALTER TABLE `searchresults`
ADD PRIMARY KEY (`id`),
ADD UNIQUE KEY `searchunique` (`searchedterm`),
ADD KEY `searched term` (`searchedterm`);
ALTER TABLE `videodetails`
ADD PRIMARY KEY (`videoid`),
ADD KEY `searchterm` (`searchedterm`);
ALTER TABLE `searchresults`
MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7; |
/* create database if not exists bookshop;
use bookshop;
*/
drop table if exists books;
CREATE TABLE IF NOT EXISTS books (
item_number INT NOT NULL,
title VARCHAR(120) NOT NULL,
author VARCHAR(30) NOT NULL,
description VARCHAR(100),
retail_cost FLOAT NOT NULL,
publication_date INT
);
alter table books add constraint book_pk primary key (item_number);
drop table if exists customers;
create table if not exists customers (
customer_number int not null,
first_name varchar(20) not null,
last_name varchar(20) not null,
telephone_number varchar(15),
address_line1 varchar(30),
address_line2 varchar(30),
address_line3 varchar(30),
city varchar(30),
state varchar(25),
postalcode varchar(10),
country varchar(15)
);
alter table customers add constraint customer_pk primary key(customer_number);
drop table if exists book_orders;
create table if not exists book_orders (
order_number int not null,
order_date date not null,
shipping_cost float not null,
ship_date date,
customer_number int not null,
total_price float
);
alter table book_orders add constraint book_order_pk primary key (order_number);
drop table if exists order_items;
create table if not exists order_items (
order_line int not null,
order_number int not null,
item_number int not null,
quantity int,
discount float
);
alter table order_items add constraint order_items_pk primary key (order_number, order_line);
|
INSERT INTO LEAVE3
VALUES('011a1', 'CL', '23-MAR-10', '25-MAR-10');
INSERT INTO LEAVE3
VALUES('012a1', 'CL', '23-APR-10', '25-APR-10');
INSERT INTO LEAVE3
VALUES('013a1', 'EL', '23-MAR-10', '25-APR-10');
INSERT INTO LEAVE3
VALUES('014a1', 'ML', '01-MAR-10', '25-MAR-10');
|
DROP TABLE IF EXISTS r_alert_picture CASCADE;
DROP TABLE IF EXISTS pictures CASCADE;
DROP TABLE IF EXISTS url CASCADE;
DROP TABLE IF EXISTS pest CASCADE;
DROP TABLE IF EXISTS crop CASCADE;
DROP TABLE IF EXISTS disease CASCADE;
DROP TABLE IF EXISTS harvest CASCADE;
-- table pest
CREATE TABLE pest (
id_pest serial PRIMARY KEY,
lbl_pest text NOT NULL,
id_pic integer NOT NULL,
url text NOT NULL,
comment text
)
WITH (
OIDS=FALSE
);
ALTER TABLE pest OWNER TO postgres;
-- table crop
CREATE TABLE crop (
id_crop serial NOT NULL PRIMARY KEY,
lbl_crop text NOT NULL,
id_pic integer NOT NULL,
url text NOT NULL,
comment text
)
WITH (
OIDS=FALSE
);
ALTER TABLE crop OWNER TO postgres;
-- table disease
CREATE TABLE disease (
id_disease serial NOT NULL PRIMARY KEY,
lbl_disease text NOT NULL,
id_pic integer NOT NULL,
url text NOT NULL,
comment text
)
WITH (
OIDS=FALSE
);
ALTER TABLE disease OWNER TO postgres;
-- table picture
CREATE TABLE pictures (
id_pic serial NOT NULL PRIMARY KEY,
pic bytea NOT NULL
)
WITH (
OIDS=FALSE
);
ALTER TABLE pictures OWNER TO postgres;
-- table harvest
CREATE TABLE harvest (
id_harvest serial NOT NULL PRIMARY KEY,
datetime TIMESTAMP NOT NULL,
prct_destroyed REAL NOT NULL
)
WITH (
OIDS=FALSE
);
ALTER TABLE harvest OWNER TO postgres;
-- table alert
DROP TABLE IF EXISTS alert;
CREATE TABLE alert (
id_alert serial NOT NULL PRIMARY KEY,
id_crop integer NOT NULL REFERENCES crop (id_crop),
id_pest integer REFERENCES pest (id_pest),
id_disease integer REFERENCES disease (id_disease),
id_harvest integer REFERENCES harvest (id_harvest),
location text,
latlong text,
datetime_cur TIMESTAMP NOT NULL,
datetime_start TIMESTAMP NOT NULL,
prct_area REAL NOT NULL,
comment TEXT
)
WITH (
OIDS=FALSE
);
ALTER TABLE alert OWNER TO postgres;
-- r_alert_picture
CREATE TABLE r_alert_picture (
id_alert integer NOT NULL REFERENCES alert (id_alert),
id_picture integer NOT NULL REFERENCES pictures (id_pic),
PRIMARY KEY (id_alert, id_picture)
)
WITH (
OIDS=FALSE
);
ALTER TABLE r_alert_picture OWNER TO postgres;
-- url
CREATE TABLE url (
id_url serial NOT NULL PRIMARY KEY,
url text
)
WITH (
OIDS=FALSE
);
ALTER TABLE url OWNER TO postgres;
|
alter table [GIRLPOWER].Rendicion add NroRendicion numeric (18,0) not null
insert into [GIRLPOWER].Rendicion (IDTurno,IDChofer,Fecha,ImporteTotal,NroRendicion)
(select distinct t.IDTurno,c.IDChofer,m.Rendicion_Fecha,0,m.Rendicion_Nro from gd_esquema.Maestra m
inner join [GIRLPOWER].Turno t on t.Descripcion=m.Turno_Descripcion
inner join [GIRLPOWER].Usuario u on u.DNI=m.Chofer_Dni
inner join [GIRLPOWER].Chofer c on c.IDUsuario=u.idusuario
where Rendicion_Nro is not null
)
-- detalle
insert into [GIRLPOWER].RendicionDetalle (IDRendicion,IDViaje,Importe)
(SELECT distinct r.idRendicion, v.IDViaje,m.Rendicion_Importe
from [gd_esquema].Maestra m
inner join [GIRLPOWER].Rendicion r ON r.nroRendicion =m.Rendicion_Nro
inner join [GIRLPOWER].Viaje v on v.FechaInicio=m.Viaje_Fecha and
v.CantidadKilometros=m.Viaje_Cant_Kilometros
where Rendicion_Nro is not null )
--- actualizo importe
update [GIRLPOWER].Rendicion set ImporteTotal=
(select sum (Importe) from [GIRLPOWER].RendicionDetalle rd where
rd.IDRendicion=r.IDRendicion
group by rd.IDRendicion)
from [GIRLPOWER].Rendicion r |
/**
* SQL for Delete FR_SHISETSU_MEDICAL_TYPE by SHISETSU_CD
* @author TuyenVHA
* @version $Id: ShisetsuDashboardService_deleteFrShisetsuMedicalType_Del_01.sql 8499 2014-06-26 02:50:34Z p__toen $
*/
DELETE FROM
FR_SHISETSU_MEDICAL_TYPE FSMT
WHERE
FSMT.SHISETSU_CD = /*shisetsuCd*/'111111111' |
CREATE INDEX idx_da_state_1 ON public.da_state USING btree (dw_last_updated_dt, dw_facility_cd);
CREATE UNIQUE INDEX uk_da_state ON public.da_state USING btree (dw_row_id, dw_facility_cd);
CREATE UNIQUE INDEX uk_da_state_2 ON public.da_state USING btree (state_cd, dw_facility_cd);
|
CREATE PROC ERP.Usp_Del_AjusteCuentaCobrar
@ID INT
AS
BEGIN
DELETE FROM [ERP].[AjusteCuentaCobrar] WHERE ID = @ID
END
|
-- phpMyAdmin SQL Dump
-- version 4.5.2
-- http://www.phpmyadmin.net
--
-- Host: localhost:3306
-- Generation Time: Jul 09, 2016 at 01:13 AM
-- Server version: 10.1.9-MariaDB-log
-- PHP Version: 5.6.16
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Database: `perishabletracker`
--
-- --------------------------------------------------------
--
-- Table structure for table `products`
--
CREATE TABLE `products` (
`id` int(11) NOT NULL,
`name` varchar(255) NOT NULL,
`prodDesc` varchar(255) NOT NULL,
`price` float NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `products`
--
INSERT INTO `products` (`id`, `name`, `prodDesc`, `price`) VALUES
(1, 'Biogesic', 'Paracetamol', 5.5);
-- --------------------------------------------------------
--
-- Table structure for table `products_batch`
--
CREATE TABLE `products_batch` (
`id` int(11) NOT NULL,
`prodID` int(11) NOT NULL,
`expiry` date NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `products_batch`
--
INSERT INTO `products_batch` (`id`, `prodID`, `expiry`) VALUES
(1, 1, '2016-07-21');
-- --------------------------------------------------------
--
-- Table structure for table `products_group`
--
CREATE TABLE `products_group` (
`id` int(11) NOT NULL,
`batchID` varchar(255) NOT NULL,
`dateReceived` date NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `products_group`
--
INSERT INTO `products_group` (`id`, `batchID`, `dateReceived`) VALUES
(1, '1', '2016-07-06');
-- --------------------------------------------------------
--
-- Table structure for table `status`
--
CREATE TABLE `status` (
`id` int(11) NOT NULL,
`userId` int(11) NOT NULL,
`message` text NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `status`
--
INSERT INTO `status` (`id`, `userId`, `message`) VALUES
(36, 1, 'FUUUUUUUUUUUUUUUUUUUUUUU!'),
(37, 1, 'Screw it hahaha.'),
(38, 1, 'This is my POS.');
-- --------------------------------------------------------
--
-- Table structure for table `user`
--
CREATE TABLE `user` (
`id` int(11) NOT NULL,
`username` varchar(255) NOT NULL,
`password` varchar(255) NOT NULL,
`email` varchar(255) NOT NULL,
`name` varchar(255) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `user`
--
INSERT INTO `user` (`id`, `username`, `password`, `email`, `name`) VALUES
(1, 'admin', 'e10adc3949ba59abbe56e057f20f883e', 'admin@admin.com', 'Unicorns of the Universe'),
(9, 'lawrencetecho', '0449d8c5724086def4fda501b858485f', 'lawrencetecho@gmail.com', 'Jack Garay'),
(10, 'jacklaurence', '0449d8c5724086def4fda501b858485f', 'jacklaurence@jacklaurence.net', 'Jack Laurence');
--
-- Indexes for dumped tables
--
--
-- Indexes for table `products`
--
ALTER TABLE `products`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `products_batch`
--
ALTER TABLE `products_batch`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `products_group`
--
ALTER TABLE `products_group`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `status`
--
ALTER TABLE `status`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `user`
--
ALTER TABLE `user`
ADD PRIMARY KEY (`id`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `products`
--
ALTER TABLE `products`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT for table `products_batch`
--
ALTER TABLE `products_batch`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT for table `products_group`
--
ALTER TABLE `products_group`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2;
--
-- AUTO_INCREMENT for table `status`
--
ALTER TABLE `status`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=39;
--
-- AUTO_INCREMENT for table `user`
--
ALTER TABLE `user`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=11;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
-- phpMyAdmin SQL Dump
-- version 3.5.7
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: May 18, 2013 at 02:02 PM
-- Server version: 5.5.29
-- PHP Version: 5.4.10
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
--
-- Table structure for table `templates`
--
CREATE TABLE IF NOT EXISTS `templates` (
`Id` int(5) NOT NULL AUTO_INCREMENT,
`ActionType` varchar(10) NOT NULL,
`Name` varchar(500) NOT NULL,
`Content` varchar(10000) NOT NULL,
`ContentPlaintext` varchar(10000) NOT NULL,
`ActiveYN` int(11) NOT NULL DEFAULT '1',
`FromEmail` varchar(100) NOT NULL,
`FromName` varchar(100) NOT NULL,
`Subject` varchar(500) NOT NULL,
`TemplateName` varchar(100) NOT NULL DEFAULT 'css_only_standard',
`dID` int(10) NOT NULL,
`ActiveRecordYN` int(1) NOT NULL DEFAULT '1',
PRIMARY KEY (`Id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=56 ;
|
CREATE TABLE `domains` (
`id` int(11) NOT NULL auto_increment,
`name` varchar(255) NOT NULL,
`user_id` int(11) NOT NULL,
`customer` varchar(255) default NULL,
`responsible` varchar(255) default 'ii-tech',
`price_plan` varchar(255) default 'special',
`registry` varchar(255) default 'Providerdomain',
`state` varchar(255) default 'OK',
`since` date default '1970-01-01',
`last_payment` date default '1970-01-01',
`payment_until` date default '1970-01-01',
`comments` text,
`dkim_private_key` text,
`is_mx` tinyint(1) NOT NULL default '1',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
CREATE TABLE `mailboxes` (
`id` int(11) NOT NULL auto_increment,
`domain_id` int(11) NOT NULL,
`local_part` varchar(50) NOT NULL,
`dotted_address` varchar(255) default NULL,
`login` varchar(255) NOT NULL,
`password` varchar(255) NOT NULL,
`forward` varchar(255) default NULL,
`has_mailbox` tinyint(1) NOT NULL default '0',
`has_vacation` tinyint(1) NOT NULL default '0',
`has_spamfilter` tinyint(1) NOT NULL default '0',
`vacation_subject` varchar(255) default NULL,
`vacation_body` text,
`action` varchar(255) NOT NULL,
`mailbox_path` varchar(255) NOT NULL,
`uid` int(11) NOT NULL default '{{component.exim_user["uid"]}}',
`gid` int(11) NOT NULL default '{{component.exim_user["gid"]}}',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
CREATE TABLE `schema_info` (
`version` int(11) default NULL
) ENGINE=MyISAM DEFAULT CHARSET=utf8;
CREATE TABLE `users` (
`id` int(11) NOT NULL auto_increment,
`login` varchar(40) NOT NULL,
`password` varchar(255) NOT NULL,
`role` varchar(255) NOT NULL default 'mail',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
INSERT INTO schema_info (version) VALUES (4);
INSERT INTO users (login, password, role) VALUES ('root', '{{component.thyrida_root_password}}', 'root');
|
-- script that lists the number of records with the same
-- score in the table second_table of the database
-- hbtn_0c_0 in your MySQL server.
SELECT score, COUNT(*) AS number FROM second_table GROUP BY score ORDER BY score DESC;
|
-- phpMyAdmin SQL Dump
-- version 4.1.12
-- http://www.phpmyadmin.net
--
-- Хост: 127.0.0.1
-- Время создания: Янв 10 2017 г., 10:35
-- Версия сервера: 5.6.16
-- Версия PHP: 5.5.11
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
--
-- База данных: `cvr_iconmaster`
--
-- --------------------------------------------------------
--
-- Структура таблицы `calendar_dynamic`
--
CREATE TABLE IF NOT EXISTS `calendar_dynamic` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(100) NOT NULL,
`difference` int(11) NOT NULL,
`introduction` varchar(200) NOT NULL,
`text` text NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=12 ;
--
-- Дамп данных таблицы `calendar_dynamic`
--
INSERT INTO `calendar_dynamic` (`id`, `title`, `difference`, `introduction`, `text`) VALUES
(1, '', -70, '', ''),
(2, '', -49, '', ''),
(3, '', -42, '', ''),
(4, '', -15, '', ''),
(5, '', -8, '', ''),
(6, '', -7, '', ''),
(7, '', -2, '', ''),
(8, '', -1, '', ''),
(9, 'Пасха', 0, '', ''),
(10, '', 39, '', ''),
(11, '', 49, '', '');
-- --------------------------------------------------------
--
-- Структура таблицы `calendar_static`
--
CREATE TABLE IF NOT EXISTS `calendar_static` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`title` varchar(100) NOT NULL,
`month` int(11) NOT NULL,
`day` int(11) NOT NULL,
`introduction` varchar(200) NOT NULL,
`text` text NOT NULL,
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=8 ;
--
-- Дамп данных таблицы `calendar_static`
--
INSERT INTO `calendar_static` (`id`, `title`, `month`, `day`, `introduction`, `text`) VALUES
(1, 'title1', 1, 7, '', ''),
(2, 'title2', 1, 15, '', ''),
(3, 'title3', 2, 9, '', ''),
(4, 'title4', 1, 19, '', ''),
(5, 'title5', 7, 12, '', ''),
(6, 'title6', 7, 22, '', ''),
(7, 'title7', 12, 9, '', '');
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
-- phpMyAdmin SQL Dump
-- version 4.4.14
-- http://www.phpmyadmin.net
--
-- Host: 127.0.0.1
-- Creato il: Dic 21, 2015 alle 12:33
-- Versione del server: 5.6.26
-- Versione PHP: 5.6.12
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Database: `alez200c56142`
--
-- --------------------------------------------------------
--
-- Struttura della tabella `user`
--
CREATE TABLE IF NOT EXISTS `user` (
`user_id` int(10) NOT NULL,
`user_login` varchar(256) NOT NULL,
`user_psw` varchar(128) NOT NULL,
`user_status` int(3) NOT NULL DEFAULT '1',
`user_email` text NOT NULL,
`user_nome` text NOT NULL,
`user_cognome` text NOT NULL,
`user_acl` int(3) NOT NULL DEFAULT '1',
`user_insdate` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`user_update` timestamp NULL DEFAULT NULL
) ENGINE=InnoDB AUTO_INCREMENT=19 DEFAULT CHARSET=latin1;
--
-- Dump dei dati per la tabella `user`
--
INSERT INTO `user` (`user_id`, `user_login`, `user_psw`, `user_status`, `user_email`, `user_nome`, `user_cognome`, `user_acl`, `user_insdate`, `user_update`) VALUES
(2, 'admin', 'd033e22ae348aeb5660fc2140aec35850c4da997', 1, 'alessandro.balza@gmail.com', 'Alessandro', 'balza', 1, '2015-12-14 16:27:04', NULL),
(3, 'alez200', '0a3781cb31b699a6afe2a3e83f6878708a635bf1', 1, 'alessandro.balza@gmail.com', 'Alessandro', 'balza', 1, '2015-12-14 16:27:57', NULL);
--
-- Indici per le tabelle scaricate
--
--
-- Indici per le tabelle `user`
--
ALTER TABLE `user`
ADD PRIMARY KEY (`user_id`),
ADD UNIQUE KEY `user_login` (`user_login`,`user_psw`),
ADD KEY `user_id` (`user_id`),
ADD KEY `user_login_2` (`user_login`);
--
-- AUTO_INCREMENT per le tabelle scaricate
--
--
-- AUTO_INCREMENT per la tabella `user`
--
ALTER TABLE `user`
MODIFY `user_id` int(10) NOT NULL AUTO_INCREMENT,AUTO_INCREMENT=19;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
-- phpMyAdmin SQL Dump
-- version 4.8.3
-- https://www.phpmyadmin.net/
--
-- Host: localhost:3306
-- Generation Time: Jan 09, 2020 at 01:45 AM
-- Server version: 5.6.46-cll-lve
-- PHP Version: 7.2.7
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET AUTOCOMMIT = 0;
START TRANSACTION;
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Database: `fbonline`
--
-- --------------------------------------------------------
--
-- Table structure for table `cashout`
--
CREATE TABLE `cashout` (
`id` int(11) NOT NULL,
`email` varchar(150) COLLATE utf8_unicode_ci NOT NULL,
`name` varchar(150) COLLATE utf8_unicode_ci NOT NULL,
`product` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
`amount` int(11) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `checkout`
--
CREATE TABLE `checkout` (
`id` int(11) NOT NULL,
`email` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
`name` varchar(175) COLLATE utf8_unicode_ci NOT NULL,
`product` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
`unit` int(11) NOT NULL,
`totalbill` int(11) NOT NULL,
`date_created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
-- --------------------------------------------------------
--
-- Table structure for table `password_resets`
--
CREATE TABLE `password_resets` (
`id` int(11) NOT NULL,
`email` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`token` varchar(255) COLLATE utf8_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Dumping data for table `password_resets`
--
INSERT INTO `password_resets` (`id`, `email`, `token`) VALUES
(24, 'theresaobamwonyi@gmail.com', '31419bcc96c205a4b94cd30365194fa7304416b5cf9be818da4994f3fb2d47971b05bfc842c45ce5fe0f7878c2692fc634e8'),
(25, 'theresaobamwonyi@gmail.com', '91228d34aeac678239576ce4c6ad3b2dc5deaf55d4918372650abcc4f3ce3cff9c8a8baa9bfa30f25298fc673214803d65dc'),
(26, 'theresaobamwonyi@gmail.com', 'f8ca8e32dda81fbd42a2e1f95ccf60695190c12bad9988ad770aa590200535f9284b5b2248f9d44285d64454e04cdb7e339f'),
(27, 'theresaobamwonyi@gmail.com', 'b77828ebf7f827211dfc78e80312b5604be354c13183d42e929623acac513e2f8b9597140c5daa6fcffdfc00639bb1a33ba7'),
(28, 'theresaobamwonyi@gmail.com', '8f1f11544c6b5c7f23454a4814308bd668c4bbda5141b6e74d867a7f2871f1abc51877ddd661167212f4f0f9e6d981b0689a'),
(29, 'theresaobamwonyi@gmail.com', '8b0128462a2f25c17ef58181a3f1a4551abc9746c30df53d0ef9d41a46007a957746112d5d38afc72327cf2cd6884a23d345'),
(30, 'theresaobamwonyi@gmail.com', 'a23eeba2a1b63a9d1da1182121da46d34e085bb36798136f5f3d924a74229a67b858f8f833eb3b2ea676865d1268f1573fbd'),
(31, 'theresaobamwonyi@gmail.com', '318781dec8868565bdc02659ece53a10a7570dbb7411200e4c8d7c824ebc6bd0b42080b7a4c6cb6af8ba0d1ad83ba4e0cdd1'),
(32, 'ochuko.ikogho@gmail.com', 'c42019172be19dccec1e02b46965a5024649a510333103c51c07839bf4ece2f492367296962b8f3284740fcccdb97014ab40');
-- --------------------------------------------------------
--
-- Table structure for table `payment`
--
CREATE TABLE `payment` (
`id` int(11) NOT NULL,
`name` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
`email` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
`product` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
`unit` int(11) NOT NULL,
`totalbill` int(100) NOT NULL,
`date_created` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP,
`token` int(10) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Dumping data for table `payment`
--
INSERT INTO `payment` (`id`, `name`, `email`, `product`, `unit`, `totalbill`, `date_created`, `token`) VALUES
(32, 'Jumia', 'fb@gmail.com', '20000', 4, 8000000, '2019-08-08 18:42:20', 1),
(33, 'Theresa Obamwonyi', 'theresaobamwonyi@gmail.com', '10000', 2, 2000000, '2019-08-08 18:42:20', 1),
(61, 'Theresa Obamwonyi', 'theresaobamwonyi@gmail.com', '15000', 3, 4500000, '2019-09-06 13:06:00', 1),
(62, 'Theresa Obamwonyi', 'theresaobamwonyi@gmail.com', '10000', 15, 15000000, '2019-09-06 21:28:03', 1),
(63, 'Theresa Obamwonyi', 'theresaobamwonyi@gmail.com', '7500', 12, 9000000, '2019-09-06 21:46:39', 1),
(64, 'ast', 'ast@gmail.com', '15000', 4, 6000000, '2019-09-07 15:58:17', 0),
(65, 'teq', 'teq@gmail.com', '7500', 8, 6000000, '2019-09-18 09:43:57', 0),
(66, 'teq', 'teq@gmail.com', '15000', 2, 3000000, '2019-09-19 09:38:06', 0),
(67, 'Ochuko Ikogho', 'ochuko.ikogho@gmail.com', '15000', 5, 7500000, '2019-09-21 02:47:25', 0),
(68, 'Abacus', 'ab@gmail.com', '15000', 6, 9000000, '2019-09-21 02:49:06', 0),
(69, 'Jumia Kings', 'jk@gmail.com', '15000', 4, 6000000, '2019-09-23 10:28:30', 0);
-- --------------------------------------------------------
--
-- Table structure for table `signupform`
--
CREATE TABLE `signupform` (
`id` int(11) NOT NULL,
`name` varchar(100) COLLATE utf8_unicode_ci NOT NULL,
`email` varchar(50) COLLATE utf8_unicode_ci NOT NULL,
`password` varchar(255) COLLATE utf8_unicode_ci NOT NULL,
`token` varchar(1000) COLLATE utf8_unicode_ci NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci;
--
-- Dumping data for table `signupform`
--
INSERT INTO `signupform` (`id`, `name`, `email`, `password`, `token`) VALUES
(99, 'Temi Friday', 'tfri@gmail.com', '$2y$10$55n7rbVJGh6pX7cV/S6LqumFa5hJVvmzTDYntSc6mIFrRwopCRAPa', ''),
(100, 'Emma King', 'mking@gmail.com', '$2y$10$b9pzkGYPNU3qmuTTpiYFkO11YTzug96BmUc.LpZLA5hf.k8aFvZG2', ''),
(101, 'Ochuko Ikogho', 'ochuko.ikogho@gmail.com', '$2y$10$hA5yoSzCfp4NbV1boo235eVZNhswBdzKDnusHSGJK29y2/6ZYPJI2', '3b3b1e343e9fe9d2768b4bd9ce7c8392c1059608818cd5f9040be069c5c5f8a838c4c717e652c54e43b9b9ff62128a262ff5'),
(102, 'Test', 'test@gmail.com', '$2y$10$/VdFZ579isFO7YcNa8xxnOxL4urzdTES99dMkGY51ITIXWAqR8XqW', ''),
(103, 'Jumia', 'fb@gmail.com', '$2y$10$AndEDJ.LZPzYNlj/kYOhHu4luEfk4kdW1ULylKLrekOG9rGKYCn2G', ''),
(104, 'O', 'o@gmail.com', '$2y$10$RVXqblb5xtr9dI6c3xgXGu.E5e4E2/f1WBJq5utIBqfknmRdMWl3a', ''),
(105, 'Tester', 't@gmail.com', '$2y$10$iczB8Ay.wqzlTJYbFtyWNOifODoVwLDBM5R1xPtnWTafHCz7aV/aK', ''),
(106, 'teq', 'teq@gmail.com', '$2y$10$W6UpN0/sdW7/pM2IyxWNS.RrTzaXrC4EYBtdp6kC2RUNDS4xhnp32', ''),
(107, 'Theresa Obamwonyi', 'theresaobamwonyi@gmail.com', '$2y$10$WNl2cYh099db2SmyzDEtx.MmOWH9VaG6jjdgJ2kaUrUh/uXOLcd5u', ''),
(108, 'Ochu', 'oi@gmail.com', '$2y$10$n9c7MnC6iLscvD8kachNTOB9GI8mY0UcF.tA5swLawaZRQxxrl6pa', ''),
(109, 'dddd', 'dd@gmail.com', '$2y$10$H8MISUSr.Tg67Qr65TzZw.ozGkVdp8D10xH1Xjttp3NCOsIXd.P1q', ''),
(110, 'Qwerty', 'q@gmail.com', '$2y$10$0oM/4E/oBv4GnLIXUrTCYO9kOdCB88iF.ioRpynGsJA1Th4wRiK2y', ''),
(111, 'Rrr', 'teqw@gmail.com', '$2y$10$9fvQMBbDzoLGGx./QXhscONdqzWvEg/uf8aVhJAjzSgA6UKTChkTS', ''),
(112, 'ddddddd', 'dxx@gmail.com', '$2y$10$KHgEgZyDd3nJjXXIgiq83ecOEAOPn4GP.N6YtJGTgNRHwPhGQrYB.', ''),
(113, 'ast', 'ast@gmail.com', '$2y$10$IlKzl31lkmKZ/nQ4zjNtQ.R/oZ0t91ILTEOIBq9pASrYcndnsh8Da', ''),
(115, 'Abacus', 'ab@gmail.com', '$2y$10$puA/7ZTDebXmyeX6SAusEODNQoZT51spMZ/j0wK8ijEu44XkwqEG.', ''),
(116, 'Jumia Kings', 'jk@gmail.com', '$2y$10$uFGvhPiISF8pSwmTaN99o.ecP48LNrz.q6NO0mYeorwWXuSFe9Wey', ''),
(117, 'Alvinmip', 'inbox256@glmux.com', '$2y$10$VQEoL90YAjnbwwrd.2aa2uuBoHI5H0JL6pdTkh4pwn15ev8b5vdd6', '');
-- --------------------------------------------------------
--
-- Table structure for table `users`
--
CREATE TABLE `users` (
`id` int(11) NOT NULL,
`name` varchar(255) NOT NULL,
`email` varchar(255) NOT NULL,
`image` varchar(255) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=latin1;
--
-- Dumping data for table `users`
--
INSERT INTO `users` (`id`, `name`, `email`, `image`) VALUES
(4, 'teq', 'teq@gmail.com', './img/users-img/932720190803_184137.jpg'),
(5, 'teq', 'teq@gmail.com', './img/users-img/2578adeolu-eletu-omKdUQ9R3Zo-unsplash.jpg'),
(6, 'Theresa Obamwonyi', 'theresaobamwonyi@gmail.com', './img/users-img/63992578adeolu-eletu-omKdUQ9R3Zo-unsplash.jpg'),
(7, 'Theresa Obamwonyi', 'theresaobamwonyi@gmail.com', './img/users-img/9274sh4.jpg'),
(8, 'Theresa Obamwonyi', 'theresaobamwonyi@gmail.com', './img/users-img/2183IMG_20190916_121751_4.jpg'),
(9, 'Theresa Obamwonyi', 'theresaobamwonyi@gmail.com', './img/users-img/8655Screenshot_20190907-174305.png'),
(10, 'Theresa Obamwonyi', 'theresaobamwonyi@gmail.com', './img/users-img/26932578adeolu-eletu-omKdUQ9R3Zo-unsplash.jpg'),
(11, 'teq', 'teq@gmail.com', './img/users-img/3041ovayo-ntlabati-f_WTk4JqwiM-unsplash.jpg'),
(12, 'teq', 'teq@gmail.com', './img/users-img/7749photo-1528791067602-aee628b626fb.jpeg'),
(13, 'Ochuko Ikogho', 'ochuko.ikogho@gmail.com', './img/users-img/6505swish.jpg'),
(14, 'Ochuko Ikogho', 'ochuko.ikogho@gmail.com', './img/users-img/1823IMG-20190920-WA0013.jpg'),
(15, 'Ochuko Ikogho', 'ochuko.ikogho@gmail.com', './img/users-img/6837christian-smith-v78IqB4bysc-unsplash.jpg'),
(16, 'Abacus', 'ab@gmail.com', './img/users-img/8653IMG-20190920-WA0004.jpg');
--
-- Indexes for dumped tables
--
--
-- Indexes for table `cashout`
--
ALTER TABLE `cashout`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `checkout`
--
ALTER TABLE `checkout`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `password_resets`
--
ALTER TABLE `password_resets`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `payment`
--
ALTER TABLE `payment`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `signupform`
--
ALTER TABLE `signupform`
ADD PRIMARY KEY (`id`);
--
-- Indexes for table `users`
--
ALTER TABLE `users`
ADD PRIMARY KEY (`id`);
--
-- AUTO_INCREMENT for dumped tables
--
--
-- AUTO_INCREMENT for table `cashout`
--
ALTER TABLE `cashout`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `checkout`
--
ALTER TABLE `checkout`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT;
--
-- AUTO_INCREMENT for table `password_resets`
--
ALTER TABLE `password_resets`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=33;
--
-- AUTO_INCREMENT for table `payment`
--
ALTER TABLE `payment`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=70;
--
-- AUTO_INCREMENT for table `signupform`
--
ALTER TABLE `signupform`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=118;
--
-- AUTO_INCREMENT for table `users`
--
ALTER TABLE `users`
MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=17;
COMMIT;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
alter table party enable row level security;
create policy party_select_admin on party for
select using (
is_admin()
);
alter table address enable row level security;
alter table "user" enable row level security;
drop policy if exists user_select_all on "user";
create policy user_select_admin on "user" for
select using (
is_admin()
);
|
/*
Alle status Einträge selektieren, es werden alle Zeilen zurückgegeben
*/
SELECT status FROM `orders`
/*
Wenn jeder Status nur einmal ermittelt werden soll, lassen wir die Ergebnisse gruppieren
GROUP BY
Alternativ zu dem unten angegebenen Statement:
SELECT DISTINCT status FROM `orders`
Jeder Wert wird nur einmal in einem Result zurück gegeben
*/
SELECT status FROM `orders`
GROUP BY status
/*
GROUP BY in Kombination mit Aggregatsfunktionen wie COUNT, SUM, MAX, MIN, AVG, ...
*/
SELECT status, COUNT(*) AS anzahl FROM `orders`
GROUP BY status
SELECT status, COUNT(*) AS anzahl FROM `orders`
WHERE status = 'Cancelled'
GROUP BY status
/*
Summe mit SUM bilden
USING erlaubt uns, eine verkürzte Version von WHERE order.orderNumber = orderdetails.orderNumber
GROUP BY mit Aggregatsfunktionen bildet für jeden gefundenen Eintrag in einer Gruppe z. B. die Summe.
*/
SELECT status, SUM(quantityOrdered * priceEach) AS amount
FROM orders
INNER JOIN orderdetails USING (orderNumber)
GROUP BY status
SELECT orderNumber, SUM(quantityOrdered * priceEach) AS amount
FROM orders
INNER JOIN orderdetails USING (orderNumber)
GROUP BY orderNumber
SELECT YEAR(orderDate) AS year,
SUM(quantityOrdered * priceEach) AS total
FROM orders
INNER JOIN orderdetails USING (orderNumber)
WHERE status = 'Shipped'
GROUP BY YEAR(orderDate)
/*
HAVING erfüllt eine ähnliche Funktion wie WHERE, bezieht sich allerdings auf die Gruppierung
*/
SELECT YEAR(orderDate) AS year,
SUM(quantityOrdered * priceEach) AS total
FROM orders
INNER JOIN orderdetails USING (orderNumber)
WHERE status = 'Shipped'
GROUP BY year
HAVING year > 2003
/*
Typischer Fehler: WHERE muss vor GROUP BY angegeben werden
*/
SELECT YEAR(orderDate) AS year,
SUM(quantityOrdered * priceEach) AS total
FROM orders
INNER JOIN orderdetails USING (orderNumber)
GROUP BY year
WHERE status = 'Shipped'
|
insert into users (id,uname,pwd,name_surname,email) values (1000,''temelt'',''123'',''Taner TEMEL'',''tanertemel@outlook.com'');
insert into project(id,created_at,status,project_code,project_name,manager_user_id) values (1000,now(),true,''ISMAN'',''Issue Management System'',1000);
insert into issue (id,created_at,status,date,description,details,issue_status,assignee_user_id,project_id)
values (1000,now(),true,now(),''Username should be unique'',''User registration step, username should be checked for unique username'',''IN_PROGRESS'',1000,1000);
insert into issue (id,created_at,status,date,description,details,issue_status,assignee_user_id,project_id)
values (1001,now(),true,now(),''API throwing an exception for null values'',''API throwing an exception for null values'',''IN_REVIEW'',1000,1000);
insert into issue_history (id,created_at,status,date,description,details,issue_status,assignee_user_id,issue_id)
values (1000,now(),true,now(),''Username should be unique'',''User registration step, username should be checked for unique username'',''OPEN'',1000,1000); |
-- phpMyAdmin SQL Dump
-- version 4.8.1
-- https://www.phpmyadmin.net/
--
-- Servidor: 127.0.0.1
-- Tiempo de generación: 23-05-2020 a las 20:35:58
-- Versión del servidor: 10.1.33-MariaDB
-- Versión de PHP: 7.2.6
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET AUTOCOMMIT = 0;
START TRANSACTION;
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8mb4 */;
--
-- Base de datos: `siatec`
--
-- --------------------------------------------------------
--
-- Estructura de tabla para la tabla `usuarios`
--
CREATE TABLE `usuarios` (
`idusuario` int(11) NOT NULL,
`usuario` varchar(50) NOT NULL,
`clave` varchar(50) NOT NULL,
`descripcion` varchar(100) NOT NULL
) ENGINE=InnoDB DEFAULT CHARSET=utf8;
--
-- Volcado de datos para la tabla `usuarios`
--
INSERT INTO `usuarios` (`idusuario`, `usuario`, `clave`, `descripcion`) VALUES
(5, 'jluque', '123456', 'Usuario administrador'),
(6, 'cperez', '123456', 'Usuario estandar');
--
-- Índices para tablas volcadas
--
--
-- Indices de la tabla `usuarios`
--
ALTER TABLE `usuarios`
ADD PRIMARY KEY (`idusuario`);
--
-- AUTO_INCREMENT de las tablas volcadas
--
--
-- AUTO_INCREMENT de la tabla `usuarios`
--
ALTER TABLE `usuarios`
MODIFY `idusuario` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=7;
COMMIT;
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
insert into Autores (ApePaAutor,ApeMAAutor,NomAutor,PsedoAutor)
values
('Acevedo','Caceres','Javier Ignacio','Sr.Cthulhu'),
('Silva','Nuñez','Susana Sofia','Popi'),
('Monardez','Muñoz','Catalina Fernanda','Pin'),
('Manriquez','Ibarra','Álvaro Matias','Sasso')
;
insert into Editoriales(NomEditorial) values ('Aremen'),('Ohmaigas'),('sufokia');
insert into Libros(ISBLibro,TituloLibro,NPaginas,PrecioRefLibro,IDEditorial)
values
('isb001','Fundamentos de Programacion',465,12990,1),
('isb002','Programacion Orientada a Objetos PHP',165,12990,3),
('isb003','Programacion Orientada a Objetos JAVA',485,12990,2),
('isb004','Java FX 8',995,12990,1),
('isb005','Programacion de Componentes Web con Java EE',965,12990,3),
('isb006','Python for Penetration Tester',566,12990,2),
('isb007','Javascript the good parts',135,12990,1)
;
/* Copias Libro 1*/
insert into NCopias values('','1');
insert into NCopias values('','1');
insert into NCopias values('','1');
insert into NCopias values('','1');
insert into NCopias values('','1');
insert into NCopias values('','1');
/* Copias Libro 2*/
insert into NCopias values('','2');
insert into NCopias values('','2');
insert into NCopias values('','2');
insert into NCopias values('','2');
insert into NCopias values('','2');
insert into NCopias values('','2');
/* Copias Libro 3*/
insert into NCopias values('','3');
insert into NCopias values('','3');
insert into NCopias values('','3');
insert into NCopias values('','3');
insert into NCopias values('','3');
insert into NCopias values('','3');
insert into NCopias values('','3');
/* Copias Libro 4*/
insert into NCopias values('','4');
insert into NCopias values('','4');
insert into NCopias values('','4');
insert into NCopias values('','4');
insert into NCopias values('','4');
insert into NCopias values('','4');
/* Copias Libro 5*/
insert into NCopias values('','5');
insert into NCopias values('','5');
insert into NCopias values('','5');
insert into NCopias values('','5');
insert into NCopias values('','5');
insert into NCopias values('','5');
/* Copias Libro 6*/
insert into NCopias values('','6');
insert into NCopias values('','6');
insert into NCopias values('','6');
insert into NCopias values('','6');
insert into NCopias values('','6');
insert into NCopias values('','6');
insert into NCopias values('','6');
/* Copias Libro 7*/
insert into NCopias values('','7');
insert into NCopias values('','7');
insert into NCopias values('','7');
insert into NCopias values('','7');
insert into NCopias values('','7');
insert into NCopias values('','7');
insert into NCopias values('','7');
insert into NCopias values('','7');
/*Tabla Intermediaria Autores_Libro*/
insert into Autores_Libros(IDAutores,IDLibros) values (1,1);
/*Email*/
insert into Email (Email) values('gustavo.gato22@gmail.com'),('kafka.gatoReal@miau.kat');
/*Numero Telefono*/
insert into Telefono (Telefono) values(+56957217253);/*Forma Erronea.*/
insert into Telefono (Telefono) values(957217253);/*Forma creo correcta.*/
/*Trabajador*/
insert into Trabajadores(Nombre,ApePa,ApeMa,Dire,IDTelefono,IDEmail,FechaContra)
values
('Xavier','De las Flores','Campo','Yungay 784',2,1,'02-02-1998')
;
/*Cliente*/
insert into Clientes (Nombre,ApePa,ApeMA,Dire,IDTelefono,IDEmail,FechaNA)
values
('Gustavo','Acevedo','Caceres','El bosque 129',1,1,'22-02-2002'),
('Kafka','Rodriguez','Ilabaca','En Su casa',2,2,'12-05-1998')
;
/*Distributores*/
insert into Distribuidores (NombreDis,RutDis,DirDis,TelDis,YearDis)
values
('Book4All',19542012-5,'Av.Apoquindo intercepcion rosendo jaramillo',027845652142,'2010-03-03')
;
/*Simulacioin de Compra*/
/*0-Generar ID de compra*/
insert into Compras() values();
/*1-Ejercer compra seleccionando distributor , libro y cantidad*/
insert into Compras_NCopias(IDCompra,IDNSeries,Cantidad,IDDistribuidores)
values
(1,4,30,1)
;
/*2-Facturar Compra*/
insert into Factura (PrecioNeto,PrecioIva,CostoIva,FechaComp,HoraComp,MetodoPago)
values
(19990,489,20,'2018-05-03','18:00',1)
;
/*3- Unir Compra con factura*/
insert into Factura_Compras(IDFactura,IDCompra)
values(1,1)
;
/*Simulacion de Venta*/
/*0-Ejercer Boleta*/
insert into Boletas (PrecioNeto,PrecioIva,CostoIva,FechaVenta,HoraVenta,MetodoPago)
values
(19980,980,20,'2018-02-03','18:35',1)
;
/*1-Generar ID de Venta*/
insert into Ventas(IDBoleta) values(1);
/*2-Crear Venta*/
insert into Ventas_NCopias(IDVenta,IDNSeries,Cantidad,IDCliente,IDTrabajador)
values
(1,2,4,1,1)
;
/*Agregar Estados*/
insert into Estados(IDEstados,IDLibros,Disponisbles) values(1,4,40);
/*Unir Estados con libros*/
|
-- =============================================
-- Author: Cláudio Teixeira
-- Create date: 28/10/2017
-- Description: Devolve a contagem de Pessoas Laureados Nobel, agrupados por pais atual (de nascimento)
-- Devolve a contagem de laureados e não a contagem de prémios atribuídos
-- =============================================
CREATE PROCEDURE LaureadosPorPaisAtual
-- Add the parameters for the stored procedure here
@paisId int = 0
AS
BEGIN
-- SET NOCOUNT ON added to prevent extra result sets from
-- interfering with SELECT statements.
SET NOCOUNT ON;
-- Insert statements for procedure here
select sum(x.partialSum) as [count], x.nome
from
(
select count(LaureadoIndividuo.LaureadoId) as partialSum, pais.Nome from LaureadoIndividuo
inner join cidade on Cidade.CidadeId = LaureadoIndividuo.CidadeNascimentoId
inner join pais on pais.PaisId = cidade.PaisId
where pais.PaisAtualId is null and (@paisId = 0 or pais.PaisId = @paisId)
group by pais.Nome
union all
select count(LaureadoIndividuo.LaureadoId) as partialSum, paisAtual.Nome from LaureadoIndividuo
inner join cidade on Cidade.CidadeId = LaureadoIndividuo.CidadeNascimentoId
inner join pais on pais.PaisId = cidade.PaisId
inner join pais as paisAtual on pais.PaisAtualId = paisAtual.PaisId
where (@paisId = 0 or paisAtual.PaisId = @paisId)
group by paisAtual.Nome
) x
group by x.Nome
order by [count] desc
END
|
DELETE Parametro;
DELETE Origen;
DELETE ProductoOportunidad;
DELETE Recordatorio;
DELETE Accion;
DELETE OportunidadDeVenta;
DELETE Estatus;
DELETE Producto;
DELETE Actividad;
DELETE PermisoUsuario;
DELETE UsuarioEquipo;
DELETE Equipo;
DELETE Permiso;
DELETE Usuario;
DELETE Rol;
DBCC CHECKIDENT (Parametro, RESEED, 0);
DBCC CHECKIDENT (Origen, RESEED, 0);
DBCC CHECKIDENT (ProductoOportunidad, RESEED, 0);
DBCC CHECKIDENT (Recordatorio, RESEED, 0);
DBCC CHECKIDENT (Accion, RESEED, 0);
DBCC CHECKIDENT (OportunidadDeVenta, RESEED, 0);
DBCC CHECKIDENT (Estatus, RESEED, 0);
DBCC CHECKIDENT (Producto, RESEED, 0);
DBCC CHECKIDENT (Actividad, RESEED, 0);
DBCC CHECKIDENT (PermisoUsuario, RESEED, 0);
DBCC CHECKIDENT (UsuarioEquipo, RESEED, 0);
DBCC CHECKIDENT (Equipo, RESEED, 0);
DBCC CHECKIDENT (Permiso, RESEED, 0);
DBCC CHECKIDENT (Usuario, RESEED, 0);
DBCC CHECKIDENT (Rol, RESEED, 0);
|
SELECT * FROM
(SELECT * FROM
(SELECT
t.transaction_id,
t.currency,
DATE_FORMAT(t.create_time, '%Y-%m-%d') AS create_time,
s.salesperson_code,
t.total_profit,
t.received+t.received2 AS revenue,
t.expense,
c.code,
t.coupon,
cs.source_name,
t.clear_status,
t.lock_status,
t.note
FROM Transactions t
JOIN CouponCode c
ON t.cc_id = c.cc_id
JOIN CustomerSource cs
ON t.source_id = cs.source_id
JOIN Salesperson s
ON t.salesperson_id = s.salesperson_id
WHERE
/*filter*/
t.transaction_id LIKE '%'
AND t.clear_status LIKE 'N'
AND t.lock_status LIKE 'N'
/*这里有三种情况,对应网页的三种情况
第一种:默认,只勾选了未完成订单,
AND clear_status = N
AND lock_status = N
第二种:只勾了clear选项
AND clear_status = Y
AND lock_status = N
第三种:只勾了lock选项,这时clear选项会自动勾上。
(如果这是操作人员把clear选项反选了,lock也会跟着反选。
理由是lock的单子,一定是clear的。)
AND clear_status = 'Y'
AND lock_status = Y
第san.5种:勾了未完成订单和clear选项
AND lock_status = N
第四种:勾了未完成订单和lock选项,这时clear选项会自动勾上。
无筛选(因为全都勾上了)
第五种:clerk选项和lock选项,同第三种
AND lock_status = Y
第六种:全勾了,同第四种
无筛选
*/
AND t.create_time >= CURRENT_DATE - interval 1 month
AND t.create_time <= CURRENT_DATE
/*
interval 7 day 最近7天
interval 1 year 最近1年
*/
/*
如果选了ALL
AND create_time >= 0
AND craete_time <= CURRENT_DATE
*/
AND t.payment_type LIKE '%'
AND s.salesperson_code LIKE 'sdzgkyfdi'
/*管理员登陆时才会显示“销售”搜索框,普通销售就是只有自己可以选*/
AND cs.source_name LIKE '%'
) first_filter
WHERE first_filter.currency = 'USD'
AND first_filter.total_profit BETWEEN -999999999.99 AND 999999999.99
AND first_filter.expense BETWEEN -999999999.99 AND 999999999.99
AND first_filter.revenue BETWEEN -999999999.99 AND 999999999.99
UNION
SELECT * FROM
(SELECT
t.transaction_id,
t.currency,
DATE_FORMAT(t.create_time, '%Y-%m-%d') AS create_time,
s.salesperson_code,
t.total_profit,
t.received+t.received2 AS revenue,
t.expense,
c.code,
t.coupon,
cs.source_name,
t.clear_status,
t.lock_status,
t.note
FROM Transactions t
LEFT JOIN CouponCode c
ON t.cc_id = c.cc_id
JOIN CustomerSource cs
ON t.source_id = cs.source_id
JOIN Salesperson s
ON t.salesperson_id = s.salesperson_id
WHERE
/*filter*/
t.transaction_id LIKE '%'
AND t.clear_status LIKE 'N'
AND t.lock_status LIKE 'N'
/*这里有三种情况,对应网页的三种情况
第一种:默认,只勾选了未完成订单,
AND clear_status = N
AND lock_status = N
第二种:只勾了clear选项
AND clear_status = Y
AND lock_status = N
第三种:只勾了lock选项,这时clear选项会自动勾上。
(如果这是操作人员把clear选项反选了,lock也会跟着反选。
理由是lock的单子,一定是clear的。)
AND clear_status = 'Y'
AND lock_status = Y
第san.5种:勾了未完成订单和clear选项
AND lock_status = N
第四种:勾了未完成订单和lock选项,这时clear选项会自动勾上。
无筛选(因为全都勾上了)
第五种:clerk选项和lock选项,同第三种
AND lock_status = Y
第六种:全勾了,同第四种
无筛选
*/
AND t.create_time >= CURRENT_DATE - interval 1 month
AND t.create_time <= CURRENT_DATE
/*
interval 7 day 最近7天
interval 1 year 最近1年
*/
/*
如果选了ALL
AND create_time >= 0
AND craete_time <= CURRENT_DATE
*/
AND t.payment_type LIKE '%'
AND s.salesperson_code LIKE 'sdzgkyfdi'
/*管理员登陆时才会显示“销售”搜索框,普通销售就是只有自己可以选*/
AND cs.source_name LIKE '%'
) first_filter
WHERE first_filter.currency = 'RMB'
AND first_filter.total_profit BETWEEN -999999999.99*6.39 AND 999999999.99*6.39
AND first_filter.expense BETWEEN -999999999.99*6.39 AND 999999999.99*6.39
AND first_filter.revenue BETWEEN -999999999.99*6.39 AND 999999999.99*6.39)
second_filter
ORDER BY
second_filter.transaction_id DESC
|
CRATE TABLE users (
user_id serial PRIMARY KEY,
username VARCHAR (50) UNIQUE NOT NULL,
password VARCHAR (50) NOT NULL,
email VARCHAR (355) UNIQUE NOT NULL,
created_on DATE,
last_login TIMESTAMP
) |
create table Breeds
(
breedID int auto_increment,
breedName varchar(255) not null,
type enum ('dog', 'cat', 'other') default 'cat' not null,
constraint Breeds_breedID_uindex
unique (breedID)
);
create index Breeds_type_index
on Breeds (type);
alter table Breeds
add primary key (breedID);
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (1, 'Retrievers (Labrador)', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (2, 'German Shepherd Dogs', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (3, 'Retrievers (Golden)', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (4, 'French Bulldogs', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (5, 'Bulldogs', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (6, 'Beagles', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (7, 'Poodles', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (8, 'Rottweilers', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (9, 'Pointers (German Shorthaired)', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (10, 'Yorkshire Terriers', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (11, 'Boxers', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (12, 'Dachshunds', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (13, 'Pembroke Welsh Corgis', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (14, 'Siberian Huskies', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (15, 'Australian Shepherds', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (16, 'Great Danes', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (17, 'Doberman Pinschers', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (18, 'Cavalier King Charles Spaniels', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (19, 'Miniature Schnauzers', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (20, 'Shih Tzu', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (21, 'Boston Terriers', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (22, 'Bernese Mountain Dogs', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (23, 'Pomeranians', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (24, 'Havanese', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (25, 'Shetland Sheepdogs', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (26, 'Brittanys', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (27, 'Spaniels (English Springer)', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (28, 'Pugs', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (29, 'Mastiffs', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (30, 'Spaniels (Cocker)', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (31, 'Vizslas', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (32, 'Cane Corso', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (33, 'Chihuahuas', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (34, 'Miniature American Shepherds', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (35, 'Border Collies', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (36, 'Weimaraners', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (37, 'Maltese', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (38, 'Collies', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (39, 'Basset Hounds', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (40, 'Newfoundlands', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (41, 'Rhodesian Ridgebacks', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (42, 'West Highland White Terriers', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (43, 'Belgian Malinois', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (44, 'Shiba Inu', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (45, 'Retrievers (Chesapeake Bay)', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (46, 'Bichons Frises', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (47, 'Akitas', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (48, 'St. Bernards', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (49, 'Bloodhounds', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (50, 'Portuguese Water Dogs', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (51, 'Bullmastiffs', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (52, 'Spaniels (English Cocker)', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (53, 'Soft Coated Wheaten Terriers', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (54, 'Papillons', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (55, 'Australian Cattle Dogs', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (56, 'Dalmatians', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (57, 'Scottish Terriers', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (58, 'Alaskan Malamutes', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (59, 'Samoyeds', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (60, 'Airedale Terriers', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (61, 'Whippets', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (62, 'Bull Terriers', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (63, 'Pointers (German Wirehaired)', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (64, 'Chinese Shar-Pei', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (65, 'Wirehaired Pointing Griffons', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (66, 'Great Pyrenees', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (67, 'Dogues de Bordeaux', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (68, 'Cardigan Welsh Corgis', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (69, 'Cairn Terriers', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (70, 'Miniature Pinschers', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (71, 'Lhasa Apsos', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (72, 'Old English Sheepdogs', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (73, 'Italian Greyhounds', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (74, 'Greater Swiss Mountain Dogs', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (75, 'Chow Chows', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (76, 'Irish Wolfhounds', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (77, 'Setters (Irish)', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (78, 'Giant Schnauzers', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (79, 'Chinese Crested', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (80, 'Staffordshire Bull Terriers', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (81, 'Coton de Tulear', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (82, 'Russell Terriers', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (83, 'Retrievers (Nova Scotia Duck Tolling)', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (84, 'Bouviers des Flandres', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (85, 'American Staffordshire Terriers', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (86, 'Rat Terriers', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (87, 'Basenjis', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (88, 'Border Terriers', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (89, 'Standard Schnauzers', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (90, 'Anatolian Shepherd Dogs', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (91, 'Retrievers (Flat-Coated)', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (92, 'Pekingese', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (93, 'Leonbergers', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (94, 'Setters (English)', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (95, 'Keeshonden', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (96, 'Tibetan Terriers', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (97, 'Norwegian Elkhounds', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (98, 'Brussels Griffons', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (99, 'Lagotti Romagnoli', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (100, 'Spaniels (Boykin)', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (101, 'Fox Terriers (Wire)', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (102, 'Neapolitan Mastiffs', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (103, 'Borzois', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (104, 'Japanese Chin', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (105, 'Schipperkes', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (106, 'Belgian Tervuren', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (107, 'Welsh Terriers', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (108, 'Norwich Terriers', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (109, 'Spinoni Italiani', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (110, 'Miniature Bull Terriers', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (111, 'Toy Fox Terriers', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (112, 'Silky Terriers', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (113, 'Afghan Hounds', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (114, 'Pointers', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (115, 'Setters (Gordon)', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (116, 'Irish Terriers', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (117, 'Parson Russell Terriers', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (118, 'Black Russian Terriers', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (119, 'Tibetan Spaniels', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (120, 'Salukis', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (121, 'Boerboels', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (122, 'American Eskimo Dogs', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (123, 'Fox Terriers (Smooth)', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (124, 'Beaucerons', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (125, 'Belgian Sheepdogs', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (126, 'Norfolk Terriers', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (127, 'Bearded Collies', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (128, 'Spaniels (Welsh Springer)', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (129, 'Kerry Blue Terriers', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (130, 'Bluetick Coonhounds', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (131, 'Tibetan Mastiffs', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (132, 'Briards', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (133, 'Manchester Terriers', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (134, 'German Pinschers', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (135, 'English Toy Spaniels', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (136, 'American Hairless Terriers', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (137, 'Treeing Walker Coonhounds', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (138, 'Black and Tan Coonhounds', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (139, 'Australian Terriers', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (140, 'Xoloitzcuintli', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (141, 'Bedlington Terriers', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (142, 'Redbone Coonhounds', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (143, 'Spaniels (Clumber)', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (144, 'Berger Picards', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (145, 'Greyhounds', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (146, 'Setters (Irish Red and White)', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (147, 'Lakeland Terriers', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (148, 'Affenpinschers', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (149, 'Spaniels (Field)', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (150, 'Nederlandse Kooikerhondjes', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (151, 'Pumi', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (152, 'Ibizan Hounds', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (153, 'Spanish Water Dogs', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (154, 'Portuguese Podengo Pequenos', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (155, 'Icelandic Sheepdogs', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (156, 'Petits Bassets Griffons Vendeens', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (157, 'Entlebucher Mountain Dogs', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (158, 'Scottish Deerhounds', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (159, 'Spaniels (Irish Water)', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (160, 'Pulik', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (161, 'Finnish Lapphunds', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (162, 'Retrievers (Curly-Coated)', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (163, 'Kuvaszok', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (164, 'Sealyham Terriers', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (165, 'Norwegian Buhunds', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (166, 'Spaniels (American Water)', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (167, 'Wirehaired Vizslas', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (168, 'Lowchen', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (169, 'Swedish Vallhunds', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (170, 'Polish Lowland Sheepdogs', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (171, 'Plotts', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (172, 'Pharaoh Hounds', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (173, 'Komondorok', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (174, 'Glen of Imaal Terriers', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (175, 'American English Coonhounds', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (176, 'Dandie Dinmont Terriers', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (177, 'Grand Basset Griffon Vendeens', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (178, 'Skye Terriers', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (179, 'Canaan Dogs', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (180, 'Spaniels (Sussex)', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (181, 'Pyrenean Shepherds', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (182, 'Otterhounds', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (183, 'Cirnechi dell’Etna', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (184, 'Finnish Spitz', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (185, 'Cesky Terriers', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (186, 'American Foxhounds', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (187, 'Bergamasco Sheepdogs', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (188, 'English Foxhounds', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (189, 'Harriers', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (190, 'Chinooks', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (191, 'Norwegian Lundehunds', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (192, 'Sloughis', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (307, 'Abyssinian', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (308, 'Aegean', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (309, 'American Bobtail', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (310, 'American Curl', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (311, 'American Ringtail', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (312, 'American Shorthair', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (313, 'American Wirehair', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (314, 'Aphrodite Giant', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (315, 'Arabian Mau', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (316, 'Asian cat', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (317, 'Foundation stock from Asia', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (318, 'Asian Semi-longhair', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (319, 'Asian Semi-Australian Mist', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (320, 'Balinese', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (321, 'Foundation stock from Thailand', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (322, 'Bambino', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (323, 'Bengal', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (324, 'Bengal Cat (Fia).Birman', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (325, 'Foundation stock from Burma (Myanmar)[5]', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (326, 'Bombay', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (327, 'Brazilian Shorthair', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (328, 'British Longhair', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (329, 'British Semi-British Shorthair', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (330, 'Burmese', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (331, 'Burmilla', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (332, 'California Spangled', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (333, 'Chantilly-Tiffany', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (334, 'Chantilly-Chartreux', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (335, 'Chausie', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (336, 'Colorpoint Shorthair', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (337, 'Cornish Rex', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (338, 'Cymric, Manx Longhair or Long-haired Manx[b]', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (339, 'Cyprus', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (340, 'Devon Rex', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (341, 'Don Sphynx', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (342, 'Donskoy or Dragon Chinese Li Hua', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (343, 'Dragon Li or Chinese Dwelf', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (344, 'Egyptian Mau', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (345, 'European Shorthair', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (346, 'Exotic Shorthair', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (347, 'Foldex[6]', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (348, 'German Rex', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (349, 'Havana Brown', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (350, 'Foundation stock from Thailand', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (351, 'Highlander', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (352, 'Colorpoint Persian[d]', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (353, 'Himalayan or Japanese Bobtail', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (354, 'Colorpoint Longhair[f]', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (355, 'Foundation stock from Southeast Asia', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (356, 'Javanese or Kanaani', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (357, 'Khao Manee', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (358, 'Kinkalow', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (359, 'Korat', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (360, 'Korean Bobtail', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (361, 'Japanese Bobtail walking.Korn Ja', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (362, 'Kurilian Kuril Islands Bobtail', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (363, 'Kurilian Bobtail or Kuril Lambkin', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (364, 'LaPerm', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (365, 'Lykoi', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (366, 'Maine Coon', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (367, 'Manx', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (368, 'Mekong Bobtail', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (369, 'Minskin', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (370, 'Napoleon', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (371, 'Munchkin', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (372, 'Nebelung', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (373, 'Norwegian Forest Cat', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (374, 'Norwegian Ocicat', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (375, 'Ojos Azules', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (376, 'Oregon Rex', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (377, 'Oriental Bicolor', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (378, 'Foundation stock ultimately from Thailand', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (379, 'Oriental Longhair[g]', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (380, 'Foundation stock ultimately from Thailand[5]', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (381, 'Oriental Shorthair[g]', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (382, 'Foundation stock ultimately from Thailand[5]', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (383, 'Persian (modern)', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (384, 'Foundation stock from Greater Iran[5]', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (385, 'Persian, Persian (traditional)', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (386, 'Peterbald', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (387, 'Pixie-bob', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (388, 'Pixie-Liebling (obsolete)', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (389, 'Ragdoll', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (390, 'Raas', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (391, 'Russian Blue', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (392, 'Russian White, Russian Black and Russian Tabby', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (393, 'Foundation stock from Russia', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (394, 'Sam Sawet', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (395, 'Savannah', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (396, 'Scottish Fold', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (397, 'Lilac-coated Selkirk Rex', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (398, 'Serengeti', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (399, 'Serrade Petit', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (400, 'Siamese (modern)(for traditional, see Thai below)', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (401, 'Foundation stock from Thailand[5]', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (402, 'Siberian Forest Cat;Neva Masquerade (colorpoint variety)', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (403, 'Singapura', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (404, 'Foundation stock from Singapore[5]', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (405, 'Snowshoe', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (406, 'Sokoke', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (407, 'Somali', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (408, 'Sphynx', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (409, 'Suphalak', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (410, 'Traditional, Classic, or Old-style Siamese;Wichien Maat[h]', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (411, 'Thai Lilac, Thai Blue Point and Thai Lilac Point', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (412, 'Tonkinese', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (413, 'Toyger', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (414, 'Turkish Angora', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (415, 'Turkish Van', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (416, 'Foundation stock from Turkey', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (417, 'Turkish Vankedisi', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (418, 'Ukrainian Levkoy', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (419, 'Wila Krungthep', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (420, 'York Chocolate', 'cat');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (421, 'other', 'other');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (422, 'other', 'dog');
INSERT INTO Pawsitive.Breeds (breedID, breedName, type) VALUES (423, 'other', 'cat'); |
SELECT
--a.申請番号
A.APPLY_NO,
--a.取得総額
A.OBTAIN_SUM_TOTAL,
--a.回収総額
A.WITHDRAW_SUM_TOTAL,
--a.回収回数
A.WITHDRAW_FREQUENCY,
--a.顧客_取引先コード
A.CUSTOMER_CODE AS LESSEE_CODE,
--a.顧客_名称
A.CUSTOMER_NAME AS LESSEE_NAME,
--a.申請状況
A.APPLY_STATE,
--b.案件调查报告号
B.REPORT_NO,
--b.报告书作成状态
B.REPORT_CREATE_STATE,
--c.交易方CODE
C.CUSTOMER_CODE AS RESPONDENT_CODE,
--d.取引先名
D.CUSTOMER_NAME AS RESPONDENT_NAME,
--b.CONTRACT_LTV
B.CONTRACT_LTV,
--b.CONTRACT_DBR
B.CONTRACT_DBR,
B.REMARKS AS REPORT_REMARKS,
B.MODIFY_DATE AS SURVEY_REPORT_INFO_MODIFY_DATE
FROM
--申请情报
APPLY_INFO A
--调查报告基本信息
LEFT JOIN SURVEY_REPORT_INFO B
--a.申請番号 = b.案件申请号
ON A.APPLY_NO = B.APPLY_NO
--调查对象信息
LEFT JOIN SURVEY_RESPONDENT_INFO C
--B.案件调查报告号 = C.案件调查报告号
ON B.REPORT_NO = C.REPORT_NO
--b.调查对象类别 =参数.对象类别_承租人(Code 371)
AND C.RESPONDENT_TYPE = /*surveyObjectTypeLessee*/'1'
--取引先マスタ
LEFT JOIN CUSTOMER_MST D
--c.交易方CODE = d.取引先コード
ON C.CUSTOMER_CODE = D.CUSTOMER_CODE
WHERE
--a.申請番号 = 参数.申请号
A.APPLY_NO = /*applyNo*/'' |
# TODO: STORE BY USER && INST_BOOK_ID. These two values will combine to be unique keys for
# identifying valueable data.
DROP TABLE IF EXISTS opendsa.example_users;
# Attempts per day, num_correct per day
CREATE TABLE opendsa.example_users(
user_id INT,
inst_book_id INT,
inst_section_id INT,
attempts INT,
correct INT,
credited INT,
interactions INT,
browser_family varchar(50),
os_family varchar(50)
);
# Updated ByUser starter query
INSERT INTO opendsa.example_users (
user_id,
inst_book_id,
inst_section_id,
attempts,
correct,
credited
)
SELECT
user_id,
inst_book_id,
inst_section_id,
count(*) as num_attempts,
count(case when correct = 1 then 1 else null end) as correct,
count(case when worth_credit = 1 then 1 else null end) as credited
FROM
opendsa.odsa_exercise_attempts Attempts
GROUP BY user_id, inst_book_id, inst_section_id;
SELECT
user_id,
inst_book_id,
inst_section_id,
count(CASE WHEN inst_book_id IS NOT NULL THEN 1 ELSE NULL end) as interactions
FROM opendsa.odsa_user_interactions
GROUP BY user_id, inst_book_id, inst_section_id;
SET SQL_SAFE_UPDATES=0; # TODO: Verify this is okay!
UPDATE example_users Users
INNER JOIN (
SELECT
user_id,
inst_book_id,
inst_section_id,
count(CASE WHEN inst_book_id IS NOT NULL THEN 1 ELSE NULL END) AS interactions,
browser_family,
os_family
FROM opendsa.odsa_user_interactions
GROUP BY user_id, inst_book_id, inst_section_id
)
Interactions ON
Interactions.user_id = Users.user_id
AND Interactions.inst_book_id = Users.inst_book_id
AND Interactions.inst_section_id = Users.inst_section_id
SET
Users.interactions = Interactions.interactions,
Users.browser_family = Interactions.browser_family,
Users.os_family = Interactions.os_family;
# select * from opendsa.odsa_exercise_attempts
|
SELECT CONCAT(MONTH(ShippedDate), ' / ', YEAR(ShippedDate) - 1900) AS 'Shipped Date',
AVG(DAY(ShippedDate)) AS 'Average Shipping Day'
FROM [Order Details]
JOIN Orders ON Orders.OrderID = [Order Details].OrderID
GROUP BY MONTH(ShippedDate),
YEAR(ShippedDate)
HAVING YEAR(ShippedDate) IS NOT NULL |
-- Define self service privileges
-- Create new role privileges
-- Create new role for self-service
ALTER TABLE `users`add constraint unique_username_email unique (`id`,`username`,`email`);
INSERT INTO `m_roles` ( `name`) VALUES ("SELF SERVICE");
SET @roleId = (SELECT `id` FROM `m_roles` WHERE `name` = "SELF SERVICE");
INSERT INTO `role_privileges` (`role_id`,`privilege_id`) VALUES
(@roleId, 19),(1,20);
REPLACE INTO `m_privilege` ( `name`) VALUES
("CREATE_SELF_SERVICE"), ("READ_SELF_SERVICE"), ("UPDATE_SELF_SERVICE"), ("DELETE_SELF_SERVICE");
DROP TABLE IF EXISTS `m_files`;
CREATE TABLE `m_files`(
id BIGINT NOT NULL AUTO_INCREMENT COMMENT 'file index id',
name VARCHAR (200) NOT NULL COMMENT 'file name',
url VARCHAR (250) NULL COMMENT 'file http url',
`location` VARCHAR (250) NULL COMMENT 'file location',
`type` VARCHAR (250) NOT NULL COMMENT 'file type',
`size` VARCHAR (250) NOT NULL COMMENT 'file size',
primary key (`id`),
`consultation_id` BIGINT REFERENCES `m_consultations`(`id`) ON DELETE CASCADE,
constraint uc_name_consultation_url unique(`name`, `url`,`consultation_id`)
) COLLATE='utf8_unicode_ci' ENGINE=InnoDB;
ALTER TABLE `m_patients` change column `last_modified_date` `last_modified_date` TIMESTAMP DEFAULT CURRENT_TIMESTAMP;
ALTER TABLE `m_patients` change column `symptoms` `allergies` VARCHAR (250); |
CREATE PROCEDURE cpr.PlanificacionRutasDeleteOrdenes
@usuario VARCHAR(50)
AS
BEGIN
SET NOCOUNT ON;
DELETE t
FROM tactic.id_toursolver.planificacion_rutas_ordenes t
WHERE
t.usuario = @usuario
END
|
use moviedb;
select t.* from (
select distinct count(*) OVER() AS total_rows, movies.id as movie_id, movies.title, movies.year, movies.director, rating,
group_concat(distinct genres.name SEPARATOR ', ') AS listGenres,
group_concat(distinct stars.id ORDER BY stars.name separator ', ') AS listStarsId,
group_concat(distinct stars.name SEPARATOR ', ') as listStarsName
from ratings, movies
inner join genres_in_movies on movies.id = genres_in_movies.movieId
inner join genres on genres.id = genres_in_movies.genreId
inner join stars_in_movies on movies.id = stars_in_movies.movieId
inner join stars on stars.id = stars_in_movies.starId
where ratings.movieId = movies.id AND movies.title like '%love%'
group by movies.id
limit 10 offset 0
) AS t
order by t.rating asc
;
-- SELECT stars.id as star_id, movies.id as movie_id, movies.title, movies.year, movies.director,
-- group_concat(distinct genres.name SEPARATOR ', ') AS listGenres,
-- group_concat(distinct stars.name SEPARATOR ', ') AS listStars, ratings.rating
-- FROM ratings, movies
-- inner join genres_in_movies on genres_in_movies.movieId = movies.id
-- inner join genres on genres.id = genres_in_movies.genreId
-- inner join stars_in_movies on movies.id = stars_in_movies.movieId
-- inner join stars on stars.id = stars_in_movies.starId
-- WHERE ratings.movieId = movies.id AND movies.id = ?
-- group by movies.id;
-- SELECT stars.name, stars.birthYear,
-- group_concat(distinct movies.title SEPARATOR ', ') AS listMoviesTitle,
-- group_concat(distinct movies.id ORDER BY movies.title SEPARATOR ', ') AS listMoviesId
-- FROM stars
-- INNER JOIN stars_in_movies ON stars_in_movies.starId = stars.id
-- INNER JOIN movies ON stars_in_movies.movieId = movies.id
-- WHERE stars.id = ?
-- group by stars.id; |
CREATE TABLE public.murmurs (
id integer NOT NULL,
user_id integer NOT NULL,
text text NOT NULL,
create_at timestamp without time zone DEFAULT now() NOT NULL,
room_key text NOT NULL
);
CREATE TABLE public.users (
id integer NOT NULL,
name text NOT NULL,
create_at timestamp without time zone DEFAULT now() NOT NULL,
email text
);
CREATE TABLE public.rooms (
id integer NOT NULL,
key text NOT NULL,
name text NOT NULL,
create_at timestamp without time zone DEFAULT now() NOT NULL
);
|
Create table AVIS
(identifiant int IDENTITY(1,1) CONSTRAINT PK_AVIS PRIMARY KEY,
description varchar(150) not null,
note tinyint NOT NULL CONSTRAINT CK_AVIS_NOTE CHECK(note between 1 and 5)
); |
TRUNCATE TABLE OLE_CAT_SRC_TRM_T DROP STORAGE
/
INSERT INTO OLE_CAT_SRC_TRM_T (SRC_TRM_ID,SRC_TRM_CD,SRC_TRM_NM,SRC,SRC_DT,ROW_ACT_IND,OBJ_ID,VER_NBR)
VALUES ('8','pda','Preservation and digitization actions: terminology for MARC 21 Field 583','http://www.loc.gov/standards/sourcelist/resource-action.html',TO_DATE( '20120322000000', 'YYYYMMDDHH24MISS' ),'Y','a4b4faa4-1b1c-4a0b-80bc-e2137f593e88',1.0)
/
INSERT INTO OLE_CAT_SRC_TRM_T (SRC_TRM_ID,SRC_TRM_CD,SRC_TRM_NM,SRC,SRC_DT,ROW_ACT_IND,OBJ_ID,VER_NBR)
VALUES ('9','stmanf','Standard terminology for the MARC 21 Actions Note Field','http://www.loc.gov/standards/sourcelist/resource-action.html',TO_DATE( '20120322000000', 'YYYYMMDDHH24MISS' ),'Y','aafce01c-c970-4b59-90a0-8c1990f3a622',1.0)
/
|
SELECT EXISTS(SELECT *
FROM boundary
WHERE ST_Contains(the_geom,ST_GeomFromText('POINT(-87.64581 41.92683)', 4326)));
SELECT EXISTS(SELECT *
FROM boundary
WHERE ST_Contains(the_geom,ST_GeomFromText('POINT(-87.843113 41.632342)', 4326)));
SELECT pri_neigh AS Neighborhood
FROM hoods
WHERE ST_Contains(the_geom,ST_GeomFromText('POINT(-87.64581 41.92683)', 4326));
SELECT ward, alderman
FROM wards
WHERE ST_Contains(the_geom,ST_GeomFromText('POINT(-87.64581 41.92683)', 4326));
SELECT police_stations.* FROM police_stations
INNER JOIN police_districts
ON police_districts.dist_num = police_stations.descriptio
WHERE ST_Contains(police_districts.the_geom,ST_GeomFromText('POINT(-87.64581 41.92683)', 4326));
SELECT * FROM il_congress
WHERE ST_Contains(the_geom,ST_GeomFromText('POINT(-87.64581 41.92683)', 4326));
SELECT * FROM il_senate
WHERE ST_Contains(the_geom,ST_GeomFromText('POINT(-87.64581 41.92683)', 4326));
SELECT hoods.pri_neigh AS neighborhood, farmers_markets.location AS market_name, farmers_markets.intersecti FROM hoods,farmers_markets
WHERE ST_Contains(hoods.the_geom,farmers_markets.the_geom);
SELECT ST_Distance(ST_Transform(ST_GeomFromText('POINT(-87.64581 41.92683)', 4326),900913),ST_Transform(farmers_markets.the_geom,900913)) / 1609 AS dist, farmers_markets.location AS market_name, farmers_markets.intersecti AS location
FROM farmers_markets
ORDER BY dist ASC
LIMIT 5;
select * from landmarks
order by date_built DESC;
select public_schools.facility_n from public_schools, hoods
WHERE ST_Contains(hoods.the_geom,public_schools.the_geom) AND hoods.pri_neigh = 'Bucktown'
SELECT landmarks.name FROM landmarks, hoods
WHERE ST_Contains(hoods.the_geom,landmarks.the_geom) AND hoods.pri_neigh = 'Lincoln Park'
select hospitals.hname from hospitals, hoods
WHERE ST_Contains(hoods.the_geom,hospitals.the_geom) AND hoods.pri_neigh = 'Lakeview'
SELECT ST_Distance(ST_Transform(ST_GeomFromText('POINT(-87.64581 41.92683)', 4326),900913),ST_Transform(hospitals.the_geom,900913)) / 1609 AS dist, hospitals.hname AS hospital
FROM hospitals
ORDER BY dist ASC
LIMIT 5;
SELECT zipcodes.zip
FROM zipcodes,hoods
WHERE ST_Intersects(hoods.the_geom,zipcodes.the_geom) AND hoods.pri_neigh = 'Wrigleyville' |
-- 26/10/2019 - Addresses and companies info
CREATE TABLE `addresses` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`customer_id` int(11) NOT NULL,
`address` varchar(255),
`district` varchar(100),
`building` varchar(255),
`lat` decimal(10,6),
`lng` decimal(10,6),
`distance` varchar(5),
`description` varchar(255),
`created_by` int(11) NOT NULL,
`created_dtm` datetime NOT NULL,
`modified_dtm` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`deleted` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
CREATE TABLE `addressables` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`address_id` int(11) NOT NULL,
`addressable_id` int(11) NOT NULL,
`addressable_type` varchar(100),
`description` varchar(255),
`created_dtm` datetime NOT NULL,
`modified_dtm` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
CREATE TABLE `companies` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`name` varchar(255),
`tax_code` varchar(100),
`address` varchar(255),
`lat` decimal(10,6),
`lng` decimal(10,6),
`description` varchar(255),
`created_by` int(11) NOT NULL,
`created_dtm` datetime NOT NULL,
`modified_dtm` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
`deleted` tinyint(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8;
CREATE TABLE `companies_links` (
`id` int(11) unsigned NOT NULL AUTO_INCREMENT,
`company_id` int(11) NOT NULL,
`link_id` int(11) NOT NULL,
`link_type` varchar(100),
`description` varchar(255),
`created_dtm` datetime NOT NULL,
`modified_dtm` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP,
PRIMARY KEY (`id`)
) ENGINE=InnoDB AUTO_INCREMENT=1 DEFAULT CHARSET=utf8; |
-- phpMyAdmin SQL Dump
-- version 4.0.10.7
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Aug 31, 2015 at 10:07 PM
-- Server version: 5.6.22-72.0-log
-- PHP Version: 5.4.23
SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO";
SET time_zone = "+00:00";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
--
-- Database: `csinseew_team_database`
--
CREATE DATABASE IF NOT EXISTS `csinseew_team_database` DEFAULT CHARACTER SET latin1 COLLATE latin1_swedish_ci;
USE `csinseew_team_database`;
-- --------------------------------------------------------
--
-- Table structure for table `team-2012-13`
--
DROP TABLE IF EXISTS `team-2012-13`;
CREATE TABLE IF NOT EXISTS `team-2012-13` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(1000) NOT NULL,
`sex` varchar(1) NOT NULL DEFAULT 'M',
`year` int(4) NOT NULL,
`designation` varchar(1000) DEFAULT NULL,
`facebook_link` text,
`image_link` text,
`priority` int(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=14 ;
--
-- Dumping data for table `team-2012-13`
--
INSERT INTO `team-2012-13` (`id`, `name`, `sex`, `year`, `designation`, `facebook_link`, `image_link`, `priority`) VALUES
(1, 'Saraj Munjal', 'M', 4, 'Director<br>Operations and Public Relations', 'https://www.facebook.com/saraj.munjal', 'img/team/saraj', 1),
(2, 'Toshit Agarwal', 'M', 4, 'Director<br>Finance and Marketing', 'https://www.facebook.com/agarwaltoshit', 'img/team/toshit', 1),
(3, 'Tarun Gehlaut', 'M', 4, 'Director<br>Technology and Web Operations', 'https://www.facebook.com/tarun550', 'img/team/tarun', 1),
(4, 'Jatin Shridhar', 'M', 3, NULL, 'https://www.facebook.com/jatinshridhar', NULL, 0),
(5, 'Kamal Joshi', 'M', 3, NULL, 'https://www.facebook.com/kamaljoshi4', NULL, 0),
(6, 'Malay Keshav', 'M', 3, NULL, 'https://www.facebook.com/malay.keshav', NULL, 0),
(7, 'Ayush Verma', 'M', 2, NULL, 'https://www.facebook.com/TheSlyGuy007', 'img/team/ayushverma', 0),
(8, 'Aarushi Jain', 'F', 2, NULL, 'https://www.facebook.com/jain.aarushi', 'img/team/aarushi', 0),
(9, 'Priyanshi Gupta', 'F', 2, NULL, 'https://www.facebook.com/Priyanshi.20', 'img/team/priyanshi', 0),
(10, 'Nitish Gundherva', 'M', 2, NULL, 'https://www.facebook.com/LinparUnleashed', 'img/team/nitish', 0),
(11, 'Rushil Kapoor', 'M', 2, NULL, 'https://www.facebook.com/kapoor.rushil', 'img/team/rushil', 0),
(12, 'Krishan Kumar Singh', 'M', 2, NULL, 'https://www.facebook.com/kay2rock', NULL, 0),
(13, 'Abhinav Singh', 'M', 2, NULL, 'https://www.facebook.com/abhinav.singh.1671', 'img/team/abhinavsingh', 0);
-- --------------------------------------------------------
--
-- Table structure for table `team-2014-15`
--
DROP TABLE IF EXISTS `team-2014-15`;
CREATE TABLE IF NOT EXISTS `team-2014-15` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(1000) NOT NULL,
`sex` varchar(1) NOT NULL DEFAULT 'M',
`year` int(4) NOT NULL,
`designation` varchar(1000) DEFAULT NULL,
`facebook_link` text,
`image_link` text,
`priority` int(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=58 ;
--
-- Dumping data for table `team-2014-15`
--
INSERT INTO `team-2014-15` (`id`, `name`, `sex`, `year`, `designation`, `facebook_link`, `image_link`, `priority`) VALUES
(1, 'Aarushi Jain', 'F', 4, 'Director<br>Operations and Public Relations', 'https://www.facebook.com/jain.aarushi', 'img/team/aarushi', 1),
(2, 'Nitish Gundherva', 'M', 4, 'Director<br>Technology and Web Operations', 'https://www.facebook.com/LinparUnleashed', 'img/team/nitish', 1),
(3, 'Priyanshi Gupta', 'F', 4, 'Director<br>Finance and Marketing', 'https://www.facebook.com/Priyanshi.20', 'img/team/priyanshi', 1),
(4, 'Abhinav Singh', 'M', 4, 'Senior Coordinator<br>Publications and Design Technologies(BnB)', 'https://www.facebook.com/abhinav.singh.1671', 'img/team/abhinavsingh', 0),
(5, 'Ayush Verma', 'M', 4, 'Senior Coordinator<br>Technology', 'https://www.facebook.com/TheSlyGuy007', 'img/team/ayushverma', 0),
(6, 'Rushil Kapoor', 'M', 4, 'Coordinator<br>Event Management', 'https://www.facebook.com/kapoor.rushil', 'img/team/rushil', 0),
(7, 'Vidit Jain', 'M', 3, NULL, 'https://www.facebook.com/vidit15', 'img/team/vidit', 1),
(8, 'Rajat Gupta', 'M', 3, NULL, 'https://www.facebook.com/RajatGupta71', 'img/team/rajat', 1),
(9, 'Anant Simran Singh', 'M', 3, NULL, 'https://www.facebook.com/anantsimran.singh', 'img/team/anant', 1),
(10, 'Daksh Sharma', 'M', 3, NULL, 'https://www.facebook.com/dakshmay21', 'img/team/daksh', 0),
(11, 'Ishaan Gupta', 'M', 3, NULL, 'https://www.facebook.com/ishaan.gupta.106', 'img/team/ishaan', 0),
(12, 'Ashish Kothari', 'M', 3, NULL, 'https://www.facebook.com/ashish.k94', 'img/team/ashish', 0),
(13, 'Garvit Jain', 'M', 3, NULL, 'https://www.facebook.com/garvit.jain.796', NULL, 0),
(14, 'Ayush Jain', 'M', 3, NULL, 'https://www.facebook.com/ayush.jain.9803', 'img/team/ayushjain', 0),
(15, 'Avinash Choudhary', 'M', 3, NULL, 'https://www.facebook.com/avinashch95', 'img/team/avinash', 0),
(16, 'Prabhakar Gupta', 'M', 2, NULL, 'https://www.facebook.com/prabhakar267', 'img/team/prabhakar', 1),
(17, 'Suryansh Tibarewal', 'M', 2, NULL, 'https://www.facebook.com/suryansh.tibarewal', 'img/team/suryansh', 1),
(18, 'Ayush Garg', 'M', 2, NULL, 'https://www.facebook.com/sync.complete', 'img/team/ayush', 0),
(19, 'Archita Goyal', 'F', 2, NULL, 'https://www.facebook.com/archita.goyal.7334', 'img/team/archita', 0),
(20, 'Anmol Varshney', 'M', 2, NULL, 'https://www.facebook.com/anmolguptarulz', 'img/team/anmol', 0),
(21, 'Akash Rawat', 'M', 2, NULL, 'https://www.facebook.com/Akash.Rawat.01', 'img/team/akash', 0),
(22, 'Abhinav Bansal', 'M', 2, NULL, 'https://www.facebook.com/abhinav.bansal.1217', 'img/team/abhinav', 0),
(23, 'Rohit Gohri', 'M', 2, NULL, 'https://www.facebook.com/rohit95', 'img/team/rohit', 0),
(24, 'Sarthak Deshwal', 'M', 2, NULL, 'https://www.facebook.com/sarthak.deshwal.9', 'img/team/sarthak', 0),
(25, 'Lehar Bhandari', 'F', 2, NULL, 'https://www.facebook.com/lehar.bhandari', 'img/team/lehar', 0),
(26, 'Dhruv Mullick', 'M', 2, NULL, 'https://www.facebook.com/dhruvmullick', 'img/team/dhruv', 0),
(27, 'Chetan Shukla', 'M', 2, NULL, 'https://www.facebook.com/chetan.shukla.5205', 'img/team/chetan', 0),
(28, 'Bhavanshu Saini', 'M', 2, NULL, 'https://www.facebook.com/profile.php?id=1559234061', 'img/team/bhavanshu', 0),
(29, 'Ayur Jain', 'M', 2, NULL, 'https://www.facebook.com/ayur.jain.3', 'img/team/ayur', 0),
(30, 'Srishti Jain', 'F', 2, NULL, 'https://www.facebook.com/srishti.jain.1048', 'img/team/srishtijain', 0),
(31, 'Ayush Tomar', 'M', 2, NULL, 'https://www.facebook.com/ayu.ditoms', NULL, 0);
-- --------------------------------------------------------
--
-- Table structure for table `team-2015-16`
--
DROP TABLE IF EXISTS `team-2015-16`;
CREATE TABLE IF NOT EXISTS `team-2015-16` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`name` varchar(1000) NOT NULL,
`sex` varchar(1) NOT NULL DEFAULT 'M',
`year` int(4) NOT NULL,
`designation` varchar(1000) DEFAULT NULL,
`facebook_link` text,
`image_link` text,
`priority` int(1) NOT NULL DEFAULT '0',
PRIMARY KEY (`id`)
) ENGINE=MyISAM DEFAULT CHARSET=latin1 AUTO_INCREMENT=42 ;
--
-- Dumping data for table `team-2015-16`
--
INSERT INTO `team-2015-16` (`id`, `name`, `sex`, `year`, `designation`, `facebook_link`, `image_link`, `priority`) VALUES
(1, 'Anant Simran Singh', 'M', 4, 'Director<br>Operations and Public Relations', 'https://www.facebook.com/anantsimran.singh', 'img/team/anant', 1),
(2, 'Rajat Gupta', 'M', 4, 'Director<br>Technology and Web Operations', 'https://www.facebook.com/RajatGupta71', 'img/team/rajat', 1),
(3, 'Vidit Jain', 'M', 4, 'Director<br>Finance and Marketing', 'https://www.facebook.com/vidit15', 'img/team/vidit', 1),
(4, 'Daksh Sharma', 'M', 4, 'Senior Coordinator', 'https://www.facebook.com/dakshmay21', 'img/team/daksh', 0),
(5, 'Ishaan Gupta', 'M', 4, 'Senior Coordinator', 'https://www.facebook.com/ishaan.gupta.106', 'img/team/ishaan', 0),
(6, 'Ashish Kothari', 'M', 4, 'Senior Coordinator', 'https://www.facebook.com/ashish.k94', 'img/team/ashish', 0),
(7, 'Garvit Jain', 'M', 4, 'Senior Coordinator', 'https://www.facebook.com/garvit.jain.796', NULL, 0),
(8, 'Ayush Jain', 'M', 4, 'Senior Coordinator', 'https://www.facebook.com/ayush.jain.9803', NULL, 0),
(9, 'Avinash Choudhary', 'M', 4, 'Senior Coordinator', 'https://www.facebook.com/avinashch95', 'img/team/avinash', 0),
(10, 'Prabhakar Gupta', 'M', 3, NULL, 'https://www.facebook.com/prabhakar267', 'img/team/prabhakar', 9),
(11, 'Suryansh Tibarewal', 'M', 3, NULL, 'https://www.facebook.com/suryansh.tibarewal', 'img/team/suryansh', 1),
(12, 'Ayush Garg', 'M', 3, NULL, 'https://www.facebook.com/sync.complete', 'img/team/ayush', 0),
(13, 'Archita Goyal', 'F', 3, NULL, 'https://www.facebook.com/archita.goyal.7334', 'img/team/archita', 0),
(14, 'Akash Rawat', 'M', 3, NULL, 'https://www.facebook.com/Akash.Rawat.01', 'img/team/akash', 0),
(15, 'Abhinav Bansal', 'M', 3, NULL, 'https://www.facebook.com/abhinav.bansal.1217', 'img/team/abhinav', 0),
(16, 'Rohit Gohri', 'M', 3, NULL, 'https://www.facebook.com/rohit95', 'img/team/rohit', 0),
(17, 'Sarthak Deshwal', 'M', 3, NULL, 'https://www.facebook.com/sarthak.deshwal.9', 'img/team/sarthak', 0),
(18, 'Lehar Bhandari', 'F', 3, NULL, 'https://www.facebook.com/lehar.bhandari', 'img/team/lehar', 0),
(19, 'Dhruv Mullick', 'M', 3, NULL, 'https://www.facebook.com/dhruvmullick', 'img/team/dhruv', 0),
(20, 'Chetan Shukla', 'M', 3, NULL, 'https://www.facebook.com/chetan.shukla.5205', 'img/team/chetan', 0),
(21, 'Ayur Jain', 'M', 3, NULL, 'https://www.facebook.com/ayur.jain.3', 'img/team/ayur', 0),
(22, 'Srishti Jain', 'F', 3, NULL, 'https://www.facebook.com/srishti.jain.1048', 'img/team/srishtijain', 1),
(23, 'Ayush Tomar', 'M', 3, NULL, 'https://www.facebook.com/ayu.ditoms', NULL, 0),
(24, 'Mansimar Kaur', 'F', 2, NULL, 'https://www.facebook.com/mansimar.kaur.7', 'img/team/mansimar', 1),
(25, 'Prachi Manchanda', 'F', 2, NULL, 'https://www.facebook.com/prachi.manchanda.1', 'img/team/prachimanchanda', 1),
(26, 'Kamakshi Suri', 'F', 2, NULL, 'https://www.facebook.com/kamakshi.suri.5', 'img/team/kamakshisuri', 1),
(27, 'Peeyush Taneja', 'M', 2, NULL, 'https://www.facebook.com/peeyush.taneja.7', NULL, 1),
(28, 'Arun Yadav', 'M', 2, NULL, 'https://www.facebook.com/arun.yadav.121772', NULL, 0),
(29, 'Ayush Garg', 'M', 2, NULL, 'https://www.facebook.com/ayush.garg.940', 'img/team/ayushgarg2018', 0),
(30, 'Deepika Naryani', 'F', 2, NULL, 'https://www.facebook.com/deepika.naryani1', 'img/team/deepikanaryani', 0),
(31, 'Jaskirat Singh Arora', 'M', 2, NULL, 'https://www.facebook.com/jaskirat.aakriti', NULL, 0),
(32, 'Pulkit Mehta', 'M', 2, NULL, 'https://www.facebook.com/pulkit1996', 'img/team/pulkitmehta', 0),
(33, 'Ravi Shankar', 'M', 2, NULL, 'https://www.facebook.com/sherlock.messi', 'img/team/ravishankar', 0),
(34, 'Rishabh Jain', 'M', 2, NULL, 'https://www.facebook.com/i.rishabh.jain', 'img/team/rishabhjain', 0),
(35, 'Sagorika Das', 'F', 2, NULL, 'https://www.facebook.com/sagorika1996', 'img/team/sagorikadas', 0),
(36, 'Sakshi Bhasin', 'F', 2, NULL, 'https://www.facebook.com/sakshi.bhasin.56', NULL, 0),
(37, 'Sangeeta Dey', 'F', 2, NULL, 'https://www.facebook.com/sangeeta.dey.5074', 'img/team/sangeetadey', 0),
(38, 'Sarthak Agarwal', 'M', 2, NULL, 'https://www.facebook.com/sarthak.agarwal1996', 'img/team/sarthakagarwal', 0),
(39, 'Shivli Aggarwal', 'F', 2, NULL, 'https://www.facebook.com/shivli.agrawal', 'img/team/shivliagrawal', 0),
(40, 'Sijal Bhatnagar', 'M', 2, NULL, 'https://www.facebook.com/sijal.bhatnagar', NULL, 0),
(41, 'Vidit Bhargava', 'M', 2, NULL, 'https://www.facebook.com/viditb', NULL, 0);
/*!40101 SET CHARACTER_SET_CLIENT=@OLD_CHARACTER_SET_CLIENT */;
/*!40101 SET CHARACTER_SET_RESULTS=@OLD_CHARACTER_SET_RESULTS */;
/*!40101 SET COLLATION_CONNECTION=@OLD_COLLATION_CONNECTION */;
|
/*
Navicat MySQL Data Transfer
Source Server : discuz
Source Server Version : 50717
Source Host : 103.45.101.109:4406
Source Database : test2
Target Server Type : MYSQL
Target Server Version : 50717
File Encoding : 65001
Date: 2018-06-05 14:35:39
*/
SET FOREIGN_KEY_CHECKS=0;
-- ----------------------------
-- Table structure for tb_roles
-- ----------------------------
DROP TABLE IF EXISTS `tb_roles`;
CREATE TABLE `tb_roles` (
`R_ID` bigint(20) NOT NULL AUTO_INCREMENT,
`R_NAME` varchar(30) DEFAULT NULL,
`R_CODE` bigint(20) DEFAULT '6' COMMENT '1:客服\n 2:运营\n 3:买家\n 4:卖家\n 5:个人\n 6:平台',
`R_CREATE_NAME` varchar(32) DEFAULT NULL,
`R_CREATE_TIME` datetime DEFAULT NULL,
`R_FLAG` int(11) DEFAULT '0' COMMENT '逻辑删除[0:正常,1:删除]',
`R_REMARK` varchar(512) DEFAULT NULL COMMENT '备注',
PRIMARY KEY (`R_ID`)
) ENGINE=InnoDB AUTO_INCREMENT=34 DEFAULT CHARSET=utf8;
-- ----------------------------
-- Records of tb_roles
-- ----------------------------
INSERT INTO `tb_roles` VALUES ('1', '超级管理员', '6', 'system', '2018-01-10 00:00:00', '0', '备注');
INSERT INTO `tb_roles` VALUES ('33', '普通成员', '0', 'admin', '2018-04-09 00:00:00', '0', null);
|
WITH
--Gather contact and academic term data to join with COVI data to set reporting groups
gather_at_data AS
(
SELECT
full_name_c,
at_id,
contact_id,
AY_Name,
site_short,
Ethnic_background_c,
Gender_c
FROM `data-warehouse-289815.salesforce_clean.contact_at_template`
WHERE College_Track_Status_Name = 'Current CT HS Student'
AND
(grade_c IN ('9th Grade','10th Grade','11th Grade')
OR
(grade_c = "12th Grade" OR (grade_c='Year 1' AND indicator_years_since_hs_graduation_c = 0)))
),
--Pull Covi assessments completed within appropriate AYs (2020-21)
gather_covi_data AS (
SELECT
contact_name_c AS contact_id_covi,
contact_id, --from contact_at
id AS test_record_id,
site_short,
AY_Name,
co_vitality_scorecard_color_c,
belief_in_self_raw_score_c,
engaged_living_raw_score_c,
belief_in_others_raw_score_c,
emotional_competence_raw_score_c,
GAD.Ethnic_background_c,
GAD.Gender_c
FROM `data-warehouse-289815.salesforce_clean.test_clean` AS COVI
LEFT JOIN gather_at_data AS GAD
ON GAD.at_id = COVI.academic_semester_c
WHERE COVI.record_type_id ='0121M000001cmuDQAQ' --Covitality test record type
AND status_c = 'Completed'
AND AY_Name = 'AY 2020-21'
),
--Setting groundwork for KPI indicator: % of students who have taken the the CoVi assessment each academic year (2020-21AY)
--Gathered in 2 CTEs
completing_covi_data AS (
SELECT
site_short,
contact_id,
CASE
WHEN test_record_id IS NOT NULL
THEN 1
ELSE 0
END AS covi_assessment_completed_ay,
Ethnic_background_c,
Gender_c
FROM gather_covi_data
WHERE AY_Name = 'AY 2020-21'
GROUP BY
contact_id,
site_short,
test_record_id,
Ethnic_background_c,
Gender_c
),
--Isolate students that completed a Covitality assessment in 2020-21AY
students_that_completed_covi AS (
SELECT
COUNT(DISTINCT contact_id) AS wellness_covi_assessment_completed_ay,
site_short,
Ethnic_background_c,
Gender_c
FROM completing_covi_data
WHERE covi_assessment_completed_ay = 1
GROUP BY
site_short,
Ethnic_background_c,
Gender_c
),
-- KPI: % of students served by Wellness who "agree" or "strongly agree" wellness services assisted them in managing their stress, helping them engage in self-care practices and/or enhancing their mental health
-- The denominator for this metric will be students who answered "yes" to receiving wellness services
gather_wellness_survey_data AS (
SELECT
CT.site_short,
S.contact_id AS students_receiving_wellness_services,
CASE
WHEN (
working_with_college_track_wellness_services_has_assisted_you_in_managing_your_s IN ("Agree","Strongly Agree", "Totalmente de acuerdo")
OR working_with_college_tracks_wellness_programming_has_helped_you_engage_in_self_c IN ("Agree","Strongly Agree", "Totalmente de acuerdo")
OR working_with_college_tracks_wellness_services_has_enhanced_your_mental_health IN ("Agree","Strongly Agree", "Totalmente de acuerdo")
)
THEN 1
ELSE 0
END AS strongly_agree_wellness_services_assisted_them,
CT.Ethnic_background_c,
CT.Gender_c
FROM `data-studio-260217.surveys.fy21_hs_survey` S
LEFT JOIN `data-warehouse-289815.salesforce_clean.contact_template` CT ON CT.Contact_Id = S.contact_id
WHERE did_you_engage_with_wellness_services_at_your_site = "Yes"
),
aggregate_wellness_survey_data AS (
SELECT
COUNT (DISTINCT students_receiving_wellness_services) AS wellness_survey_wellness_services_assisted_denom,
SUM(strongly_agree_wellness_services_assisted_them) AS wellness_survey_wellness_services_assisted_num,
site_short,
Ethnic_background_c,
Gender_c
FROM gather_wellness_survey_data
GROUP BY
site_short,
Ethnic_background_c,
Gender_c
),
--Average # of sessions for reb/blue Covi students or 1:1 (case notes)
--% of students/# of sessions/amt of time that students with red and blue CoVi scores have spent receiving support/counseling/coaching for their social emotional wellbeing health (either through a workshop, small group or 1:1s)
--Broken down into various CTEs to gather students with red/blue covi, wellness sessions attended, and case notes logged
--Pulling students with red/blue covi from academic term (2020-21AY)
gather_red_blue_covi_at AS (
SELECT
contact_id,
site_short,
co_vitality_scorecard_color_c,
MAX(CASE
WHEN co_vitality_scorecard_color_c IN ('Blue','Red')
THEN 1
ELSE NULL
END) AS wellness_blue_red_denom,
Ethnic_background_c,
Gender_c
FROM `data-warehouse-289815.salesforce_clean.contact_at_template`
WHERE grade_c != '8th Grade'
AND college_track_status_c = '11A'
AND AY_NAME = "AY 2020-21"
AND Term_c = "Fall"
GROUP BY
contact_Id,
site_short,
co_vitality_scorecard_color_c,
Ethnic_background_c,
Gender_c
),
--Sum students that have a red or blue covitality color at some point during 2020-21AY
sum_of_blue_red_covi AS (
SELECT
site_short,
SUM(wellness_blue_red_denom) AS sum_of_blue_red_covi_for_avg, #students with blue/red Covitality scorecard colors for denominator
Ethnic_background_c,
Gender_c
FROM gather_red_blue_covi_at
GROUP BY
site_short,
Ethnic_background_c,
Gender_c
),
--gather Wellness sessions attended during 2020-21
gather_wellness_attendance_data AS (
SELECT
SUM(attendance_numerator_c) AS sum_attended_wellness_sessions,
site_short,
CAT.Ethnic_background_c,
CAT.Gender_c
FROM `data-warehouse-289815.salesforce_clean.class_template` CT
LEFT JOIN `data-warehouse-289815.salesforce_clean.contact_at_template` CAT ON CAT.AT_Id = CT.Academic_Semester_c
WHERE
Attendance_Numerator_c > 0
AND department_c = 'Wellness'
AND dosage_types_c NOT LIKE '%NSO%'
AND AY_NAME = "AY 2020-21"
AND grade_c != '8th Grade'
AND Outcome_c != 'Cancelled'
AND college_track_status_c = '11A'
AND contact_id IN (SELECT contact_id FROM `data-warehouse-289815.salesforce_clean.contact_at_template` where co_vitality_scorecard_color_c IN ('Blue','Red') AND AY_name = "AY 2020-21" AND Term_c = "Fall")
GROUP BY
site_short,
Ethnic_background_c,
Gender_c
),
--Prepare case note data for aggregation: red/blue covi as receiving 1:1 support by site. Will be used to add together with Wellness sessions attended
--1 casenote = 1 session
gather_case_note_data AS (
SELECT
COUNT (DISTINCT CSE.id) AS case_note_count, #case note id
site_short,
CAT.Ethnic_background_c,
CAT.Gender_c
FROM `data-warehouse-289815.salesforce_clean.contact_at_template` CAT
LEFT JOIN `data-warehouse-289815.salesforce.progress_note_c` CSE ON CAT.AT_Id = CSE.Academic_Semester_c
WHERE Type_Counseling_c = TRUE
AND AY_name = 'AY 2020-21'
AND college_track_status_c = '11A'
AND contact_id IN (SELECT contact_id FROM `data-warehouse-289815.salesforce_clean.contact_at_template` where co_vitality_scorecard_color_c IN ('Blue','Red') AND AY_name = "AY 2020-21" AND Term_c = "Fall")
GROUP BY
site_short,
Ethnic_background_c,
Gender_c
),
--Add 1:1 case notes and sessions attended by student to average out later
combine_sessions_and_case_notes AS (
SELECT
ATTNDCE.site_short,
SUM(sum_attended_wellness_sessions + case_note_count) AS sum_wellness_support_received,
ATTNDCE.Ethnic_background_c,
ATTNDCE.Gender_c
FROM gather_wellness_attendance_data AS ATTNDCE
LEFT JOIN gather_case_note_data AS CSE ON ATTNDCE.site_short = CSE.site_short
GROUP BY
site_short,
Ethnic_background_c,
Gender_c
),
calculate_avg_wellness_services_per_blue_red_covi AS (
SELECT
a.site_short,
CASE
WHEN wellness_blue_red_denom IS NOT NULL
THEN (sum_wellness_support_received/sum_of_blue_red_covi_for_avg)
ELSE NULL
END AS wellness_avg_support, # of sessions or 1:1 / Students with reb,blue Covi scorecard color
a.Ethnic_background_c,
a.Gender_c
FROM combine_sessions_and_case_notes AS a
LEFT JOIN sum_of_blue_red_covi AS b ON a.site_short=b.site_short AND a.ethnic_background_c=b.ethnic_background_c AND a.Gender_c=b.Gender_c
LEFT JOIN gather_red_blue_covi_at AS C ON a.site_short=c.site_short AND a.ethnic_background_c=c.ethnic_background_c AND c.Gender_c=b.Gender_c
WHERE wellness_blue_red_denom IS NOT NULL
),
prep_avg_wellness_services AS (
SELECT
site_short,
wellness_avg_support, # of sessions or 1:1 / Students with reb,blue Covi scorecard color
Ethnic_background_c,
Gender_c
FROM calculate_avg_wellness_services_per_blue_red_covi AS a
GROUP BY
a.site_short,
wellness_avg_support,
Ethnic_background_c,
Gender_c
),
aggregate_kpis_data AS(
SELECT
a.site_short,
MAX(wellness_covi_assessment_completed_ay) AS wellness_covi_assessment_completed_ay,
wellness_avg_support,
MAX(sum_attended_wellness_sessions) AS sum_attended_wellness_sessions,
MAX(case_note_count) AS case_note_count,
MAX(sum_of_blue_red_covi_for_avg) AS sum_of_blue_red_covi_for_avg,
MAX(wellness_survey_wellness_services_assisted_denom) AS wellness_survey_wellness_services_assisted_denom,
MAX(wellness_survey_wellness_services_assisted_num) AS wellness_survey_wellness_services_assisted_num,
a.Ethnic_background_c,
a.Gender_c
FROM students_that_completed_covi AS a
LEFT JOIN aggregate_wellness_survey_data AS b ON b.site_short = a.site_short AND a.ethnic_background_c = b.ethnic_background_c AND a.Gender_c=b.Gender_c
LEFT JOIN prep_avg_wellness_services AS c ON c.site_short = a.site_short AND a.ethnic_background_c = c.ethnic_background_c AND a.Gender_c=c.Gender_c
LEFT JOIN gather_wellness_attendance_data AS d ON a.site_short = d.site_short AND a.ethnic_background_c = d.ethnic_background_c AND a.Gender_c=d.Gender_c--for total sessions
LEFT JOIN gather_case_note_data AS e ON a.site_short=e.site_short AND a.ethnic_background_c = e.ethnic_background_c AND a.Gender_c=e.Gender_c --for total case notes
LEFT JOIN sum_of_blue_red_covi AS f ON a.site_short=f.site_short AND a.ethnic_background_c = f.ethnic_background_c AND a.Gender_c=f.Gender_c --for stotal number of red/blue covi students
GROUP BY
site_short,
wellness_avg_support,
Ethnic_background_c,
Gender_c
)
SELECT *
FROM aggregate_kpis_data |
-- Script generated by com.jnj.gtsc.harmony.migration.script.migrate.MigrateAccessRightsScript
-- Script generated on 28/May/2013 00:12:48
-- Source = jdbc:oracle:thin:@hpxc83p05.ncsbe.eu.jnj.com:2666:PRDUX153
-- Set ampersand definitions off
set define off;
begin
-- Set larger dbms output buffer
-- DBMS_OUTPUT.ENABLE(1000000);
DBMS_OUTPUT.ENABLE(NULL);
-- Insert RoleToUserAssignments
-- Inserting RoleToUserAssignment 'GALVAREZ/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('GALVAREZ', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for GALVAREZ/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('GALVAREZ', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11667/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GALVAREZ', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11647/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GALVAREZ', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11626/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'GALVAREZ/H_TPP_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('GALVAREZ', 'H_TPP_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for GALVAREZ/H_TPP_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('GALVAREZ', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '326', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GALVAREZ', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '325', sysdate, null);
-- Inserting RoleToUserAssignment 'GBLOUKAS/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('GBLOUKAS', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for GBLOUKAS/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999838', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999810', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999745', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999659', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999458', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999307', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999187', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999181', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999178', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999175', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999173', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998984', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998973', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998972', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998962', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998911', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998907', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999459', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999481', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999495', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999497', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999504', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999534', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999607', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999608', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999610', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999650', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999652', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999654', sysdate, null);
-- Inserting RoleToUserAssignment 'GBLOUKAS/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('GBLOUKAS', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for GBLOUKAS/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999838', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999810', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999745', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999659', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999458', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999307', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999187', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999181', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999178', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999175', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999173', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998984', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998973', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998972', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998962', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998911', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998907', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999459', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999481', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999495', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999497', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999504', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999534', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999607', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999608', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999610', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999650', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999652', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999654', sysdate, null);
-- Inserting RoleToUserAssignment 'GBLOUKAS/H_EFS2_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('GBLOUKAS', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for GBLOUKAS/H_EFS2_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '704', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '697', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '684', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '677', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '664', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '550', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '468', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '451', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '450', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '434', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '432', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '431', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '430', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '427', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '426', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '396', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '358', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '356', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '584', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '599', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '600', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '601', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '602', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '603', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '604', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '623', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '638', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '645', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '646', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '648', sysdate, null);
-- Inserting RoleToUserAssignment 'GBLOUKAS/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('GBLOUKAS', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for GBLOUKAS/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[439/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[438/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11825/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11785/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11771/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11710/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11699/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11697/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11362/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11358/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11357/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11319/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11216/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11148/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11061/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11865/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[178/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[179/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[232/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[253/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[254/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[263/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[264/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[266/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[267/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[268/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[434/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'GBLOUKAS/H_NETTING_LOC_REP_TC'
harmony.usermgt.create_role_to_user_assignment('GBLOUKAS', 'H_NETTING_LOC_REP_TC', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for GBLOUKAS/H_NETTING_LOC_REP_TC
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[233/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'GBLOUKAS/H_TPP_LOC_REP'
harmony.usermgt.create_role_to_user_assignment('GBLOUKAS', 'H_TPP_LOC_REP', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for GBLOUKAS/H_TPP_LOC_REP
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '7', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '43', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '375', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '358', sysdate, null);
-- Inserting RoleToUserAssignment 'GBLOUKAS/H_TPP_P2P_OFFERMGT'
harmony.usermgt.create_role_to_user_assignment('GBLOUKAS', 'H_TPP_P2P_OFFERMGT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for GBLOUKAS/H_TPP_P2P_OFFERMGT
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'H_TPP_P2P_OFFERMGT', 'TPP AP2PLE OC', 'ONE', '99', sysdate, null);
-- Inserting RoleToUserAssignment 'GBLOUKAS/H_TPP_P2P_REPORT'
harmony.usermgt.create_role_to_user_assignment('GBLOUKAS', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for GBLOUKAS/H_TPP_P2P_REPORT
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '96', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '93', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '371', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '329', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '328', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '254', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '150', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '120', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GBLOUKAS', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '104', sysdate, null);
-- Inserting RoleToUserAssignment 'GBUTLER/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('GBUTLER', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for GBUTLER/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('GBUTLER', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999204', sysdate, null);
-- Inserting RoleToUserAssignment 'GBUTLER/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('GBUTLER', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for GBUTLER/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('GBUTLER', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999204', sysdate, null);
-- Inserting RoleToUserAssignment 'GBUTLER9/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('GBUTLER9', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for GBUTLER9/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('GBUTLER9', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999411', sysdate, null);
-- Inserting RoleToUserAssignment 'GBUTLER9/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('GBUTLER9', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for GBUTLER9/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('GBUTLER9', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999411', sysdate, null);
-- Inserting RoleToUserAssignment 'GBUTLER9/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('GBUTLER9', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for GBUTLER9/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('GBUTLER9', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[141/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'GDEFREI/BAM_MANAGER'
harmony.usermgt.create_role_to_user_assignment('GDEFREI', 'BAM_MANAGER', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for GDEFREI/BAM_MANAGER
harmony.usermgt.create_dds_item_assignment('GDEFREI', 'BAM_MANAGER', 'BAM Region', 'ONE', '3', sysdate, null);
-- Inserting RoleToUserAssignment 'GDEFREI/BAM_REPORTER'
harmony.usermgt.create_role_to_user_assignment('GDEFREI', 'BAM_REPORTER', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for GDEFREI/BAM_REPORTER
harmony.usermgt.create_dds_item_assignment('GDEFREI', 'BAM_REPORTER', 'BAM Region', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'GDEFREI/HERMES_CMEFF_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('GDEFREI', 'HERMES_CMEFF_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for GDEFREI/HERMES_CMEFF_REP_CTR
harmony.usermgt.create_dds_item_assignment('GDEFREI', 'HERMES_CMEFF_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'GDEFREI/HERMES_GRP_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('GDEFREI', 'HERMES_GRP_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for GDEFREI/HERMES_GRP_REP_CTR
harmony.usermgt.create_dds_item_assignment('GDEFREI', 'HERMES_GRP_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'GDEFREI/HERMES_STAT_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('GDEFREI', 'HERMES_STAT_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for GDEFREI/HERMES_STAT_REP_CTR
harmony.usermgt.create_dds_item_assignment('GDEFREI', 'HERMES_STAT_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'GDEFREI/HERMES_STS_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('GDEFREI', 'HERMES_STS_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for GDEFREI/HERMES_STS_REP_CTR
harmony.usermgt.create_dds_item_assignment('GDEFREI', 'HERMES_STS_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'GDEFREI/HERMES_SYM_REC_CTR'
harmony.usermgt.create_role_to_user_assignment('GDEFREI', 'HERMES_SYM_REC_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for GDEFREI/HERMES_SYM_REC_CTR
harmony.usermgt.create_dds_item_assignment('GDEFREI', 'HERMES_SYM_REC_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'GDEFREI/HERMES_TXN_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('GDEFREI', 'HERMES_TXN_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for GDEFREI/HERMES_TXN_REP_CTR
harmony.usermgt.create_dds_item_assignment('GDEFREI', 'HERMES_TXN_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'GDEFREI/HERMES_VAVO_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('GDEFREI', 'HERMES_VAVO_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for GDEFREI/HERMES_VAVO_REP_CTR
harmony.usermgt.create_dds_item_assignment('GDEFREI', 'HERMES_VAVO_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'GDEFREI/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('GDEFREI', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for GDEFREI/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('GDEFREI', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11100/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GDEFREI', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11085/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'GDEFREI/H_SWIFTCOM_REPORTER'
harmony.usermgt.create_role_to_user_assignment('GDEFREI', 'H_SWIFTCOM_REPORTER', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for GDEFREI/H_SWIFTCOM_REPORTER
harmony.usermgt.create_dds_item_assignment('GDEFREI', 'H_SWIFTCOM_REPORTER', 'SWIFTCOM FM Source', 'ONE', '13', sysdate, null);
-- Inserting RoleToUserAssignment 'GDURAN10/H_EFS2_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('GDURAN10', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for GDURAN10/H_EFS2_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('GDURAN10', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '558', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GDURAN10', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '552', sysdate, null);
-- Inserting RoleToUserAssignment 'GEYER1/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('GEYER1', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for GEYER1/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('GEYER1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999654', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GEYER1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999458', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GEYER1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998973', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GEYER1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998972', sysdate, null);
-- Inserting RoleToUserAssignment 'GEYER1/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('GEYER1', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for GEYER1/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('GEYER1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999654', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GEYER1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999458', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GEYER1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998973', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GEYER1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998972', sysdate, null);
-- Inserting RoleToUserAssignment 'GEYER1/H_EFS2_LOC_REP_PARTY'
harmony.usermgt.create_role_to_user_assignment('GEYER1', 'H_EFS2_LOC_REP_PARTY', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for GEYER1/H_EFS2_LOC_REP_PARTY
harmony.usermgt.create_dds_item_assignment('GEYER1', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '623', sysdate, null);
-- Inserting RoleToUserAssignment 'GEYER1/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('GEYER1', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for GEYER1/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('GEYER1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[439/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GEYER1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11699/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GEYER1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11697/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'GEYER1/H_TPP_LOC_REP'
harmony.usermgt.create_role_to_user_assignment('GEYER1', 'H_TPP_LOC_REP', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for GEYER1/H_TPP_LOC_REP
harmony.usermgt.create_dds_item_assignment('GEYER1', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '71', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GEYER1', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '6', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GEYER1', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '14', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GEYER1', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '13', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GEYER1', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '12', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GEYER1', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '11', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GEYER1', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '10', sysdate, null);
-- Inserting RoleToUserAssignment 'GGREANEY/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('GGREANEY', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for GGREANEY/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('GGREANEY', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999713', sysdate, null);
-- Inserting RoleToUserAssignment 'GGREANEY/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('GGREANEY', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for GGREANEY/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('GGREANEY', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999713', sysdate, null);
-- Inserting RoleToUserAssignment 'GGREANEY/H_EFS2_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('GGREANEY', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for GGREANEY/H_EFS2_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('GGREANEY', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '266', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GGREANEY', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '265', sysdate, null);
-- Inserting RoleToUserAssignment 'GGREANEY/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('GGREANEY', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for GGREANEY/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('GGREANEY', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[58/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'GGROBORZ/H_TPP_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('GGROBORZ', 'H_TPP_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for GGROBORZ/H_TPP_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('GGROBORZ', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '23', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GGROBORZ', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '22', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GGROBORZ', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '21', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GGROBORZ', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '19', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GGROBORZ', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '18', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GGROBORZ', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '17', sysdate, null);
-- Inserting RoleToUserAssignment 'GHADOC/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('GHADOC', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for GHADOC/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('GHADOC', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999714', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GHADOC', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999640', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GHADOC', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999426', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GHADOC', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999382', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GHADOC', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999364', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GHADOC', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999326', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GHADOC', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999111', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GHADOC', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998966', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GHADOC', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '200010', sysdate, null);
-- Inserting RoleToUserAssignment 'GHADOC/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('GHADOC', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for GHADOC/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('GHADOC', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999745', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GHADOC', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999714', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GHADOC', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999382', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GHADOC', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999364', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GHADOC', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999326', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GHADOC', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999111', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GHADOC', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998973', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GHADOC', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998966', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GHADOC', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '200010', sysdate, null);
-- Inserting RoleToUserAssignment 'GHADOC/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('GHADOC', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for GHADOC/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('GHADOC', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[140/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GHADOC', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[131/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GHADOC', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[130/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GHADOC', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[129/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GHADOC', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[128/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GHADOC', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11661/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GHADOC', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11566/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GHADOC', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11536/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GHADOC', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11342/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'GHADOC/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('GHADOC', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for GHADOC/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('GHADOC', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[140/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GHADOC', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11566/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'GHADOC/H_TPP_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('GHADOC', 'H_TPP_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for GHADOC/H_TPP_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('GHADOC', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '54', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GHADOC', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '361', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GHADOC', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '29', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GHADOC', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '147', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GHADOC', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '14', sysdate, null);
-- Inserting RoleToUserAssignment 'GHADOC/H_TPP_LOC_REP'
harmony.usermgt.create_role_to_user_assignment('GHADOC', 'H_TPP_LOC_REP', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for GHADOC/H_TPP_LOC_REP
harmony.usermgt.create_dds_item_assignment('GHADOC', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '71', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GHADOC', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '65', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GHADOC', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '233', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GHADOC', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '13', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GHADOC', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '12', sysdate, null);
-- Inserting RoleToUserAssignment 'GHADOC/H_TPP_P2P_OFFERMGT'
harmony.usermgt.create_role_to_user_assignment('GHADOC', 'H_TPP_P2P_OFFERMGT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for GHADOC/H_TPP_P2P_OFFERMGT
harmony.usermgt.create_dds_item_assignment('GHADOC', 'H_TPP_P2P_OFFERMGT', 'TPP AP2PLE OC', 'ONE', '278', sysdate, null);
-- Inserting RoleToUserAssignment 'GHADOC/H_TPP_P2P_REPORT'
harmony.usermgt.create_role_to_user_assignment('GHADOC', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for GHADOC/H_TPP_P2P_REPORT
harmony.usermgt.create_dds_item_assignment('GHADOC', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '343', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GHADOC', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '302', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GHADOC', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '192', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GHADOC', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '186', sysdate, null);
-- Inserting RoleToUserAssignment 'GKADLER/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('GKADLER', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for GKADLER/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('GKADLER', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11285/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GKADLER', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11281/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GKADLER', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11280/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'GKASLOVA/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('GKASLOVA', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for GKASLOVA/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('GKASLOVA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999831', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GKASLOVA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999714', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GKASLOVA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999711', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GKASLOVA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999484', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GKASLOVA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999471', sysdate, null);
-- Inserting RoleToUserAssignment 'GKASLOVA/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('GKASLOVA', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for GKASLOVA/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('GKASLOVA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999831', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GKASLOVA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999714', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GKASLOVA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999711', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GKASLOVA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999484', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GKASLOVA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999471', sysdate, null);
-- Inserting RoleToUserAssignment 'GKASLOVA/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('GKASLOVA', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for GKASLOVA/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('GKASLOVA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11562/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'GKASLOVA/H_TPP_P2P_OFFERMGT'
harmony.usermgt.create_role_to_user_assignment('GKASLOVA', 'H_TPP_P2P_OFFERMGT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for GKASLOVA/H_TPP_P2P_OFFERMGT
harmony.usermgt.create_dds_item_assignment('GKASLOVA', 'H_TPP_P2P_OFFERMGT', 'TPP AP2PLE OC', 'ONE', '271', sysdate, null);
-- Inserting RoleToUserAssignment 'GKIRKWOO/H_TPP_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('GKIRKWOO', 'H_TPP_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for GKIRKWOO/H_TPP_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('GKIRKWOO', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '40', sysdate, null);
-- Inserting RoleToUserAssignment 'GLEE7/H_EFS2_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('GLEE7', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for GLEE7/H_EFS2_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('GLEE7', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '286', sysdate, null);
-- Inserting RoleToUserAssignment 'GNARDO2/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('GNARDO2', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for GNARDO2/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('GNARDO2', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999662', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GNARDO2', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999203', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GNARDO2', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998979', sysdate, null);
-- Inserting RoleToUserAssignment 'GNARDO2/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('GNARDO2', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for GNARDO2/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('GNARDO2', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999662', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GNARDO2', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999203', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GNARDO2', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998979', sysdate, null);
-- Inserting RoleToUserAssignment 'GNEMETH/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('GNEMETH', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for GNEMETH/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('GNEMETH', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999881', sysdate, null);
-- Inserting RoleToUserAssignment 'GNEMETH/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('GNEMETH', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for GNEMETH/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('GNEMETH', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999881', sysdate, null);
-- Inserting RoleToUserAssignment 'GNEMETH/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('GNEMETH', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for GNEMETH/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('GNEMETH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11070/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'GNOURIAN/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('GNOURIAN', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for GNOURIAN/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('GNOURIAN', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[218/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'GPUTTAER/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('GPUTTAER', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for GPUTTAER/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('GPUTTAER', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999644', sysdate, null);
-- Inserting RoleToUserAssignment 'GPUTTAER/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('GPUTTAER', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for GPUTTAER/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('GPUTTAER', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999644', sysdate, null);
-- Inserting RoleToUserAssignment 'GPUTTAER/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('GPUTTAER', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for GPUTTAER/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('GPUTTAER', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[94/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'GPUTTAER/H_TPP_P2P_REPORT'
harmony.usermgt.create_role_to_user_assignment('GPUTTAER', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for GPUTTAER/H_TPP_P2P_REPORT
harmony.usermgt.create_dds_item_assignment('GPUTTAER', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '124', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GPUTTAER', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '123', sysdate, null);
-- Inserting RoleToUserAssignment 'GRIVERA5/H_EFS2_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('GRIVERA5', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for GRIVERA5/H_EFS2_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('GRIVERA5', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '706', sysdate, null);
-- Inserting RoleToUserAssignment 'GRIVERA5/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('GRIVERA5', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for GRIVERA5/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('GRIVERA5', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[33/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GRIVERA5', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[282/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GRIVERA5', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11361/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'GROLLI/H_EFS2_LOC_REP_PARTY'
harmony.usermgt.create_role_to_user_assignment('GROLLI', 'H_EFS2_LOC_REP_PARTY', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for GROLLI/H_EFS2_LOC_REP_PARTY
harmony.usermgt.create_dds_item_assignment('GROLLI', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '664', sysdate, null);
-- Inserting RoleToUserAssignment 'GROMAN/H_EFS2_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('GROMAN', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for GROMAN/H_EFS2_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('GROMAN', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '656', sysdate, null);
-- Inserting RoleToUserAssignment 'GROMAN/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('GROMAN', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for GROMAN/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('GROMAN', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[284/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'GSALA/H_EFS2_LOC_REP_PARTY'
harmony.usermgt.create_role_to_user_assignment('GSALA', 'H_EFS2_LOC_REP_PARTY', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for GSALA/H_EFS2_LOC_REP_PARTY
harmony.usermgt.create_dds_item_assignment('GSALA', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '527', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GSALA', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '406', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GSALA', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '402', sysdate, null);
-- Inserting RoleToUserAssignment 'GSALA/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('GSALA', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for GSALA/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('GSALA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11336/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'GSOMBLIN/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('GSOMBLIN', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for GSOMBLIN/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('GSOMBLIN', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[416/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GSOMBLIN', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[415/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GSOMBLIN', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[408/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GSOMBLIN', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[158/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GSOMBLIN', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11412/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'GSTOREY/H_EFS2_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('GSTOREY', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for GSTOREY/H_EFS2_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('GSTOREY', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '617', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GSTOREY', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '563', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GSTOREY', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '521', sysdate, null);
-- Inserting RoleToUserAssignment 'GTRZCINS/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('GTRZCINS', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for GTRZCINS/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('GTRZCINS', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[84/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GTRZCINS', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[423/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'GTSAI/H_EFS2_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('GTSAI', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for GTSAI/H_EFS2_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('GTSAI', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '391', sysdate, null);
-- Inserting RoleToUserAssignment 'GTURCO2/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('GTURCO2', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for GTURCO2/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('GTURCO2', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999427', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GTURCO2', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999183', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GTURCO2', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999182', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GTURCO2', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999006', sysdate, null);
-- Inserting RoleToUserAssignment 'GTURCO2/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('GTURCO2', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for GTURCO2/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('GTURCO2', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999427', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GTURCO2', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999183', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GTURCO2', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999182', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GTURCO2', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999006', sysdate, null);
-- Inserting RoleToUserAssignment 'GVALTE/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('GVALTE', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for GVALTE/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('GVALTE', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[74/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GVALTE', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[67/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GVALTE', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[59/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GVALTE', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11766/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GVALTE', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11426/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GVALTE', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11422/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GVALTE', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11353/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'GVANDEWA/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('GVANDEWA', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for GVANDEWA/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('GVANDEWA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998970', sysdate, null);
-- Inserting RoleToUserAssignment 'GVANDEWA/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('GVANDEWA', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for GVANDEWA/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('GVANDEWA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998970', sysdate, null);
-- Inserting RoleToUserAssignment 'GVANDEWA/H_EFS2_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('GVANDEWA', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for GVANDEWA/H_EFS2_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('GVANDEWA', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '651', sysdate, null);
-- Inserting RoleToUserAssignment 'GVANDEWA/H_EFS2_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('GVANDEWA', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for GVANDEWA/H_EFS2_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('GVANDEWA', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '651', sysdate, null);
-- Inserting RoleToUserAssignment 'GVANDEWA/H_TPP_P2P_REPORT'
harmony.usermgt.create_role_to_user_assignment('GVANDEWA', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for GVANDEWA/H_TPP_P2P_REPORT
harmony.usermgt.create_dds_item_assignment('GVANDEWA', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '366', sysdate, null);
-- Inserting RoleToUserAssignment 'GVANOTTI/H_EFS2_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('GVANOTTI', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for GVANOTTI/H_EFS2_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('GVANOTTI', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '684', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GVANOTTI', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '648', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GVANOTTI', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '646', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GVANOTTI', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '645', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GVANOTTI', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '638', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GVANOTTI', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '584', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GVANOTTI', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '550', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GVANOTTI', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '468', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GVANOTTI', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '451', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GVANOTTI', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '396', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GVANOTTI', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '358', sysdate, null);
-- Inserting RoleToUserAssignment 'GVOS/BAM_REPORTER'
harmony.usermgt.create_role_to_user_assignment('GVOS', 'BAM_REPORTER', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for GVOS/BAM_REPORTER
harmony.usermgt.create_dds_item_assignment('GVOS', 'BAM_REPORTER', 'BAM Region', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'GVOS/HB_FM_COMBI_VIEW'
harmony.usermgt.create_role_to_user_assignment('GVOS', 'HB_FM_COMBI_VIEW', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'GVOS/HERMES_IM_SUPPORT'
harmony.usermgt.create_role_to_user_assignment('GVOS', 'HERMES_IM_SUPPORT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for GVOS/HERMES_IM_SUPPORT
harmony.usermgt.create_dds_item_assignment('GVOS', 'HERMES_IM_SUPPORT', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'GVOS/H_CHAINS_IM_SUPPORT'
harmony.usermgt.create_role_to_user_assignment('GVOS', 'H_CHAINS_IM_SUPPORT', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'GVOS/H_DLINK_IM_SUPPORT'
harmony.usermgt.create_role_to_user_assignment('GVOS', 'H_DLINK_IM_SUPPORT', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'GVOS/H_EFS2_IM_SUPPORT'
harmony.usermgt.create_role_to_user_assignment('GVOS', 'H_EFS2_IM_SUPPORT', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'GVOS/H_GXRS_IM_SUPPORT'
harmony.usermgt.create_role_to_user_assignment('GVOS', 'H_GXRS_IM_SUPPORT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for GVOS/H_GXRS_IM_SUPPORT
harmony.usermgt.create_dds_item_assignment('GVOS', 'H_GXRS_IM_SUPPORT', 'GXRS instructing accounts in ART', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'GVOS/H_P2P_IM_SUPPORT'
harmony.usermgt.create_role_to_user_assignment('GVOS', 'H_P2P_IM_SUPPORT', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'GVOS/H_SWIFTCOM_IM_SUP'
harmony.usermgt.create_role_to_user_assignment('GVOS', 'H_SWIFTCOM_IM_SUP', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for GVOS/H_SWIFTCOM_IM_SUP
harmony.usermgt.create_dds_item_assignment('GVOS', 'H_SWIFTCOM_IM_SUP', 'SWIFTCOM FM Source', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'GVOS/H_TOPS_IM_SUPPORT'
harmony.usermgt.create_role_to_user_assignment('GVOS', 'H_TOPS_IM_SUPPORT', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'GVOS/H_TPP_IM_SUPPORT'
harmony.usermgt.create_role_to_user_assignment('GVOS', 'H_TPP_IM_SUPPORT', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'GWONG1/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('GWONG1', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for GWONG1/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('GWONG1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999783', sysdate, null);
-- Inserting RoleToUserAssignment 'GWONG1/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('GWONG1', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for GWONG1/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('GWONG1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999783', sysdate, null);
-- Inserting RoleToUserAssignment 'GWONG1/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('GWONG1', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for GWONG1/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('GWONG1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11666/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'GWOUTERS/H_EFS2_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('GWOUTERS', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for GWOUTERS/H_EFS2_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('GWOUTERS', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '618', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GWOUTERS', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '459', sysdate, null);
-- Inserting RoleToUserAssignment 'GWOUTERS/H_EFS2_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('GWOUTERS', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for GWOUTERS/H_EFS2_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('GWOUTERS', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '647', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GWOUTERS', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '618', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GWOUTERS', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '473', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GWOUTERS', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '459', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GWOUTERS', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '453', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GWOUTERS', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '452', sysdate, null);
harmony.usermgt.create_dds_item_assignment('GWOUTERS', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '361', sysdate, null);
-- Inserting RoleToUserAssignment 'HAEDO/H_EFS2_LOC_REP_PARTY'
harmony.usermgt.create_role_to_user_assignment('HAEDO', 'H_EFS2_LOC_REP_PARTY', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for HAEDO/H_EFS2_LOC_REP_PARTY
harmony.usermgt.create_dds_item_assignment('HAEDO', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '527', sysdate, null);
-- Inserting RoleToUserAssignment 'HBROUWER/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('HBROUWER', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for HBROUWER/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('HBROUWER', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998911', sysdate, null);
-- Inserting RoleToUserAssignment 'HBROUWER/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('HBROUWER', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for HBROUWER/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('HBROUWER', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998911', sysdate, null);
-- Inserting RoleToUserAssignment 'HBROUWER/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('HBROUWER', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for HBROUWER/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('HBROUWER', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11917/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('HBROUWER', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11818/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'HCHEN/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('HCHEN', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for HCHEN/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('HCHEN', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[123/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'HDETZ/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('HDETZ', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for HDETZ/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('HDETZ', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999042', sysdate, null);
harmony.usermgt.create_dds_item_assignment('HDETZ', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999041', sysdate, null);
harmony.usermgt.create_dds_item_assignment('HDETZ', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '100062', sysdate, null);
-- Inserting RoleToUserAssignment 'HDETZ/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('HDETZ', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for HDETZ/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('HDETZ', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999042', sysdate, null);
harmony.usermgt.create_dds_item_assignment('HDETZ', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999041', sysdate, null);
harmony.usermgt.create_dds_item_assignment('HDETZ', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '100062', sysdate, null);
-- Inserting RoleToUserAssignment 'HDETZ/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('HDETZ', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for HDETZ/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('HDETZ', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[244/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'HDETZ/H_TPP_P2P_REPORT'
harmony.usermgt.create_role_to_user_assignment('HDETZ', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for HDETZ/H_TPP_P2P_REPORT
harmony.usermgt.create_dds_item_assignment('HDETZ', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '287', sysdate, null);
harmony.usermgt.create_dds_item_assignment('HDETZ', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '286', sysdate, null);
harmony.usermgt.create_dds_item_assignment('HDETZ', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '102', sysdate, null);
harmony.usermgt.create_dds_item_assignment('HDETZ', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '101', sysdate, null);
harmony.usermgt.create_dds_item_assignment('HDETZ', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '100', sysdate, null);
-- Inserting RoleToUserAssignment 'HDONG5/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('HDONG5', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for HDONG5/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('HDONG5', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[123/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'HGAFVERT/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('HGAFVERT', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for HGAFVERT/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('HGAFVERT', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999846', sysdate, null);
harmony.usermgt.create_dds_item_assignment('HGAFVERT', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999840', sysdate, null);
harmony.usermgt.create_dds_item_assignment('HGAFVERT', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999839', sysdate, null);
harmony.usermgt.create_dds_item_assignment('HGAFVERT', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999536', sysdate, null);
harmony.usermgt.create_dds_item_assignment('HGAFVERT', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999361', sysdate, null);
-- Inserting RoleToUserAssignment 'HGAFVERT/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('HGAFVERT', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for HGAFVERT/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('HGAFVERT', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999846', sysdate, null);
harmony.usermgt.create_dds_item_assignment('HGAFVERT', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999840', sysdate, null);
harmony.usermgt.create_dds_item_assignment('HGAFVERT', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999839', sysdate, null);
harmony.usermgt.create_dds_item_assignment('HGAFVERT', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999536', sysdate, null);
harmony.usermgt.create_dds_item_assignment('HGAFVERT', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999361', sysdate, null);
-- Inserting RoleToUserAssignment 'HGAFVERT/H_TPP_P2P_OFFERMGT'
harmony.usermgt.create_role_to_user_assignment('HGAFVERT', 'H_TPP_P2P_OFFERMGT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for HGAFVERT/H_TPP_P2P_OFFERMGT
harmony.usermgt.create_dds_item_assignment('HGAFVERT', 'H_TPP_P2P_OFFERMGT', 'TPP AP2PLE OC', 'ONE', '187', sysdate, null);
-- Inserting RoleToUserAssignment 'HGALEANA/H_EFS2_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('HGALEANA', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for HGALEANA/H_EFS2_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('HGALEANA', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '335', sysdate, null);
-- Inserting RoleToUserAssignment 'HGALEANA/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('HGALEANA', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for HGALEANA/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('HGALEANA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[211/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'HGALEANA/H_TPP_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('HGALEANA', 'H_TPP_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for HGALEANA/H_TPP_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('HGALEANA', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '53', sysdate, null);
-- Inserting RoleToUserAssignment 'HGOH2/H_EFS2_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('HGOH2', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for HGOH2/H_EFS2_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('HGOH2', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '640', sysdate, null);
-- Inserting RoleToUserAssignment 'HGOH2/H_TPP_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('HGOH2', 'H_TPP_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for HGOH2/H_TPP_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('HGOH2', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '304', sysdate, null);
-- Inserting RoleToUserAssignment 'HHONG1/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('HHONG1', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for HHONG1/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('HHONG1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[435/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('HHONG1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[427/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('HHONG1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[421/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('HHONG1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[413/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('HHONG1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[412/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('HHONG1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11102/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('HHONG1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11072/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'HHWANG7/H_EFS2_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('HHWANG7', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for HHWANG7/H_EFS2_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('HHWANG7', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '425', sysdate, null);
-- Inserting RoleToUserAssignment 'HKIM/H_EFS2_LOC_REP_PARTY'
harmony.usermgt.create_role_to_user_assignment('HKIM', 'H_EFS2_LOC_REP_PARTY', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for HKIM/H_EFS2_LOC_REP_PARTY
harmony.usermgt.create_dds_item_assignment('HKIM', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '286', sysdate, null);
-- Inserting RoleToUserAssignment 'HKIM120/H_EFS2_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('HKIM120', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for HKIM120/H_EFS2_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('HKIM120', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '688', sysdate, null);
-- Inserting RoleToUserAssignment 'HKIM56/H_EFS2_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('HKIM56', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for HKIM56/H_EFS2_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('HKIM56', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '688', sysdate, null);
-- Inserting RoleToUserAssignment 'HKOELEWI/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('HKOELEWI', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for HKOELEWI/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('HKOELEWI', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999863', sysdate, null);
-- Inserting RoleToUserAssignment 'HKOELEWI/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('HKOELEWI', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for HKOELEWI/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('HKOELEWI', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999863', sysdate, null);
-- Inserting RoleToUserAssignment 'HLANGE/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('HLANGE', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for HLANGE/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('HLANGE', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999141', sysdate, null);
-- Inserting RoleToUserAssignment 'HLANGE/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('HLANGE', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for HLANGE/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('HLANGE', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999141', sysdate, null);
-- Inserting RoleToUserAssignment 'HLANGE/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('HLANGE', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for HLANGE/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('HLANGE', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[156/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'HLANGE/H_TPP_P2P_REPORT'
harmony.usermgt.create_role_to_user_assignment('HLANGE', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for HLANGE/H_TPP_P2P_REPORT
harmony.usermgt.create_dds_item_assignment('HLANGE', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '148', sysdate, null);
-- Inserting RoleToUserAssignment 'HLEE10/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('HLEE10', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for HLEE10/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('HLEE10', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11412/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'HLEE72/H_EFS2_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('HLEE72', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for HLEE72/H_EFS2_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('HLEE72', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '688', sysdate, null);
harmony.usermgt.create_dds_item_assignment('HLEE72', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '312', sysdate, null);
-- Inserting RoleToUserAssignment 'HLHEN/H_EFS2_LOC_REP_PARTY'
harmony.usermgt.create_role_to_user_assignment('HLHEN', 'H_EFS2_LOC_REP_PARTY', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for HLHEN/H_EFS2_LOC_REP_PARTY
harmony.usermgt.create_dds_item_assignment('HLHEN', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '655', sysdate, null);
-- Inserting RoleToUserAssignment 'HLI46/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('HLI46', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for HLI46/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('HLI46', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[5001/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'HLI60/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('HLI60', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for HLI60/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('HLI60', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999869', sysdate, null);
harmony.usermgt.create_dds_item_assignment('HLI60', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999708', sysdate, null);
harmony.usermgt.create_dds_item_assignment('HLI60', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999707', sysdate, null);
harmony.usermgt.create_dds_item_assignment('HLI60', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999706', sysdate, null);
harmony.usermgt.create_dds_item_assignment('HLI60', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999705', sysdate, null);
harmony.usermgt.create_dds_item_assignment('HLI60', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999089', sysdate, null);
harmony.usermgt.create_dds_item_assignment('HLI60', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998960', sysdate, null);
-- Inserting RoleToUserAssignment 'HLI60/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('HLI60', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for HLI60/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('HLI60', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999869', sysdate, null);
harmony.usermgt.create_dds_item_assignment('HLI60', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999708', sysdate, null);
harmony.usermgt.create_dds_item_assignment('HLI60', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999707', sysdate, null);
harmony.usermgt.create_dds_item_assignment('HLI60', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999706', sysdate, null);
harmony.usermgt.create_dds_item_assignment('HLI60', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999705', sysdate, null);
harmony.usermgt.create_dds_item_assignment('HLI60', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999089', sysdate, null);
harmony.usermgt.create_dds_item_assignment('HLI60', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998960', sysdate, null);
-- Inserting RoleToUserAssignment 'HLI60/H_TPP_LOC_REP'
harmony.usermgt.create_role_to_user_assignment('HLI60', 'H_TPP_LOC_REP', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for HLI60/H_TPP_LOC_REP
harmony.usermgt.create_dds_item_assignment('HLI60', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '49', sysdate, null);
harmony.usermgt.create_dds_item_assignment('HLI60', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '48', sysdate, null);
harmony.usermgt.create_dds_item_assignment('HLI60', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '32', sysdate, null);
harmony.usermgt.create_dds_item_assignment('HLI60', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '31', sysdate, null);
-- Inserting RoleToUserAssignment 'HLIU28/H_EFS2_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('HLIU28', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for HLIU28/H_EFS2_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('HLIU28', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '650', sysdate, null);
-- Inserting RoleToUserAssignment 'HLIU48/H_EFS2_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('HLIU48', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for HLIU48/H_EFS2_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('HLIU48', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '542', sysdate, null);
-- Inserting RoleToUserAssignment 'HMEIJER/H_EFS2_LOC_REP_PARTY'
harmony.usermgt.create_role_to_user_assignment('HMEIJER', 'H_EFS2_LOC_REP_PARTY', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for HMEIJER/H_EFS2_LOC_REP_PARTY
harmony.usermgt.create_dds_item_assignment('HMEIJER', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '584', sysdate, null);
harmony.usermgt.create_dds_item_assignment('HMEIJER', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '358', sysdate, null);
-- Inserting RoleToUserAssignment 'HMEIJERI/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('HMEIJERI', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for HMEIJERI/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('HMEIJERI', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999456', sysdate, null);
harmony.usermgt.create_dds_item_assignment('HMEIJERI', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999455', sysdate, null);
harmony.usermgt.create_dds_item_assignment('HMEIJERI', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999082', sysdate, null);
-- Inserting RoleToUserAssignment 'HMEIJERI/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('HMEIJERI', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for HMEIJERI/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('HMEIJERI', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999456', sysdate, null);
harmony.usermgt.create_dds_item_assignment('HMEIJERI', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999455', sysdate, null);
harmony.usermgt.create_dds_item_assignment('HMEIJERI', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999082', sysdate, null);
-- Inserting RoleToUserAssignment 'HMEIJERI/H_EFS2_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('HMEIJERI', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for HMEIJERI/H_EFS2_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('HMEIJERI', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '593', sysdate, null);
-- Inserting RoleToUserAssignment 'HMEIJERI/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('HMEIJERI', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for HMEIJERI/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('HMEIJERI', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11870/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('HMEIJERI', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11868/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'HMEIJERI/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('HMEIJERI', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for HMEIJERI/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('HMEIJERI', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[276/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('HMEIJERI', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11870/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('HMEIJERI', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11868/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'HMEIJERI/H_TPP_P2P_OFFERAUTH'
harmony.usermgt.create_role_to_user_assignment('HMEIJERI', 'H_TPP_P2P_OFFERAUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for HMEIJERI/H_TPP_P2P_OFFERAUTH
harmony.usermgt.create_dds_item_assignment('HMEIJERI', 'H_TPP_P2P_OFFERAUTH', 'TPP AP2PLE OC', 'ONE', '255', sysdate, null);
-- Inserting RoleToUserAssignment 'HMEIJERI/H_TPP_P2P_REPORT'
harmony.usermgt.create_role_to_user_assignment('HMEIJERI', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for HMEIJERI/H_TPP_P2P_REPORT
harmony.usermgt.create_dds_item_assignment('HMEIJERI', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '98', sysdate, null);
-- Inserting RoleToUserAssignment 'HMOHAMED/H_EFS2_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('HMOHAMED', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for HMOHAMED/H_EFS2_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('HMOHAMED', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '413', sysdate, null);
-- Inserting RoleToUserAssignment 'HMOHAMED/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('HMOHAMED', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for HMOHAMED/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('HMOHAMED', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[166/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'HNAAS/H_TPP_P2P_OFFERAUTH'
harmony.usermgt.create_role_to_user_assignment('HNAAS', 'H_TPP_P2P_OFFERAUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for HNAAS/H_TPP_P2P_OFFERAUTH
harmony.usermgt.create_dds_item_assignment('HNAAS', 'H_TPP_P2P_OFFERAUTH', 'TPP AP2PLE OC', 'ONE', '190', sysdate, null);
harmony.usermgt.create_dds_item_assignment('HNAAS', 'H_TPP_P2P_OFFERAUTH', 'TPP AP2PLE OC', 'ONE', '187', sysdate, null);
-- Inserting RoleToUserAssignment 'HNIJJAR/H_TPP_P2P_REPORT'
harmony.usermgt.create_role_to_user_assignment('HNIJJAR', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for HNIJJAR/H_TPP_P2P_REPORT
harmony.usermgt.create_dds_item_assignment('HNIJJAR', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '109', sysdate, null);
-- Inserting RoleToUserAssignment 'HNOUCHI/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('HNOUCHI', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for HNOUCHI/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('HNOUCHI', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999707', sysdate, null);
harmony.usermgt.create_dds_item_assignment('HNOUCHI', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999706', sysdate, null);
harmony.usermgt.create_dds_item_assignment('HNOUCHI', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998960', sysdate, null);
-- Inserting RoleToUserAssignment 'HNOUCHI/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('HNOUCHI', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for HNOUCHI/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('HNOUCHI', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999707', sysdate, null);
harmony.usermgt.create_dds_item_assignment('HNOUCHI', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999706', sysdate, null);
harmony.usermgt.create_dds_item_assignment('HNOUCHI', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998960', sysdate, null);
-- Inserting RoleToUserAssignment 'HNOUCHI/H_EFS2_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('HNOUCHI', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for HNOUCHI/H_EFS2_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('HNOUCHI', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '344', sysdate, null);
-- Inserting RoleToUserAssignment 'HNOUCHI/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('HNOUCHI', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for HNOUCHI/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('HNOUCHI', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[432/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('HNOUCHI', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11750/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'HNOUCHI/H_TPP_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('HNOUCHI', 'H_TPP_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for HNOUCHI/H_TPP_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('HNOUCHI', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '48', sysdate, null);
harmony.usermgt.create_dds_item_assignment('HNOUCHI', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '32', sysdate, null);
-- Inserting RoleToUserAssignment 'HNOUCHI/H_TPP_P2P_REPORT'
harmony.usermgt.create_role_to_user_assignment('HNOUCHI', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for HNOUCHI/H_TPP_P2P_REPORT
harmony.usermgt.create_dds_item_assignment('HNOUCHI', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '349', sysdate, null);
harmony.usermgt.create_dds_item_assignment('HNOUCHI', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '346', sysdate, null);
-- Inserting RoleToUserAssignment 'HNUQUI/H_EFS2_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('HNUQUI', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for HNUQUI/H_EFS2_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('HNUQUI', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '620', sysdate, null);
-- Inserting RoleToUserAssignment 'HNUQUI/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('HNUQUI', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for HNUQUI/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('HNUQUI', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11623/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'HPEETERA/BAM_REPORTER'
harmony.usermgt.create_role_to_user_assignment('HPEETERA', 'BAM_REPORTER', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for HPEETERA/BAM_REPORTER
harmony.usermgt.create_dds_item_assignment('HPEETERA', 'BAM_REPORTER', 'BAM Region', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'HPEETERA/HB_FM_COMBI_REQUEST'
harmony.usermgt.create_role_to_user_assignment('HPEETERA', 'HB_FM_COMBI_REQUEST', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'HPEETERA/HERMES_CMEFF_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('HPEETERA', 'HERMES_CMEFF_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for HPEETERA/HERMES_CMEFF_REP_CTR
harmony.usermgt.create_dds_item_assignment('HPEETERA', 'HERMES_CMEFF_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'HPEETERA/HERMES_GRP_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('HPEETERA', 'HERMES_GRP_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for HPEETERA/HERMES_GRP_REP_CTR
harmony.usermgt.create_dds_item_assignment('HPEETERA', 'HERMES_GRP_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'HPEETERA/HERMES_IDTXN_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('HPEETERA', 'HERMES_IDTXN_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for HPEETERA/HERMES_IDTXN_REP_CTR
harmony.usermgt.create_dds_item_assignment('HPEETERA', 'HERMES_IDTXN_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'HPEETERA/HERMES_STAT_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('HPEETERA', 'HERMES_STAT_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for HPEETERA/HERMES_STAT_REP_CTR
harmony.usermgt.create_dds_item_assignment('HPEETERA', 'HERMES_STAT_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'HPEETERA/HERMES_STS_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('HPEETERA', 'HERMES_STS_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for HPEETERA/HERMES_STS_REP_CTR
harmony.usermgt.create_dds_item_assignment('HPEETERA', 'HERMES_STS_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'HPEETERA/HERMES_SYM_REC_CTR'
harmony.usermgt.create_role_to_user_assignment('HPEETERA', 'HERMES_SYM_REC_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for HPEETERA/HERMES_SYM_REC_CTR
harmony.usermgt.create_dds_item_assignment('HPEETERA', 'HERMES_SYM_REC_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'HPEETERA/HERMES_TXN_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('HPEETERA', 'HERMES_TXN_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for HPEETERA/HERMES_TXN_REP_CTR
harmony.usermgt.create_dds_item_assignment('HPEETERA', 'HERMES_TXN_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'HPEETERA/HERMES_VAVO_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('HPEETERA', 'HERMES_VAVO_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for HPEETERA/HERMES_VAVO_REP_CTR
harmony.usermgt.create_dds_item_assignment('HPEETERA', 'HERMES_VAVO_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'HPEETERA/H_BANKDIR_BO_USER'
harmony.usermgt.create_role_to_user_assignment('HPEETERA', 'H_BANKDIR_BO_USER', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'HPEETERA/H_COMMONS_BO_USER'
harmony.usermgt.create_role_to_user_assignment('HPEETERA', 'H_COMMONS_BO_USER', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'HPEETERA/H_DLINK_BO_USER'
harmony.usermgt.create_role_to_user_assignment('HPEETERA', 'H_DLINK_BO_USER', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'HPEETERA/H_DLINK_REPORTING'
harmony.usermgt.create_role_to_user_assignment('HPEETERA', 'H_DLINK_REPORTING', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'HPEETERA/H_EFS2_BO_USER'
harmony.usermgt.create_role_to_user_assignment('HPEETERA', 'H_EFS2_BO_USER', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'HPEETERA/H_NETTING_BO_USER'
harmony.usermgt.create_role_to_user_assignment('HPEETERA', 'H_NETTING_BO_USER', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for HPEETERA/H_NETTING_BO_USER
harmony.usermgt.create_dds_item_assignment('HPEETERA', 'H_NETTING_BO_USER', 'Treasury Center Netting Participant', 'ONE', '[7/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('HPEETERA', 'H_NETTING_BO_USER', 'Treasury Center Netting Participant', 'ONE', '[5/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('HPEETERA', 'H_NETTING_BO_USER', 'Treasury Center Netting Participant', 'ONE', '[233/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('HPEETERA', 'H_NETTING_BO_USER', 'Treasury Center Netting Participant', 'ONE', '[223/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('HPEETERA', 'H_NETTING_BO_USER', 'Treasury Center Netting Participant', 'ONE', '[222/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('HPEETERA', 'H_NETTING_BO_USER', 'Treasury Center Netting Participant', 'ONE', '[11486/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('HPEETERA', 'H_NETTING_BO_USER', 'Treasury Center Netting Participant', 'ONE', '[11120/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('HPEETERA', 'H_NETTING_BO_USER', 'Treasury Center Netting Participant', 'ONE', '[1/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'HPEETERA/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('HPEETERA', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for HPEETERA/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('HPEETERA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[93/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('HPEETERA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[254/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('HPEETERA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[142/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('HPEETERA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11419/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('HPEETERA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11356/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('HPEETERA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11347/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('HPEETERA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11212/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'HPEETERA/H_NETTING_LOC_REP_TC'
harmony.usermgt.create_role_to_user_assignment('HPEETERA', 'H_NETTING_LOC_REP_TC', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for HPEETERA/H_NETTING_LOC_REP_TC
harmony.usermgt.create_dds_item_assignment('HPEETERA', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[7/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('HPEETERA', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[233/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('HPEETERA', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[223/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('HPEETERA', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[222/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('HPEETERA', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[11486/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('HPEETERA', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[11120/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'HPEETERA/H_SWIFTCOM_RELEASER'
harmony.usermgt.create_role_to_user_assignment('HPEETERA', 'H_SWIFTCOM_RELEASER', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for HPEETERA/H_SWIFTCOM_RELEASER
harmony.usermgt.create_dds_item_assignment('HPEETERA', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '15', sysdate, null);
harmony.usermgt.create_dds_item_assignment('HPEETERA', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '14', sysdate, null);
harmony.usermgt.create_dds_item_assignment('HPEETERA', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '13', sysdate, null);
-- Inserting RoleToUserAssignment 'HPEETERA/H_SWIFTCOM_REPORTER'
harmony.usermgt.create_role_to_user_assignment('HPEETERA', 'H_SWIFTCOM_REPORTER', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for HPEETERA/H_SWIFTCOM_REPORTER
harmony.usermgt.create_dds_item_assignment('HPEETERA', 'H_SWIFTCOM_REPORTER', 'SWIFTCOM FM Source', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'HPEETERA/H_SWIFTCOM_STADA_MGR'
harmony.usermgt.create_role_to_user_assignment('HPEETERA', 'H_SWIFTCOM_STADA_MGR', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'HPEETERA/H_TOPS_BO_USER'
harmony.usermgt.create_role_to_user_assignment('HPEETERA', 'H_TOPS_BO_USER', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'HPEETERA/H_TPP_BO_USER'
harmony.usermgt.create_role_to_user_assignment('HPEETERA', 'H_TPP_BO_USER', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'HRIEDMAI/H_EFS2_LOC_REP_PARTY'
harmony.usermgt.create_role_to_user_assignment('HRIEDMAI', 'H_EFS2_LOC_REP_PARTY', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for HRIEDMAI/H_EFS2_LOC_REP_PARTY
harmony.usermgt.create_dds_item_assignment('HRIEDMAI', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '356', sysdate, null);
-- Inserting RoleToUserAssignment 'HROCHA3/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('HROCHA3', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for HROCHA3/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('HROCHA3', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999820', sysdate, null);
harmony.usermgt.create_dds_item_assignment('HROCHA3', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999360', sysdate, null);
harmony.usermgt.create_dds_item_assignment('HROCHA3', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999250', sysdate, null);
-- Inserting RoleToUserAssignment 'HROCHA3/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('HROCHA3', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for HROCHA3/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('HROCHA3', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999820', sysdate, null);
harmony.usermgt.create_dds_item_assignment('HROCHA3', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999360', sysdate, null);
harmony.usermgt.create_dds_item_assignment('HROCHA3', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999250', sysdate, null);
-- Inserting RoleToUserAssignment 'HTEOH/H_EFS2_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('HTEOH', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for HTEOH/H_EFS2_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('HTEOH', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '369', sysdate, null);
harmony.usermgt.create_dds_item_assignment('HTEOH', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '367', sysdate, null);
-- Inserting RoleToUserAssignment 'HTEOH/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('HTEOH', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for HTEOH/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('HTEOH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[164/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'HTEOH/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('HTEOH', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for HTEOH/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('HTEOH', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[422/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'HUNGDV/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('HUNGDV', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for HUNGDV/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('HUNGDV', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998938', sysdate, null);
-- Inserting RoleToUserAssignment 'HUNGDV/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('HUNGDV', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for HUNGDV/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('HUNGDV', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998938', sysdate, null);
-- Inserting RoleToUserAssignment 'HUNGDV/H_EFS2_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('HUNGDV', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for HUNGDV/H_EFS2_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('HUNGDV', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '652', sysdate, null);
-- Inserting RoleToUserAssignment 'HVHOOF/H_TPP_P2P_REPORT'
harmony.usermgt.create_role_to_user_assignment('HVHOOF', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for HVHOOF/H_TPP_P2P_REPORT
harmony.usermgt.create_dds_item_assignment('HVHOOF', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '102', sysdate, null);
harmony.usermgt.create_dds_item_assignment('HVHOOF', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '101', sysdate, null);
harmony.usermgt.create_dds_item_assignment('HVHOOF', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '100', sysdate, null);
-- Inserting RoleToUserAssignment 'HVLANTSC/H_EFS2_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('HVLANTSC', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for HVLANTSC/H_EFS2_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('HVLANTSC', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '361', sysdate, null);
-- Inserting RoleToUserAssignment 'HWONG9/H_EFS2_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('HWONG9', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for HWONG9/H_EFS2_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('HWONG9', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '309', sysdate, null);
-- Inserting RoleToUserAssignment 'HYOSHID7/H_EFS2_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('HYOSHID7', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for HYOSHID7/H_EFS2_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('HYOSHID7', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '398', sysdate, null);
-- Inserting RoleToUserAssignment 'HZOU1/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('HZOU1', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for HZOU1/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('HZOU1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999869', sysdate, null);
harmony.usermgt.create_dds_item_assignment('HZOU1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999708', sysdate, null);
harmony.usermgt.create_dds_item_assignment('HZOU1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999707', sysdate, null);
harmony.usermgt.create_dds_item_assignment('HZOU1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999706', sysdate, null);
harmony.usermgt.create_dds_item_assignment('HZOU1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999705', sysdate, null);
harmony.usermgt.create_dds_item_assignment('HZOU1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999089', sysdate, null);
harmony.usermgt.create_dds_item_assignment('HZOU1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998960', sysdate, null);
-- Inserting RoleToUserAssignment 'HZOU1/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('HZOU1', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for HZOU1/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('HZOU1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999869', sysdate, null);
harmony.usermgt.create_dds_item_assignment('HZOU1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999708', sysdate, null);
harmony.usermgt.create_dds_item_assignment('HZOU1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999707', sysdate, null);
harmony.usermgt.create_dds_item_assignment('HZOU1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999706', sysdate, null);
harmony.usermgt.create_dds_item_assignment('HZOU1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999705', sysdate, null);
harmony.usermgt.create_dds_item_assignment('HZOU1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999089', sysdate, null);
harmony.usermgt.create_dds_item_assignment('HZOU1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998960', sysdate, null);
-- Inserting RoleToUserAssignment 'HZOU1/H_TPP_LOC_REP'
harmony.usermgt.create_role_to_user_assignment('HZOU1', 'H_TPP_LOC_REP', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for HZOU1/H_TPP_LOC_REP
harmony.usermgt.create_dds_item_assignment('HZOU1', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '49', sysdate, null);
harmony.usermgt.create_dds_item_assignment('HZOU1', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '48', sysdate, null);
harmony.usermgt.create_dds_item_assignment('HZOU1', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '32', sysdate, null);
harmony.usermgt.create_dds_item_assignment('HZOU1', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '31', sysdate, null);
-- Inserting RoleToUserAssignment 'IBALAN/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('IBALAN', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for IBALAN/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('IBALAN', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998970', sysdate, null);
-- Inserting RoleToUserAssignment 'IBALAN/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('IBALAN', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for IBALAN/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('IBALAN', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998970', sysdate, null);
-- Inserting RoleToUserAssignment 'IBALAN/H_EFS2_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('IBALAN', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for IBALAN/H_EFS2_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('IBALAN', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '651', sysdate, null);
-- Inserting RoleToUserAssignment 'IBALAN/H_TPP_P2P_REPORT'
harmony.usermgt.create_role_to_user_assignment('IBALAN', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for IBALAN/H_TPP_P2P_REPORT
harmony.usermgt.create_dds_item_assignment('IBALAN', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '366', sysdate, null);
-- Inserting RoleToUserAssignment 'IBODNARO/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('IBODNARO', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for IBODNARO/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('IBODNARO', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999897', sysdate, null);
-- Inserting RoleToUserAssignment 'IBODNARO/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('IBODNARO', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for IBODNARO/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('IBODNARO', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999897', sysdate, null);
-- Inserting RoleToUserAssignment 'IBODNARO/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('IBODNARO', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for IBODNARO/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('IBODNARO', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11865/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'IBODNARO/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('IBODNARO', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for IBODNARO/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('IBODNARO', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11130/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'IBODNARO/H_TPP_P2P_OFFERAUTH'
harmony.usermgt.create_role_to_user_assignment('IBODNARO', 'H_TPP_P2P_OFFERAUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for IBODNARO/H_TPP_P2P_OFFERAUTH
harmony.usermgt.create_dds_item_assignment('IBODNARO', 'H_TPP_P2P_OFFERAUTH', 'TPP AP2PLE OC', 'ONE', '371', sysdate, null);
-- Inserting RoleToUserAssignment 'IBODNARO/H_TPP_P2P_OFFERMGT'
harmony.usermgt.create_role_to_user_assignment('IBODNARO', 'H_TPP_P2P_OFFERMGT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for IBODNARO/H_TPP_P2P_OFFERMGT
harmony.usermgt.create_dds_item_assignment('IBODNARO', 'H_TPP_P2P_OFFERMGT', 'TPP AP2PLE OC', 'ONE', '371', sysdate, null);
-- Inserting RoleToUserAssignment 'ICARONIA/BAM_MANAGER'
harmony.usermgt.create_role_to_user_assignment('ICARONIA', 'BAM_MANAGER', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for ICARONIA/BAM_MANAGER
harmony.usermgt.create_dds_item_assignment('ICARONIA', 'BAM_MANAGER', 'BAM Region', 'ONE', '3', sysdate, null);
-- Inserting RoleToUserAssignment 'ICARONIA/BAM_REPORTER'
harmony.usermgt.create_role_to_user_assignment('ICARONIA', 'BAM_REPORTER', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for ICARONIA/BAM_REPORTER
harmony.usermgt.create_dds_item_assignment('ICARONIA', 'BAM_REPORTER', 'BAM Region', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'ICARONIA/HERMES_CMEFF_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('ICARONIA', 'HERMES_CMEFF_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for ICARONIA/HERMES_CMEFF_REP_CTR
harmony.usermgt.create_dds_item_assignment('ICARONIA', 'HERMES_CMEFF_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'ICARONIA/HERMES_GRP_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('ICARONIA', 'HERMES_GRP_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for ICARONIA/HERMES_GRP_REP_CTR
harmony.usermgt.create_dds_item_assignment('ICARONIA', 'HERMES_GRP_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'ICARONIA/HERMES_STAT_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('ICARONIA', 'HERMES_STAT_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for ICARONIA/HERMES_STAT_REP_CTR
harmony.usermgt.create_dds_item_assignment('ICARONIA', 'HERMES_STAT_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'ICARONIA/HERMES_STS_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('ICARONIA', 'HERMES_STS_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for ICARONIA/HERMES_STS_REP_CTR
harmony.usermgt.create_dds_item_assignment('ICARONIA', 'HERMES_STS_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'ICARONIA/HERMES_SYM_REC_CTR'
harmony.usermgt.create_role_to_user_assignment('ICARONIA', 'HERMES_SYM_REC_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for ICARONIA/HERMES_SYM_REC_CTR
harmony.usermgt.create_dds_item_assignment('ICARONIA', 'HERMES_SYM_REC_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'ICARONIA/HERMES_TXN_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('ICARONIA', 'HERMES_TXN_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for ICARONIA/HERMES_TXN_REP_CTR
harmony.usermgt.create_dds_item_assignment('ICARONIA', 'HERMES_TXN_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'ICARONIA/HERMES_VAVO_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('ICARONIA', 'HERMES_VAVO_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for ICARONIA/HERMES_VAVO_REP_CTR
harmony.usermgt.create_dds_item_assignment('ICARONIA', 'HERMES_VAVO_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'ICARONIA/H_SWIFTCOM_REPORTER'
harmony.usermgt.create_role_to_user_assignment('ICARONIA', 'H_SWIFTCOM_REPORTER', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for ICARONIA/H_SWIFTCOM_REPORTER
harmony.usermgt.create_dds_item_assignment('ICARONIA', 'H_SWIFTCOM_REPORTER', 'SWIFTCOM FM Source', 'ONE', '13', sysdate, null);
-- Inserting RoleToUserAssignment 'ICARONIA/H_TOPS_CNTRP_EXP_REP'
harmony.usermgt.create_role_to_user_assignment('ICARONIA', 'H_TOPS_CNTRP_EXP_REP', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'ICASTELL/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('ICASTELL', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for ICASTELL/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('ICASTELL', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998904', sysdate, null);
-- Inserting RoleToUserAssignment 'ICASTELL/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('ICASTELL', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for ICASTELL/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('ICASTELL', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998904', sysdate, null);
-- Inserting RoleToUserAssignment 'ICASTELL/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('ICASTELL', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for ICASTELL/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('ICASTELL', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11805/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'ICHIEN/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('ICHIEN', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for ICHIEN/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('ICHIEN', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[421/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'IDELGA2/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('IDELGA2', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for IDELGA2/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('IDELGA2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[194/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'IDMAEYER/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('IDMAEYER', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for IDMAEYER/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('IDMAEYER', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999864', sysdate, null);
-- Inserting RoleToUserAssignment 'IDMAEYER/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('IDMAEYER', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for IDMAEYER/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('IDMAEYER', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999864', sysdate, null);
-- Inserting RoleToUserAssignment 'IDMAEYER/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('IDMAEYER', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for IDMAEYER/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('IDMAEYER', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[102/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'IDMAEYER/H_TPP_P2P_OFFERMGT'
harmony.usermgt.create_role_to_user_assignment('IDMAEYER', 'H_TPP_P2P_OFFERMGT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for IDMAEYER/H_TPP_P2P_OFFERMGT
harmony.usermgt.create_dds_item_assignment('IDMAEYER', 'H_TPP_P2P_OFFERMGT', 'TPP AP2PLE OC', 'ONE', '191', sysdate, null);
-- Inserting RoleToUserAssignment 'IFISHMAN/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('IFISHMAN', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for IFISHMAN/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('IFISHMAN', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999778', sysdate, null);
harmony.usermgt.create_dds_item_assignment('IFISHMAN', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999776', sysdate, null);
-- Inserting RoleToUserAssignment 'IFISHMAN/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('IFISHMAN', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for IFISHMAN/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('IFISHMAN', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999778', sysdate, null);
harmony.usermgt.create_dds_item_assignment('IFISHMAN', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999776', sysdate, null);
-- Inserting RoleToUserAssignment 'IFISHMAN/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('IFISHMAN', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for IFISHMAN/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('IFISHMAN', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[437/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('IFISHMAN', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[428/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'IFREY/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('IFREY', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for IFREY/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('IFREY', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11648/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'IGREENE/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('IGREENE', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for IGREENE/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('IGREENE', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999448', sysdate, null);
-- Inserting RoleToUserAssignment 'IGREENE/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('IGREENE', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for IGREENE/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('IGREENE', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999448', sysdate, null);
-- Inserting RoleToUserAssignment 'IGREENE/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('IGREENE', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for IGREENE/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('IGREENE', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11419/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('IGREENE', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11417/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'IGREENE/H_TPP_P2P_REPORT'
harmony.usermgt.create_role_to_user_assignment('IGREENE', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for IGREENE/H_TPP_P2P_REPORT
harmony.usermgt.create_dds_item_assignment('IGREENE', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '359', sysdate, null);
-- Inserting RoleToUserAssignment 'IJEBING/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('IJEBING', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for IJEBING/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('IJEBING', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999889', sysdate, null);
harmony.usermgt.create_dds_item_assignment('IJEBING', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998968', sysdate, null);
-- Inserting RoleToUserAssignment 'IJEBING/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('IJEBING', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for IJEBING/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('IJEBING', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999889', sysdate, null);
harmony.usermgt.create_dds_item_assignment('IJEBING', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998968', sysdate, null);
-- Inserting RoleToUserAssignment 'IJEBING/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('IJEBING', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for IJEBING/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('IJEBING', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11881/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('IJEBING', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11780/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('IJEBING', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11707/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('IJEBING', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[115/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'IJEBING/H_TPP_P2P_OFFERAUTH'
harmony.usermgt.create_role_to_user_assignment('IJEBING', 'H_TPP_P2P_OFFERAUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for IJEBING/H_TPP_P2P_OFFERAUTH
harmony.usermgt.create_dds_item_assignment('IJEBING', 'H_TPP_P2P_OFFERAUTH', 'TPP AP2PLE OC', 'ONE', '114', sysdate, null);
-- Inserting RoleToUserAssignment 'IJIRGENS/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('IJIRGENS', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for IJIRGENS/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('IJIRGENS', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999000', sysdate, null);
harmony.usermgt.create_dds_item_assignment('IJIRGENS', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998999', sysdate, null);
harmony.usermgt.create_dds_item_assignment('IJIRGENS', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998998', sysdate, null);
-- Inserting RoleToUserAssignment 'IJIRGENS/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('IJIRGENS', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for IJIRGENS/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('IJIRGENS', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999000', sysdate, null);
harmony.usermgt.create_dds_item_assignment('IJIRGENS', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998999', sysdate, null);
harmony.usermgt.create_dds_item_assignment('IJIRGENS', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998998', sysdate, null);
-- Inserting RoleToUserAssignment 'IJONES1/H_EFS2_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('IJONES1', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for IJONES1/H_EFS2_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('IJONES1', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '354', sysdate, null);
-- Inserting RoleToUserAssignment 'IJONES1/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('IJONES1', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for IJONES1/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('IJONES1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[251/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'IJONES1/H_TPP_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('IJONES1', 'H_TPP_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for IJONES1/H_TPP_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('IJONES1', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '424', sysdate, null);
-- Inserting RoleToUserAssignment 'IKADERAB/H_TPP_P2P_REPORT'
harmony.usermgt.create_role_to_user_assignment('IKADERAB', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for IKADERAB/H_TPP_P2P_REPORT
harmony.usermgt.create_dds_item_assignment('IKADERAB', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '122', sysdate, null);
harmony.usermgt.create_dds_item_assignment('IKADERAB', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '121', sysdate, null);
-- Inserting RoleToUserAssignment 'IKATSMAN/H_EFS2_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('IKATSMAN', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for IKATSMAN/H_EFS2_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('IKATSMAN', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '583', sysdate, null);
-- Inserting RoleToUserAssignment 'IKATSMAN/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('IKATSMAN', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for IKATSMAN/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('IKATSMAN', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11556/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'IKSOURI/H_TPP_P2P_OFFERMGT'
harmony.usermgt.create_role_to_user_assignment('IKSOURI', 'H_TPP_P2P_OFFERMGT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for IKSOURI/H_TPP_P2P_OFFERMGT
harmony.usermgt.create_dds_item_assignment('IKSOURI', 'H_TPP_P2P_OFFERMGT', 'TPP AP2PLE OC', 'ONE', '364', sysdate, null);
-- Inserting RoleToUserAssignment 'ILAZIDIS/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('ILAZIDIS', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for ILAZIDIS/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('ILAZIDIS', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999882', sysdate, null);
-- Inserting RoleToUserAssignment 'ILAZIDIS/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('ILAZIDIS', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for ILAZIDIS/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('ILAZIDIS', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999882', sysdate, null);
-- Inserting RoleToUserAssignment 'ILAZIDIS/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('ILAZIDIS', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for ILAZIDIS/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('ILAZIDIS', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11106/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'ILAZIDIS/H_TPP_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('ILAZIDIS', 'H_TPP_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for ILAZIDIS/H_TPP_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('ILAZIDIS', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '339', sysdate, null);
-- Inserting RoleToUserAssignment 'IMALCZYK/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('IMALCZYK', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for IMALCZYK/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('IMALCZYK', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999347', sysdate, null);
-- Inserting RoleToUserAssignment 'IMALCZYK/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('IMALCZYK', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for IMALCZYK/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('IMALCZYK', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999347', sysdate, null);
-- Inserting RoleToUserAssignment 'IMALCZYK/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('IMALCZYK', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for IMALCZYK/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('IMALCZYK', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11082/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'IMARTON/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('IMARTON', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for IMARTON/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('IMARTON', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999200', sysdate, null);
harmony.usermgt.create_dds_item_assignment('IMARTON', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998971', sysdate, null);
harmony.usermgt.create_dds_item_assignment('IMARTON', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998922', sysdate, null);
-- Inserting RoleToUserAssignment 'IMARTON/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('IMARTON', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for IMARTON/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('IMARTON', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999200', sysdate, null);
harmony.usermgt.create_dds_item_assignment('IMARTON', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998971', sysdate, null);
harmony.usermgt.create_dds_item_assignment('IMARTON', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998922', sysdate, null);
-- Inserting RoleToUserAssignment 'IMARTON/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('IMARTON', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for IMARTON/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('IMARTON', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11184/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'IMARTON/H_TPP_P2P_REPORT'
harmony.usermgt.create_role_to_user_assignment('IMARTON', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for IMARTON/H_TPP_P2P_REPORT
harmony.usermgt.create_dds_item_assignment('IMARTON', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '367', sysdate, null);
-- Inserting RoleToUserAssignment 'IMICHEL/H_EFS2_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('IMICHEL', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for IMICHEL/H_EFS2_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('IMICHEL', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '482', sysdate, null);
-- Inserting RoleToUserAssignment 'IMICHEL/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('IMICHEL', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for IMICHEL/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('IMICHEL', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11266/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'IMORDCHA/H_EFS2_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('IMORDCHA', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for IMORDCHA/H_EFS2_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('IMORDCHA', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '548', sysdate, null);
-- Inserting RoleToUserAssignment 'IMORDCHA/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('IMORDCHA', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for IMORDCHA/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('IMORDCHA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11312/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'INEMETSK/H_EFS2_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('INEMETSK', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for INEMETSK/H_EFS2_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('INEMETSK', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '614', sysdate, null);
harmony.usermgt.create_dds_item_assignment('INEMETSK', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '612', sysdate, null);
-- Inserting RoleToUserAssignment 'INEMETSK/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('INEMETSK', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for INEMETSK/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('INEMETSK', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11543/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'INFOEXPR/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('INFOEXPR', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for INFOEXPR/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('INFOEXPR', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999698', sysdate, null);
-- Inserting RoleToUserAssignment 'INFOEXPR/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('INFOEXPR', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for INFOEXPR/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('INFOEXPR', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999698', sysdate, null);
-- Inserting RoleToUserAssignment 'INFOEXPR/H_EFS2_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('INFOEXPR', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for INFOEXPR/H_EFS2_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('INFOEXPR', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '687', sysdate, null);
-- Inserting RoleToUserAssignment 'INFOEXPR/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('INFOEXPR', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for INFOEXPR/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('INFOEXPR', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11100/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'INFOEXPR/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('INFOEXPR', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for INFOEXPR/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('INFOEXPR', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11100/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'IOAMIL/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('IOAMIL', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for IOAMIL/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('IOAMIL', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[204/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('IOAMIL', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11333/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'IPARASKE/H_EFS2_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('IPARASKE', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for IPARASKE/H_EFS2_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('IPARASKE', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '283', sysdate, null);
-- Inserting RoleToUserAssignment 'IPARASKE/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('IPARASKE', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for IPARASKE/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('IPARASKE', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[409/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('IPARASKE', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[100/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'IPETERSO/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('IPETERSO', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for IPETERSO/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('IPETERSO', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998999', sysdate, null);
-- Inserting RoleToUserAssignment 'IPETERSO/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('IPETERSO', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for IPETERSO/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('IPETERSO', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998999', sysdate, null);
-- Inserting RoleToUserAssignment 'IPIWKO/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('IPIWKO', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for IPIWKO/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('IPIWKO', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999853', sysdate, null);
-- Inserting RoleToUserAssignment 'IPIWKO/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('IPIWKO', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for IPIWKO/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('IPIWKO', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999853', sysdate, null);
-- Inserting RoleToUserAssignment 'IPROFANT/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('IPROFANT', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for IPROFANT/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('IPROFANT', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999737', sysdate, null);
-- Inserting RoleToUserAssignment 'IPROFANT/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('IPROFANT', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for IPROFANT/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('IPROFANT', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999737', sysdate, null);
-- Inserting RoleToUserAssignment 'IPROFANT/H_EFS2_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('IPROFANT', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for IPROFANT/H_EFS2_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('IPROFANT', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '337', sysdate, null);
-- Inserting RoleToUserAssignment 'IPROFANT/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('IPROFANT', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for IPROFANT/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('IPROFANT', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[218/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'IPROFANT/H_TPP_LOC_REP'
harmony.usermgt.create_role_to_user_assignment('IPROFANT', 'H_TPP_LOC_REP', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for IPROFANT/H_TPP_LOC_REP
harmony.usermgt.create_dds_item_assignment('IPROFANT', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '8', sysdate, null);
-- Inserting RoleToUserAssignment 'IPURGA/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('IPURGA', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for IPURGA/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('IPURGA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999000', sysdate, null);
-- Inserting RoleToUserAssignment 'IPURGA/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('IPURGA', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for IPURGA/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('IPURGA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999000', sysdate, null);
-- Inserting RoleToUserAssignment 'IPURGA/H_TPP_P2P_OFFERAUTH'
harmony.usermgt.create_role_to_user_assignment('IPURGA', 'H_TPP_P2P_OFFERAUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for IPURGA/H_TPP_P2P_OFFERAUTH
harmony.usermgt.create_dds_item_assignment('IPURGA', 'H_TPP_P2P_OFFERAUTH', 'TPP AP2PLE OC', 'ONE', '306', sysdate, null);
-- Inserting RoleToUserAssignment 'IRACHMA/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('IRACHMA', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for IRACHMA/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('IRACHMA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[12003/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'ISCHOEN1/HERMES_CMEFF_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('ISCHOEN1', 'HERMES_CMEFF_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for ISCHOEN1/HERMES_CMEFF_REP_CTR
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'HERMES_CMEFF_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'ISCHOEN1/HERMES_GRP_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('ISCHOEN1', 'HERMES_GRP_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for ISCHOEN1/HERMES_GRP_REP_CTR
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'HERMES_GRP_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'ISCHOEN1/HERMES_IDTXN_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('ISCHOEN1', 'HERMES_IDTXN_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for ISCHOEN1/HERMES_IDTXN_REP_CTR
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'HERMES_IDTXN_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'ISCHOEN1/HERMES_STAT_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('ISCHOEN1', 'HERMES_STAT_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for ISCHOEN1/HERMES_STAT_REP_CTR
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'HERMES_STAT_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'ISCHOEN1/HERMES_STS_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('ISCHOEN1', 'HERMES_STS_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for ISCHOEN1/HERMES_STS_REP_CTR
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'HERMES_STS_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'ISCHOEN1/HERMES_SYM_REC_CTR'
harmony.usermgt.create_role_to_user_assignment('ISCHOEN1', 'HERMES_SYM_REC_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for ISCHOEN1/HERMES_SYM_REC_CTR
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'HERMES_SYM_REC_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'ISCHOEN1/HERMES_TXN_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('ISCHOEN1', 'HERMES_TXN_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for ISCHOEN1/HERMES_TXN_REP_CTR
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'HERMES_TXN_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'ISCHOEN1/HERMES_VAVO_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('ISCHOEN1', 'HERMES_VAVO_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for ISCHOEN1/HERMES_VAVO_REP_CTR
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'HERMES_VAVO_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'ISCHOEN1/H_AGENT_IHB_MGR'
harmony.usermgt.create_role_to_user_assignment('ISCHOEN1', 'H_AGENT_IHB_MGR', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'ISCHOEN1/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for ISCHOEN1/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[58/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11805/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11785/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11783/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11780/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11771/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11769/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11767/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11764/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11761/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11756/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11755/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11753/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11737/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11713/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11710/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11699/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11697/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11695/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11670/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11637/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11635/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11629/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11628/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11627/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11235/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11234/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11230/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11218/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11212/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11195/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11184/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11178/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11130/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11072/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11070/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[104/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[103/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11237/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11272/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11327/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11342/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11349/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11495/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11537/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11543/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11562/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11575/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11580/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11582/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11818/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11820/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11825/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11841/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11842/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11843/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11844/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11846/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11847/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11862/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11865/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11881/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11917/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11918/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11919/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11924/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11927/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11973/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11981/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11991/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[144/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[146/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[147/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[154/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[156/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[160/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[161/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[168/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[169/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[170/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[171/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[172/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[173/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[174/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[175/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[176/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[177/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[218/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[219/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[225/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[238/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[244/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[246/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[276/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[342/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[344/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[348/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[38/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'ISCHOEN1/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('ISCHOEN1', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for ISCHOEN1/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[49/CC]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11687/CC]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11688/CC]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11689/CC]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11741/CC]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11743/CC]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11744/CC]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11745/CC]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11831/CC]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11978/CC]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11985/CC]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11997/CC]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11998/CC]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[142/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'ISCHOEN1/H_NETTING_LOC_REP_TC'
harmony.usermgt.create_role_to_user_assignment('ISCHOEN1', 'H_NETTING_LOC_REP_TC', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for ISCHOEN1/H_NETTING_LOC_REP_TC
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[7/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[233/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[223/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[222/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[11486/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[11120/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[1/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'ISCHOEN1/H_SWIFTCOM_RELEASER'
harmony.usermgt.create_role_to_user_assignment('ISCHOEN1', 'H_SWIFTCOM_RELEASER', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for ISCHOEN1/H_SWIFTCOM_RELEASER
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '9', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '8', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '7', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '6', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '5', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '4', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '2', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '11', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '10', sysdate, null);
harmony.usermgt.create_dds_item_assignment('ISCHOEN1', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '1', sysdate, null);
-- Inserting RoleToUserAssignment 'ISCHOEN1/H_TPP_CTR_REP'
harmony.usermgt.create_role_to_user_assignment('ISCHOEN1', 'H_TPP_CTR_REP', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'ISESTAK/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('ISESTAK', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for ISESTAK/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('ISESTAK', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999442', sysdate, null);
-- Inserting RoleToUserAssignment 'ISESTAK/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('ISESTAK', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for ISESTAK/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('ISESTAK', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999442', sysdate, null);
-- Inserting RoleToUserAssignment 'ISILVA15/H_EFS2_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('ISILVA15', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for ISILVA15/H_EFS2_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('ISILVA15', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '399', sysdate, null);
-- Inserting RoleToUserAssignment 'ISUMARSO/H_EFS2_LOC_REP_PARTY'
harmony.usermgt.create_role_to_user_assignment('ISUMARSO', 'H_EFS2_LOC_REP_PARTY', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for ISUMARSO/H_EFS2_LOC_REP_PARTY
harmony.usermgt.create_dds_item_assignment('ISUMARSO', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '307', sysdate, null);
-- Inserting RoleToUserAssignment 'ISUMARSO/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('ISUMARSO', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for ISUMARSO/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('ISUMARSO', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[133/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'ITANDAR/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('ITANDAR', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for ITANDAR/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('ITANDAR', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998970', sysdate, null);
-- Inserting RoleToUserAssignment 'ITANDAR/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('ITANDAR', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for ITANDAR/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('ITANDAR', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998970', sysdate, null);
-- Inserting RoleToUserAssignment 'ITANDAR/H_TPP_P2P_REPORT'
harmony.usermgt.create_role_to_user_assignment('ITANDAR', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for ITANDAR/H_TPP_P2P_REPORT
harmony.usermgt.create_dds_item_assignment('ITANDAR', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '366', sysdate, null);
-- Inserting RoleToUserAssignment 'IVOLKOVA/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('IVOLKOVA', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for IVOLKOVA/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('IVOLKOVA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11543/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'IVONHOLZ/H_EFS2_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('IVONHOLZ', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for IVONHOLZ/H_EFS2_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('IVONHOLZ', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '709', sysdate, null);
harmony.usermgt.create_dds_item_assignment('IVONHOLZ', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '632', sysdate, null);
harmony.usermgt.create_dds_item_assignment('IVONHOLZ', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '605', sysdate, null);
harmony.usermgt.create_dds_item_assignment('IVONHOLZ', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '260', sysdate, null);
-- Inserting RoleToUserAssignment 'IVOS/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('IVOS', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for IVOS/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('IVOS', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999887', sysdate, null);
harmony.usermgt.create_dds_item_assignment('IVOS', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999765', sysdate, null);
harmony.usermgt.create_dds_item_assignment('IVOS', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999123', sysdate, null);
-- Inserting RoleToUserAssignment 'IVOS/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('IVOS', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for IVOS/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('IVOS', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999887', sysdate, null);
harmony.usermgt.create_dds_item_assignment('IVOS', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999765', sysdate, null);
harmony.usermgt.create_dds_item_assignment('IVOS', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999123', sysdate, null);
-- Inserting RoleToUserAssignment 'IVOS/H_EFS2_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('IVOS', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for IVOS/H_EFS2_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('IVOS', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '566', sysdate, null);
harmony.usermgt.create_dds_item_assignment('IVOS', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '489', sysdate, null);
harmony.usermgt.create_dds_item_assignment('IVOS', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '453', sysdate, null);
harmony.usermgt.create_dds_item_assignment('IVOS', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '452', sysdate, null);
harmony.usermgt.create_dds_item_assignment('IVOS', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '362', sysdate, null);
harmony.usermgt.create_dds_item_assignment('IVOS', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '361', sysdate, null);
harmony.usermgt.create_dds_item_assignment('IVOS', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '279', sysdate, null);
-- Inserting RoleToUserAssignment 'IVOS/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('IVOS', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for IVOS/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('IVOS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[288/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('IVOS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[286/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('IVOS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11356/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('IVOS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11153/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('IVOS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11091/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'IVOS/H_TPP_P2P_REPORT'
harmony.usermgt.create_role_to_user_assignment('IVOS', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for IVOS/H_TPP_P2P_REPORT
harmony.usermgt.create_dds_item_assignment('IVOS', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '258', sysdate, null);
-- Inserting RoleToUserAssignment 'IZEPEDA/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('IZEPEDA', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for IZEPEDA/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('IZEPEDA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999703', sysdate, null);
harmony.usermgt.create_dds_item_assignment('IZEPEDA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999698', sysdate, null);
harmony.usermgt.create_dds_item_assignment('IZEPEDA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999465', sysdate, null);
-- Inserting RoleToUserAssignment 'IZEPEDA/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('IZEPEDA', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for IZEPEDA/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('IZEPEDA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999703', sysdate, null);
harmony.usermgt.create_dds_item_assignment('IZEPEDA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999698', sysdate, null);
harmony.usermgt.create_dds_item_assignment('IZEPEDA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999465', sysdate, null);
-- Inserting RoleToUserAssignment 'IZEPEDA/H_EFS2_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('IZEPEDA', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for IZEPEDA/H_EFS2_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('IZEPEDA', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '687', sysdate, null);
harmony.usermgt.create_dds_item_assignment('IZEPEDA', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '686', sysdate, null);
harmony.usermgt.create_dds_item_assignment('IZEPEDA', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '685', sysdate, null);
-- Inserting RoleToUserAssignment 'IZEPEDA/H_EFS2_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('IZEPEDA', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for IZEPEDA/H_EFS2_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('IZEPEDA', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '687', sysdate, null);
harmony.usermgt.create_dds_item_assignment('IZEPEDA', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '686', sysdate, null);
harmony.usermgt.create_dds_item_assignment('IZEPEDA', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '685', sysdate, null);
-- Inserting RoleToUserAssignment 'IZEPEDA/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('IZEPEDA', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for IZEPEDA/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('IZEPEDA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[202/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('IZEPEDA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[201/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('IZEPEDA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[200/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('IZEPEDA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11823/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('IZEPEDA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11100/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('IZEPEDA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11085/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JABING/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('JABING', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JABING/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('JABING', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[37/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JABING', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11456/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JABING', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11345/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JACOST15/H_EFS2_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('JACOST15', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JACOST15/H_EFS2_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('JACOST15', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '698', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JACOST15', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '585', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JACOST15', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '528', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JACOST15', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '273', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JACOST15', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '267', sysdate, null);
-- Inserting RoleToUserAssignment 'JALBAN/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JALBAN', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JALBAN/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('JALBAN', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999891', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JALBAN', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999424', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JALBAN', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999277', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JALBAN', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999274', sysdate, null);
-- Inserting RoleToUserAssignment 'JALBAN/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JALBAN', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JALBAN/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('JALBAN', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999891', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JALBAN', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999424', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JALBAN', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999277', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JALBAN', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999274', sysdate, null);
-- Inserting RoleToUserAssignment 'JALBAN/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('JALBAN', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JALBAN/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('JALBAN', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[397/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JALBAN/H_TPP_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('JALBAN', 'H_TPP_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JALBAN/H_TPP_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('JALBAN', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '58', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JALBAN', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '57', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JALBAN', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '56', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JALBAN', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '107', sysdate, null);
-- Inserting RoleToUserAssignment 'JALBAN/H_TPP_P2P_OFFERAUTH'
harmony.usermgt.create_role_to_user_assignment('JALBAN', 'H_TPP_P2P_OFFERAUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JALBAN/H_TPP_P2P_OFFERAUTH
harmony.usermgt.create_dds_item_assignment('JALBAN', 'H_TPP_P2P_OFFERAUTH', 'TPP AP2PLE OC', 'ONE', '344', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JALBAN', 'H_TPP_P2P_OFFERAUTH', 'TPP AP2PLE OC', 'ONE', '331', sysdate, null);
-- Inserting RoleToUserAssignment 'JAMONTER/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JAMONTER', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JAMONTER/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('JAMONTER', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999666', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JAMONTER', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999662', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JAMONTER', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999158', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JAMONTER', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999155', sysdate, null);
-- Inserting RoleToUserAssignment 'JAMONTER/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JAMONTER', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JAMONTER/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('JAMONTER', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999666', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JAMONTER', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999662', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JAMONTER', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999158', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JAMONTER', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999155', sysdate, null);
-- Inserting RoleToUserAssignment 'JAMONTER/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('JAMONTER', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JAMONTER/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('JAMONTER', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[168/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JAMONTER/H_TPP_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('JAMONTER', 'H_TPP_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JAMONTER/H_TPP_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('JAMONTER', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '54', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JAMONTER', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '195', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JAMONTER', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '128', sysdate, null);
-- Inserting RoleToUserAssignment 'JAMONTER/H_TPP_P2P_REPORT'
harmony.usermgt.create_role_to_user_assignment('JAMONTER', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JAMONTER/H_TPP_P2P_REPORT
harmony.usermgt.create_dds_item_assignment('JAMONTER', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '278', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JAMONTER', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '146', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JAMONTER', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '129', sysdate, null);
-- Inserting RoleToUserAssignment 'JANDERS6/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JANDERS6', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JANDERS6/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('JANDERS6', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999840', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JANDERS6', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999839', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JANDERS6', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999536', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JANDERS6', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999361', sysdate, null);
-- Inserting RoleToUserAssignment 'JANDERS6/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JANDERS6', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JANDERS6/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('JANDERS6', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999840', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JANDERS6', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999839', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JANDERS6', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999536', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JANDERS6', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999361', sysdate, null);
-- Inserting RoleToUserAssignment 'JANDERS6/H_EFS2_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('JANDERS6', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JANDERS6/H_EFS2_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('JANDERS6', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '437', sysdate, null);
-- Inserting RoleToUserAssignment 'JANDERS6/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('JANDERS6', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JANDERS6/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('JANDERS6', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[177/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JANDERS6', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[176/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JANDERS6', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[104/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JANDERS6/H_TPP_P2P_OFFERMGT'
harmony.usermgt.create_role_to_user_assignment('JANDERS6', 'H_TPP_P2P_OFFERMGT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JANDERS6/H_TPP_P2P_OFFERMGT
harmony.usermgt.create_dds_item_assignment('JANDERS6', 'H_TPP_P2P_OFFERMGT', 'TPP AP2PLE OC', 'ONE', '190', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JANDERS6', 'H_TPP_P2P_OFFERMGT', 'TPP AP2PLE OC', 'ONE', '187', sysdate, null);
-- Inserting RoleToUserAssignment 'JANDERS9/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JANDERS9', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JANDERS9/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('JANDERS9', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999840', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JANDERS9', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999839', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JANDERS9', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999536', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JANDERS9', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999361', sysdate, null);
-- Inserting RoleToUserAssignment 'JANDERS9/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JANDERS9', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JANDERS9/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('JANDERS9', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999840', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JANDERS9', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999839', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JANDERS9', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999536', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JANDERS9', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999361', sysdate, null);
-- Inserting RoleToUserAssignment 'JANDERS9/H_EFS2_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('JANDERS9', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JANDERS9/H_EFS2_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('JANDERS9', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '437', sysdate, null);
-- Inserting RoleToUserAssignment 'JANDERS9/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('JANDERS9', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JANDERS9/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('JANDERS9', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[177/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JANDERS9', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[176/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JANDERS9', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[104/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JANDERS9/H_TPP_P2P_OFFERAUTH'
harmony.usermgt.create_role_to_user_assignment('JANDERS9', 'H_TPP_P2P_OFFERAUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JANDERS9/H_TPP_P2P_OFFERAUTH
harmony.usermgt.create_dds_item_assignment('JANDERS9', 'H_TPP_P2P_OFFERAUTH', 'TPP AP2PLE OC', 'ONE', '190', sysdate, null);
-- Inserting RoleToUserAssignment 'JAQUEZAD/H_EFS2_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('JAQUEZAD', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JAQUEZAD/H_EFS2_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('JAQUEZAD', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '554', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JAQUEZAD', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '527', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JAQUEZAD', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '406', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JAQUEZAD', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '402', sysdate, null);
-- Inserting RoleToUserAssignment 'JAQUEZAD/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('JAQUEZAD', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JAQUEZAD/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('JAQUEZAD', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11364/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JAQUEZAD', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11336/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JARIMA/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JARIMA', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JARIMA/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('JARIMA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999869', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JARIMA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999089', sysdate, null);
-- Inserting RoleToUserAssignment 'JARIMA/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JARIMA', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JARIMA/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('JARIMA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999869', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JARIMA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999089', sysdate, null);
-- Inserting RoleToUserAssignment 'JARIMA/H_TPP_P2P_REPORT'
harmony.usermgt.create_role_to_user_assignment('JARIMA', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JARIMA/H_TPP_P2P_REPORT
harmony.usermgt.create_dds_item_assignment('JARIMA', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '348', sysdate, null);
-- Inserting RoleToUserAssignment 'JARNELL/H_EFS2_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('JARNELL', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JARNELL/H_EFS2_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('JARNELL', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '709', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JARNELL', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '632', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JARNELL', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '605', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JARNELL', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '260', sysdate, null);
-- Inserting RoleToUserAssignment 'JARNONOB/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('JARNONOB', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JARNONOB/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('JARNONOB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[417/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JAROCENA/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JAROCENA', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JAROCENA/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('JAROCENA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '200010', sysdate, null);
-- Inserting RoleToUserAssignment 'JAROCENA/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JAROCENA', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JAROCENA/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('JAROCENA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '200010', sysdate, null);
-- Inserting RoleToUserAssignment 'JAROCENA/H_TPP_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('JAROCENA', 'H_TPP_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JAROCENA/H_TPP_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('JAROCENA', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '65', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JAROCENA', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '45', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JAROCENA', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '44', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JAROCENA', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '361', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JAROCENA', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '358', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JAROCENA', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '195', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JAROCENA', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '147', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JAROCENA', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '14', sysdate, null);
-- Inserting RoleToUserAssignment 'JAROCENA/H_TPP_LOC_REP'
harmony.usermgt.create_role_to_user_assignment('JAROCENA', 'H_TPP_LOC_REP', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JAROCENA/H_TPP_LOC_REP
harmony.usermgt.create_dds_item_assignment('JAROCENA', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '71', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JAROCENA', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '13', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JAROCENA', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '12', sysdate, null);
-- Inserting RoleToUserAssignment 'JBALDOCK/H_EFS2_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('JBALDOCK', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JBALDOCK/H_EFS2_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('JBALDOCK', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '354', sysdate, null);
-- Inserting RoleToUserAssignment 'JBALDOCK/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('JBALDOCK', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JBALDOCK/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('JBALDOCK', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[251/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JBALDOCK/H_TPP_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('JBALDOCK', 'H_TPP_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JBALDOCK/H_TPP_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('JBALDOCK', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '424', sysdate, null);
-- Inserting RoleToUserAssignment 'JBANAWA/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JBANAWA', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JBANAWA/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('JBANAWA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999714', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANAWA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999640', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANAWA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999426', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANAWA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999410', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANAWA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999382', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANAWA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999326', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANAWA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '200010', sysdate, null);
-- Inserting RoleToUserAssignment 'JBANAWA/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JBANAWA', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JBANAWA/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('JBANAWA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999714', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANAWA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999640', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANAWA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999426', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANAWA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999410', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANAWA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999382', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANAWA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999326', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANAWA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '200010', sysdate, null);
-- Inserting RoleToUserAssignment 'JBANAWA/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('JBANAWA', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JBANAWA/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('JBANAWA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[153/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANAWA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[140/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANAWA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[131/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANAWA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[130/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANAWA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[129/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANAWA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[128/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANAWA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11661/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANAWA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11566/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANAWA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11536/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANAWA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11342/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JBANAWA/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('JBANAWA', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JBANAWA/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('JBANAWA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[153/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANAWA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[140/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANAWA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11566/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANAWA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11342/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JBANAWA/H_TPP_LOC_REP'
harmony.usermgt.create_role_to_user_assignment('JBANAWA', 'H_TPP_LOC_REP', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JBANAWA/H_TPP_LOC_REP
harmony.usermgt.create_dds_item_assignment('JBANAWA', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '71', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANAWA', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '233', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANAWA', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '13', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANAWA', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '12', sysdate, null);
-- Inserting RoleToUserAssignment 'JBANAWA/H_TPP_P2P_REPORT'
harmony.usermgt.create_role_to_user_assignment('JBANAWA', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JBANAWA/H_TPP_P2P_REPORT
harmony.usermgt.create_dds_item_assignment('JBANAWA', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '302', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANAWA', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '192', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANAWA', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '186', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANAWA', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '149', sysdate, null);
-- Inserting RoleToUserAssignment 'JBANTING/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JBANTING', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JBANTING/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('JBANTING', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999879', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANTING', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999872', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANTING', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999846', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANTING', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999834', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANTING', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999745', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANTING', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999714', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANTING', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999690', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANTING', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '200010', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANTING', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998865', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANTING', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998867', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANTING', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998868', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANTING', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998926', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANTING', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998966', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANTING', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998972', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANTING', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998973', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANTING', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999111', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANTING', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999327', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANTING', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999364', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANTING', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999666', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANTING', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999683', sysdate, null);
-- Inserting RoleToUserAssignment 'JBANTING/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JBANTING', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JBANTING/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('JBANTING', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999879', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANTING', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999872', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANTING', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999846', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANTING', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999834', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANTING', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999745', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANTING', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999714', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANTING', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999690', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANTING', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '200010', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANTING', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998865', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANTING', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998867', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANTING', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998868', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANTING', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998926', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANTING', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998966', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANTING', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998972', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANTING', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998973', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANTING', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999111', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANTING', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999327', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANTING', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999364', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANTING', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999666', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANTING', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999683', sysdate, null);
-- Inserting RoleToUserAssignment 'JBANTING/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('JBANTING', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JBANTING/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('JBANTING', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[344/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANTING', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[168/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANTING', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[147/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANTING', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11753/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANTING', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11580/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANTING', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11349/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JBANTING/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('JBANTING', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JBANTING/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('JBANTING', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[344/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANTING', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[279/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANTING', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[168/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANTING', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11865/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANTING', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11862/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANTING', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11761/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANTING', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11753/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANTING', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11334/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANTING', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11072/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANTING', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[108/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JBANTING/H_TPP_LOC_REP'
harmony.usermgt.create_role_to_user_assignment('JBANTING', 'H_TPP_LOC_REP', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JBANTING/H_TPP_LOC_REP
harmony.usermgt.create_dds_item_assignment('JBANTING', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '71', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANTING', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '377', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANTING', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '376', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANTING', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '375', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANTING', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '374', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANTING', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '195', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANTING', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '14', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANTING', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '13', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANTING', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '12', sysdate, null);
-- Inserting RoleToUserAssignment 'JBANTING/H_TPP_P2P_REPORT'
harmony.usermgt.create_role_to_user_assignment('JBANTING', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JBANTING/H_TPP_P2P_REPORT
harmony.usermgt.create_dds_item_assignment('JBANTING', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '372', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANTING', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '371', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANTING', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '370', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANTING', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '329', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANTING', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '328', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANTING', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '327', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANTING', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '276', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANTING', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '273', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBANTING', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '150', sysdate, null);
-- Inserting RoleToUserAssignment 'JBARR1/H_EFS2_LOC_REP_PARTY'
harmony.usermgt.create_role_to_user_assignment('JBARR1', 'H_EFS2_LOC_REP_PARTY', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JBARR1/H_EFS2_LOC_REP_PARTY
harmony.usermgt.create_dds_item_assignment('JBARR1', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '439', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBARR1', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '335', sysdate, null);
-- Inserting RoleToUserAssignment 'JBARR1/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('JBARR1', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JBARR1/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('JBARR1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[212/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JBARR1/H_TPP_LOC_REP'
harmony.usermgt.create_role_to_user_assignment('JBARR1', 'H_TPP_LOC_REP', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JBARR1/H_TPP_LOC_REP
harmony.usermgt.create_dds_item_assignment('JBARR1', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '59', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBARR1', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '53', sysdate, null);
-- Inserting RoleToUserAssignment 'JBATTIGE/H_EFS2_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('JBATTIGE', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JBATTIGE/H_EFS2_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('JBATTIGE', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '280', sysdate, null);
-- Inserting RoleToUserAssignment 'JBATTIGE/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('JBATTIGE', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JBATTIGE/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('JBATTIGE', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[96/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBATTIGE', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[95/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBATTIGE', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[6/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBATTIGE', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[4/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JBENDO/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JBENDO', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JBENDO/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('JBENDO', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998981', sysdate, null);
-- Inserting RoleToUserAssignment 'JBENDO/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JBENDO', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JBENDO/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('JBENDO', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998981', sysdate, null);
-- Inserting RoleToUserAssignment 'JBENDO/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('JBENDO', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JBENDO/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('JBENDO', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[246/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JBOPPAR1/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JBOPPAR1', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JBOPPAR1/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('JBOPPAR1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999838', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBOPPAR1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999495', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBOPPAR1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999494', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBOPPAR1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999459', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBOPPAR1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999458', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBOPPAR1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999307', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBOPPAR1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999189', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBOPPAR1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999187', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBOPPAR1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999181', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBOPPAR1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999178', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBOPPAR1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999175', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBOPPAR1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999173', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBOPPAR1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998984', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBOPPAR1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998962', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBOPPAR1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999497', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBOPPAR1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999504', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBOPPAR1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999534', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBOPPAR1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999607', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBOPPAR1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999608', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBOPPAR1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999610', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBOPPAR1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999650', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBOPPAR1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999652', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBOPPAR1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999654', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBOPPAR1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999659', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBOPPAR1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999745', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBOPPAR1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999810', sysdate, null);
-- Inserting RoleToUserAssignment 'JBOPPAR1/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JBOPPAR1', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JBOPPAR1/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('JBOPPAR1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999838', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBOPPAR1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999495', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBOPPAR1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999494', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBOPPAR1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999459', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBOPPAR1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999458', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBOPPAR1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999307', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBOPPAR1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999189', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBOPPAR1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999187', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBOPPAR1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999181', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBOPPAR1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999178', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBOPPAR1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999175', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBOPPAR1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999173', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBOPPAR1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998984', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBOPPAR1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998962', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBOPPAR1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999497', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBOPPAR1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999504', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBOPPAR1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999534', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBOPPAR1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999607', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBOPPAR1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999608', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBOPPAR1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999610', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBOPPAR1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999650', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBOPPAR1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999652', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBOPPAR1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999654', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBOPPAR1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999659', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBOPPAR1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999745', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBOPPAR1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999810', sysdate, null);
-- Inserting RoleToUserAssignment 'JBOPPAR1/H_EFS2_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('JBOPPAR1', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JBOPPAR1/H_EFS2_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('JBOPPAR1', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '704', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBOPPAR1', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '697', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBOPPAR1', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '684', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBOPPAR1', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '677', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBOPPAR1', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '664', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBOPPAR1', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '550', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBOPPAR1', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '468', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBOPPAR1', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '451', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBOPPAR1', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '450', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBOPPAR1', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '434', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBOPPAR1', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '432', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBOPPAR1', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '431', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBOPPAR1', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '430', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBOPPAR1', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '427', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBOPPAR1', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '426', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBOPPAR1', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '396', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBOPPAR1', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '358', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBOPPAR1', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '356', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBOPPAR1', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '584', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBOPPAR1', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '599', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBOPPAR1', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '600', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBOPPAR1', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '601', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBOPPAR1', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '602', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBOPPAR1', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '603', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBOPPAR1', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '604', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBOPPAR1', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '623', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBOPPAR1', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '638', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBOPPAR1', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '645', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBOPPAR1', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '646', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBOPPAR1', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '648', sysdate, null);
-- Inserting RoleToUserAssignment 'JBOPPAR1/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('JBOPPAR1', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JBOPPAR1/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('JBOPPAR1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[253/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBOPPAR1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11825/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBOPPAR1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11785/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBOPPAR1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11061/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JBOPPAR1/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('JBOPPAR1', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JBOPPAR1/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('JBOPPAR1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[179/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JBOPPAR1/H_TPP_P2P_REPORT'
harmony.usermgt.create_role_to_user_assignment('JBOPPAR1', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JBOPPAR1/H_TPP_P2P_REPORT
harmony.usermgt.create_dds_item_assignment('JBOPPAR1', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '104', sysdate, null);
-- Inserting RoleToUserAssignment 'JBOYLE/BAM_MANAGER'
harmony.usermgt.create_role_to_user_assignment('JBOYLE', 'BAM_MANAGER', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JBOYLE/BAM_MANAGER
harmony.usermgt.create_dds_item_assignment('JBOYLE', 'BAM_MANAGER', 'BAM Region', 'ONE', '1', sysdate, null);
-- Inserting RoleToUserAssignment 'JBOYLE/BAM_REPORTER'
harmony.usermgt.create_role_to_user_assignment('JBOYLE', 'BAM_REPORTER', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JBOYLE/BAM_REPORTER
harmony.usermgt.create_dds_item_assignment('JBOYLE', 'BAM_REPORTER', 'BAM Region', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'JBOYLE/HERMES_CMEFF_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('JBOYLE', 'HERMES_CMEFF_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JBOYLE/HERMES_CMEFF_REP_CTR
harmony.usermgt.create_dds_item_assignment('JBOYLE', 'HERMES_CMEFF_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'JBOYLE/HERMES_GRP_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('JBOYLE', 'HERMES_GRP_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JBOYLE/HERMES_GRP_REP_CTR
harmony.usermgt.create_dds_item_assignment('JBOYLE', 'HERMES_GRP_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'JBOYLE/HERMES_IDTXN_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('JBOYLE', 'HERMES_IDTXN_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JBOYLE/HERMES_IDTXN_REP_CTR
harmony.usermgt.create_dds_item_assignment('JBOYLE', 'HERMES_IDTXN_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'JBOYLE/HERMES_STAT_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('JBOYLE', 'HERMES_STAT_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JBOYLE/HERMES_STAT_REP_CTR
harmony.usermgt.create_dds_item_assignment('JBOYLE', 'HERMES_STAT_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'JBOYLE/HERMES_STS_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('JBOYLE', 'HERMES_STS_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JBOYLE/HERMES_STS_REP_CTR
harmony.usermgt.create_dds_item_assignment('JBOYLE', 'HERMES_STS_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'JBOYLE/HERMES_SYM_REC_CTR'
harmony.usermgt.create_role_to_user_assignment('JBOYLE', 'HERMES_SYM_REC_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JBOYLE/HERMES_SYM_REC_CTR
harmony.usermgt.create_dds_item_assignment('JBOYLE', 'HERMES_SYM_REC_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'JBOYLE/HERMES_TXN_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('JBOYLE', 'HERMES_TXN_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JBOYLE/HERMES_TXN_REP_CTR
harmony.usermgt.create_dds_item_assignment('JBOYLE', 'HERMES_TXN_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'JBOYLE/HERMES_VAVO_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('JBOYLE', 'HERMES_VAVO_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JBOYLE/HERMES_VAVO_REP_CTR
harmony.usermgt.create_dds_item_assignment('JBOYLE', 'HERMES_VAVO_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'JBOYLE/H_EFS2_CTR_REP'
harmony.usermgt.create_role_to_user_assignment('JBOYLE', 'H_EFS2_CTR_REP', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'JBOYLE/H_EFS2_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('JBOYLE', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JBOYLE/H_EFS2_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('JBOYLE', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '270', sysdate, null);
-- Inserting RoleToUserAssignment 'JBOYLE/H_NETTING_CTR_REP'
harmony.usermgt.create_role_to_user_assignment('JBOYLE', 'H_NETTING_CTR_REP', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'JBOYLE/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('JBOYLE', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JBOYLE/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('JBOYLE', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[97/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBOYLE', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[437/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBOYLE', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[428/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBOYLE', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[409/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBOYLE', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11351/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBOYLE', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[101/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBOYLE', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[100/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JBOYLE/H_SWIFTCOM_RELEASER'
harmony.usermgt.create_role_to_user_assignment('JBOYLE', 'H_SWIFTCOM_RELEASER', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JBOYLE/H_SWIFTCOM_RELEASER
harmony.usermgt.create_dds_item_assignment('JBOYLE', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '13', sysdate, null);
-- Inserting RoleToUserAssignment 'JBOYLE/H_TOPS_CNTRP_EXP_REP'
harmony.usermgt.create_role_to_user_assignment('JBOYLE', 'H_TOPS_CNTRP_EXP_REP', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'JBOYLE/H_TPP_CTR_REP'
harmony.usermgt.create_role_to_user_assignment('JBOYLE', 'H_TPP_CTR_REP', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'JBOYLE/H_TPP_LOC_REP'
harmony.usermgt.create_role_to_user_assignment('JBOYLE', 'H_TPP_LOC_REP', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JBOYLE/H_TPP_LOC_REP
harmony.usermgt.create_dds_item_assignment('JBOYLE', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '34', sysdate, null);
-- Inserting RoleToUserAssignment 'JBRECKO/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('JBRECKO', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JBRECKO/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('JBRECKO', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[348/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBRECKO', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[342/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JBRECKO/H_TPP_P2P_REPORT'
harmony.usermgt.create_role_to_user_assignment('JBRECKO', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JBRECKO/H_TPP_P2P_REPORT
harmony.usermgt.create_dds_item_assignment('JBRECKO', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '307', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBRECKO', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '306', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBRECKO', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '305', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBRECKO', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '277', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBRECKO', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '272', sysdate, null);
-- Inserting RoleToUserAssignment 'JBUNDOC/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('JBUNDOC', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JBUNDOC/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('JBUNDOC', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11681/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JBUNDOC/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('JBUNDOC', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JBUNDOC/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('JBUNDOC', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[406/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JBURNS3/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('JBURNS3', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JBURNS3/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('JBURNS3', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[49/CC]', sysdate, null);
-- Inserting RoleToUserAssignment 'JBUSCHME/H_EFS2_LOC_REP_PARTY'
harmony.usermgt.create_role_to_user_assignment('JBUSCHME', 'H_EFS2_LOC_REP_PARTY', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JBUSCHME/H_EFS2_LOC_REP_PARTY
harmony.usermgt.create_dds_item_assignment('JBUSCHME', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '344', sysdate, null);
-- Inserting RoleToUserAssignment 'JBUSCHME/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('JBUSCHME', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JBUSCHME/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('JBUSCHME', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[432/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBUSCHME', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11750/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JBUSCHME/H_TPP_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('JBUSCHME', 'H_TPP_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JBUSCHME/H_TPP_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('JBUSCHME', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '48', sysdate, null);
-- Inserting RoleToUserAssignment 'JBUSCHME/H_TPP_LOC_REP'
harmony.usermgt.create_role_to_user_assignment('JBUSCHME', 'H_TPP_LOC_REP', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JBUSCHME/H_TPP_LOC_REP
harmony.usermgt.create_dds_item_assignment('JBUSCHME', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '72', sysdate, null);
-- Inserting RoleToUserAssignment 'JBUZALEW/H_EFS2_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('JBUZALEW', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JBUZALEW/H_EFS2_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('JBUZALEW', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '582', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JBUZALEW', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '270', sysdate, null);
-- Inserting RoleToUserAssignment 'JCAHANAP/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JCAHANAP', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JCAHANAP/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('JCAHANAP', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999745', sysdate, null);
-- Inserting RoleToUserAssignment 'JCAHANAP/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JCAHANAP', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JCAHANAP/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('JCAHANAP', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999745', sysdate, null);
-- Inserting RoleToUserAssignment 'JCAHANAP/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('JCAHANAP', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JCAHANAP/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('JCAHANAP', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[178/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCAHANAP', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[131/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCAHANAP', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[130/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCAHANAP', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[129/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCAHANAP', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[128/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCAHANAP', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11661/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCAHANAP', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11536/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCAHANAP', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[102/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JCAHANAP/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('JCAHANAP', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JCAHANAP/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('JCAHANAP', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[88/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCAHANAP', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[116/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JCAHANAP/H_TPP_LOC_REP'
harmony.usermgt.create_role_to_user_assignment('JCAHANAP', 'H_TPP_LOC_REP', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JCAHANAP/H_TPP_LOC_REP
harmony.usermgt.create_dds_item_assignment('JCAHANAP', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '71', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCAHANAP', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '29', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCAHANAP', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '233', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCAHANAP', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '13', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCAHANAP', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '12', sysdate, null);
-- Inserting RoleToUserAssignment 'JCAHANAP/H_TPP_P2P_REPORT'
harmony.usermgt.create_role_to_user_assignment('JCAHANAP', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JCAHANAP/H_TPP_P2P_REPORT
harmony.usermgt.create_dds_item_assignment('JCAHANAP', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '302', sysdate, null);
-- Inserting RoleToUserAssignment 'JCAPULI/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('JCAPULI', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JCAPULI/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('JCAPULI', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[5001/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JCAPULI/H_TPP_LOC_REP'
harmony.usermgt.create_role_to_user_assignment('JCAPULI', 'H_TPP_LOC_REP', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JCAPULI/H_TPP_LOC_REP
harmony.usermgt.create_dds_item_assignment('JCAPULI', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '33', sysdate, null);
-- Inserting RoleToUserAssignment 'JCASTR18/H_EFS2_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('JCASTR18', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JCASTR18/H_EFS2_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('JCASTR18', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '439', sysdate, null);
-- Inserting RoleToUserAssignment 'JCHOI26/H_EFS2_LOC_REP_PARTY'
harmony.usermgt.create_role_to_user_assignment('JCHOI26', 'H_EFS2_LOC_REP_PARTY', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JCHOI26/H_EFS2_LOC_REP_PARTY
harmony.usermgt.create_dds_item_assignment('JCHOI26', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '582', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCHOI26', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '270', sysdate, null);
-- Inserting RoleToUserAssignment 'JCLAUDIO1/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('JCLAUDIO1', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JCLAUDIO1/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('JCLAUDIO1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11749/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JCOCHRA1/H_EFS2_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('JCOCHRA1', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JCOCHRA1/H_EFS2_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('JCOCHRA1', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '268', sysdate, null);
-- Inserting RoleToUserAssignment 'JCOPPIE1/HERMES_CMEFF_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('JCOPPIE1', 'HERMES_CMEFF_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JCOPPIE1/HERMES_CMEFF_REP_CTR
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'HERMES_CMEFF_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'JCOPPIE1/HERMES_GRP_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('JCOPPIE1', 'HERMES_GRP_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JCOPPIE1/HERMES_GRP_REP_CTR
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'HERMES_GRP_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'JCOPPIE1/HERMES_IDTXN_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('JCOPPIE1', 'HERMES_IDTXN_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JCOPPIE1/HERMES_IDTXN_REP_CTR
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'HERMES_IDTXN_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'JCOPPIE1/HERMES_STAT_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('JCOPPIE1', 'HERMES_STAT_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JCOPPIE1/HERMES_STAT_REP_CTR
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'HERMES_STAT_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'JCOPPIE1/HERMES_STS_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('JCOPPIE1', 'HERMES_STS_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JCOPPIE1/HERMES_STS_REP_CTR
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'HERMES_STS_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'JCOPPIE1/HERMES_SYM_REC_CTR'
harmony.usermgt.create_role_to_user_assignment('JCOPPIE1', 'HERMES_SYM_REC_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JCOPPIE1/HERMES_SYM_REC_CTR
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'HERMES_SYM_REC_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'JCOPPIE1/HERMES_TXN_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('JCOPPIE1', 'HERMES_TXN_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JCOPPIE1/HERMES_TXN_REP_CTR
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'HERMES_TXN_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'JCOPPIE1/HERMES_VAVO_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('JCOPPIE1', 'HERMES_VAVO_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JCOPPIE1/HERMES_VAVO_REP_CTR
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'HERMES_VAVO_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'JCOPPIE1/H_AGENT_IHB_MGR'
harmony.usermgt.create_role_to_user_assignment('JCOPPIE1', 'H_AGENT_IHB_MGR', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'JCOPPIE1/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JCOPPIE1/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[94/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[93/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[91/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[89/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[88/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[58/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[47/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[439/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[438/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[434/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[411/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[397/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[38/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[348/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[344/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[342/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[288/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[286/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[281/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[276/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[268/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[267/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[266/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[264/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[263/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[254/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[253/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[246/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[244/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[238/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[237/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[232/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[229/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[225/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[219/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[218/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[217/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[215/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[208/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[207/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[190/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[179/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[178/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[177/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[176/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[175/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[174/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[173/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[172/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[171/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[170/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[169/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[161/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[160/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[159/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[156/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[155/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[154/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[153/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[147/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[146/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[144/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[141/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[140/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[131/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[130/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[129/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[127/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11991/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11981/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11973/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11927/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11924/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11919/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11918/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11917/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11881/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11865/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11862/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11847/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11417/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11409/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[114/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11385/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11362/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11358/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11357/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11349/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11342/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11334/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11327/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11319/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11272/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11260/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11237/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11235/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11234/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11233/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11232/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11230/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11218/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11217/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11216/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11212/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11080/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11072/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11070/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11061/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11015/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[109/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[108/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[107/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[106/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[105/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[104/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[103/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[102/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11091/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[111/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11106/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11130/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11147/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11148/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11153/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11178/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11184/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11194/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11195/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[112/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11436/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11495/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[115/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11536/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11537/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11543/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11562/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11566/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11575/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11580/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11582/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[116/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11627/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11628/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11629/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11635/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11637/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11654/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11655/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11661/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11670/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11695/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11697/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11699/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[117/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11710/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11713/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11737/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11753/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11755/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11756/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11761/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11764/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11767/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11769/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11771/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11780/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11783/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11785/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11805/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11818/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11820/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11825/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11841/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11842/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11843/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11844/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11846/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JCOPPIE1/H_NETTING_LOC_INP_TC'
harmony.usermgt.create_role_to_user_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_TC', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JCOPPIE1/H_NETTING_LOC_INP_TC
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_TC', 'Treasury Center Netting Participant', 'ONE', '[223/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_INP_TC', 'Treasury Center Netting Participant', 'ONE', '[222/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JCOPPIE1/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('JCOPPIE1', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JCOPPIE1/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[49/CC]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[142/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11998/CC]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11356/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11687/CC]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11688/CC]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11689/CC]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11741/CC]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11743/CC]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11744/CC]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11745/CC]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11790/CC]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11831/CC]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11978/CC]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11985/CC]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11997/CC]', sysdate, null);
-- Inserting RoleToUserAssignment 'JCOPPIE1/H_NETTING_LOC_REP_TC'
harmony.usermgt.create_role_to_user_assignment('JCOPPIE1', 'H_NETTING_LOC_REP_TC', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JCOPPIE1/H_NETTING_LOC_REP_TC
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[7/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[233/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[11486/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[11120/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[1/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JCOPPIE1/H_SWIFTCOM_REPORTER'
harmony.usermgt.create_role_to_user_assignment('JCOPPIE1', 'H_SWIFTCOM_REPORTER', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JCOPPIE1/H_SWIFTCOM_REPORTER
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_SWIFTCOM_REPORTER', 'SWIFTCOM FM Source', 'ONE', '14', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JCOPPIE1', 'H_SWIFTCOM_REPORTER', 'SWIFTCOM FM Source', 'ONE', '13', sysdate, null);
-- Inserting RoleToUserAssignment 'JCOPPIE1/H_TPP_CTR_REP'
harmony.usermgt.create_role_to_user_assignment('JCOPPIE1', 'H_TPP_CTR_REP', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'JCUMLAT/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('JCUMLAT', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JCUMLAT/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('JCUMLAT', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[168/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JCUMLAT/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('JCUMLAT', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JCUMLAT/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('JCUMLAT', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[168/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JCZERNIA/H_GXRS_CALL_CENTER'
harmony.usermgt.create_role_to_user_assignment('JCZERNIA', 'H_GXRS_CALL_CENTER', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'JDCLIPPE/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JDCLIPPE', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JDCLIPPE/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('JDCLIPPE', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999793', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JDCLIPPE', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999791', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JDCLIPPE', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999790', sysdate, null);
-- Inserting RoleToUserAssignment 'JDCLIPPE/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JDCLIPPE', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JDCLIPPE/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('JDCLIPPE', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999793', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JDCLIPPE', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999791', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JDCLIPPE', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999790', sysdate, null);
-- Inserting RoleToUserAssignment 'JDCLIPPE/H_EFS2_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('JDCLIPPE', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JDCLIPPE/H_EFS2_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('JDCLIPPE', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '453', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JDCLIPPE', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '452', sysdate, null);
-- Inserting RoleToUserAssignment 'JDCLIPPE/H_EFS2_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('JDCLIPPE', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JDCLIPPE/H_EFS2_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('JDCLIPPE', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '453', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JDCLIPPE', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '452', sysdate, null);
-- Inserting RoleToUserAssignment 'JDCLIPPE/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('JDCLIPPE', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JDCLIPPE/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('JDCLIPPE', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[288/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JDCLIPPE', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11091/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JDELGA26/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JDELGA26', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JDELGA26/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('JDELGA26', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999662', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JDELGA26', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999203', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JDELGA26', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998979', sysdate, null);
-- Inserting RoleToUserAssignment 'JDELGA26/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JDELGA26', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JDELGA26/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('JDELGA26', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999662', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JDELGA26', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999203', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JDELGA26', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998979', sysdate, null);
-- Inserting RoleToUserAssignment 'JDELGAD2/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('JDELGAD2', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JDELGAD2/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('JDELGAD2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[32/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JDELGAD2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[196/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JDENUNZI/H_EFS2_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('JDENUNZI', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JDENUNZI/H_EFS2_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('JDENUNZI', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '268', sysdate, null);
-- Inserting RoleToUserAssignment 'JDENUNZI/H_EFS2_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('JDENUNZI', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JDENUNZI/H_EFS2_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('JDENUNZI', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '268', sysdate, null);
-- Inserting RoleToUserAssignment 'JDEVILL2/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JDEVILL2', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JDEVILL2/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('JDEVILL2', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999074', sysdate, null);
-- Inserting RoleToUserAssignment 'JDEVILL2/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JDEVILL2', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JDEVILL2/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('JDEVILL2', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999074', sysdate, null);
-- Inserting RoleToUserAssignment 'JDIAZARR/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('JDIAZARR', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JDIAZARR/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('JDIAZARR', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[33/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JDIAZARR', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11749/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JDIAZSEL/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('JDIAZSEL', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JDIAZSEL/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('JDIAZSEL', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11113/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JDJORDJE/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JDJORDJE', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JDJORDJE/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('JDJORDJE', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999888', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JDJORDJE', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999884', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JDJORDJE', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999751', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JDJORDJE', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999746', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JDJORDJE', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999008', sysdate, null);
-- Inserting RoleToUserAssignment 'JDJORDJE/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JDJORDJE', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JDJORDJE/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('JDJORDJE', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999888', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JDJORDJE', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999884', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JDJORDJE', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999751', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JDJORDJE', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999746', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JDJORDJE', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999008', sysdate, null);
-- Inserting RoleToUserAssignment 'JDJORDJE/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('JDJORDJE', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JDJORDJE/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('JDJORDJE', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[38/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JDJORDJE', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[215/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JDJORDJE', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[117/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JDJORDJE', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11436/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JDJORDJE', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[114/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JDJORDJE', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[112/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JDJORDJE/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('JDJORDJE', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JDJORDJE/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('JDJORDJE', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11436/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JDJORDJE/H_TPP_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('JDJORDJE', 'H_TPP_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JDJORDJE/H_TPP_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('JDJORDJE', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '23', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JDJORDJE', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '21', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JDJORDJE', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '20', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JDJORDJE', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '19', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JDJORDJE', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '18', sysdate, null);
-- Inserting RoleToUserAssignment 'JDJORDJE/H_TPP_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('JDJORDJE', 'H_TPP_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JDJORDJE/H_TPP_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('JDJORDJE', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '23', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JDJORDJE', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '21', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JDJORDJE', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '20', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JDJORDJE', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '19', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JDJORDJE', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '18', sysdate, null);
-- Inserting RoleToUserAssignment 'JDJORDJE/H_TPP_P2P_REPORT'
harmony.usermgt.create_role_to_user_assignment('JDJORDJE', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JDJORDJE/H_TPP_P2P_REPORT
harmony.usermgt.create_dds_item_assignment('JDJORDJE', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '294', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JDJORDJE', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '291', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JDJORDJE', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '290', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JDJORDJE', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '289', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JDJORDJE', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '288', sysdate, null);
-- Inserting RoleToUserAssignment 'JDOUGHE2/H_EFS2_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('JDOUGHE2', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JDOUGHE2/H_EFS2_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('JDOUGHE2', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '696', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JDOUGHE2', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '695', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JDOUGHE2', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '693', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JDOUGHE2', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '692', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JDOUGHE2', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '691', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JDOUGHE2', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '690', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JDOUGHE2', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '689', sysdate, null);
-- Inserting RoleToUserAssignment 'JDOUGHE2/H_EFS2_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('JDOUGHE2', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JDOUGHE2/H_EFS2_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('JDOUGHE2', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '696', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JDOUGHE2', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '695', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JDOUGHE2', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '693', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JDOUGHE2', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '692', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JDOUGHE2', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '691', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JDOUGHE2', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '690', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JDOUGHE2', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '689', sysdate, null);
-- Inserting RoleToUserAssignment 'JDOUGHE2/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('JDOUGHE2', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JDOUGHE2/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('JDOUGHE2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11847/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JDOUGHE2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11846/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JDOUGHE2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11843/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JDOUGHE2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11841/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JDOUGHE2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11838/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JDOUGHE2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11837/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JDOUGHE2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11836/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JDOUGHE2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11835/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JDOUGHE2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11834/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JDOUGHE2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11833/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JDOUGHE2/H_TPP_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('JDOUGHE2', 'H_TPP_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JDOUGHE2/H_TPP_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('JDOUGHE2', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '384', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JDOUGHE2', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '383', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JDOUGHE2', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '382', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JDOUGHE2', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '381', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JDOUGHE2', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '380', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JDOUGHE2', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '379', sysdate, null);
-- Inserting RoleToUserAssignment 'JDOUGHE2/H_TPP_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('JDOUGHE2', 'H_TPP_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JDOUGHE2/H_TPP_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('JDOUGHE2', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '384', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JDOUGHE2', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '383', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JDOUGHE2', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '382', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JDOUGHE2', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '381', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JDOUGHE2', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '380', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JDOUGHE2', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '379', sysdate, null);
-- Inserting RoleToUserAssignment 'JESCABEL/H_TPP_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('JESCABEL', 'H_TPP_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JESCABEL/H_TPP_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('JESCABEL', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '147', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JESCABEL', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '195', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JESCABEL', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '233', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JESCABEL', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '29', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JESCABEL', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '358', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JESCABEL', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '374', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JESCABEL', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '375', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JESCABEL', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '376', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JESCABEL', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '377', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JESCABEL', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '44', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JESCABEL', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '45', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JESCABEL', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '51', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JESCABEL', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '65', sysdate, null);
-- Inserting RoleToUserAssignment 'JESCABEL/H_TPP_P2P_OFFERMGT'
harmony.usermgt.create_role_to_user_assignment('JESCABEL', 'H_TPP_P2P_OFFERMGT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JESCABEL/H_TPP_P2P_OFFERMGT
harmony.usermgt.create_dds_item_assignment('JESCABEL', 'H_TPP_P2P_OFFERMGT', 'TPP AP2PLE OC', 'ONE', '120', sysdate, null);
-- Inserting RoleToUserAssignment 'JESCABEL/H_TPP_P2P_REPORT'
harmony.usermgt.create_role_to_user_assignment('JESCABEL', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JESCABEL/H_TPP_P2P_REPORT
harmony.usermgt.create_dds_item_assignment('JESCABEL', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '191', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JESCABEL', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '148', sysdate, null);
-- Inserting RoleToUserAssignment 'JFALCON2/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JFALCON2', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JFALCON2/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('JFALCON2', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998894', sysdate, null);
-- Inserting RoleToUserAssignment 'JFALCON2/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JFALCON2', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JFALCON2/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('JFALCON2', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998894', sysdate, null);
-- Inserting RoleToUserAssignment 'JFALCON2/H_EFS2_LOC_REP_PARTY'
harmony.usermgt.create_role_to_user_assignment('JFALCON2', 'H_EFS2_LOC_REP_PARTY', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JFALCON2/H_EFS2_LOC_REP_PARTY
harmony.usermgt.create_dds_item_assignment('JFALCON2', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '648', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JFALCON2', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '468', sysdate, null);
-- Inserting RoleToUserAssignment 'JFALCON2/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('JFALCON2', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JFALCON2/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('JFALCON2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11927/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JFALCON2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11919/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JFALCON2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11918/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JFALCON2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11820/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JFALCON2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11818/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JFALSTRA/H_EFS2_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('JFALSTRA', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JFALSTRA/H_EFS2_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('JFALSTRA', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '263', sysdate, null);
-- Inserting RoleToUserAssignment 'JFARREL1/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JFARREL1', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JFARREL1/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('JFARREL1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999080', sysdate, null);
-- Inserting RoleToUserAssignment 'JFARREL1/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JFARREL1', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JFARREL1/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('JFARREL1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999080', sysdate, null);
-- Inserting RoleToUserAssignment 'JFARREL1/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('JFARREL1', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JFARREL1/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('JFARREL1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11277/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JFARREL1/H_TPP_P2P_REPORT'
harmony.usermgt.create_role_to_user_assignment('JFARREL1', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JFARREL1/H_TPP_P2P_REPORT
harmony.usermgt.create_dds_item_assignment('JFARREL1', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '256', sysdate, null);
-- Inserting RoleToUserAssignment 'JFATKOV1/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JFATKOV1', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JFATKOV1/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('JFATKOV1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999891', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JFATKOV1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999857', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JFATKOV1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999665', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JFATKOV1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999652', sysdate, null);
-- Inserting RoleToUserAssignment 'JFATKOV1/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JFATKOV1', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JFATKOV1/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('JFATKOV1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999891', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JFATKOV1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999857', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JFATKOV1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999665', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JFATKOV1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999652', sysdate, null);
-- Inserting RoleToUserAssignment 'JFECSKOV/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JFECSKOV', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JFECSKOV/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('JFECSKOV', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999392', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JFECSKOV', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999391', sysdate, null);
-- Inserting RoleToUserAssignment 'JFECSKOV/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JFECSKOV', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JFECSKOV/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('JFECSKOV', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999392', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JFECSKOV', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999391', sysdate, null);
-- Inserting RoleToUserAssignment 'JFECSKOV/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('JFECSKOV', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JFECSKOV/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('JFECSKOV', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[52/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JFECSKOV', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[42/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JFECSKOV', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11335/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JFECSKOV', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11113/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JFENTO/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JFENTO', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JFENTO/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('JFENTO', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999080', sysdate, null);
-- Inserting RoleToUserAssignment 'JFENTO/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JFENTO', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JFENTO/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('JFENTO', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999080', sysdate, null);
-- Inserting RoleToUserAssignment 'JFENTO/H_EFS2_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('JFENTO', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JFENTO/H_EFS2_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('JFENTO', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '628', sysdate, null);
-- Inserting RoleToUserAssignment 'JFENTO/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('JFENTO', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JFENTO/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('JFENTO', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11371/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JFENTO', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11277/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JFLEETWO/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JFLEETWO', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JFLEETWO/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('JFLEETWO', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999409', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JFLEETWO', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998892', sysdate, null);
-- Inserting RoleToUserAssignment 'JFLEETWO/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JFLEETWO', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JFLEETWO/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('JFLEETWO', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999409', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JFLEETWO', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998892', sysdate, null);
-- Inserting RoleToUserAssignment 'JFLEETWO/H_EFS2_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('JFLEETWO', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JFLEETWO/H_EFS2_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('JFLEETWO', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '694', sysdate, null);
-- Inserting RoleToUserAssignment 'JFLEETWO/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('JFLEETWO', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JFLEETWO/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('JFLEETWO', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[238/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JFLEETWO', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11655/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JFLEETWO', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11654/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JFRITZEL1/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('JFRITZEL1', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JFRITZEL1/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('JFRITZEL1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11769/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JGAPUD/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JGAPUD', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JGAPUD/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('JGAPUD', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999864', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JGAPUD', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999141', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JGAPUD', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998932', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JGAPUD', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '200010', sysdate, null);
-- Inserting RoleToUserAssignment 'JGAPUD/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JGAPUD', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JGAPUD/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('JGAPUD', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999864', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JGAPUD', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999141', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JGAPUD', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998932', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JGAPUD', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '200010', sysdate, null);
-- Inserting RoleToUserAssignment 'JGAPUD/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('JGAPUD', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JGAPUD/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('JGAPUD', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[156/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JGAPUD', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11753/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JGAPUD', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[102/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JGAPUD/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('JGAPUD', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JGAPUD/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('JGAPUD', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11753/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JGAPUD/H_TPP_LOC_REP'
harmony.usermgt.create_role_to_user_assignment('JGAPUD', 'H_TPP_LOC_REP', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JGAPUD/H_TPP_LOC_REP
harmony.usermgt.create_dds_item_assignment('JGAPUD', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '71', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JGAPUD', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '13', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JGAPUD', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '12', sysdate, null);
-- Inserting RoleToUserAssignment 'JGAPUD/H_TPP_P2P_REPORT'
harmony.usermgt.create_role_to_user_assignment('JGAPUD', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JGAPUD/H_TPP_P2P_REPORT
harmony.usermgt.create_dds_item_assignment('JGAPUD', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '343', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JGAPUD', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '191', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JGAPUD', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '148', sysdate, null);
-- Inserting RoleToUserAssignment 'JGARCI10/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('JGARCI10', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JGARCI10/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('JGARCI10', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11810/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JGARCI10', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11809/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JGARCI10', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11736/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JGARCI10/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('JGARCI10', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JGARCI10/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('JGARCI10', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11810/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JGARCI10', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11809/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JGARCI10', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11736/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JGEBAUER/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JGEBAUER', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JGEBAUER/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('JGEBAUER', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999662', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JGEBAUER', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998979', sysdate, null);
-- Inserting RoleToUserAssignment 'JGEBAUER/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JGEBAUER', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JGEBAUER/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('JGEBAUER', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999662', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JGEBAUER', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998979', sysdate, null);
-- Inserting RoleToUserAssignment 'JGEBAUER/H_TPP_LOC_REP'
harmony.usermgt.create_role_to_user_assignment('JGEBAUER', 'H_TPP_LOC_REP', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JGEBAUER/H_TPP_LOC_REP
harmony.usermgt.create_dds_item_assignment('JGEBAUER', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '54', sysdate, null);
-- Inserting RoleToUserAssignment 'JGEBAUER/H_TPP_P2P_REPORT'
harmony.usermgt.create_role_to_user_assignment('JGEBAUER', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JGEBAUER/H_TPP_P2P_REPORT
harmony.usermgt.create_dds_item_assignment('JGEBAUER', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '332', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JGEBAUER', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '330', sysdate, null);
-- Inserting RoleToUserAssignment 'JGEORGIE/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JGEORGIE', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JGEORGIE/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('JGEORGIE', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999662', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JGEORGIE', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999203', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JGEORGIE', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998979', sysdate, null);
-- Inserting RoleToUserAssignment 'JGEORGIE/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JGEORGIE', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JGEORGIE/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('JGEORGIE', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999662', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JGEORGIE', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999203', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JGEORGIE', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998979', sysdate, null);
-- Inserting RoleToUserAssignment 'JGLADINE/H_EFS2_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('JGLADINE', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JGLADINE/H_EFS2_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('JGLADINE', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '489', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JGLADINE', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '453', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JGLADINE', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '452', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JGLADINE', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '362', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JGLADINE', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '361', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JGLADINE', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '279', sysdate, null);
-- Inserting RoleToUserAssignment 'JGLADINE/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('JGLADINE', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JGLADINE/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('JGLADINE', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[93/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JGLENIST/HERMES_STAT_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('JGLENIST', 'HERMES_STAT_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JGLENIST/HERMES_STAT_REP_CTR
harmony.usermgt.create_dds_item_assignment('JGLENIST', 'HERMES_STAT_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'JGLENIST/H_COMMONS_REPORTER'
harmony.usermgt.create_role_to_user_assignment('JGLENIST', 'H_COMMONS_REPORTER', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'JGLENIST/H_DLINK_FX_MANAGER'
harmony.usermgt.create_role_to_user_assignment('JGLENIST', 'H_DLINK_FX_MANAGER', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'JGLENIST/H_DLINK_KEY_USER'
harmony.usermgt.create_role_to_user_assignment('JGLENIST', 'H_DLINK_KEY_USER', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'JGLENIST/H_EFS2_KEY_USER'
harmony.usermgt.create_role_to_user_assignment('JGLENIST', 'H_EFS2_KEY_USER', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'JGLENIST/H_HEDGING_KEY_USER'
harmony.usermgt.create_role_to_user_assignment('JGLENIST', 'H_HEDGING_KEY_USER', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'JGLENIST/H_SWIFTCOM_RELEASER'
harmony.usermgt.create_role_to_user_assignment('JGLENIST', 'H_SWIFTCOM_RELEASER', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JGLENIST/H_SWIFTCOM_RELEASER
harmony.usermgt.create_dds_item_assignment('JGLENIST', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '9', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JGLENIST', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '8', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JGLENIST', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '6', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JGLENIST', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '5', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JGLENIST', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '4', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JGLENIST', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '2', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JGLENIST', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '1', sysdate, null);
-- Inserting RoleToUserAssignment 'JGRAHAM2/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('JGRAHAM2', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JGRAHAM2/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('JGRAHAM2', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11497/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JGRANGE2/H_EFS2_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('JGRANGE2', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JGRANGE2/H_EFS2_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('JGRANGE2', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '658', sysdate, null);
-- Inserting RoleToUserAssignment 'JHAJEK/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('JHAJEK', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JHAJEK/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('JHAJEK', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11881/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JHAJEK', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11780/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JHAJEK', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11707/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JHAJEK', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[115/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JHAN/H_EFS2_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('JHAN', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JHAN/H_EFS2_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('JHAN', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '688', sysdate, null);
-- Inserting RoleToUserAssignment 'JHARVEY4/H_TPP_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('JHARVEY4', 'H_TPP_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JHARVEY4/H_TPP_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('JHARVEY4', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '77', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JHARVEY4', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '76', sysdate, null);
-- Inserting RoleToUserAssignment 'JHEDENST/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JHEDENST', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JHEDENST/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('JHEDENST', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999361', sysdate, null);
-- Inserting RoleToUserAssignment 'JHEDENST/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JHEDENST', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JHEDENST/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('JHEDENST', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999361', sysdate, null);
-- Inserting RoleToUserAssignment 'JHEDENST/H_TPP_P2P_OFFERAUTH'
harmony.usermgt.create_role_to_user_assignment('JHEDENST', 'H_TPP_P2P_OFFERAUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JHEDENST/H_TPP_P2P_OFFERAUTH
harmony.usermgt.create_dds_item_assignment('JHEDENST', 'H_TPP_P2P_OFFERAUTH', 'TPP AP2PLE OC', 'ONE', '190', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JHEDENST', 'H_TPP_P2P_OFFERAUTH', 'TPP AP2PLE OC', 'ONE', '187', sysdate, null);
-- Inserting RoleToUserAssignment 'JHENCHMA/H_EFS2_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('JHENCHMA', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JHENCHMA/H_EFS2_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('JHENCHMA', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '481', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JHENCHMA', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '461', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JHENCHMA', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '305', sysdate, null);
-- Inserting RoleToUserAssignment 'JHENCHMA/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('JHENCHMA', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JHENCHMA/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('JHENCHMA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11327/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JHENCHMA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11178/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JHENCHMA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11194/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JHENCHMA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11195/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JHENCHMA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11216/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JHENCHMA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11217/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JHENCHMA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11218/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JHENCHMA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11230/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JHENCHMA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11232/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JHENCHMA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11233/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JHENCHMA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11234/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JHENCHMA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11235/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JHENCHMA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11237/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JHENCHMA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11260/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JHUANG65/H_EFS2_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('JHUANG65', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JHUANG65/H_EFS2_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('JHUANG65', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '607', sysdate, null);
-- Inserting RoleToUserAssignment 'JHUSAKOV/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JHUSAKOV', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JHUSAKOV/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('JHUSAKOV', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999898', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JHUSAKOV', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999897', sysdate, null);
-- Inserting RoleToUserAssignment 'JHUSAKOV/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JHUSAKOV', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JHUSAKOV/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('JHUSAKOV', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999898', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JHUSAKOV', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999897', sysdate, null);
-- Inserting RoleToUserAssignment 'JHUSAKOV/H_EFS2_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('JHUSAKOV', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JHUSAKOV/H_EFS2_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('JHUSAKOV', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '341', sysdate, null);
-- Inserting RoleToUserAssignment 'JHUSAKOV/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('JHUSAKOV', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JHUSAKOV/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('JHUSAKOV', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[219/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JHUSAKOV', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11865/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JHUSAKOV', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11862/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JHUSAKOV', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11130/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JHUSAKOV/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('JHUSAKOV', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JHUSAKOV/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('JHUSAKOV', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[219/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JHUSAKOV', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11130/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JHUSAKOV/H_TPP_P2P_OFFERAUTH'
harmony.usermgt.create_role_to_user_assignment('JHUSAKOV', 'H_TPP_P2P_OFFERAUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JHUSAKOV/H_TPP_P2P_OFFERAUTH
harmony.usermgt.create_dds_item_assignment('JHUSAKOV', 'H_TPP_P2P_OFFERAUTH', 'TPP AP2PLE OC', 'ONE', '372', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JHUSAKOV', 'H_TPP_P2P_OFFERAUTH', 'TPP AP2PLE OC', 'ONE', '371', sysdate, null);
-- Inserting RoleToUserAssignment 'JHUSAKOV/H_TPP_P2P_OFFERMGT'
harmony.usermgt.create_role_to_user_assignment('JHUSAKOV', 'H_TPP_P2P_OFFERMGT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JHUSAKOV/H_TPP_P2P_OFFERMGT
harmony.usermgt.create_dds_item_assignment('JHUSAKOV', 'H_TPP_P2P_OFFERMGT', 'TPP AP2PLE OC', 'ONE', '372', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JHUSAKOV', 'H_TPP_P2P_OFFERMGT', 'TPP AP2PLE OC', 'ONE', '371', sysdate, null);
-- Inserting RoleToUserAssignment 'JILAGAN/H_TPP_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('JILAGAN', 'H_TPP_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JILAGAN/H_TPP_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('JILAGAN', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '54', sysdate, null);
-- Inserting RoleToUserAssignment 'JILAGAN/H_TPP_P2P_OFFERMGT'
harmony.usermgt.create_role_to_user_assignment('JILAGAN', 'H_TPP_P2P_OFFERMGT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JILAGAN/H_TPP_P2P_OFFERMGT
harmony.usermgt.create_dds_item_assignment('JILAGAN', 'H_TPP_P2P_OFFERMGT', 'TPP AP2PLE OC', 'ONE', '278', sysdate, null);
-- Inserting RoleToUserAssignment 'JJEAMBRU/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JJEAMBRU', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JJEAMBRU/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('JJEAMBRU', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999607', sysdate, null);
-- Inserting RoleToUserAssignment 'JJEAMBRU/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JJEAMBRU', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JJEAMBRU/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('JJEAMBRU', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999607', sysdate, null);
-- Inserting RoleToUserAssignment 'JJEAMBRU/H_EFS2_LOC_REP_PARTY'
harmony.usermgt.create_role_to_user_assignment('JJEAMBRU', 'H_EFS2_LOC_REP_PARTY', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JJEAMBRU/H_EFS2_LOC_REP_PARTY
harmony.usermgt.create_dds_item_assignment('JJEAMBRU', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '358', sysdate, null);
-- Inserting RoleToUserAssignment 'JJEAMBRU/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('JJEAMBRU', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JJEAMBRU/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('JJEAMBRU', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11917/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JJEAMBRU/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('JJEAMBRU', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JJEAMBRU/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('JJEAMBRU', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[263/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JJIRASEK/HERMES_STAT_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('JJIRASEK', 'HERMES_STAT_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JJIRASEK/HERMES_STAT_REP_CTR
harmony.usermgt.create_dds_item_assignment('JJIRASEK', 'HERMES_STAT_REP_CTR', 'Trax Account Groups', 'ONE', '11', sysdate, null);
-- Inserting RoleToUserAssignment 'JJIRASEK/HERMES_TXN_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('JJIRASEK', 'HERMES_TXN_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JJIRASEK/HERMES_TXN_REP_CTR
harmony.usermgt.create_dds_item_assignment('JJIRASEK', 'HERMES_TXN_REP_CTR', 'Trax Account Groups', 'ONE', '11', sysdate, null);
-- Inserting RoleToUserAssignment 'JJOHNS30/H_EFS2_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('JJOHNS30', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JJOHNS30/H_EFS2_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('JJOHNS30', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '619', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JJOHNS30', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '618', sysdate, null);
-- Inserting RoleToUserAssignment 'JJPEREZJ/H_EFS2_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('JJPEREZJ', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JJPEREZJ/H_EFS2_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('JJPEREZJ', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '621', sysdate, null);
-- Inserting RoleToUserAssignment 'JJURENCA/HERMES_STAT_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('JJURENCA', 'HERMES_STAT_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JJURENCA/HERMES_STAT_REP_CTR
harmony.usermgt.create_dds_item_assignment('JJURENCA', 'HERMES_STAT_REP_CTR', 'Trax Account Groups', 'ONE', '11', sysdate, null);
-- Inserting RoleToUserAssignment 'JJURENCA/HERMES_TXN_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('JJURENCA', 'HERMES_TXN_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JJURENCA/HERMES_TXN_REP_CTR
harmony.usermgt.create_dds_item_assignment('JJURENCA', 'HERMES_TXN_REP_CTR', 'Trax Account Groups', 'ONE', '11', sysdate, null);
-- Inserting RoleToUserAssignment 'JKANE1/BAM_MANAGER'
harmony.usermgt.create_role_to_user_assignment('JKANE1', 'BAM_MANAGER', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JKANE1/BAM_MANAGER
harmony.usermgt.create_dds_item_assignment('JKANE1', 'BAM_MANAGER', 'BAM Region', 'ONE', '1', sysdate, null);
-- Inserting RoleToUserAssignment 'JKANE1/BAM_REPORTER'
harmony.usermgt.create_role_to_user_assignment('JKANE1', 'BAM_REPORTER', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JKANE1/BAM_REPORTER
harmony.usermgt.create_dds_item_assignment('JKANE1', 'BAM_REPORTER', 'BAM Region', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'JKANE1/HERMES_CMEFF_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('JKANE1', 'HERMES_CMEFF_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JKANE1/HERMES_CMEFF_REP_CTR
harmony.usermgt.create_dds_item_assignment('JKANE1', 'HERMES_CMEFF_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'JKANE1/HERMES_GRP_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('JKANE1', 'HERMES_GRP_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JKANE1/HERMES_GRP_REP_CTR
harmony.usermgt.create_dds_item_assignment('JKANE1', 'HERMES_GRP_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'JKANE1/HERMES_IDTXN_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('JKANE1', 'HERMES_IDTXN_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JKANE1/HERMES_IDTXN_REP_CTR
harmony.usermgt.create_dds_item_assignment('JKANE1', 'HERMES_IDTXN_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'JKANE1/HERMES_STAT_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('JKANE1', 'HERMES_STAT_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JKANE1/HERMES_STAT_REP_CTR
harmony.usermgt.create_dds_item_assignment('JKANE1', 'HERMES_STAT_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'JKANE1/HERMES_STS_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('JKANE1', 'HERMES_STS_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JKANE1/HERMES_STS_REP_CTR
harmony.usermgt.create_dds_item_assignment('JKANE1', 'HERMES_STS_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'JKANE1/HERMES_SYM_REC_CTR'
harmony.usermgt.create_role_to_user_assignment('JKANE1', 'HERMES_SYM_REC_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JKANE1/HERMES_SYM_REC_CTR
harmony.usermgt.create_dds_item_assignment('JKANE1', 'HERMES_SYM_REC_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'JKANE1/HERMES_TXN_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('JKANE1', 'HERMES_TXN_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JKANE1/HERMES_TXN_REP_CTR
harmony.usermgt.create_dds_item_assignment('JKANE1', 'HERMES_TXN_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'JKANE1/HERMES_VAVO_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('JKANE1', 'HERMES_VAVO_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JKANE1/HERMES_VAVO_REP_CTR
harmony.usermgt.create_dds_item_assignment('JKANE1', 'HERMES_VAVO_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'JKANE1/H_EFS2_CTR_REP'
harmony.usermgt.create_role_to_user_assignment('JKANE1', 'H_EFS2_CTR_REP', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'JKANE1/H_EFS2_LOC_REP_PARTY'
harmony.usermgt.create_role_to_user_assignment('JKANE1', 'H_EFS2_LOC_REP_PARTY', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JKANE1/H_EFS2_LOC_REP_PARTY
harmony.usermgt.create_dds_item_assignment('JKANE1', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '270', sysdate, null);
-- Inserting RoleToUserAssignment 'JKANE1/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('JKANE1', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JKANE1/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('JKANE1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[97/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JKANE1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[63/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JKANE1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[60/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JKANE1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[55/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JKANE1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[27/CC]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JKANE1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[2/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JKANE1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11480/CC]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JKANE1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11463/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JKANE1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11456/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JKANE1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11361/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JKANE1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11351/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JKANE1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11348/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JKANE1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11343/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JKANE1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11316/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JKANE1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11113/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JKANE1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[101/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JKANE1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[100/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JKANE1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[284/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JKANE1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[31/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JKANE1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[32/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JKANE1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[33/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JKANE1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[37/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JKANE1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[39/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JKANE1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[409/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JKANE1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[41/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JKANE1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[42/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JKANE1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[428/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JKANE1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[437/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JKANE1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[45/CC]', sysdate, null);
-- Inserting RoleToUserAssignment 'JKANE1/H_SWIFTCOM_REPORTER'
harmony.usermgt.create_role_to_user_assignment('JKANE1', 'H_SWIFTCOM_REPORTER', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JKANE1/H_SWIFTCOM_REPORTER
harmony.usermgt.create_dds_item_assignment('JKANE1', 'H_SWIFTCOM_REPORTER', 'SWIFTCOM FM Source', 'ONE', '13', sysdate, null);
-- Inserting RoleToUserAssignment 'JKANE1/H_TOPS_CNTRP_EXP_REP'
harmony.usermgt.create_role_to_user_assignment('JKANE1', 'H_TOPS_CNTRP_EXP_REP', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'JKANE1/H_TPP_CTR_REP'
harmony.usermgt.create_role_to_user_assignment('JKANE1', 'H_TPP_CTR_REP', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'JKANE1/H_TPP_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('JKANE1', 'H_TPP_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JKANE1/H_TPP_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('JKANE1', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '34', sysdate, null);
-- Inserting RoleToUserAssignment 'JKANG9/H_EFS2_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('JKANG9', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JKANG9/H_EFS2_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('JKANG9', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '654', sysdate, null);
-- Inserting RoleToUserAssignment 'JKAY3/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JKAY3', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JKAY3/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('JKAY3', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998945', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JKAY3', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998906', sysdate, null);
-- Inserting RoleToUserAssignment 'JKAY3/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JKAY3', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JKAY3/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('JKAY3', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998945', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JKAY3', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998906', sysdate, null);
-- Inserting RoleToUserAssignment 'JKAY3/H_EFS2_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('JKAY3', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JKAY3/H_EFS2_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('JKAY3', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '670', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JKAY3', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '664', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JKAY3', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '662', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JKAY3', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '659', sysdate, null);
-- Inserting RoleToUserAssignment 'JKAY3/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('JKAY3', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JKAY3/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('JKAY3', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11767/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JKAY3', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11737/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JKAY3/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('JKAY3', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JKAY3/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('JKAY3', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11767/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JKAY3', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11737/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JKELLY47/H_EFS2_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('JKELLY47', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JKELLY47/H_EFS2_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('JKELLY47', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '618', sysdate, null);
-- Inserting RoleToUserAssignment 'JKELLY47/H_EFS2_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('JKELLY47', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JKELLY47/H_EFS2_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('JKELLY47', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '647', sysdate, null);
-- Inserting RoleToUserAssignment 'JKELLY47/H_EFS2_LOC_REP_PARTY'
harmony.usermgt.create_role_to_user_assignment('JKELLY47', 'H_EFS2_LOC_REP_PARTY', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JKELLY47/H_EFS2_LOC_REP_PARTY
harmony.usermgt.create_dds_item_assignment('JKELLY47', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '473', sysdate, null);
-- Inserting RoleToUserAssignment 'JKELLY47/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('JKELLY47', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JKELLY47/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('JKELLY47', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11670/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JKELLY47', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11147/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JKELLY47', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11080/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JKIM182/H_EFS2_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('JKIM182', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JKIM182/H_EFS2_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('JKIM182', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '389', sysdate, null);
-- Inserting RoleToUserAssignment 'JKIM54/H_EFS2_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('JKIM54', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JKIM54/H_EFS2_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('JKIM54', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '425', sysdate, null);
-- Inserting RoleToUserAssignment 'JKINOSHI/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('JKINOSHI', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JKINOSHI/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('JKINOSHI', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11211/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JKNOWLES/H_TPP_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('JKNOWLES', 'H_TPP_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JKNOWLES/H_TPP_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('JKNOWLES', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '27', sysdate, null);
-- Inserting RoleToUserAssignment 'JKNOWLES/H_TPP_P2P_OFFERAUTH'
harmony.usermgt.create_role_to_user_assignment('JKNOWLES', 'H_TPP_P2P_OFFERAUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JKNOWLES/H_TPP_P2P_OFFERAUTH
harmony.usermgt.create_dds_item_assignment('JKNOWLES', 'H_TPP_P2P_OFFERAUTH', 'TPP AP2PLE OC', 'ONE', '275', sysdate, null);
-- Inserting RoleToUserAssignment 'JKRALIKO/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JKRALIKO', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JKRALIKO/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('JKRALIKO', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999863', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JKRALIKO', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999862', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JKRALIKO', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999644', sysdate, null);
-- Inserting RoleToUserAssignment 'JKRALIKO/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JKRALIKO', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JKRALIKO/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('JKRALIKO', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999863', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JKRALIKO', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999862', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JKRALIKO', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999644', sysdate, null);
-- Inserting RoleToUserAssignment 'JKRALIKO/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('JKRALIKO', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JKRALIKO/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('JKRALIKO', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[94/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JKRALIKO', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[47/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JKRALIKO', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[154/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JKRALIKO', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11981/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JKRALIKO/H_TPP_LOC_REP'
harmony.usermgt.create_role_to_user_assignment('JKRALIKO', 'H_TPP_LOC_REP', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JKRALIKO/H_TPP_LOC_REP
harmony.usermgt.create_dds_item_assignment('JKRALIKO', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '55', sysdate, null);
-- Inserting RoleToUserAssignment 'JKRALIKO/H_TPP_P2P_REPORT'
harmony.usermgt.create_role_to_user_assignment('JKRALIKO', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JKRALIKO/H_TPP_P2P_REPORT
harmony.usermgt.create_dds_item_assignment('JKRALIKO', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '124', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JKRALIKO', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '123', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JKRALIKO', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '122', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JKRALIKO', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '121', sysdate, null);
-- Inserting RoleToUserAssignment 'JKRALJIC/H_EFS2_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('JKRALJIC', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JKRALJIC/H_EFS2_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('JKRALJIC', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '517', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JKRALJIC', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '449', sysdate, null);
-- Inserting RoleToUserAssignment 'JKROESE/H_EFS2_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('JKROESE', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JKROESE/H_EFS2_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('JKROESE', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '334', sysdate, null);
-- Inserting RoleToUserAssignment 'JLAKATOS/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JLAKATOS', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JLAKATOS/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('JLAKATOS', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999200', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JLAKATOS', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998971', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JLAKATOS', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998922', sysdate, null);
-- Inserting RoleToUserAssignment 'JLAKATOS/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JLAKATOS', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JLAKATOS/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('JLAKATOS', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999200', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JLAKATOS', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998971', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JLAKATOS', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998922', sysdate, null);
-- Inserting RoleToUserAssignment 'JLAKATOS/H_TPP_P2P_REPORT'
harmony.usermgt.create_role_to_user_assignment('JLAKATOS', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JLAKATOS/H_TPP_P2P_REPORT
harmony.usermgt.create_dds_item_assignment('JLAKATOS', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '367', sysdate, null);
-- Inserting RoleToUserAssignment 'JLASTRA/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('JLASTRA', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JLASTRA/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('JLASTRA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11637/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JLEE178/H_EFS2_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('JLEE178', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JLEE178/H_EFS2_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('JLEE178', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '425', sysdate, null);
-- Inserting RoleToUserAssignment 'JLEE26/H_EFS2_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('JLEE26', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JLEE26/H_EFS2_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('JLEE26', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '312', sysdate, null);
-- Inserting RoleToUserAssignment 'JLEUNG/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JLEUNG', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JLEUNG/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('JLEUNG', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999783', sysdate, null);
-- Inserting RoleToUserAssignment 'JLEUNG/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JLEUNG', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JLEUNG/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('JLEUNG', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999783', sysdate, null);
-- Inserting RoleToUserAssignment 'JLEUNG/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('JLEUNG', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JLEUNG/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('JLEUNG', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11666/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JLI102/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JLI102', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JLI102/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('JLI102', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999869', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JLI102', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999708', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JLI102', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999707', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JLI102', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999706', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JLI102', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999705', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JLI102', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999089', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JLI102', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998960', sysdate, null);
-- Inserting RoleToUserAssignment 'JLI102/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JLI102', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JLI102/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('JLI102', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999869', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JLI102', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999708', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JLI102', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999707', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JLI102', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999706', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JLI102', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999705', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JLI102', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999089', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JLI102', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998960', sysdate, null);
-- Inserting RoleToUserAssignment 'JLI102/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('JLI102', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JLI102/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('JLI102', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[432/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JLI102', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11750/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JLI102/H_TPP_LOC_REP'
harmony.usermgt.create_role_to_user_assignment('JLI102', 'H_TPP_LOC_REP', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JLI102/H_TPP_LOC_REP
harmony.usermgt.create_dds_item_assignment('JLI102', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '49', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JLI102', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '48', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JLI102', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '32', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JLI102', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '31', sysdate, null);
-- Inserting RoleToUserAssignment 'JLI93/H_EFS2_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('JLI93', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JLI93/H_EFS2_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('JLI93', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '296', sysdate, null);
-- Inserting RoleToUserAssignment 'JLI93/H_TPP_P2P_OFFERMGT'
harmony.usermgt.create_role_to_user_assignment('JLI93', 'H_TPP_P2P_OFFERMGT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JLI93/H_TPP_P2P_OFFERMGT
harmony.usermgt.create_dds_item_assignment('JLI93', 'H_TPP_P2P_OFFERMGT', 'TPP AP2PLE OC', 'ONE', '285', sysdate, null);
-- Inserting RoleToUserAssignment 'JLINK3/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JLINK3', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JLINK3/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('JLINK3', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999889', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JLINK3', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998968', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JLINK3', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998852', sysdate, null);
-- Inserting RoleToUserAssignment 'JLINK3/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JLINK3', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JLINK3/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('JLINK3', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999889', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JLINK3', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998968', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JLINK3', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998852', sysdate, null);
-- Inserting RoleToUserAssignment 'JLINK3/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('JLINK3', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JLINK3/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('JLINK3', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[115/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JLINK3/H_TPP_P2P_REPORT'
harmony.usermgt.create_role_to_user_assignment('JLINK3', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JLINK3/H_TPP_P2P_REPORT
harmony.usermgt.create_dds_item_assignment('JLINK3', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '114', sysdate, null);
-- Inserting RoleToUserAssignment 'JLIU06/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('JLIU06', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JLIU06/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('JLIU06', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[412/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JLOANE/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JLOANE', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JLOANE/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('JLOANE', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999778', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JLOANE', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999776', sysdate, null);
-- Inserting RoleToUserAssignment 'JLOANE/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JLOANE', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JLOANE/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('JLOANE', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999778', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JLOANE', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999776', sysdate, null);
-- Inserting RoleToUserAssignment 'JLOANE/H_EFS2_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('JLOANE', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JLOANE/H_EFS2_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('JLOANE', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '393', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JLOANE', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '329', sysdate, null);
-- Inserting RoleToUserAssignment 'JLOANE/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('JLOANE', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JLOANE/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('JLOANE', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[437/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JLOANE', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[428/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JLOPEZDI/H_EFS2_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('JLOPEZDI', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JLOPEZDI/H_EFS2_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('JLOPEZDI', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '641', sysdate, null);
-- Inserting RoleToUserAssignment 'JLRIVERA/H_EFS2_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('JLRIVERA', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JLRIVERA/H_EFS2_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('JLRIVERA', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '706', sysdate, null);
-- Inserting RoleToUserAssignment 'JLUCIANO/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('JLUCIANO', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JLUCIANO/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('JLUCIANO', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[63/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JLUCIANO', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[60/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JLUX/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('JLUX', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JLUX/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('JLUX', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[115/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JMACIEL2/HERMES_CMEFF_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('JMACIEL2', 'HERMES_CMEFF_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JMACIEL2/HERMES_CMEFF_REP_CTR
harmony.usermgt.create_dds_item_assignment('JMACIEL2', 'HERMES_CMEFF_REP_CTR', 'Trax Account Groups', 'ONE', '30', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JMACIEL2', 'HERMES_CMEFF_REP_CTR', 'Trax Account Groups', 'ONE', '16', sysdate, null);
-- Inserting RoleToUserAssignment 'JMACIEL2/HERMES_GRP_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('JMACIEL2', 'HERMES_GRP_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JMACIEL2/HERMES_GRP_REP_CTR
harmony.usermgt.create_dds_item_assignment('JMACIEL2', 'HERMES_GRP_REP_CTR', 'Trax Account Groups', 'ONE', '30', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JMACIEL2', 'HERMES_GRP_REP_CTR', 'Trax Account Groups', 'ONE', '16', sysdate, null);
-- Inserting RoleToUserAssignment 'JMACIEL2/HERMES_STAT_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('JMACIEL2', 'HERMES_STAT_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JMACIEL2/HERMES_STAT_REP_CTR
harmony.usermgt.create_dds_item_assignment('JMACIEL2', 'HERMES_STAT_REP_CTR', 'Trax Account Groups', 'ONE', '30', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JMACIEL2', 'HERMES_STAT_REP_CTR', 'Trax Account Groups', 'ONE', '16', sysdate, null);
-- Inserting RoleToUserAssignment 'JMACIEL2/HERMES_STS_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('JMACIEL2', 'HERMES_STS_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JMACIEL2/HERMES_STS_REP_CTR
harmony.usermgt.create_dds_item_assignment('JMACIEL2', 'HERMES_STS_REP_CTR', 'Trax Account Groups', 'ONE', '30', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JMACIEL2', 'HERMES_STS_REP_CTR', 'Trax Account Groups', 'ONE', '16', sysdate, null);
-- Inserting RoleToUserAssignment 'JMACIEL2/HERMES_SYM_REC_CTR'
harmony.usermgt.create_role_to_user_assignment('JMACIEL2', 'HERMES_SYM_REC_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JMACIEL2/HERMES_SYM_REC_CTR
harmony.usermgt.create_dds_item_assignment('JMACIEL2', 'HERMES_SYM_REC_CTR', 'Trax Account Groups', 'ONE', '30', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JMACIEL2', 'HERMES_SYM_REC_CTR', 'Trax Account Groups', 'ONE', '16', sysdate, null);
-- Inserting RoleToUserAssignment 'JMACIEL2/HERMES_TXN_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('JMACIEL2', 'HERMES_TXN_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JMACIEL2/HERMES_TXN_REP_CTR
harmony.usermgt.create_dds_item_assignment('JMACIEL2', 'HERMES_TXN_REP_CTR', 'Trax Account Groups', 'ONE', '30', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JMACIEL2', 'HERMES_TXN_REP_CTR', 'Trax Account Groups', 'ONE', '16', sysdate, null);
-- Inserting RoleToUserAssignment 'JMACIEL2/HERMES_VAVO_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('JMACIEL2', 'HERMES_VAVO_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JMACIEL2/HERMES_VAVO_REP_CTR
harmony.usermgt.create_dds_item_assignment('JMACIEL2', 'HERMES_VAVO_REP_CTR', 'Trax Account Groups', 'ONE', '30', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JMACIEL2', 'HERMES_VAVO_REP_CTR', 'Trax Account Groups', 'ONE', '16', sysdate, null);
-- Inserting RoleToUserAssignment 'JMACIEL2/H_TOPS_CNTRP_EXP_REP'
harmony.usermgt.create_role_to_user_assignment('JMACIEL2', 'H_TOPS_CNTRP_EXP_REP', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'JMADRIAG/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('JMADRIAG', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JMADRIAG/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('JMADRIAG', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[133/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JMALICKA/H_EFS2_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('JMALICKA', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JMALICKA/H_EFS2_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('JMALICKA', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '439', sysdate, null);
-- Inserting RoleToUserAssignment 'JMANIAR2/H_EFS2_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('JMANIAR2', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JMANIAR2/H_EFS2_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('JMANIAR2', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '475', sysdate, null);
-- Inserting RoleToUserAssignment 'JMARIJT/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JMARIJT', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JMARIJT/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('JMARIJT', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999456', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JMARIJT', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999455', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JMARIJT', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999082', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JMARIJT', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998869', sysdate, null);
-- Inserting RoleToUserAssignment 'JMARIJT/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JMARIJT', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JMARIJT/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('JMARIJT', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999456', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JMARIJT', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999455', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JMARIJT', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999082', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JMARIJT', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998869', sysdate, null);
-- Inserting RoleToUserAssignment 'JMARIJT/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('JMARIJT', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JMARIJT/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('JMARIJT', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[276/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JMARIJT', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11870/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JMARIJT', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11868/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JMARIJT', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11713/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JMARIJT/H_TPP_P2P_OFFERMGT'
harmony.usermgt.create_role_to_user_assignment('JMARIJT', 'H_TPP_P2P_OFFERMGT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JMARIJT/H_TPP_P2P_OFFERMGT
harmony.usermgt.create_dds_item_assignment('JMARIJT', 'H_TPP_P2P_OFFERMGT', 'TPP AP2PLE OC', 'ONE', '98', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JMARIJT', 'H_TPP_P2P_OFFERMGT', 'TPP AP2PLE OC', 'ONE', '255', sysdate, null);
-- Inserting RoleToUserAssignment 'JMASSEY3/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JMASSEY3', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JMASSEY3/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('JMASSEY3', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999831', sysdate, null);
-- Inserting RoleToUserAssignment 'JMASSEY3/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JMASSEY3', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JMASSEY3/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('JMASSEY3', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999831', sysdate, null);
-- Inserting RoleToUserAssignment 'JMCINTY3/H_EFS2_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('JMCINTY3', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JMCINTY3/H_EFS2_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('JMCINTY3', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '698', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JMCINTY3', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '585', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JMCINTY3', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '528', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JMCINTY3', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '273', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JMCINTY3', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '267', sysdate, null);
-- Inserting RoleToUserAssignment 'JMCKEONE/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('JMCKEONE', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JMCKEONE/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('JMCKEONE', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11211/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JMCMANU2/H_TPP_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('JMCMANU2', 'H_TPP_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JMCMANU2/H_TPP_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('JMCMANU2', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '36', sysdate, null);
-- Inserting RoleToUserAssignment 'JMERTEN1/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JMERTEN1', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JMERTEN1/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('JMERTEN1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999888', sysdate, null);
-- Inserting RoleToUserAssignment 'JMERTEN1/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JMERTEN1', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JMERTEN1/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('JMERTEN1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999888', sysdate, null);
-- Inserting RoleToUserAssignment 'JMERTEN1/H_TPP_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('JMERTEN1', 'H_TPP_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JMERTEN1/H_TPP_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('JMERTEN1', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '23', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JMERTEN1', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '22', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JMERTEN1', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '21', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JMERTEN1', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '19', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JMERTEN1', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '18', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JMERTEN1', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '17', sysdate, null);
-- Inserting RoleToUserAssignment 'JMINOZA/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('JMINOZA', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JMINOZA/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('JMINOZA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[69/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JMINOZA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[54/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JMLEJNK2/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JMLEJNK2', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JMLEJNK2/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('JMLEJNK2', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999187', sysdate, null);
-- Inserting RoleToUserAssignment 'JMLEJNK2/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JMLEJNK2', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JMLEJNK2/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('JMLEJNK2', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999187', sysdate, null);
-- Inserting RoleToUserAssignment 'JMLEJNK2/H_TPP_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('JMLEJNK2', 'H_TPP_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JMLEJNK2/H_TPP_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('JMLEJNK2', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '65', sysdate, null);
-- Inserting RoleToUserAssignment 'JMLEJNK2/H_TPP_P2P_OFFERAUTH'
harmony.usermgt.create_role_to_user_assignment('JMLEJNK2', 'H_TPP_P2P_OFFERAUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JMLEJNK2/H_TPP_P2P_OFFERAUTH
harmony.usermgt.create_dds_item_assignment('JMLEJNK2', 'H_TPP_P2P_OFFERAUTH', 'TPP AP2PLE OC', 'ONE', '186', sysdate, null);
-- Inserting RoleToUserAssignment 'JMORCILL/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JMORCILL', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JMORCILL/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('JMORCILL', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999158', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JMORCILL', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999155', sysdate, null);
-- Inserting RoleToUserAssignment 'JMORCILL/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JMORCILL', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JMORCILL/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('JMORCILL', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999158', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JMORCILL', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999155', sysdate, null);
-- Inserting RoleToUserAssignment 'JMORCILL/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('JMORCILL', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JMORCILL/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('JMORCILL', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[170/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JMORCILL/H_TPP_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('JMORCILL', 'H_TPP_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JMORCILL/H_TPP_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('JMORCILL', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '128', sysdate, null);
-- Inserting RoleToUserAssignment 'JMORCILL/H_TPP_P2P_REPORT'
harmony.usermgt.create_role_to_user_assignment('JMORCILL', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JMORCILL/H_TPP_P2P_REPORT
harmony.usermgt.create_dds_item_assignment('JMORCILL', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '146', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JMORCILL', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '129', sysdate, null);
-- Inserting RoleToUserAssignment 'JMORRI1/H_EFS2_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('JMORRI1', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JMORRI1/H_EFS2_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('JMORRI1', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '264', sysdate, null);
-- Inserting RoleToUserAssignment 'JMORRI1/H_TPP_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('JMORRI1', 'H_TPP_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JMORRI1/H_TPP_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('JMORRI1', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '27', sysdate, null);
-- Inserting RoleToUserAssignment 'JMORRI1/H_TPP_P2P_OFFERAUTH'
harmony.usermgt.create_role_to_user_assignment('JMORRI1', 'H_TPP_P2P_OFFERAUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JMORRI1/H_TPP_P2P_OFFERAUTH
harmony.usermgt.create_dds_item_assignment('JMORRI1', 'H_TPP_P2P_OFFERAUTH', 'TPP AP2PLE OC', 'ONE', '275', sysdate, null);
-- Inserting RoleToUserAssignment 'JNAUDET/H_EFS2_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('JNAUDET', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JNAUDET/H_EFS2_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('JNAUDET', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '320', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JNAUDET', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '277', sysdate, null);
-- Inserting RoleToUserAssignment 'JNAUDET/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('JNAUDET', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JNAUDET/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('JNAUDET', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[84/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JNAUDET', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[423/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JNLANDUW/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JNLANDUW', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JNLANDUW/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('JNLANDUW', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999179', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JNLANDUW', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '100034', sysdate, null);
-- Inserting RoleToUserAssignment 'JNLANDUW/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JNLANDUW', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JNLANDUW/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('JNLANDUW', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999179', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JNLANDUW', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '100034', sysdate, null);
-- Inserting RoleToUserAssignment 'JNLANDUW/H_EFS2_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('JNLANDUW', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JNLANDUW/H_EFS2_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('JNLANDUW', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '280', sysdate, null);
-- Inserting RoleToUserAssignment 'JNLANDUW/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('JNLANDUW', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JNLANDUW/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('JNLANDUW', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[96/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JNLANDUW', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[95/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JNOCHE/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JNOCHE', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JNOCHE/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('JNOCHE', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999370', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JNOCHE', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999367', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JNOCHE', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999366', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JNOCHE', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999263', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JNOCHE', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999133', sysdate, null);
-- Inserting RoleToUserAssignment 'JNOCHE/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JNOCHE', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JNOCHE/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('JNOCHE', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999370', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JNOCHE', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999367', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JNOCHE', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999366', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JNOCHE', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999263', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JNOCHE', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999133', sysdate, null);
-- Inserting RoleToUserAssignment 'JNOCHE/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('JNOCHE', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JNOCHE/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('JNOCHE', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[65/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JNOCHE', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[37/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JNOCHE', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[229/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JNOCHE', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11456/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JNOCHE/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('JNOCHE', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JNOCHE/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('JNOCHE', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11345/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JNOCHE/H_TPP_P2P_REPORT'
harmony.usermgt.create_role_to_user_assignment('JNOCHE', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JNOCHE/H_TPP_P2P_REPORT
harmony.usermgt.create_dds_item_assignment('JNOCHE', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '242', sysdate, null);
-- Inserting RoleToUserAssignment 'JNOPIA/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('JNOPIA', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JNOPIA/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('JNOPIA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11580/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JNOPIA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11495/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JNOPIA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11342/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JNOPIA/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('JNOPIA', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JNOPIA/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('JNOPIA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[108/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JNOPIA/H_TPP_LOC_REP'
harmony.usermgt.create_role_to_user_assignment('JNOPIA', 'H_TPP_LOC_REP', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JNOPIA/H_TPP_LOC_REP
harmony.usermgt.create_dds_item_assignment('JNOPIA', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '71', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JNOPIA', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '29', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JNOPIA', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '233', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JNOPIA', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '13', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JNOPIA', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '12', sysdate, null);
-- Inserting RoleToUserAssignment 'JNOPIA/H_TPP_P2P_REPORT'
harmony.usermgt.create_role_to_user_assignment('JNOPIA', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JNOPIA/H_TPP_P2P_REPORT
harmony.usermgt.create_dds_item_assignment('JNOPIA', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '302', sysdate, null);
-- Inserting RoleToUserAssignment 'JNORTON4/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('JNORTON4', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JNORTON4/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('JNORTON4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11426/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JOBRIEN4/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JOBRIEN4', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JOBRIEN4/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('JOBRIEN4', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999715', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JOBRIEN4', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999411', sysdate, null);
-- Inserting RoleToUserAssignment 'JOBRIEN4/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JOBRIEN4', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JOBRIEN4/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('JOBRIEN4', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999715', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JOBRIEN4', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999411', sysdate, null);
-- Inserting RoleToUserAssignment 'JOBRIEN4/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('JOBRIEN4', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JOBRIEN4/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('JOBRIEN4', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[141/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JOBRIEN4', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11076/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JOBRIEN4/H_TPP_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('JOBRIEN4', 'H_TPP_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JOBRIEN4/H_TPP_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('JOBRIEN4', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '315', sysdate, null);
-- Inserting RoleToUserAssignment 'JOKABE2/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JOKABE2', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JOKABE2/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('JOKABE2', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999707', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JOKABE2', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999706', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JOKABE2', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998960', sysdate, null);
-- Inserting RoleToUserAssignment 'JOKABE2/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JOKABE2', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JOKABE2/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('JOKABE2', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999707', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JOKABE2', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999706', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JOKABE2', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998960', sysdate, null);
-- Inserting RoleToUserAssignment 'JOKABE2/H_EFS2_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('JOKABE2', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JOKABE2/H_EFS2_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('JOKABE2', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '344', sysdate, null);
-- Inserting RoleToUserAssignment 'JOKABE2/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('JOKABE2', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JOKABE2/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('JOKABE2', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[432/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JOKABE2', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11750/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JOKABE2/H_TPP_LOC_REP'
harmony.usermgt.create_role_to_user_assignment('JOKABE2', 'H_TPP_LOC_REP', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JOKABE2/H_TPP_LOC_REP
harmony.usermgt.create_dds_item_assignment('JOKABE2', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '48', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JOKABE2', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '32', sysdate, null);
-- Inserting RoleToUserAssignment 'JOKABE2/H_TPP_P2P_REPORT'
harmony.usermgt.create_role_to_user_assignment('JOKABE2', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JOKABE2/H_TPP_P2P_REPORT
harmony.usermgt.create_dds_item_assignment('JOKABE2', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '349', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JOKABE2', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '346', sysdate, null);
-- Inserting RoleToUserAssignment 'JONDI/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('JONDI', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JONDI/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('JONDI', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[429/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JONDI', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[416/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JONDI', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[415/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JONDI', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[414/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JONDI', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[408/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JONDI', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[405/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JONDI', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[34/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JONDI', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[181/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JONDI', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[158/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JONDI', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11412/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JONDI', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11332/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JORSAGOV/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JORSAGOV', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JORSAGOV/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('JORSAGOV', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999888', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JORSAGOV', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999884', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JORSAGOV', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999751', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JORSAGOV', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999746', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JORSAGOV', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999743', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JORSAGOV', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999412', sysdate, null);
-- Inserting RoleToUserAssignment 'JORSAGOV/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JORSAGOV', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JORSAGOV/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('JORSAGOV', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999888', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JORSAGOV', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999884', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JORSAGOV', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999751', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JORSAGOV', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999746', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JORSAGOV', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999743', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JORSAGOV', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999412', sysdate, null);
-- Inserting RoleToUserAssignment 'JPACHEC4/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JPACHEC4', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JPACHEC4/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('JPACHEC4', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999703', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JPACHEC4', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999698', sysdate, null);
-- Inserting RoleToUserAssignment 'JPACHEC4/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JPACHEC4', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JPACHEC4/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('JPACHEC4', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999703', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JPACHEC4', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999698', sysdate, null);
-- Inserting RoleToUserAssignment 'JPACHEC4/H_EFS2_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('JPACHEC4', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JPACHEC4/H_EFS2_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('JPACHEC4', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '687', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JPACHEC4', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '686', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JPACHEC4', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '685', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JPACHEC4', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '404', sysdate, null);
-- Inserting RoleToUserAssignment 'JPACHEC4/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('JPACHEC4', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JPACHEC4/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('JPACHEC4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[202/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JPACHEC4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[201/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JPACHEC4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[200/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JPACHEC4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11823/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JPACHEC4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11100/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JPACHEC4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11085/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JPACHEC4/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('JPACHEC4', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JPACHEC4/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('JPACHEC4', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11085/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JPAN2/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('JPAN2', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JPAN2/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('JPAN2', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[427/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JPARKER7/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('JPARKER7', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JPARKER7/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('JPARKER7', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11885/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JPATIENT/H_EFS2_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('JPATIENT', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JPATIENT/H_EFS2_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('JPATIENT', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '699', sysdate, null);
-- Inserting RoleToUserAssignment 'JPATIENT/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('JPATIENT', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JPATIENT/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('JPATIENT', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11636/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JPAVLIK2/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JPAVLIK2', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JPAVLIK2/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('JPAVLIK2', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999893', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JPAVLIK2', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999891', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JPAVLIK2', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998866', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JPAVLIK2', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998924', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JPAVLIK2', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999211', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JPAVLIK2', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999612', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JPAVLIK2', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999652', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JPAVLIK2', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999665', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JPAVLIK2', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999798', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JPAVLIK2', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999841', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JPAVLIK2', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999842', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JPAVLIK2', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999857', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JPAVLIK2', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999858', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JPAVLIK2', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999876', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JPAVLIK2', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999883', sysdate, null);
-- Inserting RoleToUserAssignment 'JPAVLIK2/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JPAVLIK2', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JPAVLIK2/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('JPAVLIK2', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999893', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JPAVLIK2', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999891', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JPAVLIK2', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998866', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JPAVLIK2', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998924', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JPAVLIK2', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999211', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JPAVLIK2', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999612', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JPAVLIK2', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999652', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JPAVLIK2', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999665', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JPAVLIK2', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999798', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JPAVLIK2', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999841', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JPAVLIK2', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999842', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JPAVLIK2', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999857', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JPAVLIK2', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999858', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JPAVLIK2', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999876', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JPAVLIK2', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999883', sysdate, null);
-- Inserting RoleToUserAssignment 'JPAVLIK2/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('JPAVLIK2', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JPAVLIK2/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('JPAVLIK2', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11234/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JPAVLIK2/H_TPP_P2P_REPORT'
harmony.usermgt.create_role_to_user_assignment('JPAVLIK2', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JPAVLIK2/H_TPP_P2P_REPORT
harmony.usermgt.create_dds_item_assignment('JPAVLIK2', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '404', sysdate, null);
-- Inserting RoleToUserAssignment 'JPEARSO7/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('JPEARSO7', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JPEARSO7/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('JPEARSO7', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11345/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JPEARSO7/H_TPP_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('JPEARSO7', 'H_TPP_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JPEARSO7/H_TPP_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('JPEARSO7', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '106', sysdate, null);
-- Inserting RoleToUserAssignment 'JPEETE11/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JPEETE11', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JPEETE11/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('JPEETE11', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999863', sysdate, null);
-- Inserting RoleToUserAssignment 'JPEETE11/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JPEETE11', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JPEETE11/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('JPEETE11', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999863', sysdate, null);
-- Inserting RoleToUserAssignment 'JPENDER1/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JPENDER1', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JPENDER1/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('JPENDER1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999970', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JPENDER1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999969', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JPENDER1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999968', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JPENDER1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999789', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JPENDER1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999788', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JPENDER1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999079', sysdate, null);
-- Inserting RoleToUserAssignment 'JPENDER1/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JPENDER1', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JPENDER1/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('JPENDER1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999970', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JPENDER1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999969', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JPENDER1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999968', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JPENDER1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999789', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JPENDER1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999788', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JPENDER1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999079', sysdate, null);
-- Inserting RoleToUserAssignment 'JPENDER1/H_EFS2_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('JPENDER1', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JPENDER1/H_EFS2_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('JPENDER1', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '453', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JPENDER1', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '452', sysdate, null);
-- Inserting RoleToUserAssignment 'JPENDER1/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('JPENDER1', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JPENDER1/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('JPENDER1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[280/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JPENDER1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11602/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JPENDER1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11600/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JPENDER1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11598/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JPENDER1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11430/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JPENDER1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11424/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JPENDER1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11339/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JPENDER1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11183/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JPENDER1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11095/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JPENDER1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11059/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JPENDER1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[10127/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JPILAT/H_EFS2_LOC_REP_PARTY'
harmony.usermgt.create_role_to_user_assignment('JPILAT', 'H_EFS2_LOC_REP_PARTY', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JPILAT/H_EFS2_LOC_REP_PARTY
harmony.usermgt.create_dds_item_assignment('JPILAT', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '604', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JPILAT', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '603', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JPILAT', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '602', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JPILAT', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '601', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JPILAT', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '600', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JPILAT', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '599', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JPILAT', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '434', sysdate, null);
-- Inserting RoleToUserAssignment 'JPINNOCK/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('JPINNOCK', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JPINNOCK/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('JPINNOCK', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[6/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JPINNOCK', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[4/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JPONCE1/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JPONCE1', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JPONCE1/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('JPONCE1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999553', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JPONCE1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999077', sysdate, null);
-- Inserting RoleToUserAssignment 'JPONCE1/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JPONCE1', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JPONCE1/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('JPONCE1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999553', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JPONCE1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999077', sysdate, null);
-- Inserting RoleToUserAssignment 'JPUENTES/H_EFS2_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('JPUENTES', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JPUENTES/H_EFS2_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('JPUENTES', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '564', sysdate, null);
-- Inserting RoleToUserAssignment 'JPUTS/BAM_REPORTER'
harmony.usermgt.create_role_to_user_assignment('JPUTS', 'BAM_REPORTER', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JPUTS/BAM_REPORTER
harmony.usermgt.create_dds_item_assignment('JPUTS', 'BAM_REPORTER', 'BAM Region', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'JPUTS/HB_FM_COMBI_VIEW'
harmony.usermgt.create_role_to_user_assignment('JPUTS', 'HB_FM_COMBI_VIEW', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'JPUTS/HERMES_IM_SUPPORT'
harmony.usermgt.create_role_to_user_assignment('JPUTS', 'HERMES_IM_SUPPORT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JPUTS/HERMES_IM_SUPPORT
harmony.usermgt.create_dds_item_assignment('JPUTS', 'HERMES_IM_SUPPORT', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'JPUTS/H_CHAINS_IM_SUPPORT'
harmony.usermgt.create_role_to_user_assignment('JPUTS', 'H_CHAINS_IM_SUPPORT', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'JPUTS/H_DLINK_IM_SUPPORT'
harmony.usermgt.create_role_to_user_assignment('JPUTS', 'H_DLINK_IM_SUPPORT', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'JPUTS/H_EFS2_IM_SUPPORT'
harmony.usermgt.create_role_to_user_assignment('JPUTS', 'H_EFS2_IM_SUPPORT', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'JPUTS/H_GXRS_IM_SUPPORT'
harmony.usermgt.create_role_to_user_assignment('JPUTS', 'H_GXRS_IM_SUPPORT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JPUTS/H_GXRS_IM_SUPPORT
harmony.usermgt.create_dds_item_assignment('JPUTS', 'H_GXRS_IM_SUPPORT', 'GXRS instructing accounts in ART', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'JPUTS/H_P2P_IM_SUPPORT'
harmony.usermgt.create_role_to_user_assignment('JPUTS', 'H_P2P_IM_SUPPORT', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'JPUTS/H_SWIFTCOM_IM_SUP'
harmony.usermgt.create_role_to_user_assignment('JPUTS', 'H_SWIFTCOM_IM_SUP', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JPUTS/H_SWIFTCOM_IM_SUP
harmony.usermgt.create_dds_item_assignment('JPUTS', 'H_SWIFTCOM_IM_SUP', 'SWIFTCOM FM Source', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'JPUTS/H_TOPS_IM_SUPPORT'
harmony.usermgt.create_role_to_user_assignment('JPUTS', 'H_TOPS_IM_SUPPORT', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'JPUTS/H_TPP_IM_SUPPORT'
harmony.usermgt.create_role_to_user_assignment('JPUTS', 'H_TPP_IM_SUPPORT', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'JRAFFERTY/H_EFS2_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('JRAFFERTY', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JRAFFERTY/H_EFS2_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('JRAFFERTY', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '617', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JRAFFERTY', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '563', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JRAFFERTY', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '521', sysdate, null);
-- Inserting RoleToUserAssignment 'JRAFOA/H_EFS2_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('JRAFOA', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JRAFOA/H_EFS2_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('JRAFOA', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '710', sysdate, null);
-- Inserting RoleToUserAssignment 'JRAFOA/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('JRAFOA', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JRAFOA/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('JRAFOA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[62/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JRAMIREZ/BAM_MANAGER'
harmony.usermgt.create_role_to_user_assignment('JRAMIREZ', 'BAM_MANAGER', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JRAMIREZ/BAM_MANAGER
harmony.usermgt.create_dds_item_assignment('JRAMIREZ', 'BAM_MANAGER', 'BAM Region', 'ONE', '3', sysdate, null);
-- Inserting RoleToUserAssignment 'JRAMIREZ/BAM_REPORTER'
harmony.usermgt.create_role_to_user_assignment('JRAMIREZ', 'BAM_REPORTER', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JRAMIREZ/BAM_REPORTER
harmony.usermgt.create_dds_item_assignment('JRAMIREZ', 'BAM_REPORTER', 'BAM Region', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'JRAMIREZ/HERMES_CMEFF_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('JRAMIREZ', 'HERMES_CMEFF_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JRAMIREZ/HERMES_CMEFF_REP_CTR
harmony.usermgt.create_dds_item_assignment('JRAMIREZ', 'HERMES_CMEFF_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'JRAMIREZ/HERMES_GRP_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('JRAMIREZ', 'HERMES_GRP_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JRAMIREZ/HERMES_GRP_REP_CTR
harmony.usermgt.create_dds_item_assignment('JRAMIREZ', 'HERMES_GRP_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'JRAMIREZ/HERMES_STAT_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('JRAMIREZ', 'HERMES_STAT_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JRAMIREZ/HERMES_STAT_REP_CTR
harmony.usermgt.create_dds_item_assignment('JRAMIREZ', 'HERMES_STAT_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'JRAMIREZ/HERMES_STS_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('JRAMIREZ', 'HERMES_STS_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JRAMIREZ/HERMES_STS_REP_CTR
harmony.usermgt.create_dds_item_assignment('JRAMIREZ', 'HERMES_STS_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'JRAMIREZ/HERMES_SYM_REC_CTR'
harmony.usermgt.create_role_to_user_assignment('JRAMIREZ', 'HERMES_SYM_REC_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JRAMIREZ/HERMES_SYM_REC_CTR
harmony.usermgt.create_dds_item_assignment('JRAMIREZ', 'HERMES_SYM_REC_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'JRAMIREZ/HERMES_TXN_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('JRAMIREZ', 'HERMES_TXN_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JRAMIREZ/HERMES_TXN_REP_CTR
harmony.usermgt.create_dds_item_assignment('JRAMIREZ', 'HERMES_TXN_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'JRAMIREZ/HERMES_VAVO_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('JRAMIREZ', 'HERMES_VAVO_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JRAMIREZ/HERMES_VAVO_REP_CTR
harmony.usermgt.create_dds_item_assignment('JRAMIREZ', 'HERMES_VAVO_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'JRAMIREZ/H_SWIFTCOM_RELEASER'
harmony.usermgt.create_role_to_user_assignment('JRAMIREZ', 'H_SWIFTCOM_RELEASER', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JRAMIREZ/H_SWIFTCOM_RELEASER
harmony.usermgt.create_dds_item_assignment('JRAMIREZ', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '13', sysdate, null);
-- Inserting RoleToUserAssignment 'JRAMIREZ/H_TOPS_CNTRP_EXP_REP'
harmony.usermgt.create_role_to_user_assignment('JRAMIREZ', 'H_TOPS_CNTRP_EXP_REP', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'JRESTO/H_EFS2_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('JRESTO', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JRESTO/H_EFS2_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('JRESTO', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '641', sysdate, null);
-- Inserting RoleToUserAssignment 'JRESTO/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('JRESTO', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JRESTO/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('JRESTO', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[42/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JRUCINSK/H_EFS2_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('JRUCINSK', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JRUCINSK/H_EFS2_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('JRUCINSK', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '444', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JRUCINSK', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '443', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JRUCINSK', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '420', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JRUCINSK', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '419', sysdate, null);
-- Inserting RoleToUserAssignment 'JRUCINSK/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('JRUCINSK', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JRUCINSK/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('JRUCINSK', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11182/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JRUCINSK', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11181/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JRUCINSK', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11180/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JRULLAN2/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JRULLAN2', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JRULLAN2/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('JRULLAN2', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999606', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JRULLAN2', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999605', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JRULLAN2', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999604', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JRULLAN2', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999603', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JRULLAN2', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999138', sysdate, null);
-- Inserting RoleToUserAssignment 'JRULLAN2/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JRULLAN2', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JRULLAN2/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('JRULLAN2', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999606', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JRULLAN2', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999605', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JRULLAN2', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999604', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JRULLAN2', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999603', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JRULLAN2', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999138', sysdate, null);
-- Inserting RoleToUserAssignment 'JSEGER1/HERMES_GRP_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('JSEGER1', 'HERMES_GRP_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JSEGER1/HERMES_GRP_REP_CTR
harmony.usermgt.create_dds_item_assignment('JSEGER1', 'HERMES_GRP_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'JSEGER1/HERMES_STAT_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('JSEGER1', 'HERMES_STAT_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JSEGER1/HERMES_STAT_REP_CTR
harmony.usermgt.create_dds_item_assignment('JSEGER1', 'HERMES_STAT_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'JSEGER1/HERMES_STS_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('JSEGER1', 'HERMES_STS_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JSEGER1/HERMES_STS_REP_CTR
harmony.usermgt.create_dds_item_assignment('JSEGER1', 'HERMES_STS_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'JSEGER1/HERMES_SYM_REC_CTR'
harmony.usermgt.create_role_to_user_assignment('JSEGER1', 'HERMES_SYM_REC_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JSEGER1/HERMES_SYM_REC_CTR
harmony.usermgt.create_dds_item_assignment('JSEGER1', 'HERMES_SYM_REC_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'JSEGER1/HERMES_TXN_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('JSEGER1', 'HERMES_TXN_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JSEGER1/HERMES_TXN_REP_CTR
harmony.usermgt.create_dds_item_assignment('JSEGER1', 'HERMES_TXN_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'JSEGER1/HERMES_VAVO_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('JSEGER1', 'HERMES_VAVO_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JSEGER1/HERMES_VAVO_REP_CTR
harmony.usermgt.create_dds_item_assignment('JSEGER1', 'HERMES_VAVO_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'JSEGER1/H_EFS2_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('JSEGER1', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JSEGER1/H_EFS2_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('JSEGER1', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '673', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSEGER1', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '671', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSEGER1', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '543', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSEGER1', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '534', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSEGER1', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '445', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSEGER1', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '314', sysdate, null);
-- Inserting RoleToUserAssignment 'JSEGER1/H_EFS2_LOC_REP_PARTY'
harmony.usermgt.create_role_to_user_assignment('JSEGER1', 'H_EFS2_LOC_REP_PARTY', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JSEGER1/H_EFS2_LOC_REP_PARTY
harmony.usermgt.create_dds_item_assignment('JSEGER1', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '708', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSEGER1', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '480', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSEGER1', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '400', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSEGER1', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '399', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSEGER1', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '398', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSEGER1', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '397', sysdate, null);
-- Inserting RoleToUserAssignment 'JSEGER1/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('JSEGER1', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JSEGER1/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('JSEGER1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[142/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSEGER1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11790/CC]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSEGER1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11745/CC]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSEGER1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11744/CC]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSEGER1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11743/CC]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSEGER1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11741/CC]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSEGER1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11689/CC]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSEGER1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11688/CC]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSEGER1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11687/CC]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSEGER1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11419/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSEGER1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11212/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JSEGER1/H_NETTING_LOC_REP_TC'
harmony.usermgt.create_role_to_user_assignment('JSEGER1', 'H_NETTING_LOC_REP_TC', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JSEGER1/H_NETTING_LOC_REP_TC
harmony.usermgt.create_dds_item_assignment('JSEGER1', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[7/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSEGER1', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[5/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSEGER1', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[233/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSEGER1', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[223/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSEGER1', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[11486/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSEGER1', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[11120/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSEGER1', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[1/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JSEGER1/H_TPP_CTR_REP'
harmony.usermgt.create_role_to_user_assignment('JSEGER1', 'H_TPP_CTR_REP', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'JSEGER1/H_TPP_P2P_REPORT'
harmony.usermgt.create_role_to_user_assignment('JSEGER1', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JSEGER1/H_TPP_P2P_REPORT
harmony.usermgt.create_dds_item_assignment('JSEGER1', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '82', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSEGER1', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '81', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSEGER1', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '258', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSEGER1', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '257', sysdate, null);
-- Inserting RoleToUserAssignment 'JSEPS/BAM_REPORTER'
harmony.usermgt.create_role_to_user_assignment('JSEPS', 'BAM_REPORTER', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JSEPS/BAM_REPORTER
harmony.usermgt.create_dds_item_assignment('JSEPS', 'BAM_REPORTER', 'BAM Region', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'JSEPS/HB_FM_COMBI_VIEW'
harmony.usermgt.create_role_to_user_assignment('JSEPS', 'HB_FM_COMBI_VIEW', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'JSEPS/HERMES_IM_SUPPORT'
harmony.usermgt.create_role_to_user_assignment('JSEPS', 'HERMES_IM_SUPPORT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JSEPS/HERMES_IM_SUPPORT
harmony.usermgt.create_dds_item_assignment('JSEPS', 'HERMES_IM_SUPPORT', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'JSEPS/H_CHAINS_IM_SUPPORT'
harmony.usermgt.create_role_to_user_assignment('JSEPS', 'H_CHAINS_IM_SUPPORT', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'JSEPS/H_DLINK_IM_SUPPORT'
harmony.usermgt.create_role_to_user_assignment('JSEPS', 'H_DLINK_IM_SUPPORT', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'JSEPS/H_EFS2_IM_SUPPORT'
harmony.usermgt.create_role_to_user_assignment('JSEPS', 'H_EFS2_IM_SUPPORT', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'JSEPS/H_GXRS_IM_SUPPORT'
harmony.usermgt.create_role_to_user_assignment('JSEPS', 'H_GXRS_IM_SUPPORT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JSEPS/H_GXRS_IM_SUPPORT
harmony.usermgt.create_dds_item_assignment('JSEPS', 'H_GXRS_IM_SUPPORT', 'GXRS instructing accounts in ART', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'JSEPS/H_P2P_IM_SUPPORT'
harmony.usermgt.create_role_to_user_assignment('JSEPS', 'H_P2P_IM_SUPPORT', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'JSEPS/H_SWIFTCOM_IM_SUP'
harmony.usermgt.create_role_to_user_assignment('JSEPS', 'H_SWIFTCOM_IM_SUP', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JSEPS/H_SWIFTCOM_IM_SUP
harmony.usermgt.create_dds_item_assignment('JSEPS', 'H_SWIFTCOM_IM_SUP', 'SWIFTCOM FM Source', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'JSEPS/H_TOPS_IM_SUPPORT'
harmony.usermgt.create_role_to_user_assignment('JSEPS', 'H_TOPS_IM_SUPPORT', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'JSEPS/H_TPP_IM_SUPPORT'
harmony.usermgt.create_role_to_user_assignment('JSEPS', 'H_TPP_IM_SUPPORT', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'JSHENTO1/H_EFS2_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('JSHENTO1', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JSHENTO1/H_EFS2_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('JSHENTO1', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '334', sysdate, null);
-- Inserting RoleToUserAssignment 'JSIMICE/H_TPP_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('JSIMICE', 'H_TPP_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JSIMICE/H_TPP_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('JSIMICE', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '71', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSIMICE', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '29', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSIMICE', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '233', sysdate, null);
-- Inserting RoleToUserAssignment 'JSIMICE/H_TPP_LOC_REP'
harmony.usermgt.create_role_to_user_assignment('JSIMICE', 'H_TPP_LOC_REP', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JSIMICE/H_TPP_LOC_REP
harmony.usermgt.create_dds_item_assignment('JSIMICE', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '13', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSIMICE', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '12', sysdate, null);
-- Inserting RoleToUserAssignment 'JSLESING/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JSLESING', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JSLESING/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('JSLESING', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999214', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSLESING', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999213', sysdate, null);
-- Inserting RoleToUserAssignment 'JSLESING/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JSLESING', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JSLESING/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('JSLESING', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999214', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSLESING', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999213', sysdate, null);
-- Inserting RoleToUserAssignment 'JSLESING/H_EFS2_LOC_REP_PARTY'
harmony.usermgt.create_role_to_user_assignment('JSLESING', 'H_EFS2_LOC_REP_PARTY', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JSLESING/H_EFS2_LOC_REP_PARTY
harmony.usermgt.create_dds_item_assignment('JSLESING', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '511', sysdate, null);
-- Inserting RoleToUserAssignment 'JSLESING/H_TPP_P2P_OFFERAUTH'
harmony.usermgt.create_role_to_user_assignment('JSLESING', 'H_TPP_P2P_OFFERAUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JSLESING/H_TPP_P2P_OFFERAUTH
harmony.usermgt.create_dds_item_assignment('JSLESING', 'H_TPP_P2P_OFFERAUTH', 'TPP AP2PLE OC', 'ONE', '284', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSLESING', 'H_TPP_P2P_OFFERAUTH', 'TPP AP2PLE OC', 'ONE', '270', sysdate, null);
-- Inserting RoleToUserAssignment 'JSMITH22/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JSMITH22', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JSMITH22/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('JSMITH22', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998924', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSMITH22', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999211', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSMITH22', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999612', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSMITH22', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999652', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSMITH22', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999665', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSMITH22', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999798', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSMITH22', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999841', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSMITH22', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999842', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSMITH22', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999857', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSMITH22', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999858', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSMITH22', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999876', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSMITH22', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999883', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSMITH22', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999891', sysdate, null);
-- Inserting RoleToUserAssignment 'JSMITH22/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JSMITH22', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JSMITH22/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('JSMITH22', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998924', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSMITH22', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999211', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSMITH22', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999612', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSMITH22', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999652', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSMITH22', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999665', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSMITH22', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999798', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSMITH22', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999841', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSMITH22', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999842', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSMITH22', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999857', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSMITH22', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999858', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSMITH22', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999876', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSMITH22', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999883', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSMITH22', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999891', sysdate, null);
-- Inserting RoleToUserAssignment 'JSMITH22/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('JSMITH22', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JSMITH22/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('JSMITH22', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11327/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSMITH22', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11178/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSMITH22', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11194/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSMITH22', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11195/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSMITH22', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11216/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSMITH22', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11217/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSMITH22', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11218/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSMITH22', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11230/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSMITH22', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11232/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSMITH22', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11233/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSMITH22', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11234/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSMITH22', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11235/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSMITH22', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11237/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSMITH22', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11260/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JSMITH23/H_EFS2_LOC_REP_PARTY'
harmony.usermgt.create_role_to_user_assignment('JSMITH23', 'H_EFS2_LOC_REP_PARTY', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JSMITH23/H_EFS2_LOC_REP_PARTY
harmony.usermgt.create_dds_item_assignment('JSMITH23', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '584', sysdate, null);
-- Inserting RoleToUserAssignment 'JSMITH56/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JSMITH56', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JSMITH56/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('JSMITH56', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999452', sysdate, null);
-- Inserting RoleToUserAssignment 'JSMITH56/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JSMITH56', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JSMITH56/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('JSMITH56', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999452', sysdate, null);
-- Inserting RoleToUserAssignment 'JSPIES/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('JSPIES', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JSPIES/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('JSPIES', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[167/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JSTOFFEL/HERMES_GRP_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('JSTOFFEL', 'HERMES_GRP_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JSTOFFEL/HERMES_GRP_REP_CTR
harmony.usermgt.create_dds_item_assignment('JSTOFFEL', 'HERMES_GRP_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'JSTOFFEL/HERMES_IDTXN_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('JSTOFFEL', 'HERMES_IDTXN_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JSTOFFEL/HERMES_IDTXN_REP_CTR
harmony.usermgt.create_dds_item_assignment('JSTOFFEL', 'HERMES_IDTXN_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'JSTOFFEL/HERMES_STAT_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('JSTOFFEL', 'HERMES_STAT_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JSTOFFEL/HERMES_STAT_REP_CTR
harmony.usermgt.create_dds_item_assignment('JSTOFFEL', 'HERMES_STAT_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'JSTOFFEL/HERMES_SYM_REC_CTR'
harmony.usermgt.create_role_to_user_assignment('JSTOFFEL', 'HERMES_SYM_REC_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JSTOFFEL/HERMES_SYM_REC_CTR
harmony.usermgt.create_dds_item_assignment('JSTOFFEL', 'HERMES_SYM_REC_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'JSTOFFEL/HERMES_TXN_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('JSTOFFEL', 'HERMES_TXN_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JSTOFFEL/HERMES_TXN_REP_CTR
harmony.usermgt.create_dds_item_assignment('JSTOFFEL', 'HERMES_TXN_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'JSTOFFEL/HERMES_VAVO_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('JSTOFFEL', 'HERMES_VAVO_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JSTOFFEL/HERMES_VAVO_REP_CTR
harmony.usermgt.create_dds_item_assignment('JSTOFFEL', 'HERMES_VAVO_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'JSTOFFEL/H_NETTING_KEY_USER'
harmony.usermgt.create_role_to_user_assignment('JSTOFFEL', 'H_NETTING_KEY_USER', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JSTOFFEL/H_NETTING_KEY_USER
harmony.usermgt.create_dds_item_assignment('JSTOFFEL', 'H_NETTING_KEY_USER', 'Third Party Netting Participant', 'ALL', null, sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSTOFFEL', 'H_NETTING_KEY_USER', 'Treasury Center Netting Participant', 'ONE', '[7/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSTOFFEL', 'H_NETTING_KEY_USER', 'Treasury Center Netting Participant', 'ONE', '[233/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSTOFFEL', 'H_NETTING_KEY_USER', 'Treasury Center Netting Participant', 'ONE', '[223/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSTOFFEL', 'H_NETTING_KEY_USER', 'Treasury Center Netting Participant', 'ONE', '[222/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSTOFFEL', 'H_NETTING_KEY_USER', 'Treasury Center Netting Participant', 'ONE', '[11680/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSTOFFEL', 'H_NETTING_KEY_USER', 'Treasury Center Netting Participant', 'ONE', '[11486/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSTOFFEL', 'H_NETTING_KEY_USER', 'Treasury Center Netting Participant', 'ONE', '[11120/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSTOFFEL', 'H_NETTING_KEY_USER', 'Standard Netting Participant', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'JSTOFFEL/H_SWIFTCOM_REPORTER'
harmony.usermgt.create_role_to_user_assignment('JSTOFFEL', 'H_SWIFTCOM_REPORTER', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JSTOFFEL/H_SWIFTCOM_REPORTER
harmony.usermgt.create_dds_item_assignment('JSTOFFEL', 'H_SWIFTCOM_REPORTER', 'SWIFTCOM FM Source', 'ONE', '9', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSTOFFEL', 'H_SWIFTCOM_REPORTER', 'SWIFTCOM FM Source', 'ONE', '8', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSTOFFEL', 'H_SWIFTCOM_REPORTER', 'SWIFTCOM FM Source', 'ONE', '6', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSTOFFEL', 'H_SWIFTCOM_REPORTER', 'SWIFTCOM FM Source', 'ONE', '5', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSTOFFEL', 'H_SWIFTCOM_REPORTER', 'SWIFTCOM FM Source', 'ONE', '2', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSTOFFEL', 'H_SWIFTCOM_REPORTER', 'SWIFTCOM FM Source', 'ONE', '1', sysdate, null);
-- Inserting RoleToUserAssignment 'JSTOKES2/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('JSTOKES2', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JSTOKES2/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('JSTOKES2', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11901/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSTOKES2', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11899/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSTOKES2', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11897/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSTOKES2', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11895/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSTOKES2', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11893/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSTOKES2', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11891/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSTOKES2', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11889/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSTOKES2', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11887/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JSTONE4/H_EFS2_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('JSTONE4', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JSTONE4/H_EFS2_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('JSTONE4', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '424', sysdate, null);
-- Inserting RoleToUserAssignment 'JSUMANOY/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('JSUMANOY', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JSUMANOY/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('JSUMANOY', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[70/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSUMANOY', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[68/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSUMANOY', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[274/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSUMANOY', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11763/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSUMANOY', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11017/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSUMANOY', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11078/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSUMANOY', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11105/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSUMANOY', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11109/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSUMANOY', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11323/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSUMANOY', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11324/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSUMANOY', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11329/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSUMANOY', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11340/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSUMANOY', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11425/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSUMANOY', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11552/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSUMANOY', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11553/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSUMANOY', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11652/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JSUMANOY', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11739/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JSWASEY/H_TPP_LOC_REP'
harmony.usermgt.create_role_to_user_assignment('JSWASEY', 'H_TPP_LOC_REP', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JSWASEY/H_TPP_LOC_REP
harmony.usermgt.create_dds_item_assignment('JSWASEY', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '42', sysdate, null);
-- Inserting RoleToUserAssignment 'JTABING1/H_TPP_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('JTABING1', 'H_TPP_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JTABING1/H_TPP_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('JTABING1', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '54', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTABING1', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '29', sysdate, null);
-- Inserting RoleToUserAssignment 'JTABING1/H_TPP_P2P_OFFERAUTH'
harmony.usermgt.create_role_to_user_assignment('JTABING1', 'H_TPP_P2P_OFFERAUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JTABING1/H_TPP_P2P_OFFERAUTH
harmony.usermgt.create_dds_item_assignment('JTABING1', 'H_TPP_P2P_OFFERAUTH', 'TPP AP2PLE OC', 'ONE', '278', sysdate, null);
-- Inserting RoleToUserAssignment 'JTADURAN/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JTADURAN', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JTADURAN/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('JTADURAN', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999714', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTADURAN', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999640', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTADURAN', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999426', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTADURAN', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999382', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTADURAN', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999364', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTADURAN', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999326', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTADURAN', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999111', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTADURAN', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998966', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTADURAN', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '200010', sysdate, null);
-- Inserting RoleToUserAssignment 'JTADURAN/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JTADURAN', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JTADURAN/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('JTADURAN', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999714', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTADURAN', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999640', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTADURAN', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999426', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTADURAN', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999382', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTADURAN', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999364', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTADURAN', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999326', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTADURAN', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999111', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTADURAN', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998966', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTADURAN', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '200010', sysdate, null);
-- Inserting RoleToUserAssignment 'JTADURAN/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('JTADURAN', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JTADURAN/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('JTADURAN', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[153/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTADURAN', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[140/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTADURAN', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[131/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTADURAN', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[130/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTADURAN', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[129/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTADURAN', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[128/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTADURAN', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11661/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTADURAN', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11566/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTADURAN', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11536/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTADURAN', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11342/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JTADURAN/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('JTADURAN', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JTADURAN/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('JTADURAN', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[153/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTADURAN', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11334/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTADURAN', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[108/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JTADURAN/H_TPP_LOC_REP'
harmony.usermgt.create_role_to_user_assignment('JTADURAN', 'H_TPP_LOC_REP', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JTADURAN/H_TPP_LOC_REP
harmony.usermgt.create_dds_item_assignment('JTADURAN', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '71', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTADURAN', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '233', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTADURAN', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '13', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTADURAN', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '12', sysdate, null);
-- Inserting RoleToUserAssignment 'JTADURAN/H_TPP_P2P_REPORT'
harmony.usermgt.create_role_to_user_assignment('JTADURAN', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JTADURAN/H_TPP_P2P_REPORT
harmony.usermgt.create_dds_item_assignment('JTADURAN', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '327', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTADURAN', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '302', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTADURAN', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '192', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTADURAN', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '186', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTADURAN', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '149', sysdate, null);
-- Inserting RoleToUserAssignment 'JTAKACS/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('JTAKACS', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JTAKACS/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('JTAKACS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11764/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTAKACS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11695/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTAKACS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11184/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JTELSIN/H_AP2OLLO_SSC_USER'
harmony.usermgt.create_role_to_user_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JTELSIN/H_AP2OLLO_SSC_USER
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '407', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '341', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '340', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '337', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '335', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '334', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '297', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '296', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '295', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '283', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '282', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '281', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '280', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '279', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '268', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '267', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '266', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '265', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '264', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '263', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '262', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '261', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '260', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '259', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '200', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '199', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '198', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '197', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '196', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '194', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '193', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '184', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '183', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '182', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '181', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '180', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '179', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '178', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '177', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '176', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '175', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '174', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '173', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '172', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '171', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '170', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '169', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '168', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '155', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '154', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '153', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '152', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '151', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '145', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '144', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '143', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '141', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '140', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '139', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '138', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '137', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '156', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '157', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '158', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '159', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '160', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '161', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '162', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '163', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '164', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '165', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '166', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '167', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '201', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '202', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '203', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '204', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '205', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '206', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '207', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '208', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '209', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '210', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '211', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '212', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '213', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '214', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '215', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '216', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '217', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '218', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '219', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '220', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '221', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '222', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '223', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '224', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '225', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '226', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '227', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '228', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '229', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '230', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '231', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '232', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '236', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '237', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '238', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '239', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '240', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '241', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '242', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '243', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '244', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '245', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '246', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '247', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '248', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '250', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '251', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '252', sysdate, null);
-- Inserting RoleToUserAssignment 'JTELSIN/H_SWIFTCOM_REPORTER'
harmony.usermgt.create_role_to_user_assignment('JTELSIN', 'H_SWIFTCOM_REPORTER', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JTELSIN/H_SWIFTCOM_REPORTER
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_SWIFTCOM_REPORTER', 'SWIFTCOM FM Source', 'ONE', '13', sysdate, null);
-- Inserting RoleToUserAssignment 'JTELSIN/H_TPP_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('JTELSIN', 'H_TPP_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JTELSIN/H_TPP_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('JTELSIN', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '50', sysdate, null);
-- Inserting RoleToUserAssignment 'JUMALI1/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('JUMALI1', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JUMALI1/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('JUMALI1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[37/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JUMALI1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11456/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JVALTROV/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('JVALTROV', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JVALTROV/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('JVALTROV', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11327/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVALTROV', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11178/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVALTROV', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11194/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVALTROV', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11195/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVALTROV', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11216/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVALTROV', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11217/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVALTROV', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11218/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVALTROV', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11230/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVALTROV', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11232/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVALTROV', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11233/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVALTROV', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11234/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVALTROV', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11235/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVALTROV', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11237/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVALTROV', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11260/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JVANETT/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JVANETT', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JVANETT/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('JVANETT', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998945', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVANETT', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998906', sysdate, null);
-- Inserting RoleToUserAssignment 'JVANETT/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JVANETT', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JVANETT/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('JVANETT', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998945', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVANETT', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998906', sysdate, null);
-- Inserting RoleToUserAssignment 'JVANETT/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('JVANETT', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JVANETT/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('JVANETT', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11767/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVANETT', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11737/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JVANVLER/BAM_REPORTER'
harmony.usermgt.create_role_to_user_assignment('JVANVLER', 'BAM_REPORTER', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JVANVLER/BAM_REPORTER
harmony.usermgt.create_dds_item_assignment('JVANVLER', 'BAM_REPORTER', 'BAM Region', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'JVANVLER/HB_FM_COMBI_VIEW'
harmony.usermgt.create_role_to_user_assignment('JVANVLER', 'HB_FM_COMBI_VIEW', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'JVANVLER/HERMES_IM_SUPPORT'
harmony.usermgt.create_role_to_user_assignment('JVANVLER', 'HERMES_IM_SUPPORT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JVANVLER/HERMES_IM_SUPPORT
harmony.usermgt.create_dds_item_assignment('JVANVLER', 'HERMES_IM_SUPPORT', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'JVANVLER/H_CHAINS_IM_SUPPORT'
harmony.usermgt.create_role_to_user_assignment('JVANVLER', 'H_CHAINS_IM_SUPPORT', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'JVANVLER/H_DLINK_IM_SUPPORT'
harmony.usermgt.create_role_to_user_assignment('JVANVLER', 'H_DLINK_IM_SUPPORT', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'JVANVLER/H_EFS2_IM_SUPPORT'
harmony.usermgt.create_role_to_user_assignment('JVANVLER', 'H_EFS2_IM_SUPPORT', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'JVANVLER/H_GXRS_IM_SUPPORT'
harmony.usermgt.create_role_to_user_assignment('JVANVLER', 'H_GXRS_IM_SUPPORT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JVANVLER/H_GXRS_IM_SUPPORT
harmony.usermgt.create_dds_item_assignment('JVANVLER', 'H_GXRS_IM_SUPPORT', 'GXRS instructing accounts in ART', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'JVANVLER/H_P2P_IM_SUPPORT'
harmony.usermgt.create_role_to_user_assignment('JVANVLER', 'H_P2P_IM_SUPPORT', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'JVANVLER/H_SWIFTCOM_IM_SUP'
harmony.usermgt.create_role_to_user_assignment('JVANVLER', 'H_SWIFTCOM_IM_SUP', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JVANVLER/H_SWIFTCOM_IM_SUP
harmony.usermgt.create_dds_item_assignment('JVANVLER', 'H_SWIFTCOM_IM_SUP', 'SWIFTCOM FM Source', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'JVANVLER/H_TOPS_IM_SUPPORT'
harmony.usermgt.create_role_to_user_assignment('JVANVLER', 'H_TOPS_IM_SUPPORT', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'JVANVLER/H_TPP_IM_SUPPORT'
harmony.usermgt.create_role_to_user_assignment('JVANVLER', 'H_TPP_IM_SUPPORT', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'JVARGA14/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JVARGA14', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JVARGA14/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('JVARGA14', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999263', sysdate, null);
-- Inserting RoleToUserAssignment 'JVARGA14/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JVARGA14', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JVARGA14/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('JVARGA14', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999263', sysdate, null);
-- Inserting RoleToUserAssignment 'JVARGA14/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('JVARGA14', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JVARGA14/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('JVARGA14', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11345/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JVARGA14/H_TPP_P2P_REPORT'
harmony.usermgt.create_role_to_user_assignment('JVARGA14', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JVARGA14/H_TPP_P2P_REPORT
harmony.usermgt.create_dds_item_assignment('JVARGA14', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '242', sysdate, null);
-- Inserting RoleToUserAssignment 'JVERBRU3/BAM_REPORTER'
harmony.usermgt.create_role_to_user_assignment('JVERBRU3', 'BAM_REPORTER', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JVERBRU3/BAM_REPORTER
harmony.usermgt.create_dds_item_assignment('JVERBRU3', 'BAM_REPORTER', 'BAM Region', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'JVERBRU3/HB_FM_COMBI_VIEW'
harmony.usermgt.create_role_to_user_assignment('JVERBRU3', 'HB_FM_COMBI_VIEW', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'JVERBRU3/HERMES_IM_SUPPORT'
harmony.usermgt.create_role_to_user_assignment('JVERBRU3', 'HERMES_IM_SUPPORT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JVERBRU3/HERMES_IM_SUPPORT
harmony.usermgt.create_dds_item_assignment('JVERBRU3', 'HERMES_IM_SUPPORT', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'JVERBRU3/H_CHAINS_IM_SUPPORT'
harmony.usermgt.create_role_to_user_assignment('JVERBRU3', 'H_CHAINS_IM_SUPPORT', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'JVERBRU3/H_DLINK_IM_SUPPORT'
harmony.usermgt.create_role_to_user_assignment('JVERBRU3', 'H_DLINK_IM_SUPPORT', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'JVERBRU3/H_EFS2_IM_SUPPORT'
harmony.usermgt.create_role_to_user_assignment('JVERBRU3', 'H_EFS2_IM_SUPPORT', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'JVERBRU3/H_GXRS_IM_SUPPORT'
harmony.usermgt.create_role_to_user_assignment('JVERBRU3', 'H_GXRS_IM_SUPPORT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JVERBRU3/H_GXRS_IM_SUPPORT
harmony.usermgt.create_dds_item_assignment('JVERBRU3', 'H_GXRS_IM_SUPPORT', 'GXRS instructing accounts in ART', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'JVERBRU3/H_P2P_IM_SUPPORT'
harmony.usermgt.create_role_to_user_assignment('JVERBRU3', 'H_P2P_IM_SUPPORT', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'JVERBRU3/H_SWIFTCOM_IM_SUP'
harmony.usermgt.create_role_to_user_assignment('JVERBRU3', 'H_SWIFTCOM_IM_SUP', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JVERBRU3/H_SWIFTCOM_IM_SUP
harmony.usermgt.create_dds_item_assignment('JVERBRU3', 'H_SWIFTCOM_IM_SUP', 'SWIFTCOM FM Source', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'JVERBRU3/H_TOPS_IM_SUPPORT'
harmony.usermgt.create_role_to_user_assignment('JVERBRU3', 'H_TOPS_IM_SUPPORT', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'JVERBRU3/H_TPP_IM_SUPPORT'
harmony.usermgt.create_role_to_user_assignment('JVERBRU3', 'H_TPP_IM_SUPPORT', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'JVGESTE4/HERMES_CMEFF_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('JVGESTE4', 'HERMES_CMEFF_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JVGESTE4/HERMES_CMEFF_REP_CTR
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'HERMES_CMEFF_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'JVGESTE4/HERMES_GRP_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('JVGESTE4', 'HERMES_GRP_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JVGESTE4/HERMES_GRP_REP_CTR
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'HERMES_GRP_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'JVGESTE4/HERMES_IDTXN_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('JVGESTE4', 'HERMES_IDTXN_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JVGESTE4/HERMES_IDTXN_REP_CTR
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'HERMES_IDTXN_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'JVGESTE4/HERMES_STAT_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('JVGESTE4', 'HERMES_STAT_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JVGESTE4/HERMES_STAT_REP_CTR
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'HERMES_STAT_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'JVGESTE4/HERMES_STS_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('JVGESTE4', 'HERMES_STS_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JVGESTE4/HERMES_STS_REP_CTR
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'HERMES_STS_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'JVGESTE4/HERMES_SYM_REC_CTR'
harmony.usermgt.create_role_to_user_assignment('JVGESTE4', 'HERMES_SYM_REC_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JVGESTE4/HERMES_SYM_REC_CTR
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'HERMES_SYM_REC_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'JVGESTE4/HERMES_TXN_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('JVGESTE4', 'HERMES_TXN_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JVGESTE4/HERMES_TXN_REP_CTR
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'HERMES_TXN_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'JVGESTE4/HERMES_VAVO_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('JVGESTE4', 'HERMES_VAVO_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JVGESTE4/HERMES_VAVO_REP_CTR
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'HERMES_VAVO_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'JVGESTE4/H_AGENT_IHB_MGR'
harmony.usermgt.create_role_to_user_assignment('JVGESTE4', 'H_AGENT_IHB_MGR', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'JVGESTE4/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JVGESTE4/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[94/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[93/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[91/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[89/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[88/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[58/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[47/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[439/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[438/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[434/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[411/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[397/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[38/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[348/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[344/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[342/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[288/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[286/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[281/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[276/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[268/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[267/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[266/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[264/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[263/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[254/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[253/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[246/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[244/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[238/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[237/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[232/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[229/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[225/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[219/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[218/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[217/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[215/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[208/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[207/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[190/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[179/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[178/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[177/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[176/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[175/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[174/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[173/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[172/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[171/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[170/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[169/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[161/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[160/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[159/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[156/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[155/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[154/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[153/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[147/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[146/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[144/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[141/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[140/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[131/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[130/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[129/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[127/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11991/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11981/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11973/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11927/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11924/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11919/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11918/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11917/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11881/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11865/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11862/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11847/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11417/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11409/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[114/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11385/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11362/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11358/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11357/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11349/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11342/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11334/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11327/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11319/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11272/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11260/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11237/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11235/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11234/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11233/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11232/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11230/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11218/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11217/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11216/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11212/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11080/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11072/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11070/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11061/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11015/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[109/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[108/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[107/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[106/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[105/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[104/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[103/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[102/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11091/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[111/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11106/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11130/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11147/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11148/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11153/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11178/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11184/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11194/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11195/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[112/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11436/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11495/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[115/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11536/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11537/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11543/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11562/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11566/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11575/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11580/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11582/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[116/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11627/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11628/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11629/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11635/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11637/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11654/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11655/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11661/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11670/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11695/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11697/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11699/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[117/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11710/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11713/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11737/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11753/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11755/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11756/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11761/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11764/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11767/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11769/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11771/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11780/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11783/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11785/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11805/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11818/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11820/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11825/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11841/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11842/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11843/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11844/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11846/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JVGESTE4/H_NETTING_LOC_INP_TC'
harmony.usermgt.create_role_to_user_assignment('JVGESTE4', 'H_NETTING_LOC_INP_TC', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JVGESTE4/H_NETTING_LOC_INP_TC
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_TC', 'Treasury Center Netting Participant', 'ONE', '[223/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_INP_TC', 'Treasury Center Netting Participant', 'ONE', '[222/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JVGESTE4/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('JVGESTE4', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JVGESTE4/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[49/CC]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[142/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11998/CC]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11356/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11687/CC]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11688/CC]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11689/CC]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11741/CC]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11743/CC]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11744/CC]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11745/CC]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11790/CC]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11831/CC]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11978/CC]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11985/CC]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11997/CC]', sysdate, null);
-- Inserting RoleToUserAssignment 'JVGESTE4/H_NETTING_LOC_REP_TC'
harmony.usermgt.create_role_to_user_assignment('JVGESTE4', 'H_NETTING_LOC_REP_TC', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JVGESTE4/H_NETTING_LOC_REP_TC
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[7/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[233/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[11486/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[11120/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[1/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JVGESTE4/H_SWIFTCOM_REPORTER'
harmony.usermgt.create_role_to_user_assignment('JVGESTE4', 'H_SWIFTCOM_REPORTER', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JVGESTE4/H_SWIFTCOM_REPORTER
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_SWIFTCOM_REPORTER', 'SWIFTCOM FM Source', 'ONE', '14', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVGESTE4', 'H_SWIFTCOM_REPORTER', 'SWIFTCOM FM Source', 'ONE', '13', sysdate, null);
-- Inserting RoleToUserAssignment 'JVGESTE4/H_TPP_CTR_REP'
harmony.usermgt.create_role_to_user_assignment('JVGESTE4', 'H_TPP_CTR_REP', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'JVIDA/H_EFS2_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('JVIDA', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JVIDA/H_EFS2_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('JVIDA', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '458', sysdate, null);
-- Inserting RoleToUserAssignment 'JVILLAC1/H_EFS2_LOC_REP_PARTY'
harmony.usermgt.create_role_to_user_assignment('JVILLAC1', 'H_EFS2_LOC_REP_PARTY', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JVILLAC1/H_EFS2_LOC_REP_PARTY
harmony.usermgt.create_dds_item_assignment('JVILLAC1', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '259', sysdate, null);
-- Inserting RoleToUserAssignment 'JVILLALO/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('JVILLALO', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JVILLALO/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('JVILLALO', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[80/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVILLALO', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[73/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVILLALO', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[59/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVILLALO', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11421/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVILLALO', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11344/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVILLALO', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11331/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JVILLASI/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JVILLASI', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JVILLASI/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('JVILLASI', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999392', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVILLASI', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999391', sysdate, null);
-- Inserting RoleToUserAssignment 'JVILLASI/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JVILLASI', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JVILLASI/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('JVILLASI', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999392', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVILLASI', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999391', sysdate, null);
-- Inserting RoleToUserAssignment 'JVILLASI/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('JVILLASI', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JVILLASI/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('JVILLASI', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[52/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVILLASI', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[42/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVILLASI', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11335/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVILLASI', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11113/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JVONDERP/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JVONDERP', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JVONDERP/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('JVONDERP', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999844', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVONDERP', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999843', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVONDERP', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999003', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVONDERP', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999002', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVONDERP', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999001', sysdate, null);
-- Inserting RoleToUserAssignment 'JVONDERP/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JVONDERP', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JVONDERP/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('JVONDERP', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999844', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVONDERP', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999843', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVONDERP', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999003', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVONDERP', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999002', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JVONDERP', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999001', sysdate, null);
-- Inserting RoleToUserAssignment 'JVONK/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JVONK', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JVONK/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('JVONK', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999863', sysdate, null);
-- Inserting RoleToUserAssignment 'JVONK/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JVONK', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JVONK/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('JVONK', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999863', sysdate, null);
-- Inserting RoleToUserAssignment 'JVUNSEK/H_EFS2_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('JVUNSEK', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JVUNSEK/H_EFS2_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('JVUNSEK', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '517', sysdate, null);
-- Inserting RoleToUserAssignment 'JVUNSEK/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('JVUNSEK', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JVUNSEK/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('JVUNSEK', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[203/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JWALTER3/H_EFS2_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('JWALTER3', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JWALTER3/H_EFS2_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('JWALTER3', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '475', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JWALTER3', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '459', sysdate, null);
-- Inserting RoleToUserAssignment 'JWANG136/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JWANG136', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JWANG136/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('JWANG136', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999869', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JWANG136', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999708', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JWANG136', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999707', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JWANG136', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999706', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JWANG136', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999705', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JWANG136', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999089', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JWANG136', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998960', sysdate, null);
-- Inserting RoleToUserAssignment 'JWANG136/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JWANG136', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JWANG136/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('JWANG136', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999869', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JWANG136', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999708', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JWANG136', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999707', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JWANG136', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999706', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JWANG136', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999705', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JWANG136', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999089', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JWANG136', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998960', sysdate, null);
-- Inserting RoleToUserAssignment 'JWANG136/H_EFS2_LOC_REP_PARTY'
harmony.usermgt.create_role_to_user_assignment('JWANG136', 'H_EFS2_LOC_REP_PARTY', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JWANG136/H_EFS2_LOC_REP_PARTY
harmony.usermgt.create_dds_item_assignment('JWANG136', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '344', sysdate, null);
-- Inserting RoleToUserAssignment 'JWANG136/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('JWANG136', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JWANG136/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('JWANG136', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[432/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JWANG136', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11750/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JWANG136/H_TPP_LOC_REP'
harmony.usermgt.create_role_to_user_assignment('JWANG136', 'H_TPP_LOC_REP', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JWANG136/H_TPP_LOC_REP
harmony.usermgt.create_dds_item_assignment('JWANG136', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '49', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JWANG136', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '48', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JWANG136', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '32', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JWANG136', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '31', sysdate, null);
-- Inserting RoleToUserAssignment 'JWANG136/H_TPP_P2P_REPORT'
harmony.usermgt.create_role_to_user_assignment('JWANG136', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JWANG136/H_TPP_P2P_REPORT
harmony.usermgt.create_dds_item_assignment('JWANG136', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '349', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JWANG136', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '346', sysdate, null);
-- Inserting RoleToUserAssignment 'JWHEADO2/H_EFS2_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('JWHEADO2', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JWHEADO2/H_EFS2_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('JWHEADO2', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '608', sysdate, null);
-- Inserting RoleToUserAssignment 'JWHEADO2/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('JWHEADO2', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JWHEADO2/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('JWHEADO2', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[153/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JWILLI23/H_EFS2_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('JWILLI23', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JWILLI23/H_EFS2_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('JWILLI23', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '354', sysdate, null);
-- Inserting RoleToUserAssignment 'JWILLI23/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('JWILLI23', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JWILLI23/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('JWILLI23', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[251/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JWILLI23/H_TPP_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('JWILLI23', 'H_TPP_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JWILLI23/H_TPP_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('JWILLI23', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '424', sysdate, null);
-- Inserting RoleToUserAssignment 'JWOJCIES/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('JWOJCIES', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JWOJCIES/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('JWOJCIES', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[279/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'JXU77/H_EFS2_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('JXU77', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JXU77/H_EFS2_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('JXU77', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '607', sysdate, null);
-- Inserting RoleToUserAssignment 'JZANDEN/H_EFS2_LOC_REP_PARTY'
harmony.usermgt.create_role_to_user_assignment('JZANDEN', 'H_EFS2_LOC_REP_PARTY', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JZANDEN/H_EFS2_LOC_REP_PARTY
harmony.usermgt.create_dds_item_assignment('JZANDEN', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '664', sysdate, null);
-- Inserting RoleToUserAssignment 'JZDVIHAL/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JZDVIHAL', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JZDVIHAL/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('JZDVIHAL', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999416', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JZDVIHAL', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999355', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JZDVIHAL', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999274', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JZDVIHAL', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998936', sysdate, null);
-- Inserting RoleToUserAssignment 'JZDVIHAL/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JZDVIHAL', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JZDVIHAL/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('JZDVIHAL', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999416', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JZDVIHAL', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999355', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JZDVIHAL', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999274', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JZDVIHAL', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998936', sysdate, null);
-- Inserting RoleToUserAssignment 'JZDVIHAL/H_TPP_P2P_REPORT'
harmony.usermgt.create_role_to_user_assignment('JZDVIHAL', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JZDVIHAL/H_TPP_P2P_REPORT
harmony.usermgt.create_dds_item_assignment('JZDVIHAL', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '364', sysdate, null);
-- Inserting RoleToUserAssignment 'JZHU55/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JZHU55', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JZHU55/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('JZHU55', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999869', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JZHU55', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999708', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JZHU55', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999707', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JZHU55', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999706', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JZHU55', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999705', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JZHU55', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999089', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JZHU55', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998960', sysdate, null);
-- Inserting RoleToUserAssignment 'JZHU55/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('JZHU55', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JZHU55/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('JZHU55', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999869', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JZHU55', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999708', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JZHU55', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999707', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JZHU55', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999706', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JZHU55', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999705', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JZHU55', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999089', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JZHU55', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998960', sysdate, null);
-- Inserting RoleToUserAssignment 'JZHU55/H_TPP_LOC_REP'
harmony.usermgt.create_role_to_user_assignment('JZHU55', 'H_TPP_LOC_REP', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for JZHU55/H_TPP_LOC_REP
harmony.usermgt.create_dds_item_assignment('JZHU55', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '49', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JZHU55', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '48', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JZHU55', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '32', sysdate, null);
harmony.usermgt.create_dds_item_assignment('JZHU55', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '31', sysdate, null);
-- Inserting RoleToUserAssignment 'KAGUSTIN/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('KAGUSTIN', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KAGUSTIN/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('KAGUSTIN', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[429/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KAGUSTIN', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[414/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KAGUSTIN', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[405/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KAGUSTIN', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[34/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KAGUSTIN', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[181/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KAGUSTIN', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11332/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'KALPUERT/H_TPP_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('KALPUERT', 'H_TPP_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KALPUERT/H_TPP_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('KALPUERT', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '147', sysdate, null);
-- Inserting RoleToUserAssignment 'KASSAAD/H_EFS2_LOC_REP_PARTY'
harmony.usermgt.create_role_to_user_assignment('KASSAAD', 'H_EFS2_LOC_REP_PARTY', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KASSAAD/H_EFS2_LOC_REP_PARTY
harmony.usermgt.create_dds_item_assignment('KASSAAD', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '584', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KASSAAD', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '358', sysdate, null);
-- Inserting RoleToUserAssignment 'KAWASTHI/H_EFS2_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('KAWASTHI', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KAWASTHI/H_EFS2_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('KAWASTHI', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '576', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KAWASTHI', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '382', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KAWASTHI', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '380', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KAWASTHI', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '378', sysdate, null);
-- Inserting RoleToUserAssignment 'KBAKONYI/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('KBAKONYI', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KBAKONYI/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('KBAKONYI', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999200', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBAKONYI', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998971', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBAKONYI', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998922', sysdate, null);
-- Inserting RoleToUserAssignment 'KBAKONYI/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('KBAKONYI', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KBAKONYI/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('KBAKONYI', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999200', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBAKONYI', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998971', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBAKONYI', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998922', sysdate, null);
-- Inserting RoleToUserAssignment 'KBAKONYI/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('KBAKONYI', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KBAKONYI/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('KBAKONYI', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11764/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBAKONYI', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11184/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'KBAKONYI/H_TPP_P2P_REPORT'
harmony.usermgt.create_role_to_user_assignment('KBAKONYI', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KBAKONYI/H_TPP_P2P_REPORT
harmony.usermgt.create_dds_item_assignment('KBAKONYI', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '367', sysdate, null);
-- Inserting RoleToUserAssignment 'KBAUMAN/H_GXRS_SSC_MGR'
harmony.usermgt.create_role_to_user_assignment('KBAUMAN', 'H_GXRS_SSC_MGR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KBAUMAN/H_GXRS_SSC_MGR
harmony.usermgt.create_dds_item_assignment('KBAUMAN', 'H_GXRS_SSC_MGR', 'GXRS instructing accounts in ART', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'KBAUMAN/H_SWIFTCOM_RELEASER'
harmony.usermgt.create_role_to_user_assignment('KBAUMAN', 'H_SWIFTCOM_RELEASER', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KBAUMAN/H_SWIFTCOM_RELEASER
harmony.usermgt.create_dds_item_assignment('KBAUMAN', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '7', sysdate, null);
-- Inserting RoleToUserAssignment 'KBLAKE1/H_TPP_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('KBLAKE1', 'H_TPP_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KBLAKE1/H_TPP_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('KBLAKE1', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '354', sysdate, null);
-- Inserting RoleToUserAssignment 'KBLANCON/H_TPP_P2P_OFFERMGT'
harmony.usermgt.create_role_to_user_assignment('KBLANCON', 'H_TPP_P2P_OFFERMGT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KBLANCON/H_TPP_P2P_OFFERMGT
harmony.usermgt.create_dds_item_assignment('KBLANCON', 'H_TPP_P2P_OFFERMGT', 'TPP AP2PLE OC', 'ONE', '331', sysdate, null);
-- Inserting RoleToUserAssignment 'KBOGUSZE/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('KBOGUSZE', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KBOGUSZE/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('KBOGUSZE', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11285/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBOGUSZE', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11281/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBOGUSZE', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11280/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'KBOGUSZE/H_TPP_P2P_OFFERAUTH'
harmony.usermgt.create_role_to_user_assignment('KBOGUSZE', 'H_TPP_P2P_OFFERAUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KBOGUSZE/H_TPP_P2P_OFFERAUTH
harmony.usermgt.create_dds_item_assignment('KBOGUSZE', 'H_TPP_P2P_OFFERAUTH', 'TPP AP2PLE OC', 'ONE', '401', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBOGUSZE', 'H_TPP_P2P_OFFERAUTH', 'TPP AP2PLE OC', 'ONE', '400', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBOGUSZE', 'H_TPP_P2P_OFFERAUTH', 'TPP AP2PLE OC', 'ONE', '399', sysdate, null);
-- Inserting RoleToUserAssignment 'KBOGUSZE/H_TPP_P2P_OFFERMGT'
harmony.usermgt.create_role_to_user_assignment('KBOGUSZE', 'H_TPP_P2P_OFFERMGT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KBOGUSZE/H_TPP_P2P_OFFERMGT
harmony.usermgt.create_dds_item_assignment('KBOGUSZE', 'H_TPP_P2P_OFFERMGT', 'TPP AP2PLE OC', 'ONE', '401', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBOGUSZE', 'H_TPP_P2P_OFFERMGT', 'TPP AP2PLE OC', 'ONE', '400', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBOGUSZE', 'H_TPP_P2P_OFFERMGT', 'TPP AP2PLE OC', 'ONE', '399', sysdate, null);
-- Inserting RoleToUserAssignment 'KBORTHWI/HERMES_CMEFF_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('KBORTHWI', 'HERMES_CMEFF_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KBORTHWI/HERMES_CMEFF_REP_CTR
harmony.usermgt.create_dds_item_assignment('KBORTHWI', 'HERMES_CMEFF_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'KBORTHWI/HERMES_GRP_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('KBORTHWI', 'HERMES_GRP_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KBORTHWI/HERMES_GRP_REP_CTR
harmony.usermgt.create_dds_item_assignment('KBORTHWI', 'HERMES_GRP_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'KBORTHWI/HERMES_IDTXN_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('KBORTHWI', 'HERMES_IDTXN_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KBORTHWI/HERMES_IDTXN_REP_CTR
harmony.usermgt.create_dds_item_assignment('KBORTHWI', 'HERMES_IDTXN_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'KBORTHWI/HERMES_STAT_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('KBORTHWI', 'HERMES_STAT_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KBORTHWI/HERMES_STAT_REP_CTR
harmony.usermgt.create_dds_item_assignment('KBORTHWI', 'HERMES_STAT_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'KBORTHWI/HERMES_STS_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('KBORTHWI', 'HERMES_STS_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KBORTHWI/HERMES_STS_REP_CTR
harmony.usermgt.create_dds_item_assignment('KBORTHWI', 'HERMES_STS_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'KBORTHWI/HERMES_SYM_REC_CTR'
harmony.usermgt.create_role_to_user_assignment('KBORTHWI', 'HERMES_SYM_REC_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KBORTHWI/HERMES_SYM_REC_CTR
harmony.usermgt.create_dds_item_assignment('KBORTHWI', 'HERMES_SYM_REC_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'KBORTHWI/HERMES_TXN_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('KBORTHWI', 'HERMES_TXN_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KBORTHWI/HERMES_TXN_REP_CTR
harmony.usermgt.create_dds_item_assignment('KBORTHWI', 'HERMES_TXN_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'KBORTHWI/HERMES_VAVO_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('KBORTHWI', 'HERMES_VAVO_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KBORTHWI/HERMES_VAVO_REP_CTR
harmony.usermgt.create_dds_item_assignment('KBORTHWI', 'HERMES_VAVO_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'KBORTHWI/H_EFS2_CTR_REP'
harmony.usermgt.create_role_to_user_assignment('KBORTHWI', 'H_EFS2_CTR_REP', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'KBORTHWI/H_EFS2_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('KBORTHWI', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KBORTHWI/H_EFS2_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('KBORTHWI', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '270', sysdate, null);
-- Inserting RoleToUserAssignment 'KBORTHWI/H_NETTING_CTR_REP'
harmony.usermgt.create_role_to_user_assignment('KBORTHWI', 'H_NETTING_CTR_REP', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'KBORTHWI/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('KBORTHWI', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KBORTHWI/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('KBORTHWI', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[63/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBORTHWI', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[60/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'KBORTHWI/H_SWIFTCOM_RELEASER'
harmony.usermgt.create_role_to_user_assignment('KBORTHWI', 'H_SWIFTCOM_RELEASER', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KBORTHWI/H_SWIFTCOM_RELEASER
harmony.usermgt.create_dds_item_assignment('KBORTHWI', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '13', sysdate, null);
-- Inserting RoleToUserAssignment 'KBORTHWI/H_TOPS_CNTRP_EXP_REP'
harmony.usermgt.create_role_to_user_assignment('KBORTHWI', 'H_TOPS_CNTRP_EXP_REP', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'KBROECKX/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('KBROECKX', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KBROECKX/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('KBROECKX', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999794', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBROECKX', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999042', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBROECKX', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999041', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBROECKX', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '100062', sysdate, null);
-- Inserting RoleToUserAssignment 'KBROECKX/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('KBROECKX', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KBROECKX/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('KBROECKX', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999794', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBROECKX', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999042', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBROECKX', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999041', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBROECKX', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '100062', sysdate, null);
-- Inserting RoleToUserAssignment 'KBROECKX/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('KBROECKX', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KBROECKX/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('KBROECKX', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[244/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'KBROECKX/H_TPP_P2P_REPORT'
harmony.usermgt.create_role_to_user_assignment('KBROECKX', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KBROECKX/H_TPP_P2P_REPORT
harmony.usermgt.create_dds_item_assignment('KBROECKX', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '287', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBROECKX', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '286', sysdate, null);
-- Inserting RoleToUserAssignment 'KBUELENS/BAM_MANAGER'
harmony.usermgt.create_role_to_user_assignment('KBUELENS', 'BAM_MANAGER', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KBUELENS/BAM_MANAGER
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'BAM_MANAGER', 'BAM Region', 'ONE', '2', sysdate, null);
-- Inserting RoleToUserAssignment 'KBUELENS/BAM_REPORTER'
harmony.usermgt.create_role_to_user_assignment('KBUELENS', 'BAM_REPORTER', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KBUELENS/BAM_REPORTER
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'BAM_REPORTER', 'BAM Region', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'KBUELENS/HERMES_CMEFF_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('KBUELENS', 'HERMES_CMEFF_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KBUELENS/HERMES_CMEFF_REP_CTR
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'HERMES_CMEFF_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'KBUELENS/HERMES_GRP_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('KBUELENS', 'HERMES_GRP_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KBUELENS/HERMES_GRP_REP_CTR
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'HERMES_GRP_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'KBUELENS/HERMES_IDTXN_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('KBUELENS', 'HERMES_IDTXN_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KBUELENS/HERMES_IDTXN_REP_CTR
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'HERMES_IDTXN_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'KBUELENS/HERMES_STAT_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('KBUELENS', 'HERMES_STAT_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KBUELENS/HERMES_STAT_REP_CTR
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'HERMES_STAT_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'KBUELENS/HERMES_STS_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('KBUELENS', 'HERMES_STS_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KBUELENS/HERMES_STS_REP_CTR
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'HERMES_STS_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'KBUELENS/HERMES_SYM_REC_CTR'
harmony.usermgt.create_role_to_user_assignment('KBUELENS', 'HERMES_SYM_REC_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KBUELENS/HERMES_SYM_REC_CTR
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'HERMES_SYM_REC_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'KBUELENS/HERMES_TXN_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('KBUELENS', 'HERMES_TXN_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KBUELENS/HERMES_TXN_REP_CTR
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'HERMES_TXN_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'KBUELENS/HERMES_VAVO_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('KBUELENS', 'HERMES_VAVO_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KBUELENS/HERMES_VAVO_REP_CTR
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'HERMES_VAVO_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'KBUELENS/H_EFS2_CTR_REP'
harmony.usermgt.create_role_to_user_assignment('KBUELENS', 'H_EFS2_CTR_REP', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'KBUELENS/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KBUELENS/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[94/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[93/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[91/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[89/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[88/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[58/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[47/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[439/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[438/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[434/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[411/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[397/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[38/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[348/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[344/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[342/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[288/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[286/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[281/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[276/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[268/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[267/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[266/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[264/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[263/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[254/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[246/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[244/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[238/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[237/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[232/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[229/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[225/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[219/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[218/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[217/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[215/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[208/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[207/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[190/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[179/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[178/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[177/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[176/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[175/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[174/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[173/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[172/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[171/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[170/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[169/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[168/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[161/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[160/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[159/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[156/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[155/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[154/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[153/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[147/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[146/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[144/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[141/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[140/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[131/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[130/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[129/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[127/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11991/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11983/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11981/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11973/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11930/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11927/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11924/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11919/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11918/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11917/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11881/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11865/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11862/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11436/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11417/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[114/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11385/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11362/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11358/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11357/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11349/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11342/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11334/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11327/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11319/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11272/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11260/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11237/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11235/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11234/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11233/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11232/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11230/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11218/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11217/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11216/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11212/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11080/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11072/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11070/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11061/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11015/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[109/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[108/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[107/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[106/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[105/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[104/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[103/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[102/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11091/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[111/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11106/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11130/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11147/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11148/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11153/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11178/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11184/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11194/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11195/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[112/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11495/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[115/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11536/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11537/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11543/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11562/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11566/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11575/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11580/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11582/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[116/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11627/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11628/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11629/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11635/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11637/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11654/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11655/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11661/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11670/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11695/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11697/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11699/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[117/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11710/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11713/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11737/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11753/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11755/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11756/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11761/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11764/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11767/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11769/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11771/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11780/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11783/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11785/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11805/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11818/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11820/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11825/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11841/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11842/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11843/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11844/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11846/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11847/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'KBUELENS/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('KBUELENS', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KBUELENS/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11356/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11687/CC]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11688/CC]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11689/CC]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11741/CC]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11743/CC]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11744/CC]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11745/CC]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11831/CC]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11978/CC]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11985/CC]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[142/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[49/CC]', sysdate, null);
-- Inserting RoleToUserAssignment 'KBUELENS/H_NETTING_LOC_REP_TC'
harmony.usermgt.create_role_to_user_assignment('KBUELENS', 'H_NETTING_LOC_REP_TC', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KBUELENS/H_NETTING_LOC_REP_TC
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[7/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[233/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[11486/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[11120/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'KBUELENS/H_SWIFTCOM_REPORTER'
harmony.usermgt.create_role_to_user_assignment('KBUELENS', 'H_SWIFTCOM_REPORTER', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KBUELENS/H_SWIFTCOM_REPORTER
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_SWIFTCOM_REPORTER', 'SWIFTCOM FM Source', 'ONE', '14', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KBUELENS', 'H_SWIFTCOM_REPORTER', 'SWIFTCOM FM Source', 'ONE', '13', sysdate, null);
-- Inserting RoleToUserAssignment 'KBUELENS/H_TPP_CTR_REP'
harmony.usermgt.create_role_to_user_assignment('KBUELENS', 'H_TPP_CTR_REP', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'KCABRERA/H_EFS2_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('KCABRERA', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KCABRERA/H_EFS2_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('KCABRERA', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '656', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KCABRERA', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '567', sysdate, null);
-- Inserting RoleToUserAssignment 'KCABRERA/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('KCABRERA', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KCABRERA/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('KCABRERA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11113/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'KCASTILL/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('KCASTILL', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KCASTILL/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('KCASTILL', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11699/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KCASTILL', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11697/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'KDAMATO/H_AP2OLLO_SSC_USER'
harmony.usermgt.create_role_to_user_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KDAMATO/H_AP2OLLO_SSC_USER
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '407', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '341', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '340', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '337', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '335', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '334', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '297', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '296', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '295', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '283', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '282', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '281', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '280', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '279', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '268', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '267', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '266', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '265', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '264', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '263', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '262', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '261', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '260', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '259', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '200', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '199', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '198', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '197', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '196', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '194', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '193', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '184', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '183', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '182', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '181', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '180', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '179', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '178', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '177', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '176', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '175', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '174', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '173', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '172', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '171', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '170', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '169', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '168', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '155', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '154', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '153', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '152', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '151', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '145', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '144', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '143', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '141', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '140', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '139', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '138', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '137', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '156', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '157', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '158', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '159', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '160', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '161', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '162', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '163', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '164', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '165', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '166', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '167', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '201', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '202', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '203', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '204', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '205', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '206', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '207', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '208', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '209', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '210', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '211', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '212', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '213', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '214', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '215', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '216', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '217', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '218', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '219', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '220', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '221', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '222', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '223', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '224', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '225', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '226', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '227', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '228', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '229', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '230', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '231', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '232', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '236', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '237', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '238', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '239', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '240', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '241', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '242', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '243', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '244', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '245', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '246', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '247', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '248', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '250', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '251', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '252', sysdate, null);
-- Inserting RoleToUserAssignment 'KDAMATO/H_SWIFTCOM_REPORTER'
harmony.usermgt.create_role_to_user_assignment('KDAMATO', 'H_SWIFTCOM_REPORTER', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KDAMATO/H_SWIFTCOM_REPORTER
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_SWIFTCOM_REPORTER', 'SWIFTCOM FM Source', 'ONE', '13', sysdate, null);
-- Inserting RoleToUserAssignment 'KDAMATO/H_TPP_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('KDAMATO', 'H_TPP_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KDAMATO/H_TPP_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('KDAMATO', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '50', sysdate, null);
-- Inserting RoleToUserAssignment 'KDELANEY/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('KDELANEY', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KDELANEY/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('KDELANEY', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[140/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDELANEY', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11566/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'KDELANEY/H_TPP_LOC_REP'
harmony.usermgt.create_role_to_user_assignment('KDELANEY', 'H_TPP_LOC_REP', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KDELANEY/H_TPP_LOC_REP
harmony.usermgt.create_dds_item_assignment('KDELANEY', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '29', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDELANEY', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '233', sysdate, null);
-- Inserting RoleToUserAssignment 'KDELANEY/H_TPP_P2P_REPORT'
harmony.usermgt.create_role_to_user_assignment('KDELANEY', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KDELANEY/H_TPP_P2P_REPORT
harmony.usermgt.create_dds_item_assignment('KDELANEY', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '302', sysdate, null);
-- Inserting RoleToUserAssignment 'KDUFFKOV/H_AP2OLLO_SSC_MGR'
harmony.usermgt.create_role_to_user_assignment('KDUFFKOV', 'H_AP2OLLO_SSC_MGR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KDUFFKOV/H_AP2OLLO_SSC_MGR
harmony.usermgt.create_dds_item_assignment('KDUFFKOV', 'H_AP2OLLO_SSC_MGR', 'TPP AP2PLE OC', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'KDUFFKOV/H_AP2PLE_SSC_MGR'
harmony.usermgt.create_role_to_user_assignment('KDUFFKOV', 'H_AP2PLE_SSC_MGR', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'KDZIK/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('KDZIK', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KDZIK/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('KDZIK', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999853', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDZIK', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999000', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDZIK', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998999', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDZIK', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998998', sysdate, null);
-- Inserting RoleToUserAssignment 'KDZIK/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('KDZIK', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KDZIK/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('KDZIK', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999853', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDZIK', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999000', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDZIK', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998999', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDZIK', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998998', sysdate, null);
-- Inserting RoleToUserAssignment 'KDZIK/H_EFS2_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('KDZIK', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KDZIK/H_EFS2_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('KDZIK', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '444', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDZIK', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '443', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDZIK', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '420', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDZIK', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '419', sysdate, null);
-- Inserting RoleToUserAssignment 'KDZIK/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('KDZIK', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KDZIK/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('KDZIK', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[279/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDZIK', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11182/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDZIK', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11181/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KDZIK', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11180/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'KELHADDA/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('KELHADDA', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KELHADDA/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('KELHADDA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999456', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KELHADDA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999455', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KELHADDA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999082', sysdate, null);
-- Inserting RoleToUserAssignment 'KELHADDA/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('KELHADDA', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KELHADDA/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('KELHADDA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999456', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KELHADDA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999455', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KELHADDA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999082', sysdate, null);
-- Inserting RoleToUserAssignment 'KELHADDA/H_EFS2_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('KELHADDA', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KELHADDA/H_EFS2_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('KELHADDA', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '593', sysdate, null);
-- Inserting RoleToUserAssignment 'KELHADDA/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('KELHADDA', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KELHADDA/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('KELHADDA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[276/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'KELHADDA/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('KELHADDA', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KELHADDA/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('KELHADDA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11870/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KELHADDA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11868/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KELHADDA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11713/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'KELHADDA/H_TPP_P2P_OFFERAUTH'
harmony.usermgt.create_role_to_user_assignment('KELHADDA', 'H_TPP_P2P_OFFERAUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KELHADDA/H_TPP_P2P_OFFERAUTH
harmony.usermgt.create_dds_item_assignment('KELHADDA', 'H_TPP_P2P_OFFERAUTH', 'TPP AP2PLE OC', 'ONE', '98', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KELHADDA', 'H_TPP_P2P_OFFERAUTH', 'TPP AP2PLE OC', 'ONE', '255', sysdate, null);
-- Inserting RoleToUserAssignment 'KENRIQ11/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('KENRIQ11', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KENRIQ11/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('KENRIQ11', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[430/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KENRIQ11', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[153/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'KENRIQ11/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('KENRIQ11', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KENRIQ11/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('KENRIQ11', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[153/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'KENRIQ11/H_TPP_LOC_REP'
harmony.usermgt.create_role_to_user_assignment('KENRIQ11', 'H_TPP_LOC_REP', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KENRIQ11/H_TPP_LOC_REP
harmony.usermgt.create_dds_item_assignment('KENRIQ11', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '29', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KENRIQ11', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '233', sysdate, null);
-- Inserting RoleToUserAssignment 'KENRIQ11/H_TPP_P2P_REPORT'
harmony.usermgt.create_role_to_user_assignment('KENRIQ11', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KENRIQ11/H_TPP_P2P_REPORT
harmony.usermgt.create_dds_item_assignment('KENRIQ11', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '302', sysdate, null);
-- Inserting RoleToUserAssignment 'KFITZG16/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('KFITZG16', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KFITZG16/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('KFITZG16', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999787', sysdate, null);
-- Inserting RoleToUserAssignment 'KFITZG16/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('KFITZG16', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KFITZG16/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('KFITZG16', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999787', sysdate, null);
-- Inserting RoleToUserAssignment 'KFITZG16/H_EFS2_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('KFITZG16', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KFITZG16/H_EFS2_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('KFITZG16', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '535', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KFITZG16', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '518', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KFITZG16', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '315', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KFITZG16', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '314', sysdate, null);
-- Inserting RoleToUserAssignment 'KFITZG16/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('KFITZG16', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KFITZG16/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('KFITZG16', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[142/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KFITZG16', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11417/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'KFLECKS/H_EFS2_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('KFLECKS', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KFLECKS/H_EFS2_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('KFLECKS', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '698', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KFLECKS', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '585', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KFLECKS', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '528', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KFLECKS', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '273', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KFLECKS', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '267', sysdate, null);
-- Inserting RoleToUserAssignment 'KFLECKS/H_TPP_LOC_REP'
harmony.usermgt.create_role_to_user_assignment('KFLECKS', 'H_TPP_LOC_REP', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KFLECKS/H_TPP_LOC_REP
harmony.usermgt.create_dds_item_assignment('KFLECKS', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '39', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KFLECKS', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '37', sysdate, null);
-- Inserting RoleToUserAssignment 'KFULLER2/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('KFULLER2', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KFULLER2/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('KFULLER2', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999954', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KFULLER2', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999642', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KFULLER2', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999641', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KFULLER2', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999640', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KFULLER2', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999486', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KFULLER2', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999383', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KFULLER2', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999292', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KFULLER2', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999033', sysdate, null);
-- Inserting RoleToUserAssignment 'KFULLER2/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('KFULLER2', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KFULLER2/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('KFULLER2', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999954', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KFULLER2', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999642', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KFULLER2', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999641', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KFULLER2', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999640', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KFULLER2', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999486', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KFULLER2', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999383', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KFULLER2', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999292', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KFULLER2', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999033', sysdate, null);
-- Inserting RoleToUserAssignment 'KFULLER2/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('KFULLER2', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KFULLER2/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('KFULLER2', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[131/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KFULLER2', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[130/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KFULLER2', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[129/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KFULLER2', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[128/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KFULLER2', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11661/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KFULLER2', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11536/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'KFULLER2/H_TPP_P2P_OFFERMGT'
harmony.usermgt.create_role_to_user_assignment('KFULLER2', 'H_TPP_P2P_OFFERMGT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KFULLER2/H_TPP_P2P_OFFERMGT
harmony.usermgt.create_dds_item_assignment('KFULLER2', 'H_TPP_P2P_OFFERMGT', 'TPP AP2PLE OC', 'ONE', '192', sysdate, null);
-- Inserting RoleToUserAssignment 'KGREELEY/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('KGREELEY', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KGREELEY/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('KGREELEY', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999452', sysdate, null);
-- Inserting RoleToUserAssignment 'KGREELEY/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('KGREELEY', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KGREELEY/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('KGREELEY', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999452', sysdate, null);
-- Inserting RoleToUserAssignment 'KHORVAT/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('KHORVAT', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KHORVAT/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('KHORVAT', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11497/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'KHORVAT/H_TPP_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('KHORVAT', 'H_TPP_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KHORVAT/H_TPP_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('KHORVAT', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '40', sysdate, null);
-- Inserting RoleToUserAssignment 'KIWATA/H_EFS2_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('KIWATA', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KIWATA/H_EFS2_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('KIWATA', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '344', sysdate, null);
-- Inserting RoleToUserAssignment 'KIWATA/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('KIWATA', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KIWATA/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('KIWATA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[432/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KIWATA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11750/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'KIWATA/H_TPP_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('KIWATA', 'H_TPP_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KIWATA/H_TPP_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('KIWATA', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '48', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KIWATA', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '32', sysdate, null);
-- Inserting RoleToUserAssignment 'KJCASTILLO/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('KJCASTILLO', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KJCASTILLO/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('KJCASTILLO', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999745', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KJCASTILLO', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999714', sysdate, null);
-- Inserting RoleToUserAssignment 'KJCASTILLO/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('KJCASTILLO', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KJCASTILLO/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('KJCASTILLO', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999745', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KJCASTILLO', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999714', sysdate, null);
-- Inserting RoleToUserAssignment 'KJCASTILLO/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('KJCASTILLO', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KJCASTILLO/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('KJCASTILLO', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[344/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KJCASTILLO', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[178/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KJCASTILLO', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[116/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'KJCASTILLO/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('KJCASTILLO', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KJCASTILLO/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('KJCASTILLO', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[116/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'KJCASTILLO/H_TPP_LOC_REP'
harmony.usermgt.create_role_to_user_assignment('KJCASTILLO', 'H_TPP_LOC_REP', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KJCASTILLO/H_TPP_LOC_REP
harmony.usermgt.create_dds_item_assignment('KJCASTILLO', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '71', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KJCASTILLO', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '29', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KJCASTILLO', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '233', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KJCASTILLO', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '13', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KJCASTILLO', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '12', sysdate, null);
-- Inserting RoleToUserAssignment 'KJCASTILLO/H_TPP_P2P_REPORT'
harmony.usermgt.create_role_to_user_assignment('KJCASTILLO', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KJCASTILLO/H_TPP_P2P_REPORT
harmony.usermgt.create_dds_item_assignment('KJCASTILLO', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '302', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KJCASTILLO', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '276', sysdate, null);
-- Inserting RoleToUserAssignment 'KKAEDE1/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('KKAEDE1', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KKAEDE1/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('KKAEDE1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999705', sysdate, null);
-- Inserting RoleToUserAssignment 'KKAEDE1/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('KKAEDE1', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KKAEDE1/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('KKAEDE1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999705', sysdate, null);
-- Inserting RoleToUserAssignment 'KKAEDE1/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('KKAEDE1', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KKAEDE1/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('KKAEDE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[433/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'KKAEDE1/H_TPP_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('KKAEDE1', 'H_TPP_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KKAEDE1/H_TPP_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('KKAEDE1', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '363', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KKAEDE1', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '32', sysdate, null);
-- Inserting RoleToUserAssignment 'KKAEDE1/H_TPP_P2P_REPORT'
harmony.usermgt.create_role_to_user_assignment('KKAEDE1', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KKAEDE1/H_TPP_P2P_REPORT
harmony.usermgt.create_dds_item_assignment('KKAEDE1', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '347', sysdate, null);
-- Inserting RoleToUserAssignment 'KKAEWKUN/H_EFS2_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('KKAEWKUN', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KKAEWKUN/H_EFS2_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('KKAEWKUN', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '371', sysdate, null);
-- Inserting RoleToUserAssignment 'KKAEWKUN/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('KKAEWKUN', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KKAEWKUN/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('KKAEWKUN', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[424/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'KKALINOW/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('KKALINOW', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KKALINOW/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('KKALINOW', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11345/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'KKALINOW/H_TPP_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('KKALINOW', 'H_TPP_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KKALINOW/H_TPP_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('KKALINOW', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '106', sysdate, null);
-- Inserting RoleToUserAssignment 'KKIEPER/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('KKIEPER', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KKIEPER/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('KKIEPER', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999886', sysdate, null);
-- Inserting RoleToUserAssignment 'KKIEPER/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('KKIEPER', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KKIEPER/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('KKIEPER', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999886', sysdate, null);
-- Inserting RoleToUserAssignment 'KKIEPER/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('KKIEPER', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KKIEPER/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('KKIEPER', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[111/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'KKIEPER/H_TPP_P2P_REPORT'
harmony.usermgt.create_role_to_user_assignment('KKIEPER', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KKIEPER/H_TPP_P2P_REPORT
harmony.usermgt.create_dds_item_assignment('KKIEPER', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '312', sysdate, null);
-- Inserting RoleToUserAssignment 'KKNOTZIN/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('KKNOTZIN', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KKNOTZIN/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('KKNOTZIN', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999799', sysdate, null);
-- Inserting RoleToUserAssignment 'KKNOTZIN/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('KKNOTZIN', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KKNOTZIN/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('KKNOTZIN', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999799', sysdate, null);
-- Inserting RoleToUserAssignment 'KKOKOSZK/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('KKOKOSZK', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KKOKOSZK/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('KKOKOSZK', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11497/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'KKONSTAN/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('KKONSTAN', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KKONSTAN/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('KKONSTAN', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[225/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'KKONSTAN/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('KKONSTAN', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KKONSTAN/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('KKONSTAN', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[225/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'KKONSTAN/H_TPP_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('KKONSTAN', 'H_TPP_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KKONSTAN/H_TPP_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('KKONSTAN', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '8', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KKONSTAN', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '63', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KKONSTAN', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '355', sysdate, null);
-- Inserting RoleToUserAssignment 'KLANKHOR/H_EFS2_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('KLANKHOR', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KLANKHOR/H_EFS2_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('KLANKHOR', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '481', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KLANKHOR', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '461', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KLANKHOR', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '305', sysdate, null);
-- Inserting RoleToUserAssignment 'KLATU/H_EFS2_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('KLATU', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KLATU/H_EFS2_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('KLATU', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '262', sysdate, null);
-- Inserting RoleToUserAssignment 'KLEWKOWS/H_GXRS_CALL_CENTER'
harmony.usermgt.create_role_to_user_assignment('KLEWKOWS', 'H_GXRS_CALL_CENTER', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'KLIM3/BAM_REPORTER'
harmony.usermgt.create_role_to_user_assignment('KLIM3', 'BAM_REPORTER', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KLIM3/BAM_REPORTER
harmony.usermgt.create_dds_item_assignment('KLIM3', 'BAM_REPORTER', 'BAM Region', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'KLIM3/HERMES_CMEFF_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('KLIM3', 'HERMES_CMEFF_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KLIM3/HERMES_CMEFF_REP_CTR
harmony.usermgt.create_dds_item_assignment('KLIM3', 'HERMES_CMEFF_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'KLIM3/HERMES_GRP_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('KLIM3', 'HERMES_GRP_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KLIM3/HERMES_GRP_REP_CTR
harmony.usermgt.create_dds_item_assignment('KLIM3', 'HERMES_GRP_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'KLIM3/HERMES_IDTXN_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('KLIM3', 'HERMES_IDTXN_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KLIM3/HERMES_IDTXN_REP_CTR
harmony.usermgt.create_dds_item_assignment('KLIM3', 'HERMES_IDTXN_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'KLIM3/HERMES_STAT_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('KLIM3', 'HERMES_STAT_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KLIM3/HERMES_STAT_REP_CTR
harmony.usermgt.create_dds_item_assignment('KLIM3', 'HERMES_STAT_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'KLIM3/HERMES_STS_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('KLIM3', 'HERMES_STS_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KLIM3/HERMES_STS_REP_CTR
harmony.usermgt.create_dds_item_assignment('KLIM3', 'HERMES_STS_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'KLIM3/HERMES_SYM_REC_CTR'
harmony.usermgt.create_role_to_user_assignment('KLIM3', 'HERMES_SYM_REC_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KLIM3/HERMES_SYM_REC_CTR
harmony.usermgt.create_dds_item_assignment('KLIM3', 'HERMES_SYM_REC_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'KLIM3/HERMES_TXN_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('KLIM3', 'HERMES_TXN_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KLIM3/HERMES_TXN_REP_CTR
harmony.usermgt.create_dds_item_assignment('KLIM3', 'HERMES_TXN_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'KLIM3/HERMES_VAVO_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('KLIM3', 'HERMES_VAVO_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KLIM3/HERMES_VAVO_REP_CTR
harmony.usermgt.create_dds_item_assignment('KLIM3', 'HERMES_VAVO_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'KLIM3/H_EFS2_CTR_REP'
harmony.usermgt.create_role_to_user_assignment('KLIM3', 'H_EFS2_CTR_REP', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'KLIM3/H_EFS2_LOC_REP_PARTY'
harmony.usermgt.create_role_to_user_assignment('KLIM3', 'H_EFS2_LOC_REP_PARTY', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KLIM3/H_EFS2_LOC_REP_PARTY
harmony.usermgt.create_dds_item_assignment('KLIM3', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '657', sysdate, null);
-- Inserting RoleToUserAssignment 'KLIM3/H_NETTING_CTR_REP'
harmony.usermgt.create_role_to_user_assignment('KLIM3', 'H_NETTING_CTR_REP', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'KLIM3/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('KLIM3', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KLIM3/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('KLIM3', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'KLIM3/H_NETTING_LOC_REP_TC'
harmony.usermgt.create_role_to_user_assignment('KLIM3', 'H_NETTING_LOC_REP_TC', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KLIM3/H_NETTING_LOC_REP_TC
harmony.usermgt.create_dds_item_assignment('KLIM3', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'KLIM3/H_P2P_RTSC_ASPAC_MGR'
harmony.usermgt.create_role_to_user_assignment('KLIM3', 'H_P2P_RTSC_ASPAC_MGR', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'KLIM3/H_SWIFTCOM_RELEASER'
harmony.usermgt.create_role_to_user_assignment('KLIM3', 'H_SWIFTCOM_RELEASER', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KLIM3/H_SWIFTCOM_RELEASER
harmony.usermgt.create_dds_item_assignment('KLIM3', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '18', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KLIM3', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '17', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KLIM3', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '16', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KLIM3', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '14', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KLIM3', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '13', sysdate, null);
-- Inserting RoleToUserAssignment 'KLIM3/H_SWIFTCOM_REPORTER'
harmony.usermgt.create_role_to_user_assignment('KLIM3', 'H_SWIFTCOM_REPORTER', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KLIM3/H_SWIFTCOM_REPORTER
harmony.usermgt.create_dds_item_assignment('KLIM3', 'H_SWIFTCOM_REPORTER', 'SWIFTCOM FM Source', 'ONE', '7', sysdate, null);
-- Inserting RoleToUserAssignment 'KLIM3/H_TOPS_CNTRP_EXP_REP'
harmony.usermgt.create_role_to_user_assignment('KLIM3', 'H_TOPS_CNTRP_EXP_REP', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'KLIM3/H_TPP_CTR_REP'
harmony.usermgt.create_role_to_user_assignment('KLIM3', 'H_TPP_CTR_REP', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'KLISKA/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('KLISKA', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KLISKA/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('KLISKA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999858', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KLISKA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999841', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KLISKA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999665', sysdate, null);
-- Inserting RoleToUserAssignment 'KLISKA/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('KLISKA', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KLISKA/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('KLISKA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999858', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KLISKA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999841', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KLISKA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999665', sysdate, null);
-- Inserting RoleToUserAssignment 'KMAES/BAM_REPORTER'
harmony.usermgt.create_role_to_user_assignment('KMAES', 'BAM_REPORTER', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KMAES/BAM_REPORTER
harmony.usermgt.create_dds_item_assignment('KMAES', 'BAM_REPORTER', 'BAM Region', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'KMAES/HB_FM_COMBI_VIEW'
harmony.usermgt.create_role_to_user_assignment('KMAES', 'HB_FM_COMBI_VIEW', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'KMAES/HERMES_IM_SUPPORT'
harmony.usermgt.create_role_to_user_assignment('KMAES', 'HERMES_IM_SUPPORT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KMAES/HERMES_IM_SUPPORT
harmony.usermgt.create_dds_item_assignment('KMAES', 'HERMES_IM_SUPPORT', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'KMAES/H_CHAINS_IM_SUPPORT'
harmony.usermgt.create_role_to_user_assignment('KMAES', 'H_CHAINS_IM_SUPPORT', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'KMAES/H_DLINK_IM_SUPPORT'
harmony.usermgt.create_role_to_user_assignment('KMAES', 'H_DLINK_IM_SUPPORT', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'KMAES/H_EFS2_IM_SUPPORT'
harmony.usermgt.create_role_to_user_assignment('KMAES', 'H_EFS2_IM_SUPPORT', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'KMAES/H_GXRS_IM_SUPPORT'
harmony.usermgt.create_role_to_user_assignment('KMAES', 'H_GXRS_IM_SUPPORT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KMAES/H_GXRS_IM_SUPPORT
harmony.usermgt.create_dds_item_assignment('KMAES', 'H_GXRS_IM_SUPPORT', 'GXRS instructing accounts in ART', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'KMAES/H_P2P_IM_SUPPORT'
harmony.usermgt.create_role_to_user_assignment('KMAES', 'H_P2P_IM_SUPPORT', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'KMAES/H_SWIFTCOM_IM_SUP'
harmony.usermgt.create_role_to_user_assignment('KMAES', 'H_SWIFTCOM_IM_SUP', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KMAES/H_SWIFTCOM_IM_SUP
harmony.usermgt.create_dds_item_assignment('KMAES', 'H_SWIFTCOM_IM_SUP', 'SWIFTCOM FM Source', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'KMAES/H_TOPS_IM_SUPPORT'
harmony.usermgt.create_role_to_user_assignment('KMAES', 'H_TOPS_IM_SUPPORT', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'KMAES/H_TPP_IM_SUPPORT'
harmony.usermgt.create_role_to_user_assignment('KMAES', 'H_TPP_IM_SUPPORT', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'KMAK2/H_EFS2_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('KMAK2', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KMAK2/H_EFS2_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('KMAK2', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '298', sysdate, null);
-- Inserting RoleToUserAssignment 'KMAK2/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('KMAK2', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KMAK2/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('KMAK2', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[412/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'KMARTIN8/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('KMARTIN8', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KMARTIN8/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('KMARTIN8', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999452', sysdate, null);
-- Inserting RoleToUserAssignment 'KMARTIN8/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('KMARTIN8', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KMARTIN8/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('KMARTIN8', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999452', sysdate, null);
-- Inserting RoleToUserAssignment 'KMARTIN8/H_EFS2_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('KMARTIN8', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KMARTIN8/H_EFS2_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('KMARTIN8', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '408', sysdate, null);
-- Inserting RoleToUserAssignment 'KMARTIN8/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('KMARTIN8', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KMARTIN8/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('KMARTIN8', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11003/CC]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMARTIN8', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[101/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'KMCLEA1/H_TPP_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('KMCLEA1', 'H_TPP_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KMCLEA1/H_TPP_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('KMCLEA1', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '39', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMCLEA1', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '37', sysdate, null);
-- Inserting RoleToUserAssignment 'KMICHALI/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('KMICHALI', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KMICHALI/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('KMICHALI', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999853', sysdate, null);
-- Inserting RoleToUserAssignment 'KMICHALI/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('KMICHALI', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KMICHALI/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('KMICHALI', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999853', sysdate, null);
-- Inserting RoleToUserAssignment 'KMICHALI/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('KMICHALI', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KMICHALI/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('KMICHALI', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[279/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'KMURRAY9/H_AP2OLLO_SSC_USER'
harmony.usermgt.create_role_to_user_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KMURRAY9/H_AP2OLLO_SSC_USER
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '341', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '340', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '337', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '335', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '334', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '297', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '296', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '295', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '283', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '282', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '281', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '280', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '279', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '268', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '267', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '266', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '265', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '264', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '263', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '262', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '261', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '260', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '259', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '200', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '199', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '198', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '197', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '196', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '194', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '193', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '184', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '183', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '182', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '181', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '180', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '179', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '178', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '177', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '176', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '175', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '174', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '173', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '172', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '171', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '170', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '169', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '168', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '155', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '154', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '153', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '152', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '151', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '145', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '144', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '143', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '141', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '140', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '139', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '138', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '137', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '156', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '157', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '158', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '159', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '160', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '161', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '162', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '163', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '164', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '165', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '166', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '167', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '201', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '202', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '203', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '204', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '205', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '206', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '207', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '208', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '209', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '210', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '211', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '212', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '213', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '214', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '215', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '216', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '217', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '218', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '219', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '220', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '221', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '222', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '223', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '224', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '225', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '226', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '227', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '228', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '229', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '230', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '231', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '232', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '236', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '237', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '238', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '239', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '240', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '241', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '242', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '243', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '244', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '245', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '246', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '247', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '248', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '250', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '251', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KMURRAY9', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '252', sysdate, null);
-- Inserting RoleToUserAssignment 'KNAKAYA/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('KNAKAYA', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KNAKAYA/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('KNAKAYA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11887/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'KNEAT/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('KNEAT', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KNEAT/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('KNEAT', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[74/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'KODOWD/HERMES_CMEFF_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('KODOWD', 'HERMES_CMEFF_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KODOWD/HERMES_CMEFF_REP_CTR
harmony.usermgt.create_dds_item_assignment('KODOWD', 'HERMES_CMEFF_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'KODOWD/HERMES_GRP_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('KODOWD', 'HERMES_GRP_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KODOWD/HERMES_GRP_REP_CTR
harmony.usermgt.create_dds_item_assignment('KODOWD', 'HERMES_GRP_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'KODOWD/HERMES_IDTXN_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('KODOWD', 'HERMES_IDTXN_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KODOWD/HERMES_IDTXN_REP_CTR
harmony.usermgt.create_dds_item_assignment('KODOWD', 'HERMES_IDTXN_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'KODOWD/HERMES_STAT_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('KODOWD', 'HERMES_STAT_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KODOWD/HERMES_STAT_REP_CTR
harmony.usermgt.create_dds_item_assignment('KODOWD', 'HERMES_STAT_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'KODOWD/HERMES_STS_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('KODOWD', 'HERMES_STS_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KODOWD/HERMES_STS_REP_CTR
harmony.usermgt.create_dds_item_assignment('KODOWD', 'HERMES_STS_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'KODOWD/HERMES_SYM_REC_CTR'
harmony.usermgt.create_role_to_user_assignment('KODOWD', 'HERMES_SYM_REC_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KODOWD/HERMES_SYM_REC_CTR
harmony.usermgt.create_dds_item_assignment('KODOWD', 'HERMES_SYM_REC_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'KODOWD/HERMES_TXN_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('KODOWD', 'HERMES_TXN_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KODOWD/HERMES_TXN_REP_CTR
harmony.usermgt.create_dds_item_assignment('KODOWD', 'HERMES_TXN_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'KODOWD/HERMES_VAVO_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('KODOWD', 'HERMES_VAVO_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KODOWD/HERMES_VAVO_REP_CTR
harmony.usermgt.create_dds_item_assignment('KODOWD', 'HERMES_VAVO_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'KODOWD/H_EFS2_CTR_REP'
harmony.usermgt.create_role_to_user_assignment('KODOWD', 'H_EFS2_CTR_REP', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'KODOWD/H_EFS2_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('KODOWD', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KODOWD/H_EFS2_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('KODOWD', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '270', sysdate, null);
-- Inserting RoleToUserAssignment 'KODOWD/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('KODOWD', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KODOWD/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('KODOWD', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'KODOWD/H_SWIFTCOM_REPORTER'
harmony.usermgt.create_role_to_user_assignment('KODOWD', 'H_SWIFTCOM_REPORTER', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KODOWD/H_SWIFTCOM_REPORTER
harmony.usermgt.create_dds_item_assignment('KODOWD', 'H_SWIFTCOM_REPORTER', 'SWIFTCOM FM Source', 'ONE', '13', sysdate, null);
-- Inserting RoleToUserAssignment 'KODOWD/H_TOPS_CNTRP_EXP_REP'
harmony.usermgt.create_role_to_user_assignment('KODOWD', 'H_TOPS_CNTRP_EXP_REP', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'KOHARE2/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('KOHARE2', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KOHARE2/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('KOHARE2', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999411', sysdate, null);
-- Inserting RoleToUserAssignment 'KOHARE2/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('KOHARE2', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KOHARE2/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('KOHARE2', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999411', sysdate, null);
-- Inserting RoleToUserAssignment 'KOHARE2/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('KOHARE2', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KOHARE2/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('KOHARE2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[141/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'KOHARE2/H_TPP_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('KOHARE2', 'H_TPP_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KOHARE2/H_TPP_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('KOHARE2', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '315', sysdate, null);
-- Inserting RoleToUserAssignment 'KOLI/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('KOLI', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KOLI/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('KOLI', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999834', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KOLI', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999714', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KOLI', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999683', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KOLI', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999640', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KOLI', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999426', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KOLI', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999382', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KOLI', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999326', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KOLI', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '200010', sysdate, null);
-- Inserting RoleToUserAssignment 'KOLI/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('KOLI', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KOLI/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('KOLI', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999834', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KOLI', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999714', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KOLI', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999683', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KOLI', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999640', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KOLI', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999426', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KOLI', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999382', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KOLI', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999326', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KOLI', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '200010', sysdate, null);
-- Inserting RoleToUserAssignment 'KOLI/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('KOLI', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KOLI/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('KOLI', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[153/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KOLI', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[131/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KOLI', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[130/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KOLI', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[129/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KOLI', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[128/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KOLI', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11661/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KOLI', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11536/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KOLI', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11495/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KOLI', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11342/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'KOLI/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('KOLI', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KOLI/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('KOLI', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[344/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KOLI', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[153/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KOLI', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[140/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KOLI', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11566/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KOLI', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11495/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'KOLI/H_TPP_LOC_REP'
harmony.usermgt.create_role_to_user_assignment('KOLI', 'H_TPP_LOC_REP', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KOLI/H_TPP_LOC_REP
harmony.usermgt.create_dds_item_assignment('KOLI', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '233', sysdate, null);
-- Inserting RoleToUserAssignment 'KOLI/H_TPP_P2P_REPORT'
harmony.usermgt.create_role_to_user_assignment('KOLI', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KOLI/H_TPP_P2P_REPORT
harmony.usermgt.create_dds_item_assignment('KOLI', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '302', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KOLI', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '276', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KOLI', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '192', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KOLI', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '186', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KOLI', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '149', sysdate, null);
-- Inserting RoleToUserAssignment 'KOLSSON/H_EFS2_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('KOLSSON', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KOLSSON/H_EFS2_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('KOLSSON', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '530', sysdate, null);
-- Inserting RoleToUserAssignment 'KOLSSON/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('KOLSSON', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KOLSSON/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('KOLSSON', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11342/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'KOSUMI1/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('KOSUMI1', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KOSUMI1/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('KOSUMI1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[249/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'KOSUMI1/H_TPP_LOC_REP'
harmony.usermgt.create_role_to_user_assignment('KOSUMI1', 'H_TPP_LOC_REP', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KOSUMI1/H_TPP_LOC_REP
harmony.usermgt.create_dds_item_assignment('KOSUMI1', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '31', sysdate, null);
-- Inserting RoleToUserAssignment 'KPEETERM/BAM_REPORTER'
harmony.usermgt.create_role_to_user_assignment('KPEETERM', 'BAM_REPORTER', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KPEETERM/BAM_REPORTER
harmony.usermgt.create_dds_item_assignment('KPEETERM', 'BAM_REPORTER', 'BAM Region', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'KPEETERM/HB_FM_COMBI_REQUEST'
harmony.usermgt.create_role_to_user_assignment('KPEETERM', 'HB_FM_COMBI_REQUEST', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'KPEETERM/HERMES_CMEFF_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('KPEETERM', 'HERMES_CMEFF_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KPEETERM/HERMES_CMEFF_REP_CTR
harmony.usermgt.create_dds_item_assignment('KPEETERM', 'HERMES_CMEFF_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'KPEETERM/HERMES_GRP_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('KPEETERM', 'HERMES_GRP_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KPEETERM/HERMES_GRP_REP_CTR
harmony.usermgt.create_dds_item_assignment('KPEETERM', 'HERMES_GRP_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'KPEETERM/HERMES_IDTXN_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('KPEETERM', 'HERMES_IDTXN_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KPEETERM/HERMES_IDTXN_REP_CTR
harmony.usermgt.create_dds_item_assignment('KPEETERM', 'HERMES_IDTXN_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'KPEETERM/HERMES_STAT_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('KPEETERM', 'HERMES_STAT_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KPEETERM/HERMES_STAT_REP_CTR
harmony.usermgt.create_dds_item_assignment('KPEETERM', 'HERMES_STAT_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'KPEETERM/HERMES_STS_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('KPEETERM', 'HERMES_STS_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KPEETERM/HERMES_STS_REP_CTR
harmony.usermgt.create_dds_item_assignment('KPEETERM', 'HERMES_STS_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'KPEETERM/HERMES_SYM_REC_CTR'
harmony.usermgt.create_role_to_user_assignment('KPEETERM', 'HERMES_SYM_REC_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KPEETERM/HERMES_SYM_REC_CTR
harmony.usermgt.create_dds_item_assignment('KPEETERM', 'HERMES_SYM_REC_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'KPEETERM/HERMES_TXN_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('KPEETERM', 'HERMES_TXN_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KPEETERM/HERMES_TXN_REP_CTR
harmony.usermgt.create_dds_item_assignment('KPEETERM', 'HERMES_TXN_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'KPEETERM/HERMES_VAVO_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('KPEETERM', 'HERMES_VAVO_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KPEETERM/HERMES_VAVO_REP_CTR
harmony.usermgt.create_dds_item_assignment('KPEETERM', 'HERMES_VAVO_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'KPEETERM/H_BANKDIR_BO_USER'
harmony.usermgt.create_role_to_user_assignment('KPEETERM', 'H_BANKDIR_BO_USER', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'KPEETERM/H_COMMONS_BO_USER'
harmony.usermgt.create_role_to_user_assignment('KPEETERM', 'H_COMMONS_BO_USER', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'KPEETERM/H_DLINK_BO_USER'
harmony.usermgt.create_role_to_user_assignment('KPEETERM', 'H_DLINK_BO_USER', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'KPEETERM/H_DLINK_REPORTING'
harmony.usermgt.create_role_to_user_assignment('KPEETERM', 'H_DLINK_REPORTING', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'KPEETERM/H_EFS2_BO_USER'
harmony.usermgt.create_role_to_user_assignment('KPEETERM', 'H_EFS2_BO_USER', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'KPEETERM/H_NETTING_BO_USER'
harmony.usermgt.create_role_to_user_assignment('KPEETERM', 'H_NETTING_BO_USER', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KPEETERM/H_NETTING_BO_USER
harmony.usermgt.create_dds_item_assignment('KPEETERM', 'H_NETTING_BO_USER', 'Treasury Center Netting Participant', 'ONE', '[7/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KPEETERM', 'H_NETTING_BO_USER', 'Treasury Center Netting Participant', 'ONE', '[5/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KPEETERM', 'H_NETTING_BO_USER', 'Treasury Center Netting Participant', 'ONE', '[233/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KPEETERM', 'H_NETTING_BO_USER', 'Treasury Center Netting Participant', 'ONE', '[223/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KPEETERM', 'H_NETTING_BO_USER', 'Treasury Center Netting Participant', 'ONE', '[222/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KPEETERM', 'H_NETTING_BO_USER', 'Treasury Center Netting Participant', 'ONE', '[11486/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KPEETERM', 'H_NETTING_BO_USER', 'Treasury Center Netting Participant', 'ONE', '[11120/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KPEETERM', 'H_NETTING_BO_USER', 'Treasury Center Netting Participant', 'ONE', '[1/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'KPEETERM/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('KPEETERM', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KPEETERM/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('KPEETERM', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[93/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KPEETERM', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[254/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KPEETERM', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[142/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KPEETERM', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11419/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KPEETERM', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11356/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KPEETERM', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11347/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KPEETERM', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11212/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'KPEETERM/H_NETTING_LOC_REP_TC'
harmony.usermgt.create_role_to_user_assignment('KPEETERM', 'H_NETTING_LOC_REP_TC', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KPEETERM/H_NETTING_LOC_REP_TC
harmony.usermgt.create_dds_item_assignment('KPEETERM', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[7/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KPEETERM', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[233/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KPEETERM', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[223/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KPEETERM', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[222/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KPEETERM', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[11486/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KPEETERM', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[11120/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'KPEETERM/H_SWIFTCOM_RELEASER'
harmony.usermgt.create_role_to_user_assignment('KPEETERM', 'H_SWIFTCOM_RELEASER', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KPEETERM/H_SWIFTCOM_RELEASER
harmony.usermgt.create_dds_item_assignment('KPEETERM', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '15', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KPEETERM', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '14', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KPEETERM', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '13', sysdate, null);
-- Inserting RoleToUserAssignment 'KPEETERM/H_SWIFTCOM_REPORTER'
harmony.usermgt.create_role_to_user_assignment('KPEETERM', 'H_SWIFTCOM_REPORTER', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KPEETERM/H_SWIFTCOM_REPORTER
harmony.usermgt.create_dds_item_assignment('KPEETERM', 'H_SWIFTCOM_REPORTER', 'SWIFTCOM FM Source', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'KPEETERM/H_SWIFTCOM_STADA_MGR'
harmony.usermgt.create_role_to_user_assignment('KPEETERM', 'H_SWIFTCOM_STADA_MGR', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'KPEETERM/H_TOPS_BO_USER'
harmony.usermgt.create_role_to_user_assignment('KPEETERM', 'H_TOPS_BO_USER', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'KPEETERM/H_TPP_BO_USER'
harmony.usermgt.create_role_to_user_assignment('KPEETERM', 'H_TPP_BO_USER', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'KPIOTRO1/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('KPIOTRO1', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KPIOTRO1/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('KPIOTRO1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11995/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'KPRUDEN/H_EFS2_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('KPRUDEN', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KPRUDEN/H_EFS2_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('KPRUDEN', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '698', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KPRUDEN', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '267', sysdate, null);
-- Inserting RoleToUserAssignment 'KPUCK/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('KPUCK', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KPUCK/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('KPUCK', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999888', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KPUCK', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999883', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KPUCK', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999751', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KPUCK', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999746', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KPUCK', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999743', sysdate, null);
-- Inserting RoleToUserAssignment 'KPUCK/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('KPUCK', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KPUCK/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('KPUCK', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999888', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KPUCK', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999883', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KPUCK', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999751', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KPUCK', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999746', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KPUCK', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999743', sysdate, null);
-- Inserting RoleToUserAssignment 'KPUCK/H_EFS2_LOC_REP_PARTY'
harmony.usermgt.create_role_to_user_assignment('KPUCK', 'H_EFS2_LOC_REP_PARTY', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KPUCK/H_EFS2_LOC_REP_PARTY
harmony.usermgt.create_dds_item_assignment('KPUCK', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '293', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KPUCK', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '290', sysdate, null);
-- Inserting RoleToUserAssignment 'KPUCK/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('KPUCK', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KPUCK/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('KPUCK', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[38/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KPUCK', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[215/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KPUCK', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[117/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KPUCK', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[114/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KPUCK', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[112/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'KPUCK/H_TPP_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('KPUCK', 'H_TPP_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KPUCK/H_TPP_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('KPUCK', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '23', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KPUCK', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '22', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KPUCK', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '21', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KPUCK', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '19', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KPUCK', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '18', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KPUCK', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '17', sysdate, null);
-- Inserting RoleToUserAssignment 'KPUCK/H_TPP_P2P_REPORT'
harmony.usermgt.create_role_to_user_assignment('KPUCK', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KPUCK/H_TPP_P2P_REPORT
harmony.usermgt.create_dds_item_assignment('KPUCK', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '294', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KPUCK', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '293', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KPUCK', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '292', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KPUCK', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '291', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KPUCK', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '290', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KPUCK', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '289', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KPUCK', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '288', sysdate, null);
-- Inserting RoleToUserAssignment 'KQUINLA1/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('KQUINLA1', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KQUINLA1/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('KQUINLA1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11667/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KQUINLA1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11647/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KQUINLA1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11626/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'KQUINLA1/H_TPP_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('KQUINLA1', 'H_TPP_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KQUINLA1/H_TPP_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('KQUINLA1', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '326', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KQUINLA1', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '325', sysdate, null);
-- Inserting RoleToUserAssignment 'KQUINLA2/HERMES_CMEFF_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('KQUINLA2', 'HERMES_CMEFF_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KQUINLA2/HERMES_CMEFF_REP_CTR
harmony.usermgt.create_dds_item_assignment('KQUINLA2', 'HERMES_CMEFF_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'KQUINLA2/HERMES_GRP_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('KQUINLA2', 'HERMES_GRP_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KQUINLA2/HERMES_GRP_REP_CTR
harmony.usermgt.create_dds_item_assignment('KQUINLA2', 'HERMES_GRP_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'KQUINLA2/HERMES_STAT_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('KQUINLA2', 'HERMES_STAT_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KQUINLA2/HERMES_STAT_REP_CTR
harmony.usermgt.create_dds_item_assignment('KQUINLA2', 'HERMES_STAT_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'KQUINLA2/HERMES_STS_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('KQUINLA2', 'HERMES_STS_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KQUINLA2/HERMES_STS_REP_CTR
harmony.usermgt.create_dds_item_assignment('KQUINLA2', 'HERMES_STS_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'KQUINLA2/HERMES_SYM_REC_CTR'
harmony.usermgt.create_role_to_user_assignment('KQUINLA2', 'HERMES_SYM_REC_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KQUINLA2/HERMES_SYM_REC_CTR
harmony.usermgt.create_dds_item_assignment('KQUINLA2', 'HERMES_SYM_REC_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'KQUINLA2/HERMES_TXN_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('KQUINLA2', 'HERMES_TXN_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KQUINLA2/HERMES_TXN_REP_CTR
harmony.usermgt.create_dds_item_assignment('KQUINLA2', 'HERMES_TXN_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'KQUINLA2/HERMES_VAVO_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('KQUINLA2', 'HERMES_VAVO_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KQUINLA2/HERMES_VAVO_REP_CTR
harmony.usermgt.create_dds_item_assignment('KQUINLA2', 'HERMES_VAVO_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'KQUINLA2/H_EFS2_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('KQUINLA2', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KQUINLA2/H_EFS2_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('KQUINLA2', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '543', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KQUINLA2', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '534', sysdate, null);
-- Inserting RoleToUserAssignment 'KQUINLA2/H_NETTING_LOC_INP_TC'
harmony.usermgt.create_role_to_user_assignment('KQUINLA2', 'H_NETTING_LOC_INP_TC', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KQUINLA2/H_NETTING_LOC_INP_TC
harmony.usermgt.create_dds_item_assignment('KQUINLA2', 'H_NETTING_LOC_INP_TC', 'Treasury Center Netting Participant', 'ONE', '[7/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KQUINLA2', 'H_NETTING_LOC_INP_TC', 'Treasury Center Netting Participant', 'ONE', '[11486/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KQUINLA2', 'H_NETTING_LOC_INP_TC', 'Treasury Center Netting Participant', 'ONE', '[11120/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'KQUINLA2/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('KQUINLA2', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KQUINLA2/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('KQUINLA2', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[142/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KQUINLA2', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11419/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KQUINLA2', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11347/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'KQUINLA2/H_NETTING_LOC_REP_TC'
harmony.usermgt.create_role_to_user_assignment('KQUINLA2', 'H_NETTING_LOC_REP_TC', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KQUINLA2/H_NETTING_LOC_REP_TC
harmony.usermgt.create_dds_item_assignment('KQUINLA2', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[233/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'KQUINLA2/H_SWIFTCOM_REPORTER'
harmony.usermgt.create_role_to_user_assignment('KQUINLA2', 'H_SWIFTCOM_REPORTER', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KQUINLA2/H_SWIFTCOM_REPORTER
harmony.usermgt.create_dds_item_assignment('KQUINLA2', 'H_SWIFTCOM_REPORTER', 'SWIFTCOM FM Source', 'ONE', '14', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KQUINLA2', 'H_SWIFTCOM_REPORTER', 'SWIFTCOM FM Source', 'ONE', '13', sysdate, null);
-- Inserting RoleToUserAssignment 'KQUINLA2/H_TOPS_FO_USER'
harmony.usermgt.create_role_to_user_assignment('KQUINLA2', 'H_TOPS_FO_USER', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'KRENOULT/HERMES_GRP_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('KRENOULT', 'HERMES_GRP_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KRENOULT/HERMES_GRP_REP_CTR
harmony.usermgt.create_dds_item_assignment('KRENOULT', 'HERMES_GRP_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'KRENOULT/HERMES_STAT_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('KRENOULT', 'HERMES_STAT_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KRENOULT/HERMES_STAT_REP_CTR
harmony.usermgt.create_dds_item_assignment('KRENOULT', 'HERMES_STAT_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'KRENOULT/HERMES_STS_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('KRENOULT', 'HERMES_STS_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KRENOULT/HERMES_STS_REP_CTR
harmony.usermgt.create_dds_item_assignment('KRENOULT', 'HERMES_STS_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'KRENOULT/HERMES_SYM_REC_CTR'
harmony.usermgt.create_role_to_user_assignment('KRENOULT', 'HERMES_SYM_REC_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KRENOULT/HERMES_SYM_REC_CTR
harmony.usermgt.create_dds_item_assignment('KRENOULT', 'HERMES_SYM_REC_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'KRENOULT/HERMES_TXN_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('KRENOULT', 'HERMES_TXN_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KRENOULT/HERMES_TXN_REP_CTR
harmony.usermgt.create_dds_item_assignment('KRENOULT', 'HERMES_TXN_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'KRENOULT/HERMES_VAVO_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('KRENOULT', 'HERMES_VAVO_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KRENOULT/HERMES_VAVO_REP_CTR
harmony.usermgt.create_dds_item_assignment('KRENOULT', 'HERMES_VAVO_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'KRENOULT/H_EFS2_LOC_REP_PARTY'
harmony.usermgt.create_role_to_user_assignment('KRENOULT', 'H_EFS2_LOC_REP_PARTY', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KRENOULT/H_EFS2_LOC_REP_PARTY
harmony.usermgt.create_dds_item_assignment('KRENOULT', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '708', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KRENOULT', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '673', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KRENOULT', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '671', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KRENOULT', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '543', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KRENOULT', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '534', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KRENOULT', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '480', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KRENOULT', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '445', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KRENOULT', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '400', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KRENOULT', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '399', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KRENOULT', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '398', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KRENOULT', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '397', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KRENOULT', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '314', sysdate, null);
-- Inserting RoleToUserAssignment 'KRENOULT/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('KRENOULT', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KRENOULT/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('KRENOULT', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'KRENOULT/H_NETTING_LOC_REP_TC'
harmony.usermgt.create_role_to_user_assignment('KRENOULT', 'H_NETTING_LOC_REP_TC', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KRENOULT/H_NETTING_LOC_REP_TC
harmony.usermgt.create_dds_item_assignment('KRENOULT', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'KRENOULT/H_TPP_CTR_REP'
harmony.usermgt.create_role_to_user_assignment('KRENOULT', 'H_TPP_CTR_REP', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'KRENOULT/H_TPP_P2P_REPORT'
harmony.usermgt.create_role_to_user_assignment('KRENOULT', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KRENOULT/H_TPP_P2P_REPORT
harmony.usermgt.create_dds_item_assignment('KRENOULT', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '82', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KRENOULT', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '81', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KRENOULT', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '258', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KRENOULT', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '257', sysdate, null);
-- Inserting RoleToUserAssignment 'KREZKOVA/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('KREZKOVA', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KREZKOVA/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('KREZKOVA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999416', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KREZKOVA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999277', sysdate, null);
-- Inserting RoleToUserAssignment 'KREZKOVA/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('KREZKOVA', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KREZKOVA/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('KREZKOVA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999416', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KREZKOVA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999277', sysdate, null);
-- Inserting RoleToUserAssignment 'KREZKOVA/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('KREZKOVA', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KREZKOVA/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('KREZKOVA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[397/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KREZKOVA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[217/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KREZKOVA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[146/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KREZKOVA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11981/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KREZKOVA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11973/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KREZKOVA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11629/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KREZKOVA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[109/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KREZKOVA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[106/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KREZKOVA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[105/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'KREZKOVA/H_TPP_P2P_REPORT'
harmony.usermgt.create_role_to_user_assignment('KREZKOVA', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KREZKOVA/H_TPP_P2P_REPORT
harmony.usermgt.create_dds_item_assignment('KREZKOVA', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '364', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KREZKOVA', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '133', sysdate, null);
-- Inserting RoleToUserAssignment 'KRIDLEY/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('KRIDLEY', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KRIDLEY/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('KRIDLEY', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999532', sysdate, null);
-- Inserting RoleToUserAssignment 'KRIDLEY/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('KRIDLEY', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KRIDLEY/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('KRIDLEY', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999532', sysdate, null);
-- Inserting RoleToUserAssignment 'KRIDLEY/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('KRIDLEY', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KRIDLEY/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('KRIDLEY', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[411/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KRIDLEY', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11147/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'KSCHOOFS/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('KSCHOOFS', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KSCHOOFS/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('KSCHOOFS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11436/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'KSEBKOVA/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('KSEBKOVA', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KSEBKOVA/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('KSEBKOVA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999187', sysdate, null);
-- Inserting RoleToUserAssignment 'KSEBKOVA/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('KSEBKOVA', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KSEBKOVA/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('KSEBKOVA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999187', sysdate, null);
-- Inserting RoleToUserAssignment 'KSEBKOVA/H_AP2OLLO_SSC_MGR'
harmony.usermgt.create_role_to_user_assignment('KSEBKOVA', 'H_AP2OLLO_SSC_MGR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KSEBKOVA/H_AP2OLLO_SSC_MGR
harmony.usermgt.create_dds_item_assignment('KSEBKOVA', 'H_AP2OLLO_SSC_MGR', 'TPP AP2PLE OC', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'KSEBKOVA/H_AP2PLE_SSC_MGR'
harmony.usermgt.create_role_to_user_assignment('KSEBKOVA', 'H_AP2PLE_SSC_MGR', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'KSEBKOVA/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('KSEBKOVA', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KSEBKOVA/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('KSEBKOVA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11699/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KSEBKOVA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11697/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KSEBKOVA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[108/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'KSEBKOVA/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('KSEBKOVA', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KSEBKOVA/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('KSEBKOVA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[128/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KSEBKOVA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11753/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KSEBKOVA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11661/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KSEBKOVA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[116/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KSEBKOVA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11582/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KSEBKOVA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11580/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KSEBKOVA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11566/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KSEBKOVA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11536/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KSEBKOVA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11495/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KSEBKOVA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11349/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KSEBKOVA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11342/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KSEBKOVA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11334/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KSEBKOVA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[102/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KSEBKOVA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[129/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KSEBKOVA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[130/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KSEBKOVA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[131/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KSEBKOVA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[140/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KSEBKOVA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[147/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KSEBKOVA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[153/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KSEBKOVA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[156/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KSEBKOVA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[168/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KSEBKOVA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[178/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KSEBKOVA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[344/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KSEBKOVA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[439/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KSEBKOVA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[88/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'KSEBKOVA/H_TPP_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('KSEBKOVA', 'H_TPP_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KSEBKOVA/H_TPP_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('KSEBKOVA', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '71', sysdate, null);
-- Inserting RoleToUserAssignment 'KSEBKOVA/H_TPP_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('KSEBKOVA', 'H_TPP_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KSEBKOVA/H_TPP_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('KSEBKOVA', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '52', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KSEBKOVA', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '51', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KSEBKOVA', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '44', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KSEBKOVA', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '29', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KSEBKOVA', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '233', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KSEBKOVA', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '147', sysdate, null);
-- Inserting RoleToUserAssignment 'KSEBKOVA/H_TPP_LOC_REP'
harmony.usermgt.create_role_to_user_assignment('KSEBKOVA', 'H_TPP_LOC_REP', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KSEBKOVA/H_TPP_LOC_REP
harmony.usermgt.create_dds_item_assignment('KSEBKOVA', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '14', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KSEBKOVA', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '13', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KSEBKOVA', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '12', sysdate, null);
-- Inserting RoleToUserAssignment 'KSEBKOVA/H_TPP_P2P_OFFERMGT'
harmony.usermgt.create_role_to_user_assignment('KSEBKOVA', 'H_TPP_P2P_OFFERMGT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KSEBKOVA/H_TPP_P2P_OFFERMGT
harmony.usermgt.create_dds_item_assignment('KSEBKOVA', 'H_TPP_P2P_OFFERMGT', 'TPP AP2PLE OC', 'ONE', '186', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KSEBKOVA', 'H_TPP_P2P_OFFERMGT', 'TPP AP2PLE OC', 'ONE', '150', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KSEBKOVA', 'H_TPP_P2P_OFFERMGT', 'TPP AP2PLE OC', 'ONE', '120', sysdate, null);
-- Inserting RoleToUserAssignment 'KSHAH/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('KSHAH', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KSHAH/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('KSHAH', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999980', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KSHAH', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999963', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KSHAH', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999961', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KSHAH', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999960', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KSHAH', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999958', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KSHAH', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999957', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KSHAH', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999151', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KSHAH', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999150', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KSHAH', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999102', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KSHAH', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999100', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KSHAH', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999044', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KSHAH', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999043', sysdate, null);
-- Inserting RoleToUserAssignment 'KSHAH/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('KSHAH', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KSHAH/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('KSHAH', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999980', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KSHAH', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999963', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KSHAH', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999961', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KSHAH', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999960', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KSHAH', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999958', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KSHAH', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999957', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KSHAH', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999151', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KSHAH', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999150', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KSHAH', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999102', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KSHAH', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999100', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KSHAH', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999044', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KSHAH', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999043', sysdate, null);
-- Inserting RoleToUserAssignment 'KSHAH/H_TPP_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('KSHAH', 'H_TPP_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KSHAH/H_TPP_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('KSHAH', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '39', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KSHAH', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '37', sysdate, null);
-- Inserting RoleToUserAssignment 'KSHAKESP/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('KSHAKESP', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KSHAKESP/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('KSHAKESP', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998983', sysdate, null);
-- Inserting RoleToUserAssignment 'KSHAKESP/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('KSHAKESP', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KSHAKESP/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('KSHAKESP', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998983', sysdate, null);
-- Inserting RoleToUserAssignment 'KSHAKESP/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('KSHAKESP', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KSHAKESP/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('KSHAKESP', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11670/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'KSHAKESP/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('KSHAKESP', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KSHAKESP/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('KSHAKESP', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11670/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'KSHAKESP/H_TPP_P2P_OFFERMGT'
harmony.usermgt.create_role_to_user_assignment('KSHAKESP', 'H_TPP_P2P_OFFERMGT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KSHAKESP/H_TPP_P2P_OFFERMGT
harmony.usermgt.create_dds_item_assignment('KSHAKESP', 'H_TPP_P2P_OFFERMGT', 'TPP AP2PLE OC', 'ONE', '333', sysdate, null);
-- Inserting RoleToUserAssignment 'KSHARIF/H_EFS2_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('KSHARIF', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KSHARIF/H_EFS2_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('KSHARIF', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '521', sysdate, null);
-- Inserting RoleToUserAssignment 'KSIA/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('KSIA', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KSIA/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('KSIA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[88/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KSIA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[131/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KSIA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[130/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KSIA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[129/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KSIA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[128/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KSIA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11697/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KSIA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11661/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KSIA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11582/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KSIA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11536/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'KSIA/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('KSIA', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KSIA/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('KSIA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[88/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'KSIA/H_TPP_LOC_REP'
harmony.usermgt.create_role_to_user_assignment('KSIA', 'H_TPP_LOC_REP', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KSIA/H_TPP_LOC_REP
harmony.usermgt.create_dds_item_assignment('KSIA', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '71', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KSIA', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '13', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KSIA', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '12', sysdate, null);
-- Inserting RoleToUserAssignment 'KSMEETON/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('KSMEETON', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KSMEETON/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('KSMEETON', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[165/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'KSTERCKX/BAM_REPORTER'
harmony.usermgt.create_role_to_user_assignment('KSTERCKX', 'BAM_REPORTER', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KSTERCKX/BAM_REPORTER
harmony.usermgt.create_dds_item_assignment('KSTERCKX', 'BAM_REPORTER', 'BAM Region', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'KSTERCKX/HB_FM_COMBI_VIEW'
harmony.usermgt.create_role_to_user_assignment('KSTERCKX', 'HB_FM_COMBI_VIEW', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'KSTERCKX/HERMES_IM_SUPPORT'
harmony.usermgt.create_role_to_user_assignment('KSTERCKX', 'HERMES_IM_SUPPORT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KSTERCKX/HERMES_IM_SUPPORT
harmony.usermgt.create_dds_item_assignment('KSTERCKX', 'HERMES_IM_SUPPORT', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'KSTERCKX/H_CHAINS_IM_SUPPORT'
harmony.usermgt.create_role_to_user_assignment('KSTERCKX', 'H_CHAINS_IM_SUPPORT', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'KSTERCKX/H_DLINK_IM_SUPPORT'
harmony.usermgt.create_role_to_user_assignment('KSTERCKX', 'H_DLINK_IM_SUPPORT', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'KSTERCKX/H_EFS2_IM_SUPPORT'
harmony.usermgt.create_role_to_user_assignment('KSTERCKX', 'H_EFS2_IM_SUPPORT', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'KSTERCKX/H_GXRS_IM_SUPPORT'
harmony.usermgt.create_role_to_user_assignment('KSTERCKX', 'H_GXRS_IM_SUPPORT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KSTERCKX/H_GXRS_IM_SUPPORT
harmony.usermgt.create_dds_item_assignment('KSTERCKX', 'H_GXRS_IM_SUPPORT', 'GXRS instructing accounts in ART', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'KSTERCKX/H_P2P_IM_SUPPORT'
harmony.usermgt.create_role_to_user_assignment('KSTERCKX', 'H_P2P_IM_SUPPORT', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'KSTERCKX/H_SWIFTCOM_IM_SUP'
harmony.usermgt.create_role_to_user_assignment('KSTERCKX', 'H_SWIFTCOM_IM_SUP', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KSTERCKX/H_SWIFTCOM_IM_SUP
harmony.usermgt.create_dds_item_assignment('KSTERCKX', 'H_SWIFTCOM_IM_SUP', 'SWIFTCOM FM Source', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'KSTERCKX/H_TOPS_IM_SUPPORT'
harmony.usermgt.create_role_to_user_assignment('KSTERCKX', 'H_TOPS_IM_SUPPORT', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'KSTERCKX/H_TPP_IM_SUPPORT'
harmony.usermgt.create_role_to_user_assignment('KSTERCKX', 'H_TPP_IM_SUPPORT', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'KSVARCOV/H_AP2OLLO_SSC_MGR'
harmony.usermgt.create_role_to_user_assignment('KSVARCOV', 'H_AP2OLLO_SSC_MGR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KSVARCOV/H_AP2OLLO_SSC_MGR
harmony.usermgt.create_dds_item_assignment('KSVARCOV', 'H_AP2OLLO_SSC_MGR', 'TPP AP2PLE OC', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'KSVARCOV/H_AP2PLE_SSC_MGR'
harmony.usermgt.create_role_to_user_assignment('KSVARCOV', 'H_AP2PLE_SSC_MGR', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'KTIGNOL2/H_EFS2_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('KTIGNOL2', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KTIGNOL2/H_EFS2_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('KTIGNOL2', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '670', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KTIGNOL2', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '664', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KTIGNOL2', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '662', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KTIGNOL2', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '659', sysdate, null);
-- Inserting RoleToUserAssignment 'KTIGNOL2/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('KTIGNOL2', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KTIGNOL2/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('KTIGNOL2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11737/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KTIGNOL2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11736/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'KTURSE/H_EFS2_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('KTURSE', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KTURSE/H_EFS2_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('KTURSE', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '475', sysdate, null);
-- Inserting RoleToUserAssignment 'KTURSE/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('KTURSE', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KTURSE/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('KTURSE', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[280/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KTURSE', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11598/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KTURSE', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11430/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KTURSE', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11424/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KTURSE', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11339/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KTURSE', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11183/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KTURSE', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11095/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KTURSE', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11059/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KTURSE', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[10127/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'KVALCKE/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('KVALCKE', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KVALCKE/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('KVALCKE', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999008', sysdate, null);
-- Inserting RoleToUserAssignment 'KVALCKE/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('KVALCKE', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KVALCKE/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('KVALCKE', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999008', sysdate, null);
-- Inserting RoleToUserAssignment 'KVALCKE/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('KVALCKE', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KVALCKE/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('KVALCKE', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11436/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'KVANACK/H_EFS2_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('KVANACK', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KVANACK/H_EFS2_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('KVANACK', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '524', sysdate, null);
-- Inserting RoleToUserAssignment 'KVANCRAE/HERMES_STAT_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('KVANCRAE', 'HERMES_STAT_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KVANCRAE/HERMES_STAT_REP_CTR
harmony.usermgt.create_dds_item_assignment('KVANCRAE', 'HERMES_STAT_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'KVANCRAE/H_COMMONS_REPORTER'
harmony.usermgt.create_role_to_user_assignment('KVANCRAE', 'H_COMMONS_REPORTER', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'KVANCRAE/H_DLINK_KEY_USER'
harmony.usermgt.create_role_to_user_assignment('KVANCRAE', 'H_DLINK_KEY_USER', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'KVANCRAE/H_EFS2_KEY_USER'
harmony.usermgt.create_role_to_user_assignment('KVANCRAE', 'H_EFS2_KEY_USER', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'KVANCRAE/H_HEDGING_KEY_USER'
harmony.usermgt.create_role_to_user_assignment('KVANCRAE', 'H_HEDGING_KEY_USER', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'KVANCRAE/H_SWIFTCOM_REPORTER'
harmony.usermgt.create_role_to_user_assignment('KVANCRAE', 'H_SWIFTCOM_REPORTER', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KVANCRAE/H_SWIFTCOM_REPORTER
harmony.usermgt.create_dds_item_assignment('KVANCRAE', 'H_SWIFTCOM_REPORTER', 'SWIFTCOM FM Source', 'ONE', '9', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KVANCRAE', 'H_SWIFTCOM_REPORTER', 'SWIFTCOM FM Source', 'ONE', '8', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KVANCRAE', 'H_SWIFTCOM_REPORTER', 'SWIFTCOM FM Source', 'ONE', '6', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KVANCRAE', 'H_SWIFTCOM_REPORTER', 'SWIFTCOM FM Source', 'ONE', '5', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KVANCRAE', 'H_SWIFTCOM_REPORTER', 'SWIFTCOM FM Source', 'ONE', '4', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KVANCRAE', 'H_SWIFTCOM_REPORTER', 'SWIFTCOM FM Source', 'ONE', '2', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KVANCRAE', 'H_SWIFTCOM_REPORTER', 'SWIFTCOM FM Source', 'ONE', '1', sysdate, null);
-- Inserting RoleToUserAssignment 'KVARGA/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('KVARGA', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KVARGA/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('KVARGA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999879', sysdate, null);
-- Inserting RoleToUserAssignment 'KVARGA/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('KVARGA', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KVARGA/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('KVARGA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999879', sysdate, null);
-- Inserting RoleToUserAssignment 'KVARGA/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('KVARGA', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KVARGA/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('KVARGA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11072/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'KVARGA/H_TPP_P2P_REPORT'
harmony.usermgt.create_role_to_user_assignment('KVARGA', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KVARGA/H_TPP_P2P_REPORT
harmony.usermgt.create_dds_item_assignment('KVARGA', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '370', sysdate, null);
-- Inserting RoleToUserAssignment 'KVBOVEN/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('KVBOVEN', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KVBOVEN/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('KVBOVEN', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999141', sysdate, null);
-- Inserting RoleToUserAssignment 'KVBOVEN/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('KVBOVEN', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KVBOVEN/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('KVBOVEN', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999141', sysdate, null);
-- Inserting RoleToUserAssignment 'KVBOVEN/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('KVBOVEN', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KVBOVEN/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('KVBOVEN', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[156/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'KVBOVEN/H_TPP_P2P_REPORT'
harmony.usermgt.create_role_to_user_assignment('KVBOVEN', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KVBOVEN/H_TPP_P2P_REPORT
harmony.usermgt.create_dds_item_assignment('KVBOVEN', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '148', sysdate, null);
-- Inserting RoleToUserAssignment 'KVERRIJP/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('KVERRIJP', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KVERRIJP/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('KVERRIJP', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999141', sysdate, null);
-- Inserting RoleToUserAssignment 'KVERRIJP/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('KVERRIJP', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KVERRIJP/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('KVERRIJP', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999141', sysdate, null);
-- Inserting RoleToUserAssignment 'KVERRIJP/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('KVERRIJP', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KVERRIJP/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('KVERRIJP', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[156/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'KVERRIJP/H_TPP_P2P_REPORT'
harmony.usermgt.create_role_to_user_assignment('KVERRIJP', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KVERRIJP/H_TPP_P2P_REPORT
harmony.usermgt.create_dds_item_assignment('KVERRIJP', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '148', sysdate, null);
-- Inserting RoleToUserAssignment 'KVERVECK/H_EFS2_LOC_REP_PARTY'
harmony.usermgt.create_role_to_user_assignment('KVERVECK', 'H_EFS2_LOC_REP_PARTY', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KVERVECK/H_EFS2_LOC_REP_PARTY
harmony.usermgt.create_dds_item_assignment('KVERVECK', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '432', sysdate, null);
-- Inserting RoleToUserAssignment 'KVILLAN1/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('KVILLAN1', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KVILLAN1/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('KVILLAN1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999812', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KVILLAN1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999809', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KVILLAN1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998919', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KVILLAN1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999020', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KVILLAN1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999068', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KVILLAN1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999245', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KVILLAN1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999246', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KVILLAN1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999320', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KVILLAN1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999331', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KVILLAN1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999547', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KVILLAN1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999691', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KVILLAN1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999692', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KVILLAN1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999693', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KVILLAN1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999804', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KVILLAN1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999808', sysdate, null);
-- Inserting RoleToUserAssignment 'KVILLAN1/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('KVILLAN1', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KVILLAN1/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('KVILLAN1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999812', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KVILLAN1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999809', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KVILLAN1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998919', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KVILLAN1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999020', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KVILLAN1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999068', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KVILLAN1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999245', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KVILLAN1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999246', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KVILLAN1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999320', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KVILLAN1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999331', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KVILLAN1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999547', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KVILLAN1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999691', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KVILLAN1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999692', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KVILLAN1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999693', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KVILLAN1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999804', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KVILLAN1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999808', sysdate, null);
-- Inserting RoleToUserAssignment 'KVILLAN1/H_ASP2PIRE1_SSC_MGR'
harmony.usermgt.create_role_to_user_assignment('KVILLAN1', 'H_ASP2PIRE1_SSC_MGR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KVILLAN1/H_ASP2PIRE1_SSC_MGR
harmony.usermgt.create_dds_item_assignment('KVILLAN1', 'H_ASP2PIRE1_SSC_MGR', 'TPP AP2PLE OC', 'ONE', '345', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KVILLAN1', 'H_ASP2PIRE1_SSC_MGR', 'TPP AP2PLE OC', 'ONE', '346', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KVILLAN1', 'H_ASP2PIRE1_SSC_MGR', 'TPP AP2PLE OC', 'ONE', '347', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KVILLAN1', 'H_ASP2PIRE1_SSC_MGR', 'TPP AP2PLE OC', 'ONE', '348', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KVILLAN1', 'H_ASP2PIRE1_SSC_MGR', 'TPP AP2PLE OC', 'ONE', '349', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KVILLAN1', 'H_ASP2PIRE1_SSC_MGR', 'TPP AP2PLE OC', 'ONE', '408', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KVILLAN1', 'H_ASP2PIRE1_SSC_MGR', 'TPP AP2PLE OC', 'ONE', '409', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KVILLAN1', 'H_ASP2PIRE1_SSC_MGR', 'TPP AP2PLE OC', 'ONE', '410', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KVILLAN1', 'H_ASP2PIRE1_SSC_MGR', 'TPP AP2PLE OC', 'ONE', '411', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KVILLAN1', 'H_ASP2PIRE1_SSC_MGR', 'TPP AP2PLE OC', 'ONE', '412', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KVILLAN1', 'H_ASP2PIRE1_SSC_MGR', 'TPP AP2PLE OC', 'ONE', '413', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KVILLAN1', 'H_ASP2PIRE1_SSC_MGR', 'TPP AP2PLE OC', 'ONE', '414', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KVILLAN1', 'H_ASP2PIRE1_SSC_MGR', 'TPP AP2PLE OC', 'ONE', '415', sysdate, null);
-- Inserting RoleToUserAssignment 'KVILLAN1/H_ASP2PIRE2_SSC_MGR'
harmony.usermgt.create_role_to_user_assignment('KVILLAN1', 'H_ASP2PIRE2_SSC_MGR', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'KVILLAN1/H_TPP_LOC_REP'
harmony.usermgt.create_role_to_user_assignment('KVILLAN1', 'H_TPP_LOC_REP', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KVILLAN1/H_TPP_LOC_REP
harmony.usermgt.create_dds_item_assignment('KVILLAN1', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '77', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KVILLAN1', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '76', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KVILLAN1', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '423', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KVILLAN1', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '422', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KVILLAN1', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '421', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KVILLAN1', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '420', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KVILLAN1', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '419', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KVILLAN1', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '418', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KVILLAN1', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '417', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KVILLAN1', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '416', sysdate, null);
-- Inserting RoleToUserAssignment 'KVZELE/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('KVZELE', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KVZELE/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('KVZELE', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[93/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'KWATANYA/H_TPP_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('KWATANYA', 'H_TPP_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KWATANYA/H_TPP_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('KWATANYA', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '75', sysdate, null);
-- Inserting RoleToUserAssignment 'KWILSON4/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('KWILSON4', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KWILSON4/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('KWILSON4', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999601', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KWILSON4', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999600', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KWILSON4', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999293', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KWILSON4', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999096', sysdate, null);
-- Inserting RoleToUserAssignment 'KWILSON4/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('KWILSON4', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KWILSON4/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('KWILSON4', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999601', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KWILSON4', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999600', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KWILSON4', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999293', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KWILSON4', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999096', sysdate, null);
-- Inserting RoleToUserAssignment 'KWITKOWS/H_TPP_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('KWITKOWS', 'H_TPP_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KWITKOWS/H_TPP_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('KWITKOWS', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '75', sysdate, null);
-- Inserting RoleToUserAssignment 'KWITTERS/HERMES_GRP_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('KWITTERS', 'HERMES_GRP_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KWITTERS/HERMES_GRP_REP_CTR
harmony.usermgt.create_dds_item_assignment('KWITTERS', 'HERMES_GRP_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'KWITTERS/HERMES_IDTXN_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('KWITTERS', 'HERMES_IDTXN_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KWITTERS/HERMES_IDTXN_REP_CTR
harmony.usermgt.create_dds_item_assignment('KWITTERS', 'HERMES_IDTXN_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'KWITTERS/HERMES_STAT_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('KWITTERS', 'HERMES_STAT_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KWITTERS/HERMES_STAT_REP_CTR
harmony.usermgt.create_dds_item_assignment('KWITTERS', 'HERMES_STAT_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'KWITTERS/HERMES_SYM_REC_CTR'
harmony.usermgt.create_role_to_user_assignment('KWITTERS', 'HERMES_SYM_REC_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KWITTERS/HERMES_SYM_REC_CTR
harmony.usermgt.create_dds_item_assignment('KWITTERS', 'HERMES_SYM_REC_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'KWITTERS/HERMES_TXN_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('KWITTERS', 'HERMES_TXN_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KWITTERS/HERMES_TXN_REP_CTR
harmony.usermgt.create_dds_item_assignment('KWITTERS', 'HERMES_TXN_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'KWITTERS/HERMES_VAVO_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('KWITTERS', 'HERMES_VAVO_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KWITTERS/HERMES_VAVO_REP_CTR
harmony.usermgt.create_dds_item_assignment('KWITTERS', 'HERMES_VAVO_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'KWITTERS/H_DLINK_REPORTING'
harmony.usermgt.create_role_to_user_assignment('KWITTERS', 'H_DLINK_REPORTING', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'KWITTERS/H_GXRS_KEY_USER'
harmony.usermgt.create_role_to_user_assignment('KWITTERS', 'H_GXRS_KEY_USER', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KWITTERS/H_GXRS_KEY_USER
harmony.usermgt.create_dds_item_assignment('KWITTERS', 'H_GXRS_KEY_USER', 'C4S-GXRS as XAD originating system', 'ALL', null, sysdate, null);
harmony.usermgt.create_dds_item_assignment('KWITTERS', 'H_GXRS_KEY_USER', 'GXRS instructing accounts in ART', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'KWITTERS/H_NETTING_KEY_USER'
harmony.usermgt.create_role_to_user_assignment('KWITTERS', 'H_NETTING_KEY_USER', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KWITTERS/H_NETTING_KEY_USER
harmony.usermgt.create_dds_item_assignment('KWITTERS', 'H_NETTING_KEY_USER', 'Third Party Netting Participant', 'ALL', null, sysdate, null);
harmony.usermgt.create_dds_item_assignment('KWITTERS', 'H_NETTING_KEY_USER', 'Treasury Center Netting Participant', 'ONE', '[7/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KWITTERS', 'H_NETTING_KEY_USER', 'Treasury Center Netting Participant', 'ONE', '[233/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KWITTERS', 'H_NETTING_KEY_USER', 'Treasury Center Netting Participant', 'ONE', '[223/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KWITTERS', 'H_NETTING_KEY_USER', 'Treasury Center Netting Participant', 'ONE', '[222/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KWITTERS', 'H_NETTING_KEY_USER', 'Treasury Center Netting Participant', 'ONE', '[11680/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KWITTERS', 'H_NETTING_KEY_USER', 'Treasury Center Netting Participant', 'ONE', '[11486/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KWITTERS', 'H_NETTING_KEY_USER', 'Treasury Center Netting Participant', 'ONE', '[11120/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KWITTERS', 'H_NETTING_KEY_USER', 'Standard Netting Participant', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'KWITTERS/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('KWITTERS', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KWITTERS/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('KWITTERS', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11212/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'KWITTERS/H_P2P_KEY_USER'
harmony.usermgt.create_role_to_user_assignment('KWITTERS', 'H_P2P_KEY_USER', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'KWITTERS/H_SWIFTCOM_RELEASER'
harmony.usermgt.create_role_to_user_assignment('KWITTERS', 'H_SWIFTCOM_RELEASER', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KWITTERS/H_SWIFTCOM_RELEASER
harmony.usermgt.create_dds_item_assignment('KWITTERS', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '7', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KWITTERS', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '4', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KWITTERS', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '18', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KWITTERS', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '17', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KWITTERS', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '16', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KWITTERS', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '15', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KWITTERS', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '11', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KWITTERS', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '10', sysdate, null);
-- Inserting RoleToUserAssignment 'KWITTERS/H_SWIFTCOM_REPORTER'
harmony.usermgt.create_role_to_user_assignment('KWITTERS', 'H_SWIFTCOM_REPORTER', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for KWITTERS/H_SWIFTCOM_REPORTER
harmony.usermgt.create_dds_item_assignment('KWITTERS', 'H_SWIFTCOM_REPORTER', 'SWIFTCOM FM Source', 'ONE', '9', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KWITTERS', 'H_SWIFTCOM_REPORTER', 'SWIFTCOM FM Source', 'ONE', '8', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KWITTERS', 'H_SWIFTCOM_REPORTER', 'SWIFTCOM FM Source', 'ONE', '6', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KWITTERS', 'H_SWIFTCOM_REPORTER', 'SWIFTCOM FM Source', 'ONE', '5', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KWITTERS', 'H_SWIFTCOM_REPORTER', 'SWIFTCOM FM Source', 'ONE', '2', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KWITTERS', 'H_SWIFTCOM_REPORTER', 'SWIFTCOM FM Source', 'ONE', '13', sysdate, null);
harmony.usermgt.create_dds_item_assignment('KWITTERS', 'H_SWIFTCOM_REPORTER', 'SWIFTCOM FM Source', 'ONE', '1', sysdate, null);
-- Inserting RoleToUserAssignment 'KWITTERS/H_SWIFTCOM_STADA_MGR'
harmony.usermgt.create_role_to_user_assignment('KWITTERS', 'H_SWIFTCOM_STADA_MGR', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'KWITTERS/H_TPP_KEY_USER'
harmony.usermgt.create_role_to_user_assignment('KWITTERS', 'H_TPP_KEY_USER', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'LAMTH/H_EFS2_LOC_REP_PARTY'
harmony.usermgt.create_role_to_user_assignment('LAMTH', 'H_EFS2_LOC_REP_PARTY', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LAMTH/H_EFS2_LOC_REP_PARTY
harmony.usermgt.create_dds_item_assignment('LAMTH', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '674', sysdate, null);
-- Inserting RoleToUserAssignment 'LARCEO/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('LARCEO', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LARCEO/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('LARCEO', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[102/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'LARCEO/H_TPP_LOC_REP'
harmony.usermgt.create_role_to_user_assignment('LARCEO', 'H_TPP_LOC_REP', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LARCEO/H_TPP_LOC_REP
harmony.usermgt.create_dds_item_assignment('LARCEO', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '71', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LARCEO', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '29', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LARCEO', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '233', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LARCEO', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '13', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LARCEO', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '12', sysdate, null);
-- Inserting RoleToUserAssignment 'LARCEO/H_TPP_P2P_REPORT'
harmony.usermgt.create_role_to_user_assignment('LARCEO', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LARCEO/H_TPP_P2P_REPORT
harmony.usermgt.create_dds_item_assignment('LARCEO', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '302', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LARCEO', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '150', sysdate, null);
-- Inserting RoleToUserAssignment 'LARZBERG/H_EFS2_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('LARZBERG', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LARZBERG/H_EFS2_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('LARZBERG', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '473', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LARZBERG', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '296', sysdate, null);
-- Inserting RoleToUserAssignment 'LBAEKGAA/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('LBAEKGAA', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LBAEKGAA/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('LBAEKGAA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999840', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LBAEKGAA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999839', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LBAEKGAA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999742', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LBAEKGAA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999536', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LBAEKGAA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999361', sysdate, null);
-- Inserting RoleToUserAssignment 'LBAEKGAA/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('LBAEKGAA', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LBAEKGAA/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('LBAEKGAA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999840', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LBAEKGAA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999839', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LBAEKGAA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999742', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LBAEKGAA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999536', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LBAEKGAA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999361', sysdate, null);
-- Inserting RoleToUserAssignment 'LBAEKGAA/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('LBAEKGAA', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LBAEKGAA/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('LBAEKGAA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11537/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LBAEKGAA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[103/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'LBAEKGAA/H_TPP_P2P_OFFERMGT'
harmony.usermgt.create_role_to_user_assignment('LBAEKGAA', 'H_TPP_P2P_OFFERMGT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LBAEKGAA/H_TPP_P2P_OFFERMGT
harmony.usermgt.create_dds_item_assignment('LBAEKGAA', 'H_TPP_P2P_OFFERMGT', 'TPP AP2PLE OC', 'ONE', '188', sysdate, null);
-- Inserting RoleToUserAssignment 'LBERTOLD/BAM_MANAGER'
harmony.usermgt.create_role_to_user_assignment('LBERTOLD', 'BAM_MANAGER', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LBERTOLD/BAM_MANAGER
harmony.usermgt.create_dds_item_assignment('LBERTOLD', 'BAM_MANAGER', 'BAM Region', 'ONE', '3', sysdate, null);
-- Inserting RoleToUserAssignment 'LBERTOLD/BAM_REPORTER'
harmony.usermgt.create_role_to_user_assignment('LBERTOLD', 'BAM_REPORTER', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LBERTOLD/BAM_REPORTER
harmony.usermgt.create_dds_item_assignment('LBERTOLD', 'BAM_REPORTER', 'BAM Region', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LBERTOLD/HERMES_CMEFF_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('LBERTOLD', 'HERMES_CMEFF_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LBERTOLD/HERMES_CMEFF_REP_CTR
harmony.usermgt.create_dds_item_assignment('LBERTOLD', 'HERMES_CMEFF_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LBERTOLD/HERMES_GRP_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('LBERTOLD', 'HERMES_GRP_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LBERTOLD/HERMES_GRP_REP_CTR
harmony.usermgt.create_dds_item_assignment('LBERTOLD', 'HERMES_GRP_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LBERTOLD/HERMES_STAT_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('LBERTOLD', 'HERMES_STAT_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LBERTOLD/HERMES_STAT_REP_CTR
harmony.usermgt.create_dds_item_assignment('LBERTOLD', 'HERMES_STAT_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LBERTOLD/HERMES_STS_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('LBERTOLD', 'HERMES_STS_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LBERTOLD/HERMES_STS_REP_CTR
harmony.usermgt.create_dds_item_assignment('LBERTOLD', 'HERMES_STS_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LBERTOLD/HERMES_SYM_REC_CTR'
harmony.usermgt.create_role_to_user_assignment('LBERTOLD', 'HERMES_SYM_REC_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LBERTOLD/HERMES_SYM_REC_CTR
harmony.usermgt.create_dds_item_assignment('LBERTOLD', 'HERMES_SYM_REC_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LBERTOLD/HERMES_TXN_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('LBERTOLD', 'HERMES_TXN_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LBERTOLD/HERMES_TXN_REP_CTR
harmony.usermgt.create_dds_item_assignment('LBERTOLD', 'HERMES_TXN_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LBERTOLD/HERMES_VAVO_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('LBERTOLD', 'HERMES_VAVO_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LBERTOLD/HERMES_VAVO_REP_CTR
harmony.usermgt.create_dds_item_assignment('LBERTOLD', 'HERMES_VAVO_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LBERTOLD/H_SWIFTCOM_REPORTER'
harmony.usermgt.create_role_to_user_assignment('LBERTOLD', 'H_SWIFTCOM_REPORTER', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LBERTOLD/H_SWIFTCOM_REPORTER
harmony.usermgt.create_dds_item_assignment('LBERTOLD', 'H_SWIFTCOM_REPORTER', 'SWIFTCOM FM Source', 'ONE', '13', sysdate, null);
-- Inserting RoleToUserAssignment 'LBERTOLD/H_TOPS_CNTRP_EXP_REP'
harmony.usermgt.create_role_to_user_assignment('LBERTOLD', 'H_TOPS_CNTRP_EXP_REP', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'LBOSCH1/HERMES_GRP_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('LBOSCH1', 'HERMES_GRP_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LBOSCH1/HERMES_GRP_REP_CTR
harmony.usermgt.create_dds_item_assignment('LBOSCH1', 'HERMES_GRP_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LBOSCH1/HERMES_STAT_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('LBOSCH1', 'HERMES_STAT_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LBOSCH1/HERMES_STAT_REP_CTR
harmony.usermgt.create_dds_item_assignment('LBOSCH1', 'HERMES_STAT_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LBOSCH1/HERMES_STS_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('LBOSCH1', 'HERMES_STS_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LBOSCH1/HERMES_STS_REP_CTR
harmony.usermgt.create_dds_item_assignment('LBOSCH1', 'HERMES_STS_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LBOSCH1/HERMES_SYM_REC_CTR'
harmony.usermgt.create_role_to_user_assignment('LBOSCH1', 'HERMES_SYM_REC_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LBOSCH1/HERMES_SYM_REC_CTR
harmony.usermgt.create_dds_item_assignment('LBOSCH1', 'HERMES_SYM_REC_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LBOSCH1/HERMES_TXN_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('LBOSCH1', 'HERMES_TXN_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LBOSCH1/HERMES_TXN_REP_CTR
harmony.usermgt.create_dds_item_assignment('LBOSCH1', 'HERMES_TXN_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LBOSCH1/HERMES_VAVO_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('LBOSCH1', 'HERMES_VAVO_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LBOSCH1/HERMES_VAVO_REP_CTR
harmony.usermgt.create_dds_item_assignment('LBOSCH1', 'HERMES_VAVO_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LBOSCH1/H_EFS2_LOC_REP_PARTY'
harmony.usermgt.create_role_to_user_assignment('LBOSCH1', 'H_EFS2_LOC_REP_PARTY', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LBOSCH1/H_EFS2_LOC_REP_PARTY
harmony.usermgt.create_dds_item_assignment('LBOSCH1', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '708', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LBOSCH1', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '673', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LBOSCH1', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '671', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LBOSCH1', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '543', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LBOSCH1', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '534', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LBOSCH1', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '480', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LBOSCH1', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '445', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LBOSCH1', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '400', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LBOSCH1', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '399', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LBOSCH1', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '398', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LBOSCH1', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '397', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LBOSCH1', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '314', sysdate, null);
-- Inserting RoleToUserAssignment 'LBOSCH1/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('LBOSCH1', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LBOSCH1/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('LBOSCH1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LBOSCH1/H_NETTING_LOC_REP_TC'
harmony.usermgt.create_role_to_user_assignment('LBOSCH1', 'H_NETTING_LOC_REP_TC', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LBOSCH1/H_NETTING_LOC_REP_TC
harmony.usermgt.create_dds_item_assignment('LBOSCH1', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LBOSCH1/H_TPP_CTR_REP'
harmony.usermgt.create_role_to_user_assignment('LBOSCH1', 'H_TPP_CTR_REP', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'LBOSCH1/H_TPP_P2P_REPORT'
harmony.usermgt.create_role_to_user_assignment('LBOSCH1', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LBOSCH1/H_TPP_P2P_REPORT
harmony.usermgt.create_dds_item_assignment('LBOSCH1', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '82', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LBOSCH1', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '81', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LBOSCH1', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '258', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LBOSCH1', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '257', sysdate, null);
-- Inserting RoleToUserAssignment 'LBOWEN3/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('LBOWEN3', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LBOWEN3/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('LBOWEN3', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11211/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'LBRITTON/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('LBRITTON', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LBRITTON/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('LBRITTON', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999094', sysdate, null);
-- Inserting RoleToUserAssignment 'LBRITTON/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('LBRITTON', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LBRITTON/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('LBRITTON', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999094', sysdate, null);
-- Inserting RoleToUserAssignment 'LBRITTON/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('LBRITTON', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LBRITTON/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('LBRITTON', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11589/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'LBRUNET/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('LBRUNET', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LBRUNET/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('LBRUNET', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[32/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LBRUNET', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[196/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'LCAMPANA/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('LCAMPANA', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LCAMPANA/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('LCAMPANA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999876', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LCAMPANA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999203', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LCAMPANA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998951', sysdate, null);
-- Inserting RoleToUserAssignment 'LCAMPANA/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('LCAMPANA', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LCAMPANA/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('LCAMPANA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999876', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LCAMPANA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999203', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LCAMPANA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998951', sysdate, null);
-- Inserting RoleToUserAssignment 'LCAMPANA/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('LCAMPANA', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LCAMPANA/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('LCAMPANA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11327/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'LCAMPORE/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('LCAMPORE', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LCAMPORE/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('LCAMPORE', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999864', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LCAMPORE', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999427', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LCAMPORE', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999417', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LCAMPORE', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999187', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LCAMPORE', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999141', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LCAMPORE', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998932', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LCAMPORE', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '200010', sysdate, null);
-- Inserting RoleToUserAssignment 'LCAMPORE/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('LCAMPORE', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LCAMPORE/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('LCAMPORE', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999864', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LCAMPORE', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999427', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LCAMPORE', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999417', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LCAMPORE', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999187', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LCAMPORE', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999141', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LCAMPORE', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998932', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LCAMPORE', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '200010', sysdate, null);
-- Inserting RoleToUserAssignment 'LCAMPORE/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('LCAMPORE', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LCAMPORE/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('LCAMPORE', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[88/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LCAMPORE', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[178/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LCAMPORE', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[156/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LCAMPORE', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[116/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LCAMPORE', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11495/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LCAMPORE', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[102/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'LCAMPORE/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('LCAMPORE', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LCAMPORE/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('LCAMPORE', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[88/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LCAMPORE', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[116/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'LCAMPORE/H_TPP_P2P_REPORT'
harmony.usermgt.create_role_to_user_assignment('LCAMPORE', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LCAMPORE/H_TPP_P2P_REPORT
harmony.usermgt.create_dds_item_assignment('LCAMPORE', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '300', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LCAMPORE', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '274', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LCAMPORE', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '191', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LCAMPORE', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '148', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LCAMPORE', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '120', sysdate, null);
-- Inserting RoleToUserAssignment 'LCASALLA/H_EFS2_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('LCASALLA', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LCASALLA/H_EFS2_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('LCASALLA', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '558', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LCASALLA', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '552', sysdate, null);
-- Inserting RoleToUserAssignment 'LCAVALCA/BAM_MANAGER'
harmony.usermgt.create_role_to_user_assignment('LCAVALCA', 'BAM_MANAGER', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LCAVALCA/BAM_MANAGER
harmony.usermgt.create_dds_item_assignment('LCAVALCA', 'BAM_MANAGER', 'BAM Region', 'ONE', '3', sysdate, null);
-- Inserting RoleToUserAssignment 'LCAVALCA/BAM_REPORTER'
harmony.usermgt.create_role_to_user_assignment('LCAVALCA', 'BAM_REPORTER', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LCAVALCA/BAM_REPORTER
harmony.usermgt.create_dds_item_assignment('LCAVALCA', 'BAM_REPORTER', 'BAM Region', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LCAVALCA/HERMES_CMEFF_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('LCAVALCA', 'HERMES_CMEFF_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LCAVALCA/HERMES_CMEFF_REP_CTR
harmony.usermgt.create_dds_item_assignment('LCAVALCA', 'HERMES_CMEFF_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LCAVALCA/HERMES_GRP_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('LCAVALCA', 'HERMES_GRP_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LCAVALCA/HERMES_GRP_REP_CTR
harmony.usermgt.create_dds_item_assignment('LCAVALCA', 'HERMES_GRP_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LCAVALCA/HERMES_STAT_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('LCAVALCA', 'HERMES_STAT_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LCAVALCA/HERMES_STAT_REP_CTR
harmony.usermgt.create_dds_item_assignment('LCAVALCA', 'HERMES_STAT_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LCAVALCA/HERMES_STS_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('LCAVALCA', 'HERMES_STS_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LCAVALCA/HERMES_STS_REP_CTR
harmony.usermgt.create_dds_item_assignment('LCAVALCA', 'HERMES_STS_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LCAVALCA/HERMES_SYM_REC_CTR'
harmony.usermgt.create_role_to_user_assignment('LCAVALCA', 'HERMES_SYM_REC_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LCAVALCA/HERMES_SYM_REC_CTR
harmony.usermgt.create_dds_item_assignment('LCAVALCA', 'HERMES_SYM_REC_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LCAVALCA/HERMES_TXN_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('LCAVALCA', 'HERMES_TXN_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LCAVALCA/HERMES_TXN_REP_CTR
harmony.usermgt.create_dds_item_assignment('LCAVALCA', 'HERMES_TXN_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LCAVALCA/HERMES_VAVO_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('LCAVALCA', 'HERMES_VAVO_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LCAVALCA/HERMES_VAVO_REP_CTR
harmony.usermgt.create_dds_item_assignment('LCAVALCA', 'HERMES_VAVO_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LCAVALCA/H_EFS2_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('LCAVALCA', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LCAVALCA/H_EFS2_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('LCAVALCA', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '399', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LCAVALCA', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '398', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LCAVALCA', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '397', sysdate, null);
-- Inserting RoleToUserAssignment 'LCAVALCA/H_EFS2_LOC_REP_PARTY'
harmony.usermgt.create_role_to_user_assignment('LCAVALCA', 'H_EFS2_LOC_REP_PARTY', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LCAVALCA/H_EFS2_LOC_REP_PARTY
harmony.usermgt.create_dds_item_assignment('LCAVALCA', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '480', sysdate, null);
-- Inserting RoleToUserAssignment 'LCAVALCA/H_SWIFTCOM_RELEASER'
harmony.usermgt.create_role_to_user_assignment('LCAVALCA', 'H_SWIFTCOM_RELEASER', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LCAVALCA/H_SWIFTCOM_RELEASER
harmony.usermgt.create_dds_item_assignment('LCAVALCA', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '13', sysdate, null);
-- Inserting RoleToUserAssignment 'LCAVALCA/H_TOPS_CNTRP_EXP_REP'
harmony.usermgt.create_role_to_user_assignment('LCAVALCA', 'H_TOPS_CNTRP_EXP_REP', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'LCAVALL/H_EFS2_LOC_REP_PARTY'
harmony.usermgt.create_role_to_user_assignment('LCAVALL', 'H_EFS2_LOC_REP_PARTY', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LCAVALL/H_EFS2_LOC_REP_PARTY
harmony.usermgt.create_dds_item_assignment('LCAVALL', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '584', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LCAVALL', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '358', sysdate, null);
-- Inserting RoleToUserAssignment 'LCHAN4/H_EFS2_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('LCHAN4', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LCHAN4/H_EFS2_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('LCHAN4', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '474', sysdate, null);
-- Inserting RoleToUserAssignment 'LCLARK5/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('LCLARK5', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LCLARK5/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('LCLARK5', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999112', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LCLARK5', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999097', sysdate, null);
-- Inserting RoleToUserAssignment 'LCLARK5/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('LCLARK5', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LCLARK5/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('LCLARK5', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999112', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LCLARK5', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999097', sysdate, null);
-- Inserting RoleToUserAssignment 'LCOENEN/HERMES_GRP_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('LCOENEN', 'HERMES_GRP_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LCOENEN/HERMES_GRP_REP_CTR
harmony.usermgt.create_dds_item_assignment('LCOENEN', 'HERMES_GRP_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LCOENEN/HERMES_STAT_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('LCOENEN', 'HERMES_STAT_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LCOENEN/HERMES_STAT_REP_CTR
harmony.usermgt.create_dds_item_assignment('LCOENEN', 'HERMES_STAT_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LCOENEN/HERMES_STS_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('LCOENEN', 'HERMES_STS_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LCOENEN/HERMES_STS_REP_CTR
harmony.usermgt.create_dds_item_assignment('LCOENEN', 'HERMES_STS_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LCOENEN/HERMES_SYM_REC_CTR'
harmony.usermgt.create_role_to_user_assignment('LCOENEN', 'HERMES_SYM_REC_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LCOENEN/HERMES_SYM_REC_CTR
harmony.usermgt.create_dds_item_assignment('LCOENEN', 'HERMES_SYM_REC_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LCOENEN/HERMES_TXN_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('LCOENEN', 'HERMES_TXN_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LCOENEN/HERMES_TXN_REP_CTR
harmony.usermgt.create_dds_item_assignment('LCOENEN', 'HERMES_TXN_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LCOENEN/HERMES_VAVO_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('LCOENEN', 'HERMES_VAVO_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LCOENEN/HERMES_VAVO_REP_CTR
harmony.usermgt.create_dds_item_assignment('LCOENEN', 'HERMES_VAVO_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LCOENEN/H_EFS2_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('LCOENEN', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LCOENEN/H_EFS2_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('LCOENEN', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '673', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LCOENEN', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '671', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LCOENEN', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '543', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LCOENEN', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '534', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LCOENEN', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '445', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LCOENEN', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '314', sysdate, null);
-- Inserting RoleToUserAssignment 'LCOENEN/H_EFS2_LOC_REP_PARTY'
harmony.usermgt.create_role_to_user_assignment('LCOENEN', 'H_EFS2_LOC_REP_PARTY', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LCOENEN/H_EFS2_LOC_REP_PARTY
harmony.usermgt.create_dds_item_assignment('LCOENEN', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '708', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LCOENEN', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '480', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LCOENEN', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '400', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LCOENEN', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '399', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LCOENEN', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '398', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LCOENEN', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '397', sysdate, null);
-- Inserting RoleToUserAssignment 'LCOENEN/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('LCOENEN', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LCOENEN/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('LCOENEN', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LCOENEN/H_NETTING_LOC_REP_TC'
harmony.usermgt.create_role_to_user_assignment('LCOENEN', 'H_NETTING_LOC_REP_TC', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LCOENEN/H_NETTING_LOC_REP_TC
harmony.usermgt.create_dds_item_assignment('LCOENEN', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LCOENEN/H_TPP_CTR_REP'
harmony.usermgt.create_role_to_user_assignment('LCOENEN', 'H_TPP_CTR_REP', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'LCOENEN/H_TPP_P2P_REPORT'
harmony.usermgt.create_role_to_user_assignment('LCOENEN', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LCOENEN/H_TPP_P2P_REPORT
harmony.usermgt.create_dds_item_assignment('LCOENEN', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '82', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LCOENEN', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '81', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LCOENEN', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '258', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LCOENEN', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '257', sysdate, null);
-- Inserting RoleToUserAssignment 'LCORREA/H_EFS2_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('LCORREA', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LCORREA/H_EFS2_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('LCORREA', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '480', sysdate, null);
-- Inserting RoleToUserAssignment 'LDBACKKE/BAM_REPORTER'
harmony.usermgt.create_role_to_user_assignment('LDBACKKE', 'BAM_REPORTER', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LDBACKKE/BAM_REPORTER
harmony.usermgt.create_dds_item_assignment('LDBACKKE', 'BAM_REPORTER', 'BAM Region', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LDBACKKE/HB_FM_COMBI_REQUEST'
harmony.usermgt.create_role_to_user_assignment('LDBACKKE', 'HB_FM_COMBI_REQUEST', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'LDBACKKE/HERMES_CMEFF_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('LDBACKKE', 'HERMES_CMEFF_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LDBACKKE/HERMES_CMEFF_REP_CTR
harmony.usermgt.create_dds_item_assignment('LDBACKKE', 'HERMES_CMEFF_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LDBACKKE/HERMES_GRP_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('LDBACKKE', 'HERMES_GRP_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LDBACKKE/HERMES_GRP_REP_CTR
harmony.usermgt.create_dds_item_assignment('LDBACKKE', 'HERMES_GRP_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LDBACKKE/HERMES_IDTXN_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('LDBACKKE', 'HERMES_IDTXN_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LDBACKKE/HERMES_IDTXN_REP_CTR
harmony.usermgt.create_dds_item_assignment('LDBACKKE', 'HERMES_IDTXN_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LDBACKKE/HERMES_STAT_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('LDBACKKE', 'HERMES_STAT_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LDBACKKE/HERMES_STAT_REP_CTR
harmony.usermgt.create_dds_item_assignment('LDBACKKE', 'HERMES_STAT_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LDBACKKE/HERMES_STS_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('LDBACKKE', 'HERMES_STS_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LDBACKKE/HERMES_STS_REP_CTR
harmony.usermgt.create_dds_item_assignment('LDBACKKE', 'HERMES_STS_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LDBACKKE/HERMES_SYM_REC_CTR'
harmony.usermgt.create_role_to_user_assignment('LDBACKKE', 'HERMES_SYM_REC_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LDBACKKE/HERMES_SYM_REC_CTR
harmony.usermgt.create_dds_item_assignment('LDBACKKE', 'HERMES_SYM_REC_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LDBACKKE/HERMES_TXN_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('LDBACKKE', 'HERMES_TXN_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LDBACKKE/HERMES_TXN_REP_CTR
harmony.usermgt.create_dds_item_assignment('LDBACKKE', 'HERMES_TXN_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LDBACKKE/HERMES_VAVO_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('LDBACKKE', 'HERMES_VAVO_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LDBACKKE/HERMES_VAVO_REP_CTR
harmony.usermgt.create_dds_item_assignment('LDBACKKE', 'HERMES_VAVO_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LDBACKKE/H_BANKDIR_BO_USER'
harmony.usermgt.create_role_to_user_assignment('LDBACKKE', 'H_BANKDIR_BO_USER', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'LDBACKKE/H_COMMONS_BO_USER'
harmony.usermgt.create_role_to_user_assignment('LDBACKKE', 'H_COMMONS_BO_USER', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'LDBACKKE/H_DLINK_BO_USER'
harmony.usermgt.create_role_to_user_assignment('LDBACKKE', 'H_DLINK_BO_USER', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'LDBACKKE/H_DLINK_REPORTING'
harmony.usermgt.create_role_to_user_assignment('LDBACKKE', 'H_DLINK_REPORTING', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'LDBACKKE/H_EFS2_BO_USER'
harmony.usermgt.create_role_to_user_assignment('LDBACKKE', 'H_EFS2_BO_USER', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'LDBACKKE/H_NETTING_BO_USER'
harmony.usermgt.create_role_to_user_assignment('LDBACKKE', 'H_NETTING_BO_USER', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LDBACKKE/H_NETTING_BO_USER
harmony.usermgt.create_dds_item_assignment('LDBACKKE', 'H_NETTING_BO_USER', 'Treasury Center Netting Participant', 'ONE', '[7/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDBACKKE', 'H_NETTING_BO_USER', 'Treasury Center Netting Participant', 'ONE', '[5/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDBACKKE', 'H_NETTING_BO_USER', 'Treasury Center Netting Participant', 'ONE', '[233/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDBACKKE', 'H_NETTING_BO_USER', 'Treasury Center Netting Participant', 'ONE', '[223/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDBACKKE', 'H_NETTING_BO_USER', 'Treasury Center Netting Participant', 'ONE', '[222/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDBACKKE', 'H_NETTING_BO_USER', 'Treasury Center Netting Participant', 'ONE', '[11486/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDBACKKE', 'H_NETTING_BO_USER', 'Treasury Center Netting Participant', 'ONE', '[11120/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDBACKKE', 'H_NETTING_BO_USER', 'Treasury Center Netting Participant', 'ONE', '[1/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'LDBACKKE/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('LDBACKKE', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LDBACKKE/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('LDBACKKE', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[93/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDBACKKE', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[254/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDBACKKE', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[142/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'LDBACKKE/H_NETTING_LOC_REP_TC'
harmony.usermgt.create_role_to_user_assignment('LDBACKKE', 'H_NETTING_LOC_REP_TC', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LDBACKKE/H_NETTING_LOC_REP_TC
harmony.usermgt.create_dds_item_assignment('LDBACKKE', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[7/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDBACKKE', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[233/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDBACKKE', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[223/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDBACKKE', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[222/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDBACKKE', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[11486/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDBACKKE', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[11120/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'LDBACKKE/H_SWIFTCOM_RELEASER'
harmony.usermgt.create_role_to_user_assignment('LDBACKKE', 'H_SWIFTCOM_RELEASER', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LDBACKKE/H_SWIFTCOM_RELEASER
harmony.usermgt.create_dds_item_assignment('LDBACKKE', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '15', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDBACKKE', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '14', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDBACKKE', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '13', sysdate, null);
-- Inserting RoleToUserAssignment 'LDBACKKE/H_SWIFTCOM_REPORTER'
harmony.usermgt.create_role_to_user_assignment('LDBACKKE', 'H_SWIFTCOM_REPORTER', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LDBACKKE/H_SWIFTCOM_REPORTER
harmony.usermgt.create_dds_item_assignment('LDBACKKE', 'H_SWIFTCOM_REPORTER', 'SWIFTCOM FM Source', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LDBACKKE/H_SWIFTCOM_STADA_MGR'
harmony.usermgt.create_role_to_user_assignment('LDBACKKE', 'H_SWIFTCOM_STADA_MGR', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'LDBACKKE/H_TOPS_BO_USER'
harmony.usermgt.create_role_to_user_assignment('LDBACKKE', 'H_TOPS_BO_USER', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'LDBACKKE/H_TPP_BO_USER'
harmony.usermgt.create_role_to_user_assignment('LDBACKKE', 'H_TPP_BO_USER', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'LDEBOCK2/BAM_MANAGER'
harmony.usermgt.create_role_to_user_assignment('LDEBOCK2', 'BAM_MANAGER', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LDEBOCK2/BAM_MANAGER
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'BAM_MANAGER', 'BAM Region', 'ONE', '2', sysdate, null);
-- Inserting RoleToUserAssignment 'LDEBOCK2/BAM_REPORTER'
harmony.usermgt.create_role_to_user_assignment('LDEBOCK2', 'BAM_REPORTER', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LDEBOCK2/BAM_REPORTER
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'BAM_REPORTER', 'BAM Region', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LDEBOCK2/HERMES_CMEFF_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('LDEBOCK2', 'HERMES_CMEFF_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LDEBOCK2/HERMES_CMEFF_REP_CTR
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'HERMES_CMEFF_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LDEBOCK2/HERMES_GRP_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('LDEBOCK2', 'HERMES_GRP_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LDEBOCK2/HERMES_GRP_REP_CTR
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'HERMES_GRP_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LDEBOCK2/HERMES_IDTXN_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('LDEBOCK2', 'HERMES_IDTXN_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LDEBOCK2/HERMES_IDTXN_REP_CTR
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'HERMES_IDTXN_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LDEBOCK2/HERMES_STAT_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('LDEBOCK2', 'HERMES_STAT_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LDEBOCK2/HERMES_STAT_REP_CTR
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'HERMES_STAT_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LDEBOCK2/HERMES_STS_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('LDEBOCK2', 'HERMES_STS_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LDEBOCK2/HERMES_STS_REP_CTR
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'HERMES_STS_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LDEBOCK2/HERMES_SYM_REC_CTR'
harmony.usermgt.create_role_to_user_assignment('LDEBOCK2', 'HERMES_SYM_REC_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LDEBOCK2/HERMES_SYM_REC_CTR
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'HERMES_SYM_REC_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LDEBOCK2/HERMES_TXN_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('LDEBOCK2', 'HERMES_TXN_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LDEBOCK2/HERMES_TXN_REP_CTR
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'HERMES_TXN_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LDEBOCK2/HERMES_VAVO_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('LDEBOCK2', 'HERMES_VAVO_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LDEBOCK2/HERMES_VAVO_REP_CTR
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'HERMES_VAVO_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LDEBOCK2/H_EFS2_CTR_REP'
harmony.usermgt.create_role_to_user_assignment('LDEBOCK2', 'H_EFS2_CTR_REP', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'LDEBOCK2/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LDEBOCK2/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[94/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[93/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[91/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[89/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[88/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[58/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[47/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[439/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[438/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[434/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[411/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[397/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[38/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[348/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[344/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[342/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[288/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[286/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[281/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[276/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[268/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[267/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[266/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[264/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[263/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[254/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[246/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[244/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[238/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[237/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[232/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[229/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[225/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[219/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[218/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[217/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[215/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[208/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[207/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[190/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[179/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[178/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[177/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[176/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[175/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[174/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[173/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[172/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[171/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[170/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[169/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[168/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[161/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[160/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[159/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[156/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[155/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[154/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[153/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[147/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[146/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[144/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[141/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[140/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[131/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[130/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[129/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[127/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11991/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11983/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11981/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11930/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11927/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11924/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11919/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11918/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11917/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11881/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11865/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11495/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11436/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11417/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[114/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11385/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11362/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11358/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11357/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11349/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11342/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11334/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11327/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11319/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11272/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11260/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11237/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11235/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11234/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11233/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11232/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11230/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11218/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11217/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11216/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11091/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11080/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11072/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11061/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11015/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[109/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[108/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[107/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[106/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[105/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[104/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[103/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[102/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[111/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11106/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11130/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11147/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11148/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11153/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11178/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11184/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11194/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11195/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[112/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11212/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[115/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11536/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11537/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11543/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11562/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11566/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11575/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11580/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11582/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[116/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11627/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11628/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11629/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11635/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11637/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11654/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11655/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11661/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11670/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11695/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11697/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11699/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[117/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11710/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11713/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11737/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11753/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11755/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11756/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11761/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11764/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11767/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11769/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11771/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11780/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11783/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11785/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11805/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11818/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11820/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11825/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11841/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11842/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11843/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11844/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11846/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11847/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11862/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'LDEBOCK2/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('LDEBOCK2', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LDEBOCK2/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11356/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11687/CC]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11688/CC]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11689/CC]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11741/CC]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11743/CC]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11744/CC]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11745/CC]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11831/CC]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11978/CC]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11985/CC]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[142/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[49/CC]', sysdate, null);
-- Inserting RoleToUserAssignment 'LDEBOCK2/H_NETTING_LOC_REP_TC'
harmony.usermgt.create_role_to_user_assignment('LDEBOCK2', 'H_NETTING_LOC_REP_TC', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LDEBOCK2/H_NETTING_LOC_REP_TC
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[7/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[233/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[11486/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[11120/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'LDEBOCK2/H_SWIFTCOM_REPORTER'
harmony.usermgt.create_role_to_user_assignment('LDEBOCK2', 'H_SWIFTCOM_REPORTER', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LDEBOCK2/H_SWIFTCOM_REPORTER
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_SWIFTCOM_REPORTER', 'SWIFTCOM FM Source', 'ONE', '14', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDEBOCK2', 'H_SWIFTCOM_REPORTER', 'SWIFTCOM FM Source', 'ONE', '13', sysdate, null);
-- Inserting RoleToUserAssignment 'LDEBOCK2/H_TPP_CTR_REP'
harmony.usermgt.create_role_to_user_assignment('LDEBOCK2', 'H_TPP_CTR_REP', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'LDIAZ17/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('LDIAZ17', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LDIAZ17/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('LDIAZ17', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999708', sysdate, null);
-- Inserting RoleToUserAssignment 'LDIAZ17/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('LDIAZ17', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LDIAZ17/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('LDIAZ17', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999708', sysdate, null);
-- Inserting RoleToUserAssignment 'LDIAZ17/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('LDIAZ17', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LDIAZ17/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('LDIAZ17', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[249/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'LDICIUN/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('LDICIUN', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LDICIUN/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('LDICIUN', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998998', sysdate, null);
-- Inserting RoleToUserAssignment 'LDICIUN/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('LDICIUN', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LDICIUN/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('LDICIUN', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998998', sysdate, null);
-- Inserting RoleToUserAssignment 'LDICIUN/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('LDICIUN', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LDICIUN/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('LDICIUN', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11374/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDICIUN', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11373/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDICIUN', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11366/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LDICIUN', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11285/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'LDZELME/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('LDZELME', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LDZELME/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('LDZELME', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998999', sysdate, null);
-- Inserting RoleToUserAssignment 'LDZELME/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('LDZELME', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LDZELME/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('LDZELME', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998999', sysdate, null);
-- Inserting RoleToUserAssignment 'LFOSTER/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('LFOSTER', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LFOSTER/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('LFOSTER', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[437/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LFOSTER', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[428/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'LFOULK/H_EFS2_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('LFOULK', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LFOULK/H_EFS2_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('LFOULK', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '567', sysdate, null);
-- Inserting RoleToUserAssignment 'LFREYNE1/HERMES_CMEFF_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('LFREYNE1', 'HERMES_CMEFF_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LFREYNE1/HERMES_CMEFF_REP_CTR
harmony.usermgt.create_dds_item_assignment('LFREYNE1', 'HERMES_CMEFF_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LFREYNE1/HERMES_GRP_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('LFREYNE1', 'HERMES_GRP_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LFREYNE1/HERMES_GRP_REP_CTR
harmony.usermgt.create_dds_item_assignment('LFREYNE1', 'HERMES_GRP_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LFREYNE1/HERMES_IDTXN_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('LFREYNE1', 'HERMES_IDTXN_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LFREYNE1/HERMES_IDTXN_REP_CTR
harmony.usermgt.create_dds_item_assignment('LFREYNE1', 'HERMES_IDTXN_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LFREYNE1/HERMES_STAT_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('LFREYNE1', 'HERMES_STAT_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LFREYNE1/HERMES_STAT_REP_CTR
harmony.usermgt.create_dds_item_assignment('LFREYNE1', 'HERMES_STAT_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LFREYNE1/HERMES_STS_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('LFREYNE1', 'HERMES_STS_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LFREYNE1/HERMES_STS_REP_CTR
harmony.usermgt.create_dds_item_assignment('LFREYNE1', 'HERMES_STS_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LFREYNE1/HERMES_SYM_REC_CTR'
harmony.usermgt.create_role_to_user_assignment('LFREYNE1', 'HERMES_SYM_REC_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LFREYNE1/HERMES_SYM_REC_CTR
harmony.usermgt.create_dds_item_assignment('LFREYNE1', 'HERMES_SYM_REC_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LFREYNE1/HERMES_TXN_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('LFREYNE1', 'HERMES_TXN_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LFREYNE1/HERMES_TXN_REP_CTR
harmony.usermgt.create_dds_item_assignment('LFREYNE1', 'HERMES_TXN_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LFREYNE1/HERMES_VAVO_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('LFREYNE1', 'HERMES_VAVO_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LFREYNE1/HERMES_VAVO_REP_CTR
harmony.usermgt.create_dds_item_assignment('LFREYNE1', 'HERMES_VAVO_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LFREYNE1/H_EFS2_CTR_AUTH'
harmony.usermgt.create_role_to_user_assignment('LFREYNE1', 'H_EFS2_CTR_AUTH', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'LFREYNE1/H_EFS2_LOC_REP_PARTY'
harmony.usermgt.create_role_to_user_assignment('LFREYNE1', 'H_EFS2_LOC_REP_PARTY', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LFREYNE1/H_EFS2_LOC_REP_PARTY
harmony.usermgt.create_dds_item_assignment('LFREYNE1', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '543', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LFREYNE1', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '534', sysdate, null);
-- Inserting RoleToUserAssignment 'LFREYNE1/H_NETTING_CTR_MGT'
harmony.usermgt.create_role_to_user_assignment('LFREYNE1', 'H_NETTING_CTR_MGT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LFREYNE1/H_NETTING_CTR_MGT
harmony.usermgt.create_dds_item_assignment('LFREYNE1', 'H_NETTING_CTR_MGT', 'Third Party Netting Participant', 'ALL', null, sysdate, null);
harmony.usermgt.create_dds_item_assignment('LFREYNE1', 'H_NETTING_CTR_MGT', 'Treasury Center Netting Participant', 'ALL', null, sysdate, null);
harmony.usermgt.create_dds_item_assignment('LFREYNE1', 'H_NETTING_CTR_MGT', 'Standard Netting Participant', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LFREYNE1/H_NETTING_LOC_REP_TC'
harmony.usermgt.create_role_to_user_assignment('LFREYNE1', 'H_NETTING_LOC_REP_TC', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LFREYNE1/H_NETTING_LOC_REP_TC
harmony.usermgt.create_dds_item_assignment('LFREYNE1', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LFREYNE1/H_SWIFTCOM_RELEASER'
harmony.usermgt.create_role_to_user_assignment('LFREYNE1', 'H_SWIFTCOM_RELEASER', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LFREYNE1/H_SWIFTCOM_RELEASER
harmony.usermgt.create_dds_item_assignment('LFREYNE1', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '13', sysdate, null);
-- Inserting RoleToUserAssignment 'LFREYNE1/H_TOPS_CNTRP_EXP_REP'
harmony.usermgt.create_role_to_user_assignment('LFREYNE1', 'H_TOPS_CNTRP_EXP_REP', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'LGAVITA/H_EFS2_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('LGAVITA', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LGAVITA/H_EFS2_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('LGAVITA', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '541', sysdate, null);
-- Inserting RoleToUserAssignment 'LGAVITA/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('LGAVITA', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LGAVITA/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('LGAVITA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11351/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'LGEE/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('LGEE', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LGEE/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('LGEE', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[165/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'LGERONI/H_AP2OLLO_SSC_USER'
harmony.usermgt.create_role_to_user_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LGERONI/H_AP2OLLO_SSC_USER
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '407', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '341', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '340', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '337', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '335', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '334', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '297', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '296', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '295', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '283', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '282', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '281', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '280', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '279', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '268', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '267', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '266', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '265', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '264', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '263', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '262', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '261', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '260', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '259', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '200', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '199', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '198', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '197', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '196', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '194', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '193', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '184', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '183', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '182', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '181', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '180', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '179', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '178', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '177', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '176', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '175', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '174', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '173', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '172', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '171', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '170', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '169', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '168', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '155', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '154', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '153', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '152', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '151', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '145', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '144', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '143', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '141', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '140', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '139', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '138', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '137', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '156', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '157', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '158', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '159', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '160', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '161', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '162', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '163', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '164', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '165', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '166', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '167', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '201', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '202', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '203', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '204', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '205', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '206', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '207', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '208', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '209', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '210', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '211', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '212', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '213', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '214', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '215', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '216', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '217', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '218', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '219', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '220', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '221', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '222', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '223', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '224', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '225', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '226', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '227', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '228', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '229', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '230', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '231', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '232', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '236', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '237', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '238', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '239', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '240', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '241', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '242', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '243', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '244', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '245', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '246', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '247', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '248', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '250', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '251', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '252', sysdate, null);
-- Inserting RoleToUserAssignment 'LGERONI/H_TPP_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('LGERONI', 'H_TPP_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LGERONI/H_TPP_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('LGERONI', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '50', sysdate, null);
-- Inserting RoleToUserAssignment 'LGERVACI/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('LGERVACI', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LGERVACI/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('LGERVACI', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '100057', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERVACI', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '200010', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERVACI', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998926', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERVACI', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998966', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERVACI', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998972', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERVACI', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998973', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERVACI', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999111', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERVACI', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999364', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERVACI', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999666', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERVACI', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999683', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERVACI', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999745', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERVACI', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999864', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERVACI', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999872', sysdate, null);
-- Inserting RoleToUserAssignment 'LGERVACI/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('LGERVACI', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LGERVACI/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('LGERVACI', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '100057', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERVACI', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '200010', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERVACI', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998926', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERVACI', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998966', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERVACI', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998972', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERVACI', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998973', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERVACI', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999111', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERVACI', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999364', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERVACI', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999666', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERVACI', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999683', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERVACI', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999745', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERVACI', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999864', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERVACI', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999872', sysdate, null);
-- Inserting RoleToUserAssignment 'LGERVACI/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('LGERVACI', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LGERVACI/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('LGERVACI', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[344/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERVACI', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[168/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERVACI', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[147/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERVACI', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11753/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'LGERVACI/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('LGERVACI', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LGERVACI/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('LGERVACI', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[344/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERVACI', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[168/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERVACI', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11761/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERVACI', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11753/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERVACI', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11334/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERVACI', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[108/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'LGERVACI/H_TPP_LOC_REP'
harmony.usermgt.create_role_to_user_assignment('LGERVACI', 'H_TPP_LOC_REP', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LGERVACI/H_TPP_LOC_REP
harmony.usermgt.create_dds_item_assignment('LGERVACI', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '71', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERVACI', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '29', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERVACI', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '233', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERVACI', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '195', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERVACI', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '13', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERVACI', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '12', sysdate, null);
-- Inserting RoleToUserAssignment 'LGERVACI/H_TPP_P2P_REPORT'
harmony.usermgt.create_role_to_user_assignment('LGERVACI', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LGERVACI/H_TPP_P2P_REPORT
harmony.usermgt.create_dds_item_assignment('LGERVACI', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '329', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERVACI', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '328', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERVACI', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '327', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERVACI', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '302', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERVACI', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '276', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERVACI', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '273', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGERVACI', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '150', sysdate, null);
-- Inserting RoleToUserAssignment 'LGODINHO/H_EFS2_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('LGODINHO', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LGODINHO/H_EFS2_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('LGODINHO', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '283', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGODINHO', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '282', sysdate, null);
-- Inserting RoleToUserAssignment 'LGUANZON/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('LGUANZON', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LGUANZON/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('LGUANZON', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999364', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGUANZON', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999111', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGUANZON', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998966', sysdate, null);
-- Inserting RoleToUserAssignment 'LGUANZON/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('LGUANZON', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LGUANZON/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('LGUANZON', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999364', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGUANZON', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999111', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGUANZON', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998966', sysdate, null);
-- Inserting RoleToUserAssignment 'LGUANZON/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('LGUANZON', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LGUANZON/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('LGUANZON', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[178/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGUANZON', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[168/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGUANZON', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[116/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'LGUANZON/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('LGUANZON', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LGUANZON/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('LGUANZON', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[116/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGUANZON', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[108/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'LGUANZON/H_TPP_LOC_REP'
harmony.usermgt.create_role_to_user_assignment('LGUANZON', 'H_TPP_LOC_REP', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LGUANZON/H_TPP_LOC_REP
harmony.usermgt.create_dds_item_assignment('LGUANZON', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '71', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGUANZON', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '13', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGUANZON', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '12', sysdate, null);
-- Inserting RoleToUserAssignment 'LGUANZON/H_TPP_P2P_REPORT'
harmony.usermgt.create_role_to_user_assignment('LGUANZON', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LGUANZON/H_TPP_P2P_REPORT
harmony.usermgt.create_dds_item_assignment('LGUANZON', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '327', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LGUANZON', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '278', sysdate, null);
-- Inserting RoleToUserAssignment 'LGUTIERR/H_TPP_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('LGUTIERR', 'H_TPP_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LGUTIERR/H_TPP_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('LGUTIERR', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '54', sysdate, null);
-- Inserting RoleToUserAssignment 'LHASKELL/H_EFS2_LOC_REP_PARTY'
harmony.usermgt.create_role_to_user_assignment('LHASKELL', 'H_EFS2_LOC_REP_PARTY', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LHASKELL/H_EFS2_LOC_REP_PARTY
harmony.usermgt.create_dds_item_assignment('LHASKELL', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '427', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LHASKELL', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '426', sysdate, null);
-- Inserting RoleToUserAssignment 'LHAVERAN/BAM_REPORTER'
harmony.usermgt.create_role_to_user_assignment('LHAVERAN', 'BAM_REPORTER', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LHAVERAN/BAM_REPORTER
harmony.usermgt.create_dds_item_assignment('LHAVERAN', 'BAM_REPORTER', 'BAM Region', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LHAVERAN/HB_FM_COMBI_VIEW'
harmony.usermgt.create_role_to_user_assignment('LHAVERAN', 'HB_FM_COMBI_VIEW', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'LHAVERAN/HERMES_IM_SUPPORT'
harmony.usermgt.create_role_to_user_assignment('LHAVERAN', 'HERMES_IM_SUPPORT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LHAVERAN/HERMES_IM_SUPPORT
harmony.usermgt.create_dds_item_assignment('LHAVERAN', 'HERMES_IM_SUPPORT', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LHAVERAN/H_CHAINS_IM_SUPPORT'
harmony.usermgt.create_role_to_user_assignment('LHAVERAN', 'H_CHAINS_IM_SUPPORT', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'LHAVERAN/H_DLINK_IM_SUPPORT'
harmony.usermgt.create_role_to_user_assignment('LHAVERAN', 'H_DLINK_IM_SUPPORT', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'LHAVERAN/H_EFS2_IM_SUPPORT'
harmony.usermgt.create_role_to_user_assignment('LHAVERAN', 'H_EFS2_IM_SUPPORT', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'LHAVERAN/H_GXRS_IM_SUPPORT'
harmony.usermgt.create_role_to_user_assignment('LHAVERAN', 'H_GXRS_IM_SUPPORT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LHAVERAN/H_GXRS_IM_SUPPORT
harmony.usermgt.create_dds_item_assignment('LHAVERAN', 'H_GXRS_IM_SUPPORT', 'GXRS instructing accounts in ART', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LHAVERAN/H_P2P_IM_SUPPORT'
harmony.usermgt.create_role_to_user_assignment('LHAVERAN', 'H_P2P_IM_SUPPORT', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'LHAVERAN/H_SWIFTCOM_IM_SUP'
harmony.usermgt.create_role_to_user_assignment('LHAVERAN', 'H_SWIFTCOM_IM_SUP', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LHAVERAN/H_SWIFTCOM_IM_SUP
harmony.usermgt.create_dds_item_assignment('LHAVERAN', 'H_SWIFTCOM_IM_SUP', 'SWIFTCOM FM Source', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LHAVERAN/H_TOPS_IM_SUPPORT'
harmony.usermgt.create_role_to_user_assignment('LHAVERAN', 'H_TOPS_IM_SUPPORT', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'LHAVERAN/H_TPP_IM_SUPPORT'
harmony.usermgt.create_role_to_user_assignment('LHAVERAN', 'H_TPP_IM_SUPPORT', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'LHENRIET/H_EFS2_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('LHENRIET', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LHENRIET/H_EFS2_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('LHENRIET', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '481', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LHENRIET', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '461', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LHENRIET', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '305', sysdate, null);
-- Inserting RoleToUserAssignment 'LHO1/H_EFS2_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('LHO1', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LHO1/H_EFS2_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('LHO1', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '486', sysdate, null);
-- Inserting RoleToUserAssignment 'LHO1/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('LHO1', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LHO1/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('LHO1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[5001/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'LHO1/H_TPP_LOC_REP'
harmony.usermgt.create_role_to_user_assignment('LHO1', 'H_TPP_LOC_REP', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LHO1/H_TPP_LOC_REP
harmony.usermgt.create_dds_item_assignment('LHO1', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '33', sysdate, null);
-- Inserting RoleToUserAssignment 'LJANOUSO/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('LJANOUSO', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LJANOUSO/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('LJANOUSO', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999863', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LJANOUSO', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999862', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LJANOUSO', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999844', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LJANOUSO', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999843', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LJANOUSO', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999743', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LJANOUSO', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999644', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LJANOUSO', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999221', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LJANOUSO', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999003', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LJANOUSO', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999002', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LJANOUSO', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999001', sysdate, null);
-- Inserting RoleToUserAssignment 'LJANOUSO/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('LJANOUSO', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LJANOUSO/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('LJANOUSO', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999863', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LJANOUSO', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999862', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LJANOUSO', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999844', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LJANOUSO', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999843', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LJANOUSO', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999743', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LJANOUSO', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999644', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LJANOUSO', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999221', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LJANOUSO', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999003', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LJANOUSO', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999002', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LJANOUSO', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999001', sysdate, null);
-- Inserting RoleToUserAssignment 'LJARQUE/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('LJARQUE', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LJARQUE/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('LJARQUE', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[429/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LJARQUE', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[416/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LJARQUE', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[415/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LJARQUE', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[414/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LJARQUE', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[408/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LJARQUE', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[405/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LJARQUE', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[34/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LJARQUE', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[181/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LJARQUE', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[158/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LJARQUE', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11412/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LJARQUE', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11332/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'LJI/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('LJI', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LJI/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('LJI', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999869', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LJI', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999708', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LJI', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999707', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LJI', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999706', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LJI', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999705', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LJI', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999089', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LJI', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998960', sysdate, null);
-- Inserting RoleToUserAssignment 'LJI/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('LJI', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LJI/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('LJI', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999869', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LJI', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999708', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LJI', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999707', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LJI', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999706', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LJI', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999705', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LJI', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999089', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LJI', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998960', sysdate, null);
-- Inserting RoleToUserAssignment 'LJI/H_TPP_LOC_REP'
harmony.usermgt.create_role_to_user_assignment('LJI', 'H_TPP_LOC_REP', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LJI/H_TPP_LOC_REP
harmony.usermgt.create_dds_item_assignment('LJI', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '49', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LJI', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '48', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LJI', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '32', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LJI', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '31', sysdate, null);
-- Inserting RoleToUserAssignment 'LJORGEN2/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('LJORGEN2', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LJORGEN2/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('LJORGEN2', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999536', sysdate, null);
-- Inserting RoleToUserAssignment 'LJORGEN2/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('LJORGEN2', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LJORGEN2/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('LJORGEN2', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999536', sysdate, null);
-- Inserting RoleToUserAssignment 'LJORGEN2/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('LJORGEN2', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LJORGEN2/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('LJORGEN2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11537/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LJORGEN2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[103/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'LJORGEN2/H_TPP_P2P_OFFERAUTH'
harmony.usermgt.create_role_to_user_assignment('LJORGEN2', 'H_TPP_P2P_OFFERAUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LJORGEN2/H_TPP_P2P_OFFERAUTH
harmony.usermgt.create_dds_item_assignment('LJORGEN2', 'H_TPP_P2P_OFFERAUTH', 'TPP AP2PLE OC', 'ONE', '188', sysdate, null);
-- Inserting RoleToUserAssignment 'LJORGEN2/H_TPP_P2P_OFFERMGT'
harmony.usermgt.create_role_to_user_assignment('LJORGEN2', 'H_TPP_P2P_OFFERMGT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LJORGEN2/H_TPP_P2P_OFFERMGT
harmony.usermgt.create_dds_item_assignment('LJORGEN2', 'H_TPP_P2P_OFFERMGT', 'TPP AP2PLE OC', 'ONE', '188', sysdate, null);
-- Inserting RoleToUserAssignment 'LKUBIZN/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('LKUBIZN', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LKUBIZN/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('LKUBIZN', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[397/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LKUBIZN', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[217/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LKUBIZN', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11629/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LKUBIZN', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[109/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LKUBIZN', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[106/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LKUBIZN', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[105/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'LLIM6/H_EFS2_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('LLIM6', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LLIM6/H_EFS2_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('LLIM6', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '369', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LLIM6', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '367', sysdate, null);
-- Inserting RoleToUserAssignment 'LLIM6/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('LLIM6', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LLIM6/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('LLIM6', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[422/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LLIM6', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[164/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'LLOHR/H_EFS2_LOC_REP_PARTY'
harmony.usermgt.create_role_to_user_assignment('LLOHR', 'H_EFS2_LOC_REP_PARTY', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LLOHR/H_EFS2_LOC_REP_PARTY
harmony.usermgt.create_dds_item_assignment('LLOHR', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '648', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LLOHR', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '646', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LLOHR', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '468', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LLOHR', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '396', sysdate, null);
-- Inserting RoleToUserAssignment 'LLOHR/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('LLOHR', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LLOHR/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('LLOHR', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[266/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LLOHR', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11710/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'LLOW/H_EFS2_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('LLOW', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LLOW/H_EFS2_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('LLOW', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '640', sysdate, null);
-- Inserting RoleToUserAssignment 'LLUYTEN/HERMES_GRP_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('LLUYTEN', 'HERMES_GRP_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LLUYTEN/HERMES_GRP_REP_CTR
harmony.usermgt.create_dds_item_assignment('LLUYTEN', 'HERMES_GRP_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LLUYTEN/HERMES_STAT_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('LLUYTEN', 'HERMES_STAT_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LLUYTEN/HERMES_STAT_REP_CTR
harmony.usermgt.create_dds_item_assignment('LLUYTEN', 'HERMES_STAT_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LLUYTEN/HERMES_STS_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('LLUYTEN', 'HERMES_STS_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LLUYTEN/HERMES_STS_REP_CTR
harmony.usermgt.create_dds_item_assignment('LLUYTEN', 'HERMES_STS_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LLUYTEN/HERMES_SYM_REC_CTR'
harmony.usermgt.create_role_to_user_assignment('LLUYTEN', 'HERMES_SYM_REC_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LLUYTEN/HERMES_SYM_REC_CTR
harmony.usermgt.create_dds_item_assignment('LLUYTEN', 'HERMES_SYM_REC_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LLUYTEN/HERMES_TXN_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('LLUYTEN', 'HERMES_TXN_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LLUYTEN/HERMES_TXN_REP_CTR
harmony.usermgt.create_dds_item_assignment('LLUYTEN', 'HERMES_TXN_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LLUYTEN/HERMES_VAVO_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('LLUYTEN', 'HERMES_VAVO_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LLUYTEN/HERMES_VAVO_REP_CTR
harmony.usermgt.create_dds_item_assignment('LLUYTEN', 'HERMES_VAVO_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LLUYTEN/H_EFS2_LOC_REP_PARTY'
harmony.usermgt.create_role_to_user_assignment('LLUYTEN', 'H_EFS2_LOC_REP_PARTY', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LLUYTEN/H_EFS2_LOC_REP_PARTY
harmony.usermgt.create_dds_item_assignment('LLUYTEN', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '708', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LLUYTEN', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '673', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LLUYTEN', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '671', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LLUYTEN', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '543', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LLUYTEN', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '534', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LLUYTEN', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '480', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LLUYTEN', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '445', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LLUYTEN', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '400', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LLUYTEN', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '399', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LLUYTEN', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '398', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LLUYTEN', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '397', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LLUYTEN', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '314', sysdate, null);
-- Inserting RoleToUserAssignment 'LLUYTEN/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('LLUYTEN', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LLUYTEN/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('LLUYTEN', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LLUYTEN/H_NETTING_LOC_REP_TC'
harmony.usermgt.create_role_to_user_assignment('LLUYTEN', 'H_NETTING_LOC_REP_TC', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LLUYTEN/H_NETTING_LOC_REP_TC
harmony.usermgt.create_dds_item_assignment('LLUYTEN', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LLUYTEN/H_TPP_CTR_REP'
harmony.usermgt.create_role_to_user_assignment('LLUYTEN', 'H_TPP_CTR_REP', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'LLUYTEN/H_TPP_P2P_REPORT'
harmony.usermgt.create_role_to_user_assignment('LLUYTEN', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LLUYTEN/H_TPP_P2P_REPORT
harmony.usermgt.create_dds_item_assignment('LLUYTEN', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '82', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LLUYTEN', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '81', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LLUYTEN', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '258', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LLUYTEN', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '257', sysdate, null);
-- Inserting RoleToUserAssignment 'LMANGUBA/H_TPP_LOC_REP'
harmony.usermgt.create_role_to_user_assignment('LMANGUBA', 'H_TPP_LOC_REP', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LMANGUBA/H_TPP_LOC_REP
harmony.usermgt.create_dds_item_assignment('LMANGUBA', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '71', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LMANGUBA', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '14', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LMANGUBA', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '13', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LMANGUBA', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '12', sysdate, null);
-- Inserting RoleToUserAssignment 'LMARTIRE/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('LMARTIRE', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LMARTIRE/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('LMARTIRE', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999872', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LMARTIRE', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998926', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LMARTIRE', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '100057', sysdate, null);
-- Inserting RoleToUserAssignment 'LMARTIRE/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('LMARTIRE', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LMARTIRE/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('LMARTIRE', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999872', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LMARTIRE', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998926', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LMARTIRE', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '100057', sysdate, null);
-- Inserting RoleToUserAssignment 'LMARTIRE/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('LMARTIRE', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LMARTIRE/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('LMARTIRE', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[147/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'LMCCART4/H_EFS2_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('LMCCART4', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LMCCART4/H_EFS2_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('LMCCART4', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '313', sysdate, null);
-- Inserting RoleToUserAssignment 'LMCGREGO/H_EFS2_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('LMCGREGO', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LMCGREGO/H_EFS2_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('LMCGREGO', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '320', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LMCGREGO', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '277', sysdate, null);
-- Inserting RoleToUserAssignment 'LMCNEIL/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('LMCNEIL', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LMCNEIL/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('LMCNEIL', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999776', sysdate, null);
-- Inserting RoleToUserAssignment 'LMCNEIL/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('LMCNEIL', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LMCNEIL/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('LMCNEIL', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999776', sysdate, null);
-- Inserting RoleToUserAssignment 'LMCNEIL/H_EFS2_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('LMCNEIL', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LMCNEIL/H_EFS2_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('LMCNEIL', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '393', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LMCNEIL', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '329', sysdate, null);
-- Inserting RoleToUserAssignment 'LMELEGOV/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('LMELEGOV', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LMELEGOV/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('LMELEGOV', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999412', sysdate, null);
-- Inserting RoleToUserAssignment 'LMELEGOV/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('LMELEGOV', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LMELEGOV/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('LMELEGOV', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999412', sysdate, null);
-- Inserting RoleToUserAssignment 'LMELEGOV/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('LMELEGOV', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LMELEGOV/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('LMELEGOV', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[38/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LMELEGOV', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[237/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LMELEGOV', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[215/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LMELEGOV', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[117/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LMELEGOV', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[114/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LMELEGOV', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[112/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'LMELEGOV/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('LMELEGOV', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LMELEGOV/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('LMELEGOV', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[438/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LMELEGOV', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[38/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LMELEGOV', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[215/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LMELEGOV', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[190/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LMELEGOV', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[117/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LMELEGOV', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[114/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LMELEGOV', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[112/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'LMELEGOV/H_TPP_P2P_REPORT'
harmony.usermgt.create_role_to_user_assignment('LMELEGOV', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LMELEGOV/H_TPP_P2P_REPORT
harmony.usermgt.create_dds_item_assignment('LMELEGOV', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '365', sysdate, null);
-- Inserting RoleToUserAssignment 'LMOTAIS/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('LMOTAIS', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LMOTAIS/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('LMOTAIS', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11385/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'LMOTAIS/H_TPP_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('LMOTAIS', 'H_TPP_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LMOTAIS/H_TPP_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('LMOTAIS', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '73', sysdate, null);
-- Inserting RoleToUserAssignment 'LNGO/BAM_REPORTER'
harmony.usermgt.create_role_to_user_assignment('LNGO', 'BAM_REPORTER', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LNGO/BAM_REPORTER
harmony.usermgt.create_dds_item_assignment('LNGO', 'BAM_REPORTER', 'BAM Region', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LNGO/HERMES_CMEFF_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('LNGO', 'HERMES_CMEFF_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LNGO/HERMES_CMEFF_REP_CTR
harmony.usermgt.create_dds_item_assignment('LNGO', 'HERMES_CMEFF_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LNGO/HERMES_GRP_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('LNGO', 'HERMES_GRP_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LNGO/HERMES_GRP_REP_CTR
harmony.usermgt.create_dds_item_assignment('LNGO', 'HERMES_GRP_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LNGO/HERMES_IDTXN_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('LNGO', 'HERMES_IDTXN_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LNGO/HERMES_IDTXN_REP_CTR
harmony.usermgt.create_dds_item_assignment('LNGO', 'HERMES_IDTXN_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LNGO/HERMES_STAT_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('LNGO', 'HERMES_STAT_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LNGO/HERMES_STAT_REP_CTR
harmony.usermgt.create_dds_item_assignment('LNGO', 'HERMES_STAT_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LNGO/HERMES_STS_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('LNGO', 'HERMES_STS_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LNGO/HERMES_STS_REP_CTR
harmony.usermgt.create_dds_item_assignment('LNGO', 'HERMES_STS_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LNGO/HERMES_SYM_REC_CTR'
harmony.usermgt.create_role_to_user_assignment('LNGO', 'HERMES_SYM_REC_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LNGO/HERMES_SYM_REC_CTR
harmony.usermgt.create_dds_item_assignment('LNGO', 'HERMES_SYM_REC_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LNGO/HERMES_TXN_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('LNGO', 'HERMES_TXN_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LNGO/HERMES_TXN_REP_CTR
harmony.usermgt.create_dds_item_assignment('LNGO', 'HERMES_TXN_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LNGO/HERMES_VAVO_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('LNGO', 'HERMES_VAVO_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LNGO/HERMES_VAVO_REP_CTR
harmony.usermgt.create_dds_item_assignment('LNGO', 'HERMES_VAVO_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LNGO/H_EFS2_CTR_REP'
harmony.usermgt.create_role_to_user_assignment('LNGO', 'H_EFS2_CTR_REP', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'LNGO/H_EFS2_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('LNGO', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LNGO/H_EFS2_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('LNGO', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '657', sysdate, null);
-- Inserting RoleToUserAssignment 'LNGO/H_NETTING_CTR_REP'
harmony.usermgt.create_role_to_user_assignment('LNGO', 'H_NETTING_CTR_REP', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'LNGO/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('LNGO', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LNGO/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('LNGO', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LNGO/H_NETTING_LOC_REP_TC'
harmony.usermgt.create_role_to_user_assignment('LNGO', 'H_NETTING_LOC_REP_TC', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LNGO/H_NETTING_LOC_REP_TC
harmony.usermgt.create_dds_item_assignment('LNGO', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LNGO/H_P2P_RTSC_ASPAC_MGR'
harmony.usermgt.create_role_to_user_assignment('LNGO', 'H_P2P_RTSC_ASPAC_MGR', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'LNGO/H_SWIFTCOM_RELEASER'
harmony.usermgt.create_role_to_user_assignment('LNGO', 'H_SWIFTCOM_RELEASER', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LNGO/H_SWIFTCOM_RELEASER
harmony.usermgt.create_dds_item_assignment('LNGO', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '18', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LNGO', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '17', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LNGO', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '16', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LNGO', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '14', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LNGO', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '13', sysdate, null);
-- Inserting RoleToUserAssignment 'LNGO/H_SWIFTCOM_REPORTER'
harmony.usermgt.create_role_to_user_assignment('LNGO', 'H_SWIFTCOM_REPORTER', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LNGO/H_SWIFTCOM_REPORTER
harmony.usermgt.create_dds_item_assignment('LNGO', 'H_SWIFTCOM_REPORTER', 'SWIFTCOM FM Source', 'ONE', '7', sysdate, null);
-- Inserting RoleToUserAssignment 'LNGO/H_TOPS_CNTRP_EXP_REP'
harmony.usermgt.create_role_to_user_assignment('LNGO', 'H_TOPS_CNTRP_EXP_REP', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'LNGO/H_TPP_CTR_REP'
harmony.usermgt.create_role_to_user_assignment('LNGO', 'H_TPP_CTR_REP', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'LOCHOTE2/H_EFS2_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('LOCHOTE2', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LOCHOTE2/H_EFS2_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('LOCHOTE2', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '439', sysdate, null);
-- Inserting RoleToUserAssignment 'LOLBRECH/BAM_MANAGER'
harmony.usermgt.create_role_to_user_assignment('LOLBRECH', 'BAM_MANAGER', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LOLBRECH/BAM_MANAGER
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'BAM_MANAGER', 'BAM Region', 'ONE', '2', sysdate, null);
-- Inserting RoleToUserAssignment 'LOLBRECH/BAM_REPORTER'
harmony.usermgt.create_role_to_user_assignment('LOLBRECH', 'BAM_REPORTER', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LOLBRECH/BAM_REPORTER
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'BAM_REPORTER', 'BAM Region', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LOLBRECH/HERMES_CMEFF_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('LOLBRECH', 'HERMES_CMEFF_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LOLBRECH/HERMES_CMEFF_REP_CTR
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'HERMES_CMEFF_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LOLBRECH/HERMES_GRP_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('LOLBRECH', 'HERMES_GRP_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LOLBRECH/HERMES_GRP_REP_CTR
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'HERMES_GRP_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LOLBRECH/HERMES_IDTXN_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('LOLBRECH', 'HERMES_IDTXN_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LOLBRECH/HERMES_IDTXN_REP_CTR
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'HERMES_IDTXN_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LOLBRECH/HERMES_STAT_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('LOLBRECH', 'HERMES_STAT_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LOLBRECH/HERMES_STAT_REP_CTR
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'HERMES_STAT_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LOLBRECH/HERMES_STS_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('LOLBRECH', 'HERMES_STS_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LOLBRECH/HERMES_STS_REP_CTR
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'HERMES_STS_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LOLBRECH/HERMES_SYM_REC_CTR'
harmony.usermgt.create_role_to_user_assignment('LOLBRECH', 'HERMES_SYM_REC_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LOLBRECH/HERMES_SYM_REC_CTR
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'HERMES_SYM_REC_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LOLBRECH/HERMES_TXN_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('LOLBRECH', 'HERMES_TXN_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LOLBRECH/HERMES_TXN_REP_CTR
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'HERMES_TXN_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LOLBRECH/HERMES_VAVO_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('LOLBRECH', 'HERMES_VAVO_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LOLBRECH/HERMES_VAVO_REP_CTR
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'HERMES_VAVO_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LOLBRECH/H_EFS2_CTR_REP'
harmony.usermgt.create_role_to_user_assignment('LOLBRECH', 'H_EFS2_CTR_REP', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'LOLBRECH/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LOLBRECH/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[94/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[93/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[91/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[89/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[88/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[58/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[47/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[439/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[438/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[434/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[411/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[397/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[38/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[348/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[344/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[342/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[288/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[286/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[281/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[276/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[268/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[267/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[266/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[264/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[263/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[254/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[253/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[246/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[244/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[238/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[237/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[232/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[229/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[225/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[219/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[218/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[217/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[215/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[208/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[207/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[190/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[179/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[178/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[177/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[176/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[175/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[174/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[173/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[172/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[171/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[170/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[169/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[168/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[161/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[160/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[159/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[156/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[155/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[154/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[153/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[147/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[146/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[144/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[141/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[140/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[131/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[130/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[129/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[127/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11991/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11983/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11981/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11973/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11930/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11927/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11924/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11919/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11918/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11917/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11881/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11865/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11862/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11436/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11417/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[114/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11385/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11362/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11358/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11357/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11349/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11342/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11334/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11327/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11319/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11272/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11260/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11237/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11235/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11234/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11233/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11232/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11230/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11218/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11217/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11216/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11212/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11080/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11072/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11070/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11061/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11015/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[109/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[108/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[107/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[106/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[105/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[104/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[103/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[102/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11091/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[111/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11106/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11130/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11147/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11148/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11153/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11178/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11184/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11194/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11195/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[112/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11495/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[115/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11536/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11537/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11543/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11562/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11566/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11575/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11580/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11582/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[116/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11627/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11628/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11629/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11635/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11637/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11654/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11655/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11661/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11670/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11695/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11697/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11699/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[117/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11710/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11713/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11737/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11753/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11755/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11756/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11761/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11764/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11767/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11769/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11771/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11780/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11783/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11785/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11805/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11818/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11820/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11825/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11841/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11842/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11843/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11844/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11846/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11847/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'LOLBRECH/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('LOLBRECH', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LOLBRECH/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[49/CC]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11356/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11687/CC]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11688/CC]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11689/CC]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11741/CC]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11743/CC]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11744/CC]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11745/CC]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11790/CC]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11831/CC]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11978/CC]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11985/CC]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[142/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'LOLBRECH/H_NETTING_LOC_REP_TC'
harmony.usermgt.create_role_to_user_assignment('LOLBRECH', 'H_NETTING_LOC_REP_TC', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LOLBRECH/H_NETTING_LOC_REP_TC
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[7/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[233/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[11486/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[11120/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'LOLBRECH/H_SWIFTCOM_REPORTER'
harmony.usermgt.create_role_to_user_assignment('LOLBRECH', 'H_SWIFTCOM_REPORTER', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LOLBRECH/H_SWIFTCOM_REPORTER
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_SWIFTCOM_REPORTER', 'SWIFTCOM FM Source', 'ONE', '14', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOLBRECH', 'H_SWIFTCOM_REPORTER', 'SWIFTCOM FM Source', 'ONE', '13', sysdate, null);
-- Inserting RoleToUserAssignment 'LOLBRECH/H_TPP_CTR_REP'
harmony.usermgt.create_role_to_user_assignment('LOLBRECH', 'H_TPP_CTR_REP', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'LOUAMBO/H_EFS2_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('LOUAMBO', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LOUAMBO/H_EFS2_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('LOUAMBO', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '481', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOUAMBO', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '461', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LOUAMBO', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '305', sysdate, null);
-- Inserting RoleToUserAssignment 'LPALUSZC/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('LPALUSZC', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LPALUSZC/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('LPALUSZC', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999518', sysdate, null);
-- Inserting RoleToUserAssignment 'LPALUSZC/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('LPALUSZC', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LPALUSZC/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('LPALUSZC', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999518', sysdate, null);
-- Inserting RoleToUserAssignment 'LPALUSZC/H_EFS2_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('LPALUSZC', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LPALUSZC/H_EFS2_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('LPALUSZC', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '365', sysdate, null);
-- Inserting RoleToUserAssignment 'LPALUSZC/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('LPALUSZC', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LPALUSZC/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('LPALUSZC', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[107/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'LPALUSZC/H_TPP_LOC_REP'
harmony.usermgt.create_role_to_user_assignment('LPALUSZC', 'H_TPP_LOC_REP', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LPALUSZC/H_TPP_LOC_REP
harmony.usermgt.create_dds_item_assignment('LPALUSZC', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '25', sysdate, null);
-- Inserting RoleToUserAssignment 'LPALUSZC/H_TPP_P2P_REPORT'
harmony.usermgt.create_role_to_user_assignment('LPALUSZC', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LPALUSZC/H_TPP_P2P_REPORT
harmony.usermgt.create_dds_item_assignment('LPALUSZC', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '118', sysdate, null);
-- Inserting RoleToUserAssignment 'LPHAMTHI/H_EFS2_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('LPHAMTHI', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LPHAMTHI/H_EFS2_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('LPHAMTHI', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '674', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LPHAMTHI', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '652', sysdate, null);
-- Inserting RoleToUserAssignment 'LPOVES/H_EFS2_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('LPOVES', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LPOVES/H_EFS2_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('LPOVES', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '621', sysdate, null);
-- Inserting RoleToUserAssignment 'LPOVES/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('LPOVES', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LPOVES/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('LPOVES', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11637/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'LREN2/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('LREN2', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LREN2/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('LREN2', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999869', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LREN2', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999708', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LREN2', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999707', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LREN2', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999706', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LREN2', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999705', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LREN2', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999089', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LREN2', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998960', sysdate, null);
-- Inserting RoleToUserAssignment 'LREN2/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('LREN2', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LREN2/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('LREN2', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999869', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LREN2', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999708', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LREN2', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999707', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LREN2', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999706', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LREN2', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999705', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LREN2', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999089', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LREN2', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998960', sysdate, null);
-- Inserting RoleToUserAssignment 'LREN2/H_TPP_LOC_REP'
harmony.usermgt.create_role_to_user_assignment('LREN2', 'H_TPP_LOC_REP', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LREN2/H_TPP_LOC_REP
harmony.usermgt.create_dds_item_assignment('LREN2', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '49', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LREN2', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '48', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LREN2', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '32', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LREN2', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '31', sysdate, null);
-- Inserting RoleToUserAssignment 'LSAMEACH/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('LSAMEACH', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LSAMEACH/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('LSAMEACH', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11556/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'LSILVA11/H_EFS2_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('LSILVA11', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LSILVA11/H_EFS2_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('LSILVA11', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '480', sysdate, null);
-- Inserting RoleToUserAssignment 'LSOZA01/H_TPP_LOC_REP'
harmony.usermgt.create_role_to_user_assignment('LSOZA01', 'H_TPP_LOC_REP', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LSOZA01/H_TPP_LOC_REP
harmony.usermgt.create_dds_item_assignment('LSOZA01', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '29', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LSOZA01', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '233', sysdate, null);
-- Inserting RoleToUserAssignment 'LSOZA01/H_TPP_P2P_REPORT'
harmony.usermgt.create_role_to_user_assignment('LSOZA01', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LSOZA01/H_TPP_P2P_REPORT
harmony.usermgt.create_dds_item_assignment('LSOZA01', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '329', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LSOZA01', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '328', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LSOZA01', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '302', sysdate, null);
-- Inserting RoleToUserAssignment 'LSRAMEKO/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('LSRAMEKO', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LSRAMEKO/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('LSRAMEKO', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999884', sysdate, null);
-- Inserting RoleToUserAssignment 'LSRAMEKO/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('LSRAMEKO', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LSRAMEKO/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('LSRAMEKO', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999884', sysdate, null);
-- Inserting RoleToUserAssignment 'LSURPATE/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('LSURPATE', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LSURPATE/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('LSURPATE', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11310/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'LTAN4/BAM_REPORTER'
harmony.usermgt.create_role_to_user_assignment('LTAN4', 'BAM_REPORTER', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LTAN4/BAM_REPORTER
harmony.usermgt.create_dds_item_assignment('LTAN4', 'BAM_REPORTER', 'BAM Region', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LTAN4/HERMES_CMEFF_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('LTAN4', 'HERMES_CMEFF_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LTAN4/HERMES_CMEFF_REP_CTR
harmony.usermgt.create_dds_item_assignment('LTAN4', 'HERMES_CMEFF_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LTAN4/HERMES_GRP_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('LTAN4', 'HERMES_GRP_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LTAN4/HERMES_GRP_REP_CTR
harmony.usermgt.create_dds_item_assignment('LTAN4', 'HERMES_GRP_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LTAN4/HERMES_IDTXN_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('LTAN4', 'HERMES_IDTXN_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LTAN4/HERMES_IDTXN_REP_CTR
harmony.usermgt.create_dds_item_assignment('LTAN4', 'HERMES_IDTXN_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LTAN4/HERMES_STAT_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('LTAN4', 'HERMES_STAT_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LTAN4/HERMES_STAT_REP_CTR
harmony.usermgt.create_dds_item_assignment('LTAN4', 'HERMES_STAT_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LTAN4/HERMES_STS_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('LTAN4', 'HERMES_STS_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LTAN4/HERMES_STS_REP_CTR
harmony.usermgt.create_dds_item_assignment('LTAN4', 'HERMES_STS_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LTAN4/HERMES_SYM_REC_CTR'
harmony.usermgt.create_role_to_user_assignment('LTAN4', 'HERMES_SYM_REC_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LTAN4/HERMES_SYM_REC_CTR
harmony.usermgt.create_dds_item_assignment('LTAN4', 'HERMES_SYM_REC_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LTAN4/HERMES_TXN_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('LTAN4', 'HERMES_TXN_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LTAN4/HERMES_TXN_REP_CTR
harmony.usermgt.create_dds_item_assignment('LTAN4', 'HERMES_TXN_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LTAN4/HERMES_VAVO_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('LTAN4', 'HERMES_VAVO_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LTAN4/HERMES_VAVO_REP_CTR
harmony.usermgt.create_dds_item_assignment('LTAN4', 'HERMES_VAVO_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LTAN4/H_EFS2_CTR_REP'
harmony.usermgt.create_role_to_user_assignment('LTAN4', 'H_EFS2_CTR_REP', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'LTAN4/H_EFS2_LOC_REP_PARTY'
harmony.usermgt.create_role_to_user_assignment('LTAN4', 'H_EFS2_LOC_REP_PARTY', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LTAN4/H_EFS2_LOC_REP_PARTY
harmony.usermgt.create_dds_item_assignment('LTAN4', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '657', sysdate, null);
-- Inserting RoleToUserAssignment 'LTAN4/H_NETTING_CTR_REP'
harmony.usermgt.create_role_to_user_assignment('LTAN4', 'H_NETTING_CTR_REP', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'LTAN4/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('LTAN4', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LTAN4/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('LTAN4', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LTAN4/H_NETTING_LOC_REP_TC'
harmony.usermgt.create_role_to_user_assignment('LTAN4', 'H_NETTING_LOC_REP_TC', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LTAN4/H_NETTING_LOC_REP_TC
harmony.usermgt.create_dds_item_assignment('LTAN4', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LTAN4/H_P2P_RTSC_ASPAC_MGR'
harmony.usermgt.create_role_to_user_assignment('LTAN4', 'H_P2P_RTSC_ASPAC_MGR', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'LTAN4/H_SWIFTCOM_RELEASER'
harmony.usermgt.create_role_to_user_assignment('LTAN4', 'H_SWIFTCOM_RELEASER', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LTAN4/H_SWIFTCOM_RELEASER
harmony.usermgt.create_dds_item_assignment('LTAN4', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '18', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LTAN4', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '17', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LTAN4', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '16', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LTAN4', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '14', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LTAN4', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '13', sysdate, null);
-- Inserting RoleToUserAssignment 'LTAN4/H_SWIFTCOM_REPORTER'
harmony.usermgt.create_role_to_user_assignment('LTAN4', 'H_SWIFTCOM_REPORTER', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LTAN4/H_SWIFTCOM_REPORTER
harmony.usermgt.create_dds_item_assignment('LTAN4', 'H_SWIFTCOM_REPORTER', 'SWIFTCOM FM Source', 'ONE', '7', sysdate, null);
-- Inserting RoleToUserAssignment 'LTAN4/H_TOPS_CNTRP_EXP_REP'
harmony.usermgt.create_role_to_user_assignment('LTAN4', 'H_TOPS_CNTRP_EXP_REP', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'LTAN4/H_TPP_CTR_REP'
harmony.usermgt.create_role_to_user_assignment('LTAN4', 'H_TPP_CTR_REP', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'LTEIXEIRA/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('LTEIXEIRA', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LTEIXEIRA/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('LTEIXEIRA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999662', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LTEIXEIRA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998979', sysdate, null);
-- Inserting RoleToUserAssignment 'LTEIXEIRA/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('LTEIXEIRA', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LTEIXEIRA/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('LTEIXEIRA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999662', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LTEIXEIRA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998979', sysdate, null);
-- Inserting RoleToUserAssignment 'LTEIXEIRA/H_EFS2_LOC_REP_PARTY'
harmony.usermgt.create_role_to_user_assignment('LTEIXEIRA', 'H_EFS2_LOC_REP_PARTY', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LTEIXEIRA/H_EFS2_LOC_REP_PARTY
harmony.usermgt.create_dds_item_assignment('LTEIXEIRA', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '400', sysdate, null);
-- Inserting RoleToUserAssignment 'LTEIXEIRA/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('LTEIXEIRA', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LTEIXEIRA/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('LTEIXEIRA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11637/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'LTOCA/H_EFS2_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('LTOCA', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LTOCA/H_EFS2_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('LTOCA', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '458', sysdate, null);
-- Inserting RoleToUserAssignment 'LTOTH/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('LTOTH', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LTOTH/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('LTOTH', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999879', sysdate, null);
-- Inserting RoleToUserAssignment 'LTOTH/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('LTOTH', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LTOTH/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('LTOTH', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999879', sysdate, null);
-- Inserting RoleToUserAssignment 'LTOTH/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('LTOTH', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LTOTH/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('LTOTH', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11072/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'LTOTINO/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('LTOTINO', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LTOTINO/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('LTOTINO', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11891/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LTOTINO', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11889/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'LTRAVERS/HERMES_CMEFF_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('LTRAVERS', 'HERMES_CMEFF_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LTRAVERS/HERMES_CMEFF_REP_CTR
harmony.usermgt.create_dds_item_assignment('LTRAVERS', 'HERMES_CMEFF_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LTRAVERS/HERMES_GRP_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('LTRAVERS', 'HERMES_GRP_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LTRAVERS/HERMES_GRP_REP_CTR
harmony.usermgt.create_dds_item_assignment('LTRAVERS', 'HERMES_GRP_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LTRAVERS/HERMES_STAT_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('LTRAVERS', 'HERMES_STAT_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LTRAVERS/HERMES_STAT_REP_CTR
harmony.usermgt.create_dds_item_assignment('LTRAVERS', 'HERMES_STAT_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LTRAVERS/HERMES_STS_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('LTRAVERS', 'HERMES_STS_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LTRAVERS/HERMES_STS_REP_CTR
harmony.usermgt.create_dds_item_assignment('LTRAVERS', 'HERMES_STS_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LTRAVERS/HERMES_SYM_REC_CTR'
harmony.usermgt.create_role_to_user_assignment('LTRAVERS', 'HERMES_SYM_REC_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LTRAVERS/HERMES_SYM_REC_CTR
harmony.usermgt.create_dds_item_assignment('LTRAVERS', 'HERMES_SYM_REC_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LTRAVERS/HERMES_TXN_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('LTRAVERS', 'HERMES_TXN_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LTRAVERS/HERMES_TXN_REP_CTR
harmony.usermgt.create_dds_item_assignment('LTRAVERS', 'HERMES_TXN_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LTRAVERS/HERMES_VAVO_REP_CTR'
harmony.usermgt.create_role_to_user_assignment('LTRAVERS', 'HERMES_VAVO_REP_CTR', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LTRAVERS/HERMES_VAVO_REP_CTR
harmony.usermgt.create_dds_item_assignment('LTRAVERS', 'HERMES_VAVO_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LTRAVERS/H_EFS2_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('LTRAVERS', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LTRAVERS/H_EFS2_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('LTRAVERS', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '543', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LTRAVERS', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '534', sysdate, null);
-- Inserting RoleToUserAssignment 'LTRAVERS/H_EFS2_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('LTRAVERS', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LTRAVERS/H_EFS2_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('LTRAVERS', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '543', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LTRAVERS', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '534', sysdate, null);
-- Inserting RoleToUserAssignment 'LTRAVERS/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('LTRAVERS', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LTRAVERS/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('LTRAVERS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11870/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LTRAVERS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11868/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'LTRAVERS/H_NETTING_LOC_INP_TC'
harmony.usermgt.create_role_to_user_assignment('LTRAVERS', 'H_NETTING_LOC_INP_TC', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LTRAVERS/H_NETTING_LOC_INP_TC
harmony.usermgt.create_dds_item_assignment('LTRAVERS', 'H_NETTING_LOC_INP_TC', 'Treasury Center Netting Participant', 'ONE', '[7/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LTRAVERS', 'H_NETTING_LOC_INP_TC', 'Treasury Center Netting Participant', 'ONE', '[11486/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LTRAVERS', 'H_NETTING_LOC_INP_TC', 'Treasury Center Netting Participant', 'ONE', '[11120/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'LTRAVERS/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('LTRAVERS', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LTRAVERS/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('LTRAVERS', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[142/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'LTRAVERS/H_NETTING_LOC_REP_TC'
harmony.usermgt.create_role_to_user_assignment('LTRAVERS', 'H_NETTING_LOC_REP_TC', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LTRAVERS/H_NETTING_LOC_REP_TC
harmony.usermgt.create_dds_item_assignment('LTRAVERS', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[233/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'LTRAVERS/H_SWIFTCOM_REPORTER'
harmony.usermgt.create_role_to_user_assignment('LTRAVERS', 'H_SWIFTCOM_REPORTER', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LTRAVERS/H_SWIFTCOM_REPORTER
harmony.usermgt.create_dds_item_assignment('LTRAVERS', 'H_SWIFTCOM_REPORTER', 'SWIFTCOM FM Source', 'ONE', '14', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LTRAVERS', 'H_SWIFTCOM_REPORTER', 'SWIFTCOM FM Source', 'ONE', '13', sysdate, null);
-- Inserting RoleToUserAssignment 'LTRAVERS/H_TOPS_FO_USER'
harmony.usermgt.create_role_to_user_assignment('LTRAVERS', 'H_TOPS_FO_USER', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'LTWOMEY/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('LTWOMEY', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LTWOMEY/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('LTWOMEY', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[141/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'LTWOMEY/H_TPP_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('LTWOMEY', 'H_TPP_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LTWOMEY/H_TPP_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('LTWOMEY', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '315', sysdate, null);
-- Inserting RoleToUserAssignment 'LVARGAS3/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('LVARGAS3', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LVARGAS3/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('LVARGAS3', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11211/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'LVARGAS3/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('LVARGAS3', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LVARGAS3/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('LVARGAS3', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11211/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'LVASQUE5/H_EFS2_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('LVASQUE5', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LVASQUE5/H_EFS2_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('LVASQUE5', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '554', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LVASQUE5', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '527', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LVASQUE5', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '406', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LVASQUE5', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '402', sysdate, null);
-- Inserting RoleToUserAssignment 'LVASQUE5/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('LVASQUE5', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LVASQUE5/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('LVASQUE5', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11364/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LVASQUE5', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11336/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'LVERCSE/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('LVERCSE', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LVERCSE/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('LVERCSE', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999175', sysdate, null);
-- Inserting RoleToUserAssignment 'LVERCSE/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('LVERCSE', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LVERCSE/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('LVERCSE', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999175', sysdate, null);
-- Inserting RoleToUserAssignment 'LVGINCK2/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('LVGINCK2', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LVGINCK2/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('LVGINCK2', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999864', sysdate, null);
-- Inserting RoleToUserAssignment 'LVGINCK2/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('LVGINCK2', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LVGINCK2/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('LVGINCK2', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999864', sysdate, null);
-- Inserting RoleToUserAssignment 'LVICENTE/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('LVICENTE', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LVICENTE/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('LVICENTE', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999745', sysdate, null);
-- Inserting RoleToUserAssignment 'LVICENTE/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('LVICENTE', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LVICENTE/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('LVICENTE', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999745', sysdate, null);
-- Inserting RoleToUserAssignment 'LVICENTE/H_EFS2_LOC_REP_PARTY'
harmony.usermgt.create_role_to_user_assignment('LVICENTE', 'H_EFS2_LOC_REP_PARTY', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LVICENTE/H_EFS2_LOC_REP_PARTY
harmony.usermgt.create_dds_item_assignment('LVICENTE', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '427', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LVICENTE', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '426', sysdate, null);
-- Inserting RoleToUserAssignment 'LVICENTE/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('LVICENTE', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LVICENTE/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('LVICENTE', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[439/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LVICENTE', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11699/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LVICENTE', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11697/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'LVIDAL/BAM_REPORTER'
harmony.usermgt.create_role_to_user_assignment('LVIDAL', 'BAM_REPORTER', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LVIDAL/BAM_REPORTER
harmony.usermgt.create_dds_item_assignment('LVIDAL', 'BAM_REPORTER', 'BAM Region', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LVIDAL/HB_FM_COMBI_VIEW'
harmony.usermgt.create_role_to_user_assignment('LVIDAL', 'HB_FM_COMBI_VIEW', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'LVIDAL/HERMES_IM_SUPPORT'
harmony.usermgt.create_role_to_user_assignment('LVIDAL', 'HERMES_IM_SUPPORT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LVIDAL/HERMES_IM_SUPPORT
harmony.usermgt.create_dds_item_assignment('LVIDAL', 'HERMES_IM_SUPPORT', 'Trax Account Groups', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LVIDAL/H_CHAINS_IM_SUPPORT'
harmony.usermgt.create_role_to_user_assignment('LVIDAL', 'H_CHAINS_IM_SUPPORT', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'LVIDAL/H_DLINK_IM_SUPPORT'
harmony.usermgt.create_role_to_user_assignment('LVIDAL', 'H_DLINK_IM_SUPPORT', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'LVIDAL/H_EFS2_IM_SUPPORT'
harmony.usermgt.create_role_to_user_assignment('LVIDAL', 'H_EFS2_IM_SUPPORT', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'LVIDAL/H_GXRS_IM_SUPPORT'
harmony.usermgt.create_role_to_user_assignment('LVIDAL', 'H_GXRS_IM_SUPPORT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LVIDAL/H_GXRS_IM_SUPPORT
harmony.usermgt.create_dds_item_assignment('LVIDAL', 'H_GXRS_IM_SUPPORT', 'GXRS instructing accounts in ART', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LVIDAL/H_P2P_IM_SUPPORT'
harmony.usermgt.create_role_to_user_assignment('LVIDAL', 'H_P2P_IM_SUPPORT', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'LVIDAL/H_SWIFTCOM_IM_SUP'
harmony.usermgt.create_role_to_user_assignment('LVIDAL', 'H_SWIFTCOM_IM_SUP', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LVIDAL/H_SWIFTCOM_IM_SUP
harmony.usermgt.create_dds_item_assignment('LVIDAL', 'H_SWIFTCOM_IM_SUP', 'SWIFTCOM FM Source', 'ALL', null, sysdate, null);
-- Inserting RoleToUserAssignment 'LVIDAL/H_TOPS_IM_SUPPORT'
harmony.usermgt.create_role_to_user_assignment('LVIDAL', 'H_TOPS_IM_SUPPORT', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'LVIDAL/H_TPP_IM_SUPPORT'
harmony.usermgt.create_role_to_user_assignment('LVIDAL', 'H_TPP_IM_SUPPORT', sysdate, null, 'ACTIVE');
-- Inserting RoleToUserAssignment 'LVIETEN/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('LVIETEN', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LVIETEN/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('LVIETEN', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11881/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LVIETEN', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11780/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LVIETEN', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11707/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LVIETEN', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[115/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'LVOGEL/H_TPP_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('LVOGEL', 'H_TPP_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LVOGEL/H_TPP_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('LVOGEL', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '40', sysdate, null);
-- Inserting RoleToUserAssignment 'LWAITZMA/H_NETTING_LOC_INP_ST'
harmony.usermgt.create_role_to_user_assignment('LWAITZMA', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LWAITZMA/H_NETTING_LOC_INP_ST
harmony.usermgt.create_dds_item_assignment('LWAITZMA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11556/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'LWATKIN7/H_EFS2_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('LWATKIN7', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LWATKIN7/H_EFS2_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('LWATKIN7', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '264', sysdate, null);
-- Inserting RoleToUserAssignment 'LWATKIN7/H_TPP_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('LWATKIN7', 'H_TPP_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LWATKIN7/H_TPP_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('LWATKIN7', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '27', sysdate, null);
-- Inserting RoleToUserAssignment 'LWEBBER/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('LWEBBER', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LWEBBER/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('LWEBBER', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11667/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LWEBBER', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11647/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'LWEBBER/H_TPP_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('LWEBBER', 'H_TPP_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LWEBBER/H_TPP_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('LWEBBER', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '325', sysdate, null);
-- Inserting RoleToUserAssignment 'LWHELEHA/H_NETTING_LOC_REP_ST'
harmony.usermgt.create_role_to_user_assignment('LWHELEHA', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LWHELEHA/H_NETTING_LOC_REP_ST
harmony.usermgt.create_dds_item_assignment('LWHELEHA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[140/SNP]', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LWHELEHA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11566/SNP]', sysdate, null);
-- Inserting RoleToUserAssignment 'LWINDEY/HERMES_STAT_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('LWINDEY', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LWINDEY/HERMES_STAT_REP_LCL
harmony.usermgt.create_dds_item_assignment('LWINDEY', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999994', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LWINDEY', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999993', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LWINDEY', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999794', sysdate, null);
-- Inserting RoleToUserAssignment 'LWINDEY/HERMES_TXN_REP_LCL'
harmony.usermgt.create_role_to_user_assignment('LWINDEY', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LWINDEY/HERMES_TXN_REP_LCL
harmony.usermgt.create_dds_item_assignment('LWINDEY', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999994', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LWINDEY', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999993', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LWINDEY', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999794', sysdate, null);
-- Inserting RoleToUserAssignment 'LWINDEY/H_EFS2_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('LWINDEY', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LWINDEY/H_EFS2_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('LWINDEY', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '489', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LWINDEY', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '362', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LWINDEY', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '361', sysdate, null);
-- Inserting RoleToUserAssignment 'LWINTHE2/H_EFS2_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('LWINTHE2', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LWINTHE2/H_EFS2_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('LWINTHE2', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '617', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LWINTHE2', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '563', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LWINTHE2', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '537', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LWINTHE2', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '521', sysdate, null);
-- Inserting RoleToUserAssignment 'LYADAO/H_TPP_P2P_REPORT'
harmony.usermgt.create_role_to_user_assignment('LYADAO', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LYADAO/H_TPP_P2P_REPORT
harmony.usermgt.create_dds_item_assignment('LYADAO', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '278', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LYADAO', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '276', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LYADAO', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '273', sysdate, null);
harmony.usermgt.create_dds_item_assignment('LYADAO', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '191', sysdate, null);
-- Inserting RoleToUserAssignment 'LYONEDA/H_EFS2_LOC_AUTH'
harmony.usermgt.create_role_to_user_assignment('LYONEDA', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LYONEDA/H_EFS2_LOC_AUTH
harmony.usermgt.create_dds_item_assignment('LYONEDA', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '397', sysdate, null);
-- Inserting RoleToUserAssignment 'LZANON1/H_EFS2_LOC_EDIT'
harmony.usermgt.create_role_to_user_assignment('LZANON1', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE');
-- Insert DDSItemAssignment for LZANON1/H_EFS2_LOC_EDIT
harmony.usermgt.create_dds_item_assignment('LZANON1', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '399', sysdate, null);
commit;
exception when others then
rollback;
raise;
end;
/
|
USE shedule;
DROP TABLE istakingplace;
DROP TABLE subgroup;
DROP TABLE note;
DROP TABLE auditorium;
DROP TABLE couple;
DROP TABLE subject;
DROP TABLE student;
DROP TABLE `group`;
DROP TABLE teacher;
DROP TABLE department;
DROP TABLE faculty;
DROP TABLE user;
DROP DATABASE shedule;
|
INSERT INTO HOGE (id) VALUES (1);
INSERT INTO HOGE (id) VALUES (2);
INSERT INTO HOGE (id) VALUES (3);
|
create database blog;
create user 'blog'@'localhost' identified by 'password';
grant all privileges on * . * to 'blog'@'localhost';
drop table Comentarii;
drop table Voturi;
drop table Taguri;
drop table Articole;
drop table Utilizatori;
create table Utilizatori(
id_utilizator int auto_increment primary key,
nume varchar(20) not null,
prenume varchar(20) not null,
email varchar(30) not null unique,
parola varchar(30) not null
);
create table Articole(
id_articol int auto_increment primary key,
id_utilizator int,
draft int default 1,
titlu varchar(20) not null,
descriere varchar(50),
continut varchar(2000) not null,
vizualizari int default 0,
constraint foreign key(id_utilizator) references Utilizatori(id_utilizator) on delete cascade
);
create table Taguri(
nume varchar(20),
id_articol int,
constraint foreign key(id_articol) references Articole(id_articol) on delete cascade,
constraint primary key(nume,id_articol)
);
create table Voturi(
id_vot int auto_increment primary key,
id_articol int,
valoare int,
ip varchar(50),
constraint foreign key(id_articol) references Articole(id_articol) on delete cascade,
constraint check(valoare<=10 AND valoare>=0),
constraint unique (id_articol,ip)
);
drop table Voturi;
create table Comentarii(
id_articol int,
data_publicare timestamp default current_timestamp,
username varchar(20) not null,
continut varchar(100) not null,
aprobat int default 0,
ip varchar(40),
constraint primary key (id_articol,data_publicare),
constraint foreign key (id_articol) references Articole(id_articol) on delete cascade
);
select * from Utilizatori;
select * from Articole;
select * from Taguri;
select * from Comentarii;
select * from Voturi;
delete from Comentarii where 1=1 in (
select id_articol
from Comentarii
join Articole using(id_articol)
join Utilizatori using(id_utilizator)
where id_utilizator=1 and id_articol=1 and data_publicare='2021-05-31 13:27:51' );
delete from (select id_articol, data_publicare
from Comentarii
join Articole using(id_articol)
join Utilizatori using(id_utilizator)
where id_utilizator=1 and id_articol=1 and data_publicare='2021-05-31 13:27:51' ) com2; |
DROP DATABASE IF EXISTS california_users;
CREATE DATABASE california_users;
\c california_users;
CREATE TABLE users (
id SERIAL PRIMARY KEY,
username VARCHAR NOT NULL UNIQUE,
email VARCHAR NOT NULL UNIQUE,
phone_number VARCHAR NOT NULL UNIQUE
);
CREATE TABLE photos (
id SERIAL PRIMARY KEY,
url VARCHAR NOT NULL,
user_id INT NOT NULL REFERENCES users(id) ON DELETE CASCADE
);
CREATE TABLE comments (
id SERIAL PRIMARY KEY,
body TEXT NOT NULL,
user_id INT REFERENCES users(id) ON DELETE CASCADE,
photo_id INT REFERENCES photos(id) ON DELETE CASCADE
);
|
#
# phpOpenTracker
#
# Copyright (c) 2000-2009, Sebastian Bergmann <sb@sebastian-bergmann.de> and
# Copyright (c) 2009, Arne Blankerts <arne@blankerts.de>.
# All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions
# are met:
#
# * Redistributions of source code must retain the above copyright
# notice, this list of conditions and the following disclaimer.
#
# * Redistributions in binary form must reproduce the above copyright
# notice, this list of conditions and the following disclaimer in
# the documentation and/or other materials provided with the
# distribution.
#
# * Neither the name of Sebastian Bergmann nor the names of his
# contributors may be used to endorse or promote products derived
# from this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
# FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
# COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
# INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
# BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
# LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
# CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRIC
# LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
# ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
# POSSIBILITY OF SUCH DAMAGE.
#
DROP TABLE IF EXISTS visits;
CREATE TABLE visits (
# The ID of a visit (unique per session)
`visit_id` INTEGER UNSIGNED NOT NULL PRIMARY KEY AUTO_INCREMENT,
# The ID of a visitor (unique per visitor)
`visitor_id` INTEGER UNSIGNED NOT NULL,
`timestamp` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
`user_agent_raw` CHAR(128) NOT NULL,
`user_agent_os` CHAR(128) NOT NULL,
`user_agent_os_version` CHAR(128) NOT NULL,
`user_agent_os_vendor` CHAR(128) NOT NULL,
`user_agent_engine` CHAR(128) NOT NULL,
`user_agent_engine_version` CHAR(128) NOT NULL,
`user_agent_vendor` CHAR(128) NOT NULL,
`user_agent_vendor_version` CHAR(128) NOT NULL,
`user_agent_language` CHAR(128) NOT NULL,
`fullscreen` BOOLEAN NOT NULL,
`javascript` BOOLEAN NOT NULL,
`plugin_flash` CHAR(16),
`plugin_java` CHAR(16),
`plugin_pdf` CHAR(16),
`plugin_quicktime` CHAR(16),
`plugin_silverlight` CHAR(16),
`plugin_wmp` CHAR(16),
`resolution_width` SMALLINT UNSIGNED NOT NULL,
`resolution_height` SMALLINT UNSIGNED NOT NULL,
`resolution_avail_width` SMALLINT UNSIGNED NOT NULL,
`resolution_avail_height` SMALLINT UNSIGNED NOT NULL,
`resolution_inner_width` SMALLINT UNSIGNED NOT NULL,
`resolution_inner_height` SMALLINT UNSIGNED NOT NULL,
`resolution_depth` TINYINT UNSIGNED NOT NULL,
`accept_language` CHAR(128) NOT NULL,
`accept_charset` CHAR(128) NOT NULL,
`accept_encoding` CHAR(128) NOT NULL,
`accept_mimetype` CHAR(128) NOT NULL,
`via` CHAR(128) NOT NULL,
`x_http_forwarded_for` CHAR(128) NOT NULL
) ENGINE=MyISAM;
DROP TABLE IF EXISTS page_impressions;
CREATE TABLE page_impressions (
`page_impression` BIGINT UNSIGNED NOT NULL PRIMARY KEY AUTO_INCREMENT,
`visit_id` INTEGER UNSIGNED NOT NULL REFERENCES visits.visit_id,
`timestamp` TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP,
`url` CHAR(255) NOT NULL,
`payload` TEXT,
`referer` CHAR(255) NOT NULL,
`followup` CHAR(255) NOT NULL,
`request_method` ENUM(
'GET',
'POST',
'HEAD',
'PUT',
'DELETE',
'TRACE',
'OPTIONS',
'CONNECT',
'PROPFIND',
'PROPPATCH',
'MKCOL',
'COPY',
'MOVE',
'LOCK',
'UNLOCK'
) NOT NULL,
`remote_ip` INTEGER UNSIGNED NOT NULL,
`authorized` BOOLEAN NOT NULL
) ENGINE=MyISAM;
DROP TABLE IF EXISTS clicks;
CREATE TABLE clicks (
# The page impression this click occured on
`page_impression` BIGINT UNSIGNED NOT NULL REFERENCES page_impressions.page_impression,
`link_position_count` SMALLINT UNSIGNED NOT NULL,
`element_tag` CHAR(8) NOT NULL,
`element_id` CHAR(128) NOT NULL,
`element_href` CHAR(128) NOT NULL,
`element_rel` CHAR(128) NOT NULL,
`element_title` CHAR(128) NOT NULL,
`event_client_x` SMALLINT UNSIGNED NOT NULL,
`event_client_y` SMALLINT UNSIGNED NOT NULL,
`event_page_x` SMALLINT UNSIGNED NOT NULL,
`event_page_y` SMALLINT UNSIGNED NOT NULL,
`event_screen_x` SMALLINT UNSIGNED NOT NULL,
`event_screen_y` SMALLINT UNSIGNED NOT NULL
) ENGINE=MyISAM;
|
-- SAMPLE_ATTRIBUTE
-- select sa.* from ifx_projects. project p, ifx_projects. sample_attribute sa where p.projet_is_public = 1 and p.projet_id = sa.sampla_projet_id;
SELECT
'INSERT INTO sample_attribute ( sampla_id, sampla_projet_id, sampla_lkuvlu_attribute_id, sampla_sample_id, sampla_attribute_date, sampla_attribute_float, sampla_attribute_str, sampla_attribute_int, sampla_actor_created_by, sampla_actor_modified_by, sampla_create_date, sampla_modified_date ) VALUES ( ',
sampla_id, ",",
sampla_projet_id, ",",
sampla_lkuvlu_attribute_id, ",",
sampla_sample_id, ",",
CONCAT('\"',sampla_attribute_date,'\"') , ",",
sampla_attribute_float, ", ",
CONCAT('\"',sampla_attribute_str,'\"') , ",",
sampla_attribute_int, ", ",
sampla_actor_created_by, ",",
sampla_actor_modified_by, ",",
CONCAT('\"',sampla_create_date,'\"') , ",",
CONCAT('\"',sampla_modified_date,'\"'),
' ) ON DUPLICATE KEY UPDATE ',
'sampla_projet_id=',sampla_projet_id,
',sampla_lkuvlu_attribute_id=',sampla_lkuvlu_attribute_id, ',sampla_sample_id=',sampla_sample_id,
',sampla_attribute_date=',CONCAT('\"',sampla_attribute_date,'\"'), ',sampla_attribute_float=',sampla_attribute_float,
',sampla_attribute_str=',CONCAT('\"',sampla_attribute_str,'\"'), ',sampla_attribute_int=',sampla_attribute_int,
',sampla_actor_created_by=',sampla_actor_created_by, ',sampla_actor_modified_by=',sampla_actor_modified_by,
',sampla_create_date=',CONCAT('\"',sampla_create_date,'\"'), ',sampla_modified_date=',CONCAT('\"',sampla_modified_date,'\"'),';'
FROM ifx_projects.project p, ifx_projects.sample_attribute sa
WHERE p.projet_id = sa.sampla_projet_id
;
|
-- INSERT PSEUDO USERS DATA INTO OUR DATABASE
INSERT INTO users (
first_name, last_name, age, gender, email, password, phone, city, occupation, bio)
VALUES (
'Billy','Bob', 33, 'male', 'billybobjoe@gmail.com', '$2a$10$FB/BOAVhpuLvpOREQVmvmezD4ED/.JBIDRh70tGevYzYzQgFId2u.', '+14165550015', 'Philadelphia', 'Plumber', 'Just a dandy plumber lookin for his lady!');
INSERT INTO users (
first_name, last_name, age, gender, email, password, phone, city, occupation, bio)
VALUES (
'Shelia', 'Roberts', 31, 'female', 'shelia6@gmail.com', '$2a$10$FB/BOAVhpuLvpOREQVmvmezD4ED/.JBIDRh70tGevYzYzQgFId2u.', '+16139157474', 'Brooklynn', 'Marketing Lead', '14 cats and only 3 other men ;)');
INSERT INTO users (
first_name, last_name, age, gender, email, password, phone, city, occupation, bio)
VALUES (
'Lloyd', 'Jefferson', 17, 'male', 'asherpoole@gmx.com', '$2a$10$FB/BOAVhpuLvpOREQVmvmezD4ED/.JBIDRh70tGevYzYzQgFId2u.', '+14165550018', 'Toronto', 'Student', 'I like roblox, evening attire, and deep-sea fishing');
INSERT INTO users (
first_name, last_name, age, gender, email, password, phone, city, occupation, bio)
VALUES (
'Dale', 'Coleman', 22, 'male', 'daleybuddysir@gmail.com', '$2a$10$FB/BOAVhpuLvpOREQVmvmezD4ED/.JBIDRh70tGevYzYzQgFId2u.', '+14165450015', 'Waterloo', 'Sales lead', "Tell me your favorite ice cream flavor");
|
CREATE TABLE [etl].[tipos_archivos_campos_llave]
(
[id_tipo_archivo] [bigint] NOT NULL,
[llave] [varchar](50) NOT NULL,
[id_campo] [bigint] NOT NULL
CONSTRAINT [PK_tipos_archivos_campos_llave] PRIMARY KEY CLUSTERED
(
[id_tipo_archivo] ASC ,[llave] ASC,[id_campo] ASC
) ON [INDEXES],
CONSTRAINT [FK_tipos_archivos_campos_llave_tipos_archivo] FOREIGN KEY ([id_tipo_archivo]) REFERENCES [etl].[tipos_archivo]([id_tipo_archivo]),
CONSTRAINT [FK_tipos_archivos_campos_llave_campos] FOREIGN KEY ([id_campo]) REFERENCES [etl].[campos]([id_campo])
) ON [INDEXES]
|
/* 2. Удалите 1 запись из Customers, которая была вами добавлена. */
DELETE FROM Sales.Customers
WHERE CustomerName = 'Giordano Bruno' |
Select a.award_id, a.award_number, a.Document_Number, a.Sequence_Number
, a.Update_Timestamp, a.Update_User, t.Crte_DT as Create_Date
, fp.proposal_id
from mgprod.award a
,mgprod.krew_doc_hdr_t doc
,mgprod.krew_actn_rqst_t t
,award_funding_proposals fp
where a.document_number = doc.doc_hdr_id
and doc.doc_hdr_stat_cd = 'F'
and a.document_number = t.doc_hdr_id
and t.Crte_DT >= '18-APR-2012'
and t.Crte_DT < '19-APR-2012'
and fp.award_id (+)= a.award_id;
group by fp.award_number;
Select a.award_id, a.award_number, a.Document_Number, a.Sequence_Number
, a.Update_Timestamp, a.Update_User, t.Crte_DT as Create_Date
, trim(f.lastname) || ', ' || trim(f.firstname) as Initiator
, u.Unit_Name as Department, uu.Unit_Name as College
from mgprod.award a
,mgprod.krew_doc_hdr_t doc
,mgprod.UNIT u
,mgprod.UH_UNIT_COLLEGE uc
,mgprod.UNIT uu
,mgprod.krew_actn_rqst_t t
,kim_info f
where a.document_number = doc.doc_hdr_id
/*and a.award_number not in
(select award_number
from mgprod.award_custom_data
where award_number like '%-00001') */
--and a.award_number like '%-00001'
and doc.doc_hdr_stat_cd = 'F'
and a.Lead_Unit_Number = u.Unit_Number
and u.Unit_Number = uc.Unit_Number
and uc.College_Number = uu.Unit_Number
and a.document_number = t.doc_hdr_id
and t.prncpl_id = f.UHUUID
and t.Crte_DT >= '18-APR-2012'
and t.Crte_DT < '19-APR-2012'
Order by 7 desc, 8, 2, 1, 5
|
.@classpath mysql ../drivers/mysql-connector-java-5.1.39-bin.jar
.open -u root mysql://localhost/?useUnicode=true&characterEncoding=utf-8&useSSL=false
|
CREATE TABLE IF NOT EXISTS `luffy_etl` (
`etl_id` int(11) NOT NULL AUTO_INCREMENT,
`tag` varchar(40) NOT NULL COMMENT '分类标签',
`etl_name` varchar(50) NOT NULL COMMENT '任务名称',
`code` varchar(4000) DEFAULT NULL COMMENT 'JSON配置代码',
`is_enabled` int(11) NOT NULL DEFAULT '0' COMMENT '是否启动 ',
`is_extract` int(11) NOT NULL DEFAULT '0' COMMENT '是否启用抽取器',
`is_load` int(11) NOT NULL DEFAULT '0' COMMENT '是否启用加载器',
`is_transform` int(11) NOT NULL DEFAULT '1' COMMENT '是否启用转换器',
`cursor_type` int(11) NOT NULL DEFAULT '0' COMMENT '0时间;1数值',
`cursor` bigint(20) NOT NULL DEFAULT '0' COMMENT '游标',
`alarm_mobile` varchar(100) DEFAULT NULL COMMENT '报警手机号(多个以,隔开)',
`e_enabled` int(11) NOT NULL DEFAULT '0',
`e_max_instance` int(11) NOT NULL DEFAULT '1' COMMENT '抽取器集群数',
`e_last_exectime` bigint(20) DEFAULT NULL,
`t_enabled` int(11) NOT NULL DEFAULT '0',
`t_max_instance` int(11) NOT NULL DEFAULT '1' COMMENT '转换器集群数',
`t_last_exectime` bigint(20) DEFAULT NULL,
`l_enabled` int(11) NOT NULL DEFAULT '0',
`l_max_instance` int(11) NOT NULL DEFAULT '1' COMMENT '加载器集群数',
`l_last_exectime` bigint(20) DEFAULT NULL,
`last_extract_time` bigint(20) DEFAULT NULL COMMENT '最后抽取时间',
`last_load_time` bigint(20) DEFAULT NULL COMMENT '最后加载时间',
`last_transform_time` bigint(20) DEFAULT NULL COMMENT '最后转换时间',
PRIMARY KEY (`etl_id`) USING BTREE,
UNIQUE KEY `IX_key` (`tag`,`etl_name`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = 'FAAS-ETL配置表' ROW_FORMAT = DYNAMIC;
CREATE TABLE IF NOT EXISTS `luffy_file` (
`file_id` int(11) NOT NULL AUTO_INCREMENT COMMENT '文件ID',
`file_type` int(11) NOT NULL DEFAULT '0' COMMENT '文件类型(0:api, 1:pln, 2:tml)',
`tag` varchar(40) NOT NULL DEFAULT '' COMMENT '分组村签',
`label` varchar(100) NOT NULL DEFAULT '' COMMENT '标记',
`path` varchar(100) NOT NULL COMMENT '文件路径',
`rank` int(11) NOT NULL DEFAULT '0' COMMENT '排列(小的排前)',
`is_staticize` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否静态',
`is_editable` tinyint(1) NOT NULL DEFAULT '1' COMMENT '是否可编辑',
`is_disabled` tinyint(1) NOT NULL DEFAULT '0' COMMENT '是否禁用',
`is_exclude` tinyint(1) NOT NULL DEFAULT '0' COMMENT '排除导入',
`link_to` varchar(100) DEFAULT NULL COMMENT '连接到',
`edit_mode` varchar(40) NOT NULL DEFAULT '' COMMENT '编辑模式',
`content_type` varchar(60) NOT NULL DEFAULT '' COMMENT '内容类型',
`content` longtext COMMENT '内容',
`note` varchar(99) DEFAULT '' COMMENT '备注',
`plan_state` int(11) NOT NULL DEFAULT '0' COMMENT '计划状态',
`plan_begin_time` bigint(20) DEFAULT NULL COMMENT '计划开始执行时间',
`plan_last_time` bigint(20) DEFAULT NULL COMMENT '计划最后执行时间',
`plan_last_timespan` bigint(20) NOT NULL DEFAULT '0' COMMENT '计划最后执行时间长度',
`plan_next_time` bigint(20) NOT NULL DEFAULT '0' COMMENT '计划下次执行时间戳',
`plan_interval` varchar(100) NOT NULL DEFAULT '' COMMENT '计划执行间隔',
`plan_max` int(11) NOT NULL DEFAULT '0' COMMENT '计划执行最多次数',
`plan_count` int(11) NOT NULL DEFAULT '0' COMMENT '计划执行累计次数',
`create_fulltime` bigint(20) DEFAULT NULL COMMENT '创建时间',
`update_fulltime` bigint(20) DEFAULT NULL COMMENT '更新时间',
`use_whitelist` varchar(40) DEFAULT NULL COMMENT '安全名单',
PRIMARY KEY (`file_id`) USING BTREE,
UNIQUE KEY `IX_key` (`path`) USING BTREE,
KEY `IX_tag` (`tag`) USING BTREE,
KEY `IX_label` (`label`) USING BTREE,
KEY `IX_file_type` (`file_type`) USING BTREE,
KEY `IX_plan_next_time` (`plan_next_time`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = 'FAAS-文件表' ROW_FORMAT = DYNAMIC;
CREATE TABLE IF NOT EXISTS `rubber_actor` (
`actor_id` int(11) NOT NULL AUTO_INCREMENT COMMENT '参与ID',
`tag` varchar(40) DEFAULT NULL COMMENT '分类标签',
`name` varchar(40) NOT NULL COMMENT '参与者代号',
`name_display` varchar(40) NOT NULL COMMENT '参与者显示名',
`note` varchar(255) DEFAULT NULL COMMENT '备注',
`last_updatetime` bigint(20) DEFAULT NULL COMMENT '最后更新时间',
PRIMARY KEY (`actor_id`) USING BTREE,
UNIQUE KEY `IX_key` (`tag`,`name`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = 'RAAS-角色表' ROW_FORMAT = DYNAMIC;
CREATE TABLE IF NOT EXISTS `rubber_block` (
`block_id` int(11) NOT NULL AUTO_INCREMENT,
`tag` varchar(40) NOT NULL DEFAULT '' COMMENT '分类标签',
`name` varchar(40) NOT NULL DEFAULT '' COMMENT '代号',
`name_display` varchar(100) NOT NULL DEFAULT '' COMMENT '显示名',
`note` varchar(100) DEFAULT NULL,
`related_db` varchar(100) DEFAULT NULL COMMENT '相关数据(sponge/angel)',
`related_tb` varchar(100) DEFAULT NULL COMMENT '相关数据表',
`is_editable` int(11) NOT NULL DEFAULT '0',
`is_enabled` int(11) NOT NULL DEFAULT '1',
`struct` varchar(255) NOT NULL DEFAULT '' COMMENT '数据结构({f1:''xx''})',
`app_expr` varchar(999) NOT NULL DEFAULT '' COMMENT '应用表达式',
`last_updatetime` bigint(20) DEFAULT NULL COMMENT '最后更新时间',
PRIMARY KEY (`block_id`) USING BTREE,
UNIQUE KEY `IX_key` (`tag`,`name`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = 'RAAS-数据块' ROW_FORMAT = DYNAMIC;
CREATE TABLE IF NOT EXISTS `rubber_block_item` (
`item_id` int(11) NOT NULL AUTO_INCREMENT,
`block_id` int(11) NOT NULL DEFAULT '0',
`name` varchar(100) NOT NULL DEFAULT '',
`f1` varchar(100) NOT NULL DEFAULT '',
`f2` varchar(100) NOT NULL DEFAULT '',
`f3` varchar(100) NOT NULL DEFAULT '',
`f4` varchar(100) NOT NULL DEFAULT '',
`last_updatetime` bigint(20) DEFAULT NULL COMMENT '最后更新时间',
PRIMARY KEY (`item_id`) USING BTREE,
UNIQUE KEY `IX_key` (`block_id`,`name`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = 'RAAS-数据块项' ROW_FORMAT = DYNAMIC;
CREATE TABLE IF NOT EXISTS `rubber_log_request` (
`log_id` bigint(20) NOT NULL,
`trace_id` varchar(40) DEFAULT NULL COMMENT '跟踪-guid',
`request_id` varchar(40) NOT NULL COMMENT '请求ID',
`scheme_tagname` varchar(100) NOT NULL COMMENT '计算方案',
`policy` int(11) NOT NULL DEFAULT '0' COMMENT '处理策略',
`args_json` varchar(999) NOT NULL COMMENT '输入参数',
`model_json` varchar(4000) DEFAULT NULL COMMENT '数据模型',
`matcher_json` varchar(999) DEFAULT NULL COMMENT '匹配报告',
`evaluation_json` text COMMENT '评估报告',
`session_json` varchar(999) DEFAULT NULL COMMENT '会话',
`note_json` varchar(255) DEFAULT NULL COMMENT '摘要',
`start_fulltime` bigint(20) DEFAULT NULL COMMENT '开始时间',
`start_date` int(11) NOT NULL DEFAULT '0' COMMENT '开始日期',
`end_fulltime` bigint(20) DEFAULT NULL COMMENT '完成时间',
`timespan` bigint(20) NOT NULL DEFAULT '0' COMMENT '处理时间(ms)',
`state` int(11) NOT NULL DEFAULT '0' COMMENT '状态(0:刚记录;1:计算中;2:已计算)',
`callback` varchar(100) DEFAULT NULL COMMENT '回调地址',
`log_date` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`log_id`) USING BTREE,
KEY `IX_log_date` (`log_date`) USING BTREE,
KEY `IX_trace_id` (`trace_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = 'RAAS-日志-请求记录表' ROW_FORMAT = Compact;
CREATE TABLE IF NOT EXISTS `rubber_log_request_all` (
`log_id` bigint(20) NOT NULL,
`trace_id` varchar(40) DEFAULT NULL COMMENT '跟踪-guid',
`request_id` varchar(40) NOT NULL COMMENT '请求ID',
`scheme_tagname` varchar(100) NOT NULL COMMENT '计算方案',
`policy` int(11) NOT NULL DEFAULT '0' COMMENT '处理策略',
`args_json` varchar(999) NOT NULL COMMENT '输入参数',
`model_json` varchar(4000) DEFAULT NULL COMMENT '数据模型',
`matcher_json` varchar(999) DEFAULT NULL COMMENT '匹配报告',
`evaluation_json` text COMMENT '评估报告',
`session_json` varchar(999) DEFAULT NULL COMMENT '会话',
`note_json` varchar(255) DEFAULT NULL COMMENT '摘要',
`start_fulltime` bigint(20) DEFAULT NULL COMMENT '开始时间',
`start_date` int(11) NOT NULL DEFAULT '0' COMMENT '开始日期',
`end_fulltime` bigint(20) DEFAULT NULL COMMENT '完成时间',
`timespan` bigint(20) NOT NULL DEFAULT '0' COMMENT '处理时间(ms)',
`state` int(11) NOT NULL DEFAULT '0' COMMENT '状态(0:刚记录;1:计算中;2:已计算)',
`callback` varchar(100) DEFAULT NULL COMMENT '回调地址',
`log_date` int(11) NOT NULL DEFAULT '0',
PRIMARY KEY (`log_id`) USING BTREE,
KEY `IX_log_date` (`log_date`) USING BTREE,
KEY `IX_trace_id` (`trace_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = 'RAAS-日志-请求记录表' ROW_FORMAT = Compact;
CREATE TABLE IF NOT EXISTS `rubber_model` (
`model_id` int(11) NOT NULL AUTO_INCREMENT COMMENT '模型ID',
`tag` varchar(40) NOT NULL DEFAULT '' COMMENT '分类标签',
`name` varchar(40) NOT NULL DEFAULT '' COMMENT '代号',
`name_display` varchar(100) NOT NULL DEFAULT '' COMMENT '显示名',
`related_db` varchar(100) NOT NULL DEFAULT '' COMMENT '相关数据库',
`field_count` int(11) DEFAULT '0',
`init_expr` varchar(999) NOT NULL DEFAULT '' COMMENT '构造表达式',
`debug_args` varchar(255) DEFAULT NULL COMMENT '调试参数',
`last_updatetime` bigint(20) DEFAULT NULL COMMENT '最后更新时间',
PRIMARY KEY (`model_id`) USING BTREE,
UNIQUE KEY `IX_key` (`tag`,`name`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = 'RAAS-数据模型表' ROW_FORMAT = DYNAMIC;
CREATE TABLE IF NOT EXISTS `rubber_model_field` (
`field_id` int(11) NOT NULL AUTO_INCREMENT COMMENT '字段ID',
`model_id` int(11) NOT NULL DEFAULT '0' COMMENT '所属的模型ID',
`name` varchar(40) NOT NULL COMMENT '字段名称',
`name_display` varchar(100) NOT NULL COMMENT '显示名',
`expr` varchar(2000) NOT NULL DEFAULT '' COMMENT '字段动态生成代码',
`note` varchar(100) DEFAULT NULL COMMENT '字段',
`last_updatetime` bigint(20) DEFAULT NULL COMMENT '最后更新时间',
`is_pk` int(11) NOT NULL DEFAULT '0' COMMENT '是否是主键',
PRIMARY KEY (`field_id`) USING BTREE,
UNIQUE KEY `IX_key` (`model_id`,`name`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = 'RAAS-数据模型-字段表' ROW_FORMAT = DYNAMIC;
CREATE TABLE IF NOT EXISTS `rubber_scheme` (
`scheme_id` int(11) NOT NULL AUTO_INCREMENT COMMENT '方案ID',
`tag` varchar(40) NOT NULL COMMENT '分类标签',
`name` varchar(40) NOT NULL COMMENT '代号',
`name_display` varchar(100) NOT NULL DEFAULT '' COMMENT '显示名',
`related_model` varchar(100) NOT NULL COMMENT '相关模型(tag/name)',
`related_model_id` int(11) NOT NULL DEFAULT '0' COMMENT '关联模型ID',
`related_model_display` varchar(100) DEFAULT NULL COMMENT '关联模型显示名',
`related_block` varchar(200) DEFAULT NULL COMMENT '引用函数',
`debug_args` varchar(255) DEFAULT NULL COMMENT '调试参数',
`event` varchar(999) NOT NULL DEFAULT '' COMMENT '事件',
`node_count` int(11) NOT NULL DEFAULT '0' COMMENT '下属工作流节点数据',
`rule_count` int(11) NOT NULL DEFAULT '0' COMMENT '下属规则数量',
`rule_relation` int(11) NOT NULL DEFAULT '0' COMMENT '规则关系(0并且关系,1或者关系)',
`is_enabled` int(11) NOT NULL DEFAULT '1' COMMENT '是否启用',
`last_updatetime` bigint(20) DEFAULT NULL COMMENT '最后更新时间',
PRIMARY KEY (`scheme_id`) USING BTREE,
UNIQUE KEY `IX_key` (`tag`,`name`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = 'RAAS-计算方案表' ROW_FORMAT = DYNAMIC;
CREATE TABLE IF NOT EXISTS `rubber_scheme_node` (
`node_id` int(11) NOT NULL AUTO_INCREMENT,
`scheme_id` int(11) NOT NULL,
`node_key` varchar(80) NOT NULL,
`type` int(11) NOT NULL DEFAULT '0' COMMENT '节点类型:0开始,1线,2执行节点,3排他网关,4并行网关,5汇聚网关,9结束',
`name` varchar(40) DEFAULT NULL COMMENT '代号',
`prve_key` varchar(80) NOT NULL DEFAULT '' COMMENT '上个节点ID(type=line时,才有值 )',
`next_key` varchar(80) NOT NULL DEFAULT '' COMMENT '下个节点ID(type=line时,才有值 )',
`condition` varchar(400) DEFAULT NULL COMMENT '分支条件(type=line时,才有值 :left,op,right,ct;left,op,right,ct)',
`tasks` varchar(400) DEFAULT NULL COMMENT '执行任务(type=exec时,才有值:F,tag/fun1;R,tag/rule1 )',
`actor` varchar(100) DEFAULT NULL COMMENT '参与者(type=exec时,才有值 :tag/name)',
`actor_display` varchar(100) DEFAULT NULL,
`last_updatetime` bigint(20) DEFAULT NULL COMMENT '最后更新时间',
`is_enabled` int(11) DEFAULT '0' COMMENT '是否启用 0:未启用 1:启用 ',
PRIMARY KEY (`node_id`) USING BTREE,
UNIQUE KEY `IX_key` (`scheme_id`,`node_key`) USING BTREE,
KEY `IX_scheme` (`scheme_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = 'RAAS-计算方案-节点表' ROW_FORMAT = DYNAMIC;
CREATE TABLE IF NOT EXISTS `rubber_scheme_node_design` (
`scheme_id` int(11) NOT NULL,
`details` varchar(9999) DEFAULT NULL,
`last_updatetime` bigint(20) DEFAULT NULL COMMENT '最后更新时间',
PRIMARY KEY (`scheme_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = 'RAAS-计算方案-节点设计表' ROW_FORMAT = DYNAMIC;
CREATE TABLE IF NOT EXISTS `rubber_scheme_rule` (
`rule_id` int(11) NOT NULL AUTO_INCREMENT COMMENT '规则ID',
`scheme_id` int(11) NOT NULL DEFAULT '0' COMMENT '方案ID',
`name_display` varchar(100) NOT NULL COMMENT '显示名',
`advice` int(11) NOT NULL DEFAULT '0' COMMENT '评估建议(0无,1交易放行,2审慎审核,3阻断交易)',
`score` int(11) NOT NULL DEFAULT '0' COMMENT '评估分值',
`sort` int(11) NOT NULL DEFAULT '0' COMMENT '排序',
`expr` varchar(400) NOT NULL COMMENT '条件表达式(m.user_day(30),>,15,&&;left,op,right,ct)',
`expr_display` varchar(400) DEFAULT NULL,
`event` varchar(400) NOT NULL DEFAULT '',
`is_enabled` int(11) NOT NULL DEFAULT '1' COMMENT '状态,(0:禁用、1:启用)',
`last_updatetime` bigint(20) DEFAULT NULL COMMENT '最后更新时间',
PRIMARY KEY (`rule_id`) USING BTREE,
KEY `IX_scheme` (`scheme_id`) USING BTREE
) ENGINE = InnoDB CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci COMMENT = 'RAAS-计算方案-规则表' ROW_FORMAT = DYNAMIC;
|
/* Formatted on 21/07/2014 18:44:06 (QP5 v5.227.12220.39754) */
CREATE OR REPLACE FORCE VIEW MCRE_OWN.V_MCRES_FEN_PTF_DETT_TEST
(
VAL_ANNOMESE,
COD_ABI,
COD_NDG,
COD_SNDG,
COD_MATR_PRATICA,
COD_UO_PRATICA,
DTA_APERTURA,
DTA_PASSAGGIO_SOFF,
COD_STATO_RISCHIO,
COD_FILIALE,
SCSB_UTI_TOT,
DTA_DELIBERA,
VAL_GBV,
VAL_NBV,
FLG_NI,
VAL_IMP_GBV_NI,
VAL_IMP_NBV_NI,
FLG_NT,
VAL_IMP_GBV_NT,
VAL_IMP_NBV_NT,
FLG_FT,
VAL_IMP_GBV_FT,
VAL_IMP_NBV_FT,
FLG_FB,
VAL_IMP_GBV_FB,
VAL_IMP_NBV_FB,
FLG_CT,
VAL_IMP_GBV_CT,
VAL_IMP_NBV_CT,
FLG_AR,
VAL_IMP_GBV_AR,
VAL_IMP_NBV_AR,
FLG_RE,
VAL_IMP_GBV_RE,
VAL_IMP_NBV_RE,
VAL_TIPO_GESTIONE
)
AS
SELECT DISTINCT
-- 20121130 Andrea Galliano Aggiunto filtro per escludere rapporti chiusi
-- 20130122 Andrea Galliano Modifica gestione nuovi ingressi
-- 20130201 VGalli PCR
-- 20130315 VGalli AllData
-- 20130531 VGalli Data delibera
A.VAL_ANNOMESE_SISBA_CP val_annomese,
Z.COD_ABI,
Z.COD_NDG,
Z.COD_SNDG,
p.cod_matr_pratica,
CASE
WHEN z.flg_art_498 = 'S' THEN cod_uo_art_498
ELSE p.cod_uo_pratica
END
COD_UO_PRATICA,
p.DTA_APERTURA,
Z.DTA_PASSAGGIO_SOFF,
z.cod_stato_rischio,
CASE
WHEN z.flg_art_498 = 'S' THEN cod_uo_art_498
ELSE p.cod_uo_pratica
END
cod_filiale,
-- (SELECT DISTINCT p.SCSB_UTI_TOT
-- FROM T_MCRE0_APP_pcr P
-- WHERE p.cod_abi_cartolarizzato = z.cod_abi
-- and p.cod_ndg = z.COD_NDG
-- and TODAY_FLG =1) SCSB_UTI_TOT,
pcr.SCSB_UTI_TOT,
CASE
WHEN Z.DTA_PASSAGGIO_SOFF >=
ADD_MONTHS (TRUNC (SYSDATE), -3)
AND del.dta_delibera IS NOT NULL
AND z.cod_stato_rischio = 'S'
THEN
DTA_DELIBERA
-- CASE
-- WHEN P.COD_TIPO_GESTIONE = 'Z' THEN DTA_DELIBERA
-- WHEN P.COD_TIPO_GESTIONE = 'S' THEN DTA_INS_DELIBERA
-- END
ELSE
NULL
END
dta_delibera,
SUM (
pcr_inc.val_gbv_all)
OVER (
PARTITION BY Z.COD_ABI,
Z.COD_NDG,
P.COD_MATR_PRATICA,
p.COD_UO_PRATICA)
val_gbv,
SUM (
r.VAL_IMP_NBV)
OVER (
PARTITION BY Z.COD_ABI,
Z.COD_NDG,
P.COD_MATR_PRATICA,
p.COD_UO_PRATICA)
val_nbv,
CASE
WHEN Z.DTA_PASSAGGIO_SOFF >=
ADD_MONTHS (TRUNC (SYSDATE), -3) --AND del.dta_delibera IS NOT NULL
AND z.cod_stato_rischio = 'S'
THEN
'S'
ELSE
NULL
END
FLG_NI,
CASE
WHEN Z.DTA_PASSAGGIO_SOFF >=
ADD_MONTHS (TRUNC (SYSDATE), -3)
AND del.dta_delibera IS NOT NULL
AND z.cod_stato_rischio = 'S'
THEN
SUM (
val_gbv_ni)
OVER (
PARTITION BY Z.COD_ABI,
Z.COD_NDG,
P.COD_MATR_PRATICA,
p.COD_UO_PRATICA)
ELSE
NULL
END
VAL_IMP_GBV_NI,
CASE
WHEN Z.DTA_PASSAGGIO_SOFF >=
ADD_MONTHS (TRUNC (SYSDATE), -3)
AND z.cod_stato_rischio = 'S'
THEN
SUM (
-1 * R.VAL_IMP_NBV)
OVER (
PARTITION BY Z.COD_ABI,
Z.COD_NDG,
P.COD_MATR_PRATICA,
p.COD_UO_PRATICA)
ELSE
NULL
END
val_imp_nbv_ni,
CASE
WHEN NT.COD_TIPO_NOTIZIA IS NOT NULL
AND z.cod_stato_rischio = 'S'
THEN
'S'
ELSE
NULL
END
FLG_NT,
CASE
WHEN NT.COD_TIPO_NOTIZIA IS NOT NULL
AND z.cod_stato_rischio = 'S'
THEN
SUM (
val_gbv_all)
OVER (
PARTITION BY Z.COD_ABI,
Z.COD_NDG,
P.COD_MATR_PRATICA,
p.COD_UO_PRATICA)
ELSE
NULL
END
VAL_IMP_GBV_Nt,
CASE
WHEN NT.COD_TIPO_NOTIZIA IS NOT NULL
AND z.cod_stato_rischio = 'S'
THEN
SUM (
-1 * R.VAL_IMP_NBV)
OVER (
PARTITION BY Z.COD_ABI,
Z.COD_NDG,
P.COD_MATR_PRATICA,
p.COD_UO_PRATICA)
ELSE
NULL
END
val_imp_nbv_nt,
CASE
WHEN FLG_RAPP_FONDO_TERZO = 'S' AND z.cod_stato_rischio = 'S'
THEN
'S'
ELSE
NULL
END
FLG_FT,
CASE
WHEN FLG_RAPP_FONDO_TERZO = 'S' AND z.cod_stato_rischio = 'S'
THEN
SUM (
val_gbv_ft)
OVER (
PARTITION BY Z.COD_ABI,
Z.COD_NDG,
P.COD_MATR_PRATICA,
p.COD_UO_PRATICA)
ELSE
NULL
END
VAL_IMP_GBV_FT,
CASE
WHEN FLG_RAPP_FONDO_TERZO = 'S' AND z.cod_stato_rischio = 'S'
THEN
SUM (
-1 * R.VAL_IMP_NBV)
OVER (
PARTITION BY Z.COD_ABI,
Z.COD_NDG,
P.COD_MATR_PRATICA,
P.COD_UO_PRATICA,
R.FLG_RAPP_FONDO_TERZO)
ELSE
NULL
END
val_imp_nbv_ft,
CASE
WHEN FLG_RAPP_FONDO_TERZO = 'N' AND z.cod_stato_rischio = 'S'
THEN
'S'
ELSE
NULL
END
FLG_FB,
CASE
WHEN FLG_RAPP_FONDO_TERZO = 'N' AND z.cod_stato_rischio = 'S'
THEN
SUM (
val_gbv_fb)
OVER (
PARTITION BY Z.COD_ABI,
Z.COD_NDG,
P.COD_MATR_PRATICA,
p.COD_UO_PRATICA)
ELSE
NULL
END
VAL_IMP_GBV_FB,
CASE
WHEN FLG_RAPP_FONDO_TERZO = 'N' AND z.cod_stato_rischio = 'S'
THEN
SUM (
-1 * R.VAL_IMP_NBV)
OVER (
PARTITION BY Z.COD_ABI,
Z.COD_NDG,
P.COD_MATR_PRATICA,
P.COD_UO_PRATICA,
R.FLG_RAPP_FONDO_TERZO)
ELSE
NULL
END
val_imp_nbv_fb,
CASE
WHEN FLG_RAPP_CARTOLARIZZATo = 'S' AND z.cod_stato_rischio = 'S'
THEN
'S'
ELSE
NULL
END
FLG_CT,
CASE
WHEN FLG_RAPP_CARTOLARIZZATo = 'S' AND z.cod_stato_rischio = 'S'
THEN
SUM (
val_gbv_ct)
OVER (
PARTITION BY Z.COD_ABI,
Z.COD_NDG,
P.COD_MATR_PRATICA,
p.COD_UO_PRATICA)
ELSE
NULL
END
VAL_IMP_GBV_CT,
CASE
WHEN FLG_RAPP_CARTOLARIZZATo = 'S' AND z.cod_stato_rischio = 'S'
THEN
SUM (
-1 * R.VAL_IMP_NBV)
OVER (
PARTITION BY Z.COD_ABI,
Z.COD_NDG,
P.COD_MATR_PRATICA,
P.COD_UO_PRATICA,
Z.FLG_RAPP_CARTOLARIZZATI)
ELSE
NULL
END
val_imp_nbv_ct,
CASE WHEN z.FLG_ART_498 = 'S' THEN 'S' ELSE NULL END FLG_AR,
CASE
WHEN z.FLG_ART_498 = 'S'
THEN
SUM (
val_gbv_all)
OVER (
PARTITION BY Z.COD_ABI,
Z.COD_NDG,
P.COD_MATR_PRATICA,
p.COD_UO_PRATICA)
ELSE
NULL
END
VAL_IMP_GBV_AR,
CASE
WHEN z.FLG_ART_498 = 'S'
THEN
SUM (
-1 * R.VAL_IMP_NBV)
OVER (
PARTITION BY Z.COD_ABI,
Z.COD_NDG,
P.COD_MATR_PRATICA,
P.COD_UO_PRATICA,
Z.FLG_ART_498)
ELSE
NULL
END
val_imp_nbv_ar,
CASE
WHEN FLG_RAPP_ESTERo = 'S' AND z.cod_stato_rischio = 'S'
THEN
'S'
ELSE
NULL
END
FLG_RE,
CASE
WHEN FLG_RAPP_ESTERo = 'S' AND z.cod_stato_rischio = 'S'
THEN
SUM (
val_gbv_re)
OVER (
PARTITION BY Z.COD_ABI,
Z.COD_NDG,
P.COD_MATR_PRATICA,
p.COD_UO_PRATICA)
ELSE
NULL
END
VAL_IMP_GBV_RE,
CASE
WHEN FLG_RAPP_ESTERo = 'S' AND z.cod_stato_rischio = 'S'
THEN
SUM (
-1 * R.VAL_IMP_NBV)
OVER (
PARTITION BY Z.COD_ABI,
Z.COD_NDg,
P.COD_MATR_PRATICA,
p.COD_UO_PRATICA,
z.FLG_RAPP_ESTERI)
ELSE
NULL
END
VAL_IMP_NBV_RE,
NVL (lp.val_tipo_gestione, 'A') val_tipo_gestione
FROM T_MCRES_APP_POSIZIONI PARTITION (SOFF_PATTIVE) Z,
T_MCRES_APP_Pratiche PARTITION (SOFF_PATTIVE) p,
t_mcres_app_rapporti r,
--------------- INIZIO PCR --------------------
( SELECT p.cod_abi,
p.cod_ndg,
SUM (
CASE
WHEN (q.FLG_RAPP_CARTOLARIZZATo = 'N')
OR q.COD_RAPPORTO IS NULL
THEN
p.VAL_IMP_UTILIZZATO
* DECODE (
q.FLG_RAPP_FONDO_TERZO,
'N', NVL (q.VAL_PERC_RISCHIO_IST, 0) / 100,
1)
ELSE
0
END)
val_gbv_ni,
SUM (
CASE
WHEN (q.FLG_RAPP_CARTOLARIZZATo = 'N')
OR q.COD_RAPPORTO IS NULL
THEN
p.VAL_IMP_UTILIZZATO
* DECODE (
q.FLG_RAPP_FONDO_TERZO,
'N', NVL (q.VAL_PERC_RISCHIO_IST, 0) / 100,
1)
ELSE
0
END)
val_gbv_fb,
SUM (
CASE
WHEN q.FLG_RAPP_FONDO_TERZO = 'S'
THEN
p.VAL_IMP_UTILIZZATO
* NVL (q.VAL_PERC_RISCHIO_IST, 100)
/ 100
ELSE
0
END)
val_gbv_ft,
SUM (p.VAL_IMP_UTILIZZATO) val_gbv_all,
SUM (
CASE
WHEN q.FLG_RAPP_CARTOLARIZZATo = 'S'
THEN
p.VAL_IMP_UTILIZZATO
ELSE
0
END)
val_gbv_ct,
SUM (
CASE
WHEN q.FLG_RAPP_ESTERo = 'S'
THEN
p.VAL_IMP_UTILIZZATO
ELSE
0
END)
val_gbv_re
-- p.cod_rapporto,
-- P.DTA_INZ_VLD,
-- SUM (P.VAL_IMP_UTILIZZATO) val_gbv_pcr,
-- case when q.COD_RAPPORTO is not null then 1 else 0 end flg_esiste_pcr,
-- FLG_RAPP_CARTOLARIZZATo,
-- FLG_RAPP_FONDO_TERZO
FROM t_mcrei_app_pcr_rapporti p, t_mcres_app_rapporti q
WHERE p.cod_abi = q.cod_abi(+)
AND p.cod_ndg = q.cod_ndg(+)
AND p.cod_rapporto = q.COD_RAPPORTO(+)
GROUP BY p.cod_abi, p.cod_ndg --,
-- p.cod_rapporto,
-- P.DTA_INZ_VLD
) pcr_inc,
--------------- FINE PCR --------------------
( SELECT COD_ABI, cod_ndg, -- MAX (DTA_INSERIMENTO_DELIBERA) dta_ins_delibera,
MAX (DTA_DELIBERA) dta_delibera
FROM T_MCRES_APP_DELIBERE D
WHERE cod_delibera IN ('NS', 'NZ') AND cod_stato_delibera = 'CO'
GROUP BY cod_abi, cod_ndg) del,
(SELECT DISTINCT COD_ABI_ISTITUTO, COD_NDG, p.SCSB_UTI_TOT
FROM T_MCRE0_APP_ALL_DATA PARTITION (CCP_P1) P
WHERE p.cod_stato = 'SO') PCR,
(SELECT DISTINCT COD_ABI, cod_ndg, COD_TIPO_NOTIZIA
FROM T_MCRES_APP_NOTIZIE N
WHERE DTA_FINE_VALIDITA = TO_DATE ('99991231', 'YYYYMMDD')
AND cod_tipo_notizia IN (1, 2, 85)) NT,
V_MCRES_APP_LISTA_strutture lp,
V_MCRES_APP_ULTIMO_ANNOMESE A
WHERE (z.cod_stato_rischio = 'S' OR z.FLG_ART_498 = 'S')
AND Z.COD_ABI = R.COD_ABI(+)
AND z.cod_ndg = r.cod_ndg(+)
AND z.cod_abi = p.cod_abi(+)
AND Z.COD_NDG = p.COD_NDG(+)
AND Z.COD_ABI = DEL.COD_ABI(+)
AND Z.COD_NDG = DEL.COD_NDG(+)
AND Z.COD_ABI = pcr.COD_ABI_istituto(+)
AND Z.COD_NDG = PCR.COD_NDG(+)
AND Z.COD_ABI = NT.COD_ABI(+)
AND Z.COD_NDG = NT.COD_NDG(+)
AND p.cod_uo_pratica = lp.COD_PRESIDIO(+)
AND r.cod_abi = pcr_inc.cod_abi(+)
AND r.cod_ndg = pcr_inc.cod_ndg(+)
-- AND r.cod_rapporto = pcr_inc.COD_RAPPORTO(+)
-- AG 20121130
AND r.dta_chiusura_rapp(+) > SYSDATE;
|
create table play_clean_scala.user
(
id varchar(255) not null
primary key,
name varchar(255) null,
role int null
);
|
SET FOREIGN_KEY_CHECKS=0;
DROP TABLE IF EXISTS `dict_field`;
CREATE TABLE `dict_field` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`field` varchar(40) NOT NULL COMMENT '属性名',
`multi` tinyint(4) NOT NULL DEFAULT '0' COMMENT '是否多选值,默认不多选,多选必须是数据项值定义为二进制只有一个位为1的整数',
`groupId` int(11) NOT NULL COMMENT '分组',
PRIMARY KEY (`id`),
KEY `dict_field_groupId` (`groupId`),
CONSTRAINT `dict_field_groupId` FOREIGN KEY (`groupId`) REFERENCES `dict_group` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='属性域';
DROP TABLE IF EXISTS `dict_group`;
CREATE TABLE `dict_group` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`key` varchar(80) NOT NULL COMMENT '键值名',
`name` varchar(255) NOT NULL COMMENT '显示名',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='属性域可选数据项';
DROP TABLE IF EXISTS `dict_table_column`;
CREATE TABLE `dict_table_column` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`table` varchar(255) NOT NULL COMMENT '表名',
`column` varchar(255) NOT NULL COMMENT '字段名',
`groupId` int(11) NOT NULL COMMENT '字典组',
PRIMARY KEY (`id`),
KEY `dict_table_column_groupId` (`groupId`),
CONSTRAINT `dict_table_column_groupId` FOREIGN KEY (`groupId`) REFERENCES `dict_group` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='数据库字段对应选值字典组';
DROP TABLE IF EXISTS `dict_value`;
CREATE TABLE `dict_value` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`groupId` int(11) NOT NULL COMMENT '字典组',
`groupKey` varchar(255) NOT NULL COMMENT '字典组键',
`key` varchar(255) NOT NULL COMMENT '键名,在同一个groupId下不能相同',
`name` varchar(255) NOT NULL COMMENT '数据项显示名,默认一种显示,增加定义需要使用多语言映射',
`value` varchar(255) NOT NULL COMMENT '数据值',
`valueString` varchar(255) NOT NULL COMMENT '数据值(代码显示)',
PRIMARY KEY (`id`),
KEY `dict_value_groupId` (`groupId`),
CONSTRAINT `dict_value_groupId` FOREIGN KEY (`groupId`) REFERENCES `dict_group` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='数据项定义';
DROP TABLE IF EXISTS `dict_value_lang`;
CREATE TABLE `dict_value_lang` (
`id` int(11) NOT NULL AUTO_INCREMENT,
`valueId` int(11) NOT NULL,
`name` varchar(200) NOT NULL COMMENT '数据项显示名,默认一种显示,增加定义需要使用多语言映射',
`lang` varchar(10) NOT NULL COMMENT '数据值',
PRIMARY KEY (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT='多语言数据项显示'; |
-- phpMyAdmin SQL Dump
-- version 3.3.9
-- http://www.phpmyadmin.net
--
-- Host: localhost
-- Generation Time: Jun 02, 2014 at 06:39 PM
-- Server version: 5.5.8
-- PHP Version: 5.3.5
SET SQL_MODE="NO_AUTO_VALUE_ON_ZERO";
/*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */;
/*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */;
/*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */;
/*!40101 SET NAMES utf8 */;
--
-- Database: `derex`
--
-- --------------------------------------------------------
--
-- Table structure for table `jobs`
--
CREATE TABLE IF NOT EXISTS `jobs` (
`sno` int(11) NOT NULL AUTO_INCREMENT,
`job_type` varchar(255) NOT NULL,
`job_title` varchar(255) NOT NULL,
`location` varchar(100) NOT NULL,
`skills` text NOT NULL,
`duration` varchar(255) NOT NULL,
`mandotary_skills` text NOT NULL,
`desire_skills` text NOT NULL,
`created_date` text NOT NULL,
PRIMARY KEY (`sno`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=5 ;
--
-- Dumping data for table `jobs`
--
INSERT INTO `jobs` (`sno`, `job_type`, `job_title`, `location`, `skills`, `duration`, `mandotary_skills`, `desire_skills`, `created_date`) VALUES
(1, 'sr Php Programmer', 'php', 'Hyd', 'jquery', '9 months', '', 'ajax,json', '02/06/2014'),
(2, 'sr Php Programmer', 'php', 'Hyd', 'jquery', '9 months', '', 'ajax,json', '02/06/2014'),
(3, 'ghgfh', 'php', 'fghfgh', 'fghgf', 'hfgh', 'hfghfg', 'gfhfghfghgfh', '02/06/2014 06:06:21'),
(4, 'ghgfh', 'php', 'fghfgh', 'fghgf', 'hfgh', 'hfghfg', 'gfhfghfghgfh', '02/06/2014 06:06:22');
-- --------------------------------------------------------
--
-- Table structure for table `user`
--
CREATE TABLE IF NOT EXISTS `user` (
`sno` int(11) NOT NULL AUTO_INCREMENT,
`firstname` varchar(100) NOT NULL,
`lastname` varchar(100) NOT NULL,
`phonenumber` varchar(100) NOT NULL,
`email` varchar(100) NOT NULL,
`resume` text NOT NULL,
`created_date` datetime NOT NULL,
PRIMARY KEY (`sno`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=15 ;
--
-- Dumping data for table `user`
--
INSERT INTO `user` (`sno`, `firstname`, `lastname`, `phonenumber`, `email`, `resume`, `created_date`) VALUES
(4, 'Priya', 'Pamidi', '919581622225', 'padma.pamidi@popcornapps.com', 'checkout.xlsx', '0000-00-00 00:00:00'),
(5, 'Priya', 'Pamidi', '919581622225', 'padma.pamidi@popcornapps.com', 'daily work list_may30.xlsx', '0000-00-00 00:00:00'),
(6, 'POPCORNAPPS', 'PVT.LTD', '919581622225', 'padma.pamidi@popcornapps.com', 'daily work list.xlsx', '0000-00-00 00:00:00'),
(7, 'Priya', 'Pamidi', '919581622225', 'padma.pamidi@popcornapps.com', 'Oncue_Test Cases_may30th2014.xlsx', '0000-00-00 00:00:00'),
(8, 'Priya', 'Pamidi', '919581622225', 'padma.pamidi@popcornapps.com', 'Oncue_Test Cases.xlsx', '0000-00-00 00:00:00'),
(9, 'Priya', 'Pamidi', '919581622225', 'padma.pamidi@popcornapps.com', 'purchase.xlsx', '0000-00-00 00:00:00'),
(10, 'Priya', 'Pamidi', '919581622225', 'padma.pamidi@popcornapps.com', 'purchase.xlsx', '0000-00-00 00:00:00'),
(11, 'Priya', 'Pamidi', '919581622225', 'padma.pamidi@popcornapps.com', 'checkout.xlsx', '0000-00-00 00:00:00'),
(12, 'Priya', 'Pamidi', '919581622225', 'padma.pamidi@popcornapps.com', 'purchase.xlsx', '0000-00-00 00:00:00'),
(13, 'Priya', 'Pamidi', '919581622225', 'padma.pamidi@popcornapps.com', 'purchase.xlsx', '0000-00-00 00:00:00'),
(14, 'Priya', 'Pamidi', '919581622225', 'padma.pamidi@popcornapps.com', 'Oncue_Test Cases_may30th2014.xlsx', '0000-00-00 00:00:00');
|
create table matchresult(
mrno int not null AUTO_INCREMENT primary key,
mcode int not null,
hpoint int null,
apoint int null
)ENGINE=MyISAM DEFAULT CHARSET="UTF8";
select * from matchresult
drop table matchresult;
select input from matchresult where mcode=2
SELECT writer, shooting, stamina, manner, pass, comment,
ifnull(sum(shooting+stamina+manner+pass)/4, 0) as avg FROM playeravg
WHERE player='clevel1' and mcode='1'
SELECT
ifnull(sum(shooting+stamina+manner+pass)/4, 0) as avg FROM playeravg
WHERE player='clevel1' and mcode='1'
SELECT B.tid, B.ttime, B.tname, B.tcode, m.mcode, m.input FROM
(SELECT ttime, tname, tid, A.tcode FROM team JOIN(
SELECT tcode FROM tmember WHERE tid='clevel1'
)A ON team.tcode=A.tcode)B JOIN matching m on B.tcode=m.home or B.tcode=m.away
SELECT writer, shooting, stamina, manner, pass, comment
FROM playeravg
WHERE player='clevel1' and mcode='1'
SELECT writer, shooting, stamina, manner, pass, comment,
ifnull((shooting+stamina+manner+pass)/4, 0) as avg FROM playeravg
WHERE player='clevel1' and mcode='1'
SELECT
ifnull(sum(shooting+stamina+manner+pass)/4, 0) as avg FROM playeravg
WHERE player='clevel1' and mcode='1'
SELECT writer, shooting+stamina+manner+pass, (shooting+stamina+manner+pass)/4
FROM playeravg
WHERE player='clevel1' and mcode='1'
|
create table if not exists widgets (
id integer primary key,
color varchar(10) not null,
size integer
);
create index if not exists idx_color on widgets (color);
create index if not exists idx_size on widgets (size);
create table if not exists prices (
widget_id integer primary key,
price integer
);
create index if not exists idx_price on prices (price);
create table if not exists inventory (
widget_id integer primary key,
inventory integer
);
create index if not exists idx_inventory on inventory (inventory);
|
CREATE TABLE users (
id INTEGER AUTO_INCREMENT PRIMARY KEY,
email VARCHAR(64) UNIQUE NOT NULL,
firstname VARCHAR(64) NOT NULL,
lastname VARCHAR(64) NOT NULL,
password VARCHAR(64) NOT NULL); |
create sequence BURI_WAITING_SEQ start with 2 increment by 1;
|
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.