text
stringlengths
6
9.38M
-- INNER JOIN -- SYNTAX -- SELECT table_A.column_a1,table_A.column_a2,table_B.column_b1,table_B.column_b2 -- FROM table_A -- INNER JOIN table_B ON table_A.column_a1 = table_B.column_b2; SELECT customer.customer_id, first_name, last_name, email, amount, payment_date FROM customer INNER JOIN payment ON payment.customer_id = customer.customer_id ORDER BY customer.customer_id; -- Examples of INNER JOIN -- staff/payment join on staff_id to see employee names with payments SELECT payment_id,amount,first_name,last_name FROM payment INNER JOIN staff ON payment.staff_id = staff.staff_id; -- film/inventory at certain storeID SELECT title,COUNT(title) AS copies_at_store1 FROM inventory -- JOIN = INNER JOIN by default JOIN film ON inventory.film_id = film.film_id WHERE store_id=1 GROUP BY title ORDER BY title; -- foreign film language (shortened "work" version, also AS can be a space) SELECT film.title,lan.name AS movie_language FROM film JOIN language AS lan ON film.language_id = lan.language_id;
-- phpMyAdmin SQL Dump -- version 4.5.5.1 -- http://www.phpmyadmin.net -- -- Host: 127.0.0.1 -- Generation Time: Mar 08, 2018 at 05:48 PM -- Server version: 5.7.11 -- PHP Version: 7.0.4 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: `library` -- -- -------------------------------------------------------- -- -- Table structure for table `books` -- CREATE TABLE `books` ( `SN` int(11) NOT NULL, `ISSN` varchar(8) DEFAULT NULL, `CallNo` varchar(10) DEFAULT NULL, `Title` tinytext, `Author` tinytext, `Publisher` tinytext, `Place` varchar(10) DEFAULT NULL, `Year` varchar(10) DEFAULT NULL, `Accessible_from` varchar(10) DEFAULT NULL, `Accessible_upto` varchar(10) DEFAULT NULL, `URL` tinytext, `Subject` varchar(10) DEFAULT NULL, `Notes` varchar(10) DEFAULT NULL, `AccessionNo` varchar(10) DEFAULT NULL ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -- Indexes for dumped tables -- -- -- Indexes for table `books` -- ALTER TABLE `books` ADD PRIMARY KEY (`SN`), ADD KEY `SN` (`SN`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `books` -- ALTER TABLE `books` MODIFY `SN` int(11) NOT NULL AUTO_INCREMENT; /*!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.7.7 -- https://www.phpmyadmin.net/ -- -- Servidor: 127.0.0.1 -- Tiempo de generación: 02-05-2018 a las 09:16:44 -- Versión del servidor: 10.1.30-MariaDB -- Versión de PHP: 7.2.2 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: `mitienda` -- -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `articulos` -- CREATE TABLE `articulos` ( `idArticulo` int(11) NOT NULL, `denominacion` varchar(30) NOT NULL, `categoria` int(11) NOT NULL, `precio` double NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Volcado de datos para la tabla `articulos` -- INSERT INTO `articulos` (`idArticulo`, `denominacion`, `categoria`, `precio`) VALUES (1, 'PELELE DE BEBE', 1, 50), (2, 'PANTALON URBAN', 2, 50), (3, 'CAMISA URBAN', 3, 50); -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `categorias` -- CREATE TABLE `categorias` ( `idcategorias` int(11) NOT NULL, `nombreCategoria` varchar(45) NOT NULL, `temporada` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Volcado de datos para la tabla `categorias` -- INSERT INTO `categorias` (`idcategorias`, `nombreCategoria`, `temporada`) VALUES (0, 'OULET', 0), (1, 'MILK', 2018), (2, 'URBAN NORTH', 2018), (3, 'CIES', 2018), (4, 'EARLY BIRDS', 2018), (5, 'HIVE', 2018), (6, 'MALPICA', 2018), (7, 'ONS', 2018), (8, 'SALVORA', 2018), (9, 'COMPLEMENTOS', 0); -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `clientes` -- CREATE TABLE `clientes` ( `idcliente` int(11) NOT NULL, `dni` varchar(9) NOT NULL, `nombre` varchar(30) NOT NULL, `direccion` varchar(30) NOT NULL, `localidad` varchar(20) NOT NULL, `telefono` varchar(9) NOT NULL, `email` varchar(30) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Volcado de datos para la tabla `clientes` -- INSERT INTO `clientes` (`idcliente`, `dni`, `nombre`, `direccion`, `localidad`, `telefono`, `email`) VALUES (1, '36111111A', 'Ana Alvarez', 'calle Paz 21 1ºA', '36', '986111111', 'ana@gmail.com'), (2, '36222222B', 'Beatriz Barca', 'calle Pez 22 2ºA', '36', '986222222', 'bea@gmail.com'), (3, '36333333C', 'Carlos Costa', 'calle Cadiz 23 3ºA', '36', '986333333', 'carlos@gmail.com'); -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `pedidos` -- CREATE TABLE `pedidos` ( `idPedido` int(11) NOT NULL, `idCliente` int(11) NOT NULL, `idCArticulo` int(11) NOT NULL, `fecha` date NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Volcado de datos para la tabla `pedidos` -- INSERT INTO `pedidos` (`idPedido`, `idCliente`, `idCArticulo`, `fecha`) VALUES (1, 1, 1, '2018-04-27'), (2, 2, 2, '2018-04-27'); -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `provincias` -- CREATE TABLE `provincias` ( `idprovincias` int(2) NOT NULL, `nombreProvincia` varchar(45) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Volcado de datos para la tabla `provincias` -- INSERT INTO `provincias` (`idprovincias`, `nombreProvincia`) VALUES (1, 'Álava'), (2, 'Albacete'), (3, 'Alicante'), (4, 'Almería'), (5, 'Ávila'), (6, 'Badajoz'), (7, 'Baleares (Illes)'), (8, 'Barcelona'), (9, 'Burgos'), (10, 'Cáceres'), (11, 'Cádiz'), (12, 'Castellón'), (13, 'Ciudad Real'), (14, 'Córdoba'), (15, 'A Coruña'), (16, 'Cuenca'), (17, 'Girona'), (18, 'Granada'), (19, 'Guadalajara'), (20, 'Guipúzcoa'), (21, 'Huelva'), (22, 'Huesca'), (23, 'Jaén'), (24, 'León'), (25, 'Lleida'), (26, 'La Rioja'), (27, 'Lugo'), (28, 'Madrid'), (29, 'Málaga'), (30, 'Murcia'), (31, 'Navarra'), (32, 'Ourense'), (33, 'Asturias'), (34, 'Palencia'), (35, 'Las Palmas'), (36, 'Pontevedra'), (37, 'Salamanca'), (38, 'Santa Cruz de Tenerife'), (39, 'Cantabria'), (40, 'Segovia'), (41, 'Sevilla'), (42, 'Soria'), (43, 'Tarragona'), (44, 'Teruel'), (45, 'Toledo'), (46, 'Valencia'), (47, 'Valladolid'), (48, 'Vizcaya'), (49, 'Zamora'), (50, 'Zaragoza'), (51, 'Ceuta'), (52, 'Melilla'); -- -- Índices para tablas volcadas -- -- -- Indices de la tabla `articulos` -- ALTER TABLE `articulos` ADD PRIMARY KEY (`idArticulo`), ADD UNIQUE KEY `idArticulo` (`idArticulo`); -- -- Indices de la tabla `categorias` -- ALTER TABLE `categorias` ADD PRIMARY KEY (`idcategorias`); -- -- Indices de la tabla `clientes` -- ALTER TABLE `clientes` ADD PRIMARY KEY (`idcliente`), ADD UNIQUE KEY `idcliente` (`idcliente`); -- -- Indices de la tabla `pedidos` -- ALTER TABLE `pedidos` ADD PRIMARY KEY (`idPedido`), ADD UNIQUE KEY `idPedido` (`idPedido`); -- -- Indices de la tabla `provincias` -- ALTER TABLE `provincias` ADD PRIMARY KEY (`idprovincias`); 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 */;
CREATE USER 'camineria'@'localhost' IDENTIFIED BY 'camineria'; CREATE DATABASE `camineria` /*!40100 DEFAULT CHARACTER SET utf8mb4 */; GRANT ALL PRIVILEGES ON camineria.* TO camineria@localhost; FLUSH PRIVILEGES;
USE testDB; #First select is just wrong syntax, was trying to remember how sql worked #select * from jsa_form,weather,hazard where ticket_num = 1 and weather_id.jsa_form = weather_id.weather and hazard_id.jsa_form = hazard_id.hazard; #this is what I think a general form query will look for someone pulling info/form data from the database select * from jsa_form, users, weather, hazard where jsa_form.user_id = users.user_id and jsa_form.weather_id = weather.weather_id and jsa_form.hazard_id = hazard.hazard_id;
-- 创建用户表 CREATE TABLE IF NOT EXISTS user( id INT UNSIGNED KEY AUTO_INCREMENT, username VARCHAR(20) NOT NULL UNIQUE, password CHAR(32) NOT NULL, sex ENUM('男','女','保密') DEFAULT '保密', age TINYINT UNSIGNED DEFAULT 18 ); -- 向表中插入记录 INSERT INTO user(username,password) VALUE('king','king'); INSERT user(username,password,sex,age) VALUES('queen','queen','男',33); INSERT user(username,password,sex,age) VALUES('queen1','queen1','男1',33); INSERT user(username,password,sex,age) VALUES('queen1','queen1',1,33); INSERT user(username,password,sex,age) VALUES('queen2','queen2',null,33); INSERT user(username,password,sex,age) VALUES('queen3','queen3','保密',33); INSERT user(username,password,sex,age) VALUES('queen4','queen4',DEFAULT,33); -- 测试AUTO_INCREMENT INSERT user(id,username,password) VALUES(33,'A','A'); -- DEFAULT 和 NULL 实现自增长 INSERT user(id,username,password) VALUES(DEFAULT,'B','B'); INSERT user(id,username,password) VALUES(NULL,'C','C'); -- 给所有字段赋值 INSERT user VALUE(NULL,'D','D','男',36); INSERT user VALUES(DEFAULT,'E','E',DEFAULT,DEFAULT); -- 一次向表中插入3条记录 INSERT user(username,password) VALUES('f','f'), ('g','g'), ('h','h'); INSERT user VALUES(NULL,'AA','AA',2,34), (NULL,'AA1','AA1',3,34), (NULL,'AA2','AA2',1,44), (NULL,'AA3','AA3',1,64); -- 通过INSERT ... SET 形式插入记录 INSERT user SET username='bb1',password='bb1'; INSERT user SET id=56,username='cc1',sex=3,age=35,password='sdfjlkds'; -- 测试更新 -- 将所有用户年龄改为50 UPDATE user SET age=50; -- 将所有用户的年龄改为30 ,sex改女 UPDATE user SET age=30,sex='女'; -- 将编号为1的用户sex改为男,年龄19 UPDATE user SET age=19,sex='男' WHERE id=1; -- 将id<5的用户,让年龄再已有年龄基础-5 age-=5; UPDATE user SET age=age-5 WHERE id<5; -- 将username='queen4'的用户其年龄设置成默认值 UPDATE user SET age=DEFAULT WHERE username='queen4'; -- 将id>=50的用户删除 DELETE FROM user WHERE id>=50; -- 将age=30的用户删除 DELETE FROM user WHERE age=30; -- 删除表中所有记录 DELETE FROM user; -- 将AUTO_INCREMENT 的值重置为1 ALTER TABLE user AUTO_INCREMENT=1; INSERT user(username,password,sex,age) VALUES('queen','queen','男',33); -- 将用户编号为3的 性别改为男 年龄改为30 UPDATE user SET age=30 WHERE id=3; -- 将用户名为king的用户年龄已有年龄-5,性别改为女 UPDATE user SET age=age-5,sex='女' WHERE username='king'; -- 将编号大于等于3的用户删除 DELETE FROM user WHERE id>=3; -- 两种方式彻底清空数据表 DELETE FROM user; ALTER TABLE user AUTO_INCREMENT=1; TRUNCATE user; -- 创建user表 CREATE TABLE IF NOT EXISTS user( id INT UNSIGNED AUTO_INCREMENT KEY, username VARCHAR(20) NOT NULL UNIQUE, regTime INT UNSIGNED NOT NULL, age TINYINT UNSIGNED DEFAULT 18, addr VARCHAR(100) NOT NULL DEFAULT '北京', email VARCHAR(50) NOT NULL DEFAULT 'default@qq.com', sex ENUM('男','女','保密') DEFAULT '保密', hasHouse TINYINT(1) DEFAULT 0 COMMENT '0代表无房,1代表有房', hasCar TINYINT(1) DEFAULT 0 COMMENT '0代表无车,1带有有车', married TINYINT(1) DEFAULT 0 COMMENT '0代表未婚,1代表已婚' ); INSERT user(username,regTime) VALUES('KING',123234234); -- 查询id,username,sex SELECT id,username,sex FROM user; -- 查询id 编号,username 用户名,sex 性别,age SELECT id AS '编号', username AS '用户名', sex AS '性别', age FROM user; -- 查询id age,age id,username name SELECT id age,age id,username name FROM user; SELECT id AS age,age AS id,username AS name FROM user; -- 给表起别名 SELECT id,username,age,sex FROM user AS u; -- 测试字段来自于哪张表 SELECT user.id,user.username,user.age FROM user; SELECT u.id,u.username,u.age FROM user AS u; -- 表属于哪个数据库 SELECT id,username,age FROM test.user; SELECT id,username,age FROM user;
DROP DATABASE IF EXISTS dazn_tech_test; CREATE DATABASE dazn_tech_test;
ALTER TABLE t_sent_email MODIFY COLUMN timestamp TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP;
--List the following details of each employee: employee number, last name, first name, sex, and salary. select e.emp_no, e.last_name, e.first_name, e.sex, s.salary from salaries as s inner join employees as e on e.emp_no=s.salary; --List first name, last name, and hire date for employees who were hired in 1986. select first_name, last_name, hire_date from employees where hire_date = '1986'; --there are no results coming from this query, I even went back to the excel file and used =countif([column],1986) -- and it didn't return any values. --List the manager of each department with the following information: --department number, department name, the manager's employee number, last name, first name. select departments.dept_no, departments.dept_name, deptmanager.emp_no, employees.last_name, employees.first_name from departments inner join deptmanager on deptmanager.dept_no = departments.dept_no inner join employees on deptmanager.emp_no = employees.emp_no; --List the department of each employee with the following information: employee number, last name, first name, and department name. select deptemp.emp_no, employees.last_name, employees.first_name,departments.dept_name from departments inner join deptemp on deptemp.dept_no = departments.dept_no inner join employees on deptemp.emp_no = employees.emp_no; --List first name, last name, and sex for employees whose first name is "Hercules" and last names begin with "B." select first_name, last_name, sex from employees where last_name like 'B%' and first_name = 'Hercules'; --List all employees in the Sales department, including their employee number, last name, first name, and department name. select deptemp.emp_no, employees.last_name, employees.first_name,departments.dept_name from departments inner join deptemp on deptemp.dept_no = departments.dept_no inner join employees on deptemp.emp_no = employees.emp_no where dept_name = 'Sales'; --List all employees in the Sales and Development departments, including their employee number, last name, first name, and department name. select deptemp.emp_no, employees.last_name, employees.first_name,departments.dept_name from departments inner join deptemp on deptemp.dept_no = departments.dept_no inner join employees on deptemp.emp_no = employees.emp_no where dept_name = 'Sales' or dept_name = 'Development'; --In descending order, list the frequency count of employee last names, i.e., how many employees share each last name. SELECT last_name,COUNT (last_name) FROM Employees GROUP BY last_name ORDER BY count desc;
-- -- Copyright (c) 2017, WSO2 Inc. (http://www.wso2.org) All Rights Reserved. -- -- WSO2 Inc. licenses this file to you 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. -- -- added 2GB container spec for DSS insert into AC_RUNTIME_CONTAINER_SPECIFICATIONS values(12 , 5); -- update the incorrect runtime name update AC_RUNTIME set name = 'Custom Docker http-9763 https-9443' where id =11; -- changes needed to support the nodejs runtime INSERT INTO AC_APP_TYPE ( id , name , description ) VALUES (9, 'nodejs', 'Allows you to deploy Node.Js applications'); INSERT INTO AC_RUNTIME ( id , name , image_name , tag , description ) VALUES (20, 'Node.JS 7.7.1 (Alpine 3.4/Node.JS 7.7.1)', 'nodejs', '7.7.1', 'OS:Alpine 3.4, Node.JS 7.7.1'); INSERT INTO AC_APP_TYPE_RUNTIME ( app_type_id , runtime_id ) VALUES (9, 20); INSERT INTO AC_RUNTIME_TRANSPORT ( transport_id , runtime_id ) VALUES (3, 20); INSERT INTO AC_RUNTIME_TRANSPORT ( transport_id , runtime_id ) VALUES (4, 20); INSERT INTO AC_RUNTIME_CONTAINER_SPECIFICATIONS ( id , CON_SPEC_ID ) VALUES (20, 3); INSERT INTO AC_CLOUD_APP_TYPE ( cloud_id , app_type_id ) VALUES ('integration_cloud', 9); --other db changes identified INSERT INTO AC_RUNTIME_CONTAINER_SPECIFICATIONS ( id , CON_SPEC_ID ) VALUES (19, 5); INSERT INTO AC_RUNTIME_CONTAINER_SPECIFICATIONS ( id , CON_SPEC_ID ) VALUES (19, 7);
INSERT INTO ORDERS VALUES(0001, 'test1', 150, TO_DATE('2017/09/01 19:40:35', 'yyyy/mm/dd hh24:mi:ss'), TO_DATE('2017/09/01 19:40:35', 'yyyy/mm/dd hh24:mi:ss')); INSERT INTO ORDERS VALUES(0002, 'test2', 150, TO_DATE('2017/09/01 19:40:35', 'yyyy/mm/dd hh24:mi:ss'), TO_DATE('2017/09/01 19:40:35', 'yyyy/mm/dd hh24:mi:ss')); INSERT INTO ORDERS VALUES(0003, 'test3', 150, TO_DATE('2017/09/01 19:40:35', 'yyyy/mm/dd hh24:mi:ss'), TO_DATE('2017/09/01 19:40:35', 'yyyy/mm/dd hh24:mi:ss')); INSERT INTO ORDERS VALUES(0004, 'test4', 150, TO_DATE('2017/09/01 19:40:35', 'yyyy/mm/dd hh24:mi:ss'), TO_DATE('2017/09/01 19:40:35', 'yyyy/mm/dd hh24:mi:ss')); INSERT INTO ORDERS VALUES(0005, 'test5', 150, TO_DATE('2017/09/01 19:40:35', 'yyyy/mm/dd hh24:mi:ss'), TO_DATE('2017/09/01 19:40:35', 'yyyy/mm/dd hh24:mi:ss')); INSERT INTO ORDERS VALUES(0006, 'test6', 150, TO_DATE('2017/09/01 19:40:35', 'yyyy/mm/dd hh24:mi:ss'), TO_DATE('2017/09/01 19:40:35', 'yyyy/mm/dd hh24:mi:ss')); INSERT INTO ORDERS VALUES(0007, 'test7', 150, TO_DATE('2017/09/01 19:40:35', 'yyyy/mm/dd hh24:mi:ss'), TO_DATE('2017/09/01 19:40:35', 'yyyy/mm/dd hh24:mi:ss')); INSERT INTO ORDERS VALUES(0008, 'test8', 150, TO_DATE('2017/09/01 19:40:35', 'yyyy/mm/dd hh24:mi:ss'), TO_DATE('2017/09/01 19:40:35', 'yyyy/mm/dd hh24:mi:ss')); INSERT INTO ORDERS VALUES(0009, 'test9', 150, TO_DATE('2017/09/01 19:40:35', 'yyyy/mm/dd hh24:mi:ss'), TO_DATE('2017/09/01 19:40:35', 'yyyy/mm/dd hh24:mi:ss')); INSERT INTO ORDERS VALUES(0010, 'test10', 150, TO_DATE('2017/09/01 19:40:35', 'yyyy/mm/dd hh24:mi:ss'), TO_DATE('2017/09/01 19:40:35', 'yyyy/mm/dd hh24:mi:ss')); INSERT INTO PRODUCT VALUES(1001, 'test1', 'fabric', 10); INSERT INTO PRODUCT VALUES(1002, 't-shirt', 'china11', 20); INSERT INTO PRODUCT VALUES(1003, 'test1', 'fabric', 30); INSERT INTO PRODUCT VALUES(1004, 'test1', 'fabric', 40); INSERT INTO PRODUCT VALUES(1005, 'test1', 'fabric', 50); INSERT INTO PRODUCT VALUES(1006, 'test1', 'fabric', 60); INSERT INTO PRODUCT VALUES(1007, 'test1', 'fabric', 70); INSERT INTO PRODUCT VALUES(1008, 'test1', 'fabric', 80); INSERT INTO PRODUCT VALUES(1009, 'test1', 'fabric', 90); INSERT INTO PRODUCT VALUES(1010, 'test1', 'fabric', 100); SELECT * FROM PRODUCT WHERE COST_PRICE = 50 AND NAME = 'toy123'; SELECT * FROM PRODUCT WHERE COST_PRICE < 50 OR ID = 1005; SELECT * FROM PRODUCT WHERE ID > 1005 AND MANUFACTURER_NAME = 'someManufacturer'; UPDATE PRODUCT SET MANUFACTURER_NAME = 'china' WHERE NAME = 't-shirt'; DELETE FROM PRODUCT WHERE ID < 1050;
/* 查詢任何一門課程成績在70分以上的姓名、課程名稱和分數 */ SELECT s.s_name, c.c_name, sc.s_score FROM student s JOIN score sc ON s.s_id = sc.s_id JOIN course c ON sc.c_id = c.c_id WHERE sc.s_score >= 70
drop table device_metrics drop table devices drop table device_alerts drop table users create table users( id int primary key, name varchar(255) not null, email varchar(255) not null ) create table devices( id int primary key, name varchar(255) not null, user_id int not null references users(id) on delete cascade ) create table device_metrics( id serial primary key, device_id int not null references devices(id) on delete cascade, metric_1 int, metric_2 int, metric_3 int, metric_4 int, metric_5 int, local_time timestamp, server_time timestamp default now() ) create table device_alerts( id serial primary key, device_id int, message text ) insert into users(id,name,email) values (1,'',''), (2,'',''); do $$ declare userid integer := (select count(*) from users); begin insert into devices(id,name,user_id) values (generate_series(1,1000),MD5(random()::text), generate_series(1,userid)); end $$;
CREATE TABLE `GPS_TRACKER_DATA` ( `CLIENT_ID` varchar(40) NOT NULL, `LATITUDE` varchar(40) NOT NULL, `LONGITUDE` varchar(40) NOT NULL, `LAST_UPDATED` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, PRIMARY KEY (`CLIENT_ID`) )
DROP TABLE IF EXISTS users; CREATE TABLE users ( user_id SERIAL PRIMARY KEY, firstname VARCHAR NOT NULL, lastname VARCHAR NOT NULL, username VARCHAR NOT NULL, email VARCHAR NOT NULL, cell VARCHAR, pass VARCHAR, verified_status BOOLEAN DEFAULT FALSE, join_date TIMESTAMPTZ DEFAULT NOW(), method INTEGER REFERENCES fasting_methods(method_id), fasting_start TIME );
CREATE PROC SP_Fetch_Registered_Supplier_Names @key_word varchar(100) AS BEGIN Select fld_supplier_name From Tbl_Suppliers Where fld_supplier_name <> '' and fld_supplier_name Like '%' + @key_word + '%' END
SELECT TOP (100) PERCENT c.custFirstName + ' ' + c.custLastName AS CustomerName, c.custEmail AS Email , o.orderID, o.orderDate , t.trnsrspCustTransNo AS TransactionNumber , o.orderPaymentMethod AS PaymentMethod FROM store.dbo.sfTransactionResponse t WITH (NOLOCK, INDEX (ak_sfTransactionResponse_Status_Parsed_Success)) INNER JOIN store.dbo.sfOrders o WITH (NOLOCK) ON o.orderID = t.trnsrspOrderId INNER JOIN store.dbo.sfCustomers c WITH (NOLOCK) ON c.custID = o.orderCustId WHERE (o.orderIsComplete = 1) AND (t.trnsrspSTATUS = 'TICKET') AND (t.trnsrspSDSParsed = 0) AND (t.trnsrspSuccess = 1) AND (GETDATE() > DATEADD(N, 1, o.orderDate)) ORDER BY orderID SELECT TOP (100) PERCENT c.custFirstName + ' ' + c.custLastName AS CustomerName, c.custEmail AS Email , o.orderID, o.orderDate , t.trnsrspCustTransNo AS TransactionNumber , o.orderPaymentMethod AS PaymentMethod FROM store.dbo.sfTransactionResponse t WITH (NOLOCK, INDEX (ak_sfTransactionResponse_Status_Parsed_Success)) INNER JOIN store.dbo.sfOrders o WITH (NOLOCK) ON o.orderID = t.trnsrspOrderId INNER JOIN store.dbo.sfCustomers c WITH (NOLOCK) ON c.custID = o.orderCustId WHERE (o.orderIsComplete = 1) AND (t.trnsrspSTATUS = 'TICKET') AND (t.trnsrspSDSParsed = 0) AND (t.trnsrspSuccess = 1) AND (GETDATE() > DATEADD(N, 5, o.orderDate)) ORDER BY orderID
create view "data_platform_prod"."data_science"."order_ticket_details_est__dbt_tmp" as ( -- calculate distance between customer location vs event location with orders as ( SELECT * FROM "data_platform_prod"."data_science"."order_flash_events_est" ), customers as ( SELECT * FROM "data_platform_prod"."data_science"."stg_customers" ), zipcodes as ( select zipcode, longitude, latitude from public.us_zipcodes where primary_record='P' ), -- customers_zip as ( -- Select -- customers.*, -- CAST(longitude AS DOUBLE PRECISION) as customer_long, -- CAST(latitude AS DOUBLE PRECISION) as customer_lat -- FROM customers LEFT JOIN zipcodes ON customers.zip=zipcodes.zipcode -- ), -- orders_zip as ( -- Select -- orders.*, -- CAST(longitude AS DOUBLE PRECISION) as venue_long, -- CAST(latitude AS DOUBLE PRECISION) as venue_lat -- FROM orders LEFT JOIN zipcodes ON orders.venue_zip=zipcodes.zipcode -- ), final as ( SELECT customer_unique_id, axs_email_hash, order_ticket_unique_id, ROW_NUMBER() over (PARTITION BY order_ticket_unique_id ORDER BY order_ticket_unique_id) AS order_ticket_identifier, -- to remove duplicate order_ticket_unique_id order_unique_id, amount_gross, channel, sale_datetime, pricing_mode_id, -- price_code_type, is_season_ticket, transfer_action_id, event_unique_id, ticket_id, ticket_state, days_sold_after_onsale, days_sold_before_event, venue_unique_id, venue_type, major_category_name, is_canceled, round(ST_DistanceSphere(ST_Point(CAST(c_zip.longitude AS DOUBLE PRECISION), CAST(c_zip.latitude AS DOUBLE PRECISION)), ST_Point(CAST(v_zip.longitude AS DOUBLE PRECISION), CAST(v_zip.latitude AS DOUBLE PRECISION))) / 1000, 0) AS order_distance_in_km, order_distance_in_km / 1.6 AS order_distance_in_miles from customers INNER join orders using (customer_unique_id) LEFT JOIN zipcodes c_zip ON customers.zip=c_zip.zipcode LEFT JOIN zipcodes v_zip ON orders.venue_zip=v_zip.zipcode ) SELECT * FROM final );
ALTER TABLE ONLY dataset_items DROP COLUMN version; --;; ALTER TABLE ONLY datasets DROP COLUMN version;
USE expressfood; INSERT INTO menu(m_commande_pk,m_produit_pk,m_quantite) VALUES (1,6,2)
# --- !Ups ALTER TABLE content.media_content DROP page_content_id; ALTER TABLE content.media_content DROP content; ALTER TABLE content.media_content ADD timestamp timestamp DEFAULT current_timestamp NOT NULL; # --- !Downs ALTER TABLE content.media_content DROP timestamp; ALTER TABLE content.media_content ADD content bytea NULL; ALTER TABLE content.media_content ADD page_content_id bigint NULL;
DROP DATABASE IF EXISTS bamazon; CREATE DATABASE bamazon; USE bamazon; CREATE TABLE products ( id INT NOT NULL AUTO_INCREMENT, product_name varchar(100), department_name varchar(50), price INT NOT NULL, stock_quantity INT, PRIMARY KEY (id) ); INSERT INTO products (product_name, department_name, price, stock_quantity) VALUES ("Garbage Bags", "Household", 5.99, 300), ("Dish Soap", "Household", 1.99, 800), ("Paper Towels", "Household", 3.99, 600); INSERT INTO products (product_name, department_name, price, stock_quantity) VALUES ("Bananas", "Produce", 2.79, 100), ("Apples", "Produce", 1.49, 200); INSERT INTO products (product_name, department_name, price, stock_quantity) VALUES ("Milk", "Dairy", 3.69, 150), ("Eggs", "Dairy", 0.99, 350), ("Cheese", "Dairy", 4.29, 500); INSERT INTO products (product_name, department_name, price, stock_quantity) VALUES ("Shirt", "Clothing", 19.99, 1000), ("Jeans", "Clothing", 49.99, 1500);
/* Formatted on 17/06/2014 18:14:27 (QP5 v5.227.12220.39754) */ CREATE OR REPLACE FORCE VIEW MCRE_OWN.VOMCRE0_APP_SCHEDA_ANAG_GE ( COD_GRUPPO_ECONOMICO, COD_SNDG, VAL_PD_ONLINE, VAL_RATING_ONLINE, VAL_PD_MONIT_ONLINE, VAL_RATING_MONIT_ONLINE, VAL_IRIS, VAL_LR, VAL_LGD, VAL_EAD, VAL_PA, VAL_ACCORDATO, VAL_UTILIZZATO, VAL_QI, DTA_IRIS, DTA_PD_ONLINE, DTA_PD_MONITORAGGIO ) AS SELECT -- V1 02/12/2010 VG: Congelata -- v2 08/03/2011 MM: passata su tabella PCR -- v3 16/03/2011 LF: aggiunti dta_ris, dta_pd_online e dta_pd_monitoraggio -- v4 28/03/2011 VG: dati presi per ge -- v5 21/04/2011 VG: aggiunto cod_sndg per capogruppo -- V6 02/05/2011 LF: aggiunti i campi QIS -- V7 02/05/2011 VG: PCR NUOVA 3 con CR commentata -- V8 20/06/2011 VG: Solo GE join FG GE.COD_GRUPPO_ECONOMICO, GE.COD_SNDG, A.VAL_PD_ONLINE, A.VAL_RATING_ONLINE, I.VAL_PD_MONITORAGGIO VAL_PD_MONIT_ONLINE, I.VAL_RATING_MONITORAGGIO VAL_RATING_MONIT_ONLINE, I.VAL_IRIS_GRE VAL_IRIS, I.VAL_LIV_RISCHIO_GRE VAL_LR, I.VAL_LGD VAL_LGD, I.VAL_EAD VAL_EAD, I.VAL_PA VAL_PA, B.GEGB_ACC_CASSA + B.GEGB_ACC_FIRMA VAL_ACCORDATO, B.GEGB_UTI_CASSA + B.GEGB_UTI_FIRMA VAL_UTILIZZATO, NULL VAL_QI, I.DTA_RIFERIMENTO DTA_IRIS, A.DTA_RIF_PD_ONLINE DTA_PD_ONLINE, I.DTA_PD_MONITORAGGIO --,cr.gegb_qis_acc, cr.gegb_qis_uti FROM T_MCRE0_APP_ANAGRAFICA_GRUPPO A, T_MCRE0_APP_GRUPPO_ECONOMICO GE, (SELECT DISTINCT P.COD_SNDG, GEGB_ACC_CASSA, GEGB_ACC_FIRMA, GEGB_UTI_CASSA, GEGB_UTI_FIRMA FROM T_MCRE0_APP_PCR P, T_MCRE0_APP_FILE_GUIDA G WHERE P.COD_ABI_CARTOLARIZZATO = G.COD_ABI_CARTOLARIZZATO AND P.COD_NDG = G.COD_NDG AND G.FLG_GRUPPO_ECONOMICO = 1) B, T_MCRE0_APP_IRIS I /*, (SELECT DISTINCT gegb_cod_sndg, gegb_qis_acc, gegb_qis_uti FROM t_mcre0_app_cr) cr*/ WHERE GE.FLG_CAPOGRUPPO = 'S' AND GE.COD_SNDG = B.COD_SNDG AND GE.COD_SNDG = A.COD_SNDG AND GE.COD_SNDG = I.COD_SNDG(+); GRANT DELETE, INSERT, REFERENCES, SELECT, UPDATE, ON COMMIT REFRESH, QUERY REWRITE, DEBUG, FLASHBACK, MERGE VIEW ON MCRE_OWN.VOMCRE0_APP_SCHEDA_ANAG_GE TO MCRE_USR;
Commit; --Delveriable 1 SELECT DISTINCT e.emp_no, e.first_name, e.last_name, ti.title, ti.from_date, ti.to_date --INTO retirement_titles FROM employees AS e JOIN titles AS ti ON e.emp_no = ti.emp_no WHERE e.birth_date BETWEEN '1952-01-01' AND '1955-12-31' ORDER BY e.emp_no; --Distinct Selection SELECT DISTINCT ON (emp_no) emp_no, first_name, last_name, title --INTO unique_titles FROM retirement_titles ORDER BY emp_no ASC, to_date DESC; SELECT COUNT(emp_no), title --INTO Retiring_titles FROM unique_titles GROUP BY title ORDER BY 1 DESC; SELECT e.emp_no, e.first_name, e.last_name, e.birth_date, de.from_date, de.to_date, ti.title --INTO mentorship_eligibilty FROM employees AS e JOIN dept_emp AS de ON e.emp_no = de.emp_no JOIN titles As ti ON e.emp_no = ti.emp_no WHERE (e.birth_date BETWEEN '1965-01-01' AND '1965-12-31') AND (de.to_date = '9999-01-01') ORDER BY e.emp_no COUNT(emp_no);
with outcomes as (select distinct outcome_summary, outcome_internal, count(*) as total from raw.alerts_processed group by outcome_summary, outcome_internal ) select outcome_internal, total, (100*total)/sum(total) over () as percentage from outcomes o group by outcome_internal, total order by percentage desc
-- Script generated by com.jnj.gtsc.harmony.migration.script.migrate.MigrateAccessRightsScript -- Script generated on 28/May/2013 00:11:00 -- 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 'MACHERMA/AMMF LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MACHERMA', 'AMMF LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MACHERMA/AMMF LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('MACHERMA', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000013114', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012936', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012807', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012806', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012652', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012651', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012192', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012043', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012031', sysdate, null); -- Inserting RoleToUserAssignment 'MACHERMA/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('MACHERMA', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MACHERMA/BF LOCAL AUTHORIZER' harmony.usermgt.create_role_to_user_assignment('MACHERMA', 'BF LOCAL AUTHORIZER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MACHERMA/BF LOCAL AUTHORIZER harmony.usermgt.create_dds_item_assignment('MACHERMA', 'BF LOCAL AUTHORIZER', 'OO_GROUPING', 'ONE', '56', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'BF LOCAL AUTHORIZER', 'OO_GROUPING', 'ONE', '53', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'BF LOCAL AUTHORIZER', 'OO_GROUPING', 'ONE', '40', sysdate, null); -- Inserting RoleToUserAssignment 'MACHERMA/BF LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MACHERMA', 'BF LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MACHERMA/BF LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('MACHERMA', 'BF LOCAL REPORTER', 'OO_GROUPING', 'ONE', '60', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'BF LOCAL REPORTER', 'OO_GROUPING', 'ONE', '59', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'BF LOCAL REPORTER', 'OO_GROUPING', 'ONE', '58', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'BF LOCAL REPORTER', 'OO_GROUPING', 'ONE', '57', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'BF LOCAL REPORTER', 'OO_GROUPING', 'ONE', '55', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'BF LOCAL REPORTER', 'OO_GROUPING', 'ONE', '54', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'BF LOCAL REPORTER', 'OO_GROUPING', 'ONE', '52', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'BF LOCAL REPORTER', 'OO_GROUPING', 'ONE', '51', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'BF LOCAL REPORTER', 'OO_GROUPING', 'ONE', '50', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'BF LOCAL REPORTER', 'OO_GROUPING', 'ONE', '38', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'BF LOCAL REPORTER', 'OO_GROUPING', 'ONE', '39', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'BF LOCAL REPORTER', 'OO_GROUPING', 'ONE', '42', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'BF LOCAL REPORTER', 'OO_GROUPING', 'ONE', '43', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'BF LOCAL REPORTER', 'OO_GROUPING', 'ONE', '44', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'BF LOCAL REPORTER', 'OO_GROUPING', 'ONE', '45', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'BF LOCAL REPORTER', 'OO_GROUPING', 'ONE', '46', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'BF LOCAL REPORTER', 'OO_GROUPING', 'ONE', '47', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'BF LOCAL REPORTER', 'OO_GROUPING', 'ONE', '48', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'BF LOCAL REPORTER', 'OO_GROUPING', 'ONE', '49', sysdate, null); -- Inserting RoleToUserAssignment 'MACHERMA/BF LOCAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('MACHERMA', 'BF LOCAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MACHERMA/BF LOCAL REQUESTOR harmony.usermgt.create_dds_item_assignment('MACHERMA', 'BF LOCAL REQUESTOR', 'OO_GROUPING', 'ONE', '56', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'BF LOCAL REQUESTOR', 'OO_GROUPING', 'ONE', '53', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'BF LOCAL REQUESTOR', 'OO_GROUPING', 'ONE', '40', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'BF LOCAL REQUESTOR', 'OO_GROUPING', 'ONE', '188', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'BF LOCAL REQUESTOR', 'OO_GROUPING', 'ONE', '187', sysdate, null); -- Inserting RoleToUserAssignment 'MACHERMA/ICL LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MACHERMA', 'ICL LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MACHERMA/ICL LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('MACHERMA', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000013114', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012936', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012807', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012806', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012652', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012651', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012192', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012048', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012043', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012031', sysdate, null); -- Inserting RoleToUserAssignment 'MACHERMA/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('MACHERMA', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MACHERMA/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('MACHERMA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE13114CHF', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12936EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12807USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12043USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12043TRY', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12043SEK', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12043PLN', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12043NOK', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12043GBP', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12043EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12043DKK', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12043CHF', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12043CAD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12031USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12031EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12031CHF', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12126CHF', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12126EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12192CHF', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12192EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12192GBP', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12192USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12537CHF', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12537USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12651CHF', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12652CHF', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12652USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12806GBP', sysdate, null); -- Inserting RoleToUserAssignment 'MACHERMA/IHCTF LOCAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('MACHERMA', 'IHCTF LOCAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MACHERMA/IHCTF LOCAL REQUESTOR harmony.usermgt.create_dds_item_assignment('MACHERMA', 'IHCTF LOCAL REQUESTOR', 'R3_BUPA_IHCTRANSFERS', 'ONE', '0000012126', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'IHCTF LOCAL REQUESTOR', 'R3_BUPA_IHCTRANSFERS', 'ONE', '0000012048', sysdate, null); -- Inserting RoleToUserAssignment 'MACHERMA/IHCTF REPORTER' harmony.usermgt.create_role_to_user_assignment('MACHERMA', 'IHCTF REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MACHERMA/IHCTF REPORTER harmony.usermgt.create_dds_item_assignment('MACHERMA', 'IHCTF REPORTER', 'R3_BUPA_IHCTRANSFERS', 'ONE', '0000012053', sysdate, null); -- Inserting RoleToUserAssignment 'MACHERMA/OO LOCAL COCO AUTHORIZER/RELEASER' harmony.usermgt.create_role_to_user_assignment('MACHERMA', 'OO LOCAL COCO AUTHORIZER/RELEASER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MACHERMA/OO LOCAL COCO AUTHORIZER/RELEASER harmony.usermgt.create_dds_item_assignment('MACHERMA', 'OO LOCAL COCO AUTHORIZER/RELEASER', 'R3_COCO', 'ONE', '2173', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'OO LOCAL COCO AUTHORIZER/RELEASER', 'R3_COCO', 'ONE', '2172', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'OO LOCAL COCO AUTHORIZER/RELEASER', 'R3_COCO', 'ONE', '2152', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'OO LOCAL COCO AUTHORIZER/RELEASER', 'R3_COCO', 'ONE', '2153', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'OO LOCAL COCO AUTHORIZER/RELEASER', 'R3_COCO', 'ONE', '2154', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'OO LOCAL COCO AUTHORIZER/RELEASER', 'R3_COCO', 'ONE', '2157', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'OO LOCAL COCO AUTHORIZER/RELEASER', 'R3_COCO', 'ONE', '2158', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'OO LOCAL COCO AUTHORIZER/RELEASER', 'R3_COCO', 'ONE', '2159', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'OO LOCAL COCO AUTHORIZER/RELEASER', 'R3_COCO', 'ONE', '2160', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'OO LOCAL COCO AUTHORIZER/RELEASER', 'R3_COCO', 'ONE', '2163', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'OO LOCAL COCO AUTHORIZER/RELEASER', 'R3_COCO', 'ONE', '2165', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'OO LOCAL COCO AUTHORIZER/RELEASER', 'R3_COCO', 'ONE', '2166', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'OO LOCAL COCO AUTHORIZER/RELEASER', 'R3_COCO', 'ONE', '2167', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'OO LOCAL COCO AUTHORIZER/RELEASER', 'R3_COCO', 'ONE', '2168', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'OO LOCAL COCO AUTHORIZER/RELEASER', 'R3_COCO', 'ONE', '2171', sysdate, null); -- Inserting RoleToUserAssignment 'MACHERMA/OO LOCAL COCO REQUESTOR' harmony.usermgt.create_role_to_user_assignment('MACHERMA', 'OO LOCAL COCO REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MACHERMA/OO LOCAL COCO REQUESTOR harmony.usermgt.create_dds_item_assignment('MACHERMA', 'OO LOCAL COCO REQUESTOR', 'R3_COCO', 'ONE', '2246', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'OO LOCAL COCO REQUESTOR', 'R3_COCO', 'ONE', '2245', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'OO LOCAL COCO REQUESTOR', 'R3_COCO', 'ONE', '2174', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'OO LOCAL COCO REQUESTOR', 'R3_COCO', 'ONE', '2173', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'OO LOCAL COCO REQUESTOR', 'R3_COCO', 'ONE', '2172', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'OO LOCAL COCO REQUESTOR', 'R3_COCO', 'ONE', '2171', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'OO LOCAL COCO REQUESTOR', 'R3_COCO', 'ONE', '2170', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'OO LOCAL COCO REQUESTOR', 'R3_COCO', 'ONE', '2169', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'OO LOCAL COCO REQUESTOR', 'R3_COCO', 'ONE', '2168', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'OO LOCAL COCO REQUESTOR', 'R3_COCO', 'ONE', '2167', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'OO LOCAL COCO REQUESTOR', 'R3_COCO', 'ONE', '2016', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'OO LOCAL COCO REQUESTOR', 'R3_COCO', 'ONE', '2027', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'OO LOCAL COCO REQUESTOR', 'R3_COCO', 'ONE', '2152', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'OO LOCAL COCO REQUESTOR', 'R3_COCO', 'ONE', '2153', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'OO LOCAL COCO REQUESTOR', 'R3_COCO', 'ONE', '2154', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'OO LOCAL COCO REQUESTOR', 'R3_COCO', 'ONE', '2157', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'OO LOCAL COCO REQUESTOR', 'R3_COCO', 'ONE', '2158', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'OO LOCAL COCO REQUESTOR', 'R3_COCO', 'ONE', '2159', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'OO LOCAL COCO REQUESTOR', 'R3_COCO', 'ONE', '2160', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'OO LOCAL COCO REQUESTOR', 'R3_COCO', 'ONE', '2163', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'OO LOCAL COCO REQUESTOR', 'R3_COCO', 'ONE', '2164', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'OO LOCAL COCO REQUESTOR', 'R3_COCO', 'ONE', '2165', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'OO LOCAL COCO REQUESTOR', 'R3_COCO', 'ONE', '2166', sysdate, null); -- Inserting RoleToUserAssignment 'MACHERMA/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('MACHERMA', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MACHERMA/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('MACHERMA', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2289', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2256', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2246', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2245', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2174', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2170', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2169', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2164', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2154', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2027', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2016', sysdate, null); -- Inserting RoleToUserAssignment 'MACHERMA/REPORT C4S TO SYM' harmony.usermgt.create_role_to_user_assignment('MACHERMA', 'REPORT C4S TO SYM', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MACHERMA/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('MACHERMA', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MACHERMA/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('MACHERMA', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2356', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2289', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2174', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2170', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2169', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2164', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2154', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2027', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2016', sysdate, null); -- Inserting RoleToUserAssignment 'MALLEN6/AMMF LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MALLEN6', 'AMMF LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MALLEN6/AMMF LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('MALLEN6', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012474', sysdate, null); harmony.usermgt.create_dds_item_assignment('MALLEN6', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012101', sysdate, null); -- Inserting RoleToUserAssignment 'MALLEN6/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('MALLEN6', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MALLEN6/ICL LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MALLEN6', 'ICL LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MALLEN6/ICL LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('MALLEN6', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012474', sysdate, null); harmony.usermgt.create_dds_item_assignment('MALLEN6', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012101', sysdate, null); -- Inserting RoleToUserAssignment 'MALLEN6/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('MALLEN6', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MALLEN6/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('MALLEN6', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12474SEK', sysdate, null); harmony.usermgt.create_dds_item_assignment('MALLEN6', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12474GBP', sysdate, null); harmony.usermgt.create_dds_item_assignment('MALLEN6', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12474EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('MALLEN6', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12101USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MALLEN6', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12101JPY', sysdate, null); harmony.usermgt.create_dds_item_assignment('MALLEN6', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12101EUR', sysdate, null); -- Inserting RoleToUserAssignment 'MALLEN6/OO LOCAL COCO REPORTER' harmony.usermgt.create_role_to_user_assignment('MALLEN6', 'OO LOCAL COCO REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MALLEN6/OO LOCAL COCO REPORTER harmony.usermgt.create_dds_item_assignment('MALLEN6', 'OO LOCAL COCO REPORTER', 'R3_COCO', 'ONE', '2109', sysdate, null); -- Inserting RoleToUserAssignment 'MALLEN6/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('MALLEN6', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MALLEN6/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('MALLEN6', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2109', sysdate, null); -- Inserting RoleToUserAssignment 'MALLEN6/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('MALLEN6', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MALLEN6/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('MALLEN6', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2109', sysdate, null); -- Inserting RoleToUserAssignment 'MALOPE1/AMMF LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MALOPE1', 'AMMF LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MALOPE1/AMMF LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('MALOPE1', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012068', sysdate, null); -- Inserting RoleToUserAssignment 'MALOPE1/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('MALOPE1', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MALOPE1/ICL LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MALOPE1', 'ICL LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MALOPE1/ICL LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('MALOPE1', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012068', sysdate, null); -- Inserting RoleToUserAssignment 'MALOPE1/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('MALOPE1', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MALOPE1/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('MALOPE1', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12068EUR', sysdate, null); -- Inserting RoleToUserAssignment 'MALOPE1/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('MALOPE1', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MALOPE1/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('MALOPE1', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2041', sysdate, null); -- Inserting RoleToUserAssignment 'MAPHANE/AMMF LOCAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('MAPHANE', 'AMMF LOCAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MAPHANE/AMMF LOCAL REQUESTOR harmony.usermgt.create_dds_item_assignment('MAPHANE', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012307', sysdate, null); -- Inserting RoleToUserAssignment 'MAPHANE/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('MAPHANE', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MAPHANE/ICL LOCAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('MAPHANE', 'ICL LOCAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MAPHANE/ICL LOCAL REQUESTOR harmony.usermgt.create_dds_item_assignment('MAPHANE', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012307', sysdate, null); -- Inserting RoleToUserAssignment 'MAPHANE/IHCTF LOCAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('MAPHANE', 'IHCTF LOCAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MAPHANE/IHCTF LOCAL REQUESTOR harmony.usermgt.create_dds_item_assignment('MAPHANE', 'IHCTF LOCAL REQUESTOR', 'R3_BUPA_IHCTRANSFERS', 'ONE', '0000012307', sysdate, null); -- Inserting RoleToUserAssignment 'MARANEO/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('MARANEO', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MAUTEA/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('MAUTEA', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MAUTEA/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('MAUTEA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12690GBP', sysdate, null); harmony.usermgt.create_dds_item_assignment('MAUTEA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12596EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('MAUTEA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12934USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MAUTEA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12891USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MAUTEA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12890USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MAUTEA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12699USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MAUTEA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12696USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MAUTEA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12695USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MAUTEA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12577USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MAUTEA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12576USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MAUTEA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12132USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MAUTEA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12157USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MAUTEA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12158USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MAUTEA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12160USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MAUTEA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12169USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MAUTEA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12170USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MAUTEA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12233USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MAUTEA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12234USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MAUTEA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12249USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MAUTEA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12567USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MAUTEA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12568USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MAUTEA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12569USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MAUTEA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12573USD', sysdate, null); -- Inserting RoleToUserAssignment 'MBAETION/AMMF LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MBAETION', 'AMMF LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MBAETION/AMMF LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('MBAETION', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000013051', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBAETION', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000013050', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBAETION', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000013039', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBAETION', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012551', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBAETION', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012425', sysdate, null); -- Inserting RoleToUserAssignment 'MBAETION/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('MBAETION', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MBAETION/BF LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MBAETION', 'BF LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MBAETION/BF LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('MBAETION', 'BF LOCAL REPORTER', 'OO_GROUPING', 'ONE', '331', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBAETION', 'BF LOCAL REPORTER', 'OO_GROUPING', 'ONE', '328', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBAETION', 'BF LOCAL REPORTER', 'OO_GROUPING', 'ONE', '321', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBAETION', 'BF LOCAL REPORTER', 'OO_GROUPING', 'ONE', '320', sysdate, null); -- Inserting RoleToUserAssignment 'MBAETION/ICL LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MBAETION', 'ICL LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MBAETION/ICL LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('MBAETION', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012500', sysdate, null); -- Inserting RoleToUserAssignment 'MBAETION/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('MBAETION', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MBAETION/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('MBAETION', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE13051CZK', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBAETION', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE13050EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBAETION', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE13039PLN', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBAETION', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12551HUF', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBAETION', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12500USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBAETION', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12500SEK', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBAETION', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12500GBP', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBAETION', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12500EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBAETION', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12500CHF', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBAETION', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12425PLN', sysdate, null); -- Inserting RoleToUserAssignment 'MBAETION/IHCTF REPORTER' harmony.usermgt.create_role_to_user_assignment('MBAETION', 'IHCTF REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MBAETION/IHCTF REPORTER harmony.usermgt.create_dds_item_assignment('MBAETION', 'IHCTF REPORTER', 'R3_BUPA_IHCTRANSFERS', 'ONE', '0000013051', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBAETION', 'IHCTF REPORTER', 'R3_BUPA_IHCTRANSFERS', 'ONE', '0000013050', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBAETION', 'IHCTF REPORTER', 'R3_BUPA_IHCTRANSFERS', 'ONE', '0000013039', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBAETION', 'IHCTF REPORTER', 'R3_BUPA_IHCTRANSFERS', 'ONE', '0000012551', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBAETION', 'IHCTF REPORTER', 'R3_BUPA_IHCTRANSFERS', 'ONE', '0000012425', sysdate, null); -- Inserting RoleToUserAssignment 'MBAETION/OO LOCAL COCO REPORTER' harmony.usermgt.create_role_to_user_assignment('MBAETION', 'OO LOCAL COCO REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MBAETION/OO LOCAL COCO REPORTER harmony.usermgt.create_dds_item_assignment('MBAETION', 'OO LOCAL COCO REPORTER', 'R3_COCO', 'ONE', '2316', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBAETION', 'OO LOCAL COCO REPORTER', 'R3_COCO', 'ONE', '2315', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBAETION', 'OO LOCAL COCO REPORTER', 'R3_COCO', 'ONE', '2313', sysdate, null); -- Inserting RoleToUserAssignment 'MBAETION/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('MBAETION', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MBAETION/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('MBAETION', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2316', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBAETION', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2315', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBAETION', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2313', sysdate, null); -- Inserting RoleToUserAssignment 'MBAETION/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('MBAETION', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MBAETION/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('MBAETION', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2316', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBAETION', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2315', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBAETION', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2313', sysdate, null); -- Inserting RoleToUserAssignment 'MBALLES2/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('MBALLES2', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MBALLES2/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('MBALLES2', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12953EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBALLES2', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12012EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBALLES2', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12852USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBALLES2', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12715USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBALLES2', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12327USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBALLES2', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12243USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBALLES2', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12242USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBALLES2', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12241USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBALLES2', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12240USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBALLES2', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12239USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBALLES2', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12154USD', sysdate, null); -- Inserting RoleToUserAssignment 'MBALLES2/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('MBALLES2', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MBALLES2/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('MBALLES2', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '4000', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBALLES2', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '1001', sysdate, null); -- Inserting RoleToUserAssignment 'MBENDER/AMMF LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MBENDER', 'AMMF LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MBENDER/AMMF LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('MBENDER', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000013038', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBENDER', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012932', sysdate, null); -- Inserting RoleToUserAssignment 'MBENDER/ICL LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MBENDER', 'ICL LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MBENDER/ICL LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('MBENDER', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012932', sysdate, null); -- Inserting RoleToUserAssignment 'MBENDER/ICL LOCAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('MBENDER', 'ICL LOCAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MBENDER/ICL LOCAL REQUESTOR harmony.usermgt.create_dds_item_assignment('MBENDER', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000013038', sysdate, null); -- Inserting RoleToUserAssignment 'MBENDER/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('MBENDER', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MBENDER/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('MBENDER', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12932EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBENDER', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12038EUR', sysdate, null); -- Inserting RoleToUserAssignment 'MBENDER/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('MBENDER', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MBENDER/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('MBENDER', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2308', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBENDER', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2284', sysdate, null); -- Inserting RoleToUserAssignment 'MBENDER/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('MBENDER', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MBENDER/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('MBENDER', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2308', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBENDER', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2284', sysdate, null); -- Inserting RoleToUserAssignment 'MBRADL29/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('MBRADL29', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MBRADL29/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('MBRADL29', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MBRADL29/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('MBRADL29', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12230USD', sysdate, null); -- Inserting RoleToUserAssignment 'MBRIGGS/AMMF LOCAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('MBRIGGS', 'AMMF LOCAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MBRIGGS/AMMF LOCAL REQUESTOR harmony.usermgt.create_dds_item_assignment('MBRIGGS', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000013060', sysdate, null); -- Inserting RoleToUserAssignment 'MBRIGGS/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('MBRIGGS', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MBRIGGS/IHCTF LOCAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('MBRIGGS', 'IHCTF LOCAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MBRIGGS/IHCTF LOCAL REQUESTOR harmony.usermgt.create_dds_item_assignment('MBRIGGS', 'IHCTF LOCAL REQUESTOR', 'R3_BUPA_IHCTRANSFERS', 'ONE', '0000013060', sysdate, null); -- Inserting RoleToUserAssignment 'MBROEKH1/AMMF LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MBROEKH1', 'AMMF LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MBROEKH1/AMMF LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('MBROEKH1', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012711', sysdate, null); -- Inserting RoleToUserAssignment 'MBROEKH1/AMMF LOCAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('MBROEKH1', 'AMMF LOCAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MBROEKH1/AMMF LOCAL REQUESTOR harmony.usermgt.create_dds_item_assignment('MBROEKH1', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012706', sysdate, null); -- Inserting RoleToUserAssignment 'MBROEKH1/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('MBROEKH1', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MBROEKH1/BF LOCAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('MBROEKH1', 'BF LOCAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MBROEKH1/BF LOCAL REQUESTOR harmony.usermgt.create_dds_item_assignment('MBROEKH1', 'BF LOCAL REQUESTOR', 'OO_GROUPING', 'ONE', '196', sysdate, null); -- Inserting RoleToUserAssignment 'MBROEKH1/ICL LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MBROEKH1', 'ICL LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MBROEKH1/ICL LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('MBROEKH1', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012711', sysdate, null); -- Inserting RoleToUserAssignment 'MBROEKH1/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('MBROEKH1', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MBROEKH1/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('MBROEKH1', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12711USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBROEKH1', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12711EUR', sysdate, null); -- Inserting RoleToUserAssignment 'MBROEKH1/OO LOCAL COCO REQUESTOR' harmony.usermgt.create_role_to_user_assignment('MBROEKH1', 'OO LOCAL COCO REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MBROEKH1/OO LOCAL COCO REQUESTOR harmony.usermgt.create_dds_item_assignment('MBROEKH1', 'OO LOCAL COCO REQUESTOR', 'R3_COCO', 'ONE', '2244', sysdate, null); -- Inserting RoleToUserAssignment 'MBROEKH1/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('MBROEKH1', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MBROEKH1/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('MBROEKH1', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2244', sysdate, null); -- Inserting RoleToUserAssignment 'MBROEKH1/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('MBROEKH1', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MBROEKH1/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('MBROEKH1', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2244', sysdate, null); -- Inserting RoleToUserAssignment 'MCAHOVA/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('MCAHOVA', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MCAHOVA/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('MCAHOVA', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MCAHOVA/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('MCAHOVA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12081EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCAHOVA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12079EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCAHOVA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12077EUR', sysdate, null); -- Inserting RoleToUserAssignment 'MCAHOVA/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('MCAHOVA', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MCAHOVA/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('MCAHOVA', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2140', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCAHOVA', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2120', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCAHOVA', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2020', sysdate, null); -- Inserting RoleToUserAssignment 'MCAHOVA/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('MCAHOVA', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MCAHOVA/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('MCAHOVA', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2140', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCAHOVA', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2120', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCAHOVA', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2020', sysdate, null); -- Inserting RoleToUserAssignment 'MCAMALIG/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('MCAMALIG', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MCAMALIG/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('MCAMALIG', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12131USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCAMALIG', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12145USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCAMALIG', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12146USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCAMALIG', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12147USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCAMALIG', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12168USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCAMALIG', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12169USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCAMALIG', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12236USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCAMALIG', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12237USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCAMALIG', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12247USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCAMALIG', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12250USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCAMALIG', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12490USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCAMALIG', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12503USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCAMALIG', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12934USD', sysdate, null); -- Inserting RoleToUserAssignment 'MCANTIEL/AMMF LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MCANTIEL', 'AMMF LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MCANTIEL/AMMF LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('MCANTIEL', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012877', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCANTIEL', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012862', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCANTIEL', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012102', sysdate, null); -- Inserting RoleToUserAssignment 'MCANTIEL/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('MCANTIEL', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MCANTIEL/BF LOCAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('MCANTIEL', 'BF LOCAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MCANTIEL/BF LOCAL REQUESTOR harmony.usermgt.create_dds_item_assignment('MCANTIEL', 'BF LOCAL REQUESTOR', 'OO_GROUPING', 'ONE', '244', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCANTIEL', 'BF LOCAL REQUESTOR', 'OO_GROUPING', 'ONE', '242', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCANTIEL', 'BF LOCAL REQUESTOR', 'OO_GROUPING', 'ONE', '238', sysdate, null); -- Inserting RoleToUserAssignment 'MCANTIEL/ICL LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MCANTIEL', 'ICL LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MCANTIEL/ICL LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('MCANTIEL', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012877', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCANTIEL', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012862', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCANTIEL', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012102', sysdate, null); -- Inserting RoleToUserAssignment 'MCANTIEL/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('MCANTIEL', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MCANTIEL/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('MCANTIEL', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12877EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCANTIEL', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12862EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCANTIEL', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12102EUR', sysdate, null); -- Inserting RoleToUserAssignment 'MCANTIEL/OO LOCAL COCO REQUESTOR' harmony.usermgt.create_role_to_user_assignment('MCANTIEL', 'OO LOCAL COCO REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MCANTIEL/OO LOCAL COCO REQUESTOR harmony.usermgt.create_dds_item_assignment('MCANTIEL', 'OO LOCAL COCO REQUESTOR', 'R3_COCO', 'ONE', '2263', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCANTIEL', 'OO LOCAL COCO REQUESTOR', 'R3_COCO', 'ONE', '2260', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCANTIEL', 'OO LOCAL COCO REQUESTOR', 'R3_COCO', 'ONE', '2047', sysdate, null); -- Inserting RoleToUserAssignment 'MCANTIEL/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('MCANTIEL', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MCANTIEL/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('MCANTIEL', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2263', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCANTIEL', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2260', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCANTIEL', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2047', sysdate, null); -- Inserting RoleToUserAssignment 'MCANTIEL/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('MCANTIEL', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MCANTIEL/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('MCANTIEL', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2263', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCANTIEL', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2260', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCANTIEL', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2047', sysdate, null); -- Inserting RoleToUserAssignment 'MCATALUN/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('MCATALUN', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MCATALUN/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('MCATALUN', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MCATALUN/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('MCATALUN', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12690GBP', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCATALUN', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC13098USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCATALUN', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC13077USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCATALUN', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC13032USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCATALUN', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12934USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCATALUN', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12565USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCATALUN', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12520USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCATALUN', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12510USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCATALUN', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12503USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCATALUN', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12145USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCATALUN', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12146USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCATALUN', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12147USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCATALUN', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12168USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCATALUN', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12169USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCATALUN', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12230USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCATALUN', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12236USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCATALUN', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12237USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCATALUN', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12245USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCATALUN', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12246USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCATALUN', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12247USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCATALUN', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12250USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCATALUN', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12251USD', sysdate, null); -- Inserting RoleToUserAssignment 'MCHAN2/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('MCHAN2', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MCHAN2/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('MCHAN2', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MCHAN2/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('MCHAN2', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12026CAD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCHAN2', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12022CAD', sysdate, null); -- Inserting RoleToUserAssignment 'MCHAN2/IHCTF LOCAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('MCHAN2', 'IHCTF LOCAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MCHAN2/IHCTF LOCAL REQUESTOR harmony.usermgt.create_dds_item_assignment('MCHAN2', 'IHCTF LOCAL REQUESTOR', 'R3_BUPA_IHCTRANSFERS', 'ONE', '0000012026', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCHAN2', 'IHCTF LOCAL REQUESTOR', 'R3_BUPA_IHCTRANSFERS', 'ONE', '0000012022', sysdate, null); -- Inserting RoleToUserAssignment 'MCHARVAT/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('MCHARVAT', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MCHARVAT/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('MCHARVAT', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MCHARVAT/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('MCHARVAT', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12061EUR', sysdate, null); -- Inserting RoleToUserAssignment 'MCHARVAT/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('MCHARVAT', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MCHARVAT/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('MCHARVAT', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2203', sysdate, null); -- Inserting RoleToUserAssignment 'MCHAWLA/AMMF LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MCHAWLA', 'AMMF LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MCHAWLA/AMMF LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('MCHAWLA', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012866', sysdate, null); -- Inserting RoleToUserAssignment 'MCHAWLA/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('MCHAWLA', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MCHAWLA/ICL LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MCHAWLA', 'ICL LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MCHAWLA/ICL LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('MCHAWLA', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012866', sysdate, null); -- Inserting RoleToUserAssignment 'MCHAWLA/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('MCHAWLA', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MCHAWLA/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('MCHAWLA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12866USD', sysdate, null); -- Inserting RoleToUserAssignment 'MCHAWLA/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('MCHAWLA', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MCHAWLA/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('MCHAWLA', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2283', sysdate, null); -- Inserting RoleToUserAssignment 'MCHAWLA/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('MCHAWLA', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MCHAWLA/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('MCHAWLA', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2283', sysdate, null); -- Inserting RoleToUserAssignment 'MCHENG3/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('MCHENG3', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MCHONG3/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('MCHONG3', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MCHONG3/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('MCHONG3', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '6061', sysdate, null); -- Inserting RoleToUserAssignment 'MCHUNG8/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('MCHUNG8', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MCHUNG8/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('MCHUNG8', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '6019', sysdate, null); -- Inserting RoleToUserAssignment 'MCHUNG8/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('MCHUNG8', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MCHUNG8/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('MCHUNG8', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '6019', sysdate, null); -- Inserting RoleToUserAssignment 'MCONDON4/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('MCONDON4', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MCONDON4/ICL LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MCONDON4', 'ICL LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MCONDON4/ICL LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('MCONDON4', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012474', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCONDON4', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012101', sysdate, null); -- Inserting RoleToUserAssignment 'MCONDON4/ICL LOCAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('MCONDON4', 'ICL LOCAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MCONDON4/ICL LOCAL REQUESTOR harmony.usermgt.create_dds_item_assignment('MCONDON4', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012284', sysdate, null); -- Inserting RoleToUserAssignment 'MCONDON4/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('MCONDON4', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MCONDON4/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('MCONDON4', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12474SEK', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCONDON4', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12474GBP', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCONDON4', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12474EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCONDON4', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12284EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCONDON4', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12101USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCONDON4', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12101JPY', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCONDON4', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12101EUR', sysdate, null); -- Inserting RoleToUserAssignment 'MCONDON4/IHCTF LOCAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('MCONDON4', 'IHCTF LOCAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MCONDON4/IHCTF LOCAL REQUESTOR harmony.usermgt.create_dds_item_assignment('MCONDON4', 'IHCTF LOCAL REQUESTOR', 'R3_BUPA_IHCTRANSFERS', 'ONE', '0000012284', sysdate, null); -- Inserting RoleToUserAssignment 'MCONDON4/OO LOCAL COCO REPORTER' harmony.usermgt.create_role_to_user_assignment('MCONDON4', 'OO LOCAL COCO REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MCONDON4/OO LOCAL COCO REPORTER harmony.usermgt.create_dds_item_assignment('MCONDON4', 'OO LOCAL COCO REPORTER', 'R3_COCO', 'ONE', '2109', sysdate, null); -- Inserting RoleToUserAssignment 'MCONDON4/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('MCONDON4', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MCONDON4/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('MCONDON4', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2109', sysdate, null); -- Inserting RoleToUserAssignment 'MCONDON4/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('MCONDON4', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MCONDON4/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('MCONDON4', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2109', sysdate, null); -- Inserting RoleToUserAssignment 'MCORBELL/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('MCORBELL', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MCRUZ20/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('MCRUZ20', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MCRUZ20/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('MCRUZ20', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '6075', sysdate, null); -- Inserting RoleToUserAssignment 'MDALUYO/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('MDALUYO', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MDALUYO/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('MDALUYO', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '6065', sysdate, null); -- Inserting RoleToUserAssignment 'MDAPON/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('MDAPON', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MDAPON/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('MDAPON', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '6028', sysdate, null); -- Inserting RoleToUserAssignment 'MDAVID8/AMMF LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MDAVID8', 'AMMF LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MDAVID8/AMMF LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('MDAVID8', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012174', sysdate, null); -- Inserting RoleToUserAssignment 'MDAVID8/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('MDAVID8', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MDAVID8/ICL LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MDAVID8', 'ICL LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MDAVID8/ICL LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('MDAVID8', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012174', sysdate, null); -- Inserting RoleToUserAssignment 'MDAVID8/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('MDAVID8', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MDAVID8/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('MDAVID8', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12699USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDAVID8', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12565USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDAVID8', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12510USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDAVID8', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12246USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDAVID8', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12245USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDAVID8', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12174USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDAVID8', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12134', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDAVID8', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12131USD', sysdate, null); -- Inserting RoleToUserAssignment 'MDAVID8/IHCTF REPORTER' harmony.usermgt.create_role_to_user_assignment('MDAVID8', 'IHCTF REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MDAVID8/IHCTF REPORTER harmony.usermgt.create_dds_item_assignment('MDAVID8', 'IHCTF REPORTER', 'R3_BUPA_IHCTRANSFERS', 'ONE', '0000012174', sysdate, null); -- Inserting RoleToUserAssignment 'MDELGA20/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('MDELGA20', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MDELGA20/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('MDELGA20', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12930USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDELGA20', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12698USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDELGA20', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12696USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDELGA20', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12695USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDELGA20', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12577USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDELGA20', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12249USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDELGA20', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12160USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDELGA20', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12152USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDELGA20', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12148USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDELGA20', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12132USD', sysdate, null); -- Inserting RoleToUserAssignment 'MDEPTULA/AMMF LOCAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('MDEPTULA', 'AMMF LOCAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MDEPTULA/AMMF LOCAL REQUESTOR harmony.usermgt.create_dds_item_assignment('MDEPTULA', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012516', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDEPTULA', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012515', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDEPTULA', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012514', sysdate, null); -- Inserting RoleToUserAssignment 'MDEPTULA/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('MDEPTULA', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MDEPTULA/ICL LOCAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('MDEPTULA', 'ICL LOCAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MDEPTULA/ICL LOCAL REQUESTOR harmony.usermgt.create_dds_item_assignment('MDEPTULA', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012516', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDEPTULA', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012515', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDEPTULA', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012514', sysdate, null); -- Inserting RoleToUserAssignment 'MDEPTULA/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('MDEPTULA', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MDEPTULA/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('MDEPTULA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12487PLN', sysdate, null); -- Inserting RoleToUserAssignment 'MDEPTULA/IHCTF LOCAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('MDEPTULA', 'IHCTF LOCAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MDEPTULA/IHCTF LOCAL REQUESTOR harmony.usermgt.create_dds_item_assignment('MDEPTULA', 'IHCTF LOCAL REQUESTOR', 'R3_BUPA_IHCTRANSFERS', 'ONE', '0000012516', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDEPTULA', 'IHCTF LOCAL REQUESTOR', 'R3_BUPA_IHCTRANSFERS', 'ONE', '0000012515', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDEPTULA', 'IHCTF LOCAL REQUESTOR', 'R3_BUPA_IHCTRANSFERS', 'ONE', '0000012514', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDEPTULA', 'IHCTF LOCAL REQUESTOR', 'R3_BUPA_IHCTRANSFERS', 'ONE', '0000012487', sysdate, null); -- Inserting RoleToUserAssignment 'MDESCHE/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('MDESCHE', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MDESCHE/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('MDESCHE', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MDESCHE/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('MDESCHE', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12023CAD', sysdate, null); -- Inserting RoleToUserAssignment 'MDEVERA1/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('MDEVERA1', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MDEVERA1/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('MDEVERA1', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12953EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDEVERA1', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12012EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDEVERA1', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12852USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDEVERA1', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12715USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDEVERA1', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12327USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDEVERA1', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12243USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDEVERA1', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12242USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDEVERA1', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12241USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDEVERA1', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12240USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDEVERA1', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12239USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDEVERA1', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12154USD', sysdate, null); -- Inserting RoleToUserAssignment 'MDEVERA1/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('MDEVERA1', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MDEVERA1/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('MDEVERA1', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '4000', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDEVERA1', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '1001', sysdate, null); -- Inserting RoleToUserAssignment 'MDEWOLF/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('MDEWOLF', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MDIELS3/AMMF Central reporter' harmony.usermgt.create_role_to_user_assignment('MDIELS3', 'AMMF Central reporter', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MDIELS3/AMMF Central reporter harmony.usermgt.create_dds_item_assignment('MDIELS3', 'AMMF Central reporter', 'R3_BUPA_TRANSFERS', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MDIELS3/APPLOG UPDATE ENDSTAMP' harmony.usermgt.create_role_to_user_assignment('MDIELS3', 'APPLOG UPDATE ENDSTAMP', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MDIELS3/APPLOG VIEW' harmony.usermgt.create_role_to_user_assignment('MDIELS3', 'APPLOG VIEW', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MDIELS3/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('MDIELS3', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MDIELS3/BATCH BANK COMMUNICATION' harmony.usermgt.create_role_to_user_assignment('MDIELS3', 'BATCH BANK COMMUNICATION', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MDIELS3/BATCH PAYMENT PROCESSING' harmony.usermgt.create_role_to_user_assignment('MDIELS3', 'BATCH PAYMENT PROCESSING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MDIELS3/BF CENTRAL AUTHORIZER' harmony.usermgt.create_role_to_user_assignment('MDIELS3', 'BF CENTRAL AUTHORIZER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MDIELS3/BF CENTRAL AUTHORIZER harmony.usermgt.create_dds_item_assignment('MDIELS3', 'BF CENTRAL AUTHORIZER', 'OO_GROUPING', 'ONE', '4', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'BF CENTRAL AUTHORIZER', 'OO_GROUPING', 'ONE', '3', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'BF CENTRAL AUTHORIZER', 'OO_GROUPING', 'ONE', '2', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'BF CENTRAL AUTHORIZER', 'OO_GROUPING', 'ONE', '183', sysdate, null); -- Inserting RoleToUserAssignment 'MDIELS3/BF CENTRAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('MDIELS3', 'BF CENTRAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MDIELS3/BF CENTRAL REQUESTOR harmony.usermgt.create_dds_item_assignment('MDIELS3', 'BF CENTRAL REQUESTOR', 'OO_GROUPING', 'ONE', '4', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'BF CENTRAL REQUESTOR', 'OO_GROUPING', 'ONE', '3', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'BF CENTRAL REQUESTOR', 'OO_GROUPING', 'ONE', '2', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'BF CENTRAL REQUESTOR', 'OO_GROUPING', 'ONE', '183', sysdate, null); -- Inserting RoleToUserAssignment 'MDIELS3/FM RULES CENTRAL REQUEST' harmony.usermgt.create_role_to_user_assignment('MDIELS3', 'FM RULES CENTRAL REQUEST', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MDIELS3/HB CENTRAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MDIELS3', 'HB CENTRAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MDIELS3/HB CENTRAL REPORTER harmony.usermgt.create_dds_item_assignment('MDIELS3', 'HB CENTRAL REPORTER', 'R3_COCO', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MDIELS3/HB COCO COMBI Requestor' harmony.usermgt.create_role_to_user_assignment('MDIELS3', 'HB COCO COMBI Requestor', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MDIELS3/ICL Central reporter' harmony.usermgt.create_role_to_user_assignment('MDIELS3', 'ICL Central reporter', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MDIELS3/ICL Central reporter harmony.usermgt.create_dds_item_assignment('MDIELS3', 'ICL Central reporter', 'R3_BUPA_ICL', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MDIELS3/IHC CENTRAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('MDIELS3', 'IHC CENTRAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MDIELS3/IHC CENTRAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('MDIELS3', 'IHC CENTRAL POSITION REPORT', 'R3_IHBACCOUNT', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MDIELS3/IHCTF REPORTER' harmony.usermgt.create_role_to_user_assignment('MDIELS3', 'IHCTF REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MDIELS3/IHCTF REPORTER harmony.usermgt.create_dds_item_assignment('MDIELS3', 'IHCTF REPORTER', 'R3_BUPA_IHCTRANSFERS', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MDIELS3/MR CENTRAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MDIELS3', 'MR CENTRAL REPORTER', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MDIELS3/OO CENTRAL RELEASER' harmony.usermgt.create_role_to_user_assignment('MDIELS3', 'OO CENTRAL RELEASER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MDIELS3/OO CENTRAL RELEASER harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5066', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5060', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5055', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5054', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5053', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5052', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5051', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5050', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5049', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5048', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5047', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5046', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5045', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5044', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5043', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5042', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5041', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5040', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5038', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5037', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5033', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5032', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5031', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5030', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5029', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5028', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5027', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5026', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5025', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5024', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5023', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5022', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5021', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5020', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5019', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5018', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5017', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5016', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5015', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5014', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5013', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5011', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5010', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5009', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5006', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5004', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '4002', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '3015', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '3014', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2357', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2356', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2355', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2354', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2353', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2352', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2351', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2350', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2349', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2316', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2315', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2314', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2313', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2312', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2311', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2308', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2304', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2303', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2302', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2178', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2177', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2176', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2175', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2174', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2173', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2172', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2171', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2170', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2169', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2168', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2167', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2166', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2165', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2164', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2163', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2162', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2160', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2159', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2158', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2157', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2156', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2154', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2153', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2152', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2147', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2146', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2144', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2143', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2141', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2140', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2139', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2127', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2126', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2125', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2123', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2120', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2117', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2114', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2113', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2112', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2111', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2110', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2109', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2108', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2105', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2104', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2103', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2030', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2029', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2027', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2021', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2020', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2019', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2018', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2017', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2016', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2015', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2013', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2012', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'OO_GROUPING', 'ALL', null, sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '1000', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '1002', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '1003', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '1004', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '1005', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '1006', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '1007', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '1008', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '1009', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '1010', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2000', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2011', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2034', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2036', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2037', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2039', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2041', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2046', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2047', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2049', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2050', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2051', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2052', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2056', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2060', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2061', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2064', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2065', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2066', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2067', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2071', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2076', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2088', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2100', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2101', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2102', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2179', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2180', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2181', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2182', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2183', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2185', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2186', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2187', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2192', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2194', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2196', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2197', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2198', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2199', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2200', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2201', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2202', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2203', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2204', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2205', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2206', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2207', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2208', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2209', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2210', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2211', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2212', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2215', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2218', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2219', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2220', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2221', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2222', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2223', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2224', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2225', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2226', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2229', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2231', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2232', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2235', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2236', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2237', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2238', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2239', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2240', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2241', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2242', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2243', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2244', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2245', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2246', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2247', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2248', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2249', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2250', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2251', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2252', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2254', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2255', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2256', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2257', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2258', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2260', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2261', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2262', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2263', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2264', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2265', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2266', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2267', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2268', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2269', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2270', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2271', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2272', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2273', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2274', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2275', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2276', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2277', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2278', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2282', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2283', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2284', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2286', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2287', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2288', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2289', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2290', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2292', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2293', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2298', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2299', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2300', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2301', sysdate, null); -- Inserting RoleToUserAssignment 'MDIELS3/OO CENTRAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MDIELS3', 'OO CENTRAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MDIELS3/OO CENTRAL REPORTER harmony.usermgt.create_dds_item_assignment('MDIELS3', 'OO CENTRAL REPORTER', 'R3_COCO', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MDIELS3/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('MDIELS3', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MDIELS3/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('MDIELS3', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MDIELS3/TOPS2' harmony.usermgt.create_role_to_user_assignment('MDIELS3', 'TOPS2', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MDIELS3/UME READ ALL' harmony.usermgt.create_role_to_user_assignment('MDIELS3', 'UME READ ALL', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MDINGAL/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('MDINGAL', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MDINGAL/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('MDINGAL', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MDINGAL/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('MDINGAL', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12820NZD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDINGAL', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12530AUD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDINGAL', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12455AUD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDINGAL', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12454AUD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDINGAL', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12453NZD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDINGAL', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12451NZD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDINGAL', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12406AUD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDINGAL', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12386NZD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDINGAL', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12376AUD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDINGAL', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12267AUD', sysdate, null); -- Inserting RoleToUserAssignment 'MDINGAL/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('MDINGAL', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MDINGAL/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('MDINGAL', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '6073', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDINGAL', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '6072', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDINGAL', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '6009', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDINGAL', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '6017', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDINGAL', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '6028', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDINGAL', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '6029', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDINGAL', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '6050', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDINGAL', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '6051', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDINGAL', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '6055', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDINGAL', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '6066', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDINGAL', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '6067', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDINGAL', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '6068', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDINGAL', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '6069', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDINGAL', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '6070', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDINGAL', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '6071', sysdate, null); -- Inserting RoleToUserAssignment 'MDINOPOU/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('MDINOPOU', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MDINOPOU/BF LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MDINOPOU', 'BF LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MDINOPOU/BF LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('MDINOPOU', 'BF LOCAL REPORTER', 'OO_GROUPING', 'ONE', '250', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDINOPOU', 'BF LOCAL REPORTER', 'OO_GROUPING', 'ONE', '249', sysdate, null); -- Inserting RoleToUserAssignment 'MDINOPOU/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('MDINOPOU', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MDINOPOU/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('MDINOPOU', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12901EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDINOPOU', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12441EUR', sysdate, null); -- Inserting RoleToUserAssignment 'MDINOPOU/OO LOCAL COCO REPORTER' harmony.usermgt.create_role_to_user_assignment('MDINOPOU', 'OO LOCAL COCO REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MDINOPOU/OO LOCAL COCO REPORTER harmony.usermgt.create_dds_item_assignment('MDINOPOU', 'OO LOCAL COCO REPORTER', 'R3_COCO', 'ONE', '2272', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDINOPOU', 'OO LOCAL COCO REPORTER', 'R3_COCO', 'ONE', '2271', sysdate, null); -- Inserting RoleToUserAssignment 'MDINOPOU/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('MDINOPOU', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MDINOPOU/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('MDINOPOU', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2272', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDINOPOU', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2271', sysdate, null); -- Inserting RoleToUserAssignment 'MDINOPOU/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('MDINOPOU', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MDINOPOU/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('MDINOPOU', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2272', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDINOPOU', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2271', sysdate, null); -- Inserting RoleToUserAssignment 'MDOUKAS/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('MDOUKAS', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MDOUKAS/ICL LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MDOUKAS', 'ICL LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MDOUKAS/ICL LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('MDOUKAS', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012026', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDOUKAS', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012022', sysdate, null); -- Inserting RoleToUserAssignment 'MDOUKAS/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('MDOUKAS', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MDOUKAS/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('MDOUKAS', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12026CAD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDOUKAS', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12022CAD', sysdate, null); -- Inserting RoleToUserAssignment 'MDUNLEA/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('MDUNLEA', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MDUNLEA/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('MDUNLEA', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MDUNLEA/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('MDUNLEA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12098EUR', sysdate, null); -- Inserting RoleToUserAssignment 'MEDAN/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('MEDAN', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MEDAN/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('MEDAN', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '6050', sysdate, null); -- Inserting RoleToUserAssignment 'MFEHLING/AMMF LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MFEHLING', 'AMMF LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MFEHLING/AMMF LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('MFEHLING', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012350', sysdate, null); -- Inserting RoleToUserAssignment 'MFEHLING/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('MFEHLING', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MFEHLING/BF LOCAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('MFEHLING', 'BF LOCAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MFEHLING/BF LOCAL REQUESTOR harmony.usermgt.create_dds_item_assignment('MFEHLING', 'BF LOCAL REQUESTOR', 'OO_GROUPING', 'ONE', '194', sysdate, null); -- Inserting RoleToUserAssignment 'MFEHLING/ICL LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MFEHLING', 'ICL LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MFEHLING/ICL LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('MFEHLING', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012350', sysdate, null); -- Inserting RoleToUserAssignment 'MFEHLING/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('MFEHLING', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MFEHLING/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('MFEHLING', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12350EUR', sysdate, null); -- Inserting RoleToUserAssignment 'MFEHLING/OO LOCAL COCO REQUESTOR' harmony.usermgt.create_role_to_user_assignment('MFEHLING', 'OO LOCAL COCO REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MFEHLING/OO LOCAL COCO REQUESTOR harmony.usermgt.create_dds_item_assignment('MFEHLING', 'OO LOCAL COCO REQUESTOR', 'R3_COCO', 'ONE', '2242', sysdate, null); -- Inserting RoleToUserAssignment 'MFEHLING/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('MFEHLING', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MFEHLING/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('MFEHLING', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2242', sysdate, null); -- Inserting RoleToUserAssignment 'MFEHLING/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('MFEHLING', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MFEHLING/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('MFEHLING', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2242', sysdate, null); -- Inserting RoleToUserAssignment 'MFODOR1/AMMF LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MFODOR1', 'AMMF LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MFODOR1/AMMF LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('MFODOR1', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000013040', sysdate, null); -- Inserting RoleToUserAssignment 'MFODOR1/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('MFODOR1', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MFODOR1/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('MFODOR1', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MFODOR1/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('MFODOR1', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE13040RON', sysdate, null); harmony.usermgt.create_dds_item_assignment('MFODOR1', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE13040HUF', sysdate, null); harmony.usermgt.create_dds_item_assignment('MFODOR1', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE13040EUR', sysdate, null); -- Inserting RoleToUserAssignment 'MFODOR1/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('MFODOR1', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MFODOR1/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('MFODOR1', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2314', sysdate, null); -- Inserting RoleToUserAssignment 'MFRANCE3/AMMF LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MFRANCE3', 'AMMF LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MFRANCE3/AMMF LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('MFRANCE3', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012877', sysdate, null); harmony.usermgt.create_dds_item_assignment('MFRANCE3', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012862', sysdate, null); harmony.usermgt.create_dds_item_assignment('MFRANCE3', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012102', sysdate, null); -- Inserting RoleToUserAssignment 'MFRANCE3/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('MFRANCE3', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MFRANCE3/BF LOCAL AUTHORIZER' harmony.usermgt.create_role_to_user_assignment('MFRANCE3', 'BF LOCAL AUTHORIZER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MFRANCE3/BF LOCAL AUTHORIZER harmony.usermgt.create_dds_item_assignment('MFRANCE3', 'BF LOCAL AUTHORIZER', 'OO_GROUPING', 'ONE', '244', sysdate, null); harmony.usermgt.create_dds_item_assignment('MFRANCE3', 'BF LOCAL AUTHORIZER', 'OO_GROUPING', 'ONE', '242', sysdate, null); harmony.usermgt.create_dds_item_assignment('MFRANCE3', 'BF LOCAL AUTHORIZER', 'OO_GROUPING', 'ONE', '238', sysdate, null); -- Inserting RoleToUserAssignment 'MFRANCE3/ICL LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MFRANCE3', 'ICL LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MFRANCE3/ICL LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('MFRANCE3', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012877', sysdate, null); harmony.usermgt.create_dds_item_assignment('MFRANCE3', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012862', sysdate, null); harmony.usermgt.create_dds_item_assignment('MFRANCE3', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012102', sysdate, null); -- Inserting RoleToUserAssignment 'MFRANCE3/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('MFRANCE3', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MFRANCE3/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('MFRANCE3', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12877EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('MFRANCE3', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12862EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('MFRANCE3', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12102EUR', sysdate, null); -- Inserting RoleToUserAssignment 'MFRANCE3/OO LOCAL COCO AUTHORIZER/RELEASER' harmony.usermgt.create_role_to_user_assignment('MFRANCE3', 'OO LOCAL COCO AUTHORIZER/RELEASER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MFRANCE3/OO LOCAL COCO AUTHORIZER/RELEASER harmony.usermgt.create_dds_item_assignment('MFRANCE3', 'OO LOCAL COCO AUTHORIZER/RELEASER', 'R3_COCO', 'ONE', '2263', sysdate, null); harmony.usermgt.create_dds_item_assignment('MFRANCE3', 'OO LOCAL COCO AUTHORIZER/RELEASER', 'R3_COCO', 'ONE', '2260', sysdate, null); harmony.usermgt.create_dds_item_assignment('MFRANCE3', 'OO LOCAL COCO AUTHORIZER/RELEASER', 'R3_COCO', 'ONE', '2047', sysdate, null); -- Inserting RoleToUserAssignment 'MFRANCE3/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('MFRANCE3', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MFRANCE3/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('MFRANCE3', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2263', sysdate, null); harmony.usermgt.create_dds_item_assignment('MFRANCE3', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2260', sysdate, null); harmony.usermgt.create_dds_item_assignment('MFRANCE3', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2047', sysdate, null); -- Inserting RoleToUserAssignment 'MFRANCE3/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('MFRANCE3', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MFRANCE3/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('MFRANCE3', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2263', sysdate, null); harmony.usermgt.create_dds_item_assignment('MFRANCE3', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2260', sysdate, null); harmony.usermgt.create_dds_item_assignment('MFRANCE3', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2047', sysdate, null); -- Inserting RoleToUserAssignment 'MGO1/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('MGO1', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MGO1/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('MGO1', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MGO1/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('MGO1', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12131USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MGO1', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12169USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MGO1', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12236USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MGO1', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12237USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MGO1', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12245USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MGO1', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12247USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MGO1', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12490USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MGO1', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12503USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MGO1', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12510USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MGO1', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12520USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MGO1', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12565USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MGO1', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12934USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MGO1', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12690GBP', sysdate, null); -- Inserting RoleToUserAssignment 'MGONZA20/AMMF LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MGONZA20', 'AMMF LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MGONZA20/AMMF LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('MGONZA20', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012943', sysdate, null); -- Inserting RoleToUserAssignment 'MGONZA20/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('MGONZA20', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MGONZA20/BF LOCAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('MGONZA20', 'BF LOCAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MGONZA20/BF LOCAL REQUESTOR harmony.usermgt.create_dds_item_assignment('MGONZA20', 'BF LOCAL REQUESTOR', 'OO_GROUPING', 'ONE', '267', sysdate, null); -- Inserting RoleToUserAssignment 'MGONZA20/ICL LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MGONZA20', 'ICL LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MGONZA20/ICL LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('MGONZA20', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012943', sysdate, null); -- Inserting RoleToUserAssignment 'MGONZA20/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('MGONZA20', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MGONZA20/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('MGONZA20', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12943EUR', sysdate, null); -- Inserting RoleToUserAssignment 'MGONZA20/OO LOCAL COCO REQUESTOR' harmony.usermgt.create_role_to_user_assignment('MGONZA20', 'OO LOCAL COCO REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MGONZA20/OO LOCAL COCO REQUESTOR harmony.usermgt.create_dds_item_assignment('MGONZA20', 'OO LOCAL COCO REQUESTOR', 'R3_COCO', 'ONE', '2290', sysdate, null); -- Inserting RoleToUserAssignment 'MGONZA20/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('MGONZA20', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MGONZA20/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('MGONZA20', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2290', sysdate, null); -- Inserting RoleToUserAssignment 'MGONZA20/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('MGONZA20', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MGONZA20/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('MGONZA20', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2290', sysdate, null); -- Inserting RoleToUserAssignment 'MGOUTIER/AMMF LOCAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('MGOUTIER', 'AMMF LOCAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MGOUTIER/AMMF LOCAL REQUESTOR harmony.usermgt.create_dds_item_assignment('MGOUTIER', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012307', sysdate, null); -- Inserting RoleToUserAssignment 'MGOUTIER/ICL LOCAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('MGOUTIER', 'ICL LOCAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MGOUTIER/ICL LOCAL REQUESTOR harmony.usermgt.create_dds_item_assignment('MGOUTIER', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012307', sysdate, null); -- Inserting RoleToUserAssignment 'MGOUTIER/IHCTF LOCAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('MGOUTIER', 'IHCTF LOCAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MGOUTIER/IHCTF LOCAL REQUESTOR harmony.usermgt.create_dds_item_assignment('MGOUTIER', 'IHCTF LOCAL REQUESTOR', 'R3_BUPA_IHCTRANSFERS', 'ONE', '0000012307', sysdate, null); -- Inserting RoleToUserAssignment 'MHADUSEK/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('MHADUSEK', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MHADUSEK/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('MHADUSEK', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '6068', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHADUSEK', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '6051', sysdate, null); -- Inserting RoleToUserAssignment 'MHEBERT/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('MHEBERT', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MHEBERT/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('MHEBERT', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2139', sysdate, null); -- Inserting RoleToUserAssignment 'MHEBERT/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('MHEBERT', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MHEBERT/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('MHEBERT', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2139', sysdate, null); -- Inserting RoleToUserAssignment 'MHENNIG/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('MHENNIG', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MHENNIG/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('MHENNIG', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MHENNIG/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('MHENNIG', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12075EUR', sysdate, null); -- Inserting RoleToUserAssignment 'MHENNIG/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('MHENNIG', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MHENNIG/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('MHENNIG', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2141', sysdate, null); -- Inserting RoleToUserAssignment 'MHICKS/HB CENTRAL RELEASER' harmony.usermgt.create_role_to_user_assignment('MHICKS', 'HB CENTRAL RELEASER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MHICKS/HB CENTRAL RELEASER harmony.usermgt.create_dds_item_assignment('MHICKS', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '4002', sysdate, null); -- Inserting RoleToUserAssignment 'MHICKS/HB CENTRAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MHICKS', 'HB CENTRAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MHICKS/HB CENTRAL REPORTER harmony.usermgt.create_dds_item_assignment('MHICKS', 'HB CENTRAL REPORTER', 'R3_COCO', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MHICKS/OO CENTRAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MHICKS', 'OO CENTRAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MHICKS/OO CENTRAL REPORTER harmony.usermgt.create_dds_item_assignment('MHICKS', 'OO CENTRAL REPORTER', 'R3_COCO', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MHIEW/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('MHIEW', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MHIEW/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('MHIEW', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12004EUR', sysdate, null); -- Inserting RoleToUserAssignment 'MHILL2/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('MHILL2', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MHILL2/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('MHILL2', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MHILL2/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('MHILL2', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12770USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHILL2', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12664USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHILL2', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12660USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHILL2', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12623USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHILL2', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12560USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHILL2', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12143USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHILL2', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12135USD', sysdate, null); -- Inserting RoleToUserAssignment 'MHLADIKO/AMMF LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MHLADIKO', 'AMMF LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MHLADIKO/AMMF LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000013112', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012729', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012550', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012548', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012547', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012544', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012474', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012367', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012122', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012101', sysdate, null); -- Inserting RoleToUserAssignment 'MHLADIKO/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('MHLADIKO', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MHLADIKO/ICL LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MHLADIKO', 'ICL LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MHLADIKO/ICL LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012906', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012055', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012079', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012101', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012106', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012122', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012367', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012474', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012544', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012547', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012548', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012550', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012552', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012729', sysdate, null); -- Inserting RoleToUserAssignment 'MHLADIKO/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('MHLADIKO', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MHLADIKO/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE13112NOK', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12906EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12729EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12552EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12550EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12548EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12547EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12544NOK', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12055CHF', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12070EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12079EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12101EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12101JPY', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12101USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12106EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12122SEK', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12367EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12367GBP', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12474EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12474GBP', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12474SEK', sysdate, null); -- Inserting RoleToUserAssignment 'MHLADIKO/OO LOCAL COCO REPORTER' harmony.usermgt.create_role_to_user_assignment('MHLADIKO', 'OO LOCAL COCO REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MHLADIKO/OO LOCAL COCO REPORTER harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'OO LOCAL COCO REPORTER', 'R3_COCO', 'ONE', '2109', sysdate, null); -- Inserting RoleToUserAssignment 'MHLADIKO/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('MHLADIKO', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MHLADIKO/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2357', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2349', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2282', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2109', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2140', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2168', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2178', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2199', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2209', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2219', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2231', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2240', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2253', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2256', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2257', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2262', sysdate, null); -- Inserting RoleToUserAssignment 'MHLADIKO/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('MHLADIKO', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MHLADIKO/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2357', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2349', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2282', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2109', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2140', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2168', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2178', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2199', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2209', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2219', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2231', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2240', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2253', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2256', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2257', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2262', sysdate, null); -- Inserting RoleToUserAssignment 'MHOANG1/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('MHOANG1', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MHOANG1/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('MHOANG1', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12021CAD', sysdate, null); -- Inserting RoleToUserAssignment 'MHOFIRKO/AMMF LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MHOFIRKO', 'AMMF LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MHOFIRKO/AMMF LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('MHOFIRKO', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012277', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHOFIRKO', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012065', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHOFIRKO', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012060', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHOFIRKO', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012058', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHOFIRKO', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012054', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHOFIRKO', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012000', sysdate, null); -- Inserting RoleToUserAssignment 'MHOFIRKO/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('MHOFIRKO', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MHOFIRKO/BF LOCAL AUTHORIZER' harmony.usermgt.create_role_to_user_assignment('MHOFIRKO', 'BF LOCAL AUTHORIZER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MHOFIRKO/BF LOCAL AUTHORIZER harmony.usermgt.create_dds_item_assignment('MHOFIRKO', 'BF LOCAL AUTHORIZER', 'OO_GROUPING', 'ONE', '95', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHOFIRKO', 'BF LOCAL AUTHORIZER', 'OO_GROUPING', 'ONE', '91', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHOFIRKO', 'BF LOCAL AUTHORIZER', 'OO_GROUPING', 'ONE', '85', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHOFIRKO', 'BF LOCAL AUTHORIZER', 'OO_GROUPING', 'ONE', '82', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHOFIRKO', 'BF LOCAL AUTHORIZER', 'OO_GROUPING', 'ONE', '81', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHOFIRKO', 'BF LOCAL AUTHORIZER', 'OO_GROUPING', 'ONE', '51', sysdate, null); -- Inserting RoleToUserAssignment 'MHOFIRKO/BF LOCAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('MHOFIRKO', 'BF LOCAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MHOFIRKO/BF LOCAL REQUESTOR harmony.usermgt.create_dds_item_assignment('MHOFIRKO', 'BF LOCAL REQUESTOR', 'OO_GROUPING', 'ONE', '95', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHOFIRKO', 'BF LOCAL REQUESTOR', 'OO_GROUPING', 'ONE', '91', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHOFIRKO', 'BF LOCAL REQUESTOR', 'OO_GROUPING', 'ONE', '85', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHOFIRKO', 'BF LOCAL REQUESTOR', 'OO_GROUPING', 'ONE', '82', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHOFIRKO', 'BF LOCAL REQUESTOR', 'OO_GROUPING', 'ONE', '81', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHOFIRKO', 'BF LOCAL REQUESTOR', 'OO_GROUPING', 'ONE', '51', sysdate, null); -- Inserting RoleToUserAssignment 'MHOFIRKO/ICL LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MHOFIRKO', 'ICL LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MHOFIRKO/ICL LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('MHOFIRKO', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012277', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHOFIRKO', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012065', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHOFIRKO', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012060', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHOFIRKO', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012058', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHOFIRKO', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012054', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHOFIRKO', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012000', sysdate, null); -- Inserting RoleToUserAssignment 'MHOFIRKO/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('MHOFIRKO', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MHOFIRKO/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('MHOFIRKO', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12277EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHOFIRKO', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12065EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHOFIRKO', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12060EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHOFIRKO', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12060CHF', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHOFIRKO', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12058EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHOFIRKO', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12054CHF', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHOFIRKO', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12000EUR', sysdate, null); -- Inserting RoleToUserAssignment 'MHOFIRKO/OO LOCAL COCO AUTHORIZER/RELEASER' harmony.usermgt.create_role_to_user_assignment('MHOFIRKO', 'OO LOCAL COCO AUTHORIZER/RELEASER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MHOFIRKO/OO LOCAL COCO AUTHORIZER/RELEASER harmony.usermgt.create_dds_item_assignment('MHOFIRKO', 'OO LOCAL COCO AUTHORIZER/RELEASER', 'R3_COCO', 'ONE', '2205', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHOFIRKO', 'OO LOCAL COCO AUTHORIZER/RELEASER', 'R3_COCO', 'ONE', '2200', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHOFIRKO', 'OO LOCAL COCO AUTHORIZER/RELEASER', 'R3_COCO', 'ONE', '2197', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHOFIRKO', 'OO LOCAL COCO AUTHORIZER/RELEASER', 'R3_COCO', 'ONE', '2167', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHOFIRKO', 'OO LOCAL COCO AUTHORIZER/RELEASER', 'R3_COCO', 'ONE', '2067', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHOFIRKO', 'OO LOCAL COCO AUTHORIZER/RELEASER', 'R3_COCO', 'ONE', '2011', sysdate, null); -- Inserting RoleToUserAssignment 'MHOFIRKO/OO LOCAL COCO REQUESTOR' harmony.usermgt.create_role_to_user_assignment('MHOFIRKO', 'OO LOCAL COCO REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MHOFIRKO/OO LOCAL COCO REQUESTOR harmony.usermgt.create_dds_item_assignment('MHOFIRKO', 'OO LOCAL COCO REQUESTOR', 'R3_COCO', 'ONE', '2205', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHOFIRKO', 'OO LOCAL COCO REQUESTOR', 'R3_COCO', 'ONE', '2200', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHOFIRKO', 'OO LOCAL COCO REQUESTOR', 'R3_COCO', 'ONE', '2197', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHOFIRKO', 'OO LOCAL COCO REQUESTOR', 'R3_COCO', 'ONE', '2167', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHOFIRKO', 'OO LOCAL COCO REQUESTOR', 'R3_COCO', 'ONE', '2067', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHOFIRKO', 'OO LOCAL COCO REQUESTOR', 'R3_COCO', 'ONE', '2011', sysdate, null); -- Inserting RoleToUserAssignment 'MHOFIRKO/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('MHOFIRKO', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MHOFIRKO/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('MHOFIRKO', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2205', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHOFIRKO', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2200', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHOFIRKO', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2197', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHOFIRKO', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2167', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHOFIRKO', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2067', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHOFIRKO', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2011', sysdate, null); -- Inserting RoleToUserAssignment 'MHOFIRKO/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('MHOFIRKO', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MHOFIRKO/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('MHOFIRKO', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2205', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHOFIRKO', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2200', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHOFIRKO', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2197', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHOFIRKO', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2167', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHOFIRKO', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2067', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHOFIRKO', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2011', sysdate, null); -- Inserting RoleToUserAssignment 'MIWABUCH/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('MIWABUCH', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MIWABUCH/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('MIWABUCH', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MIWABUCH/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('MIWABUCH', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12432JPY', sysdate, null); -- Inserting RoleToUserAssignment 'MIWABUCH/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('MIWABUCH', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MIWABUCH/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('MIWABUCH', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '6078', sysdate, null); -- Inserting RoleToUserAssignment 'MIWABUCH/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('MIWABUCH', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MIWABUCH/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('MIWABUCH', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '6078', sysdate, null); -- Inserting RoleToUserAssignment 'MJACINTO/AMMF LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MJACINTO', 'AMMF LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MJACINTO/AMMF LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('MJACINTO', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012831', sysdate, null); harmony.usermgt.create_dds_item_assignment('MJACINTO', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012592', sysdate, null); harmony.usermgt.create_dds_item_assignment('MJACINTO', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012500', sysdate, null); harmony.usermgt.create_dds_item_assignment('MJACINTO', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012320', sysdate, null); -- Inserting RoleToUserAssignment 'MJACINTO/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('MJACINTO', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MJACINTO/BF LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MJACINTO', 'BF LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MJACINTO/BF LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('MJACINTO', 'BF LOCAL REPORTER', 'OO_GROUPING', 'ONE', '20', sysdate, null); -- Inserting RoleToUserAssignment 'MJACINTO/ICL LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MJACINTO', 'ICL LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MJACINTO/ICL LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('MJACINTO', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012831', sysdate, null); harmony.usermgt.create_dds_item_assignment('MJACINTO', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012592', sysdate, null); harmony.usermgt.create_dds_item_assignment('MJACINTO', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012500', sysdate, null); harmony.usermgt.create_dds_item_assignment('MJACINTO', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012320', sysdate, null); harmony.usermgt.create_dds_item_assignment('MJACINTO', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012094', sysdate, null); -- Inserting RoleToUserAssignment 'MJACINTO/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('MJACINTO', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MJACINTO/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('MJACINTO', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12831EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('MJACINTO', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12592EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('MJACINTO', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12500USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MJACINTO', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12002EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('MJACINTO', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12009EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('MJACINTO', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12059EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('MJACINTO', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12094EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('MJACINTO', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12102EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('MJACINTO', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12127SEK', sysdate, null); harmony.usermgt.create_dds_item_assignment('MJACINTO', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12262CHF', sysdate, null); harmony.usermgt.create_dds_item_assignment('MJACINTO', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12320EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('MJACINTO', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12320GBP', sysdate, null); harmony.usermgt.create_dds_item_assignment('MJACINTO', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12500CHF', sysdate, null); harmony.usermgt.create_dds_item_assignment('MJACINTO', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12500EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('MJACINTO', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12500GBP', sysdate, null); harmony.usermgt.create_dds_item_assignment('MJACINTO', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12500SEK', sysdate, null); -- Inserting RoleToUserAssignment 'MJACINTO/MR LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MJACINTO', 'MR LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MJACINTO/MR LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('MJACINTO', 'MR LOCAL REPORTER', 'R3_HBACCOUNT', 'ONE', '2123SGEDIEURC1', sysdate, null); harmony.usermgt.create_dds_item_assignment('MJACINTO', 'MR LOCAL REPORTER', 'R3_HBACCOUNT', 'ONE', '2123NETACEURN1', sysdate, null); harmony.usermgt.create_dds_item_assignment('MJACINTO', 'MR LOCAL REPORTER', 'R3_HBACCOUNT', 'ONE', '2123HSBDIEURC1', sysdate, null); harmony.usermgt.create_dds_item_assignment('MJACINTO', 'MR LOCAL REPORTER', 'R3_HBACCOUNT', 'ONE', '2123EIHBEURI1', sysdate, null); harmony.usermgt.create_dds_item_assignment('MJACINTO', 'MR LOCAL REPORTER', 'R3_HBACCOUNT', 'ONE', '2123BNPPAEURC2', sysdate, null); harmony.usermgt.create_dds_item_assignment('MJACINTO', 'MR LOCAL REPORTER', 'R3_HBACCOUNT', 'ONE', '2123BNPPAEURC1', sysdate, null); -- Inserting RoleToUserAssignment 'MJACINTO/OO LOCAL COCO REPORTER' harmony.usermgt.create_role_to_user_assignment('MJACINTO', 'OO LOCAL COCO REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MJACINTO/OO LOCAL COCO REPORTER harmony.usermgt.create_dds_item_assignment('MJACINTO', 'OO LOCAL COCO REPORTER', 'R3_COCO', 'ONE', '2123', sysdate, null); -- Inserting RoleToUserAssignment 'MJACINTO/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('MJACINTO', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MJACINTO/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('MJACINTO', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2163', sysdate, null); harmony.usermgt.create_dds_item_assignment('MJACINTO', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2123', sysdate, null); harmony.usermgt.create_dds_item_assignment('MJACINTO', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2117', sysdate, null); harmony.usermgt.create_dds_item_assignment('MJACINTO', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2017', sysdate, null); -- Inserting RoleToUserAssignment 'MJACINTO/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('MJACINTO', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MJACINTO/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('MJACINTO', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2206', sysdate, null); harmony.usermgt.create_dds_item_assignment('MJACINTO', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2166', sysdate, null); harmony.usermgt.create_dds_item_assignment('MJACINTO', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2163', sysdate, null); harmony.usermgt.create_dds_item_assignment('MJACINTO', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2123', sysdate, null); harmony.usermgt.create_dds_item_assignment('MJACINTO', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2117', sysdate, null); -- Inserting RoleToUserAssignment 'MJANSSEE/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('MJANSSEE', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MJUTA/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('MJUTA', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MJUTA/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('MJUTA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12861USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MJUTA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12674USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MJUTA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12661USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MJUTA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12659USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MJUTA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12139USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MJUTA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12140USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MJUTA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12141USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MJUTA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12144USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MJUTA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12151USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MJUTA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12153USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MJUTA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12172USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MJUTA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12229USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MJUTA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12488USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MJUTA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12489USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MJUTA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12493USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MJUTA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12501USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MJUTA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12658USD', sysdate, null); -- Inserting RoleToUserAssignment 'MKELLEY4/APPLOG VIEW' harmony.usermgt.create_role_to_user_assignment('MKELLEY4', 'APPLOG VIEW', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MKIM22/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('MKIM22', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MKIM22/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('MKIM22', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '6043', sysdate, null); -- Inserting RoleToUserAssignment 'MKIRIKMA/AMMF Central reporter' harmony.usermgt.create_role_to_user_assignment('MKIRIKMA', 'AMMF Central reporter', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MKIRIKMA/AMMF Central reporter harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'AMMF Central reporter', 'R3_BUPA_TRANSFERS', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MKIRIKMA/APPLOG UPDATE ENDSTAMP' harmony.usermgt.create_role_to_user_assignment('MKIRIKMA', 'APPLOG UPDATE ENDSTAMP', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MKIRIKMA/APPLOG VIEW' harmony.usermgt.create_role_to_user_assignment('MKIRIKMA', 'APPLOG VIEW', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MKIRIKMA/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('MKIRIKMA', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MKIRIKMA/BATCH BANK COMMUNICATION' harmony.usermgt.create_role_to_user_assignment('MKIRIKMA', 'BATCH BANK COMMUNICATION', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MKIRIKMA/BATCH PAYMENT PROCESSING' harmony.usermgt.create_role_to_user_assignment('MKIRIKMA', 'BATCH PAYMENT PROCESSING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MKIRIKMA/BF CENTRAL AUTHORIZER' harmony.usermgt.create_role_to_user_assignment('MKIRIKMA', 'BF CENTRAL AUTHORIZER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MKIRIKMA/BF CENTRAL AUTHORIZER harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'BF CENTRAL AUTHORIZER', 'OO_GROUPING', 'ONE', '4', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'BF CENTRAL AUTHORIZER', 'OO_GROUPING', 'ONE', '3', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'BF CENTRAL AUTHORIZER', 'OO_GROUPING', 'ONE', '2', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'BF CENTRAL AUTHORIZER', 'OO_GROUPING', 'ONE', '183', sysdate, null); -- Inserting RoleToUserAssignment 'MKIRIKMA/BF CENTRAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('MKIRIKMA', 'BF CENTRAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MKIRIKMA/BF CENTRAL REQUESTOR harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'BF CENTRAL REQUESTOR', 'OO_GROUPING', 'ONE', '4', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'BF CENTRAL REQUESTOR', 'OO_GROUPING', 'ONE', '3', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'BF CENTRAL REQUESTOR', 'OO_GROUPING', 'ONE', '2', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'BF CENTRAL REQUESTOR', 'OO_GROUPING', 'ONE', '183', sysdate, null); -- Inserting RoleToUserAssignment 'MKIRIKMA/FM RULES CENTRAL REQUEST' harmony.usermgt.create_role_to_user_assignment('MKIRIKMA', 'FM RULES CENTRAL REQUEST', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MKIRIKMA/HB CENTRAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MKIRIKMA', 'HB CENTRAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MKIRIKMA/HB CENTRAL REPORTER harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'HB CENTRAL REPORTER', 'R3_COCO', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MKIRIKMA/HB COCO COMBI Requestor' harmony.usermgt.create_role_to_user_assignment('MKIRIKMA', 'HB COCO COMBI Requestor', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MKIRIKMA/ICL Central reporter' harmony.usermgt.create_role_to_user_assignment('MKIRIKMA', 'ICL Central reporter', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MKIRIKMA/ICL Central reporter harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'ICL Central reporter', 'R3_BUPA_ICL', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MKIRIKMA/IHC CENTRAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('MKIRIKMA', 'IHC CENTRAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MKIRIKMA/IHC CENTRAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'IHC CENTRAL POSITION REPORT', 'R3_IHBACCOUNT', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MKIRIKMA/IHCTF REPORTER' harmony.usermgt.create_role_to_user_assignment('MKIRIKMA', 'IHCTF REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MKIRIKMA/IHCTF REPORTER harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'IHCTF REPORTER', 'R3_BUPA_IHCTRANSFERS', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MKIRIKMA/OO CENTRAL RELEASER' harmony.usermgt.create_role_to_user_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MKIRIKMA/OO CENTRAL RELEASER harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5066', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5061', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5060', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5055', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5054', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5053', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5052', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5051', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5050', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5049', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5048', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5047', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5046', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5045', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5044', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5043', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5042', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5041', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5040', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5038', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5037', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5033', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5032', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5031', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5030', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5029', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5028', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5027', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5026', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5025', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5024', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5023', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5021', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5020', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5019', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5018', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5017', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5016', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5014', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5013', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5011', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5010', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5009', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5006', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5004', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '4002', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '3015', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '3014', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2357', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2356', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2355', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2354', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2353', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2352', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2351', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2350', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2349', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2316', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2315', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2314', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2313', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2312', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2311', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2308', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2304', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2303', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2302', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2301', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2300', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2299', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2298', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2176', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2175', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2174', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2173', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2172', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2171', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2170', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2169', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2168', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2167', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2166', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2165', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2164', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2163', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2162', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2160', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2159', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2158', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2157', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2156', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2154', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2153', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2152', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2148', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2147', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2146', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2144', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2143', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2141', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2140', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2139', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2127', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2126', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2125', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2123', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2120', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2117', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2114', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2113', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2112', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2111', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2110', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2109', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2108', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2105', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2104', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2103', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2102', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2030', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2029', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2027', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2021', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2020', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2019', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2018', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2017', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2016', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2015', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2013', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2012', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'OO_GROUPING', 'ALL', null, sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '1000', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '1002', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '1003', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '1004', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '1005', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '1006', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '1007', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '1008', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '1009', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '1010', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2000', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2011', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2034', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2036', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2037', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2039', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2041', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2046', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2047', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2049', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2050', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2051', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2052', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2056', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2060', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2061', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2064', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2065', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2066', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2067', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2070', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2071', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2076', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2088', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2100', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2101', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2177', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2178', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2179', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2180', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2181', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2182', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2183', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2185', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2186', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2187', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2192', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2194', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2196', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2197', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2198', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2199', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2200', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2201', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2202', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2203', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2204', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2205', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2206', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2207', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2208', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2209', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2210', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2211', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2212', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2215', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2218', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2219', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2220', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2221', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2222', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2223', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2224', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2225', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2226', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2229', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2231', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2232', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2233', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2235', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2236', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2237', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2238', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2239', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2240', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2241', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2242', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2243', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2244', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2245', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2246', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2247', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2248', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2249', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2250', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2251', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2252', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2254', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2255', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2256', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2257', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2258', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2260', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2261', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2262', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2263', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2264', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2265', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2266', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2267', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2268', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2269', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2270', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2271', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2272', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2273', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2274', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2275', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2276', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2277', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2278', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2282', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2283', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2284', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2286', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2287', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2288', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2289', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2290', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2292', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2293', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2297', sysdate, null); -- Inserting RoleToUserAssignment 'MKIRIKMA/OO CENTRAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MKIRIKMA', 'OO CENTRAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MKIRIKMA/OO CENTRAL REPORTER harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'OO CENTRAL REPORTER', 'R3_COCO', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MKIRIKMA/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('MKIRIKMA', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MKIRIKMA/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MKIRIKMA/TOPS2' harmony.usermgt.create_role_to_user_assignment('MKIRIKMA', 'TOPS2', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MKIRIKMA/UME READ ALL' harmony.usermgt.create_role_to_user_assignment('MKIRIKMA', 'UME READ ALL', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MKWIKERT/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('MKWIKERT', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MKWIKERT/ICL LOCAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('MKWIKERT', 'ICL LOCAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MKWIKERT/ICL LOCAL REQUESTOR harmony.usermgt.create_dds_item_assignment('MKWIKERT', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012516', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKWIKERT', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012515', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKWIKERT', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012514', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKWIKERT', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012487', sysdate, null); -- Inserting RoleToUserAssignment 'MLATIF1/AMMF CENTRAL MANAGER' harmony.usermgt.create_role_to_user_assignment('MLATIF1', 'AMMF CENTRAL MANAGER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MLATIF1/AMMF CENTRAL MANAGER harmony.usermgt.create_dds_item_assignment('MLATIF1', 'AMMF CENTRAL MANAGER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012200', sysdate, null); -- Inserting RoleToUserAssignment 'MLATIF1/AMMF Central reporter' harmony.usermgt.create_role_to_user_assignment('MLATIF1', 'AMMF Central reporter', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MLATIF1/AMMF Central reporter harmony.usermgt.create_dds_item_assignment('MLATIF1', 'AMMF Central reporter', 'R3_BUPA_TRANSFERS', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MLATIF1/AMMF LOCAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('MLATIF1', 'AMMF LOCAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MLATIF1/AMMF LOCAL REQUESTOR harmony.usermgt.create_dds_item_assignment('MLATIF1', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000013010', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012979', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012978', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012977', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012974', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012973', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012972', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012971', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012970', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012969', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012968', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012967', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012966', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012965', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012916', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012909', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012871', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012858', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012846', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012845', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012820', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012794', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012752', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012726', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012701', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012673', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012671', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012602', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012601', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012599', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012539', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012534', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012530', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012528', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012486', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012485', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012484', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012483', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012482', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012411', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012408', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012406', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012403', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012402', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012401', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012400', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012392', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012388', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012386', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012384', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012376', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000011050', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012200', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012265', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012267', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012268', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012269', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012290', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012304', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012325', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012351', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012353', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012354', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012356', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012412', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012417', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012418', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012421', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012422', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012426', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012427', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012428', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012432', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012433', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012434', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012435', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012438', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012439', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012447', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012448', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012451', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012453', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012454', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012455', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012466', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012470', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012471', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012472', sysdate, null); -- Inserting RoleToUserAssignment 'MLATIF1/APPLOG UPDATE ENDSTAMP' harmony.usermgt.create_role_to_user_assignment('MLATIF1', 'APPLOG UPDATE ENDSTAMP', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MLATIF1/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('MLATIF1', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MLATIF1/BATCH BANK COMMUNICATION' harmony.usermgt.create_role_to_user_assignment('MLATIF1', 'BATCH BANK COMMUNICATION', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MLATIF1/HB CENTRAL RELEASER' harmony.usermgt.create_role_to_user_assignment('MLATIF1', 'HB CENTRAL RELEASER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MLATIF1/HB CENTRAL RELEASER harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '6100', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '6096', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '6095', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '6094', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '6093', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '6092', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '6091', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '6090', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '6089', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '6088', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '6087', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '6086', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '6085', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '6083', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '6081', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '6080', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '6079', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '6078', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '6077', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '6076', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '6075', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '6074', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '6073', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '6072', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '6071', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '6070', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '6069', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '6068', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '6030', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '6029', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '6028', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '6026', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '6025', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '6024', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '6022', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '6021', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '6019', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '6018', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '6017', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '6016', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '1000', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '1008', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '6000', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '6001', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '6005', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '6008', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '6009', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '6010', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '6011', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '6012', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '6013', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '6014', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '6015', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '6031', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '6032', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '6035', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '6039', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '6042', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '6043', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '6044', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '6045', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '6046', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '6047', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '6050', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '6051', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '6054', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '6055', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '6056', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '6057', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '6059', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '6060', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '6061', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '6062', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '6063', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '6065', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '6066', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '6067', sysdate, null); -- Inserting RoleToUserAssignment 'MLATIF1/HB CENTRAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MLATIF1', 'HB CENTRAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MLATIF1/HB CENTRAL REPORTER harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL REPORTER', 'R3_COCO', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MLATIF1/HB CENTRAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('MLATIF1', 'HB CENTRAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MLATIF1/HB CENTRAL REQUESTOR harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6100', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6096', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6095', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6094', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6093', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6092', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6091', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6090', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6089', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6088', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6087', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6086', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6085', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6083', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6081', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6080', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6079', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6078', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6077', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6076', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6075', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6074', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6073', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6072', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6071', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6070', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6069', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6068', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6030', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6029', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6028', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6026', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6025', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6024', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6022', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6021', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6019', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6018', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6017', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6016', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '1000', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '1008', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6000', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6001', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6005', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6008', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6009', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6010', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6011', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6012', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6013', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6014', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6015', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6031', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6032', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6035', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6039', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6042', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6043', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6044', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6045', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6046', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6047', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6050', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6051', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6054', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6055', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6056', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6057', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6059', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6060', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6061', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6062', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6063', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6065', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6066', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6067', sysdate, null); -- Inserting RoleToUserAssignment 'MLATIF1/ICL CENTRAL MANAGER' harmony.usermgt.create_role_to_user_assignment('MLATIF1', 'ICL CENTRAL MANAGER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MLATIF1/ICL CENTRAL MANAGER harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL CENTRAL MANAGER', 'R3_BUPA_ICL', 'ONE', '0000012974', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL CENTRAL MANAGER', 'R3_BUPA_ICL', 'ONE', '0000012973', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL CENTRAL MANAGER', 'R3_BUPA_ICL', 'ONE', '0000012972', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL CENTRAL MANAGER', 'R3_BUPA_ICL', 'ONE', '0000012971', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL CENTRAL MANAGER', 'R3_BUPA_ICL', 'ONE', '0000012970', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL CENTRAL MANAGER', 'R3_BUPA_ICL', 'ONE', '0000012969', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL CENTRAL MANAGER', 'R3_BUPA_ICL', 'ONE', '0000012968', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL CENTRAL MANAGER', 'R3_BUPA_ICL', 'ONE', '0000012967', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL CENTRAL MANAGER', 'R3_BUPA_ICL', 'ONE', '0000012966', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL CENTRAL MANAGER', 'R3_BUPA_ICL', 'ONE', '0000012965', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL CENTRAL MANAGER', 'R3_BUPA_ICL', 'ONE', '0000012916', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL CENTRAL MANAGER', 'R3_BUPA_ICL', 'ONE', '0000012909', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL CENTRAL MANAGER', 'R3_BUPA_ICL', 'ONE', '0000012871', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL CENTRAL MANAGER', 'R3_BUPA_ICL', 'ONE', '0000012858', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL CENTRAL MANAGER', 'R3_BUPA_ICL', 'ONE', '0000012846', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL CENTRAL MANAGER', 'R3_BUPA_ICL', 'ONE', '0000012845', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL CENTRAL MANAGER', 'R3_BUPA_ICL', 'ONE', '0000012820', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL CENTRAL MANAGER', 'R3_BUPA_ICL', 'ONE', '0000012794', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL CENTRAL MANAGER', 'R3_BUPA_ICL', 'ONE', '0000012752', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL CENTRAL MANAGER', 'R3_BUPA_ICL', 'ONE', '0000012726', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL CENTRAL MANAGER', 'R3_BUPA_ICL', 'ONE', '0000012701', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL CENTRAL MANAGER', 'R3_BUPA_ICL', 'ONE', '0000012601', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL CENTRAL MANAGER', 'R3_BUPA_ICL', 'ONE', '0000012599', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL CENTRAL MANAGER', 'R3_BUPA_ICL', 'ONE', '0000012539', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL CENTRAL MANAGER', 'R3_BUPA_ICL', 'ONE', '0000012534', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL CENTRAL MANAGER', 'R3_BUPA_ICL', 'ONE', '0000012530', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL CENTRAL MANAGER', 'R3_BUPA_ICL', 'ONE', '0000012418', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL CENTRAL MANAGER', 'R3_BUPA_ICL', 'ONE', '0000012417', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL CENTRAL MANAGER', 'R3_BUPA_ICL', 'ONE', '0000012412', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL CENTRAL MANAGER', 'R3_BUPA_ICL', 'ONE', '0000012408', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL CENTRAL MANAGER', 'R3_BUPA_ICL', 'ONE', '0000012406', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL CENTRAL MANAGER', 'R3_BUPA_ICL', 'ONE', '0000012402', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL CENTRAL MANAGER', 'R3_BUPA_ICL', 'ONE', '0000012401', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL CENTRAL MANAGER', 'R3_BUPA_ICL', 'ONE', '0000012400', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL CENTRAL MANAGER', 'R3_BUPA_ICL', 'ONE', '0000012392', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL CENTRAL MANAGER', 'R3_BUPA_ICL', 'ONE', '0000012388', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL CENTRAL MANAGER', 'R3_BUPA_ICL', 'ONE', '0000012386', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL CENTRAL MANAGER', 'R3_BUPA_ICL', 'ONE', '0000012384', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL CENTRAL MANAGER', 'R3_BUPA_ICL', 'ONE', '0000011050', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL CENTRAL MANAGER', 'R3_BUPA_ICL', 'ONE', '0000012200', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL CENTRAL MANAGER', 'R3_BUPA_ICL', 'ONE', '0000012265', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL CENTRAL MANAGER', 'R3_BUPA_ICL', 'ONE', '0000012267', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL CENTRAL MANAGER', 'R3_BUPA_ICL', 'ONE', '0000012269', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL CENTRAL MANAGER', 'R3_BUPA_ICL', 'ONE', '0000012290', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL CENTRAL MANAGER', 'R3_BUPA_ICL', 'ONE', '0000012304', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL CENTRAL MANAGER', 'R3_BUPA_ICL', 'ONE', '0000012325', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL CENTRAL MANAGER', 'R3_BUPA_ICL', 'ONE', '0000012351', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL CENTRAL MANAGER', 'R3_BUPA_ICL', 'ONE', '0000012353', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL CENTRAL MANAGER', 'R3_BUPA_ICL', 'ONE', '0000012354', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL CENTRAL MANAGER', 'R3_BUPA_ICL', 'ONE', '0000012356', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL CENTRAL MANAGER', 'R3_BUPA_ICL', 'ONE', '0000012376', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL CENTRAL MANAGER', 'R3_BUPA_ICL', 'ONE', '0000012421', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL CENTRAL MANAGER', 'R3_BUPA_ICL', 'ONE', '0000012422', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL CENTRAL MANAGER', 'R3_BUPA_ICL', 'ONE', '0000012426', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL CENTRAL MANAGER', 'R3_BUPA_ICL', 'ONE', '0000012427', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL CENTRAL MANAGER', 'R3_BUPA_ICL', 'ONE', '0000012428', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL CENTRAL MANAGER', 'R3_BUPA_ICL', 'ONE', '0000012432', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL CENTRAL MANAGER', 'R3_BUPA_ICL', 'ONE', '0000012433', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL CENTRAL MANAGER', 'R3_BUPA_ICL', 'ONE', '0000012434', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL CENTRAL MANAGER', 'R3_BUPA_ICL', 'ONE', '0000012435', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL CENTRAL MANAGER', 'R3_BUPA_ICL', 'ONE', '0000012438', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL CENTRAL MANAGER', 'R3_BUPA_ICL', 'ONE', '0000012439', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL CENTRAL MANAGER', 'R3_BUPA_ICL', 'ONE', '0000012451', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL CENTRAL MANAGER', 'R3_BUPA_ICL', 'ONE', '0000012453', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL CENTRAL MANAGER', 'R3_BUPA_ICL', 'ONE', '0000012454', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL CENTRAL MANAGER', 'R3_BUPA_ICL', 'ONE', '0000012455', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL CENTRAL MANAGER', 'R3_BUPA_ICL', 'ONE', '0000012466', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL CENTRAL MANAGER', 'R3_BUPA_ICL', 'ONE', '0000012470', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL CENTRAL MANAGER', 'R3_BUPA_ICL', 'ONE', '0000012471', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL CENTRAL MANAGER', 'R3_BUPA_ICL', 'ONE', '0000012472', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL CENTRAL MANAGER', 'R3_BUPA_ICL', 'ONE', '0000012482', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL CENTRAL MANAGER', 'R3_BUPA_ICL', 'ONE', '0000012483', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL CENTRAL MANAGER', 'R3_BUPA_ICL', 'ONE', '0000012484', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL CENTRAL MANAGER', 'R3_BUPA_ICL', 'ONE', '0000012485', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL CENTRAL MANAGER', 'R3_BUPA_ICL', 'ONE', '0000012528', sysdate, null); -- Inserting RoleToUserAssignment 'MLATIF1/ICL Central reporter' harmony.usermgt.create_role_to_user_assignment('MLATIF1', 'ICL Central reporter', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MLATIF1/ICL Central reporter harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL Central reporter', 'R3_BUPA_ICL', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MLATIF1/ICL LOCAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('MLATIF1', 'ICL LOCAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MLATIF1/ICL LOCAL REQUESTOR harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000013010', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012979', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012978', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012977', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012974', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012973', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012972', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012971', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012970', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012969', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012968', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012967', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012966', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012965', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012916', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012909', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012871', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012858', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012846', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012845', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012820', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012794', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012752', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012726', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012701', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012673', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012671', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012602', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012601', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012599', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012539', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012534', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012530', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012528', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012486', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012485', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012484', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012483', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012482', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012411', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012408', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012406', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012403', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012402', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012401', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012400', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012392', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012388', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012386', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012384', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012376', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000011050', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012200', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012265', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012267', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012268', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012269', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012290', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012304', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012325', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012351', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012353', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012354', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012356', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012412', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012417', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012418', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012421', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012422', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012426', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012427', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012428', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012432', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012433', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012434', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012435', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012438', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012439', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012447', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012448', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012451', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012453', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012454', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012455', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012466', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012470', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012471', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012472', sysdate, null); -- Inserting RoleToUserAssignment 'MLATIF1/IHC CENTRAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('MLATIF1', 'IHC CENTRAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MLATIF1/IHC CENTRAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('MLATIF1', 'IHC CENTRAL POSITION REPORT', 'R3_IHBACCOUNT', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MLATIF1/IHCTF REPORTER' harmony.usermgt.create_role_to_user_assignment('MLATIF1', 'IHCTF REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MLATIF1/IHCTF REPORTER harmony.usermgt.create_dds_item_assignment('MLATIF1', 'IHCTF REPORTER', 'R3_BUPA_IHCTRANSFERS', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MLATIF1/MR CENTRAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MLATIF1', 'MR CENTRAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MLATIF1/MR CENTRAL REPORTER harmony.usermgt.create_dds_item_assignment('MLATIF1', 'MR CENTRAL REPORTER', 'R3_COCO', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MLATIF1/MR CENTRAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('MLATIF1', 'MR CENTRAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MLATIF1/MR CENTRAL REQUESTOR harmony.usermgt.create_dds_item_assignment('MLATIF1', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6100', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6096', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6095', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6094', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6093', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6092', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6091', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6090', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6089', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6088', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6087', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6086', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6085', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6083', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6081', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6080', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6079', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6078', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6077', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6076', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6075', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6074', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6073', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6072', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6071', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6070', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6069', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6068', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6030', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6029', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6028', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6026', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6025', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6024', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6022', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6021', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6019', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6018', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6017', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6016', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '1000', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '1008', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6000', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6001', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6005', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6008', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6009', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6010', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6011', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6012', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6013', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6014', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6015', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6031', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6032', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6035', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6039', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6042', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6043', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6044', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6045', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6046', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6047', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6050', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6051', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6054', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6055', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6056', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6057', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6059', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6060', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6061', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6062', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6063', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6065', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6066', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6067', sysdate, null); -- Inserting RoleToUserAssignment 'MLATIF1/OO CENTRAL AUTHORIZER' harmony.usermgt.create_role_to_user_assignment('MLATIF1', 'OO CENTRAL AUTHORIZER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MLATIF1/OO CENTRAL AUTHORIZER harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '6100', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '6096', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '6095', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '6094', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '6093', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '6092', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '6091', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '6090', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '6089', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '6088', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '6087', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '6086', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '6085', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '6083', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '6081', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '6080', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '6079', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '6078', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '6077', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '6076', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '6075', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '6074', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '6073', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '6072', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '6071', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '6070', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '6069', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '6031', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '6030', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '6029', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '6028', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '6026', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '6025', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '6024', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '6022', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '6021', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '6019', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '6018', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '6017', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL AUTHORIZER', 'OO_GROUPING', 'ONE', '105', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '6000', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '6001', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '6005', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '6008', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '6009', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '6010', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '6011', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '6012', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '6013', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '6014', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '6015', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '6016', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '6032', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '6035', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '6039', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '6042', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '6043', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '6044', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '6045', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '6046', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '6047', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '6050', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '6051', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '6054', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '6055', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '6056', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '6057', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '6059', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '6060', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '6061', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '6062', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '6063', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '6065', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '6066', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '6067', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '6068', sysdate, null); -- Inserting RoleToUserAssignment 'MLATIF1/OO CENTRAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MLATIF1', 'OO CENTRAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MLATIF1/OO CENTRAL REPORTER harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL REPORTER', 'R3_COCO', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MLATIF1/OO CENTRAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('MLATIF1', 'OO CENTRAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MLATIF1/OO CENTRAL REQUESTOR harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6100', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6096', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6095', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6094', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6093', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6092', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6091', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6090', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6089', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6088', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6087', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6086', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6085', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6083', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6081', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6080', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6079', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6078', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6077', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6076', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6075', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6074', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6073', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6072', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6071', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6070', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6069', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6031', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6030', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6029', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6028', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6026', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6025', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6024', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6022', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6021', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6019', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6018', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6017', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL REQUESTOR', 'OO_GROUPING', 'ONE', '105', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6000', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6001', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6005', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6008', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6009', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6010', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6011', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6012', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6013', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6014', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6015', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6016', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6032', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6035', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6039', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6042', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6043', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6044', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6045', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6046', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6047', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6050', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6051', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6054', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6055', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6056', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6057', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6059', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6060', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6061', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6062', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6063', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6065', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6066', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6067', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '6068', sysdate, null); -- Inserting RoleToUserAssignment 'MLATIF1/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('MLATIF1', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MLATIF1/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('MLATIF1', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MLATIF1/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('MLATIF1', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MLATIF1/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('MLATIF1', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MLATIF1/TOPS2' harmony.usermgt.create_role_to_user_assignment('MLATIF1', 'TOPS2', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MLEBOURG/AMMF LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MLEBOURG', 'AMMF LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MLEBOURG/AMMF LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('MLEBOURG', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012082', sysdate, null); -- Inserting RoleToUserAssignment 'MLEBOURG/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('MLEBOURG', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MLEBOURG/ICL LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MLEBOURG', 'ICL LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MLEBOURG/ICL LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('MLEBOURG', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012082', sysdate, null); -- Inserting RoleToUserAssignment 'MLEBOURG/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('MLEBOURG', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MLEBOURG/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('MLEBOURG', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12082EUR', sysdate, null); -- Inserting RoleToUserAssignment 'MLEBOURG/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('MLEBOURG', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MLEBOURG/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('MLEBOURG', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2127', sysdate, null); -- Inserting RoleToUserAssignment 'MLEBOURG/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('MLEBOURG', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MLEBOURG/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('MLEBOURG', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2127', sysdate, null); -- Inserting RoleToUserAssignment 'MLIM13/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('MLIM13', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MLIM13/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('MLIM13', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '6055', sysdate, null); -- Inserting RoleToUserAssignment 'MLIM13/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('MLIM13', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MLIM13/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('MLIM13', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '6055', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLIM13', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '6050', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLIM13', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '6029', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLIM13', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '6028', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLIM13', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '6017', sysdate, null); -- Inserting RoleToUserAssignment 'MLUM/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('MLUM', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MLUM/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('MLUM', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '6065', sysdate, null); -- Inserting RoleToUserAssignment 'MMAJERNI/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('MMAJERNI', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MMAJERNI/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('MMAJERNI', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MMAJERNI/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('MMAJERNI', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12065EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('MMAJERNI', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12060EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('MMAJERNI', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12058EUR', sysdate, null); -- Inserting RoleToUserAssignment 'MMAJERNI/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('MMAJERNI', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MMAJERNI/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('MMAJERNI', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2205', sysdate, null); harmony.usermgt.create_dds_item_assignment('MMAJERNI', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2200', sysdate, null); harmony.usermgt.create_dds_item_assignment('MMAJERNI', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2197', sysdate, null); -- Inserting RoleToUserAssignment 'MMAJERNI/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('MMAJERNI', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MMAJERNI/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('MMAJERNI', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2205', sysdate, null); harmony.usermgt.create_dds_item_assignment('MMAJERNI', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2200', sysdate, null); harmony.usermgt.create_dds_item_assignment('MMAJERNI', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2197', sysdate, null); -- Inserting RoleToUserAssignment 'MMAJOROS/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('MMAJOROS', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MMAJOROS/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('MMAJOROS', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2267', sysdate, null); harmony.usermgt.create_dds_item_assignment('MMAJOROS', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2244', sysdate, null); harmony.usermgt.create_dds_item_assignment('MMAJOROS', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2221', sysdate, null); harmony.usermgt.create_dds_item_assignment('MMAJOROS', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2215', sysdate, null); harmony.usermgt.create_dds_item_assignment('MMAJOROS', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2172', sysdate, null); harmony.usermgt.create_dds_item_assignment('MMAJOROS', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2165', sysdate, null); harmony.usermgt.create_dds_item_assignment('MMAJOROS', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2159', sysdate, null); harmony.usermgt.create_dds_item_assignment('MMAJOROS', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2020', sysdate, null); harmony.usermgt.create_dds_item_assignment('MMAJOROS', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2065', sysdate, null); harmony.usermgt.create_dds_item_assignment('MMAJOROS', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2066', sysdate, null); harmony.usermgt.create_dds_item_assignment('MMAJOROS', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2120', sysdate, null); harmony.usermgt.create_dds_item_assignment('MMAJOROS', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2125', sysdate, null); harmony.usermgt.create_dds_item_assignment('MMAJOROS', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2126', sysdate, null); harmony.usermgt.create_dds_item_assignment('MMAJOROS', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2141', sysdate, null); harmony.usermgt.create_dds_item_assignment('MMAJOROS', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2143', sysdate, null); harmony.usermgt.create_dds_item_assignment('MMAJOROS', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2144', sysdate, null); harmony.usermgt.create_dds_item_assignment('MMAJOROS', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2152', sysdate, null); harmony.usermgt.create_dds_item_assignment('MMAJOROS', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2153', sysdate, null); harmony.usermgt.create_dds_item_assignment('MMAJOROS', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2157', sysdate, null); harmony.usermgt.create_dds_item_assignment('MMAJOROS', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2158', sysdate, null); -- Inserting RoleToUserAssignment 'MMALMASS/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('MMALMASS', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MMANANSA/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('MMANANSA', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MMANANSA/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('MMANANSA', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '6075', sysdate, null); harmony.usermgt.create_dds_item_assignment('MMANANSA', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '6074', sysdate, null); -- Inserting RoleToUserAssignment 'MMANEA/AMMF LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MMANEA', 'AMMF LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MMANEA/AMMF LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('MMANEA', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012863', sysdate, null); -- Inserting RoleToUserAssignment 'MMANEA/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('MMANEA', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MMANEA/BF LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MMANEA', 'BF LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MMANEA/BF LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('MMANEA', 'BF LOCAL REPORTER', 'OO_GROUPING', 'ONE', '322', sysdate, null); -- Inserting RoleToUserAssignment 'MMANEA/ICL LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MMANEA', 'ICL LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MMANEA/ICL LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('MMANEA', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012863', sysdate, null); -- Inserting RoleToUserAssignment 'MMANEA/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('MMANEA', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MMANEA/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('MMANEA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12863RON', sysdate, null); harmony.usermgt.create_dds_item_assignment('MMANEA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12863EUR', sysdate, null); -- Inserting RoleToUserAssignment 'MMANEA/MR LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MMANEA', 'MR LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MMANEA/MR LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('MMANEA', 'MR LOCAL REPORTER', 'R3_HBACCOUNT', 'ONE', '2261UNIBURONC2', sysdate, null); harmony.usermgt.create_dds_item_assignment('MMANEA', 'MR LOCAL REPORTER', 'R3_HBACCOUNT', 'ONE', '2261UNIBURONC1', sysdate, null); harmony.usermgt.create_dds_item_assignment('MMANEA', 'MR LOCAL REPORTER', 'R3_HBACCOUNT', 'ONE', '2261UNIBUEURC1', sysdate, null); harmony.usermgt.create_dds_item_assignment('MMANEA', 'MR LOCAL REPORTER', 'R3_HBACCOUNT', 'ONE', '2261RECACMULR1', sysdate, null); harmony.usermgt.create_dds_item_assignment('MMANEA', 'MR LOCAL REPORTER', 'R3_HBACCOUNT', 'ONE', '2261NETACRONN1', sysdate, null); harmony.usermgt.create_dds_item_assignment('MMANEA', 'MR LOCAL REPORTER', 'R3_HBACCOUNT', 'ONE', '2261EIHBRONI1', sysdate, null); harmony.usermgt.create_dds_item_assignment('MMANEA', 'MR LOCAL REPORTER', 'R3_HBACCOUNT', 'ONE', '2261EIHBEURI1', sysdate, null); harmony.usermgt.create_dds_item_assignment('MMANEA', 'MR LOCAL REPORTER', 'R3_HBACCOUNT', 'ONE', '2261CITBURONC1', sysdate, null); harmony.usermgt.create_dds_item_assignment('MMANEA', 'MR LOCAL REPORTER', 'R3_HBACCOUNT', 'ONE', '2261CITBUEURC1', sysdate, null); -- Inserting RoleToUserAssignment 'MMANEA/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('MMANEA', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MMANEA/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('MMANEA', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2261', sysdate, null); -- Inserting RoleToUserAssignment 'MMANEA/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('MMANEA', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MMANEA/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('MMANEA', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2261', sysdate, null); -- Inserting RoleToUserAssignment 'MMANFRIN/AMMF LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MMANFRIN', 'AMMF LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MMANFRIN/AMMF LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('MMANFRIN', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012125', sysdate, null); -- Inserting RoleToUserAssignment 'MMANFRIN/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('MMANFRIN', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MMANFRIN/BF LOCAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('MMANFRIN', 'BF LOCAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MMANFRIN/BF LOCAL REQUESTOR harmony.usermgt.create_dds_item_assignment('MMANFRIN', 'BF LOCAL REQUESTOR', 'OO_GROUPING', 'ONE', '247', sysdate, null); -- Inserting RoleToUserAssignment 'MMANFRIN/ICL LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MMANFRIN', 'ICL LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MMANFRIN/ICL LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('MMANFRIN', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012125', sysdate, null); -- Inserting RoleToUserAssignment 'MMANFRIN/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('MMANFRIN', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MMANFRIN/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('MMANFRIN', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12125EUR', sysdate, null); -- Inserting RoleToUserAssignment 'MMANFRIN/OO LOCAL COCO REQUESTOR' harmony.usermgt.create_role_to_user_assignment('MMANFRIN', 'OO LOCAL COCO REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MMANFRIN/OO LOCAL COCO REQUESTOR harmony.usermgt.create_dds_item_assignment('MMANFRIN', 'OO LOCAL COCO REQUESTOR', 'R3_COCO', 'ONE', '2266', sysdate, null); -- Inserting RoleToUserAssignment 'MMANFRIN/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('MMANFRIN', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MMANFRIN/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('MMANFRIN', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2266', sysdate, null); -- Inserting RoleToUserAssignment 'MMANFRIN/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('MMANFRIN', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MMANFRIN/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('MMANFRIN', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2266', sysdate, null); -- Inserting RoleToUserAssignment 'MMARTELL/AMMF LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MMARTELL', 'AMMF LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MMARTELL/AMMF LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('MMARTELL', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012125', sysdate, null); harmony.usermgt.create_dds_item_assignment('MMARTELL', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012107', sysdate, null); -- Inserting RoleToUserAssignment 'MMARTELL/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('MMARTELL', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MMARTELL/BF LOCAL AUTHORIZER' harmony.usermgt.create_role_to_user_assignment('MMARTELL', 'BF LOCAL AUTHORIZER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MMARTELL/BF LOCAL AUTHORIZER harmony.usermgt.create_dds_item_assignment('MMARTELL', 'BF LOCAL AUTHORIZER', 'OO_GROUPING', 'ONE', '247', sysdate, null); harmony.usermgt.create_dds_item_assignment('MMARTELL', 'BF LOCAL AUTHORIZER', 'OO_GROUPING', 'ONE', '239', sysdate, null); -- Inserting RoleToUserAssignment 'MMARTELL/ICL LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MMARTELL', 'ICL LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MMARTELL/ICL LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('MMARTELL', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012125', sysdate, null); harmony.usermgt.create_dds_item_assignment('MMARTELL', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012107', sysdate, null); -- Inserting RoleToUserAssignment 'MMARTELL/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('MMARTELL', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MMARTELL/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('MMARTELL', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12125EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('MMARTELL', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12107EUR', sysdate, null); -- Inserting RoleToUserAssignment 'MMARTELL/OO LOCAL COCO AUTHORIZER/RELEASER' harmony.usermgt.create_role_to_user_assignment('MMARTELL', 'OO LOCAL COCO AUTHORIZER/RELEASER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MMARTELL/OO LOCAL COCO AUTHORIZER/RELEASER harmony.usermgt.create_dds_item_assignment('MMARTELL', 'OO LOCAL COCO AUTHORIZER/RELEASER', 'R3_COCO', 'ONE', '2266', sysdate, null); harmony.usermgt.create_dds_item_assignment('MMARTELL', 'OO LOCAL COCO AUTHORIZER/RELEASER', 'R3_COCO', 'ONE', '2049', sysdate, null); -- Inserting RoleToUserAssignment 'MMARTELL/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('MMARTELL', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MMARTELL/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('MMARTELL', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2266', sysdate, null); harmony.usermgt.create_dds_item_assignment('MMARTELL', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2049', sysdate, null); -- Inserting RoleToUserAssignment 'MMARTELL/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('MMARTELL', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MMARTELL/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('MMARTELL', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2266', sysdate, null); harmony.usermgt.create_dds_item_assignment('MMARTELL', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2049', sysdate, null); -- Inserting RoleToUserAssignment 'MMARTI97/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('MMARTI97', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MMASKOVA/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('MMASKOVA', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MMASKOVA/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('MMASKOVA', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MMASKOVA/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('MMASKOVA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12060EUR', sysdate, null); -- Inserting RoleToUserAssignment 'MMASKOVA/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('MMASKOVA', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MMASKOVA/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('MMASKOVA', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2205', sysdate, null); -- Inserting RoleToUserAssignment 'MMASKOVA/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('MMASKOVA', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MMASKOVA/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('MMASKOVA', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2205', sysdate, null); -- Inserting RoleToUserAssignment 'MMENDO29/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('MMENDO29', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MMENDO29/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('MMENDO29', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '6062', sysdate, null); harmony.usermgt.create_dds_item_assignment('MMENDO29', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '6047', sysdate, null); -- Inserting RoleToUserAssignment 'MMILLER6/AMMF LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MMILLER6', 'AMMF LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MMILLER6/AMMF LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('MMILLER6', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012084', sysdate, null); -- Inserting RoleToUserAssignment 'MMILLER6/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('MMILLER6', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MMILLER6/ICL LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MMILLER6', 'ICL LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MMILLER6/ICL LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('MMILLER6', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012084', sysdate, null); -- Inserting RoleToUserAssignment 'MMILLER6/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('MMILLER6', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MMILLER6/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('MMILLER6', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12084GBP', sysdate, null); -- Inserting RoleToUserAssignment 'MMILLER6/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('MMILLER6', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MMILLER6/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('MMILLER6', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2180', sysdate, null); -- Inserting RoleToUserAssignment 'MMILLER6/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('MMILLER6', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MMILLER6/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('MMILLER6', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2180', sysdate, null); -- Inserting RoleToUserAssignment 'MMITIDIE/AMMF LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MMITIDIE', 'AMMF LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MMITIDIE/AMMF LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('MMITIDIE', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012862', sysdate, null); harmony.usermgt.create_dds_item_assignment('MMITIDIE', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012102', sysdate, null); -- Inserting RoleToUserAssignment 'MMITIDIE/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('MMITIDIE', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MMITIDIE/ICL LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MMITIDIE', 'ICL LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MMITIDIE/ICL LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('MMITIDIE', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012102', sysdate, null); -- Inserting RoleToUserAssignment 'MMITIDIE/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('MMITIDIE', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MMITIDIE/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('MMITIDIE', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12102EUR', sysdate, null); -- Inserting RoleToUserAssignment 'MMUELL10/AMMF LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MMUELL10', 'AMMF LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MMUELL10/AMMF LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('MMUELL10', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012061', sysdate, null); -- Inserting RoleToUserAssignment 'MMUELL10/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('MMUELL10', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MMUELL10/ICL LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MMUELL10', 'ICL LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MMUELL10/ICL LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('MMUELL10', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012061', sysdate, null); -- Inserting RoleToUserAssignment 'MMUELL10/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('MMUELL10', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MMUELL10/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('MMUELL10', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12061EUR', sysdate, null); -- Inserting RoleToUserAssignment 'MMUELL10/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('MMUELL10', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MMUELL10/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('MMUELL10', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2203', sysdate, null); -- Inserting RoleToUserAssignment 'MMUELL10/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('MMUELL10', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MMUELL10/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('MMUELL10', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2203', sysdate, null); -- Inserting RoleToUserAssignment 'MMUIZNI2/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('MMUIZNI2', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MNANOLA/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('MNANOLA', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MNANOLA/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('MNANOLA', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MNANOLA/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('MNANOLA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12659USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MNANOLA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12658USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MNANOLA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12229USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MNANOLA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12151USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MNANOLA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12144USD', sysdate, null); -- Inserting RoleToUserAssignment 'MNAVEDO/AMMF Central reporter' harmony.usermgt.create_role_to_user_assignment('MNAVEDO', 'AMMF Central reporter', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MNAVEDO/AMMF Central reporter harmony.usermgt.create_dds_item_assignment('MNAVEDO', 'AMMF Central reporter', 'R3_BUPA_TRANSFERS', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MNAVEDO/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('MNAVEDO', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MNAVEDO/HB CENTRAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MNAVEDO', 'HB CENTRAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MNAVEDO/HB CENTRAL REPORTER harmony.usermgt.create_dds_item_assignment('MNAVEDO', 'HB CENTRAL REPORTER', 'R3_COCO', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MNAVEDO/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('MNAVEDO', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MNAVEDO/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('MNAVEDO', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12177USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MNAVEDO', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12176USD', sysdate, null); -- Inserting RoleToUserAssignment 'MNAVEDO/OO CENTRAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MNAVEDO', 'OO CENTRAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MNAVEDO/OO CENTRAL REPORTER harmony.usermgt.create_dds_item_assignment('MNAVEDO', 'OO CENTRAL REPORTER', 'R3_COCO', 'ALL', null, sysdate, null); harmony.usermgt.create_dds_item_assignment('MNAVEDO', 'OO CENTRAL REPORTER', 'OO_GROUPING', 'ONE', '6', sysdate, null); -- Inserting RoleToUserAssignment 'MNIKLECZ/AMMF LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MNIKLECZ', 'AMMF LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MNIKLECZ/AMMF LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('MNIKLECZ', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012902', sysdate, null); harmony.usermgt.create_dds_item_assignment('MNIKLECZ', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012809', sysdate, null); -- Inserting RoleToUserAssignment 'MNIKLECZ/AMMF LOCAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('MNIKLECZ', 'AMMF LOCAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MNIKLECZ/AMMF LOCAL REQUESTOR harmony.usermgt.create_dds_item_assignment('MNIKLECZ', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012194', sysdate, null); -- Inserting RoleToUserAssignment 'MNIKLECZ/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('MNIKLECZ', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MNIKLECZ/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('MNIKLECZ', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MNIKLECZ/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('MNIKLECZ', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12902EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('MNIKLECZ', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12809RON', sysdate, null); harmony.usermgt.create_dds_item_assignment('MNIKLECZ', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12194HUF', sysdate, null); -- Inserting RoleToUserAssignment 'MNIKLECZ/IHCTF LOCAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('MNIKLECZ', 'IHCTF LOCAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MNIKLECZ/IHCTF LOCAL REQUESTOR harmony.usermgt.create_dds_item_assignment('MNIKLECZ', 'IHCTF LOCAL REQUESTOR', 'R3_BUPA_IHCTRANSFERS', 'ONE', '0000012194', sysdate, null); -- Inserting RoleToUserAssignment 'MNIKLECZ/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('MNIKLECZ', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MNIKLECZ/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('MNIKLECZ', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2312', sysdate, null); harmony.usermgt.create_dds_item_assignment('MNIKLECZ', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2311', sysdate, null); harmony.usermgt.create_dds_item_assignment('MNIKLECZ', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2029', sysdate, null); -- Inserting RoleToUserAssignment 'MNIKLECZ/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('MNIKLECZ', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MNIKLECZ/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('MNIKLECZ', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2029', sysdate, null); -- Inserting RoleToUserAssignment 'MOCBENA/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('MOCBENA', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MOCBENA/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('MOCBENA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12861USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MOCBENA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12691USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MOCBENA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12490USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MOCBENA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12489USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MOCBENA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12488USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MOCBENA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12229USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MOCBENA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12172USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MOCBENA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12167USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MOCBENA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12153USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MOCBENA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12151USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MOCBENA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12144USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MOCBENA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12143USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MOCBENA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12141USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MOCBENA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12140USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MOCBENA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12135USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MOCBENA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12491USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MOCBENA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12492USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MOCBENA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12493USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MOCBENA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12501USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MOCBENA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12560USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MOCBENA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12623USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MOCBENA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12658USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MOCBENA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12659USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MOCBENA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12660USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MOCBENA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12661USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MOCBENA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12664USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MOCBENA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12674USD', sysdate, null); -- Inserting RoleToUserAssignment 'MOLSSON1/AMMF LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MOLSSON1', 'AMMF LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MOLSSON1/AMMF LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('MOLSSON1', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012690', sysdate, null); -- Inserting RoleToUserAssignment 'MOLSSON1/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('MOLSSON1', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MOLSSON1/ICL LOCAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('MOLSSON1', 'ICL LOCAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MOLSSON1/ICL LOCAL REQUESTOR harmony.usermgt.create_dds_item_assignment('MOLSSON1', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012690', sysdate, null); -- Inserting RoleToUserAssignment 'MOLSSON1/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('MOLSSON1', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MOLSSON1/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('MOLSSON1', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12781GBP', sysdate, null); harmony.usermgt.create_dds_item_assignment('MOLSSON1', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12690GBP', sysdate, null); -- Inserting RoleToUserAssignment 'MOLSSON1/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('MOLSSON1', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MOLSSON1/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('MOLSSON1', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2182', sysdate, null); -- Inserting RoleToUserAssignment 'MOLSSON1/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('MOLSSON1', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MOLSSON1/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('MOLSSON1', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2182', sysdate, null); -- Inserting RoleToUserAssignment 'MOWENS5/AMMF LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MOWENS5', 'AMMF LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MOWENS5/AMMF LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('MOWENS5', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012266', sysdate, null); -- Inserting RoleToUserAssignment 'MOWENS5/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('MOWENS5', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MOWENS5/BF LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MOWENS5', 'BF LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MOWENS5/BF LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('MOWENS5', 'BF LOCAL REPORTER', 'OO_GROUPING', 'ONE', '36', sysdate, null); -- Inserting RoleToUserAssignment 'MOWENS5/ICL LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MOWENS5', 'ICL LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MOWENS5/ICL LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('MOWENS5', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012266', sysdate, null); -- Inserting RoleToUserAssignment 'MOWENS5/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('MOWENS5', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MOWENS5/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('MOWENS5', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12266USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MOWENS5', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12266EUR', sysdate, null); -- Inserting RoleToUserAssignment 'MOWENS5/OO LOCAL COCO REPORTER' harmony.usermgt.create_role_to_user_assignment('MOWENS5', 'OO LOCAL COCO REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MOWENS5/OO LOCAL COCO REPORTER harmony.usermgt.create_dds_item_assignment('MOWENS5', 'OO LOCAL COCO REPORTER', 'R3_COCO', 'ONE', '2056', sysdate, null); -- Inserting RoleToUserAssignment 'MOWENS5/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('MOWENS5', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MOWENS5/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('MOWENS5', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2056', sysdate, null); -- Inserting RoleToUserAssignment 'MOWENS5/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('MOWENS5', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MOWENS5/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('MOWENS5', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2056', sysdate, null); -- Inserting RoleToUserAssignment 'MPARK17/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('MPARK17', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MPARK17/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('MPARK17', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '6096', sysdate, null); harmony.usermgt.create_dds_item_assignment('MPARK17', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '6095', sysdate, null); harmony.usermgt.create_dds_item_assignment('MPARK17', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '6044', sysdate, null); -- Inserting RoleToUserAssignment 'MPASIA/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('MPASIA', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MPASIA/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('MPASIA', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '6050', sysdate, null); -- Inserting RoleToUserAssignment 'MPENA1/AMMF LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MPENA1', 'AMMF LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MPENA1/AMMF LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('MPENA1', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012337', sysdate, null); harmony.usermgt.create_dds_item_assignment('MPENA1', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012324', sysdate, null); harmony.usermgt.create_dds_item_assignment('MPENA1', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012068', sysdate, null); -- Inserting RoleToUserAssignment 'MPENA1/AMMF LOCAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('MPENA1', 'AMMF LOCAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MPENA1/AMMF LOCAL REQUESTOR harmony.usermgt.create_dds_item_assignment('MPENA1', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012328', sysdate, null); harmony.usermgt.create_dds_item_assignment('MPENA1', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012067', sysdate, null); -- Inserting RoleToUserAssignment 'MPENA1/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('MPENA1', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MPENA1/ICL LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MPENA1', 'ICL LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MPENA1/ICL LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('MPENA1', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012337', sysdate, null); harmony.usermgt.create_dds_item_assignment('MPENA1', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012068', sysdate, null); -- Inserting RoleToUserAssignment 'MPENA1/ICL LOCAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('MPENA1', 'ICL LOCAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MPENA1/ICL LOCAL REQUESTOR harmony.usermgt.create_dds_item_assignment('MPENA1', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012328', sysdate, null); harmony.usermgt.create_dds_item_assignment('MPENA1', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012324', sysdate, null); harmony.usermgt.create_dds_item_assignment('MPENA1', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012067', sysdate, null); -- Inserting RoleToUserAssignment 'MPENA1/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('MPENA1', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MPENA1/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('MPENA1', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12337EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('MPENA1', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12328EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('MPENA1', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12324EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('MPENA1', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12068EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('MPENA1', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12067EUR', sysdate, null); -- Inserting RoleToUserAssignment 'MPENA1/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('MPENA1', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MPENA1/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('MPENA1', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2113', sysdate, null); harmony.usermgt.create_dds_item_assignment('MPENA1', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2108', sysdate, null); harmony.usermgt.create_dds_item_assignment('MPENA1', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2041', sysdate, null); -- Inserting RoleToUserAssignment 'MPENA1/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('MPENA1', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MPENA1/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('MPENA1', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2113', sysdate, null); harmony.usermgt.create_dds_item_assignment('MPENA1', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2041', sysdate, null); -- Inserting RoleToUserAssignment 'MPIPISKO/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('MPIPISKO', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MPIPISKO/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('MPIPISKO', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2126', sysdate, null); harmony.usermgt.create_dds_item_assignment('MPIPISKO', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2020', sysdate, null); -- Inserting RoleToUserAssignment 'MPOLAK/ICL LOCAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('MPOLAK', 'ICL LOCAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MPOLAK/ICL LOCAL REQUESTOR harmony.usermgt.create_dds_item_assignment('MPOLAK', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012415', sysdate, null); -- Inserting RoleToUserAssignment 'MPSCHIAV/BF LOCAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('MPSCHIAV', 'BF LOCAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MPSCHIAV/BF LOCAL REQUESTOR harmony.usermgt.create_dds_item_assignment('MPSCHIAV', 'BF LOCAL REQUESTOR', 'OO_GROUPING', 'ONE', '20', sysdate, null); -- Inserting RoleToUserAssignment 'MPSCHIAV/OO LOCAL COCO REQUESTOR' harmony.usermgt.create_role_to_user_assignment('MPSCHIAV', 'OO LOCAL COCO REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MPSCHIAV/OO LOCAL COCO REQUESTOR harmony.usermgt.create_dds_item_assignment('MPSCHIAV', 'OO LOCAL COCO REQUESTOR', 'R3_COCO', 'ONE', '2123', sysdate, null); -- Inserting RoleToUserAssignment 'MPSCHIAV/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('MPSCHIAV', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MPSCHIAV/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('MPSCHIAV', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2123', sysdate, null); -- Inserting RoleToUserAssignment 'MPSCHIAV/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('MPSCHIAV', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MPSCHIAV/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('MPSCHIAV', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2123', sysdate, null); -- Inserting RoleToUserAssignment 'MQUITAL1/AMMF LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MQUITAL1', 'AMMF LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MQUITAL1/AMMF LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012877', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012862', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012831', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012807', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012806', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012592', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012500', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012320', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012127', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012117', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012102', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012069', sysdate, null); -- Inserting RoleToUserAssignment 'MQUITAL1/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('MQUITAL1', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MQUITAL1/BF LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MQUITAL1', 'BF LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MQUITAL1/BF LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'BF LOCAL REPORTER', 'OO_GROUPING', 'ONE', '47', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'BF LOCAL REPORTER', 'OO_GROUPING', 'ONE', '244', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'BF LOCAL REPORTER', 'OO_GROUPING', 'ONE', '242', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'BF LOCAL REPORTER', 'OO_GROUPING', 'ONE', '238', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'BF LOCAL REPORTER', 'OO_GROUPING', 'ONE', '20', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'BF LOCAL REPORTER', 'OO_GROUPING', 'ONE', '188', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'BF LOCAL REPORTER', 'OO_GROUPING', 'ONE', '187', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'BF LOCAL REPORTER', 'OO_GROUPING', 'ONE', '16', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'BF LOCAL REPORTER', 'OO_GROUPING', 'ONE', '157', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'BF LOCAL REPORTER', 'OO_GROUPING', 'ONE', '151', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'BF LOCAL REPORTER', 'OO_GROUPING', 'ONE', '134', sysdate, null); -- Inserting RoleToUserAssignment 'MQUITAL1/ICL LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MQUITAL1', 'ICL LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MQUITAL1/ICL LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012127', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012102', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012094', sysdate, null); -- Inserting RoleToUserAssignment 'MQUITAL1/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('MQUITAL1', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MQUITAL1/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12877EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12862EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12831EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12807USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12806GBP', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12592EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12009EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12069EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12094EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12102EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12117EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12127SEK', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12320EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12320GBP', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12500CHF', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12500EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12500GBP', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12500SEK', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12500USD', sysdate, null); -- Inserting RoleToUserAssignment 'MQUITAL1/OO LOCAL COCO REPORTER' harmony.usermgt.create_role_to_user_assignment('MQUITAL1', 'OO LOCAL COCO REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MQUITAL1/OO LOCAL COCO REPORTER harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'OO LOCAL COCO REPORTER', 'R3_COCO', 'ONE', '2263', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'OO LOCAL COCO REPORTER', 'R3_COCO', 'ONE', '2260', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'OO LOCAL COCO REPORTER', 'R3_COCO', 'ONE', '2246', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'OO LOCAL COCO REPORTER', 'R3_COCO', 'ONE', '2245', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'OO LOCAL COCO REPORTER', 'R3_COCO', 'ONE', '2229', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'OO LOCAL COCO REPORTER', 'R3_COCO', 'ONE', '2163', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'OO LOCAL COCO REPORTER', 'R3_COCO', 'ONE', '2123', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'OO LOCAL COCO REPORTER', 'R3_COCO', 'ONE', '2117', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'OO LOCAL COCO REPORTER', 'R3_COCO', 'ONE', '2100', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'OO LOCAL COCO REPORTER', 'R3_COCO', 'ONE', '2051', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'OO LOCAL COCO REPORTER', 'R3_COCO', 'ONE', '2047', sysdate, null); -- Inserting RoleToUserAssignment 'MQUITAL1/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('MQUITAL1', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MQUITAL1/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2260', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2017', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2034', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2047', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2051', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2100', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2102', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2117', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2123', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2163', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2175', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2229', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2245', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2246', sysdate, null); -- Inserting RoleToUserAssignment 'MQUITAL1/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('MQUITAL1', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MQUITAL1/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2047', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2051', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2100', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2102', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2117', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2123', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2163', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2175', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2229', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2245', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2246', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2260', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2263', sysdate, null); -- Inserting RoleToUserAssignment 'MRAGHOEN/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('MRAGHOEN', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MRAGHOEN/BF LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MRAGHOEN', 'BF LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MRAGHOEN/BF LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('MRAGHOEN', 'BF LOCAL REPORTER', 'OO_GROUPING', 'ONE', '248', sysdate, null); -- Inserting RoleToUserAssignment 'MRAGHOEN/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('MRAGHOEN', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MRAGHOEN/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('MRAGHOEN', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12893USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAGHOEN', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12893EUR', sysdate, null); -- Inserting RoleToUserAssignment 'MRAGHOEN/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('MRAGHOEN', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MRAGHOEN/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('MRAGHOEN', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2270', sysdate, null); -- Inserting RoleToUserAssignment 'MRAGHOEN/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('MRAGHOEN', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MRAGHOEN/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('MRAGHOEN', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2270', sysdate, null); -- Inserting RoleToUserAssignment 'MRAMOS41/AMMF Central reporter' harmony.usermgt.create_role_to_user_assignment('MRAMOS41', 'AMMF Central reporter', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MRAMOS41/AMMF Central reporter harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'AMMF Central reporter', 'R3_BUPA_TRANSFERS', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MRAMOS41/AMMF LOCAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('MRAMOS41', 'AMMF LOCAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MRAMOS41/AMMF LOCAL REQUESTOR harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012721', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012720', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012719', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012718', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012717', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012295', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012294', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012293', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012292', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012188', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012187', sysdate, null); -- Inserting RoleToUserAssignment 'MRAMOS41/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('MRAMOS41', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MRAMOS41/HB CENTRAL RELEASER' harmony.usermgt.create_role_to_user_assignment('MRAMOS41', 'HB CENTRAL RELEASER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MRAMOS41/HB CENTRAL RELEASER harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5032', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5031', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5030', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5029', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5028', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5027', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5026', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5025', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5024', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5023', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5022', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5021', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5004', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5006', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5009', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5010', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5011', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5013', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5014', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5015', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5016', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5017', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5018', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5019', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5020', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5033', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5037', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5038', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5040', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5041', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5042', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5043', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5044', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5045', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5046', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5047', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5048', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5049', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5050', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5051', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5052', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5053', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5054', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5055', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5057', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5059', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5060', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5061', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5066', sysdate, null); -- Inserting RoleToUserAssignment 'MRAMOS41/HB CENTRAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MRAMOS41', 'HB CENTRAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MRAMOS41/HB CENTRAL REPORTER harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL REPORTER', 'R3_COCO', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MRAMOS41/HB CENTRAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('MRAMOS41', 'HB CENTRAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MRAMOS41/HB CENTRAL REQUESTOR harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5032', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5031', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5030', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5029', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5028', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5027', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5026', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5025', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5024', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5023', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5022', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5021', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5004', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5006', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5009', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5010', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5011', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5013', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5014', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5015', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5016', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5017', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5018', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5019', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5020', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5033', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5037', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5038', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5040', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5041', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5042', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5043', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5044', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5045', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5046', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5047', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5048', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5049', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5050', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5051', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5052', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5053', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5054', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5055', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5057', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5059', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5060', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5061', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5066', sysdate, null); -- Inserting RoleToUserAssignment 'MRAMOS41/ICL Central reporter' harmony.usermgt.create_role_to_user_assignment('MRAMOS41', 'ICL Central reporter', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MRAMOS41/ICL Central reporter harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'ICL Central reporter', 'R3_BUPA_ICL', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MRAMOS41/ICL LOCAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('MRAMOS41', 'ICL LOCAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MRAMOS41/ICL LOCAL REQUESTOR harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012721', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012720', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012719', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012718', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012717', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012295', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012294', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012293', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012292', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012188', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012187', sysdate, null); -- Inserting RoleToUserAssignment 'MRAMOS41/MR CENTRAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MRAMOS41', 'MR CENTRAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MRAMOS41/MR CENTRAL REPORTER harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'MR CENTRAL REPORTER', 'R3_COCO', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MRAMOS41/MR CENTRAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('MRAMOS41', 'MR CENTRAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MRAMOS41/MR CENTRAL REQUESTOR harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5032', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5031', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5030', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5029', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5028', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5027', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5026', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5025', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5024', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5023', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5022', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5021', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5004', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5006', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5009', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5010', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5011', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5013', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5014', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5015', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5016', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5017', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5018', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5019', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5020', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5033', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5037', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5038', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5040', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5041', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5042', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5043', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5044', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5045', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5046', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5047', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5048', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5049', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5050', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5051', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5052', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5053', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5054', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5055', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5057', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5059', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5060', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5061', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5066', sysdate, null); -- Inserting RoleToUserAssignment 'MRAMOS41/OO CENTRAL AUTHORIZER' harmony.usermgt.create_role_to_user_assignment('MRAMOS41', 'OO CENTRAL AUTHORIZER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MRAMOS41/OO CENTRAL AUTHORIZER harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5066', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5061', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5060', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5055', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5054', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5053', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5052', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5051', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5050', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5049', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5048', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5047', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5046', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5045', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5044', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5043', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5042', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5041', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5040', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5038', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5037', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5033', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5032', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5019', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5018', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5017', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5016', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5015', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5014', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5013', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5011', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5010', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5009', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5006', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5004', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'OO CENTRAL AUTHORIZER', 'OO_GROUPING', 'ONE', '183', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5020', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5021', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5022', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5023', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5024', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5025', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5026', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5027', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5028', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5029', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5030', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5031', sysdate, null); -- Inserting RoleToUserAssignment 'MRAMOS41/OO CENTRAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MRAMOS41', 'OO CENTRAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MRAMOS41/OO CENTRAL REPORTER harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'OO CENTRAL REPORTER', 'R3_COCO', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MRAMOS41/OO CENTRAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('MRAMOS41', 'OO CENTRAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MRAMOS41/OO CENTRAL REQUESTOR harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5066', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5061', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5060', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5055', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5054', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5053', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5052', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5051', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5050', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5049', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5048', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5047', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5046', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5045', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5044', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5043', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5042', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5041', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5040', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5038', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5037', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5033', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5032', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5019', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5018', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5017', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5016', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5015', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5014', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5013', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5011', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5010', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5009', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5006', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5004', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'OO CENTRAL REQUESTOR', 'OO_GROUPING', 'ONE', '183', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5020', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5021', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5022', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5023', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5024', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5025', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5026', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5027', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5028', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5029', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5030', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5031', sysdate, null); -- Inserting RoleToUserAssignment 'MRAMOS41/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('MRAMOS41', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MRAMOS41/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MRAMOS41/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('MRAMOS41', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MRAMOS41/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MRAMOS41/TOPS2' harmony.usermgt.create_role_to_user_assignment('MRAMOS41', 'TOPS2', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MREINDLO/OO LOCAL COCO REPORTER' harmony.usermgt.create_role_to_user_assignment('MREINDLO', 'OO LOCAL COCO REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MREINDLO/OO LOCAL COCO REPORTER harmony.usermgt.create_dds_item_assignment('MREINDLO', 'OO LOCAL COCO REPORTER', 'R3_COCO', 'ONE', '2109', sysdate, null); -- Inserting RoleToUserAssignment 'MREINOVA/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('MREINOVA', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MREINOVA/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('MREINOVA', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MREINOVA/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('MREINOVA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12261EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('MREINOVA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12108EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('MREINOVA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12005EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('MREINOVA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12004EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('MREINOVA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12003EUR', sysdate, null); -- Inserting RoleToUserAssignment 'MREINOVA/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('MREINOVA', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MREINOVA/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('MREINOVA', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2110', sysdate, null); harmony.usermgt.create_dds_item_assignment('MREINOVA', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2013', sysdate, null); -- Inserting RoleToUserAssignment 'MRINGOOT/AMMF Central reporter' harmony.usermgt.create_role_to_user_assignment('MRINGOOT', 'AMMF Central reporter', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MRINGOOT/AMMF Central reporter harmony.usermgt.create_dds_item_assignment('MRINGOOT', 'AMMF Central reporter', 'R3_BUPA_TRANSFERS', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MRINGOOT/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('MRINGOOT', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MRINGOOT/HB CENTRAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MRINGOOT', 'HB CENTRAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MRINGOOT/HB CENTRAL REPORTER harmony.usermgt.create_dds_item_assignment('MRINGOOT', 'HB CENTRAL REPORTER', 'R3_COCO', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MRINGOOT/HB COCO COMBI Reporter' harmony.usermgt.create_role_to_user_assignment('MRINGOOT', 'HB COCO COMBI Reporter', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MRINGOOT/ICL Central reporter' harmony.usermgt.create_role_to_user_assignment('MRINGOOT', 'ICL Central reporter', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MRINGOOT/ICL Central reporter harmony.usermgt.create_dds_item_assignment('MRINGOOT', 'ICL Central reporter', 'R3_BUPA_ICL', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MRINGOOT/IHC CENTRAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('MRINGOOT', 'IHC CENTRAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MRINGOOT/IHC CENTRAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('MRINGOOT', 'IHC CENTRAL POSITION REPORT', 'R3_IHBACCOUNT', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MRINGOOT/IHCTF REPORTER' harmony.usermgt.create_role_to_user_assignment('MRINGOOT', 'IHCTF REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MRINGOOT/IHCTF REPORTER harmony.usermgt.create_dds_item_assignment('MRINGOOT', 'IHCTF REPORTER', 'R3_BUPA_IHCTRANSFERS', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MRINGOOT/IT SUPPORT' harmony.usermgt.create_role_to_user_assignment('MRINGOOT', 'IT SUPPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MRINGOOT/IT SUPPORT harmony.usermgt.create_dds_item_assignment('MRINGOOT', 'IT SUPPORT', 'R3_COCO_RCM', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MRINGOOT/MR CENTRAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MRINGOOT', 'MR CENTRAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MRINGOOT/MR CENTRAL REPORTER harmony.usermgt.create_dds_item_assignment('MRINGOOT', 'MR CENTRAL REPORTER', 'R3_COCO', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MRINGOOT/OO CENTRAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MRINGOOT', 'OO CENTRAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MRINGOOT/OO CENTRAL REPORTER harmony.usermgt.create_dds_item_assignment('MRINGOOT', 'OO CENTRAL REPORTER', 'R3_COCO', 'ALL', null, sysdate, null); harmony.usermgt.create_dds_item_assignment('MRINGOOT', 'OO CENTRAL REPORTER', 'OO_GROUPING', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MRINGOOT/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('MRINGOOT', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MRINGOOT/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('MRINGOOT', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MRINGOOT/UME READ ALL' harmony.usermgt.create_role_to_user_assignment('MRINGOOT', 'UME READ ALL', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MROBINS4/AMMF LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MROBINS4', 'AMMF LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MROBINS4/AMMF LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('MROBINS4', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012693', sysdate, null); harmony.usermgt.create_dds_item_assignment('MROBINS4', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012545', sysdate, null); harmony.usermgt.create_dds_item_assignment('MROBINS4', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012532', sysdate, null); harmony.usermgt.create_dds_item_assignment('MROBINS4', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012314', sysdate, null); -- Inserting RoleToUserAssignment 'MROBINS4/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('MROBINS4', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MROBINS4/ICL LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MROBINS4', 'ICL LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MROBINS4/ICL LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('MROBINS4', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012545', sysdate, null); harmony.usermgt.create_dds_item_assignment('MROBINS4', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012532', sysdate, null); harmony.usermgt.create_dds_item_assignment('MROBINS4', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012314', sysdate, null); harmony.usermgt.create_dds_item_assignment('MROBINS4', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012312', sysdate, null); -- Inserting RoleToUserAssignment 'MROBINS4/ICL LOCAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('MROBINS4', 'ICL LOCAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MROBINS4/ICL LOCAL REQUESTOR harmony.usermgt.create_dds_item_assignment('MROBINS4', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012693', sysdate, null); -- Inserting RoleToUserAssignment 'MROBINS4/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('MROBINS4', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MROBINS4/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('MROBINS4', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12693GBP', sysdate, null); harmony.usermgt.create_dds_item_assignment('MROBINS4', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12545GBP', sysdate, null); harmony.usermgt.create_dds_item_assignment('MROBINS4', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12532GBP', sysdate, null); harmony.usermgt.create_dds_item_assignment('MROBINS4', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12314GBP', sysdate, null); harmony.usermgt.create_dds_item_assignment('MROBINS4', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12086GBP', sysdate, null); -- Inserting RoleToUserAssignment 'MROBINS4/IHCTF LOCAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('MROBINS4', 'IHCTF LOCAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MROBINS4/IHCTF LOCAL REQUESTOR harmony.usermgt.create_dds_item_assignment('MROBINS4', 'IHCTF LOCAL REQUESTOR', 'R3_BUPA_IHCTRANSFERS', 'ONE', '0000012693', sysdate, null); -- Inserting RoleToUserAssignment 'MROBINS4/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('MROBINS4', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MROBINS4/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('MROBINS4', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2186', sysdate, null); harmony.usermgt.create_dds_item_assignment('MROBINS4', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2181', sysdate, null); harmony.usermgt.create_dds_item_assignment('MROBINS4', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2105', sysdate, null); harmony.usermgt.create_dds_item_assignment('MROBINS4', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2103', sysdate, null); -- Inserting RoleToUserAssignment 'MROBINS4/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('MROBINS4', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MROBINS4/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('MROBINS4', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2185', sysdate, null); harmony.usermgt.create_dds_item_assignment('MROBINS4', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2181', sysdate, null); harmony.usermgt.create_dds_item_assignment('MROBINS4', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2105', sysdate, null); -- Inserting RoleToUserAssignment 'MROBSON/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('MROBSON', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MROBSON/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('MROBSON', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MROBSON/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('MROBSON', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12981GBP', sysdate, null); harmony.usermgt.create_dds_item_assignment('MROBSON', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12093GBP', sysdate, null); harmony.usermgt.create_dds_item_assignment('MROBSON', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12093EUR', sysdate, null); -- Inserting RoleToUserAssignment 'MROBSON/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('MROBSON', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MROBSON/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('MROBSON', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2297', sysdate, null); -- Inserting RoleToUserAssignment 'MROBSON/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('MROBSON', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MROBSON/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('MROBSON', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2297', sysdate, null); -- Inserting RoleToUserAssignment 'MSAGLAM/AMMF LOCAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('MSAGLAM', 'AMMF LOCAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MSAGLAM/AMMF LOCAL REQUESTOR harmony.usermgt.create_dds_item_assignment('MSAGLAM', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012463', sysdate, null); -- Inserting RoleToUserAssignment 'MSAGLAM/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('MSAGLAM', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MSAGLAM/ICL LOCAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('MSAGLAM', 'ICL LOCAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MSAGLAM/ICL LOCAL REQUESTOR harmony.usermgt.create_dds_item_assignment('MSAGLAM', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012463', sysdate, null); -- Inserting RoleToUserAssignment 'MSAGLAM/IHCTF LOCAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('MSAGLAM', 'IHCTF LOCAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MSAGLAM/IHCTF LOCAL REQUESTOR harmony.usermgt.create_dds_item_assignment('MSAGLAM', 'IHCTF LOCAL REQUESTOR', 'R3_BUPA_IHCTRANSFERS', 'ONE', '0000012463', sysdate, null); -- Inserting RoleToUserAssignment 'MSAKYS/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('MSAKYS', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MSAKYS/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('MSAKYS', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MSAKYS/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('MSAKYS', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12811LTL', sysdate, null); harmony.usermgt.create_dds_item_assignment('MSAKYS', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12811EUR', sysdate, null); -- Inserting RoleToUserAssignment 'MSAKYS/IHCTF LOCAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('MSAKYS', 'IHCTF LOCAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MSAKYS/IHCTF LOCAL REQUESTOR harmony.usermgt.create_dds_item_assignment('MSAKYS', 'IHCTF LOCAL REQUESTOR', 'R3_BUPA_IHCTRANSFERS', 'ONE', '0000012811', sysdate, null); -- Inserting RoleToUserAssignment 'MSANDACH/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('MSANDACH', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MSANDACH/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('MSANDACH', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MSANDACH/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('MSANDACH', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12002EUR', sysdate, null); -- Inserting RoleToUserAssignment 'MSANDACH/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('MSANDACH', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MSANDACH/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('MSANDACH', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2012', sysdate, null); -- Inserting RoleToUserAssignment 'MSERANT1/AMMF LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MSERANT1', 'AMMF LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MSERANT1/AMMF LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('MSERANT1', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012324', sysdate, null); harmony.usermgt.create_dds_item_assignment('MSERANT1', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012073', sysdate, null); harmony.usermgt.create_dds_item_assignment('MSERANT1', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012070', sysdate, null); harmony.usermgt.create_dds_item_assignment('MSERANT1', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012069', sysdate, null); harmony.usermgt.create_dds_item_assignment('MSERANT1', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012067', sysdate, null); -- Inserting RoleToUserAssignment 'MSERANT1/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('MSERANT1', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MSERANT1/ICL LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MSERANT1', 'ICL LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MSERANT1/ICL LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('MSERANT1', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012073', sysdate, null); harmony.usermgt.create_dds_item_assignment('MSERANT1', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012070', sysdate, null); harmony.usermgt.create_dds_item_assignment('MSERANT1', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012069', sysdate, null); harmony.usermgt.create_dds_item_assignment('MSERANT1', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012067', sysdate, null); -- Inserting RoleToUserAssignment 'MSERANT1/ICL LOCAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('MSERANT1', 'ICL LOCAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MSERANT1/ICL LOCAL REQUESTOR harmony.usermgt.create_dds_item_assignment('MSERANT1', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012324', sysdate, null); -- Inserting RoleToUserAssignment 'MSERANT1/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('MSERANT1', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MSERANT1/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('MSERANT1', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12324EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('MSERANT1', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12073EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('MSERANT1', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12072EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('MSERANT1', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12071EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('MSERANT1', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12070EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('MSERANT1', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12069EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('MSERANT1', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12067EUR', sysdate, null); -- Inserting RoleToUserAssignment 'MSERANT1/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('MSERANT1', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MSERANT1/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('MSERANT1', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2108', sysdate, null); harmony.usermgt.create_dds_item_assignment('MSERANT1', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2100', sysdate, null); -- Inserting RoleToUserAssignment 'MSHIGEY1/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('MSHIGEY1', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MSHIGEY1/BF LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MSHIGEY1', 'BF LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MSHIGEY1/BF LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('MSHIGEY1', 'BF LOCAL REPORTER', 'OO_GROUPING', 'ONE', '165', sysdate, null); -- Inserting RoleToUserAssignment 'MSHIGEY1/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('MSHIGEY1', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MSHIGEY1/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('MSHIGEY1', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12290JPY', sysdate, null); -- Inserting RoleToUserAssignment 'MSHIGEY1/OO LOCAL COCO REPORTER' harmony.usermgt.create_role_to_user_assignment('MSHIGEY1', 'OO LOCAL COCO REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MSHIGEY1/OO LOCAL COCO REPORTER harmony.usermgt.create_dds_item_assignment('MSHIGEY1', 'OO LOCAL COCO REPORTER', 'R3_COCO', 'ONE', '6005', sysdate, null); -- Inserting RoleToUserAssignment 'MSHIGEY1/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('MSHIGEY1', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MSHIGEY1/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('MSHIGEY1', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '6005', sysdate, null); -- Inserting RoleToUserAssignment 'MSHIGEY1/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('MSHIGEY1', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MSHIGEY1/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('MSHIGEY1', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '6005', sysdate, null); -- Inserting RoleToUserAssignment 'MSIDING/AMMF LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MSIDING', 'AMMF LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MSIDING/AMMF LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('MSIDING', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012127', sysdate, null); -- Inserting RoleToUserAssignment 'MSIDING/BF LOCAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('MSIDING', 'BF LOCAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MSIDING/BF LOCAL REQUESTOR harmony.usermgt.create_dds_item_assignment('MSIDING', 'BF LOCAL REQUESTOR', 'OO_GROUPING', 'ONE', '198', sysdate, null); -- Inserting RoleToUserAssignment 'MSIDING/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('MSIDING', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MSIDING/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('MSIDING', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12127SEK', sysdate, null); -- Inserting RoleToUserAssignment 'MSIDING/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('MSIDING', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MSIDING/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('MSIDING', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2034', sysdate, null); -- Inserting RoleToUserAssignment 'MSMITH02/AMMF LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MSMITH02', 'AMMF LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MSMITH02/AMMF LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('MSMITH02', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012095', sysdate, null); harmony.usermgt.create_dds_item_assignment('MSMITH02', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012094', sysdate, null); harmony.usermgt.create_dds_item_assignment('MSMITH02', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012092', sysdate, null); harmony.usermgt.create_dds_item_assignment('MSMITH02', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012090', sysdate, null); -- Inserting RoleToUserAssignment 'MSMITH02/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('MSMITH02', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MSMITH02/ICL LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MSMITH02', 'ICL LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MSMITH02/ICL LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('MSMITH02', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012095', sysdate, null); harmony.usermgt.create_dds_item_assignment('MSMITH02', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012094', sysdate, null); harmony.usermgt.create_dds_item_assignment('MSMITH02', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012092', sysdate, null); harmony.usermgt.create_dds_item_assignment('MSMITH02', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012090', sysdate, null); -- Inserting RoleToUserAssignment 'MSMITH02/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('MSMITH02', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MSMITH02/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('MSMITH02', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12095EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('MSMITH02', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12094EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('MSMITH02', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12092USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MSMITH02', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12092GBP', sysdate, null); harmony.usermgt.create_dds_item_assignment('MSMITH02', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12092EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('MSMITH02', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12090USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MSMITH02', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12090GBP', sysdate, null); harmony.usermgt.create_dds_item_assignment('MSMITH02', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12090EUR', sysdate, null); -- Inserting RoleToUserAssignment 'MSMITH02/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('MSMITH02', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MSMITH02/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('MSMITH02', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2187', sysdate, null); harmony.usermgt.create_dds_item_assignment('MSMITH02', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2177', sysdate, null); harmony.usermgt.create_dds_item_assignment('MSMITH02', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2018', sysdate, null); harmony.usermgt.create_dds_item_assignment('MSMITH02', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2017', sysdate, null); -- Inserting RoleToUserAssignment 'MSMITH02/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('MSMITH02', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MSMITH02/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('MSMITH02', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2187', sysdate, null); harmony.usermgt.create_dds_item_assignment('MSMITH02', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2177', sysdate, null); -- Inserting RoleToUserAssignment 'MSTEHLIK/AMMF LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MSTEHLIK', 'AMMF LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MSTEHLIK/AMMF LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('MSTEHLIK', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000013112', sysdate, null); harmony.usermgt.create_dds_item_assignment('MSTEHLIK', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012474', sysdate, null); -- Inserting RoleToUserAssignment 'MSTEHLIK/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('MSTEHLIK', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MSTEHLIK/ICL LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MSTEHLIK', 'ICL LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MSTEHLIK/ICL LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('MSTEHLIK', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012474', sysdate, null); -- Inserting RoleToUserAssignment 'MSTEHLIK/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('MSTEHLIK', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MSTEHLIK/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('MSTEHLIK', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE13112NOK', sysdate, null); harmony.usermgt.create_dds_item_assignment('MSTEHLIK', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12474SEK', sysdate, null); harmony.usermgt.create_dds_item_assignment('MSTEHLIK', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12474GBP', sysdate, null); harmony.usermgt.create_dds_item_assignment('MSTEHLIK', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12474EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('MSTEHLIK', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12474DKK', sysdate, null); -- Inserting RoleToUserAssignment 'MSTEHLIK/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('MSTEHLIK', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MSTEHLIK/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('MSTEHLIK', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2357', sysdate, null); harmony.usermgt.create_dds_item_assignment('MSTEHLIK', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2349', sysdate, null); -- Inserting RoleToUserAssignment 'MSTEHLIK/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('MSTEHLIK', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MSTEHLIK/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('MSTEHLIK', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2357', sysdate, null); harmony.usermgt.create_dds_item_assignment('MSTEHLIK', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2349', sysdate, null); -- Inserting RoleToUserAssignment 'MSTOUTEN/AMMF LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MSTOUTEN', 'AMMF LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MSTOUTEN/AMMF LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('MSTOUTEN', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012910', sysdate, null); harmony.usermgt.create_dds_item_assignment('MSTOUTEN', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012854', sysdate, null); -- Inserting RoleToUserAssignment 'MSTOUTEN/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('MSTOUTEN', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MSTOUTEN/BF LOCAL AUTHORIZER' harmony.usermgt.create_role_to_user_assignment('MSTOUTEN', 'BF LOCAL AUTHORIZER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MSTOUTEN/BF LOCAL AUTHORIZER harmony.usermgt.create_dds_item_assignment('MSTOUTEN', 'BF LOCAL AUTHORIZER', 'OO_GROUPING', 'ONE', '269', sysdate, null); -- Inserting RoleToUserAssignment 'MSTOUTEN/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('MSTOUTEN', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MSTOUTEN/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('MSTOUTEN', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12910USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MSTOUTEN', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12910EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('MSTOUTEN', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12854USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('MSTOUTEN', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12854SEK', sysdate, null); harmony.usermgt.create_dds_item_assignment('MSTOUTEN', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12854GBP', sysdate, null); harmony.usermgt.create_dds_item_assignment('MSTOUTEN', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12854EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('MSTOUTEN', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12854CHF', sysdate, null); harmony.usermgt.create_dds_item_assignment('MSTOUTEN', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12854AUD', sysdate, null); -- Inserting RoleToUserAssignment 'MSTOUTEN/OO LOCAL COCO AUTHORIZER/RELEASER' harmony.usermgt.create_role_to_user_assignment('MSTOUTEN', 'OO LOCAL COCO AUTHORIZER/RELEASER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MSTOUTEN/OO LOCAL COCO AUTHORIZER/RELEASER harmony.usermgt.create_dds_item_assignment('MSTOUTEN', 'OO LOCAL COCO AUTHORIZER/RELEASER', 'R3_COCO', 'ONE', '2292', sysdate, null); -- Inserting RoleToUserAssignment 'MSTOUTEN/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('MSTOUTEN', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MSTOUTEN/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('MSTOUTEN', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2292', sysdate, null); harmony.usermgt.create_dds_item_assignment('MSTOUTEN', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2238', sysdate, null); -- Inserting RoleToUserAssignment 'MSTOUTEN/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('MSTOUTEN', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MSTOUTEN/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('MSTOUTEN', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2292', sysdate, null); harmony.usermgt.create_dds_item_assignment('MSTOUTEN', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2238', sysdate, null); -- Inserting RoleToUserAssignment 'MSUZUK13/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('MSUZUK13', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MSUZUK13/BF LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MSUZUK13', 'BF LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MSUZUK13/BF LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('MSUZUK13', 'BF LOCAL REPORTER', 'OO_GROUPING', 'ONE', '165', sysdate, null); -- Inserting RoleToUserAssignment 'MSUZUK13/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('MSUZUK13', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MSUZUK13/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('MSUZUK13', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12290JPY', sysdate, null); -- Inserting RoleToUserAssignment 'MSUZUK13/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('MSUZUK13', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MSUZUK13/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('MSUZUK13', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '6005', sysdate, null); -- Inserting RoleToUserAssignment 'MSUZUK13/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('MSUZUK13', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MSUZUK13/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('MSUZUK13', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '6005', sysdate, null); -- Inserting RoleToUserAssignment 'MTANG9/AMMF LOCAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('MTANG9', 'AMMF LOCAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MTANG9/AMMF LOCAL REQUESTOR harmony.usermgt.create_dds_item_assignment('MTANG9', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000013037', sysdate, null); -- Inserting RoleToUserAssignment 'MTANG9/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('MTANG9', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MTANG9/ICL LOCAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('MTANG9', 'ICL LOCAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MTANG9/ICL LOCAL REQUESTOR harmony.usermgt.create_dds_item_assignment('MTANG9', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000013037', sysdate, null); -- Inserting RoleToUserAssignment 'MTANG9/IHCTF LOCAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('MTANG9', 'IHCTF LOCAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MTANG9/IHCTF LOCAL REQUESTOR harmony.usermgt.create_dds_item_assignment('MTANG9', 'IHCTF LOCAL REQUESTOR', 'R3_BUPA_IHCTRANSFERS', 'ONE', '0000013037', sysdate, null); -- Inserting RoleToUserAssignment 'MTENENBM/ICL LOCAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('MTENENBM', 'ICL LOCAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MTENENBM/ICL LOCAL REQUESTOR harmony.usermgt.create_dds_item_assignment('MTENENBM', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012415', sysdate, null); -- Inserting RoleToUserAssignment 'MTETOUR2/AMMF LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MTETOUR2', 'AMMF LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MTETOUR2/AMMF LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('MTETOUR2', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012906', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTETOUR2', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012729', sysdate, null); -- Inserting RoleToUserAssignment 'MTETOUR2/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('MTETOUR2', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MTETOUR2/BF LOCAL AUTHORIZER' harmony.usermgt.create_role_to_user_assignment('MTETOUR2', 'BF LOCAL AUTHORIZER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MTETOUR2/BF LOCAL AUTHORIZER harmony.usermgt.create_dds_item_assignment('MTETOUR2', 'BF LOCAL AUTHORIZER', 'OO_GROUPING', 'ONE', '251', sysdate, null); -- Inserting RoleToUserAssignment 'MTETOUR2/BF LOCAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('MTETOUR2', 'BF LOCAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MTETOUR2/BF LOCAL REQUESTOR harmony.usermgt.create_dds_item_assignment('MTETOUR2', 'BF LOCAL REQUESTOR', 'OO_GROUPING', 'ONE', '251', sysdate, null); -- Inserting RoleToUserAssignment 'MTETOUR2/ICL LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MTETOUR2', 'ICL LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MTETOUR2/ICL LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('MTETOUR2', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012906', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTETOUR2', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012729', sysdate, null); -- Inserting RoleToUserAssignment 'MTETOUR2/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('MTETOUR2', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MTETOUR2/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('MTETOUR2', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12906EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTETOUR2', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12729EUR', sysdate, null); -- Inserting RoleToUserAssignment 'MTETOUR2/OO LOCAL COCO AUTHORIZER/RELEASER' harmony.usermgt.create_role_to_user_assignment('MTETOUR2', 'OO LOCAL COCO AUTHORIZER/RELEASER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MTETOUR2/OO LOCAL COCO AUTHORIZER/RELEASER harmony.usermgt.create_dds_item_assignment('MTETOUR2', 'OO LOCAL COCO AUTHORIZER/RELEASER', 'R3_COCO', 'ONE', '2282', sysdate, null); -- Inserting RoleToUserAssignment 'MTETOUR2/OO LOCAL COCO REQUESTOR' harmony.usermgt.create_role_to_user_assignment('MTETOUR2', 'OO LOCAL COCO REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MTETOUR2/OO LOCAL COCO REQUESTOR harmony.usermgt.create_dds_item_assignment('MTETOUR2', 'OO LOCAL COCO REQUESTOR', 'R3_COCO', 'ONE', '2282', sysdate, null); -- Inserting RoleToUserAssignment 'MTETOUR2/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('MTETOUR2', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MTETOUR2/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('MTETOUR2', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2282', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTETOUR2', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2219', sysdate, null); -- Inserting RoleToUserAssignment 'MTETOUR2/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('MTETOUR2', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MTETOUR2/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('MTETOUR2', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2282', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTETOUR2', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2219', sysdate, null); -- Inserting RoleToUserAssignment 'MTORFS/AMMF Central reporter' harmony.usermgt.create_role_to_user_assignment('MTORFS', 'AMMF Central reporter', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MTORFS/AMMF Central reporter harmony.usermgt.create_dds_item_assignment('MTORFS', 'AMMF Central reporter', 'R3_BUPA_TRANSFERS', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MTORFS/APPLOG UPDATE ENDSTAMP' harmony.usermgt.create_role_to_user_assignment('MTORFS', 'APPLOG UPDATE ENDSTAMP', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MTORFS/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('MTORFS', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MTORFS/BATCH BANK COMMUNICATION' harmony.usermgt.create_role_to_user_assignment('MTORFS', 'BATCH BANK COMMUNICATION', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MTORFS/BATCH C4S TO SYM' harmony.usermgt.create_role_to_user_assignment('MTORFS', 'BATCH C4S TO SYM', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MTORFS/HB CENTRAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MTORFS', 'HB CENTRAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MTORFS/HB CENTRAL REPORTER harmony.usermgt.create_dds_item_assignment('MTORFS', 'HB CENTRAL REPORTER', 'R3_COCO', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MTORFS/HB COCO COMBI Reporter' harmony.usermgt.create_role_to_user_assignment('MTORFS', 'HB COCO COMBI Reporter', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MTORFS/ICL Central reporter' harmony.usermgt.create_role_to_user_assignment('MTORFS', 'ICL Central reporter', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MTORFS/ICL Central reporter harmony.usermgt.create_dds_item_assignment('MTORFS', 'ICL Central reporter', 'R3_BUPA_ICL', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MTORFS/IHC CENTRAL EXPORT' harmony.usermgt.create_role_to_user_assignment('MTORFS', 'IHC CENTRAL EXPORT', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MTORFS/IHC CENTRAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('MTORFS', 'IHC CENTRAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MTORFS/IHC CENTRAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('MTORFS', 'IHC CENTRAL POSITION REPORT', 'R3_IHBACCOUNT', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MTORFS/IHCTF CENTRAL MANAGER' harmony.usermgt.create_role_to_user_assignment('MTORFS', 'IHCTF CENTRAL MANAGER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MTORFS/IHCTF CENTRAL MANAGER harmony.usermgt.create_dds_item_assignment('MTORFS', 'IHCTF CENTRAL MANAGER', 'R3_BUPA_IHCTRANSFERS', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MTORFS/IHCTF LOCAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('MTORFS', 'IHCTF LOCAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MTORFS/IHCTF LOCAL REQUESTOR harmony.usermgt.create_dds_item_assignment('MTORFS', 'IHCTF LOCAL REQUESTOR', 'R3_BUPA_IHCTRANSFERS', 'ONE', '0000012650', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTORFS', 'IHCTF LOCAL REQUESTOR', 'R3_BUPA_IHCTRANSFERS', 'ONE', '0000012639', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTORFS', 'IHCTF LOCAL REQUESTOR', 'R3_BUPA_IHCTRANSFERS', 'ONE', '0000012018', sysdate, null); -- Inserting RoleToUserAssignment 'MTORFS/MR CENTRAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MTORFS', 'MR CENTRAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MTORFS/MR CENTRAL REPORTER harmony.usermgt.create_dds_item_assignment('MTORFS', 'MR CENTRAL REPORTER', 'R3_COCO', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MTORFS/OO CENTRAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MTORFS', 'OO CENTRAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MTORFS/OO CENTRAL REPORTER harmony.usermgt.create_dds_item_assignment('MTORFS', 'OO CENTRAL REPORTER', 'R3_COCO', 'ALL', null, sysdate, null); harmony.usermgt.create_dds_item_assignment('MTORFS', 'OO CENTRAL REPORTER', 'OO_GROUPING', 'ONE', '4', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTORFS', 'OO CENTRAL REPORTER', 'OO_GROUPING', 'ONE', '2', sysdate, null); -- Inserting RoleToUserAssignment 'MTORFS/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('MTORFS', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MTORFS/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('MTORFS', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MTORFS/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('MTORFS', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MTORFS/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('MTORFS', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MTORFS/TOPS2' harmony.usermgt.create_role_to_user_assignment('MTORFS', 'TOPS2', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MTOTHOVA/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('MTOTHOVA', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MTOTHOVA/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('MTOTHOVA', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MTOTHOVA/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('MTOTHOVA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12370CZK', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTOTHOVA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12369EUR', sysdate, null); -- Inserting RoleToUserAssignment 'MVANKERC/AMMF LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MVANKERC', 'AMMF LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MVANKERC/AMMF LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('MVANKERC', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012186', sysdate, null); -- Inserting RoleToUserAssignment 'MVANKERC/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('MVANKERC', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MVANKERC/BF LOCAL AUTHORIZER' harmony.usermgt.create_role_to_user_assignment('MVANKERC', 'BF LOCAL AUTHORIZER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MVANKERC/BF LOCAL AUTHORIZER harmony.usermgt.create_dds_item_assignment('MVANKERC', 'BF LOCAL AUTHORIZER', 'OO_GROUPING', 'ONE', '93', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVANKERC', 'BF LOCAL AUTHORIZER', 'OO_GROUPING', 'ONE', '37', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVANKERC', 'BF LOCAL AUTHORIZER', 'OO_GROUPING', 'ONE', '35', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVANKERC', 'BF LOCAL AUTHORIZER', 'OO_GROUPING', 'ONE', '34', sysdate, null); -- Inserting RoleToUserAssignment 'MVANKERC/ICL LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MVANKERC', 'ICL LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MVANKERC/ICL LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('MVANKERC', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012186', sysdate, null); -- Inserting RoleToUserAssignment 'MVANKERC/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('MVANKERC', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MVANKERC/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('MVANKERC', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12186EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVANKERC', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12128EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVANKERC', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12016EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVANKERC', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12015EUR', sysdate, null); -- Inserting RoleToUserAssignment 'MVANKERC/OO LOCAL COCO AUTHORIZER/RELEASER' harmony.usermgt.create_role_to_user_assignment('MVANKERC', 'OO LOCAL COCO AUTHORIZER/RELEASER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MVANKERC/OO LOCAL COCO AUTHORIZER/RELEASER harmony.usermgt.create_dds_item_assignment('MVANKERC', 'OO LOCAL COCO AUTHORIZER/RELEASER', 'R3_COCO', 'ONE', '2147', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVANKERC', 'OO LOCAL COCO AUTHORIZER/RELEASER', 'R3_COCO', 'ONE', '2046', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVANKERC', 'OO LOCAL COCO AUTHORIZER/RELEASER', 'R3_COCO', 'ONE', '2036', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVANKERC', 'OO LOCAL COCO AUTHORIZER/RELEASER', 'R3_COCO', 'ONE', '2021', sysdate, null); -- Inserting RoleToUserAssignment 'MVANKERC/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('MVANKERC', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MVANKERC/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('MVANKERC', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2021', sysdate, null); -- Inserting RoleToUserAssignment 'MVANKERC/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('MVANKERC', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MVANKERC/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('MVANKERC', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2021', sysdate, null); -- Inserting RoleToUserAssignment 'MVERISS2/ICL LOCAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('MVERISS2', 'ICL LOCAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MVERISS2/ICL LOCAL REQUESTOR harmony.usermgt.create_dds_item_assignment('MVERISS2', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012710', sysdate, null); -- Inserting RoleToUserAssignment 'MVERTEN1/AMMF Central reporter' harmony.usermgt.create_role_to_user_assignment('MVERTEN1', 'AMMF Central reporter', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MVERTEN1/AMMF Central reporter harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'AMMF Central reporter', 'R3_BUPA_TRANSFERS', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MVERTEN1/AMMF LOCAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('MVERTEN1', 'AMMF LOCAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MVERTEN1/AMMF LOCAL REQUESTOR harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012322', sysdate, null); -- Inserting RoleToUserAssignment 'MVERTEN1/APPLOG VIEW' harmony.usermgt.create_role_to_user_assignment('MVERTEN1', 'APPLOG VIEW', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MVERTEN1/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('MVERTEN1', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MVERTEN1/BATCH PAYMENT PROCESSING' harmony.usermgt.create_role_to_user_assignment('MVERTEN1', 'BATCH PAYMENT PROCESSING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MVERTEN1/BF CENTRAL AUTHORIZER' harmony.usermgt.create_role_to_user_assignment('MVERTEN1', 'BF CENTRAL AUTHORIZER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MVERTEN1/BF CENTRAL AUTHORIZER harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'BF CENTRAL AUTHORIZER', 'OO_GROUPING', 'ONE', '7', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'BF CENTRAL AUTHORIZER', 'OO_GROUPING', 'ONE', '63', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'BF CENTRAL AUTHORIZER', 'OO_GROUPING', 'ONE', '6', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'BF CENTRAL AUTHORIZER', 'OO_GROUPING', 'ONE', '186', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'BF CENTRAL AUTHORIZER', 'OO_GROUPING', 'ONE', '132', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'BF CENTRAL AUTHORIZER', 'OO_GROUPING', 'ONE', '1', sysdate, null); -- Inserting RoleToUserAssignment 'MVERTEN1/BF CENTRAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('MVERTEN1', 'BF CENTRAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MVERTEN1/BF CENTRAL REQUESTOR harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'BF CENTRAL REQUESTOR', 'OO_GROUPING', 'ONE', '7', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'BF CENTRAL REQUESTOR', 'OO_GROUPING', 'ONE', '6', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'BF CENTRAL REQUESTOR', 'OO_GROUPING', 'ONE', '1', sysdate, null); -- Inserting RoleToUserAssignment 'MVERTEN1/HB CENTRAL RELEASER' harmony.usermgt.create_role_to_user_assignment('MVERTEN1', 'HB CENTRAL RELEASER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MVERTEN1/HB CENTRAL RELEASER harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '4012', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '4011', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '3003', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '3002', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '3001', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '3000', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2213', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2193', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2109', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2076', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '1009', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '1007', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '1005', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '1004', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '1001', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '3004', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '3009', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '3010', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '3014', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '3015', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '3021', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '3022', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '4001', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '4002', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '4005', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '4009', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '4010', sysdate, null); -- Inserting RoleToUserAssignment 'MVERTEN1/HB CENTRAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MVERTEN1', 'HB CENTRAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MVERTEN1/HB CENTRAL REPORTER harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'HB CENTRAL REPORTER', 'R3_COCO', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MVERTEN1/ICL Central reporter' harmony.usermgt.create_role_to_user_assignment('MVERTEN1', 'ICL Central reporter', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MVERTEN1/ICL Central reporter harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'ICL Central reporter', 'R3_BUPA_ICL', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MVERTEN1/ICL LOCAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('MVERTEN1', 'ICL LOCAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MVERTEN1/ICL LOCAL REQUESTOR harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000011010', sysdate, null); -- Inserting RoleToUserAssignment 'MVERTEN1/MR CENTRAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MVERTEN1', 'MR CENTRAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MVERTEN1/MR CENTRAL REPORTER harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'MR CENTRAL REPORTER', 'R3_COCO', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MVERTEN1/OO CENTRAL AUTHORIZER' harmony.usermgt.create_role_to_user_assignment('MVERTEN1', 'OO CENTRAL AUTHORIZER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MVERTEN1/OO CENTRAL AUTHORIZER harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '4002', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '3022', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '3021', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '3015', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '3014', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2213', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'OO CENTRAL AUTHORIZER', 'OO_GROUPING', 'ONE', '1', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'OO CENTRAL AUTHORIZER', 'OO_GROUPING', 'ONE', '132', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'OO CENTRAL AUTHORIZER', 'OO_GROUPING', 'ONE', '186', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'OO CENTRAL AUTHORIZER', 'OO_GROUPING', 'ONE', '6', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'OO CENTRAL AUTHORIZER', 'OO_GROUPING', 'ONE', '63', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'OO CENTRAL AUTHORIZER', 'OO_GROUPING', 'ONE', '7', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '1004', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '1005', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '1007', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '1009', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2076', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2109', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2193', sysdate, null); -- Inserting RoleToUserAssignment 'MVERTEN1/OO CENTRAL RELEASER' harmony.usermgt.create_role_to_user_assignment('MVERTEN1', 'OO CENTRAL RELEASER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MVERTEN1/OO CENTRAL RELEASER harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '4012', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '4011', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '4010', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '4009', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '4005', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '4002', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '4001', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '3022', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2109', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2076', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '1009', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '1007', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '1005', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '1004', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '1001', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'OO CENTRAL RELEASER', 'OO_GROUPING', 'ONE', '7', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'OO CENTRAL RELEASER', 'OO_GROUPING', 'ONE', '63', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'OO CENTRAL RELEASER', 'OO_GROUPING', 'ONE', '6', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'OO CENTRAL RELEASER', 'OO_GROUPING', 'ONE', '186', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'OO CENTRAL RELEASER', 'OO_GROUPING', 'ONE', '132', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'OO CENTRAL RELEASER', 'OO_GROUPING', 'ONE', '1', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2193', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2213', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '3000', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '3001', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '3002', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '3003', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '3004', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '3009', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '3010', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '3014', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '3015', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '3021', sysdate, null); -- Inserting RoleToUserAssignment 'MVERTEN1/OO CENTRAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MVERTEN1', 'OO CENTRAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MVERTEN1/OO CENTRAL REPORTER harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'OO CENTRAL REPORTER', 'R3_COCO', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MVERTEN1/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('MVERTEN1', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MVERTEN1/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MVERTEN1/TOPS2' harmony.usermgt.create_role_to_user_assignment('MVERTEN1', 'TOPS2', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MWALTON4/AMMF LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MWALTON4', 'AMMF LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MWALTON4/AMMF LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('MWALTON4', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012957', sysdate, null); -- Inserting RoleToUserAssignment 'MWALTON4/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('MWALTON4', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MWIJK/AMMF LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MWIJK', 'AMMF LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MWIJK/AMMF LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('MWIJK', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012893', sysdate, null); harmony.usermgt.create_dds_item_assignment('MWIJK', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012643', sysdate, null); harmony.usermgt.create_dds_item_assignment('MWIJK', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012112', sysdate, null); -- Inserting RoleToUserAssignment 'MWIJK/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('MWIJK', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MWIJK/BF LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MWIJK', 'BF LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MWIJK/BF LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('MWIJK', 'BF LOCAL REPORTER', 'OO_GROUPING', 'ONE', '248', sysdate, null); harmony.usermgt.create_dds_item_assignment('MWIJK', 'BF LOCAL REPORTER', 'OO_GROUPING', 'ONE', '192', sysdate, null); -- Inserting RoleToUserAssignment 'MWIJK/ICL LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MWIJK', 'ICL LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MWIJK/ICL LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('MWIJK', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012893', sysdate, null); harmony.usermgt.create_dds_item_assignment('MWIJK', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012643', sysdate, null); harmony.usermgt.create_dds_item_assignment('MWIJK', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012112', sysdate, null); -- Inserting RoleToUserAssignment 'MWIJK/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('MWIJK', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MWIJK/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('MWIJK', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12893EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('MWIJK', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12643EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('MWIJK', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12112EUR', sysdate, null); -- Inserting RoleToUserAssignment 'MWIJK/OO LOCAL COCO REPORTER' harmony.usermgt.create_role_to_user_assignment('MWIJK', 'OO LOCAL COCO REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MWIJK/OO LOCAL COCO REPORTER harmony.usermgt.create_dds_item_assignment('MWIJK', 'OO LOCAL COCO REPORTER', 'R3_COCO', 'ONE', '2270', sysdate, null); harmony.usermgt.create_dds_item_assignment('MWIJK', 'OO LOCAL COCO REPORTER', 'R3_COCO', 'ONE', '2241', sysdate, null); -- Inserting RoleToUserAssignment 'MWIJK/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('MWIJK', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MWIJK/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('MWIJK', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2270', sysdate, null); harmony.usermgt.create_dds_item_assignment('MWIJK', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2241', sysdate, null); -- Inserting RoleToUserAssignment 'MWIJK/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('MWIJK', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MWIJK/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('MWIJK', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2270', sysdate, null); harmony.usermgt.create_dds_item_assignment('MWIJK', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2241', sysdate, null); -- Inserting RoleToUserAssignment 'MYANAI/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('MYANAI', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MYANAI/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('MYANAI', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MYANAI/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('MYANAI', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12432JPY', sysdate, null); -- Inserting RoleToUserAssignment 'MYANAI/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('MYANAI', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MYANAI/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('MYANAI', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '6078', sysdate, null); -- Inserting RoleToUserAssignment 'MYANAI/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('MYANAI', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MYANAI/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('MYANAI', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '6078', sysdate, null); -- Inserting RoleToUserAssignment 'MZAPP/AMMF LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MZAPP', 'AMMF LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MZAPP/AMMF LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('MZAPP', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012755', sysdate, null); harmony.usermgt.create_dds_item_assignment('MZAPP', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012743', sysdate, null); harmony.usermgt.create_dds_item_assignment('MZAPP', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012359', sysdate, null); harmony.usermgt.create_dds_item_assignment('MZAPP', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012059', sysdate, null); -- Inserting RoleToUserAssignment 'MZAPP/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('MZAPP', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MZAPP/ICL LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('MZAPP', 'ICL LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MZAPP/ICL LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('MZAPP', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012755', sysdate, null); harmony.usermgt.create_dds_item_assignment('MZAPP', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012743', sysdate, null); harmony.usermgt.create_dds_item_assignment('MZAPP', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012359', sysdate, null); harmony.usermgt.create_dds_item_assignment('MZAPP', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012059', sysdate, null); -- Inserting RoleToUserAssignment 'MZAPP/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('MZAPP', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MZAPP/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('MZAPP', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12755EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('MZAPP', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12743EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('MZAPP', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12359EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('MZAPP', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12059EUR', sysdate, null); -- Inserting RoleToUserAssignment 'MZAPP/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('MZAPP', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MZAPP/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('MZAPP', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2208', sysdate, null); harmony.usermgt.create_dds_item_assignment('MZAPP', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2206', sysdate, null); harmony.usermgt.create_dds_item_assignment('MZAPP', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2202', sysdate, null); harmony.usermgt.create_dds_item_assignment('MZAPP', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2198', sysdate, null); -- Inserting RoleToUserAssignment 'MZAPP/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('MZAPP', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MZAPP/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('MZAPP', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2208', sysdate, null); harmony.usermgt.create_dds_item_assignment('MZAPP', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2206', sysdate, null); harmony.usermgt.create_dds_item_assignment('MZAPP', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2202', sysdate, null); -- Inserting RoleToUserAssignment 'NAUGUSTH/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('NAUGUSTH', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NAUGUSTH/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('NAUGUSTH', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '6065', sysdate, null); -- Inserting RoleToUserAssignment 'NBAUTIS1/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('NBAUTIS1', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NBAUTIS1/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('NBAUTIS1', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12953EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBAUTIS1', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12852USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBAUTIS1', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12715USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBAUTIS1', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12327USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBAUTIS1', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12243USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBAUTIS1', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12242USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBAUTIS1', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12241USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBAUTIS1', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12239USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBAUTIS1', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12154USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBAUTIS1', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12136USD', sysdate, null); -- Inserting RoleToUserAssignment 'NBITOIN/AMMF LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('NBITOIN', 'AMMF LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NBITOIN/AMMF LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('NBITOIN', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012866', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBITOIN', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012831', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBITOIN', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012592', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBITOIN', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012350', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBITOIN', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012320', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBITOIN', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012262', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBITOIN', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012059', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBITOIN', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012009', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBITOIN', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012002', sysdate, null); -- Inserting RoleToUserAssignment 'NBITOIN/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('NBITOIN', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'NBITOIN/BF LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('NBITOIN', 'BF LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NBITOIN/BF LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('NBITOIN', 'BF LOCAL REPORTER', 'OO_GROUPING', 'ONE', '97', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBITOIN', 'BF LOCAL REPORTER', 'OO_GROUPING', 'ONE', '92', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBITOIN', 'BF LOCAL REPORTER', 'OO_GROUPING', 'ONE', '50', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBITOIN', 'BF LOCAL REPORTER', 'OO_GROUPING', 'ONE', '20', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBITOIN', 'BF LOCAL REPORTER', 'OO_GROUPING', 'ONE', '194', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBITOIN', 'BF LOCAL REPORTER', 'OO_GROUPING', 'ONE', '16', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBITOIN', 'BF LOCAL REPORTER', 'OO_GROUPING', 'ONE', '134', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBITOIN', 'BF LOCAL REPORTER', 'OO_GROUPING', 'ONE', '121', sysdate, null); -- Inserting RoleToUserAssignment 'NBITOIN/ICL LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('NBITOIN', 'ICL LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NBITOIN/ICL LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('NBITOIN', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012866', sysdate, null); -- Inserting RoleToUserAssignment 'NBITOIN/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('NBITOIN', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NBITOIN/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('NBITOIN', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12866USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBITOIN', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12831EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBITOIN', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12592EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBITOIN', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12350EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBITOIN', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12320GBP', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBITOIN', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12320EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBITOIN', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12262CHF', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBITOIN', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12059EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBITOIN', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12009EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBITOIN', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12002EUR', sysdate, null); -- Inserting RoleToUserAssignment 'NBITOIN/OO LOCAL COCO REPORTER' harmony.usermgt.create_role_to_user_assignment('NBITOIN', 'OO LOCAL COCO REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NBITOIN/OO LOCAL COCO REPORTER harmony.usermgt.create_dds_item_assignment('NBITOIN', 'OO LOCAL COCO REPORTER', 'R3_COCO', 'ONE', '2242', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBITOIN', 'OO LOCAL COCO REPORTER', 'R3_COCO', 'ONE', '2229', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBITOIN', 'OO LOCAL COCO REPORTER', 'R3_COCO', 'ONE', '2220', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBITOIN', 'OO LOCAL COCO REPORTER', 'R3_COCO', 'ONE', '2206', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBITOIN', 'OO LOCAL COCO REPORTER', 'R3_COCO', 'ONE', '2166', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBITOIN', 'OO LOCAL COCO REPORTER', 'R3_COCO', 'ONE', '2123', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBITOIN', 'OO LOCAL COCO REPORTER', 'R3_COCO', 'ONE', '2117', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBITOIN', 'OO LOCAL COCO REPORTER', 'R3_COCO', 'ONE', '2012', sysdate, null); -- Inserting RoleToUserAssignment 'NBITOIN/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('NBITOIN', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NBITOIN/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('NBITOIN', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2283', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBITOIN', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2242', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBITOIN', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2229', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBITOIN', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2220', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBITOIN', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2206', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBITOIN', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2166', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBITOIN', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2123', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBITOIN', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2117', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBITOIN', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2012', sysdate, null); -- Inserting RoleToUserAssignment 'NBITOIN/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('NBITOIN', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NBITOIN/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('NBITOIN', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2283', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBITOIN', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2242', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBITOIN', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2229', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBITOIN', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2220', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBITOIN', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2206', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBITOIN', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2166', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBITOIN', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2123', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBITOIN', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2117', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBITOIN', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2012', sysdate, null); -- Inserting RoleToUserAssignment 'NBONDARE/AMMF LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('NBONDARE', 'AMMF LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NBONDARE/AMMF LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('NBONDARE', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012261', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBONDARE', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012108', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBONDARE', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012055', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBONDARE', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012053', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBONDARE', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012005', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBONDARE', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012004', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBONDARE', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012003', sysdate, null); -- Inserting RoleToUserAssignment 'NBONDARE/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('NBONDARE', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'NBONDARE/ICL LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('NBONDARE', 'ICL LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NBONDARE/ICL LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('NBONDARE', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012261', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBONDARE', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012108', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBONDARE', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012055', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBONDARE', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012053', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBONDARE', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012005', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBONDARE', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012004', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBONDARE', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012003', sysdate, null); -- Inserting RoleToUserAssignment 'NBONDARE/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('NBONDARE', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NBONDARE/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('NBONDARE', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12261EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBONDARE', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12108EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBONDARE', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12055CHF', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBONDARE', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12053CHF', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBONDARE', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12005EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBONDARE', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12004EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBONDARE', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12003EUR', sysdate, null); -- Inserting RoleToUserAssignment 'NBONDARE/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('NBONDARE', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NBONDARE/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('NBONDARE', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2168', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBONDARE', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2110', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBONDARE', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2013', sysdate, null); -- Inserting RoleToUserAssignment 'NBONDARE/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('NBONDARE', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NBONDARE/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('NBONDARE', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2168', sysdate, null); -- Inserting RoleToUserAssignment 'NBOUNDRO/AMMF LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('NBOUNDRO', 'AMMF LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NBOUNDRO/AMMF LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('NBOUNDRO', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012901', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBOUNDRO', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012441', sysdate, null); -- Inserting RoleToUserAssignment 'NBOUNDRO/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('NBOUNDRO', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'NBOUNDRO/BF LOCAL AUTHORIZER' harmony.usermgt.create_role_to_user_assignment('NBOUNDRO', 'BF LOCAL AUTHORIZER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NBOUNDRO/BF LOCAL AUTHORIZER harmony.usermgt.create_dds_item_assignment('NBOUNDRO', 'BF LOCAL AUTHORIZER', 'OO_GROUPING', 'ONE', '250', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBOUNDRO', 'BF LOCAL AUTHORIZER', 'OO_GROUPING', 'ONE', '249', sysdate, null); -- Inserting RoleToUserAssignment 'NBOUNDRO/ICL LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('NBOUNDRO', 'ICL LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NBOUNDRO/ICL LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('NBOUNDRO', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012901', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBOUNDRO', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012441', sysdate, null); -- Inserting RoleToUserAssignment 'NBOUNDRO/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('NBOUNDRO', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NBOUNDRO/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('NBOUNDRO', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12901EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBOUNDRO', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12441EUR', sysdate, null); -- Inserting RoleToUserAssignment 'NBOUNDRO/OO LOCAL COCO AUTHORIZER/RELEASER' harmony.usermgt.create_role_to_user_assignment('NBOUNDRO', 'OO LOCAL COCO AUTHORIZER/RELEASER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NBOUNDRO/OO LOCAL COCO AUTHORIZER/RELEASER harmony.usermgt.create_dds_item_assignment('NBOUNDRO', 'OO LOCAL COCO AUTHORIZER/RELEASER', 'R3_COCO', 'ONE', '2272', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBOUNDRO', 'OO LOCAL COCO AUTHORIZER/RELEASER', 'R3_COCO', 'ONE', '2271', sysdate, null); -- Inserting RoleToUserAssignment 'NBOUNDRO/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('NBOUNDRO', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NBOUNDRO/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('NBOUNDRO', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2272', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBOUNDRO', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2271', sysdate, null); -- Inserting RoleToUserAssignment 'NBOUNDRO/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('NBOUNDRO', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NBOUNDRO/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('NBOUNDRO', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2272', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBOUNDRO', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2271', sysdate, null); -- Inserting RoleToUserAssignment 'NCHUTRUT/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('NCHUTRUT', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NCHUTRUT/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('NCHUTRUT', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '6025', sysdate, null); -- Inserting RoleToUserAssignment 'NDOMINGO/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('NDOMINGO', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NDOMINGO/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('NDOMINGO', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12953EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('NDOMINGO', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12852USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('NDOMINGO', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12715USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('NDOMINGO', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12327USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('NDOMINGO', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12243USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('NDOMINGO', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12242USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('NDOMINGO', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12241USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('NDOMINGO', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12239USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('NDOMINGO', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12154USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('NDOMINGO', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12136USD', sysdate, null); -- Inserting RoleToUserAssignment 'NGADTT/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('NGADTT', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NGADTT/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('NGADTT', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '6083', sysdate, null); -- Inserting RoleToUserAssignment 'NHANTTH/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('NHANTTH', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NHANTTH/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('NHANTTH', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '6086', sysdate, null); -- Inserting RoleToUserAssignment 'NJELAGIN/AMMF LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('NJELAGIN', 'AMMF LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NJELAGIN/AMMF LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('NJELAGIN', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012274', sysdate, null); -- Inserting RoleToUserAssignment 'NJELAGIN/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('NJELAGIN', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'NJELAGIN/BF LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('NJELAGIN', 'BF LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NJELAGIN/BF LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('NJELAGIN', 'BF LOCAL REPORTER', 'OO_GROUPING', 'ONE', '200', sysdate, null); -- Inserting RoleToUserAssignment 'NJELAGIN/ICL LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('NJELAGIN', 'ICL LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NJELAGIN/ICL LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('NJELAGIN', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012274', sysdate, null); -- Inserting RoleToUserAssignment 'NJELAGIN/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('NJELAGIN', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NJELAGIN/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('NJELAGIN', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12274EUR', sysdate, null); -- Inserting RoleToUserAssignment 'NJELAGIN/OO LOCAL COCO REPORTER' harmony.usermgt.create_role_to_user_assignment('NJELAGIN', 'OO LOCAL COCO REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NJELAGIN/OO LOCAL COCO REPORTER harmony.usermgt.create_dds_item_assignment('NJELAGIN', 'OO LOCAL COCO REPORTER', 'R3_COCO', 'ONE', '2064', sysdate, null); -- Inserting RoleToUserAssignment 'NJELAGIN/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('NJELAGIN', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NJELAGIN/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('NJELAGIN', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2064', sysdate, null); -- Inserting RoleToUserAssignment 'NJELAGIN/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('NJELAGIN', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NJELAGIN/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('NJELAGIN', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2064', sysdate, null); -- Inserting RoleToUserAssignment 'NKHLYSTA/ICL LOCAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('NKHLYSTA', 'ICL LOCAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NKHLYSTA/ICL LOCAL REQUESTOR harmony.usermgt.create_dds_item_assignment('NKHLYSTA', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012315', sysdate, null); -- Inserting RoleToUserAssignment 'NKHUMSH6/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('NKHUMSH6', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NKHUMSH6/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('NKHUMSH6', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '6018', sysdate, null); harmony.usermgt.create_dds_item_assignment('NKHUMSH6', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '6015', sysdate, null); -- Inserting RoleToUserAssignment 'NKIEFEL/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('NKIEFEL', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'NLEE1/AMMF LOCAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('NLEE1', 'AMMF LOCAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NLEE1/AMMF LOCAL REQUESTOR harmony.usermgt.create_dds_item_assignment('NLEE1', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000013037', sysdate, null); -- Inserting RoleToUserAssignment 'NLEE1/ICL LOCAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('NLEE1', 'ICL LOCAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NLEE1/ICL LOCAL REQUESTOR harmony.usermgt.create_dds_item_assignment('NLEE1', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000013037', sysdate, null); -- Inserting RoleToUserAssignment 'NLEE1/IHCTF LOCAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('NLEE1', 'IHCTF LOCAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NLEE1/IHCTF LOCAL REQUESTOR harmony.usermgt.create_dds_item_assignment('NLEE1', 'IHCTF LOCAL REQUESTOR', 'R3_BUPA_IHCTRANSFERS', 'ONE', '0000013037', sysdate, null); -- Inserting RoleToUserAssignment 'NLEELAVI/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('NLEELAVI', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NLEELAVI/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('NLEELAVI', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '6018', sysdate, null); harmony.usermgt.create_dds_item_assignment('NLEELAVI', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '6015', sysdate, null); -- Inserting RoleToUserAssignment 'NLIU35/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('NLIU35', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'NLIU35/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('NLIU35', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NLIU35/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('NLIU35', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12846JPY', sysdate, null); harmony.usermgt.create_dds_item_assignment('NLIU35', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12845JPY', sysdate, null); harmony.usermgt.create_dds_item_assignment('NLIU35', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12726JPY', sysdate, null); harmony.usermgt.create_dds_item_assignment('NLIU35', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12432JPY', sysdate, null); harmony.usermgt.create_dds_item_assignment('NLIU35', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12325JPY', sysdate, null); harmony.usermgt.create_dds_item_assignment('NLIU35', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12290JPY', sysdate, null); harmony.usermgt.create_dds_item_assignment('NLIU35', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12200JPY', sysdate, null); -- Inserting RoleToUserAssignment 'NLIU35/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('NLIU35', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NLIU35/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('NLIU35', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '6081', sysdate, null); harmony.usermgt.create_dds_item_assignment('NLIU35', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '6080', sysdate, null); harmony.usermgt.create_dds_item_assignment('NLIU35', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '6079', sysdate, null); harmony.usermgt.create_dds_item_assignment('NLIU35', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '6078', sysdate, null); harmony.usermgt.create_dds_item_assignment('NLIU35', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '6011', sysdate, null); harmony.usermgt.create_dds_item_assignment('NLIU35', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '6005', sysdate, null); harmony.usermgt.create_dds_item_assignment('NLIU35', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '6000', sysdate, null); -- Inserting RoleToUserAssignment 'NMANANGA/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('NMANANGA', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NMANANGA/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('NMANANGA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12861USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('NMANANGA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12691USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('NMANANGA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12674USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('NMANANGA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12664USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('NMANANGA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12661USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('NMANANGA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12660USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('NMANANGA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12659USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('NMANANGA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12658USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('NMANANGA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12501USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('NMANANGA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12493USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('NMANANGA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12130USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('NMANANGA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12139USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('NMANANGA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12140USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('NMANANGA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12144USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('NMANANGA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12151USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('NMANANGA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12153USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('NMANANGA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12167USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('NMANANGA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12172USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('NMANANGA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12488USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('NMANANGA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12489USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('NMANANGA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12490USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('NMANANGA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12491USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('NMANANGA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12492USD', sysdate, null); -- Inserting RoleToUserAssignment 'NNUYDENS/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('NNUYDENS', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'NNUYDENS/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('NNUYDENS', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NNUYDENS/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('NNUYDENS', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12650USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('NNUYDENS', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12650EUR', sysdate, null); -- Inserting RoleToUserAssignment 'NOCARROL/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('NOCARROL', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'NOCARROL/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('NOCARROL', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NOCARROL/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('NOCARROL', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12638USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('NOCARROL', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12638EUR', sysdate, null); -- Inserting RoleToUserAssignment 'NOCARROL/IHCTF LOCAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('NOCARROL', 'IHCTF LOCAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NOCARROL/IHCTF LOCAL REQUESTOR harmony.usermgt.create_dds_item_assignment('NOCARROL', 'IHCTF LOCAL REQUESTOR', 'R3_BUPA_IHCTRANSFERS', 'ONE', '0000012638', sysdate, null); -- Inserting RoleToUserAssignment 'NPEETER2/AMMF Central reporter' harmony.usermgt.create_role_to_user_assignment('NPEETER2', 'AMMF Central reporter', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NPEETER2/AMMF Central reporter harmony.usermgt.create_dds_item_assignment('NPEETER2', 'AMMF Central reporter', 'R3_BUPA_TRANSFERS', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'NPEETER2/APPLOG UPDATE ENDSTAMP' harmony.usermgt.create_role_to_user_assignment('NPEETER2', 'APPLOG UPDATE ENDSTAMP', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'NPEETER2/APPLOG VIEW' harmony.usermgt.create_role_to_user_assignment('NPEETER2', 'APPLOG VIEW', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'NPEETER2/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('NPEETER2', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'NPEETER2/BATCH BANK COMMUNICATION' harmony.usermgt.create_role_to_user_assignment('NPEETER2', 'BATCH BANK COMMUNICATION', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'NPEETER2/BATCH PAYMENT PROCESSING' harmony.usermgt.create_role_to_user_assignment('NPEETER2', 'BATCH PAYMENT PROCESSING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'NPEETER2/BF CENTRAL AUTHORIZER' harmony.usermgt.create_role_to_user_assignment('NPEETER2', 'BF CENTRAL AUTHORIZER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NPEETER2/BF CENTRAL AUTHORIZER harmony.usermgt.create_dds_item_assignment('NPEETER2', 'BF CENTRAL AUTHORIZER', 'OO_GROUPING', 'ONE', '4', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'BF CENTRAL AUTHORIZER', 'OO_GROUPING', 'ONE', '3', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'BF CENTRAL AUTHORIZER', 'OO_GROUPING', 'ONE', '2', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'BF CENTRAL AUTHORIZER', 'OO_GROUPING', 'ONE', '183', sysdate, null); -- Inserting RoleToUserAssignment 'NPEETER2/BF CENTRAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('NPEETER2', 'BF CENTRAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NPEETER2/BF CENTRAL REQUESTOR harmony.usermgt.create_dds_item_assignment('NPEETER2', 'BF CENTRAL REQUESTOR', 'OO_GROUPING', 'ONE', '4', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'BF CENTRAL REQUESTOR', 'OO_GROUPING', 'ONE', '3', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'BF CENTRAL REQUESTOR', 'OO_GROUPING', 'ONE', '2', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'BF CENTRAL REQUESTOR', 'OO_GROUPING', 'ONE', '183', sysdate, null); -- Inserting RoleToUserAssignment 'NPEETER2/FM RULES CENTRAL REQUEST' harmony.usermgt.create_role_to_user_assignment('NPEETER2', 'FM RULES CENTRAL REQUEST', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'NPEETER2/HB CENTRAL REPORTER' harmony.usermgt.create_role_to_user_assignment('NPEETER2', 'HB CENTRAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NPEETER2/HB CENTRAL REPORTER harmony.usermgt.create_dds_item_assignment('NPEETER2', 'HB CENTRAL REPORTER', 'R3_COCO', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'NPEETER2/HB COCO COMBI Requestor' harmony.usermgt.create_role_to_user_assignment('NPEETER2', 'HB COCO COMBI Requestor', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'NPEETER2/ICL Central reporter' harmony.usermgt.create_role_to_user_assignment('NPEETER2', 'ICL Central reporter', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NPEETER2/ICL Central reporter harmony.usermgt.create_dds_item_assignment('NPEETER2', 'ICL Central reporter', 'R3_BUPA_ICL', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'NPEETER2/IHC CENTRAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('NPEETER2', 'IHC CENTRAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NPEETER2/IHC CENTRAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('NPEETER2', 'IHC CENTRAL POSITION REPORT', 'R3_IHBACCOUNT', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'NPEETER2/IHCTF REPORTER' harmony.usermgt.create_role_to_user_assignment('NPEETER2', 'IHCTF REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NPEETER2/IHCTF REPORTER harmony.usermgt.create_dds_item_assignment('NPEETER2', 'IHCTF REPORTER', 'R3_BUPA_IHCTRANSFERS', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'NPEETER2/OO CENTRAL RELEASER' harmony.usermgt.create_role_to_user_assignment('NPEETER2', 'OO CENTRAL RELEASER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NPEETER2/OO CENTRAL RELEASER harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5066', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5061', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5060', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5055', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5054', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5053', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5052', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5051', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5050', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5049', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5048', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5047', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5046', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5045', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5044', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5043', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5042', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5041', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5040', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5038', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5037', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5033', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5032', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5031', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5030', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5029', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5028', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5027', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5026', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5025', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5024', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5023', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5022', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5021', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5020', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5019', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5018', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5017', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5016', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5015', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5014', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5013', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5011', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5010', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5009', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5006', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5004', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '4002', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '3015', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '3014', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2357', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2356', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2355', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2354', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2353', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2352', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2351', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2350', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2349', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2316', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2315', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2314', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2313', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2312', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2311', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2308', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2304', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2303', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2302', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2301', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2178', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2177', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2176', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2175', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2174', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2173', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2172', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2171', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2170', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2169', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2168', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2167', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2166', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2165', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2164', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2163', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2162', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2160', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2159', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2158', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2157', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2156', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2154', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2153', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2152', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2147', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2146', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2144', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2143', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2141', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2140', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2139', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2127', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2126', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2125', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2123', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2120', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2117', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2114', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2113', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2112', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2111', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2110', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2109', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2108', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2105', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2104', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2103', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2030', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2029', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2027', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2021', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2020', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2019', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2018', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2017', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2016', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2015', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2013', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2012', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'OO_GROUPING', 'ALL', null, sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '1000', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '1002', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '1003', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '1004', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '1005', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '1006', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '1007', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '1008', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '1009', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '1010', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2000', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2011', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2034', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2036', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2037', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2039', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2041', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2046', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2047', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2049', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2050', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2051', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2052', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2056', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2060', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2061', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2064', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2065', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2066', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2067', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2071', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2076', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2088', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2100', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2101', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2102', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2179', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2180', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2181', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2182', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2183', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2185', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2186', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2187', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2192', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2194', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2196', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2197', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2198', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2199', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2200', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2201', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2202', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2203', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2204', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2205', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2206', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2207', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2208', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2209', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2210', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2211', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2212', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2215', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2218', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2219', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2220', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2221', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2222', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2223', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2224', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2225', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2226', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2229', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2231', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2232', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2235', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2236', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2237', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2238', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2239', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2240', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2241', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2242', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2243', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2244', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2245', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2246', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2247', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2248', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2249', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2250', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2251', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2252', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2254', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2255', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2256', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2257', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2258', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2260', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2261', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2262', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2263', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2264', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2265', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2266', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2267', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2268', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2269', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2270', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2271', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2272', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2273', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2274', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2275', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2276', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2277', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2278', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2282', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2283', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2284', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2286', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2287', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2288', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2289', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2290', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2292', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2293', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2297', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2298', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2299', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2300', sysdate, null); -- Inserting RoleToUserAssignment 'NPEETER2/OO CENTRAL REPORTER' harmony.usermgt.create_role_to_user_assignment('NPEETER2', 'OO CENTRAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NPEETER2/OO CENTRAL REPORTER harmony.usermgt.create_dds_item_assignment('NPEETER2', 'OO CENTRAL REPORTER', 'R3_COCO', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'NPEETER2/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('NPEETER2', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NPEETER2/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('NPEETER2', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'NPEETER2/TOPS2' harmony.usermgt.create_role_to_user_assignment('NPEETER2', 'TOPS2', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'NPEETER2/UME READ ALL' harmony.usermgt.create_role_to_user_assignment('NPEETER2', 'UME READ ALL', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'NPOPP/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('NPOPP', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NPOPP/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('NPOPP', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2203', sysdate, null); -- Inserting RoleToUserAssignment 'NPRAIWET/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('NPRAIWET', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NPRAIWET/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('NPRAIWET', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '6025', sysdate, null); -- Inserting RoleToUserAssignment 'NRAMAN/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('NRAMAN', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NRAMAN/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('NRAMAN', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '6054', sysdate, null); harmony.usermgt.create_dds_item_assignment('NRAMAN', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '6047', sysdate, null); harmony.usermgt.create_dds_item_assignment('NRAMAN', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '6046', sysdate, null); harmony.usermgt.create_dds_item_assignment('NRAMAN', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '6024', sysdate, null); -- Inserting RoleToUserAssignment 'NRODRIG3/AMMF Central reporter' harmony.usermgt.create_role_to_user_assignment('NRODRIG3', 'AMMF Central reporter', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NRODRIG3/AMMF Central reporter harmony.usermgt.create_dds_item_assignment('NRODRIG3', 'AMMF Central reporter', 'R3_BUPA_TRANSFERS', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'NRODRIG3/AMMF LOCAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('NRODRIG3', 'AMMF LOCAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NRODRIG3/AMMF LOCAL REQUESTOR harmony.usermgt.create_dds_item_assignment('NRODRIG3', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012101', sysdate, null); harmony.usermgt.create_dds_item_assignment('NRODRIG3', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012178', sysdate, null); harmony.usermgt.create_dds_item_assignment('NRODRIG3', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012179', sysdate, null); harmony.usermgt.create_dds_item_assignment('NRODRIG3', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012180', sysdate, null); harmony.usermgt.create_dds_item_assignment('NRODRIG3', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012181', sysdate, null); harmony.usermgt.create_dds_item_assignment('NRODRIG3', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012183', sysdate, null); harmony.usermgt.create_dds_item_assignment('NRODRIG3', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012191', sysdate, null); harmony.usermgt.create_dds_item_assignment('NRODRIG3', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012196', sysdate, null); harmony.usermgt.create_dds_item_assignment('NRODRIG3', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012197', sysdate, null); harmony.usermgt.create_dds_item_assignment('NRODRIG3', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012198', sysdate, null); harmony.usermgt.create_dds_item_assignment('NRODRIG3', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012199', sysdate, null); harmony.usermgt.create_dds_item_assignment('NRODRIG3', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012210', sysdate, null); harmony.usermgt.create_dds_item_assignment('NRODRIG3', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012713', sysdate, null); -- Inserting RoleToUserAssignment 'NRODRIG3/BATCH BANK COMMUNICATION US' harmony.usermgt.create_role_to_user_assignment('NRODRIG3', 'BATCH BANK COMMUNICATION US', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'NRODRIG3/BF CENTRAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('NRODRIG3', 'BF CENTRAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NRODRIG3/BF CENTRAL REQUESTOR harmony.usermgt.create_dds_item_assignment('NRODRIG3', 'BF CENTRAL REQUESTOR', 'OO_GROUPING', 'ONE', '6', sysdate, null); -- Inserting RoleToUserAssignment 'NRODRIG3/HB CENTRAL REPORTER' harmony.usermgt.create_role_to_user_assignment('NRODRIG3', 'HB CENTRAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NRODRIG3/HB CENTRAL REPORTER harmony.usermgt.create_dds_item_assignment('NRODRIG3', 'HB CENTRAL REPORTER', 'R3_COCO', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'NRODRIG3/HB CENTRAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('NRODRIG3', 'HB CENTRAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NRODRIG3/HB CENTRAL REQUESTOR harmony.usermgt.create_dds_item_assignment('NRODRIG3', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '3010', sysdate, null); harmony.usermgt.create_dds_item_assignment('NRODRIG3', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '3009', sysdate, null); harmony.usermgt.create_dds_item_assignment('NRODRIG3', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '3003', sysdate, null); harmony.usermgt.create_dds_item_assignment('NRODRIG3', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '3002', sysdate, null); harmony.usermgt.create_dds_item_assignment('NRODRIG3', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '3001', sysdate, null); harmony.usermgt.create_dds_item_assignment('NRODRIG3', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '3000', sysdate, null); -- Inserting RoleToUserAssignment 'NRODRIG3/OO CENTRAL REPORTER' harmony.usermgt.create_role_to_user_assignment('NRODRIG3', 'OO CENTRAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NRODRIG3/OO CENTRAL REPORTER harmony.usermgt.create_dds_item_assignment('NRODRIG3', 'OO CENTRAL REPORTER', 'R3_COCO', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'NRODRIG3/OO CENTRAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('NRODRIG3', 'OO CENTRAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NRODRIG3/OO CENTRAL REQUESTOR harmony.usermgt.create_dds_item_assignment('NRODRIG3', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '3010', sysdate, null); harmony.usermgt.create_dds_item_assignment('NRODRIG3', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '3009', sysdate, null); harmony.usermgt.create_dds_item_assignment('NRODRIG3', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '3003', sysdate, null); harmony.usermgt.create_dds_item_assignment('NRODRIG3', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '3002', sysdate, null); harmony.usermgt.create_dds_item_assignment('NRODRIG3', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '3001', sysdate, null); harmony.usermgt.create_dds_item_assignment('NRODRIG3', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '3000', sysdate, null); harmony.usermgt.create_dds_item_assignment('NRODRIG3', 'OO CENTRAL REQUESTOR', 'OO_GROUPING', 'ONE', '6', sysdate, null); -- Inserting RoleToUserAssignment 'NROMLAH1/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('NROMLAH1', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NROMLAH1/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('NROMLAH1', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '6059', sysdate, null); harmony.usermgt.create_dds_item_assignment('NROMLAH1', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '6031', sysdate, null); harmony.usermgt.create_dds_item_assignment('NROMLAH1', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '6030', sysdate, null); harmony.usermgt.create_dds_item_assignment('NROMLAH1', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '6022', sysdate, null); -- Inserting RoleToUserAssignment 'NROUDMAN/AMMF LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('NROUDMAN', 'AMMF LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NROUDMAN/AMMF LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('NROUDMAN', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012801', sysdate, null); harmony.usermgt.create_dds_item_assignment('NROUDMAN', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012081', sysdate, null); -- Inserting RoleToUserAssignment 'NROUDMAN/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('NROUDMAN', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'NROUDMAN/ICL LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('NROUDMAN', 'ICL LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NROUDMAN/ICL LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('NROUDMAN', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012801', sysdate, null); -- Inserting RoleToUserAssignment 'NROUDMAN/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('NROUDMAN', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NROUDMAN/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('NROUDMAN', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12801EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('NROUDMAN', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12081EUR', sysdate, null); -- Inserting RoleToUserAssignment 'NROUDMAN/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('NROUDMAN', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NROUDMAN/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('NROUDMAN', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2221', sysdate, null); harmony.usermgt.create_dds_item_assignment('NROUDMAN', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2141', sysdate, null); harmony.usermgt.create_dds_item_assignment('NROUDMAN', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2126', sysdate, null); -- Inserting RoleToUserAssignment 'NROUDMAN/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('NROUDMAN', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NROUDMAN/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('NROUDMAN', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2141', sysdate, null); harmony.usermgt.create_dds_item_assignment('NROUDMAN', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2126', sysdate, null); harmony.usermgt.create_dds_item_assignment('NROUDMAN', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2020', sysdate, null); -- Inserting RoleToUserAssignment 'NSAMPAIO/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('NSAMPAIO', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'NSAMPAIO/BATCH PAYMENT PROCESSING' harmony.usermgt.create_role_to_user_assignment('NSAMPAIO', 'BATCH PAYMENT PROCESSING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'NSAMPAIO/BF CENTRAL AUTHORIZER' harmony.usermgt.create_role_to_user_assignment('NSAMPAIO', 'BF CENTRAL AUTHORIZER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NSAMPAIO/BF CENTRAL AUTHORIZER harmony.usermgt.create_dds_item_assignment('NSAMPAIO', 'BF CENTRAL AUTHORIZER', 'OO_GROUPING', 'ONE', '183', sysdate, null); -- Inserting RoleToUserAssignment 'NSAMPAIO/BF CENTRAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('NSAMPAIO', 'BF CENTRAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NSAMPAIO/BF CENTRAL REQUESTOR harmony.usermgt.create_dds_item_assignment('NSAMPAIO', 'BF CENTRAL REQUESTOR', 'OO_GROUPING', 'ONE', '183', sysdate, null); -- Inserting RoleToUserAssignment 'NSAMPAIO/HB CENTRAL REPORTER' harmony.usermgt.create_role_to_user_assignment('NSAMPAIO', 'HB CENTRAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NSAMPAIO/HB CENTRAL REPORTER harmony.usermgt.create_dds_item_assignment('NSAMPAIO', 'HB CENTRAL REPORTER', 'R3_COCO', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'NSAMPAIO/MR CENTRAL REPORTER' harmony.usermgt.create_role_to_user_assignment('NSAMPAIO', 'MR CENTRAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NSAMPAIO/MR CENTRAL REPORTER harmony.usermgt.create_dds_item_assignment('NSAMPAIO', 'MR CENTRAL REPORTER', 'R3_COCO', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'NSAMPAIO/OO CENTRAL RELEASER' harmony.usermgt.create_role_to_user_assignment('NSAMPAIO', 'OO CENTRAL RELEASER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NSAMPAIO/OO CENTRAL RELEASER harmony.usermgt.create_dds_item_assignment('NSAMPAIO', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5066', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSAMPAIO', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5061', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSAMPAIO', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5060', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSAMPAIO', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5055', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSAMPAIO', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5054', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSAMPAIO', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5053', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSAMPAIO', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5052', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSAMPAIO', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5051', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSAMPAIO', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5050', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSAMPAIO', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5049', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSAMPAIO', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5048', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSAMPAIO', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5047', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSAMPAIO', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5046', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSAMPAIO', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5045', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSAMPAIO', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5044', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSAMPAIO', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5043', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSAMPAIO', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5042', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSAMPAIO', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5041', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSAMPAIO', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5040', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSAMPAIO', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5038', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSAMPAIO', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5037', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSAMPAIO', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5033', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSAMPAIO', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5032', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSAMPAIO', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5019', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSAMPAIO', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5018', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSAMPAIO', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5017', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSAMPAIO', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5016', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSAMPAIO', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5015', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSAMPAIO', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5014', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSAMPAIO', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5013', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSAMPAIO', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5011', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSAMPAIO', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5010', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSAMPAIO', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5009', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSAMPAIO', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5006', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSAMPAIO', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5004', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSAMPAIO', 'OO CENTRAL RELEASER', 'OO_GROUPING', 'ALL', null, sysdate, null); harmony.usermgt.create_dds_item_assignment('NSAMPAIO', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5020', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSAMPAIO', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5021', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSAMPAIO', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5022', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSAMPAIO', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5023', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSAMPAIO', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5024', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSAMPAIO', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5025', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSAMPAIO', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5026', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSAMPAIO', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5027', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSAMPAIO', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5028', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSAMPAIO', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5029', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSAMPAIO', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5030', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSAMPAIO', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5031', sysdate, null); -- Inserting RoleToUserAssignment 'NSAMPAIO/OO CENTRAL REPORTER' harmony.usermgt.create_role_to_user_assignment('NSAMPAIO', 'OO CENTRAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NSAMPAIO/OO CENTRAL REPORTER harmony.usermgt.create_dds_item_assignment('NSAMPAIO', 'OO CENTRAL REPORTER', 'R3_COCO', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'NSAMPAIO/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('NSAMPAIO', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NSAMPAIO/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('NSAMPAIO', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'NSAMPAIO/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('NSAMPAIO', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NSAMPAIO/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('NSAMPAIO', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '5055', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSAMPAIO', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '5054', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSAMPAIO', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '5048', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSAMPAIO', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '5047', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSAMPAIO', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '5046', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSAMPAIO', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '5045', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSAMPAIO', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '5011', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSAMPAIO', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '5010', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSAMPAIO', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '5009', sysdate, null); -- Inserting RoleToUserAssignment 'NSAMPAIO/TOPS2' harmony.usermgt.create_role_to_user_assignment('NSAMPAIO', 'TOPS2', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'NSCHELST/AMMF Central reporter' harmony.usermgt.create_role_to_user_assignment('NSCHELST', 'AMMF Central reporter', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NSCHELST/AMMF Central reporter harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF Central reporter', 'R3_BUPA_TRANSFERS', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'NSCHELST/AMMF LOCAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NSCHELST/AMMF LOCAL REQUESTOR harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000013114', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000013112', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000013111', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000013109', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000013076', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000013075', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000013074', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000013073', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000013072', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000013071', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000013051', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012467', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012441', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012387', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012370', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012369', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012367', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012359', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012358', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012350', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012337', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012320', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012314', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012313', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012312', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012311', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012310', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012305', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012298', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012297', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012281', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012277', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012276', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012275', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012274', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012271', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012270', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012266', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012263', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012262', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012195', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012194', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012192', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012186', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012127', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012125', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012123', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012122', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012121', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012120', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012117', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012108', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012107', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012106', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012104', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012102', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012101', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012100', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012098', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012060', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012059', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012058', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012056', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012055', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012054', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012052', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012051', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012043', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012031', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012029', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012028', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000011000', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012000', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012001', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012002', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012003', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012005', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012006', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012008', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012009', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012011', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012013', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012016', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012027', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012061', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012062', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012065', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012066', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012068', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012069', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012070', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012073', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012074', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012075', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012077', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012078', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012079', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012081', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012082', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012084', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012086', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012087', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012088', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012090', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012091', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012092', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012094', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012095', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012474', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012487', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012500', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012517', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012518', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012529', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012532', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012537', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012540', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012541', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012543', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012545', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012546', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012547', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012548', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012550', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012551', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012552', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012553', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012589', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012592', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012596', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012597', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012643', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012651', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012652', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012675', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012676', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012678', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012679', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012681', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012692', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012702', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012709', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012711', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012729', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012733', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012738', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012743', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012755', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012773', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012774', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012779', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012781', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012790', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012791', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012801', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012802', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012803', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012804', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012806', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012807', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012809', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012814', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012831', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012834', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012842', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012844', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012854', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012857', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012860', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012862', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012863', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012866', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012867', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012872', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012877', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012878', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012879', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012880', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012893', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012901', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012902', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012906', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012910', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012920', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012932', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012936', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012943', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012956', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012957', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012960', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012964', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012975', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012981', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012983', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012987', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012994', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012995', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012996', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012997', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000013001', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000013038', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000013039', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000013040', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000013050', sysdate, null); -- Inserting RoleToUserAssignment 'NSCHELST/APPLOG VIEW' harmony.usermgt.create_role_to_user_assignment('NSCHELST', 'APPLOG VIEW', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'NSCHELST/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('NSCHELST', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'NSCHELST/BATCH BANK COMMUNICATION' harmony.usermgt.create_role_to_user_assignment('NSCHELST', 'BATCH BANK COMMUNICATION', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'NSCHELST/HB CENTRAL RELEASER' harmony.usermgt.create_role_to_user_assignment('NSCHELST', 'HB CENTRAL RELEASER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NSCHELST/HB CENTRAL RELEASER harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2357', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2356', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2355', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2354', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2353', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2352', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2351', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2350', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2349', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2348', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2194', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2192', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2187', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2186', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2185', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2183', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2182', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2181', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2180', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2179', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2178', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2177', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2176', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2175', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2174', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2173', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2172', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2171', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2170', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2169', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2168', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2167', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2166', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2165', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2164', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2163', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2162', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2160', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2159', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2158', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2157', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2156', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2154', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2153', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2152', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2147', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2146', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2144', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2143', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2141', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2140', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2139', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2127', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2126', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2125', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2123', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2120', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2117', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2050', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2049', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2047', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2046', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2041', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2039', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2037', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2036', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2034', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2030', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2029', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2027', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '1000', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '1002', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2000', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2011', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2012', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2013', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2015', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2016', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2017', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2018', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2019', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2020', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2021', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2051', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2052', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2056', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2060', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2061', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2064', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2065', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2066', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2067', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2071', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2088', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2100', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2101', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2102', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2103', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2104', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2105', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2108', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2109', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2110', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2111', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2112', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2113', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2114', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2196', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2197', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2198', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2199', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2200', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2201', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2202', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2203', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2205', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2206', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2207', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2208', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2209', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2210', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2211', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2212', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2215', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2218', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2219', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2220', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2221', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2222', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2223', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2224', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2225', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2226', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2229', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2231', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2232', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2235', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2236', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2237', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2238', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2239', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2240', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2241', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2242', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2243', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2244', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2245', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2246', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2247', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2248', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2249', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2250', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2251', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2252', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2254', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2255', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2256', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2257', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2258', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2260', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2261', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2262', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2263', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2264', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2265', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2266', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2267', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2268', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2269', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2270', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2271', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2272', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2273', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2274', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2275', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2276', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2277', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2278', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2282', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2283', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2284', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2286', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2287', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2288', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2289', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2290', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2292', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2293', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2297', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2298', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2299', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2300', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2301', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2302', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2303', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2304', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2308', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2311', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2312', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2313', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2314', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2315', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2316', sysdate, null); -- Inserting RoleToUserAssignment 'NSCHELST/HB CENTRAL REPORTER' harmony.usermgt.create_role_to_user_assignment('NSCHELST', 'HB CENTRAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NSCHELST/HB CENTRAL REPORTER harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REPORTER', 'R3_COCO', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'NSCHELST/HB CENTRAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NSCHELST/HB CENTRAL REQUESTOR harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2357', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2356', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2355', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2354', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2353', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2352', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2351', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2350', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2349', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2348', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2194', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2192', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2187', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2186', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2185', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2183', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2182', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2181', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2180', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2179', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2178', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2177', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2176', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2175', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2174', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2173', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2172', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2171', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2170', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2169', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2168', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2167', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2166', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2165', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2164', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2163', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2162', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2160', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2159', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2158', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2157', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2156', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2154', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2153', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2152', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2147', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2146', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2144', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2143', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2141', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2140', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2139', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2127', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2126', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2125', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2123', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2120', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2117', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2050', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2049', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2047', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2046', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2041', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2039', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2037', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2036', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2034', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2030', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2029', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2027', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '1000', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '1002', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2000', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2011', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2012', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2013', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2015', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2016', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2017', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2018', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2019', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2020', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2021', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2051', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2052', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2056', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2060', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2061', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2064', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2065', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2066', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2067', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2071', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2088', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2100', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2101', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2102', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2103', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2104', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2105', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2108', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2109', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2110', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2111', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2112', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2113', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2114', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2196', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2197', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2198', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2199', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2200', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2201', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2202', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2203', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2205', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2206', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2207', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2208', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2209', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2210', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2211', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2212', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2215', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2218', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2219', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2220', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2221', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2222', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2223', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2224', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2225', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2226', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2229', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2231', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2232', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2235', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2236', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2237', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2238', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2239', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2240', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2241', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2242', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2243', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2244', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2245', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2246', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2247', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2248', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2249', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2250', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2251', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2252', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2254', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2255', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2256', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2257', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2258', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2260', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2261', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2262', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2263', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2264', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2265', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2266', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2267', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2268', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2269', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2270', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2271', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2272', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2273', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2274', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2275', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2276', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2277', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2278', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2282', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2283', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2284', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2286', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2287', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2288', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2289', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2290', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2292', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2293', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2297', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2298', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2299', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2300', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2301', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2302', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2303', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2304', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2308', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2311', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2312', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2313', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2314', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2315', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2316', sysdate, null); -- Inserting RoleToUserAssignment 'NSCHELST/ICL CENTRAL MANAGER' harmony.usermgt.create_role_to_user_assignment('NSCHELST', 'ICL CENTRAL MANAGER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NSCHELST/ICL CENTRAL MANAGER harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL CENTRAL MANAGER', 'R3_BUPA_ICL', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'NSCHELST/ICL LOCAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NSCHELST/ICL LOCAL REQUESTOR harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000013114', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000013112', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000013111', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000013109', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000013076', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000013075', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000013074', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000013073', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000013072', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000013071', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000013051', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012467', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012441', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012387', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012370', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012369', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012367', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012359', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012358', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012350', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012337', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012320', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012314', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012313', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012312', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012311', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012310', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012305', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012298', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012297', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012281', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012277', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012276', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012275', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012274', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012271', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012270', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012266', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012263', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012262', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012195', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012194', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012192', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012186', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012127', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012125', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012123', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012122', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012121', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012120', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012117', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012108', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012107', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012106', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012104', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012102', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012101', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012100', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012098', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012060', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012059', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012058', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012056', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012055', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012054', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012052', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012051', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012043', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012031', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012029', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012028', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000011000', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012000', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012001', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012002', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012003', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012005', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012006', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012008', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012009', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012011', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012013', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012016', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012027', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012061', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012062', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012065', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012066', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012068', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012069', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012070', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012073', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012074', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012075', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012077', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012078', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012079', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012081', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012082', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012084', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012086', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012087', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012088', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012090', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012091', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012092', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012094', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012095', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012474', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012487', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012500', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012517', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012518', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012529', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012532', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012537', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012540', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012541', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012543', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012545', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012546', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012547', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012548', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012550', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012551', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012552', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012553', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012589', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012592', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012596', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012597', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012643', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012651', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012652', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012675', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012676', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012678', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012679', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012681', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012692', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012702', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012709', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012711', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012729', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012733', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012738', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012743', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012755', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012773', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012774', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012779', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012781', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012790', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012791', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012801', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012802', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012803', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012804', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012806', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012807', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012809', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012814', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012831', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012834', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012842', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012844', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012854', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012857', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012860', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012862', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012863', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012866', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012867', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012872', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012877', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012878', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012879', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012880', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012893', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012901', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012902', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012906', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012910', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012920', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012932', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012936', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012943', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012956', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012957', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012960', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012964', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012975', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012981', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012983', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012987', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012994', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012995', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012996', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012997', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000013001', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000013038', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000013039', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000013040', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000013050', sysdate, null); -- Inserting RoleToUserAssignment 'NSCHELST/IHC CENTRAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('NSCHELST', 'IHC CENTRAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NSCHELST/IHC CENTRAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('NSCHELST', 'IHC CENTRAL POSITION REPORT', 'R3_IHBACCOUNT', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'NSCHELST/IHCTF CENTRAL MANAGER' harmony.usermgt.create_role_to_user_assignment('NSCHELST', 'IHCTF CENTRAL MANAGER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NSCHELST/IHCTF CENTRAL MANAGER harmony.usermgt.create_dds_item_assignment('NSCHELST', 'IHCTF CENTRAL MANAGER', 'R3_BUPA_IHCTRANSFERS', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'NSCHELST/MR CENTRAL REPORTER' harmony.usermgt.create_role_to_user_assignment('NSCHELST', 'MR CENTRAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NSCHELST/MR CENTRAL REPORTER harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REPORTER', 'R3_COCO', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'NSCHELST/MR CENTRAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NSCHELST/MR CENTRAL REQUESTOR harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2357', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2356', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2355', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2354', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2353', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2352', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2351', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2350', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2349', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2348', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2194', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2192', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2187', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2186', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2185', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2183', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2182', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2181', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2180', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2179', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2178', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2177', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2176', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2175', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2174', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2173', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2172', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2171', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2170', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2169', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2168', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2167', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2166', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2165', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2164', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2163', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2162', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2160', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2159', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2158', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2157', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2156', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2154', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2153', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2152', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2147', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2146', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2144', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2143', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2141', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2140', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2139', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2127', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2126', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2125', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2123', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2120', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2117', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2050', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2049', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2047', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2046', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2041', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2039', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2037', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2036', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2034', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2030', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2029', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2027', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '1000', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '1002', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2000', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2011', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2012', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2013', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2015', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2016', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2017', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2018', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2019', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2020', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2021', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2051', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2052', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2056', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2060', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2061', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2064', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2065', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2066', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2067', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2071', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2088', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2100', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2101', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2102', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2103', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2104', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2105', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2108', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2109', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2110', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2111', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2112', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2113', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2114', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2196', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2197', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2198', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2199', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2200', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2201', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2202', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2203', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2205', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2206', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2207', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2208', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2209', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2210', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2211', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2212', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2215', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2218', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2219', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2220', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2221', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2222', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2223', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2224', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2225', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2226', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2229', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2231', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2232', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2235', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2236', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2237', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2238', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2239', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2240', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2241', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2242', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2243', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2244', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2245', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2246', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2247', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2248', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2249', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2250', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2251', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2252', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2254', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2255', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2256', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2257', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2258', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2260', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2261', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2262', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2263', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2264', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2265', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2266', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2267', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2268', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2269', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2270', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2271', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2272', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2273', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2274', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2275', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2276', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2277', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2278', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2282', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2283', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2284', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2286', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2287', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2288', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2289', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2290', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2292', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2293', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2297', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2298', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2299', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2300', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2301', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2302', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2303', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2304', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2308', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2311', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2312', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2313', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2314', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2315', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2316', sysdate, null); -- Inserting RoleToUserAssignment 'NSCHELST/OO CENTRAL AUTHORIZER' harmony.usermgt.create_role_to_user_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NSCHELST/OO CENTRAL AUTHORIZER harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2357', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2356', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2355', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2354', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2353', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2352', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2351', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2350', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2349', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2348', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2316', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2315', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2187', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2186', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2185', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2183', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2182', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2181', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2180', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2179', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2178', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2177', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2176', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2175', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2174', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2173', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2172', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2171', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2170', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2169', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2168', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2167', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2166', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2165', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2164', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2163', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2162', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2160', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2159', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2158', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2157', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2156', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2154', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2153', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2152', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2147', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2146', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2144', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2143', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2141', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2140', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2139', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2127', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2126', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2125', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2123', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2120', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2117', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2114', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2113', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2047', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2046', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2041', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2039', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2037', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2036', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2034', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2030', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2029', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2027', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2021', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2020', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'OO_GROUPING', 'ONE', '2', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'OO_GROUPING', 'ONE', '4', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '1000', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '1002', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2000', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2011', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2012', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2013', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2015', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2016', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2017', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2018', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2019', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2049', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2050', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2051', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2052', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2056', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2060', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2061', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2064', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2065', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2066', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2067', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2071', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2088', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2100', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2101', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2102', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2103', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2104', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2105', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2108', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2109', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2110', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2111', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2112', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2192', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2194', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2196', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2197', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2198', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2199', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2200', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2201', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2202', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2203', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2205', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2206', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2207', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2208', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2209', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2210', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2211', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2212', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2215', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2218', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2219', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2220', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2221', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2222', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2223', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2224', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2225', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2226', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2229', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2231', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2232', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2235', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2236', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2237', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2238', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2239', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2240', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2241', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2242', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2243', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2244', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2245', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2246', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2247', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2248', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2249', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2250', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2251', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2252', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2254', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2255', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2256', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2257', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2258', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2260', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2261', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2262', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2263', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2264', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2265', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2266', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2267', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2268', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2269', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2270', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2271', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2272', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2273', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2274', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2275', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2276', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2277', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2278', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2282', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2283', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2284', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2286', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2287', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2288', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2289', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2290', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2292', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2293', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2297', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2298', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2299', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2300', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2301', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2302', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2303', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2304', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2308', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2311', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2312', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2313', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2314', sysdate, null); -- Inserting RoleToUserAssignment 'NSCHELST/OO CENTRAL REPORTER' harmony.usermgt.create_role_to_user_assignment('NSCHELST', 'OO CENTRAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NSCHELST/OO CENTRAL REPORTER harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REPORTER', 'R3_COCO', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'NSCHELST/OO CENTRAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NSCHELST/OO CENTRAL REQUESTOR harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2357', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2356', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2355', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2354', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2353', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2352', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2351', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2350', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2349', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2348', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2316', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2315', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2187', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2186', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2185', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2183', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2182', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2181', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2180', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2179', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2178', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2177', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2176', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2175', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2174', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2173', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2172', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2171', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2170', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2169', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2168', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2167', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2166', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2165', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2164', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2163', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2162', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2160', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2159', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2158', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2157', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2156', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2154', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2153', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2152', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2147', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2146', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2144', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2143', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2141', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2140', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2139', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2127', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2126', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2125', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2123', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2120', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2117', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2114', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2113', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2047', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2046', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2041', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2039', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2037', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2036', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2034', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2030', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2029', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2027', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2021', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2020', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'OO_GROUPING', 'ONE', '2', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'OO_GROUPING', 'ONE', '4', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '1000', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '1002', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2000', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2011', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2012', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2013', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2015', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2016', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2017', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2018', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2019', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2049', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2050', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2051', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2052', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2056', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2060', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2061', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2064', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2065', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2066', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2067', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2071', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2088', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2100', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2101', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2102', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2103', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2104', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2105', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2108', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2109', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2110', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2111', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2112', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2192', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2194', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2196', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2197', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2198', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2199', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2200', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2201', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2202', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2203', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2205', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2206', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2207', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2208', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2209', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2210', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2211', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2212', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2215', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2218', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2219', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2220', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2221', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2222', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2223', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2224', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2225', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2226', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2229', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2231', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2232', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2235', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2236', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2237', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2238', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2239', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2240', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2241', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2242', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2243', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2244', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2245', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2246', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2247', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2248', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2249', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2250', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2251', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2252', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2254', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2255', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2256', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2257', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2258', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2260', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2261', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2262', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2263', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2264', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2265', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2266', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2267', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2268', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2269', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2270', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2271', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2272', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2273', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2274', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2275', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2276', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2277', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2278', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2282', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2283', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2284', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2286', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2287', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2288', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2289', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2290', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2292', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2293', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2297', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2298', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2299', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2300', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2301', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2302', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2303', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2304', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2308', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2311', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2312', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2313', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2314', sysdate, null); -- Inserting RoleToUserAssignment 'NSCHELST/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('NSCHELST', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NSCHELST/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('NSCHELST', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'NSCHELST/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('NSCHELST', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NSCHELST/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('NSCHELST', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'NSHAH15/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('NSHAH15', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'NSUKUMAR/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('NSUKUMAR', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'NSUKUMAR/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('NSUKUMAR', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NSUKUMAR/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('NSUKUMAR', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12023CAD', sysdate, null); -- Inserting RoleToUserAssignment 'NTRUONG/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('NTRUONG', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NTRUONG/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('NTRUONG', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '6083', sysdate, null); -- Inserting RoleToUserAssignment 'NTSCHANZ/AMMF LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('NTSCHANZ', 'AMMF LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NTSCHANZ/AMMF LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('NTSCHANZ', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012028', sysdate, null); -- Inserting RoleToUserAssignment 'NTSCHANZ/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('NTSCHANZ', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'NTSCHANZ/ICL LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('NTSCHANZ', 'ICL LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NTSCHANZ/ICL LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('NTSCHANZ', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012028', sysdate, null); -- Inserting RoleToUserAssignment 'NTSCHANZ/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('NTSCHANZ', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NTSCHANZ/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('NTSCHANZ', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12028USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('NTSCHANZ', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12028EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('NTSCHANZ', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12028CHF', sysdate, null); -- Inserting RoleToUserAssignment 'NTSCHANZ/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('NTSCHANZ', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NTSCHANZ/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('NTSCHANZ', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2160', sysdate, null); -- Inserting RoleToUserAssignment 'NVANGEEL/AMMF Central reporter' harmony.usermgt.create_role_to_user_assignment('NVANGEEL', 'AMMF Central reporter', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NVANGEEL/AMMF Central reporter harmony.usermgt.create_dds_item_assignment('NVANGEEL', 'AMMF Central reporter', 'R3_BUPA_TRANSFERS', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'NVANGEEL/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('NVANGEEL', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'NVANGEEL/HB CENTRAL REPORTER' harmony.usermgt.create_role_to_user_assignment('NVANGEEL', 'HB CENTRAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NVANGEEL/HB CENTRAL REPORTER harmony.usermgt.create_dds_item_assignment('NVANGEEL', 'HB CENTRAL REPORTER', 'R3_COCO', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'NVANGEEL/HB COCO COMBI Reporter' harmony.usermgt.create_role_to_user_assignment('NVANGEEL', 'HB COCO COMBI Reporter', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'NVANGEEL/ICL Central reporter' harmony.usermgt.create_role_to_user_assignment('NVANGEEL', 'ICL Central reporter', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NVANGEEL/ICL Central reporter harmony.usermgt.create_dds_item_assignment('NVANGEEL', 'ICL Central reporter', 'R3_BUPA_ICL', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'NVANGEEL/IHC CENTRAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('NVANGEEL', 'IHC CENTRAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NVANGEEL/IHC CENTRAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('NVANGEEL', 'IHC CENTRAL POSITION REPORT', 'R3_IHBACCOUNT', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'NVANGEEL/IHCTF REPORTER' harmony.usermgt.create_role_to_user_assignment('NVANGEEL', 'IHCTF REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NVANGEEL/IHCTF REPORTER harmony.usermgt.create_dds_item_assignment('NVANGEEL', 'IHCTF REPORTER', 'R3_BUPA_IHCTRANSFERS', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'NVANGEEL/IT SUPPORT' harmony.usermgt.create_role_to_user_assignment('NVANGEEL', 'IT SUPPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NVANGEEL/IT SUPPORT harmony.usermgt.create_dds_item_assignment('NVANGEEL', 'IT SUPPORT', 'R3_COCO_RCM', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'NVANGEEL/MR CENTRAL REPORTER' harmony.usermgt.create_role_to_user_assignment('NVANGEEL', 'MR CENTRAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NVANGEEL/MR CENTRAL REPORTER harmony.usermgt.create_dds_item_assignment('NVANGEEL', 'MR CENTRAL REPORTER', 'R3_COCO', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'NVANGEEL/OO CENTRAL REPORTER' harmony.usermgt.create_role_to_user_assignment('NVANGEEL', 'OO CENTRAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NVANGEEL/OO CENTRAL REPORTER harmony.usermgt.create_dds_item_assignment('NVANGEEL', 'OO CENTRAL REPORTER', 'R3_COCO', 'ALL', null, sysdate, null); harmony.usermgt.create_dds_item_assignment('NVANGEEL', 'OO CENTRAL REPORTER', 'OO_GROUPING', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'NVANGEEL/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('NVANGEEL', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NVANGEEL/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('NVANGEEL', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'NVANGEEL/UME READ ALL' harmony.usermgt.create_role_to_user_assignment('NVANGEEL', 'UME READ ALL', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'NVASWAN/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('NVASWAN', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'NVASWAN/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('NVASWAN', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NVASWAN/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('NVASWAN', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12493USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('NVASWAN', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12490USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('NVASWAN', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12172USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('NVASWAN', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12167USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('NVASWAN', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12153USD', sysdate, null); -- Inserting RoleToUserAssignment 'NVIERNES/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('NVIERNES', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'NVIERNES/BF LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('NVIERNES', 'BF LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NVIERNES/BF LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('NVIERNES', 'BF LOCAL REPORTER', 'OO_GROUPING', 'ONE', '165', sysdate, null); -- Inserting RoleToUserAssignment 'NVIERNES/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('NVIERNES', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NVIERNES/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('NVIERNES', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12290JPY', sysdate, null); -- Inserting RoleToUserAssignment 'NVIERNES/OO LOCAL COCO REPORTER' harmony.usermgt.create_role_to_user_assignment('NVIERNES', 'OO LOCAL COCO REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NVIERNES/OO LOCAL COCO REPORTER harmony.usermgt.create_dds_item_assignment('NVIERNES', 'OO LOCAL COCO REPORTER', 'R3_COCO', 'ONE', '6005', sysdate, null); -- Inserting RoleToUserAssignment 'NVIERNES/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('NVIERNES', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NVIERNES/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('NVIERNES', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '6005', sysdate, null); -- Inserting RoleToUserAssignment 'NVIERNES/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('NVIERNES', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NVIERNES/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('NVIERNES', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '6005', sysdate, null); -- Inserting RoleToUserAssignment 'NYASUMO1/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('NYASUMO1', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NYASUMO1/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('NYASUMO1', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12325JPY', sysdate, null); -- Inserting RoleToUserAssignment 'OHONSCHA/AMMF LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('OHONSCHA', 'AMMF LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for OHONSCHA/AMMF LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('OHONSCHA', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012755', sysdate, null); harmony.usermgt.create_dds_item_assignment('OHONSCHA', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012743', sysdate, null); harmony.usermgt.create_dds_item_assignment('OHONSCHA', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012359', sysdate, null); harmony.usermgt.create_dds_item_assignment('OHONSCHA', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012059', sysdate, null); harmony.usermgt.create_dds_item_assignment('OHONSCHA', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012002', sysdate, null); -- Inserting RoleToUserAssignment 'OHONSCHA/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('OHONSCHA', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'OHONSCHA/BF LOCAL AUTHORIZER' harmony.usermgt.create_role_to_user_assignment('OHONSCHA', 'BF LOCAL AUTHORIZER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for OHONSCHA/BF LOCAL AUTHORIZER harmony.usermgt.create_dds_item_assignment('OHONSCHA', 'BF LOCAL AUTHORIZER', 'OO_GROUPING', 'ONE', '97', sysdate, null); -- Inserting RoleToUserAssignment 'OHONSCHA/ICL LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('OHONSCHA', 'ICL LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for OHONSCHA/ICL LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('OHONSCHA', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012755', sysdate, null); harmony.usermgt.create_dds_item_assignment('OHONSCHA', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012743', sysdate, null); harmony.usermgt.create_dds_item_assignment('OHONSCHA', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012359', sysdate, null); harmony.usermgt.create_dds_item_assignment('OHONSCHA', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012059', sysdate, null); -- Inserting RoleToUserAssignment 'OHONSCHA/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('OHONSCHA', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for OHONSCHA/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('OHONSCHA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12755EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('OHONSCHA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12743EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('OHONSCHA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12359EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('OHONSCHA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12059EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('OHONSCHA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12002EUR', sysdate, null); -- Inserting RoleToUserAssignment 'OHONSCHA/OO LOCAL ACCOUNT AUTHORIZER/RELEASER' harmony.usermgt.create_role_to_user_assignment('OHONSCHA', 'OO LOCAL ACCOUNT AUTHORIZER/RELEASER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for OHONSCHA/OO LOCAL ACCOUNT AUTHORIZER/RELEASER harmony.usermgt.create_dds_item_assignment('OHONSCHA', 'OO LOCAL ACCOUNT AUTHORIZER/RELEASER', 'R3_HBACCOUNT', 'ONE', '2206DEUFREURC1', sysdate, null); harmony.usermgt.create_dds_item_assignment('OHONSCHA', 'OO LOCAL ACCOUNT AUTHORIZER/RELEASER', 'R3_HBACCOUNT', 'ONE', '2012UNIWIEURC1', sysdate, null); -- Inserting RoleToUserAssignment 'OHONSCHA/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('OHONSCHA', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for OHONSCHA/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('OHONSCHA', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2208', sysdate, null); harmony.usermgt.create_dds_item_assignment('OHONSCHA', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2206', sysdate, null); harmony.usermgt.create_dds_item_assignment('OHONSCHA', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2202', sysdate, null); harmony.usermgt.create_dds_item_assignment('OHONSCHA', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2198', sysdate, null); harmony.usermgt.create_dds_item_assignment('OHONSCHA', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2012', sysdate, null); -- Inserting RoleToUserAssignment 'OHONSCHA/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('OHONSCHA', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for OHONSCHA/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('OHONSCHA', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2208', sysdate, null); harmony.usermgt.create_dds_item_assignment('OHONSCHA', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2206', sysdate, null); harmony.usermgt.create_dds_item_assignment('OHONSCHA', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2202', sysdate, null); -- Inserting RoleToUserAssignment 'OKATSAOU/AMMF LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('OKATSAOU', 'AMMF LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for OKATSAOU/AMMF LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('OKATSAOU', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012441', sysdate, null); -- Inserting RoleToUserAssignment 'OKATSAOU/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('OKATSAOU', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'OKATSAOU/BF LOCAL AUTHORIZER' harmony.usermgt.create_role_to_user_assignment('OKATSAOU', 'BF LOCAL AUTHORIZER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for OKATSAOU/BF LOCAL AUTHORIZER harmony.usermgt.create_dds_item_assignment('OKATSAOU', 'BF LOCAL AUTHORIZER', 'OO_GROUPING', 'ONE', '249', sysdate, null); -- Inserting RoleToUserAssignment 'OKATSAOU/ICL LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('OKATSAOU', 'ICL LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for OKATSAOU/ICL LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('OKATSAOU', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012441', sysdate, null); -- Inserting RoleToUserAssignment 'OKATSAOU/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('OKATSAOU', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for OKATSAOU/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('OKATSAOU', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12441EUR', sysdate, null); -- Inserting RoleToUserAssignment 'OKATSAOU/OO LOCAL COCO AUTHORIZER/RELEASER' harmony.usermgt.create_role_to_user_assignment('OKATSAOU', 'OO LOCAL COCO AUTHORIZER/RELEASER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for OKATSAOU/OO LOCAL COCO AUTHORIZER/RELEASER harmony.usermgt.create_dds_item_assignment('OKATSAOU', 'OO LOCAL COCO AUTHORIZER/RELEASER', 'R3_COCO', 'ONE', '2272', sysdate, null); -- Inserting RoleToUserAssignment 'OKATSAOU/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('OKATSAOU', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for OKATSAOU/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('OKATSAOU', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2272', sysdate, null); -- Inserting RoleToUserAssignment 'OKATSAOU/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('OKATSAOU', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for OKATSAOU/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('OKATSAOU', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2272', sysdate, null); -- Inserting RoleToUserAssignment 'OKOVALEN/AMMF LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('OKOVALEN', 'AMMF LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for OKOVALEN/AMMF LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('OKOVALEN', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012261', sysdate, null); harmony.usermgt.create_dds_item_assignment('OKOVALEN', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012108', sysdate, null); harmony.usermgt.create_dds_item_assignment('OKOVALEN', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012005', sysdate, null); harmony.usermgt.create_dds_item_assignment('OKOVALEN', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012004', sysdate, null); harmony.usermgt.create_dds_item_assignment('OKOVALEN', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012003', sysdate, null); -- Inserting RoleToUserAssignment 'OKOVALEN/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('OKOVALEN', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'OKOVALEN/BF LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('OKOVALEN', 'BF LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for OKOVALEN/BF LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('OKOVALEN', 'BF LOCAL REPORTER', 'OO_GROUPING', 'ONE', '9', sysdate, null); harmony.usermgt.create_dds_item_assignment('OKOVALEN', 'BF LOCAL REPORTER', 'OO_GROUPING', 'ONE', '8', sysdate, null); harmony.usermgt.create_dds_item_assignment('OKOVALEN', 'BF LOCAL REPORTER', 'OO_GROUPING', 'ONE', '190', sysdate, null); -- Inserting RoleToUserAssignment 'OKOVALEN/ICL LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('OKOVALEN', 'ICL LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for OKOVALEN/ICL LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('OKOVALEN', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012261', sysdate, null); harmony.usermgt.create_dds_item_assignment('OKOVALEN', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012108', sysdate, null); harmony.usermgt.create_dds_item_assignment('OKOVALEN', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012005', sysdate, null); harmony.usermgt.create_dds_item_assignment('OKOVALEN', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012004', sysdate, null); harmony.usermgt.create_dds_item_assignment('OKOVALEN', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012003', sysdate, null); -- Inserting RoleToUserAssignment 'OKOVALEN/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('OKOVALEN', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for OKOVALEN/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('OKOVALEN', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12261EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('OKOVALEN', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12108EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('OKOVALEN', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12011USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('OKOVALEN', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12011GBP', sysdate, null); harmony.usermgt.create_dds_item_assignment('OKOVALEN', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12011EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('OKOVALEN', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12005EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('OKOVALEN', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12004EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('OKOVALEN', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12003EUR', sysdate, null); -- Inserting RoleToUserAssignment 'OKOVALEN/OO LOCAL COCO REPORTER' harmony.usermgt.create_role_to_user_assignment('OKOVALEN', 'OO LOCAL COCO REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for OKOVALEN/OO LOCAL COCO REPORTER harmony.usermgt.create_dds_item_assignment('OKOVALEN', 'OO LOCAL COCO REPORTER', 'R3_COCO', 'ONE', '2239', sysdate, null); harmony.usermgt.create_dds_item_assignment('OKOVALEN', 'OO LOCAL COCO REPORTER', 'R3_COCO', 'ONE', '2110', sysdate, null); harmony.usermgt.create_dds_item_assignment('OKOVALEN', 'OO LOCAL COCO REPORTER', 'R3_COCO', 'ONE', '2013', sysdate, null); -- Inserting RoleToUserAssignment 'OKOVALEN/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('OKOVALEN', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for OKOVALEN/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('OKOVALEN', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2239', sysdate, null); harmony.usermgt.create_dds_item_assignment('OKOVALEN', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2110', sysdate, null); harmony.usermgt.create_dds_item_assignment('OKOVALEN', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2013', sysdate, null); -- Inserting RoleToUserAssignment 'OKOVALEN/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('OKOVALEN', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for OKOVALEN/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('OKOVALEN', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2239', sysdate, null); harmony.usermgt.create_dds_item_assignment('OKOVALEN', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2110', sysdate, null); harmony.usermgt.create_dds_item_assignment('OKOVALEN', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2037', sysdate, null); harmony.usermgt.create_dds_item_assignment('OKOVALEN', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2013', sysdate, null); -- Inserting RoleToUserAssignment 'OMORALE9/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('OMORALE9', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'OMORALE9/ICL LOCAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('OMORALE9', 'ICL LOCAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for OMORALE9/ICL LOCAL REQUESTOR harmony.usermgt.create_dds_item_assignment('OMORALE9', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012299', sysdate, null); -- Inserting RoleToUserAssignment 'OOERTLI/ICL LOCAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('OOERTLI', 'ICL LOCAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for OOERTLI/ICL LOCAL REQUESTOR harmony.usermgt.create_dds_item_assignment('OOERTLI', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012306', sysdate, null); -- Inserting RoleToUserAssignment 'OVIHTELI/AMMF LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('OVIHTELI', 'AMMF LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for OVIHTELI/AMMF LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('OVIHTELI', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000013040', sysdate, null); -- Inserting RoleToUserAssignment 'OVIHTELI/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('OVIHTELI', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'OVIHTELI/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('OVIHTELI', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for OVIHTELI/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('OVIHTELI', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE13040RON', sysdate, null); harmony.usermgt.create_dds_item_assignment('OVIHTELI', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE13040HUF', sysdate, null); harmony.usermgt.create_dds_item_assignment('OVIHTELI', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE13040EUR', sysdate, null); -- Inserting RoleToUserAssignment 'PAMATO/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('PAMATO', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PAMATO/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('PAMATO', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2231', sysdate, null); harmony.usermgt.create_dds_item_assignment('PAMATO', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2211', sysdate, null); harmony.usermgt.create_dds_item_assignment('PAMATO', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2113', sysdate, null); harmony.usermgt.create_dds_item_assignment('PAMATO', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2088', sysdate, null); harmony.usermgt.create_dds_item_assignment('PAMATO', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2052', sysdate, null); harmony.usermgt.create_dds_item_assignment('PAMATO', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2041', sysdate, null); -- Inserting RoleToUserAssignment 'PBOONRAC/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('PBOONRAC', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PBOONRAC/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('PBOONRAC', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '6016', sysdate, null); -- Inserting RoleToUserAssignment 'PBUCKLEY/AMMF LOCAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('PBUCKLEY', 'AMMF LOCAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PBUCKLEY/AMMF LOCAL REQUESTOR harmony.usermgt.create_dds_item_assignment('PBUCKLEY', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012099', sysdate, null); -- Inserting RoleToUserAssignment 'PBUCKLEY/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('PBUCKLEY', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PBUCKLEY/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('PBUCKLEY', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PBUCKLEY/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('PBUCKLEY', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12099EUR', sysdate, null); -- Inserting RoleToUserAssignment 'PCHAN6/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('PCHAN6', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PCHAN6/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('PCHAN6', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '6077', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCHAN6', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '6076', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCHAN6', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '6075', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCHAN6', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '6074', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCHAN6', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '6056', sysdate, null); -- Inserting RoleToUserAssignment 'PCSILVA7/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('PCSILVA7', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PCSILVA7/HB CENTRAL RELEASER' harmony.usermgt.create_role_to_user_assignment('PCSILVA7', 'HB CENTRAL RELEASER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PCSILVA7/HB CENTRAL RELEASER harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5066', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5059', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5057', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5055', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5054', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5053', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5052', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5051', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5050', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5049', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5048', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5047', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5046', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5045', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5044', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5043', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5042', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5041', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5040', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5038', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5037', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5033', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5020', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5019', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5018', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5017', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5016', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5015', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5014', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5013', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5011', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5010', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5009', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5006', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5004', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5021', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5022', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5023', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5024', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5025', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5026', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5027', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5028', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5029', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5030', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5031', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5032', sysdate, null); -- Inserting RoleToUserAssignment 'PCSILVA7/HB CENTRAL REPORTER' harmony.usermgt.create_role_to_user_assignment('PCSILVA7', 'HB CENTRAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PCSILVA7/HB CENTRAL REPORTER harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HB CENTRAL REPORTER', 'R3_COCO', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PCSILVA7/HB CENTRAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('PCSILVA7', 'HB CENTRAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PCSILVA7/HB CENTRAL REQUESTOR harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5066', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5059', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5057', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5055', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5054', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5053', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5052', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5051', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5050', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5049', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5048', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5047', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5046', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5045', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5044', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5043', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5042', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5041', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5040', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5038', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5037', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5033', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5020', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5019', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5018', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5017', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5016', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5015', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5014', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5013', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5011', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5010', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5009', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5006', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5004', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5021', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5022', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5023', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5024', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5025', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5026', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5027', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5028', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5029', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5030', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5031', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5032', sysdate, null); -- Inserting RoleToUserAssignment 'PCSILVA7/MR CENTRAL REPORTER' harmony.usermgt.create_role_to_user_assignment('PCSILVA7', 'MR CENTRAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PCSILVA7/MR CENTRAL REPORTER harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'MR CENTRAL REPORTER', 'R3_COCO', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PCSILVA7/MR CENTRAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('PCSILVA7', 'MR CENTRAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PCSILVA7/MR CENTRAL REQUESTOR harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5066', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5059', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5057', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5055', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5054', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5053', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5052', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5051', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5050', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5049', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5048', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5047', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5046', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5045', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5044', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5043', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5042', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5041', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5040', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5038', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5037', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5033', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5020', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5019', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5018', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5017', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5016', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5015', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5014', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5013', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5011', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5010', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5009', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5006', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5004', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5021', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5022', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5023', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5024', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5025', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5026', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5027', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5028', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5029', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5030', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5031', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5032', sysdate, null); -- Inserting RoleToUserAssignment 'PCSILVA7/OO CENTRAL AUTHORIZER' harmony.usermgt.create_role_to_user_assignment('PCSILVA7', 'OO CENTRAL AUTHORIZER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PCSILVA7/OO CENTRAL AUTHORIZER harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5066', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5055', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5054', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5053', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5052', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5051', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5050', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5049', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5048', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5047', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5046', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5045', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5044', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5043', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5042', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5041', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5040', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5038', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5037', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5033', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5032', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5019', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5018', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5017', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5016', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5015', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5014', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5013', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5011', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5010', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5009', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5006', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5004', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'OO CENTRAL AUTHORIZER', 'OO_GROUPING', 'ONE', '183', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5020', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5021', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5022', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5023', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5024', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5025', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5026', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5027', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5028', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5029', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5030', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5031', sysdate, null); -- Inserting RoleToUserAssignment 'PCSILVA7/OO CENTRAL REPORTER' harmony.usermgt.create_role_to_user_assignment('PCSILVA7', 'OO CENTRAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PCSILVA7/OO CENTRAL REPORTER harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'OO CENTRAL REPORTER', 'R3_COCO', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PCSILVA7/OO CENTRAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('PCSILVA7', 'OO CENTRAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PCSILVA7/OO CENTRAL REQUESTOR harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5066', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5055', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5054', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5053', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5052', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5051', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5050', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5049', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5048', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5047', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5046', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5045', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5044', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5043', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5042', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5041', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5040', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5038', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5037', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5033', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5032', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5019', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5018', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5017', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5016', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5015', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5014', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5013', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5011', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5010', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5009', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5006', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5004', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'OO CENTRAL REQUESTOR', 'OO_GROUPING', 'ONE', '183', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5020', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5021', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5022', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5023', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5024', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5025', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5026', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5027', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5028', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5029', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5030', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5031', sysdate, null); -- Inserting RoleToUserAssignment 'PCSILVA7/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('PCSILVA7', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PCSILVA7/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PCSILVA7/TOPS2' harmony.usermgt.create_role_to_user_assignment('PCSILVA7', 'TOPS2', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PDHOINE1/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('PDHOINE1', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PDHOINE1/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('PDHOINE1', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2267', sysdate, null); harmony.usermgt.create_dds_item_assignment('PDHOINE1', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2144', sysdate, null); harmony.usermgt.create_dds_item_assignment('PDHOINE1', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2143', sysdate, null); harmony.usermgt.create_dds_item_assignment('PDHOINE1', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2125', sysdate, null); harmony.usermgt.create_dds_item_assignment('PDHOINE1', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2066', sysdate, null); -- Inserting RoleToUserAssignment 'PDIERCK3/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('PDIERCK3', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PDIERCK3/IHC CENTRAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('PDIERCK3', 'IHC CENTRAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PDIERCK3/IHC CENTRAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('PDIERCK3', 'IHC CENTRAL POSITION REPORT', 'R3_IHBACCOUNT', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PDIERCK3/IHC CENTRAL REPORTER' harmony.usermgt.create_role_to_user_assignment('PDIERCK3', 'IHC CENTRAL REPORTER', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PDIERCK3/REPORT C4S TO SYM' harmony.usermgt.create_role_to_user_assignment('PDIERCK3', 'REPORT C4S TO SYM', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PFOURMOI/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('PFOURMOI', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PFOURMOI/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('PFOURMOI', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PFOURMOI/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('PFOURMOI', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12082EUR', sysdate, null); -- Inserting RoleToUserAssignment 'PFOURMOI/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('PFOURMOI', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PFOURMOI/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('PFOURMOI', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2127', sysdate, null); -- Inserting RoleToUserAssignment 'PGEERTS1/AMMF Central reporter' harmony.usermgt.create_role_to_user_assignment('PGEERTS1', 'AMMF Central reporter', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PGEERTS1/AMMF Central reporter harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'AMMF Central reporter', 'R3_BUPA_TRANSFERS', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PGEERTS1/APPLOG UPDATE ENDSTAMP' harmony.usermgt.create_role_to_user_assignment('PGEERTS1', 'APPLOG UPDATE ENDSTAMP', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PGEERTS1/APPLOG VIEW' harmony.usermgt.create_role_to_user_assignment('PGEERTS1', 'APPLOG VIEW', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PGEERTS1/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('PGEERTS1', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PGEERTS1/BATCH BANK COMMUNICATION' harmony.usermgt.create_role_to_user_assignment('PGEERTS1', 'BATCH BANK COMMUNICATION', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PGEERTS1/BATCH PAYMENT PROCESSING' harmony.usermgt.create_role_to_user_assignment('PGEERTS1', 'BATCH PAYMENT PROCESSING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PGEERTS1/BF CENTRAL AUTHORIZER' harmony.usermgt.create_role_to_user_assignment('PGEERTS1', 'BF CENTRAL AUTHORIZER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PGEERTS1/BF CENTRAL AUTHORIZER harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'BF CENTRAL AUTHORIZER', 'OO_GROUPING', 'ONE', '4', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'BF CENTRAL AUTHORIZER', 'OO_GROUPING', 'ONE', '3', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'BF CENTRAL AUTHORIZER', 'OO_GROUPING', 'ONE', '2', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'BF CENTRAL AUTHORIZER', 'OO_GROUPING', 'ONE', '183', sysdate, null); -- Inserting RoleToUserAssignment 'PGEERTS1/BF CENTRAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('PGEERTS1', 'BF CENTRAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PGEERTS1/BF CENTRAL REQUESTOR harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'BF CENTRAL REQUESTOR', 'OO_GROUPING', 'ONE', '4', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'BF CENTRAL REQUESTOR', 'OO_GROUPING', 'ONE', '3', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'BF CENTRAL REQUESTOR', 'OO_GROUPING', 'ONE', '2', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'BF CENTRAL REQUESTOR', 'OO_GROUPING', 'ONE', '183', sysdate, null); -- Inserting RoleToUserAssignment 'PGEERTS1/FM RULES CENTRAL REQUEST' harmony.usermgt.create_role_to_user_assignment('PGEERTS1', 'FM RULES CENTRAL REQUEST', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PGEERTS1/HB CENTRAL REPORTER' harmony.usermgt.create_role_to_user_assignment('PGEERTS1', 'HB CENTRAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PGEERTS1/HB CENTRAL REPORTER harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'HB CENTRAL REPORTER', 'R3_COCO', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PGEERTS1/HB COCO COMBI Requestor' harmony.usermgt.create_role_to_user_assignment('PGEERTS1', 'HB COCO COMBI Requestor', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PGEERTS1/ICL Central reporter' harmony.usermgt.create_role_to_user_assignment('PGEERTS1', 'ICL Central reporter', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PGEERTS1/ICL Central reporter harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'ICL Central reporter', 'R3_BUPA_ICL', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PGEERTS1/IHC CENTRAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('PGEERTS1', 'IHC CENTRAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PGEERTS1/IHC CENTRAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'IHC CENTRAL POSITION REPORT', 'R3_IHBACCOUNT', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PGEERTS1/IHCTF REPORTER' harmony.usermgt.create_role_to_user_assignment('PGEERTS1', 'IHCTF REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PGEERTS1/IHCTF REPORTER harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'IHCTF REPORTER', 'R3_BUPA_IHCTRANSFERS', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PGEERTS1/OO CENTRAL RELEASER' harmony.usermgt.create_role_to_user_assignment('PGEERTS1', 'OO CENTRAL RELEASER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PGEERTS1/OO CENTRAL RELEASER harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5066', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5061', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5060', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5055', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5054', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5053', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5052', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5051', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5050', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5049', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5048', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5047', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5046', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5045', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5044', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5043', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5042', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5041', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5040', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5038', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5037', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5033', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5032', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5031', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5030', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5029', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5028', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5027', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5026', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5025', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5024', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5023', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5020', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5019', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5018', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5017', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5016', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5014', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5013', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5011', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5010', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5009', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5006', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5004', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '4002', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '3015', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '3014', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2357', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2356', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2355', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2354', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2353', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2352', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2351', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2350', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2349', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2316', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2315', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2314', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2313', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2312', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2311', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2308', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2304', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2181', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2180', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2179', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2178', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2177', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2175', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2174', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2173', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2172', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2171', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2170', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2169', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2168', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2167', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2166', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2165', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2164', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2163', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2162', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2160', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2159', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2158', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2157', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2154', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2153', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2152', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2147', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2146', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2144', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2143', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2141', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2140', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2139', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2127', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2126', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2125', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2123', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2120', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2117', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2114', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2113', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2112', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2111', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2110', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2109', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2105', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2104', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2103', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2030', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2029', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2027', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2021', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2020', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2019', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2018', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2017', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2016', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2015', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2013', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2012', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'OO_GROUPING', 'ALL', null, sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '1000', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '1002', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '1003', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '1004', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '1005', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '1006', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '1007', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '1008', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '1009', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '1010', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2000', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2011', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2034', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2036', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2037', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2039', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2041', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2046', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2047', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2049', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2050', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2051', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2052', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2056', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2060', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2061', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2064', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2065', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2066', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2067', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2071', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2076', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2088', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2100', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2101', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2102', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2182', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2183', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2185', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2186', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2187', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2192', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2194', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2196', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2197', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2198', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2199', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2200', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2201', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2202', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2203', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2204', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2205', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2206', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2207', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2208', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2209', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2210', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2211', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2212', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2215', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2218', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2219', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2220', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2221', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2222', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2223', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2224', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2225', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2226', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2229', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2231', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2232', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2235', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2236', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2237', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2238', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2239', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2240', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2241', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2242', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2243', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2244', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2245', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2246', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2247', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2248', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2249', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2250', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2251', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2252', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2254', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2255', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2256', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2257', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2258', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2260', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2261', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2262', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2263', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2264', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2265', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2266', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2267', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2268', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2269', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2270', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2271', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2272', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2273', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2274', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2275', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2276', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2277', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2278', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2282', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2283', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2284', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2286', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2287', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2288', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2289', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2290', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2292', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2293', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2297', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2298', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2299', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2300', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2301', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2302', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2303', sysdate, null); -- Inserting RoleToUserAssignment 'PGEERTS1/OO CENTRAL REPORTER' harmony.usermgt.create_role_to_user_assignment('PGEERTS1', 'OO CENTRAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PGEERTS1/OO CENTRAL REPORTER harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'OO CENTRAL REPORTER', 'R3_COCO', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PGEERTS1/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('PGEERTS1', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PGEERTS1/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PGEERTS1/TOPS2' harmony.usermgt.create_role_to_user_assignment('PGEERTS1', 'TOPS2', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PGEERTS1/UME READ ALL' harmony.usermgt.create_role_to_user_assignment('PGEERTS1', 'UME READ ALL', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PGRAHAM/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('PGRAHAM', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PGRAHAM/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('PGRAHAM', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2235', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGRAHAM', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2215', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGRAHAM', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2173', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGRAHAM', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2172', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGRAHAM', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2171', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGRAHAM', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2165', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGRAHAM', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2159', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGRAHAM', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2158', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGRAHAM', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2157', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGRAHAM', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2153', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGRAHAM', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2152', sysdate, null); -- Inserting RoleToUserAssignment 'PGRASSED/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('PGRASSED', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PHERNAN/BATCH PAYMENT PROCESSING' harmony.usermgt.create_role_to_user_assignment('PHERNAN', 'BATCH PAYMENT PROCESSING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PHERNAN/BF LOCAL AUTHORIZER' harmony.usermgt.create_role_to_user_assignment('PHERNAN', 'BF LOCAL AUTHORIZER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PHERNAN/BF LOCAL AUTHORIZER harmony.usermgt.create_dds_item_assignment('PHERNAN', 'BF LOCAL AUTHORIZER', 'OO_GROUPING', 'ONE', '5', sysdate, null); -- Inserting RoleToUserAssignment 'PHERNAN/OO LOCAL EXCEPTION COCO AUTHORISER/RELEASER' harmony.usermgt.create_role_to_user_assignment('PHERNAN', 'OO LOCAL EXCEPTION COCO AUTHORISER/RELEASER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PHERNAN/OO LOCAL EXCEPTION COCO AUTHORISER/RELEASER harmony.usermgt.create_dds_item_assignment('PHERNAN', 'OO LOCAL EXCEPTION COCO AUTHORISER/RELEASER', 'R3_COCO', 'ONE', '4000', sysdate, null); -- Inserting RoleToUserAssignment 'PHOSKEN1/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('PHOSKEN1', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PHOSKEN1/IHC CENTRAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('PHOSKEN1', 'IHC CENTRAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PHOSKEN1/IHC CENTRAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('PHOSKEN1', 'IHC CENTRAL POSITION REPORT', 'R3_IHBACCOUNT', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PHOSKEN1/IHC CENTRAL REPORTER' harmony.usermgt.create_role_to_user_assignment('PHOSKEN1', 'IHC CENTRAL REPORTER', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PHOSKEN1/REPORT C4S TO SYM' harmony.usermgt.create_role_to_user_assignment('PHOSKEN1', 'REPORT C4S TO SYM', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PJAIN3/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('PJAIN3', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PJAIN3/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('PJAIN3', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '6059', sysdate, null); -- Inserting RoleToUserAssignment 'PJCASEY/AMMF LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('PJCASEY', 'AMMF LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PJCASEY/AMMF LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('PJCASEY', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012866', sysdate, null); -- Inserting RoleToUserAssignment 'PJCASEY/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('PJCASEY', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PJCASEY/ICL LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('PJCASEY', 'ICL LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PJCASEY/ICL LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('PJCASEY', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012866', sysdate, null); -- Inserting RoleToUserAssignment 'PJCASEY/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('PJCASEY', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PJCASEY/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('PJCASEY', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12866USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('PJCASEY', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12094EUR', sysdate, null); -- Inserting RoleToUserAssignment 'PJCASEY/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('PJCASEY', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PJCASEY/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('PJCASEY', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2283', sysdate, null); -- Inserting RoleToUserAssignment 'PJCASEY/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('PJCASEY', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PJCASEY/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('PJCASEY', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2283', sysdate, null); -- Inserting RoleToUserAssignment 'PJELINEK/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('PJELINEK', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PJELINEK/ICL LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('PJELINEK', 'ICL LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PJELINEK/ICL LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('PJELINEK', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012270', sysdate, null); -- Inserting RoleToUserAssignment 'PJELINEK/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('PJELINEK', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PJELINEK/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('PJELINEK', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12270CZK', sysdate, null); -- Inserting RoleToUserAssignment 'PKNOPFOV/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('PKNOPFOV', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PKNOPFOV/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('PKNOPFOV', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12054CHF', sysdate, null); harmony.usermgt.create_dds_item_assignment('PKNOPFOV', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12000EUR', sysdate, null); -- Inserting RoleToUserAssignment 'PKNOPFOV/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('PKNOPFOV', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PKNOPFOV/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('PKNOPFOV', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2167', sysdate, null); harmony.usermgt.create_dds_item_assignment('PKNOPFOV', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2011', sysdate, null); -- Inserting RoleToUserAssignment 'PKORECKO/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('PKORECKO', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PKORECKO/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('PKORECKO', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PKORECKO/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('PKORECKO', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12079EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('PKORECKO', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12054CHF', sysdate, null); harmony.usermgt.create_dds_item_assignment('PKORECKO', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12000EUR', sysdate, null); -- Inserting RoleToUserAssignment 'PKORECKO/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('PKORECKO', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PKORECKO/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('PKORECKO', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2167', sysdate, null); harmony.usermgt.create_dds_item_assignment('PKORECKO', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2011', sysdate, null); -- Inserting RoleToUserAssignment 'PKRAEUTL/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('PKRAEUTL', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PKWAN/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('PKWAN', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PLORENZ/AMMF LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('PLORENZ', 'AMMF LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PLORENZ/AMMF LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('PLORENZ', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012813', sysdate, null); harmony.usermgt.create_dds_item_assignment('PLORENZ', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012812', sysdate, null); harmony.usermgt.create_dds_item_assignment('PLORENZ', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012811', sysdate, null); -- Inserting RoleToUserAssignment 'PLORENZ/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('PLORENZ', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PLORENZ/ICL LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('PLORENZ', 'ICL LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PLORENZ/ICL LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('PLORENZ', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012813', sysdate, null); harmony.usermgt.create_dds_item_assignment('PLORENZ', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012812', sysdate, null); harmony.usermgt.create_dds_item_assignment('PLORENZ', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012811', sysdate, null); -- Inserting RoleToUserAssignment 'PLORENZ/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('PLORENZ', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PLORENZ/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('PLORENZ', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12814DKK', sysdate, null); harmony.usermgt.create_dds_item_assignment('PLORENZ', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12813LVL', sysdate, null); harmony.usermgt.create_dds_item_assignment('PLORENZ', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12813EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('PLORENZ', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12812EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('PLORENZ', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12812EEK', sysdate, null); harmony.usermgt.create_dds_item_assignment('PLORENZ', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12811LTL', sysdate, null); harmony.usermgt.create_dds_item_assignment('PLORENZ', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12811EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('PLORENZ', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12791NOK', sysdate, null); harmony.usermgt.create_dds_item_assignment('PLORENZ', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12790EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('PLORENZ', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12310SEK', sysdate, null); harmony.usermgt.create_dds_item_assignment('PLORENZ', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12121DKK', sysdate, null); -- Inserting RoleToUserAssignment 'PLORENZ/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('PLORENZ', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PLORENZ/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('PLORENZ', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2258', sysdate, null); harmony.usermgt.create_dds_item_assignment('PLORENZ', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2249', sysdate, null); harmony.usermgt.create_dds_item_assignment('PLORENZ', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2248', sysdate, null); harmony.usermgt.create_dds_item_assignment('PLORENZ', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2247', sysdate, null); harmony.usermgt.create_dds_item_assignment('PLORENZ', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2101', sysdate, null); -- Inserting RoleToUserAssignment 'PLU1/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('PLU1', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PLU1/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('PLU1', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '6026', sysdate, null); -- Inserting RoleToUserAssignment 'PMACHA/ICL LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('PMACHA', 'ICL LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PMACHA/ICL LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('PMACHA', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012305', sysdate, null); -- Inserting RoleToUserAssignment 'PMAYET/AMMF LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('PMAYET', 'AMMF LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PMAYET/AMMF LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('PMAYET', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012801', sysdate, null); -- Inserting RoleToUserAssignment 'PMAYET/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('PMAYET', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PMAYET/ICL LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('PMAYET', 'ICL LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PMAYET/ICL LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('PMAYET', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012801', sysdate, null); -- Inserting RoleToUserAssignment 'PMAYET/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('PMAYET', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PMAYET/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('PMAYET', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12801EUR', sysdate, null); -- Inserting RoleToUserAssignment 'PMAYET/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('PMAYET', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PMAYET/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('PMAYET', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2221', sysdate, null); -- Inserting RoleToUserAssignment 'PMAYET/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('PMAYET', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PMAYET/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('PMAYET', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2267', sysdate, null); -- Inserting RoleToUserAssignment 'PMEEPREE/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('PMEEPREE', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PMEEPREE/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('PMEEPREE', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '6025', sysdate, null); -- Inserting RoleToUserAssignment 'PMENNEN/AMMF LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('PMENNEN', 'AMMF LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PMENNEN/AMMF LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('PMENNEN', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012893', sysdate, null); -- Inserting RoleToUserAssignment 'PMENNEN/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('PMENNEN', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PMENNEN/BF LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('PMENNEN', 'BF LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PMENNEN/BF LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('PMENNEN', 'BF LOCAL REPORTER', 'OO_GROUPING', 'ONE', '197', sysdate, null); harmony.usermgt.create_dds_item_assignment('PMENNEN', 'BF LOCAL REPORTER', 'OO_GROUPING', 'ONE', '192', sysdate, null); -- Inserting RoleToUserAssignment 'PMENNEN/ICL LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('PMENNEN', 'ICL LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PMENNEN/ICL LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('PMENNEN', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012893', sysdate, null); -- Inserting RoleToUserAssignment 'PMENNEN/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('PMENNEN', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PMENNEN/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('PMENNEN', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12893USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('PMENNEN', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12893EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('PMENNEN', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12643EUR', sysdate, null); -- Inserting RoleToUserAssignment 'PMENNEN/OO LOCAL COCO REPORTER' harmony.usermgt.create_role_to_user_assignment('PMENNEN', 'OO LOCAL COCO REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PMENNEN/OO LOCAL COCO REPORTER harmony.usermgt.create_dds_item_assignment('PMENNEN', 'OO LOCAL COCO REPORTER', 'R3_COCO', 'ONE', '2241', sysdate, null); -- Inserting RoleToUserAssignment 'PMENNEN/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('PMENNEN', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PMENNEN/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('PMENNEN', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2270', sysdate, null); harmony.usermgt.create_dds_item_assignment('PMENNEN', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2241', sysdate, null); -- Inserting RoleToUserAssignment 'PMENNEN/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('PMENNEN', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PMENNEN/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('PMENNEN', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2270', sysdate, null); harmony.usermgt.create_dds_item_assignment('PMENNEN', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2241', sysdate, null); -- Inserting RoleToUserAssignment 'PMERGAER/AMMF Central reporter' harmony.usermgt.create_role_to_user_assignment('PMERGAER', 'AMMF Central reporter', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PMERGAER/AMMF Central reporter harmony.usermgt.create_dds_item_assignment('PMERGAER', 'AMMF Central reporter', 'R3_BUPA_TRANSFERS', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PMERGAER/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('PMERGAER', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PMERGAER/HB CENTRAL REPORTER' harmony.usermgt.create_role_to_user_assignment('PMERGAER', 'HB CENTRAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PMERGAER/HB CENTRAL REPORTER harmony.usermgt.create_dds_item_assignment('PMERGAER', 'HB CENTRAL REPORTER', 'R3_COCO', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PMERGAER/HB COCO COMBI Reporter' harmony.usermgt.create_role_to_user_assignment('PMERGAER', 'HB COCO COMBI Reporter', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PMERGAER/ICL Central reporter' harmony.usermgt.create_role_to_user_assignment('PMERGAER', 'ICL Central reporter', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PMERGAER/ICL Central reporter harmony.usermgt.create_dds_item_assignment('PMERGAER', 'ICL Central reporter', 'R3_BUPA_ICL', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PMERGAER/IHC CENTRAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('PMERGAER', 'IHC CENTRAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PMERGAER/IHC CENTRAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('PMERGAER', 'IHC CENTRAL POSITION REPORT', 'R3_IHBACCOUNT', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PMERGAER/IHCTF REPORTER' harmony.usermgt.create_role_to_user_assignment('PMERGAER', 'IHCTF REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PMERGAER/IHCTF REPORTER harmony.usermgt.create_dds_item_assignment('PMERGAER', 'IHCTF REPORTER', 'R3_BUPA_IHCTRANSFERS', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PMERGAER/IT SUPPORT' harmony.usermgt.create_role_to_user_assignment('PMERGAER', 'IT SUPPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PMERGAER/IT SUPPORT harmony.usermgt.create_dds_item_assignment('PMERGAER', 'IT SUPPORT', 'R3_COCO_RCM', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PMERGAER/MR CENTRAL REPORTER' harmony.usermgt.create_role_to_user_assignment('PMERGAER', 'MR CENTRAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PMERGAER/MR CENTRAL REPORTER harmony.usermgt.create_dds_item_assignment('PMERGAER', 'MR CENTRAL REPORTER', 'R3_COCO', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PMERGAER/OO CENTRAL REPORTER' harmony.usermgt.create_role_to_user_assignment('PMERGAER', 'OO CENTRAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PMERGAER/OO CENTRAL REPORTER harmony.usermgt.create_dds_item_assignment('PMERGAER', 'OO CENTRAL REPORTER', 'R3_COCO', 'ALL', null, sysdate, null); harmony.usermgt.create_dds_item_assignment('PMERGAER', 'OO CENTRAL REPORTER', 'OO_GROUPING', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PMERGAER/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('PMERGAER', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PMERGAER/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('PMERGAER', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PMERGAER/UME READ ALL' harmony.usermgt.create_role_to_user_assignment('PMERGAER', 'UME READ ALL', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'POSULLI6/AMMF LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('POSULLI6', 'AMMF LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for POSULLI6/AMMF LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('POSULLI6', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012100', sysdate, null); -- Inserting RoleToUserAssignment 'POSULLI6/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('POSULLI6', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'POSULLI6/ICL LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('POSULLI6', 'ICL LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for POSULLI6/ICL LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('POSULLI6', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012100', sysdate, null); -- Inserting RoleToUserAssignment 'POSULLI6/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('POSULLI6', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for POSULLI6/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('POSULLI6', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12100USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('POSULLI6', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12100NOK', sysdate, null); harmony.usermgt.create_dds_item_assignment('POSULLI6', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12100GBP', sysdate, null); harmony.usermgt.create_dds_item_assignment('POSULLI6', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12100EUR', sysdate, null); -- Inserting RoleToUserAssignment 'PPATELB/AMMF CENTRAL AUTHORIZER' harmony.usermgt.create_role_to_user_assignment('PPATELB', 'AMMF CENTRAL AUTHORIZER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PPATELB/AMMF CENTRAL AUTHORIZER harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF CENTRAL AUTHORIZER', 'R3_BUPA_TRANSFERS', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PPATELB/AMMF LOCAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PPATELB/AMMF LOCAL REQUESTOR harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000013114', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000013112', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000013111', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000013076', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000013075', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000013073', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000013072', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000013071', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000013051', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000013050', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012441', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012387', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012370', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012369', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012367', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012359', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012358', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012350', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012337', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012320', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012314', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012313', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012312', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012311', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012310', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012305', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012298', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012297', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012281', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012277', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012276', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012275', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012274', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012271', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012270', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012266', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012263', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012262', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012195', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012194', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012192', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012186', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012127', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012125', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012123', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012122', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012121', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012120', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012117', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012108', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012107', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012106', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012104', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012102', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012101', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012100', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012098', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012095', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012060', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012059', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012058', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012056', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012055', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012054', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012052', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012051', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012043', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012031', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012029', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012028', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000011000', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012000', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012001', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012002', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012003', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012005', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012006', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012008', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012009', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012011', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012013', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012016', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012027', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012061', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012062', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012064', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012065', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012066', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012068', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012069', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012070', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012073', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012074', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012075', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012077', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012078', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012079', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012081', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012082', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012084', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012086', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012087', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012088', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012090', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012091', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012092', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012094', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012467', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012474', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012487', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012500', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012517', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012518', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012529', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012532', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012537', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012540', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012541', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012543', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012545', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012546', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012547', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012548', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012550', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012551', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012552', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012553', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012589', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012592', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012596', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012597', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012643', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012651', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012652', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012675', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012676', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012678', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012679', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012681', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012692', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012702', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012709', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012711', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012729', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012733', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012738', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012743', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012755', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012773', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012774', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012779', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012781', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012790', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012791', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012801', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012802', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012803', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012804', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012806', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012807', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012809', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012814', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012831', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012834', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012842', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012844', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012854', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012857', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012860', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012862', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012863', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012866', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012867', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012872', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012877', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012878', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012879', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012880', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012893', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012901', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012902', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012906', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012910', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012920', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012932', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012936', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012943', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012956', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012957', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012960', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012964', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012975', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012981', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012983', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012987', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012994', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012995', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012996', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012997', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000013001', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000013038', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000013039', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000013040', sysdate, null); -- Inserting RoleToUserAssignment 'PPATELB/APPLOG UPDATE ENDSTAMP' harmony.usermgt.create_role_to_user_assignment('PPATELB', 'APPLOG UPDATE ENDSTAMP', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PPATELB/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('PPATELB', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PPATELB/BATCH BANK COMMUNICATION' harmony.usermgt.create_role_to_user_assignment('PPATELB', 'BATCH BANK COMMUNICATION', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PPATELB/HB CENTRAL RELEASER' harmony.usermgt.create_role_to_user_assignment('PPATELB', 'HB CENTRAL RELEASER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PPATELB/HB CENTRAL RELEASER harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2357', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2356', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2355', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2354', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2353', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2352', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2351', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2350', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2349', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2316', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2194', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2192', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2187', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2186', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2185', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2183', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2182', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2181', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2180', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2179', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2178', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2177', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2176', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2175', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2174', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2173', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2172', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2171', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2170', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2169', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2168', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2167', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2166', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2165', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2164', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2163', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2162', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2160', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2159', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2158', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2157', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2156', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2154', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2153', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2152', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2147', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2146', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2144', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2143', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2141', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2140', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2139', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2127', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2126', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2125', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2123', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2120', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2117', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2050', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2049', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2047', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2046', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2041', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2039', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2037', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2036', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2034', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2030', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2029', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2027', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '1000', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '1002', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2000', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2011', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2012', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2013', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2015', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2016', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2017', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2018', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2019', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2020', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2021', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2051', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2052', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2056', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2060', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2061', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2064', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2065', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2066', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2067', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2071', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2088', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2100', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2101', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2102', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2103', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2104', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2105', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2108', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2109', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2110', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2111', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2112', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2113', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2114', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2196', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2197', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2198', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2199', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2200', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2201', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2202', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2203', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2204', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2205', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2206', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2207', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2208', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2209', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2210', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2211', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2212', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2215', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2218', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2219', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2220', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2221', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2222', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2223', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2224', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2225', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2226', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2229', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2231', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2232', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2235', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2236', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2237', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2238', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2239', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2240', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2241', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2242', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2243', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2244', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2245', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2246', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2247', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2248', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2249', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2250', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2251', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2252', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2254', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2255', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2256', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2257', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2258', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2260', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2261', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2262', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2263', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2264', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2265', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2266', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2267', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2268', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2269', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2270', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2271', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2272', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2273', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2274', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2275', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2276', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2277', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2278', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2282', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2283', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2284', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2286', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2287', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2288', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2289', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2290', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2292', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2293', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2297', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2298', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2299', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2300', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2301', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2302', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2303', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2304', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2308', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2311', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2312', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2313', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2314', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2315', sysdate, null); -- Inserting RoleToUserAssignment 'PPATELB/HB CENTRAL REPORTER' harmony.usermgt.create_role_to_user_assignment('PPATELB', 'HB CENTRAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PPATELB/HB CENTRAL REPORTER harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REPORTER', 'R3_COCO', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PPATELB/HB CENTRAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('PPATELB', 'HB CENTRAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PPATELB/HB CENTRAL REQUESTOR harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2357', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2356', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2355', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2354', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2353', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2352', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2351', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2350', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2349', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2316', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2194', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2192', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2187', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2186', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2185', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2183', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2182', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2181', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2180', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2179', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2178', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2177', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2176', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2175', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2174', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2173', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2172', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2171', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2170', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2169', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2168', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2167', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2166', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2165', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2164', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2163', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2162', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2160', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2159', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2158', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2157', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2156', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2154', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2153', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2152', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2147', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2146', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2144', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2143', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2141', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2140', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2139', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2127', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2126', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2125', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2123', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2120', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2117', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2050', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2049', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2047', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2046', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2041', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2039', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2037', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2036', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2034', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2030', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2029', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2027', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '1000', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '1002', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2000', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2011', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2012', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2013', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2015', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2016', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2017', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2018', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2019', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2020', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2021', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2051', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2052', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2056', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2060', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2061', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2064', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2065', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2066', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2067', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2071', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2088', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2100', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2101', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2102', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2103', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2104', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2105', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2108', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2109', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2110', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2111', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2112', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2113', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2114', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2196', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2197', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2198', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2199', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2200', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2201', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2202', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2203', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2204', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2205', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2206', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2207', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2208', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2209', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2210', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2211', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2212', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2215', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2218', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2219', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2220', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2221', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2222', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2223', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2224', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2225', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2226', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2229', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2231', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2232', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2235', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2236', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2237', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2238', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2239', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2240', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2241', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2242', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2243', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2244', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2245', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2246', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2247', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2248', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2249', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2250', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2251', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2252', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2254', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2255', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2256', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2257', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2258', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2260', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2261', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2262', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2263', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2264', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2265', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2266', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2267', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2268', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2269', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2270', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2271', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2272', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2273', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2274', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2275', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2276', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2277', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2278', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2282', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2283', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2284', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2286', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2287', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2288', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2289', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2290', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2292', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2293', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2297', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2298', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2299', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2300', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2301', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2302', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2303', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2304', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2308', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2311', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2312', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2313', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2314', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2315', sysdate, null); -- Inserting RoleToUserAssignment 'PPATELB/ICL CENTRAL MANAGER' harmony.usermgt.create_role_to_user_assignment('PPATELB', 'ICL CENTRAL MANAGER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PPATELB/ICL CENTRAL MANAGER harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL CENTRAL MANAGER', 'R3_BUPA_ICL', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PPATELB/ICL LOCAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('PPATELB', 'ICL LOCAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PPATELB/ICL LOCAL REQUESTOR harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000013114', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000013112', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000013111', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000013076', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000013075', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000013073', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000013072', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000013071', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000013051', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000013050', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012441', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012387', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012370', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012369', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012367', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012359', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012358', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012350', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012337', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012320', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012314', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012313', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012312', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012311', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012310', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012305', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012298', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012297', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012281', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012277', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012276', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012275', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012274', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012271', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012270', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012266', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012263', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012262', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012195', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012194', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012192', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012186', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012127', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012125', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012123', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012122', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012121', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012120', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012117', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012108', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012107', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012106', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012104', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012102', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012101', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012100', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012098', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012095', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012060', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012059', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012058', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012056', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012055', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012054', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012052', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012051', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012043', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012031', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012029', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012028', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000011000', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012000', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012001', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012002', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012003', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012005', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012006', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012008', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012009', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012011', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012013', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012016', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012027', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012061', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012062', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012064', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012065', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012066', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012068', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012069', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012070', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012073', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012074', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012075', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012077', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012078', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012079', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012081', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012082', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012084', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012086', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012087', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012088', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012090', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012091', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012092', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012094', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012467', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012474', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012487', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012500', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012517', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012518', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012529', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012532', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012537', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012540', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012541', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012543', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012545', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012546', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012547', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012548', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012550', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012551', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012552', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012553', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012589', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012592', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012596', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012597', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012643', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012651', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012652', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012675', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012676', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012678', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012679', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012681', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012692', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012702', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012709', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012711', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012729', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012733', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012738', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012743', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012755', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012773', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012774', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012779', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012781', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012790', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012791', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012801', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012802', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012803', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012804', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012806', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012807', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012809', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012814', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012831', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012834', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012842', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012844', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012854', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012857', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012860', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012862', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012863', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012866', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012867', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012872', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012877', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012878', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012879', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012880', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012893', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012901', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012902', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012906', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012910', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012920', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012932', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012936', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012943', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012956', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012957', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012960', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012964', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012975', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012981', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012983', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012987', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012994', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012995', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012996', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012997', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000013001', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000013038', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000013039', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000013040', sysdate, null); -- Inserting RoleToUserAssignment 'PPATELB/IHC CENTRAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('PPATELB', 'IHC CENTRAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PPATELB/IHC CENTRAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('PPATELB', 'IHC CENTRAL POSITION REPORT', 'R3_IHBACCOUNT', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PPATELB/IHCTF CENTRAL MANAGER' harmony.usermgt.create_role_to_user_assignment('PPATELB', 'IHCTF CENTRAL MANAGER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PPATELB/IHCTF CENTRAL MANAGER harmony.usermgt.create_dds_item_assignment('PPATELB', 'IHCTF CENTRAL MANAGER', 'R3_BUPA_IHCTRANSFERS', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PPATELB/MR CENTRAL REPORTER' harmony.usermgt.create_role_to_user_assignment('PPATELB', 'MR CENTRAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PPATELB/MR CENTRAL REPORTER harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REPORTER', 'R3_COCO', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PPATELB/MR CENTRAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('PPATELB', 'MR CENTRAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PPATELB/MR CENTRAL REQUESTOR harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2357', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2356', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2355', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2354', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2353', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2352', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2351', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2350', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2349', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2316', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2194', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2192', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2187', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2186', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2185', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2183', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2182', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2181', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2180', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2179', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2178', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2177', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2176', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2175', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2174', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2173', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2172', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2171', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2170', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2169', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2168', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2167', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2166', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2165', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2164', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2163', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2162', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2160', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2159', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2158', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2157', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2156', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2154', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2153', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2152', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2147', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2146', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2144', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2143', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2141', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2140', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2139', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2127', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2126', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2125', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2123', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2120', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2117', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2050', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2049', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2047', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2046', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2041', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2039', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2037', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2036', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2034', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2030', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2029', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2027', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '1000', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '1002', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2000', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2011', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2012', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2013', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2015', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2016', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2017', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2018', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2019', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2020', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2021', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2051', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2052', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2056', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2060', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2061', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2064', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2065', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2066', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2067', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2071', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2088', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2100', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2101', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2102', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2103', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2104', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2105', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2108', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2109', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2110', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2111', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2112', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2113', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2114', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2196', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2197', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2198', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2199', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2200', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2201', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2202', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2203', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2204', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2205', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2206', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2207', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2208', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2209', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2210', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2211', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2212', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2215', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2218', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2219', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2220', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2221', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2222', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2223', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2224', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2225', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2226', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2229', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2231', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2232', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2235', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2236', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2237', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2238', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2239', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2240', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2241', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2242', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2243', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2244', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2245', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2246', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2247', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2248', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2249', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2250', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2251', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2252', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2254', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2255', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2256', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2257', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2258', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2260', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2261', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2262', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2263', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2264', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2265', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2266', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2267', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2268', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2269', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2270', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2271', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2272', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2273', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2274', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2275', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2276', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2277', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2278', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2282', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2283', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2284', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2286', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2287', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2288', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2289', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2290', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2292', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2293', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2297', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2298', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2299', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2300', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2301', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2302', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2303', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2304', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2308', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2311', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2312', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2313', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2314', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2315', sysdate, null); -- Inserting RoleToUserAssignment 'PPATELB/OO CENTRAL AUTHORIZER' harmony.usermgt.create_role_to_user_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PPATELB/OO CENTRAL AUTHORIZER harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2357', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2356', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2355', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2354', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2353', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2352', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2351', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2350', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2349', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2194', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2192', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2187', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2186', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2185', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2183', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2182', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2181', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2180', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2179', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2178', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2177', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2175', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2174', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2173', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2172', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2171', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2170', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2169', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2168', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2167', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2166', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2165', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2164', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2163', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2162', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2160', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2159', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2158', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2157', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2156', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2154', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2153', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2152', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2147', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2146', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2144', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2143', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2141', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2140', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2139', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2127', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2126', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2125', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2123', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2120', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2117', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2114', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2047', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2046', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2041', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2039', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2037', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2036', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2034', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2030', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2029', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2027', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2021', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2020', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'OO_GROUPING', 'ONE', '2', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'OO_GROUPING', 'ONE', '4', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '1000', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '1002', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2000', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2011', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2012', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2013', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2015', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2016', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2017', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2018', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2019', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2049', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2050', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2051', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2052', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2056', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2060', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2061', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2064', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2065', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2066', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2067', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2071', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2088', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2100', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2101', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2102', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2103', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2104', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2105', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2109', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2110', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2111', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2112', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2113', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2196', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2197', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2198', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2199', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2200', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2201', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2202', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2203', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2204', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2205', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2206', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2207', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2208', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2209', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2210', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2211', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2212', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2215', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2218', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2219', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2220', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2221', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2222', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2223', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2224', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2225', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2226', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2229', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2231', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2232', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2235', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2236', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2238', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2239', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2240', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2241', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2242', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2243', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2244', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2245', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2246', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2247', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2248', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2249', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2250', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2251', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2252', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2254', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2255', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2256', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2257', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2258', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2260', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2261', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2262', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2263', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2264', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2265', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2266', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2267', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2268', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2269', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2270', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2271', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2272', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2273', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2274', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2275', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2276', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2277', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2278', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2282', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2283', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2284', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2286', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2287', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2288', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2289', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2290', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2292', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2293', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2297', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2298', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2299', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2300', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2301', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2302', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2303', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2304', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2308', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2311', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2312', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2313', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2314', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2315', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2316', sysdate, null); -- Inserting RoleToUserAssignment 'PPATELB/OO CENTRAL REPORTER' harmony.usermgt.create_role_to_user_assignment('PPATELB', 'OO CENTRAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PPATELB/OO CENTRAL REPORTER harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REPORTER', 'R3_COCO', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PPATELB/OO CENTRAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('PPATELB', 'OO CENTRAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PPATELB/OO CENTRAL REQUESTOR harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2357', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2356', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2355', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2354', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2353', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2352', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2351', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2350', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2349', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2194', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2192', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2187', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2186', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2185', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2183', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2182', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2181', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2180', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2179', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2178', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2177', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2175', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2174', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2173', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2172', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2171', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2170', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2169', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2168', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2167', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2166', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2165', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2164', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2163', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2162', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2160', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2159', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2158', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2157', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2156', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2154', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2153', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2152', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2147', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2146', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2144', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2143', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2141', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2140', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2139', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2127', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2126', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2125', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2123', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2120', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2117', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2114', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2047', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2046', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2041', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2039', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2037', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2036', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2034', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2030', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2029', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2027', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2021', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2020', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'OO_GROUPING', 'ONE', '2', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'OO_GROUPING', 'ONE', '4', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '1000', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '1002', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2000', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2011', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2012', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2013', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2015', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2016', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2017', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2018', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2019', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2049', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2050', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2051', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2052', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2056', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2060', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2061', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2064', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2065', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2066', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2067', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2071', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2088', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2100', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2101', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2102', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2103', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2104', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2105', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2109', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2110', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2111', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2112', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2113', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2196', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2197', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2198', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2199', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2200', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2201', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2202', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2203', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2204', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2205', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2206', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2207', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2208', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2209', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2210', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2211', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2212', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2215', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2218', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2219', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2220', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2221', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2222', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2223', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2224', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2225', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2226', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2229', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2231', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2232', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2235', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2236', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2238', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2239', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2240', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2241', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2242', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2243', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2244', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2245', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2246', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2247', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2248', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2249', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2250', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2251', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2252', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2254', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2255', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2256', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2257', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2258', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2260', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2261', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2262', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2263', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2264', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2265', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2266', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2267', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2268', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2269', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2270', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2271', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2272', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2273', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2274', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2275', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2276', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2277', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2278', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2282', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2283', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2284', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2286', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2287', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2288', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2289', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2290', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2292', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2293', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2297', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2298', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2299', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2300', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2301', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2302', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2303', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2304', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2308', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2311', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2312', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2313', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2314', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2315', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '2316', sysdate, null); -- Inserting RoleToUserAssignment 'PPATELB/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('PPATELB', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PPATELB/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('PPATELB', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PPATELB/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('PPATELB', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PPATELB/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('PPATELB', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PPLAS3/AMMF Central reporter' harmony.usermgt.create_role_to_user_assignment('PPLAS3', 'AMMF Central reporter', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PPLAS3/AMMF Central reporter harmony.usermgt.create_dds_item_assignment('PPLAS3', 'AMMF Central reporter', 'R3_BUPA_TRANSFERS', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PPLAS3/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('PPLAS3', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PPLAS3/HB CENTRAL REPORTER' harmony.usermgt.create_role_to_user_assignment('PPLAS3', 'HB CENTRAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PPLAS3/HB CENTRAL REPORTER harmony.usermgt.create_dds_item_assignment('PPLAS3', 'HB CENTRAL REPORTER', 'R3_COCO', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PPLAS3/HB COCO COMBI Reporter' harmony.usermgt.create_role_to_user_assignment('PPLAS3', 'HB COCO COMBI Reporter', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PPLAS3/ICL Central reporter' harmony.usermgt.create_role_to_user_assignment('PPLAS3', 'ICL Central reporter', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PPLAS3/ICL Central reporter harmony.usermgt.create_dds_item_assignment('PPLAS3', 'ICL Central reporter', 'R3_BUPA_ICL', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PPLAS3/IHC CENTRAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('PPLAS3', 'IHC CENTRAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PPLAS3/IHC CENTRAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('PPLAS3', 'IHC CENTRAL POSITION REPORT', 'R3_IHBACCOUNT', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PPLAS3/IHCTF REPORTER' harmony.usermgt.create_role_to_user_assignment('PPLAS3', 'IHCTF REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PPLAS3/IHCTF REPORTER harmony.usermgt.create_dds_item_assignment('PPLAS3', 'IHCTF REPORTER', 'R3_BUPA_IHCTRANSFERS', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PPLAS3/IT SUPPORT' harmony.usermgt.create_role_to_user_assignment('PPLAS3', 'IT SUPPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PPLAS3/IT SUPPORT harmony.usermgt.create_dds_item_assignment('PPLAS3', 'IT SUPPORT', 'R3_COCO_RCM', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PPLAS3/MR CENTRAL REPORTER' harmony.usermgt.create_role_to_user_assignment('PPLAS3', 'MR CENTRAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PPLAS3/MR CENTRAL REPORTER harmony.usermgt.create_dds_item_assignment('PPLAS3', 'MR CENTRAL REPORTER', 'R3_COCO', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PPLAS3/OO CENTRAL REPORTER' harmony.usermgt.create_role_to_user_assignment('PPLAS3', 'OO CENTRAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PPLAS3/OO CENTRAL REPORTER harmony.usermgt.create_dds_item_assignment('PPLAS3', 'OO CENTRAL REPORTER', 'R3_COCO', 'ALL', null, sysdate, null); harmony.usermgt.create_dds_item_assignment('PPLAS3', 'OO CENTRAL REPORTER', 'OO_GROUPING', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PPLAS3/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('PPLAS3', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PPLAS3/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('PPLAS3', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PPLAS3/UME READ ALL' harmony.usermgt.create_role_to_user_assignment('PPLAS3', 'UME READ ALL', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PPLUEANG/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('PPLUEANG', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PPLUEANG/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('PPLUEANG', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '6018', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPLUEANG', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '6015', sysdate, null); -- Inserting RoleToUserAssignment 'PREGENAS/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('PREGENAS', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PREGENAS/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('PREGENAS', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2303', sysdate, null); -- Inserting RoleToUserAssignment 'PROMAN1/AMMF LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('PROMAN1', 'AMMF LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PROMAN1/AMMF LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('PROMAN1', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012120', sysdate, null); -- Inserting RoleToUserAssignment 'PROMAN1/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('PROMAN1', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PROMAN1/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('PROMAN1', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PROMAN1/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('PROMAN1', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12120EUR', sysdate, null); -- Inserting RoleToUserAssignment 'PROMAN1/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('PROMAN1', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PROMAN1/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('PROMAN1', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2052', sysdate, null); -- Inserting RoleToUserAssignment 'PRUDOLF/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('PRUDOLF', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PRUDOLF/ICL LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('PRUDOLF', 'ICL LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PRUDOLF/ICL LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('PRUDOLF', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012997', sysdate, null); harmony.usermgt.create_dds_item_assignment('PRUDOLF', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012996', sysdate, null); harmony.usermgt.create_dds_item_assignment('PRUDOLF', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012987', sysdate, null); harmony.usermgt.create_dds_item_assignment('PRUDOLF', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012294', sysdate, null); -- Inserting RoleToUserAssignment 'PRUDOLF/ICL LOCAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('PRUDOLF', 'ICL LOCAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PRUDOLF/ICL LOCAL REQUESTOR harmony.usermgt.create_dds_item_assignment('PRUDOLF', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012994', sysdate, null); -- Inserting RoleToUserAssignment 'PRUDOLF/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('PRUDOLF', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PRUDOLF/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('PRUDOLF', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12987CHF', sysdate, null); -- Inserting RoleToUserAssignment 'PRUDOLF/IHCTF REPORTER' harmony.usermgt.create_role_to_user_assignment('PRUDOLF', 'IHCTF REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PRUDOLF/IHCTF REPORTER harmony.usermgt.create_dds_item_assignment('PRUDOLF', 'IHCTF REPORTER', 'R3_BUPA_IHCTRANSFERS', 'ONE', '0000012997', sysdate, null); harmony.usermgt.create_dds_item_assignment('PRUDOLF', 'IHCTF REPORTER', 'R3_BUPA_IHCTRANSFERS', 'ONE', '0000012996', sysdate, null); harmony.usermgt.create_dds_item_assignment('PRUDOLF', 'IHCTF REPORTER', 'R3_BUPA_IHCTRANSFERS', 'ONE', '0000012994', sysdate, null); harmony.usermgt.create_dds_item_assignment('PRUDOLF', 'IHCTF REPORTER', 'R3_BUPA_IHCTRANSFERS', 'ONE', '0000012987', sysdate, null); harmony.usermgt.create_dds_item_assignment('PRUDOLF', 'IHCTF REPORTER', 'R3_BUPA_IHCTRANSFERS', 'ONE', '0000012294', sysdate, null); -- Inserting RoleToUserAssignment 'PSA2/AMMF LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('PSA2', 'AMMF LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PSA2/AMMF LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('PSA2', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012298', sysdate, null); harmony.usermgt.create_dds_item_assignment('PSA2', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012120', sysdate, null); -- Inserting RoleToUserAssignment 'PSA2/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('PSA2', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PSA2/ICL LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('PSA2', 'ICL LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PSA2/ICL LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('PSA2', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012298', sysdate, null); harmony.usermgt.create_dds_item_assignment('PSA2', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012120', sysdate, null); -- Inserting RoleToUserAssignment 'PSA2/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('PSA2', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PSA2/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('PSA2', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12298EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('PSA2', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12120EUR', sysdate, null); -- Inserting RoleToUserAssignment 'PSA2/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('PSA2', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PSA2/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('PSA2', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2088', sysdate, null); harmony.usermgt.create_dds_item_assignment('PSA2', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2052', sysdate, null); -- Inserting RoleToUserAssignment 'PSA2/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('PSA2', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PSA2/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('PSA2', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2088', sysdate, null); harmony.usermgt.create_dds_item_assignment('PSA2', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2052', sysdate, null); -- Inserting RoleToUserAssignment 'PSANDOV2/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('PSANDOV2', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PSANDOV2/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('PSANDOV2', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PSANDOV2/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('PSANDOV2', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12261EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('PSANDOV2', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12108EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('PSANDOV2', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12005EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('PSANDOV2', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12004EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('PSANDOV2', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12003EUR', sysdate, null); -- Inserting RoleToUserAssignment 'PSANDOV2/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('PSANDOV2', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PSANDOV2/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('PSANDOV2', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2239', sysdate, null); harmony.usermgt.create_dds_item_assignment('PSANDOV2', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2110', sysdate, null); harmony.usermgt.create_dds_item_assignment('PSANDOV2', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2013', sysdate, null); -- Inserting RoleToUserAssignment 'PSANDOV2/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('PSANDOV2', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PSANDOV2/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('PSANDOV2', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2239', sysdate, null); harmony.usermgt.create_dds_item_assignment('PSANDOV2', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2110', sysdate, null); harmony.usermgt.create_dds_item_assignment('PSANDOV2', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2013', sysdate, null); -- Inserting RoleToUserAssignment 'PSCHIPP1/AMMF Central reporter' harmony.usermgt.create_role_to_user_assignment('PSCHIPP1', 'AMMF Central reporter', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PSCHIPP1/AMMF Central reporter harmony.usermgt.create_dds_item_assignment('PSCHIPP1', 'AMMF Central reporter', 'R3_BUPA_TRANSFERS', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PSCHIPP1/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('PSCHIPP1', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PSCHIPP1/HB CENTRAL REPORTER' harmony.usermgt.create_role_to_user_assignment('PSCHIPP1', 'HB CENTRAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PSCHIPP1/HB CENTRAL REPORTER harmony.usermgt.create_dds_item_assignment('PSCHIPP1', 'HB CENTRAL REPORTER', 'R3_COCO', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PSCHIPP1/HB COCO COMBI Reporter' harmony.usermgt.create_role_to_user_assignment('PSCHIPP1', 'HB COCO COMBI Reporter', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PSCHIPP1/ICL Central reporter' harmony.usermgt.create_role_to_user_assignment('PSCHIPP1', 'ICL Central reporter', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PSCHIPP1/ICL Central reporter harmony.usermgt.create_dds_item_assignment('PSCHIPP1', 'ICL Central reporter', 'R3_BUPA_ICL', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PSCHIPP1/IHC CENTRAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('PSCHIPP1', 'IHC CENTRAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PSCHIPP1/IHC CENTRAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('PSCHIPP1', 'IHC CENTRAL POSITION REPORT', 'R3_IHBACCOUNT', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PSCHIPP1/IHCTF REPORTER' harmony.usermgt.create_role_to_user_assignment('PSCHIPP1', 'IHCTF REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PSCHIPP1/IHCTF REPORTER harmony.usermgt.create_dds_item_assignment('PSCHIPP1', 'IHCTF REPORTER', 'R3_BUPA_IHCTRANSFERS', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PSCHIPP1/IT SUPPORT' harmony.usermgt.create_role_to_user_assignment('PSCHIPP1', 'IT SUPPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PSCHIPP1/IT SUPPORT harmony.usermgt.create_dds_item_assignment('PSCHIPP1', 'IT SUPPORT', 'R3_COCO_RCM', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PSCHIPP1/MR CENTRAL REPORTER' harmony.usermgt.create_role_to_user_assignment('PSCHIPP1', 'MR CENTRAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PSCHIPP1/MR CENTRAL REPORTER harmony.usermgt.create_dds_item_assignment('PSCHIPP1', 'MR CENTRAL REPORTER', 'R3_COCO', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PSCHIPP1/OO CENTRAL REPORTER' harmony.usermgt.create_role_to_user_assignment('PSCHIPP1', 'OO CENTRAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PSCHIPP1/OO CENTRAL REPORTER harmony.usermgt.create_dds_item_assignment('PSCHIPP1', 'OO CENTRAL REPORTER', 'R3_COCO', 'ALL', null, sysdate, null); harmony.usermgt.create_dds_item_assignment('PSCHIPP1', 'OO CENTRAL REPORTER', 'OO_GROUPING', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PSCHIPP1/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('PSCHIPP1', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PSCHIPP1/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('PSCHIPP1', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PSCHIPP1/UME READ ALL' harmony.usermgt.create_role_to_user_assignment('PSCHIPP1', 'UME READ ALL', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PSEETO/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('PSEETO', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PSEETO/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('PSEETO', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '6063', sysdate, null); -- Inserting RoleToUserAssignment 'PSTEINE2/AMMF LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('PSTEINE2', 'AMMF LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PSTEINE2/AMMF LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('PSTEINE2', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012709', sysdate, null); harmony.usermgt.create_dds_item_assignment('PSTEINE2', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012525', sysdate, null); harmony.usermgt.create_dds_item_assignment('PSTEINE2', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012524', sysdate, null); harmony.usermgt.create_dds_item_assignment('PSTEINE2', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012523', sysdate, null); harmony.usermgt.create_dds_item_assignment('PSTEINE2', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012104', sysdate, null); harmony.usermgt.create_dds_item_assignment('PSTEINE2', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012090', sysdate, null); -- Inserting RoleToUserAssignment 'PSTEINE2/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('PSTEINE2', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PSTEINE2/ICL LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('PSTEINE2', 'ICL LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PSTEINE2/ICL LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('PSTEINE2', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012709', sysdate, null); harmony.usermgt.create_dds_item_assignment('PSTEINE2', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012525', sysdate, null); harmony.usermgt.create_dds_item_assignment('PSTEINE2', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012524', sysdate, null); harmony.usermgt.create_dds_item_assignment('PSTEINE2', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012523', sysdate, null); harmony.usermgt.create_dds_item_assignment('PSTEINE2', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012104', sysdate, null); harmony.usermgt.create_dds_item_assignment('PSTEINE2', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012090', sysdate, null); -- Inserting RoleToUserAssignment 'PSTEINE2/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('PSTEINE2', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PSTEINE2/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('PSTEINE2', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12709EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('PSTEINE2', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12104EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('PSTEINE2', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12090USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('PSTEINE2', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12090GBP', sysdate, null); harmony.usermgt.create_dds_item_assignment('PSTEINE2', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12090EUR', sysdate, null); -- Inserting RoleToUserAssignment 'PSTEINE2/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('PSTEINE2', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PSTEINE2/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('PSTEINE2', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2211', sysdate, null); -- Inserting RoleToUserAssignment 'PSUVANAU/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('PSUVANAU', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PSUVANAU/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('PSUVANAU', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '6039', sysdate, null); -- Inserting RoleToUserAssignment 'PTABI/AMMF LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('PTABI', 'AMMF LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PTABI/AMMF LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('PTABI', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012195', sysdate, null); -- Inserting RoleToUserAssignment 'PTABI/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('PTABI', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PTABI/ICL LOCAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('PTABI', 'ICL LOCAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PTABI/ICL LOCAL REQUESTOR harmony.usermgt.create_dds_item_assignment('PTABI', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012195', sysdate, null); -- Inserting RoleToUserAssignment 'PTABI/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('PTABI', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PTABI/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('PTABI', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2030', sysdate, null); -- Inserting RoleToUserAssignment 'PTABI/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('PTABI', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PTABI/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('PTABI', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2030', sysdate, null); -- Inserting RoleToUserAssignment 'PTESTA/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('PTESTA', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PVANDERK/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('PVANDERK', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PVANDERK/BATCH BANK COMMUNICATION' harmony.usermgt.create_role_to_user_assignment('PVANDERK', 'BATCH BANK COMMUNICATION', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PVANDERK/IHC CENTRAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('PVANDERK', 'IHC CENTRAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PVANDERK/IHC CENTRAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('PVANDERK', 'IHC CENTRAL POSITION REPORT', 'R3_IHBACCOUNT', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PVANDERK/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('PVANDERK', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PVANDERK/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('PVANDERK', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PVANDERK/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('PVANDERK', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PVANDERK/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('PVANDERK', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PVILASEC/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('PVILASEC', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PVILASEC/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('PVILASEC', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PVILASEC/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('PVILASEC', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12072EUR', sysdate, null); -- Inserting RoleToUserAssignment 'PVISSER1/AMMF LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('PVISSER1', 'AMMF LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PVISSER1/AMMF LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('PVISSER1', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012711', sysdate, null); -- Inserting RoleToUserAssignment 'PVISSER1/AMMF LOCAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('PVISSER1', 'AMMF LOCAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PVISSER1/AMMF LOCAL REQUESTOR harmony.usermgt.create_dds_item_assignment('PVISSER1', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012706', sysdate, null); -- Inserting RoleToUserAssignment 'PVISSER1/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('PVISSER1', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PVISSER1/BF LOCAL AUTHORIZER' harmony.usermgt.create_role_to_user_assignment('PVISSER1', 'BF LOCAL AUTHORIZER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PVISSER1/BF LOCAL AUTHORIZER harmony.usermgt.create_dds_item_assignment('PVISSER1', 'BF LOCAL AUTHORIZER', 'OO_GROUPING', 'ONE', '196', sysdate, null); -- Inserting RoleToUserAssignment 'PVISSER1/ICL LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('PVISSER1', 'ICL LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PVISSER1/ICL LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('PVISSER1', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012711', sysdate, null); -- Inserting RoleToUserAssignment 'PVISSER1/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('PVISSER1', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PVISSER1/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('PVISSER1', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12711USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('PVISSER1', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12711EUR', sysdate, null); -- Inserting RoleToUserAssignment 'PVISSER1/OO LOCAL COCO AUTHORIZER/RELEASER' harmony.usermgt.create_role_to_user_assignment('PVISSER1', 'OO LOCAL COCO AUTHORIZER/RELEASER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PVISSER1/OO LOCAL COCO AUTHORIZER/RELEASER harmony.usermgt.create_dds_item_assignment('PVISSER1', 'OO LOCAL COCO AUTHORIZER/RELEASER', 'R3_COCO', 'ONE', '2244', sysdate, null); -- Inserting RoleToUserAssignment 'PVISSER1/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('PVISSER1', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PVISSER1/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('PVISSER1', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2244', sysdate, null); -- Inserting RoleToUserAssignment 'PVISSER1/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('PVISSER1', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PVISSER1/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('PVISSER1', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2244', sysdate, null); -- Inserting RoleToUserAssignment 'PWULFIN/AMMF Central reporter' harmony.usermgt.create_role_to_user_assignment('PWULFIN', 'AMMF Central reporter', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PWULFIN/AMMF Central reporter harmony.usermgt.create_dds_item_assignment('PWULFIN', 'AMMF Central reporter', 'R3_BUPA_TRANSFERS', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PWULFIN/APPLOG VIEW' harmony.usermgt.create_role_to_user_assignment('PWULFIN', 'APPLOG VIEW', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PWULFIN/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('PWULFIN', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PWULFIN/BATCH PAYMENT PROCESSING' harmony.usermgt.create_role_to_user_assignment('PWULFIN', 'BATCH PAYMENT PROCESSING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PWULFIN/BF CENTRAL AUTHORIZER' harmony.usermgt.create_role_to_user_assignment('PWULFIN', 'BF CENTRAL AUTHORIZER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PWULFIN/BF CENTRAL AUTHORIZER harmony.usermgt.create_dds_item_assignment('PWULFIN', 'BF CENTRAL AUTHORIZER', 'OO_GROUPING', 'ONE', '7', sysdate, null); harmony.usermgt.create_dds_item_assignment('PWULFIN', 'BF CENTRAL AUTHORIZER', 'OO_GROUPING', 'ONE', '63', sysdate, null); harmony.usermgt.create_dds_item_assignment('PWULFIN', 'BF CENTRAL AUTHORIZER', 'OO_GROUPING', 'ONE', '6', sysdate, null); harmony.usermgt.create_dds_item_assignment('PWULFIN', 'BF CENTRAL AUTHORIZER', 'OO_GROUPING', 'ONE', '186', sysdate, null); harmony.usermgt.create_dds_item_assignment('PWULFIN', 'BF CENTRAL AUTHORIZER', 'OO_GROUPING', 'ONE', '1', sysdate, null); -- Inserting RoleToUserAssignment 'PWULFIN/BF CENTRAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('PWULFIN', 'BF CENTRAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PWULFIN/BF CENTRAL REQUESTOR harmony.usermgt.create_dds_item_assignment('PWULFIN', 'BF CENTRAL REQUESTOR', 'OO_GROUPING', 'ONE', '7', sysdate, null); harmony.usermgt.create_dds_item_assignment('PWULFIN', 'BF CENTRAL REQUESTOR', 'OO_GROUPING', 'ONE', '6', sysdate, null); -- Inserting RoleToUserAssignment 'PWULFIN/HB CENTRAL RELEASER' harmony.usermgt.create_role_to_user_assignment('PWULFIN', 'HB CENTRAL RELEASER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PWULFIN/HB CENTRAL RELEASER harmony.usermgt.create_dds_item_assignment('PWULFIN', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '4002', sysdate, null); harmony.usermgt.create_dds_item_assignment('PWULFIN', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '3022', sysdate, null); harmony.usermgt.create_dds_item_assignment('PWULFIN', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '3021', sysdate, null); harmony.usermgt.create_dds_item_assignment('PWULFIN', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '3015', sysdate, null); harmony.usermgt.create_dds_item_assignment('PWULFIN', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '3014', sysdate, null); harmony.usermgt.create_dds_item_assignment('PWULFIN', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '3010', sysdate, null); harmony.usermgt.create_dds_item_assignment('PWULFIN', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '3009', sysdate, null); harmony.usermgt.create_dds_item_assignment('PWULFIN', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '3004', sysdate, null); harmony.usermgt.create_dds_item_assignment('PWULFIN', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '1001', sysdate, null); harmony.usermgt.create_dds_item_assignment('PWULFIN', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '1004', sysdate, null); harmony.usermgt.create_dds_item_assignment('PWULFIN', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '1005', sysdate, null); harmony.usermgt.create_dds_item_assignment('PWULFIN', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '1007', sysdate, null); harmony.usermgt.create_dds_item_assignment('PWULFIN', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '1009', sysdate, null); harmony.usermgt.create_dds_item_assignment('PWULFIN', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2076', sysdate, null); harmony.usermgt.create_dds_item_assignment('PWULFIN', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2109', sysdate, null); harmony.usermgt.create_dds_item_assignment('PWULFIN', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2193', sysdate, null); harmony.usermgt.create_dds_item_assignment('PWULFIN', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '2213', sysdate, null); harmony.usermgt.create_dds_item_assignment('PWULFIN', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '3000', sysdate, null); harmony.usermgt.create_dds_item_assignment('PWULFIN', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '3001', sysdate, null); harmony.usermgt.create_dds_item_assignment('PWULFIN', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '3002', sysdate, null); harmony.usermgt.create_dds_item_assignment('PWULFIN', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '3003', sysdate, null); -- Inserting RoleToUserAssignment 'PWULFIN/HB CENTRAL REPORTER' harmony.usermgt.create_role_to_user_assignment('PWULFIN', 'HB CENTRAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PWULFIN/HB CENTRAL REPORTER harmony.usermgt.create_dds_item_assignment('PWULFIN', 'HB CENTRAL REPORTER', 'R3_COCO', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PWULFIN/ICL Central reporter' harmony.usermgt.create_role_to_user_assignment('PWULFIN', 'ICL Central reporter', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PWULFIN/ICL Central reporter harmony.usermgt.create_dds_item_assignment('PWULFIN', 'ICL Central reporter', 'R3_BUPA_ICL', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PWULFIN/MR CENTRAL REPORTER' harmony.usermgt.create_role_to_user_assignment('PWULFIN', 'MR CENTRAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PWULFIN/MR CENTRAL REPORTER harmony.usermgt.create_dds_item_assignment('PWULFIN', 'MR CENTRAL REPORTER', 'R3_COCO', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PWULFIN/OO CENTRAL AUTHORIZER' harmony.usermgt.create_role_to_user_assignment('PWULFIN', 'OO CENTRAL AUTHORIZER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PWULFIN/OO CENTRAL AUTHORIZER harmony.usermgt.create_dds_item_assignment('PWULFIN', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '4002', sysdate, null); harmony.usermgt.create_dds_item_assignment('PWULFIN', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '3022', sysdate, null); harmony.usermgt.create_dds_item_assignment('PWULFIN', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '3021', sysdate, null); harmony.usermgt.create_dds_item_assignment('PWULFIN', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '3015', sysdate, null); harmony.usermgt.create_dds_item_assignment('PWULFIN', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '3014', sysdate, null); harmony.usermgt.create_dds_item_assignment('PWULFIN', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2213', sysdate, null); harmony.usermgt.create_dds_item_assignment('PWULFIN', 'OO CENTRAL AUTHORIZER', 'OO_GROUPING', 'ONE', '1', sysdate, null); harmony.usermgt.create_dds_item_assignment('PWULFIN', 'OO CENTRAL AUTHORIZER', 'OO_GROUPING', 'ONE', '132', sysdate, null); harmony.usermgt.create_dds_item_assignment('PWULFIN', 'OO CENTRAL AUTHORIZER', 'OO_GROUPING', 'ONE', '186', sysdate, null); harmony.usermgt.create_dds_item_assignment('PWULFIN', 'OO CENTRAL AUTHORIZER', 'OO_GROUPING', 'ONE', '6', sysdate, null); harmony.usermgt.create_dds_item_assignment('PWULFIN', 'OO CENTRAL AUTHORIZER', 'OO_GROUPING', 'ONE', '63', sysdate, null); harmony.usermgt.create_dds_item_assignment('PWULFIN', 'OO CENTRAL AUTHORIZER', 'OO_GROUPING', 'ONE', '7', sysdate, null); harmony.usermgt.create_dds_item_assignment('PWULFIN', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '1004', sysdate, null); harmony.usermgt.create_dds_item_assignment('PWULFIN', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '1005', sysdate, null); harmony.usermgt.create_dds_item_assignment('PWULFIN', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '1007', sysdate, null); harmony.usermgt.create_dds_item_assignment('PWULFIN', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '1009', sysdate, null); harmony.usermgt.create_dds_item_assignment('PWULFIN', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2076', sysdate, null); harmony.usermgt.create_dds_item_assignment('PWULFIN', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2109', sysdate, null); harmony.usermgt.create_dds_item_assignment('PWULFIN', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '2193', sysdate, null); -- Inserting RoleToUserAssignment 'PWULFIN/OO CENTRAL RELEASER' harmony.usermgt.create_role_to_user_assignment('PWULFIN', 'OO CENTRAL RELEASER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PWULFIN/OO CENTRAL RELEASER harmony.usermgt.create_dds_item_assignment('PWULFIN', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '4002', sysdate, null); harmony.usermgt.create_dds_item_assignment('PWULFIN', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '3022', sysdate, null); harmony.usermgt.create_dds_item_assignment('PWULFIN', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2109', sysdate, null); harmony.usermgt.create_dds_item_assignment('PWULFIN', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2076', sysdate, null); harmony.usermgt.create_dds_item_assignment('PWULFIN', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '1009', sysdate, null); harmony.usermgt.create_dds_item_assignment('PWULFIN', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '1007', sysdate, null); harmony.usermgt.create_dds_item_assignment('PWULFIN', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '1005', sysdate, null); harmony.usermgt.create_dds_item_assignment('PWULFIN', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '1004', sysdate, null); harmony.usermgt.create_dds_item_assignment('PWULFIN', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '1001', sysdate, null); harmony.usermgt.create_dds_item_assignment('PWULFIN', 'OO CENTRAL RELEASER', 'OO_GROUPING', 'ONE', '7', sysdate, null); harmony.usermgt.create_dds_item_assignment('PWULFIN', 'OO CENTRAL RELEASER', 'OO_GROUPING', 'ONE', '63', sysdate, null); harmony.usermgt.create_dds_item_assignment('PWULFIN', 'OO CENTRAL RELEASER', 'OO_GROUPING', 'ONE', '6', sysdate, null); harmony.usermgt.create_dds_item_assignment('PWULFIN', 'OO CENTRAL RELEASER', 'OO_GROUPING', 'ONE', '186', sysdate, null); harmony.usermgt.create_dds_item_assignment('PWULFIN', 'OO CENTRAL RELEASER', 'OO_GROUPING', 'ONE', '132', sysdate, null); harmony.usermgt.create_dds_item_assignment('PWULFIN', 'OO CENTRAL RELEASER', 'OO_GROUPING', 'ONE', '1', sysdate, null); harmony.usermgt.create_dds_item_assignment('PWULFIN', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2193', sysdate, null); harmony.usermgt.create_dds_item_assignment('PWULFIN', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '2213', sysdate, null); harmony.usermgt.create_dds_item_assignment('PWULFIN', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '3000', sysdate, null); harmony.usermgt.create_dds_item_assignment('PWULFIN', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '3001', sysdate, null); harmony.usermgt.create_dds_item_assignment('PWULFIN', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '3002', sysdate, null); harmony.usermgt.create_dds_item_assignment('PWULFIN', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '3003', sysdate, null); harmony.usermgt.create_dds_item_assignment('PWULFIN', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '3004', sysdate, null); harmony.usermgt.create_dds_item_assignment('PWULFIN', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '3009', sysdate, null); harmony.usermgt.create_dds_item_assignment('PWULFIN', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '3010', sysdate, null); harmony.usermgt.create_dds_item_assignment('PWULFIN', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '3014', sysdate, null); harmony.usermgt.create_dds_item_assignment('PWULFIN', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '3015', sysdate, null); harmony.usermgt.create_dds_item_assignment('PWULFIN', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '3021', sysdate, null); -- Inserting RoleToUserAssignment 'PWULFIN/OO CENTRAL REPORTER' harmony.usermgt.create_role_to_user_assignment('PWULFIN', 'OO CENTRAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PWULFIN/OO CENTRAL REPORTER harmony.usermgt.create_dds_item_assignment('PWULFIN', 'OO CENTRAL REPORTER', 'R3_COCO', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PWULFIN/TOPS2' harmony.usermgt.create_role_to_user_assignment('PWULFIN', 'TOPS2', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'RALLRED/AMMF LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('RALLRED', 'AMMF LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RALLRED/AMMF LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('RALLRED', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012770', sysdate, null); -- Inserting RoleToUserAssignment 'RALLRED/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('RALLRED', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'RALLRED/ICL LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('RALLRED', 'ICL LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RALLRED/ICL LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('RALLRED', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012770', sysdate, null); -- Inserting RoleToUserAssignment 'RALLRED/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('RALLRED', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RALLRED/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('RALLRED', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12770USD', sysdate, null); -- Inserting RoleToUserAssignment 'RBARIGE/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('RBARIGE', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RBARIGE/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('RBARIGE', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12565USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('RBARIGE', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12520USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('RBARIGE', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12510USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('RBARIGE', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12503USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('RBARIGE', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12250USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('RBARIGE', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12247USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('RBARIGE', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12246USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('RBARIGE', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12245USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('RBARIGE', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12237USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('RBARIGE', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12236USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('RBARIGE', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12230USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('RBARIGE', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12146USD', sysdate, null); -- Inserting RoleToUserAssignment 'RBASUBAS/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('RBASUBAS', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RBASUBAS/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('RBASUBAS', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '6050', sysdate, null); -- Inserting RoleToUserAssignment 'RBASUBAS/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('RBASUBAS', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RBASUBAS/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('RBASUBAS', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '6050', sysdate, null); -- Inserting RoleToUserAssignment 'RCASSELL/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('RCASSELL', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'RCHANAMR/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('RCHANAMR', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RCHANAMR/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('RCHANAMR', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '6025', sysdate, null); -- Inserting RoleToUserAssignment 'RCHAO/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('RCHAO', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RCHAO/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('RCHAO', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '6085', sysdate, null); -- Inserting RoleToUserAssignment 'RCHIRON/BF LOCAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('RCHIRON', 'BF LOCAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RCHIRON/BF LOCAL REQUESTOR harmony.usermgt.create_dds_item_assignment('RCHIRON', 'BF LOCAL REQUESTOR', 'OO_GROUPING', 'ONE', '20', sysdate, null); harmony.usermgt.create_dds_item_assignment('RCHIRON', 'BF LOCAL REQUESTOR', 'OO_GROUPING', 'ONE', '16', sysdate, null); harmony.usermgt.create_dds_item_assignment('RCHIRON', 'BF LOCAL REQUESTOR', 'OO_GROUPING', 'ONE', '15', sysdate, null); harmony.usermgt.create_dds_item_assignment('RCHIRON', 'BF LOCAL REQUESTOR', 'OO_GROUPING', 'ONE', '134', sysdate, null); -- Inserting RoleToUserAssignment 'RCHIRON/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('RCHIRON', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RCHIRON/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('RCHIRON', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12831EUR', sysdate, null); -- Inserting RoleToUserAssignment 'RCHIRON/OO LOCAL COCO REQUESTOR' harmony.usermgt.create_role_to_user_assignment('RCHIRON', 'OO LOCAL COCO REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RCHIRON/OO LOCAL COCO REQUESTOR harmony.usermgt.create_dds_item_assignment('RCHIRON', 'OO LOCAL COCO REQUESTOR', 'R3_COCO', 'ONE', '2229', sysdate, null); harmony.usermgt.create_dds_item_assignment('RCHIRON', 'OO LOCAL COCO REQUESTOR', 'R3_COCO', 'ONE', '2123', sysdate, null); harmony.usermgt.create_dds_item_assignment('RCHIRON', 'OO LOCAL COCO REQUESTOR', 'R3_COCO', 'ONE', '2117', sysdate, null); -- Inserting RoleToUserAssignment 'RCHIRON/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('RCHIRON', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RCHIRON/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('RCHIRON', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2229', sysdate, null); harmony.usermgt.create_dds_item_assignment('RCHIRON', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2123', sysdate, null); harmony.usermgt.create_dds_item_assignment('RCHIRON', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2117', sysdate, null); -- Inserting RoleToUserAssignment 'RCHIRON/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('RCHIRON', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RCHIRON/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('RCHIRON', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2229', sysdate, null); harmony.usermgt.create_dds_item_assignment('RCHIRON', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2123', sysdate, null); harmony.usermgt.create_dds_item_assignment('RCHIRON', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2117', sysdate, null); -- Inserting RoleToUserAssignment 'RCOLE/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('RCOLE', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'RCOLE/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('RCOLE', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RCOLE/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('RCOLE', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12519USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('RCOLE', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12162USD', sysdate, null); -- Inserting RoleToUserAssignment 'RDIZON1/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('RDIZON1', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'RDIZON1/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('RDIZON1', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RDIZON1/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('RDIZON1', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12820NZD', sysdate, null); harmony.usermgt.create_dds_item_assignment('RDIZON1', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12530AUD', sysdate, null); harmony.usermgt.create_dds_item_assignment('RDIZON1', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12455AUD', sysdate, null); harmony.usermgt.create_dds_item_assignment('RDIZON1', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12454AUD', sysdate, null); harmony.usermgt.create_dds_item_assignment('RDIZON1', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12453NZD', sysdate, null); harmony.usermgt.create_dds_item_assignment('RDIZON1', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12451NZD', sysdate, null); harmony.usermgt.create_dds_item_assignment('RDIZON1', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12406AUD', sysdate, null); harmony.usermgt.create_dds_item_assignment('RDIZON1', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12386NZD', sysdate, null); harmony.usermgt.create_dds_item_assignment('RDIZON1', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12376AUD', sysdate, null); harmony.usermgt.create_dds_item_assignment('RDIZON1', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12267AUD', sysdate, null); -- Inserting RoleToUserAssignment 'RDIZON1/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('RDIZON1', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RDIZON1/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('RDIZON1', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '6073', sysdate, null); harmony.usermgt.create_dds_item_assignment('RDIZON1', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '6072', sysdate, null); harmony.usermgt.create_dds_item_assignment('RDIZON1', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '6009', sysdate, null); harmony.usermgt.create_dds_item_assignment('RDIZON1', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '6017', sysdate, null); harmony.usermgt.create_dds_item_assignment('RDIZON1', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '6028', sysdate, null); harmony.usermgt.create_dds_item_assignment('RDIZON1', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '6029', sysdate, null); harmony.usermgt.create_dds_item_assignment('RDIZON1', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '6050', sysdate, null); harmony.usermgt.create_dds_item_assignment('RDIZON1', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '6051', sysdate, null); harmony.usermgt.create_dds_item_assignment('RDIZON1', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '6055', sysdate, null); harmony.usermgt.create_dds_item_assignment('RDIZON1', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '6066', sysdate, null); harmony.usermgt.create_dds_item_assignment('RDIZON1', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '6067', sysdate, null); harmony.usermgt.create_dds_item_assignment('RDIZON1', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '6068', sysdate, null); harmony.usermgt.create_dds_item_assignment('RDIZON1', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '6069', sysdate, null); harmony.usermgt.create_dds_item_assignment('RDIZON1', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '6070', sysdate, null); harmony.usermgt.create_dds_item_assignment('RDIZON1', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '6071', sysdate, null); -- Inserting RoleToUserAssignment 'RFERFUEL/AMMF LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('RFERFUEL', 'AMMF LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RFERFUEL/AMMF LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012877', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012862', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012831', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012807', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012806', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012592', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012500', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012320', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012117', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012102', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012069', sysdate, null); -- Inserting RoleToUserAssignment 'RFERFUEL/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('RFERFUEL', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'RFERFUEL/BF LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('RFERFUEL', 'BF LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RFERFUEL/BF LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'BF LOCAL REPORTER', 'OO_GROUPING', 'ONE', '47', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'BF LOCAL REPORTER', 'OO_GROUPING', 'ONE', '244', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'BF LOCAL REPORTER', 'OO_GROUPING', 'ONE', '242', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'BF LOCAL REPORTER', 'OO_GROUPING', 'ONE', '238', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'BF LOCAL REPORTER', 'OO_GROUPING', 'ONE', '20', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'BF LOCAL REPORTER', 'OO_GROUPING', 'ONE', '188', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'BF LOCAL REPORTER', 'OO_GROUPING', 'ONE', '187', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'BF LOCAL REPORTER', 'OO_GROUPING', 'ONE', '16', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'BF LOCAL REPORTER', 'OO_GROUPING', 'ONE', '157', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'BF LOCAL REPORTER', 'OO_GROUPING', 'ONE', '151', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'BF LOCAL REPORTER', 'OO_GROUPING', 'ONE', '134', sysdate, null); -- Inserting RoleToUserAssignment 'RFERFUEL/ICL LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('RFERFUEL', 'ICL LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RFERFUEL/ICL LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012102', sysdate, null); -- Inserting RoleToUserAssignment 'RFERFUEL/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('RFERFUEL', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RFERFUEL/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12877EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12862EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12831EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12807USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12806GBP', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12009EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12069EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12102EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12117EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12127SEK', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12320EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12320GBP', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12500CHF', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12500EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12500GBP', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12500SEK', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12500USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12592EUR', sysdate, null); -- Inserting RoleToUserAssignment 'RFERFUEL/OO LOCAL COCO REPORTER' harmony.usermgt.create_role_to_user_assignment('RFERFUEL', 'OO LOCAL COCO REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RFERFUEL/OO LOCAL COCO REPORTER harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'OO LOCAL COCO REPORTER', 'R3_COCO', 'ONE', '2263', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'OO LOCAL COCO REPORTER', 'R3_COCO', 'ONE', '2260', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'OO LOCAL COCO REPORTER', 'R3_COCO', 'ONE', '2246', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'OO LOCAL COCO REPORTER', 'R3_COCO', 'ONE', '2245', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'OO LOCAL COCO REPORTER', 'R3_COCO', 'ONE', '2229', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'OO LOCAL COCO REPORTER', 'R3_COCO', 'ONE', '2163', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'OO LOCAL COCO REPORTER', 'R3_COCO', 'ONE', '2123', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'OO LOCAL COCO REPORTER', 'R3_COCO', 'ONE', '2117', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'OO LOCAL COCO REPORTER', 'R3_COCO', 'ONE', '2100', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'OO LOCAL COCO REPORTER', 'R3_COCO', 'ONE', '2051', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'OO LOCAL COCO REPORTER', 'R3_COCO', 'ONE', '2047', sysdate, null); -- Inserting RoleToUserAssignment 'RFERFUEL/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('RFERFUEL', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RFERFUEL/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2260', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2246', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2245', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2229', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2163', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2123', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2117', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2100', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2051', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2047', sysdate, null); -- Inserting RoleToUserAssignment 'RFERFUEL/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('RFERFUEL', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RFERFUEL/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2263', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2260', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2246', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2245', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2229', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2163', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2123', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2117', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2100', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2051', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2047', sysdate, null); -- Inserting RoleToUserAssignment 'RFLYNN1/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('RFLYNN1', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'RGIL1/AMMF LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('RGIL1', 'AMMF LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RGIL1/AMMF LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('RGIL1', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012709', sysdate, null); harmony.usermgt.create_dds_item_assignment('RGIL1', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012073', sysdate, null); -- Inserting RoleToUserAssignment 'RGIL1/ICL LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('RGIL1', 'ICL LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RGIL1/ICL LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('RGIL1', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012709', sysdate, null); harmony.usermgt.create_dds_item_assignment('RGIL1', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012073', sysdate, null); -- Inserting RoleToUserAssignment 'RGIL1/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('RGIL1', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RGIL1/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('RGIL1', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12709EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('RGIL1', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12073EUR', sysdate, null); -- Inserting RoleToUserAssignment 'RGIL1/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('RGIL1', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RGIL1/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('RGIL1', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2232', sysdate, null); harmony.usermgt.create_dds_item_assignment('RGIL1', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2211', sysdate, null); harmony.usermgt.create_dds_item_assignment('RGIL1', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2146', sysdate, null); -- Inserting RoleToUserAssignment 'RHERBOZO/AMMF LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('RHERBOZO', 'AMMF LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RHERBOZO/AMMF LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('RHERBOZO', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012842', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHERBOZO', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012104', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHERBOZO', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012073', sysdate, null); -- Inserting RoleToUserAssignment 'RHERBOZO/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('RHERBOZO', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'RHERBOZO/ICL LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('RHERBOZO', 'ICL LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RHERBOZO/ICL LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('RHERBOZO', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012842', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHERBOZO', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012104', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHERBOZO', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012073', sysdate, null); -- Inserting RoleToUserAssignment 'RHERBOZO/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('RHERBOZO', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RHERBOZO/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('RHERBOZO', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12842EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHERBOZO', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12104EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHERBOZO', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12073EUR', sysdate, null); -- Inserting RoleToUserAssignment 'RHERBOZO/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('RHERBOZO', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RHERBOZO/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('RHERBOZO', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2232', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHERBOZO', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2146', sysdate, null); -- Inserting RoleToUserAssignment 'RHIDALG3/AMMF Central reporter' harmony.usermgt.create_role_to_user_assignment('RHIDALG3', 'AMMF Central reporter', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RHIDALG3/AMMF Central reporter harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'AMMF Central reporter', 'R3_BUPA_TRANSFERS', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'RHIDALG3/AMMF LOCAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('RHIDALG3', 'AMMF LOCAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RHIDALG3/AMMF LOCAL REQUESTOR harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012721', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012720', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012719', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012718', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012717', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012295', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012294', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012293', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012292', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012188', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012187', sysdate, null); -- Inserting RoleToUserAssignment 'RHIDALG3/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('RHIDALG3', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'RHIDALG3/HB CENTRAL RELEASER' harmony.usermgt.create_role_to_user_assignment('RHIDALG3', 'HB CENTRAL RELEASER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RHIDALG3/HB CENTRAL RELEASER harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5066', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5061', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5060', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5059', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5057', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5055', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5054', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5053', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5052', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5051', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5050', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5049', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5048', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5047', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5046', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5045', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5044', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5043', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5042', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5041', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5040', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5038', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5037', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5021', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5020', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5019', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5018', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5017', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5016', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5014', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5013', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5011', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5010', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5009', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5006', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5004', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5022', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5023', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5024', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5025', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5026', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5027', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5028', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5029', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5030', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5031', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5032', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HB CENTRAL RELEASER', 'R3_COCO', 'ONE', '5033', sysdate, null); -- Inserting RoleToUserAssignment 'RHIDALG3/HB CENTRAL REPORTER' harmony.usermgt.create_role_to_user_assignment('RHIDALG3', 'HB CENTRAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RHIDALG3/HB CENTRAL REPORTER harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HB CENTRAL REPORTER', 'R3_COCO', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'RHIDALG3/HB CENTRAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('RHIDALG3', 'HB CENTRAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RHIDALG3/HB CENTRAL REQUESTOR harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5066', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5061', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5060', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5059', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5057', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5055', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5054', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5053', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5052', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5051', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5050', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5049', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5048', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5047', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5046', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5045', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5044', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5043', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5042', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5041', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5040', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5038', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5037', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5021', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5020', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5019', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5018', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5017', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5016', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5014', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5013', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5011', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5010', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5009', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5006', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5004', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5022', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5023', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5024', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5025', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5026', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5027', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5028', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5029', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5030', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5031', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5032', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HB CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5033', sysdate, null); -- Inserting RoleToUserAssignment 'RHIDALG3/ICL Central reporter' harmony.usermgt.create_role_to_user_assignment('RHIDALG3', 'ICL Central reporter', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RHIDALG3/ICL Central reporter harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'ICL Central reporter', 'R3_BUPA_ICL', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'RHIDALG3/ICL LOCAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('RHIDALG3', 'ICL LOCAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RHIDALG3/ICL LOCAL REQUESTOR harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012721', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012720', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012719', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012718', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012717', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012295', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012294', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012293', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012292', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012188', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012187', sysdate, null); -- Inserting RoleToUserAssignment 'RHIDALG3/MR CENTRAL REPORTER' harmony.usermgt.create_role_to_user_assignment('RHIDALG3', 'MR CENTRAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RHIDALG3/MR CENTRAL REPORTER harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'MR CENTRAL REPORTER', 'R3_COCO', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'RHIDALG3/MR CENTRAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('RHIDALG3', 'MR CENTRAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RHIDALG3/MR CENTRAL REQUESTOR harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5066', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5061', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5060', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5055', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5054', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5053', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5052', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5051', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5050', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5049', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5048', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5047', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5046', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5045', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5044', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5043', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5042', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5041', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5040', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5038', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5037', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5021', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5020', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5019', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5018', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5017', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5016', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5014', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5013', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5011', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5010', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5009', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5006', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5004', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5022', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5023', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5024', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5025', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5026', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5027', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5028', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5029', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5030', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5031', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5032', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'MR CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5033', sysdate, null); -- Inserting RoleToUserAssignment 'RHIDALG3/OO CENTRAL AUTHORIZER' harmony.usermgt.create_role_to_user_assignment('RHIDALG3', 'OO CENTRAL AUTHORIZER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RHIDALG3/OO CENTRAL AUTHORIZER harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5066', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5061', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5060', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5055', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5054', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5053', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5052', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5051', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5050', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5049', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5048', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5047', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5046', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5045', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5044', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5043', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5042', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5041', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5040', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5038', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5037', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5033', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5032', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5019', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5018', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5017', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5016', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5015', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5014', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5013', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5011', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5010', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5009', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5006', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5004', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'OO CENTRAL AUTHORIZER', 'OO_GROUPING', 'ONE', '183', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5020', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5021', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5022', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5023', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5024', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5025', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5026', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5027', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5028', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5029', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5030', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'OO CENTRAL AUTHORIZER', 'R3_COCO', 'ONE', '5031', sysdate, null); -- Inserting RoleToUserAssignment 'RHIDALG3/OO CENTRAL REPORTER' harmony.usermgt.create_role_to_user_assignment('RHIDALG3', 'OO CENTRAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RHIDALG3/OO CENTRAL REPORTER harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'OO CENTRAL REPORTER', 'R3_COCO', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'RHIDALG3/OO CENTRAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('RHIDALG3', 'OO CENTRAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RHIDALG3/OO CENTRAL REQUESTOR harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5066', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5061', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5060', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5055', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5054', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5053', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5052', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5051', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5050', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5049', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5048', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5047', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5046', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5045', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5044', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5043', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5042', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5041', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5040', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5038', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5037', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5033', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5032', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5019', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5018', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5017', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5016', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5015', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5014', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5013', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5011', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5010', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5009', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5006', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5004', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'OO CENTRAL REQUESTOR', 'OO_GROUPING', 'ONE', '183', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5020', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5021', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5022', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5023', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5024', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5025', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5026', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5027', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5028', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5029', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5030', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'OO CENTRAL REQUESTOR', 'R3_COCO', 'ONE', '5031', sysdate, null); -- Inserting RoleToUserAssignment 'RHIDALG3/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('RHIDALG3', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RHIDALG3/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'RHIDALG3/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('RHIDALG3', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RHIDALG3/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'RHIDALG3/TOPS2' harmony.usermgt.create_role_to_user_assignment('RHIDALG3', 'TOPS2', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'RHOEFNAG/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('RHOEFNAG', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'RHYMAN/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('RHYMAN', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'RHYMAN/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('RHYMAN', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RHYMAN/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('RHYMAN', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12260USD', sysdate, null); -- Inserting RoleToUserAssignment 'RJACINT2/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('RJACINT2', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RJACINT2/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('RJACINT2', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12164USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('RJACINT2', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12165USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('RJACINT2', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12166USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('RJACINT2', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12238USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('RJACINT2', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12329USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('RJACINT2', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12330USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('RJACINT2', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12331USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('RJACINT2', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12332USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('RJACINT2', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12564USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('RJACINT2', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12573USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('RJACINT2', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12699USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('RJACINT2', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12890USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('RJACINT2', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12596EUR', sysdate, null); -- Inserting RoleToUserAssignment 'RJAIN1/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('RJAIN1', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RJAIN1/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('RJAIN1', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '6059', sysdate, null); -- Inserting RoleToUserAssignment 'RJDESAMI/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('RJDESAMI', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'RJDESAMI/ICL LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('RJDESAMI', 'ICL LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RJDESAMI/ICL LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('RJDESAMI', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012500', sysdate, null); -- Inserting RoleToUserAssignment 'RJDESAMI/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('RJDESAMI', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RJDESAMI/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('RJDESAMI', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12500USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('RJDESAMI', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12500SEK', sysdate, null); harmony.usermgt.create_dds_item_assignment('RJDESAMI', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12500GBP', sysdate, null); harmony.usermgt.create_dds_item_assignment('RJDESAMI', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12500EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('RJDESAMI', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12500CHF', sysdate, null); -- Inserting RoleToUserAssignment 'RJDESAMI/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('RJDESAMI', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RJDESAMI/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('RJDESAMI', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2163', sysdate, null); -- Inserting RoleToUserAssignment 'RKONDASO/AMMF LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('RKONDASO', 'AMMF LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RKONDASO/AMMF LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('RKONDASO', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012101', sysdate, null); -- Inserting RoleToUserAssignment 'RKONDASO/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('RKONDASO', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'RKONDASO/ICL LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('RKONDASO', 'ICL LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RKONDASO/ICL LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('RKONDASO', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012101', sysdate, null); harmony.usermgt.create_dds_item_assignment('RKONDASO', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012069', sysdate, null); -- Inserting RoleToUserAssignment 'RKONDASO/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('RKONDASO', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RKONDASO/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('RKONDASO', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12101USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('RKONDASO', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12101JPY', sysdate, null); harmony.usermgt.create_dds_item_assignment('RKONDASO', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12101EUR', sysdate, null); -- Inserting RoleToUserAssignment 'RKONDASO/OO LOCAL COCO AUTHORIZER/RELEASER' harmony.usermgt.create_role_to_user_assignment('RKONDASO', 'OO LOCAL COCO AUTHORIZER/RELEASER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RKONDASO/OO LOCAL COCO AUTHORIZER/RELEASER harmony.usermgt.create_dds_item_assignment('RKONDASO', 'OO LOCAL COCO AUTHORIZER/RELEASER', 'R3_COCO', 'ONE', '2109', sysdate, null); -- Inserting RoleToUserAssignment 'RKONDASO/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('RKONDASO', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RKONDASO/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('RKONDASO', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2109', sysdate, null); -- Inserting RoleToUserAssignment 'RKONDASO/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('RKONDASO', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RKONDASO/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('RKONDASO', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2109', sysdate, null); -- Inserting RoleToUserAssignment 'RLEITE/AMMF LOCAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('RLEITE', 'AMMF LOCAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RLEITE/AMMF LOCAL REQUESTOR harmony.usermgt.create_dds_item_assignment('RLEITE', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000011013', sysdate, null); -- Inserting RoleToUserAssignment 'RLEITE/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('RLEITE', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'RLEITE/BATCH PAYMENT PROCESSING' harmony.usermgt.create_role_to_user_assignment('RLEITE', 'BATCH PAYMENT PROCESSING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'RLEITE/BF CENTRAL AUTHORIZER' harmony.usermgt.create_role_to_user_assignment('RLEITE', 'BF CENTRAL AUTHORIZER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RLEITE/BF CENTRAL AUTHORIZER harmony.usermgt.create_dds_item_assignment('RLEITE', 'BF CENTRAL AUTHORIZER', 'OO_GROUPING', 'ONE', '183', sysdate, null); -- Inserting RoleToUserAssignment 'RLEITE/BF CENTRAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('RLEITE', 'BF CENTRAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RLEITE/BF CENTRAL REQUESTOR harmony.usermgt.create_dds_item_assignment('RLEITE', 'BF CENTRAL REQUESTOR', 'OO_GROUPING', 'ONE', '183', sysdate, null); -- Inserting RoleToUserAssignment 'RLEITE/HB CENTRAL REPORTER' harmony.usermgt.create_role_to_user_assignment('RLEITE', 'HB CENTRAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RLEITE/HB CENTRAL REPORTER harmony.usermgt.create_dds_item_assignment('RLEITE', 'HB CENTRAL REPORTER', 'R3_COCO', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'RLEITE/MR CENTRAL REPORTER' harmony.usermgt.create_role_to_user_assignment('RLEITE', 'MR CENTRAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RLEITE/MR CENTRAL REPORTER harmony.usermgt.create_dds_item_assignment('RLEITE', 'MR CENTRAL REPORTER', 'R3_COCO', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'RLEITE/OO CENTRAL RELEASER' harmony.usermgt.create_role_to_user_assignment('RLEITE', 'OO CENTRAL RELEASER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RLEITE/OO CENTRAL RELEASER harmony.usermgt.create_dds_item_assignment('RLEITE', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5066', sysdate, null); harmony.usermgt.create_dds_item_assignment('RLEITE', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5061', sysdate, null); harmony.usermgt.create_dds_item_assignment('RLEITE', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5060', sysdate, null); harmony.usermgt.create_dds_item_assignment('RLEITE', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5055', sysdate, null); harmony.usermgt.create_dds_item_assignment('RLEITE', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5054', sysdate, null); harmony.usermgt.create_dds_item_assignment('RLEITE', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5053', sysdate, null); harmony.usermgt.create_dds_item_assignment('RLEITE', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5052', sysdate, null); harmony.usermgt.create_dds_item_assignment('RLEITE', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5051', sysdate, null); harmony.usermgt.create_dds_item_assignment('RLEITE', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5050', sysdate, null); harmony.usermgt.create_dds_item_assignment('RLEITE', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5049', sysdate, null); harmony.usermgt.create_dds_item_assignment('RLEITE', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5048', sysdate, null); harmony.usermgt.create_dds_item_assignment('RLEITE', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5047', sysdate, null); harmony.usermgt.create_dds_item_assignment('RLEITE', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5046', sysdate, null); harmony.usermgt.create_dds_item_assignment('RLEITE', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5045', sysdate, null); harmony.usermgt.create_dds_item_assignment('RLEITE', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5044', sysdate, null); harmony.usermgt.create_dds_item_assignment('RLEITE', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5043', sysdate, null); harmony.usermgt.create_dds_item_assignment('RLEITE', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5042', sysdate, null); harmony.usermgt.create_dds_item_assignment('RLEITE', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5041', sysdate, null); harmony.usermgt.create_dds_item_assignment('RLEITE', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5040', sysdate, null); harmony.usermgt.create_dds_item_assignment('RLEITE', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5038', sysdate, null); harmony.usermgt.create_dds_item_assignment('RLEITE', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5037', sysdate, null); harmony.usermgt.create_dds_item_assignment('RLEITE', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5033', sysdate, null); harmony.usermgt.create_dds_item_assignment('RLEITE', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5032', sysdate, null); harmony.usermgt.create_dds_item_assignment('RLEITE', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5019', sysdate, null); harmony.usermgt.create_dds_item_assignment('RLEITE', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5018', sysdate, null); harmony.usermgt.create_dds_item_assignment('RLEITE', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5017', sysdate, null); harmony.usermgt.create_dds_item_assignment('RLEITE', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5016', sysdate, null); harmony.usermgt.create_dds_item_assignment('RLEITE', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5015', sysdate, null); harmony.usermgt.create_dds_item_assignment('RLEITE', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5014', sysdate, null); harmony.usermgt.create_dds_item_assignment('RLEITE', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5013', sysdate, null); harmony.usermgt.create_dds_item_assignment('RLEITE', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5011', sysdate, null); harmony.usermgt.create_dds_item_assignment('RLEITE', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5010', sysdate, null); harmony.usermgt.create_dds_item_assignment('RLEITE', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5009', sysdate, null); harmony.usermgt.create_dds_item_assignment('RLEITE', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5006', sysdate, null); harmony.usermgt.create_dds_item_assignment('RLEITE', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5004', sysdate, null); harmony.usermgt.create_dds_item_assignment('RLEITE', 'OO CENTRAL RELEASER', 'OO_GROUPING', 'ALL', null, sysdate, null); harmony.usermgt.create_dds_item_assignment('RLEITE', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5020', sysdate, null); harmony.usermgt.create_dds_item_assignment('RLEITE', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5021', sysdate, null); harmony.usermgt.create_dds_item_assignment('RLEITE', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5022', sysdate, null); harmony.usermgt.create_dds_item_assignment('RLEITE', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5023', sysdate, null); harmony.usermgt.create_dds_item_assignment('RLEITE', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5024', sysdate, null); harmony.usermgt.create_dds_item_assignment('RLEITE', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5025', sysdate, null); harmony.usermgt.create_dds_item_assignment('RLEITE', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5026', sysdate, null); harmony.usermgt.create_dds_item_assignment('RLEITE', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5027', sysdate, null); harmony.usermgt.create_dds_item_assignment('RLEITE', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5028', sysdate, null); harmony.usermgt.create_dds_item_assignment('RLEITE', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5029', sysdate, null); harmony.usermgt.create_dds_item_assignment('RLEITE', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5030', sysdate, null); harmony.usermgt.create_dds_item_assignment('RLEITE', 'OO CENTRAL RELEASER', 'R3_COCO', 'ONE', '5031', sysdate, null); -- Inserting RoleToUserAssignment 'RLEITE/OO CENTRAL REPORTER' harmony.usermgt.create_role_to_user_assignment('RLEITE', 'OO CENTRAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RLEITE/OO CENTRAL REPORTER harmony.usermgt.create_dds_item_assignment('RLEITE', 'OO CENTRAL REPORTER', 'R3_COCO', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'RLEITE/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('RLEITE', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RLEITE/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('RLEITE', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'RLEITE/TOPS2' harmony.usermgt.create_role_to_user_assignment('RLEITE', 'TOPS2', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'RLENZ/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('RLENZ', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'RLENZ/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('RLENZ', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RLENZ/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('RLENZ', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12932EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('RLENZ', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12834EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('RLENZ', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12062EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('RLENZ', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12038EUR', sysdate, null); -- Inserting RoleToUserAssignment 'RLENZ/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('RLENZ', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RLENZ/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('RLENZ', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2308', sysdate, null); harmony.usermgt.create_dds_item_assignment('RLENZ', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2284', sysdate, null); harmony.usermgt.create_dds_item_assignment('RLENZ', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2236', sysdate, null); harmony.usermgt.create_dds_item_assignment('RLENZ', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2207', sysdate, null); -- Inserting RoleToUserAssignment 'RLOJKOVA/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('RLOJKOVA', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'RLOJKOVA/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('RLOJKOVA', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RLOJKOVA/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('RLOJKOVA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12814DKK', sysdate, null); harmony.usermgt.create_dds_item_assignment('RLOJKOVA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12791NOK', sysdate, null); harmony.usermgt.create_dds_item_assignment('RLOJKOVA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12790EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('RLOJKOVA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12310SEK', sysdate, null); harmony.usermgt.create_dds_item_assignment('RLOJKOVA', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12121SEK', sysdate, null); -- Inserting RoleToUserAssignment 'RLOJKOVA/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('RLOJKOVA', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RLOJKOVA/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('RLOJKOVA', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2258', sysdate, null); harmony.usermgt.create_dds_item_assignment('RLOJKOVA', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2249', sysdate, null); harmony.usermgt.create_dds_item_assignment('RLOJKOVA', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2248', sysdate, null); harmony.usermgt.create_dds_item_assignment('RLOJKOVA', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2247', sysdate, null); harmony.usermgt.create_dds_item_assignment('RLOJKOVA', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2101', sysdate, null); -- Inserting RoleToUserAssignment 'RLOPEZ59/ICL LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('RLOPEZ59', 'ICL LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RLOPEZ59/ICL LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('RLOPEZ59', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012293', sysdate, null); -- Inserting RoleToUserAssignment 'RLOW1/AMMF LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('RLOW1', 'AMMF LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RLOW1/AMMF LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('RLOW1', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012265', sysdate, null); -- Inserting RoleToUserAssignment 'RLOW1/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('RLOW1', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RLOW1/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('RLOW1', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '6001', sysdate, null); -- Inserting RoleToUserAssignment 'RMALINAO/AMMF LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('RMALINAO', 'AMMF LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RMALINAO/AMMF LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('RMALINAO', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012831', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012592', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012500', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012350', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012320', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012262', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012102', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012059', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012009', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012002', sysdate, null); -- Inserting RoleToUserAssignment 'RMALINAO/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('RMALINAO', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'RMALINAO/BF LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('RMALINAO', 'BF LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RMALINAO/BF LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('RMALINAO', 'BF LOCAL REPORTER', 'OO_GROUPING', 'ONE', '97', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'BF LOCAL REPORTER', 'OO_GROUPING', 'ONE', '92', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'BF LOCAL REPORTER', 'OO_GROUPING', 'ONE', '50', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'BF LOCAL REPORTER', 'OO_GROUPING', 'ONE', '20', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'BF LOCAL REPORTER', 'OO_GROUPING', 'ONE', '194', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'BF LOCAL REPORTER', 'OO_GROUPING', 'ONE', '121', sysdate, null); -- Inserting RoleToUserAssignment 'RMALINAO/ICL LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('RMALINAO', 'ICL LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RMALINAO/ICL LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('RMALINAO', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012866', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012831', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012592', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012500', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012320', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012102', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012094', sysdate, null); -- Inserting RoleToUserAssignment 'RMALINAO/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('RMALINAO', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RMALINAO/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('RMALINAO', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12831EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12592EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12500USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12500SEK', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12500GBP', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12002EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12009EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12059EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12069EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12094EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12102EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12127SEK', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12262CHF', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12320EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12320GBP', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12350EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12500CHF', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12500EUR', sysdate, null); -- Inserting RoleToUserAssignment 'RMALINAO/MR LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('RMALINAO', 'MR LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RMALINAO/MR LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('RMALINAO', 'MR LOCAL REPORTER', 'R3_HBACCOUNT', 'ONE', '2123SGEDIEURC1', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'MR LOCAL REPORTER', 'R3_HBACCOUNT', 'ONE', '2123NETACEURN1', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'MR LOCAL REPORTER', 'R3_HBACCOUNT', 'ONE', '2123HSBDIEURC1', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'MR LOCAL REPORTER', 'R3_HBACCOUNT', 'ONE', '2123EIHBEURI1', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'MR LOCAL REPORTER', 'R3_HBACCOUNT', 'ONE', '2123BNPPAEURC2', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'MR LOCAL REPORTER', 'R3_HBACCOUNT', 'ONE', '2123BNPPAEURC1', sysdate, null); -- Inserting RoleToUserAssignment 'RMALINAO/OO LOCAL COCO REPORTER' harmony.usermgt.create_role_to_user_assignment('RMALINAO', 'OO LOCAL COCO REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RMALINAO/OO LOCAL COCO REPORTER harmony.usermgt.create_dds_item_assignment('RMALINAO', 'OO LOCAL COCO REPORTER', 'R3_COCO', 'ONE', '2242', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'OO LOCAL COCO REPORTER', 'R3_COCO', 'ONE', '2220', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'OO LOCAL COCO REPORTER', 'R3_COCO', 'ONE', '2206', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'OO LOCAL COCO REPORTER', 'R3_COCO', 'ONE', '2166', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'OO LOCAL COCO REPORTER', 'R3_COCO', 'ONE', '2123', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'OO LOCAL COCO REPORTER', 'R3_COCO', 'ONE', '2012', sysdate, null); -- Inserting RoleToUserAssignment 'RMALINAO/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('RMALINAO', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RMALINAO/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('RMALINAO', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2242', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2220', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2206', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2194', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2175', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2166', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2163', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2123', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2117', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2102', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2017', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2012', sysdate, null); -- Inserting RoleToUserAssignment 'RMALINAO/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('RMALINAO', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RMALINAO/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('RMALINAO', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2242', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2220', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2206', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2194', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2175', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2166', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2163', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2123', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2117', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2102', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2012', sysdate, null); -- Inserting RoleToUserAssignment 'RMERLI/AMMF LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('RMERLI', 'AMMF LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RMERLI/AMMF LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('RMERLI', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012125', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMERLI', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012107', sysdate, null); -- Inserting RoleToUserAssignment 'RMERLI/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('RMERLI', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'RMERLI/BF LOCAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('RMERLI', 'BF LOCAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RMERLI/BF LOCAL REQUESTOR harmony.usermgt.create_dds_item_assignment('RMERLI', 'BF LOCAL REQUESTOR', 'OO_GROUPING', 'ONE', '247', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMERLI', 'BF LOCAL REQUESTOR', 'OO_GROUPING', 'ONE', '239', sysdate, null); -- Inserting RoleToUserAssignment 'RMERLI/ICL LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('RMERLI', 'ICL LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RMERLI/ICL LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('RMERLI', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012125', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMERLI', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012107', sysdate, null); -- Inserting RoleToUserAssignment 'RMERLI/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('RMERLI', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RMERLI/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('RMERLI', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12125EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMERLI', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12107EUR', sysdate, null); -- Inserting RoleToUserAssignment 'RMERLI/OO LOCAL COCO REQUESTOR' harmony.usermgt.create_role_to_user_assignment('RMERLI', 'OO LOCAL COCO REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RMERLI/OO LOCAL COCO REQUESTOR harmony.usermgt.create_dds_item_assignment('RMERLI', 'OO LOCAL COCO REQUESTOR', 'R3_COCO', 'ONE', '2266', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMERLI', 'OO LOCAL COCO REQUESTOR', 'R3_COCO', 'ONE', '2049', sysdate, null); -- Inserting RoleToUserAssignment 'RMERLI/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('RMERLI', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RMERLI/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('RMERLI', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2266', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMERLI', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2049', sysdate, null); -- Inserting RoleToUserAssignment 'RMERLI/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('RMERLI', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RMERLI/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('RMERLI', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2266', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMERLI', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2049', sysdate, null); -- Inserting RoleToUserAssignment 'RNAISMY/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('RNAISMY', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'RNAISMY/BATCH PAYMENT PROCESSING' harmony.usermgt.create_role_to_user_assignment('RNAISMY', 'BATCH PAYMENT PROCESSING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'RNAISMY/BF LOCAL AUTHORIZER' harmony.usermgt.create_role_to_user_assignment('RNAISMY', 'BF LOCAL AUTHORIZER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RNAISMY/BF LOCAL AUTHORIZER harmony.usermgt.create_dds_item_assignment('RNAISMY', 'BF LOCAL AUTHORIZER', 'OO_GROUPING', 'ONE', '186', sysdate, null); -- Inserting RoleToUserAssignment 'RNAISMY/OO LOCAL EXCEPTION ACCOUNT AUTHORIZER RELEASER' harmony.usermgt.create_role_to_user_assignment('RNAISMY', 'OO LOCAL EXCEPTION ACCOUNT AUTHORIZER RELEASER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RNAISMY/OO LOCAL EXCEPTION ACCOUNT AUTHORIZER RELEASER harmony.usermgt.create_dds_item_assignment('RNAISMY', 'OO LOCAL EXCEPTION ACCOUNT AUTHORIZER RELEASER', 'R3_HBACCOUNT', 'ONE', '1001BOANYUSDF4', sysdate, null); -- Inserting RoleToUserAssignment 'RPARE/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('RPARE', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'RPARE/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('RPARE', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RPARE/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('RPARE', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12363CAD', sysdate, null); -- Inserting RoleToUserAssignment 'RPIZZUTI/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('RPIZZUTI', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'RPIZZUTI/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('RPIZZUTI', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RPIZZUTI/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('RPIZZUTI', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12106EUR', sysdate, null); -- Inserting RoleToUserAssignment 'RPONCE3/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('RPONCE3', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RPONCE3/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('RPONCE3', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '6057', sysdate, null); -- Inserting RoleToUserAssignment 'RPONCE3/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('RPONCE3', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RPONCE3/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('RPONCE3', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '6057', sysdate, null); -- Inserting RoleToUserAssignment 'RQUINANO/AMMF LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('RQUINANO', 'AMMF LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RQUINANO/AMMF LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('RQUINANO', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012866', sysdate, null); -- Inserting RoleToUserAssignment 'RQUINANO/ICL LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('RQUINANO', 'ICL LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RQUINANO/ICL LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('RQUINANO', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012866', sysdate, null); -- Inserting RoleToUserAssignment 'RRAVAL45/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('RRAVAL45', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'RRIETBRO/AMMF LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('RRIETBRO', 'AMMF LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RRIETBRO/AMMF LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('RRIETBRO', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012005', sysdate, null); -- Inserting RoleToUserAssignment 'RRIETBRO/AMMF LOCAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('RRIETBRO', 'AMMF LOCAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RRIETBRO/AMMF LOCAL REQUESTOR harmony.usermgt.create_dds_item_assignment('RRIETBRO', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012113', sysdate, null); -- Inserting RoleToUserAssignment 'RRIETBRO/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('RRIETBRO', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'RRIETBRO/ICL LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('RRIETBRO', 'ICL LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RRIETBRO/ICL LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('RRIETBRO', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012005', sysdate, null); -- Inserting RoleToUserAssignment 'RRIETBRO/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('RRIETBRO', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RRIETBRO/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('RRIETBRO', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12108EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('RRIETBRO', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12005EUR', sysdate, null); -- Inserting RoleToUserAssignment 'RRIETBRO/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('RRIETBRO', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RRIETBRO/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('RRIETBRO', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2240', sysdate, null); -- Inserting RoleToUserAssignment 'RRIJOS/AMMF LOCAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('RRIJOS', 'AMMF LOCAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RRIJOS/AMMF LOCAL REQUESTOR harmony.usermgt.create_dds_item_assignment('RRIJOS', 'AMMF LOCAL REQUESTOR', 'R3_BUPA_TRANSFERS', 'ONE', '0000012713', sysdate, null); -- Inserting RoleToUserAssignment 'RRIJOS/ICL LOCAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('RRIJOS', 'ICL LOCAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RRIJOS/ICL LOCAL REQUESTOR harmony.usermgt.create_dds_item_assignment('RRIJOS', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012299', sysdate, null); -- Inserting RoleToUserAssignment 'RRIVERA2/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('RRIVERA2', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'RRIVERA2/BATCH PAYMENT PROCESSING' harmony.usermgt.create_role_to_user_assignment('RRIVERA2', 'BATCH PAYMENT PROCESSING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'RRIVERA2/BF LOCAL AUTHORIZER' harmony.usermgt.create_role_to_user_assignment('RRIVERA2', 'BF LOCAL AUTHORIZER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RRIVERA2/BF LOCAL AUTHORIZER harmony.usermgt.create_dds_item_assignment('RRIVERA2', 'BF LOCAL AUTHORIZER', 'OO_GROUPING', 'ONE', '186', sysdate, null); -- Inserting RoleToUserAssignment 'RRIVERA2/OO LOCAL EXCEPTION ACCOUNT AUTHORIZER RELEASER' harmony.usermgt.create_role_to_user_assignment('RRIVERA2', 'OO LOCAL EXCEPTION ACCOUNT AUTHORIZER RELEASER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RRIVERA2/OO LOCAL EXCEPTION ACCOUNT AUTHORIZER RELEASER harmony.usermgt.create_dds_item_assignment('RRIVERA2', 'OO LOCAL EXCEPTION ACCOUNT AUTHORIZER RELEASER', 'R3_HBACCOUNT', 'ONE', '1001BOANYUSDF4', sysdate, null); -- Inserting RoleToUserAssignment 'RROMAR/AMMF LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('RROMAR', 'AMMF LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RROMAR/AMMF LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('RROMAR', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012943', sysdate, null); -- Inserting RoleToUserAssignment 'RROMAR/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('RROMAR', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'RROMAR/BF LOCAL AUTHORIZER' harmony.usermgt.create_role_to_user_assignment('RROMAR', 'BF LOCAL AUTHORIZER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RROMAR/BF LOCAL AUTHORIZER harmony.usermgt.create_dds_item_assignment('RROMAR', 'BF LOCAL AUTHORIZER', 'OO_GROUPING', 'ONE', '267', sysdate, null); -- Inserting RoleToUserAssignment 'RROMAR/BF LOCAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('RROMAR', 'BF LOCAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RROMAR/BF LOCAL REQUESTOR harmony.usermgt.create_dds_item_assignment('RROMAR', 'BF LOCAL REQUESTOR', 'OO_GROUPING', 'ONE', '267', sysdate, null); -- Inserting RoleToUserAssignment 'RROMAR/ICL LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('RROMAR', 'ICL LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RROMAR/ICL LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('RROMAR', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012943', sysdate, null); -- Inserting RoleToUserAssignment 'RROMAR/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('RROMAR', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RROMAR/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('RROMAR', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12943EUR', sysdate, null); -- Inserting RoleToUserAssignment 'RROMAR/OO LOCAL COCO AUTHORIZER/RELEASER' harmony.usermgt.create_role_to_user_assignment('RROMAR', 'OO LOCAL COCO AUTHORIZER/RELEASER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RROMAR/OO LOCAL COCO AUTHORIZER/RELEASER harmony.usermgt.create_dds_item_assignment('RROMAR', 'OO LOCAL COCO AUTHORIZER/RELEASER', 'R3_COCO', 'ONE', '2290', sysdate, null); -- Inserting RoleToUserAssignment 'RROMAR/OO LOCAL COCO REQUESTOR' harmony.usermgt.create_role_to_user_assignment('RROMAR', 'OO LOCAL COCO REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RROMAR/OO LOCAL COCO REQUESTOR harmony.usermgt.create_dds_item_assignment('RROMAR', 'OO LOCAL COCO REQUESTOR', 'R3_COCO', 'ONE', '2290', sysdate, null); -- Inserting RoleToUserAssignment 'RROMAR/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('RROMAR', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RROMAR/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('RROMAR', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2290', sysdate, null); -- Inserting RoleToUserAssignment 'RROMAR/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('RROMAR', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RROMAR/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('RROMAR', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2290', sysdate, null); -- Inserting RoleToUserAssignment 'RRUTAQUI/APPLOG VIEW' harmony.usermgt.create_role_to_user_assignment('RRUTAQUI', 'APPLOG VIEW', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'RRUTAQUI/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('RRUTAQUI', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'RRUTAQUI/BATCH C4S TO SYM' harmony.usermgt.create_role_to_user_assignment('RRUTAQUI', 'BATCH C4S TO SYM', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'RRUTAQUI/Hermes-IHB Interface' harmony.usermgt.create_role_to_user_assignment('RRUTAQUI', 'Hermes-IHB Interface', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'RRUTAQUI/IHC CENTRAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('RRUTAQUI', 'IHC CENTRAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RRUTAQUI/IHC CENTRAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('RRUTAQUI', 'IHC CENTRAL POSITION REPORT', 'R3_IHBACCOUNT', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'RRUTAQUI/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('RRUTAQUI', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RRUTAQUI/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('RRUTAQUI', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12715USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('RRUTAQUI', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12327USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('RRUTAQUI', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12243USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('RRUTAQUI', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12242USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('RRUTAQUI', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12241USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('RRUTAQUI', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12240USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('RRUTAQUI', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12239USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('RRUTAQUI', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12184USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('RRUTAQUI', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12154USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('RRUTAQUI', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'CIHBC12136USD', sysdate, null); -- Inserting RoleToUserAssignment 'RSALVADO/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('RSALVADO', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'RSALVADO/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('RSALVADO', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RSALVADO/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('RSALVADO', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12820NZD', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSALVADO', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12530AUD', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSALVADO', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12455AUD', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSALVADO', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12454AUD', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSALVADO', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12453NZD', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSALVADO', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12451NZD', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSALVADO', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12406AUD', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSALVADO', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12386NZD', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSALVADO', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12376AUD', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSALVADO', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12267AUD', sysdate, null); -- Inserting RoleToUserAssignment 'RSALVADO/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('RSALVADO', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RSALVADO/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('RSALVADO', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '6073', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSALVADO', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '6072', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSALVADO', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '6009', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSALVADO', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '6017', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSALVADO', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '6028', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSALVADO', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '6029', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSALVADO', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '6050', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSALVADO', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '6051', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSALVADO', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '6055', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSALVADO', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '6066', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSALVADO', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '6067', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSALVADO', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '6068', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSALVADO', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '6069', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSALVADO', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '6070', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSALVADO', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '6071', sysdate, null); -- Inserting RoleToUserAssignment 'RSCARLET/AMMF LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('RSCARLET', 'AMMF LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RSCARLET/AMMF LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('RSCARLET', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012117', sysdate, null); -- Inserting RoleToUserAssignment 'RSCARLET/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('RSCARLET', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'RSCARLET/ICL LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('RSCARLET', 'ICL LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RSCARLET/ICL LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('RSCARLET', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012117', sysdate, null); -- Inserting RoleToUserAssignment 'RSCARLET/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('RSCARLET', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RSCARLET/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('RSCARLET', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12117EUR', sysdate, null); -- Inserting RoleToUserAssignment 'RSCARLET/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('RSCARLET', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RSCARLET/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('RSCARLET', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2051', sysdate, null); -- Inserting RoleToUserAssignment 'RSCARLET/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('RSCARLET', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RSCARLET/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('RSCARLET', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2051', sysdate, null); -- Inserting RoleToUserAssignment 'RSCHMID8/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('RSCHMID8', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RSCHMID8/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('RSCHMID8', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2303', sysdate, null); -- Inserting RoleToUserAssignment 'RSIMPSO5/AMMF LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('RSIMPSO5', 'AMMF LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RSIMPSO5/AMMF LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('RSIMPSO5', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012690', sysdate, null); -- Inserting RoleToUserAssignment 'RSIMPSO5/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('RSIMPSO5', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'RSIMPSO5/ICL LOCAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('RSIMPSO5', 'ICL LOCAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RSIMPSO5/ICL LOCAL REQUESTOR harmony.usermgt.create_dds_item_assignment('RSIMPSO5', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012690', sysdate, null); -- Inserting RoleToUserAssignment 'RSIMPSO5/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('RSIMPSO5', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RSIMPSO5/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('RSIMPSO5', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12857GBP', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSIMPSO5', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12781GBP', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSIMPSO5', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12690GBP', sysdate, null); -- Inserting RoleToUserAssignment 'RSIMPSO5/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('RSIMPSO5', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RSIMPSO5/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('RSIMPSO5', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2182', sysdate, null); -- Inserting RoleToUserAssignment 'RSIMPSO5/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('RSIMPSO5', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RSIMPSO5/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('RSIMPSO5', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2269', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSIMPSO5', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2182', sysdate, null); -- Inserting RoleToUserAssignment 'RSTEHLIK/AMMF LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('RSTEHLIK', 'AMMF LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RSTEHLIK/AMMF LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('RSTEHLIK', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012001', sysdate, null); -- Inserting RoleToUserAssignment 'RSTEHLIK/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('RSTEHLIK', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'RSTEHLIK/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('RSTEHLIK', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RSTEHLIK/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('RSTEHLIK', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12263EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSTEHLIK', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12001EUR', sysdate, null); -- Inserting RoleToUserAssignment 'RSTEHLIK/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('RSTEHLIK', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RSTEHLIK/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('RSTEHLIK', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2210', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSTEHLIK', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2192', sysdate, null); -- Inserting RoleToUserAssignment 'RSTEHLIK/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('RSTEHLIK', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RSTEHLIK/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('RSTEHLIK', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2210', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSTEHLIK', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2192', sysdate, null); -- Inserting RoleToUserAssignment 'RSTEINER/AMMF LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('RSTEINER', 'AMMF LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RSTEINER/AMMF LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('RSTEINER', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012814', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSTEINER', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012813', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSTEINER', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012812', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSTEINER', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012811', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSTEINER', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012791', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSTEINER', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012790', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSTEINER', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012310', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSTEINER', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012121', sysdate, null); -- Inserting RoleToUserAssignment 'RSTEINER/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('RSTEINER', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'RSTEINER/BF LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('RSTEINER', 'BF LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RSTEINER/BF LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('RSTEINER', 'BF LOCAL REPORTER', 'OO_GROUPING', 'ONE', '216', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSTEINER', 'BF LOCAL REPORTER', 'OO_GROUPING', 'ONE', '207', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSTEINER', 'BF LOCAL REPORTER', 'OO_GROUPING', 'ONE', '206', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSTEINER', 'BF LOCAL REPORTER', 'OO_GROUPING', 'ONE', '205', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSTEINER', 'BF LOCAL REPORTER', 'OO_GROUPING', 'ONE', '201', sysdate, null); -- Inserting RoleToUserAssignment 'RSTEINER/ICL LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('RSTEINER', 'ICL LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RSTEINER/ICL LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('RSTEINER', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012814', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSTEINER', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012813', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSTEINER', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012812', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSTEINER', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012811', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSTEINER', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012791', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSTEINER', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012790', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSTEINER', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012310', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSTEINER', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012121', sysdate, null); -- Inserting RoleToUserAssignment 'RSTEINER/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('RSTEINER', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RSTEINER/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('RSTEINER', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12814DKK', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSTEINER', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12813LVL', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSTEINER', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12813EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSTEINER', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12812EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSTEINER', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12812EEK', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSTEINER', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12811LTL', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSTEINER', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12811EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSTEINER', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12791NOK', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSTEINER', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12790EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSTEINER', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12310SEK', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSTEINER', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12121SEK', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSTEINER', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12121DKK', sysdate, null); -- Inserting RoleToUserAssignment 'RSTEINER/OO LOCAL COCO REPORTER' harmony.usermgt.create_role_to_user_assignment('RSTEINER', 'OO LOCAL COCO REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RSTEINER/OO LOCAL COCO REPORTER harmony.usermgt.create_dds_item_assignment('RSTEINER', 'OO LOCAL COCO REPORTER', 'R3_COCO', 'ONE', '2258', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSTEINER', 'OO LOCAL COCO REPORTER', 'R3_COCO', 'ONE', '2249', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSTEINER', 'OO LOCAL COCO REPORTER', 'R3_COCO', 'ONE', '2248', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSTEINER', 'OO LOCAL COCO REPORTER', 'R3_COCO', 'ONE', '2247', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSTEINER', 'OO LOCAL COCO REPORTER', 'R3_COCO', 'ONE', '2101', sysdate, null); -- Inserting RoleToUserAssignment 'RSTEINER/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('RSTEINER', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RSTEINER/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('RSTEINER', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2258', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSTEINER', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2249', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSTEINER', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2248', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSTEINER', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2247', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSTEINER', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2101', sysdate, null); -- Inserting RoleToUserAssignment 'RSTEINER/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('RSTEINER', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RSTEINER/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('RSTEINER', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2258', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSTEINER', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2249', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSTEINER', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2248', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSTEINER', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2247', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSTEINER', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2101', sysdate, null); -- Inserting RoleToUserAssignment 'RSZCZYGI/AMMF LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('RSZCZYGI', 'AMMF LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RSZCZYGI/AMMF LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('RSZCZYGI', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012423', sysdate, null); -- Inserting RoleToUserAssignment 'RSZCZYGI/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('RSZCZYGI', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'RSZCZYGI/ICL LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('RSZCZYGI', 'ICL LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RSZCZYGI/ICL LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('RSZCZYGI', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012423', sysdate, null); -- Inserting RoleToUserAssignment 'RTAM/ICL LOCAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('RTAM', 'ICL LOCAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RTAM/ICL LOCAL REQUESTOR harmony.usermgt.create_dds_item_assignment('RTAM', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012026', sysdate, null); harmony.usermgt.create_dds_item_assignment('RTAM', 'ICL LOCAL REQUESTOR', 'R3_BUPA_ICL', 'ONE', '0000012022', sysdate, null); -- Inserting RoleToUserAssignment 'RTAM/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('RTAM', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RTAM/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('RTAM', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12026CAD', sysdate, null); harmony.usermgt.create_dds_item_assignment('RTAM', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12022CAD', sysdate, null); -- Inserting RoleToUserAssignment 'RTANIMOT/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('RTANIMOT', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'RTANIMOT/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('RTANIMOT', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RTANIMOT/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('RTANIMOT', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12432JPY', sysdate, null); -- Inserting RoleToUserAssignment 'RTANIMOT/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('RTANIMOT', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RTANIMOT/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('RTANIMOT', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '6078', sysdate, null); -- Inserting RoleToUserAssignment 'RTANIMOT/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('RTANIMOT', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RTANIMOT/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('RTANIMOT', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '6078', sysdate, null); -- Inserting RoleToUserAssignment 'RVANNUET/AMMF LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('RVANNUET', 'AMMF LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RVANNUET/AMMF LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('RVANNUET', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012011', sysdate, null); -- Inserting RoleToUserAssignment 'RVANNUET/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('RVANNUET', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'RVANNUET/ICL LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('RVANNUET', 'ICL LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RVANNUET/ICL LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('RVANNUET', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012011', sysdate, null); -- Inserting RoleToUserAssignment 'RVANNUET/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('RVANNUET', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RVANNUET/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('RVANNUET', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12011USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('RVANNUET', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12011GBP', sysdate, null); harmony.usermgt.create_dds_item_assignment('RVANNUET', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12011EUR', sysdate, null); -- Inserting RoleToUserAssignment 'RVANNUET/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('RVANNUET', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RVANNUET/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('RVANNUET', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2037', sysdate, null); -- Inserting RoleToUserAssignment 'RVERDICK/AMMF LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('RVERDICK', 'AMMF LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RVERDICK/AMMF LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('RVERDICK', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012893', sysdate, null); harmony.usermgt.create_dds_item_assignment('RVERDICK', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012643', sysdate, null); harmony.usermgt.create_dds_item_assignment('RVERDICK', 'AMMF LOCAL REPORTER', 'R3_BUPA_TRANSFERS', 'ONE', '0000012112', sysdate, null); -- Inserting RoleToUserAssignment 'RVERDICK/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('RVERDICK', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'RVERDICK/BF LOCAL AUTHORIZER' harmony.usermgt.create_role_to_user_assignment('RVERDICK', 'BF LOCAL AUTHORIZER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RVERDICK/BF LOCAL AUTHORIZER harmony.usermgt.create_dds_item_assignment('RVERDICK', 'BF LOCAL AUTHORIZER', 'OO_GROUPING', 'ONE', '269', sysdate, null); harmony.usermgt.create_dds_item_assignment('RVERDICK', 'BF LOCAL AUTHORIZER', 'OO_GROUPING', 'ONE', '248', sysdate, null); harmony.usermgt.create_dds_item_assignment('RVERDICK', 'BF LOCAL AUTHORIZER', 'OO_GROUPING', 'ONE', '192', sysdate, null); -- Inserting RoleToUserAssignment 'RVERDICK/ICL LOCAL REPORTER' harmony.usermgt.create_role_to_user_assignment('RVERDICK', 'ICL LOCAL REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RVERDICK/ICL LOCAL REPORTER harmony.usermgt.create_dds_item_assignment('RVERDICK', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012893', sysdate, null); harmony.usermgt.create_dds_item_assignment('RVERDICK', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012643', sysdate, null); harmony.usermgt.create_dds_item_assignment('RVERDICK', 'ICL LOCAL REPORTER', 'R3_BUPA_ICL', 'ONE', '0000012112', sysdate, null); -- Inserting RoleToUserAssignment 'RVERDICK/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('RVERDICK', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RVERDICK/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('RVERDICK', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12893USD', sysdate, null); harmony.usermgt.create_dds_item_assignment('RVERDICK', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12643EUR', sysdate, null); harmony.usermgt.create_dds_item_assignment('RVERDICK', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12112EUR', sysdate, null); -- Inserting RoleToUserAssignment 'RVERDICK/OO LOCAL COCO AUTHORIZER/RELEASER' harmony.usermgt.create_role_to_user_assignment('RVERDICK', 'OO LOCAL COCO AUTHORIZER/RELEASER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RVERDICK/OO LOCAL COCO AUTHORIZER/RELEASER harmony.usermgt.create_dds_item_assignment('RVERDICK', 'OO LOCAL COCO AUTHORIZER/RELEASER', 'R3_COCO', 'ONE', '2292', sysdate, null); harmony.usermgt.create_dds_item_assignment('RVERDICK', 'OO LOCAL COCO AUTHORIZER/RELEASER', 'R3_COCO', 'ONE', '2270', sysdate, null); harmony.usermgt.create_dds_item_assignment('RVERDICK', 'OO LOCAL COCO AUTHORIZER/RELEASER', 'R3_COCO', 'ONE', '2241', sysdate, null); -- Inserting RoleToUserAssignment 'RVERDICK/RCM TRANSACTION REPORT' harmony.usermgt.create_role_to_user_assignment('RVERDICK', 'RCM TRANSACTION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RVERDICK/RCM TRANSACTION REPORT harmony.usermgt.create_dds_item_assignment('RVERDICK', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2270', sysdate, null); harmony.usermgt.create_dds_item_assignment('RVERDICK', 'RCM TRANSACTION REPORT', 'R3_COCO_RCM', 'ONE', '2241', sysdate, null); -- Inserting RoleToUserAssignment 'RVERDICK/Subledger and Cash Pool Reports' harmony.usermgt.create_role_to_user_assignment('RVERDICK', 'Subledger and Cash Pool Reports', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RVERDICK/Subledger and Cash Pool Reports harmony.usermgt.create_dds_item_assignment('RVERDICK', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2270', sysdate, null); harmony.usermgt.create_dds_item_assignment('RVERDICK', 'Subledger and Cash Pool Reports', 'R3_COCO', 'ONE', '2241', sysdate, null); -- Inserting RoleToUserAssignment 'RWILMSEN/BANK REPORTRING' harmony.usermgt.create_role_to_user_assignment('RWILMSEN', 'BANK REPORTRING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'RWILMSEN/IHC LOCAL POSITION REPORT' harmony.usermgt.create_role_to_user_assignment('RWILMSEN', 'IHC LOCAL POSITION REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RWILMSEN/IHC LOCAL POSITION REPORT harmony.usermgt.create_dds_item_assignment('RWILMSEN', 'IHC LOCAL POSITION REPORT', 'R3_IHBACCOUNT', 'ONE', 'EIHBE12003EUR', sysdate, null); -- Inserting RoleToUserAssignment 'RZWIERS/BF LOCAL REQUESTOR' harmony.usermgt.create_role_to_user_assignment('RZWIERS', 'BF LOCAL REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RZWIERS/BF LOCAL REQUESTOR harmony.usermgt.create_dds_item_assignment('RZWIERS', 'BF LOCAL REQUESTOR', 'OO_GROUPING', 'ONE', '269', sysdate, null); -- Inserting RoleToUserAssignment 'RZWIERS/OO LOCAL COCO REQUESTOR' harmony.usermgt.create_role_to_user_assignment('RZWIERS', 'OO LOCAL COCO REQUESTOR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RZWIERS/OO LOCAL COCO REQUESTOR harmony.usermgt.create_dds_item_assignment('RZWIERS', 'OO LOCAL COCO REQUESTOR', 'R3_COCO', 'ONE', '2292', sysdate, null); commit; exception when others then rollback; raise; end; /
DELETE FROM OBJ_SUPPLIES_INFO WHERE --予約申請番号 SCHEDULED_APPLY_NO = /*applyNo*/ --物件状態 AND SUPPLIES_CONDITION = /*suppliesConditionNotApproved*/ --所属契約番号 AND BELONG_CONTRACT_NO IS NULL
-- phpMyAdmin SQL Dump -- version 4.8.2 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1 -- Generation Time: Feb 28, 2019 at 08:59 PM -- Server version: 10.1.34-MariaDB -- 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: `matul_hi5` -- -- -------------------------------------------------------- -- -- Table structure for table `advertisements` -- CREATE TABLE `advertisements` ( `id` int(10) UNSIGNED NOT NULL, `user_id` int(11) DEFAULT NULL, `email` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `adds_name` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `adds_type` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `image` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `position` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `style` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `ads_post_on` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `from_date` date NOT NULL, `to_date` date NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `image_link` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `embed_code` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `referral_code` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `articles` -- CREATE TABLE `articles` ( `id` int(10) UNSIGNED NOT NULL, `user_id` int(10) UNSIGNED NOT NULL, `article_category` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `article_website` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `article_title` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `article_description` longtext COLLATE utf8_unicode_ci NOT NULL, `article_info_from` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `article_info_description` longtext COLLATE utf8_unicode_ci, `article_featured_image` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `article_saved_status` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `balances` -- CREATE TABLE `balances` ( `id` int(10) UNSIGNED NOT NULL, `user_id` int(11) NOT NULL, `description` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `type` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `amount` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `details` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `withdraw` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `datwise` date NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `blog_posts` -- CREATE TABLE `blog_posts` ( `id` int(10) UNSIGNED NOT NULL, `heading` text COLLATE utf8_unicode_ci, `content` text COLLATE utf8_unicode_ci, `image` text COLLATE utf8_unicode_ci, `user_id` int(11) DEFAULT NULL, `published_at` datetime DEFAULT NULL, `is_published` int(11) DEFAULT NULL, `comment_count` int(11) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `checkbox` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'no', `read_amount` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0', `total_likes` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0', `total_dislikes` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0', `total_loves` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0', `total_angry` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0', `total_sad` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0', `total_happy` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0' ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `buyers` -- CREATE TABLE `buyers` ( `id` int(10) UNSIGNED NOT NULL, `user_id` int(10) UNSIGNED NOT NULL, `buyer_item_code` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `buyer_status` tinyint(1) DEFAULT NULL, `buyer_pro_weight` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `buyer_category` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `buyer_sale_price` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `buyer_website` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `buyer_pro_title` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `buyer_pro_description` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `buyer_location` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `buyer_featured_image` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `buyer_commission_percentage` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `buyer_hidden_info` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `buyer_hidden_price` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `buyer_hidden_description` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `buyer_saved_status` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `categories` -- CREATE TABLE `categories` ( `id` int(10) UNSIGNED NOT NULL, `category` longtext COLLATE utf8_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `chatrooms` -- CREATE TABLE `chatrooms` ( `id` int(10) UNSIGNED NOT NULL, `chatRoomId` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `comment_post` -- CREATE TABLE `comment_post` ( `id` int(10) UNSIGNED NOT NULL, `content` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `user_id` int(11) NOT NULL, `post_id` int(11) NOT NULL, `parent_comment_id` int(11) DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `comment_reactions` -- CREATE TABLE `comment_reactions` ( `id` int(10) UNSIGNED NOT NULL, `post_id` int(11) NOT NULL, `comment_id` int(11) NOT NULL, `user_id` int(11) NOT NULL, `comment_reaction` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `coupon` -- CREATE TABLE `coupon` ( `id` int(10) UNSIGNED NOT NULL, `coupon_code` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `number_available` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `start_date` date DEFAULT NULL, `expiration_date` date DEFAULT NULL, `coupon_type` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `coupon_amount` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT '0', `criteria` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `used` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `shipping_method` text COLLATE utf8_unicode_ci, `selected_product` text COLLATE utf8_unicode_ci, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `disputes` -- CREATE TABLE `disputes` ( `id` int(10) UNSIGNED NOT NULL, `dispute_no` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `dispute_maker` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `status` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `open_with` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `note` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `dispute_maker_id` int(11) NOT NULL, `replyer_id` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `events` -- CREATE TABLE `events` ( `id` int(10) UNSIGNED NOT NULL, `user_id` int(11) NOT NULL, `event_checked` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `schedule_checked` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `event_featured_image` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `event_date` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `event_start_time` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `event_end_time` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `event_ticket_price` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `event_details` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `event_title` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `interested_in_event` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `going_in_event` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `event_city` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `event_country` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `event_phone` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `event_address` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `event_is_online` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `no_need_approval` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `need_approval` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `event_host_image` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `event_host_name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `event_type` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `event_description` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `event_modal_image` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `is_published` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'no' ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `event_modals` -- CREATE TABLE `event_modals` ( `id` int(10) UNSIGNED NOT NULL, `user_id` int(11) NOT NULL, `event_date` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `event_start_time` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `event_end_time` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `event_ticket_price` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `event_details` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `event_id` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `event_visitors` -- CREATE TABLE `event_visitors` ( `id` int(10) UNSIGNED NOT NULL, `user_id` int(11) NOT NULL, `owner_id` int(11) NOT NULL, `event_id` int(11) NOT NULL, `event_modal_id` int(11) DEFAULT NULL, `going_status` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'pending', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `examination` -- CREATE TABLE `examination` ( `id` int(10) UNSIGNED NOT NULL, `question` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `answer` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `image` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `youtube_link` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `faq` -- CREATE TABLE `faq` ( `id` int(10) UNSIGNED NOT NULL, `question` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `answer` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `image` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `youtube_link` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `home_page_setups` -- CREATE TABLE `home_page_setups` ( `id` int(10) UNSIGNED NOT NULL, `user_id` int(11) NOT NULL, `homepage_link` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `levels` -- CREATE TABLE `levels` ( `id` int(10) UNSIGNED NOT NULL, `userleveler` int(11) NOT NULL, `userbeenleveled` int(11) NOT NULL, `value` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `memberships` -- CREATE TABLE `memberships` ( `id` int(10) UNSIGNED NOT NULL, `user_id` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `join_date` date DEFAULT NULL, `membership_type` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `membership_category` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `admin_code` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `status` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `cell_num` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `email` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `reference_id` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `reference_name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `nid_no` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `instagram` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `facebook` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `linkedin` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `twitter` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `gender` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `nationality` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `date_of_birth` date DEFAULT NULL, `yearly_income` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `profession_name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `profession_type` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `share_rate` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `blah` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `account_detail` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `nationality_2` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `menu_options` -- CREATE TABLE `menu_options` ( `id` int(11) NOT NULL, `name` varchar(100) COLLATE utf8_unicode_ci NOT NULL, `link` varchar(200) COLLATE utf8_unicode_ci NOT NULL, `show_order` int(11) NOT NULL, `ref` varchar(50) COLLATE utf8_unicode_ci NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `menu_options` -- INSERT INTO `menu_options` (`id`, `name`, `link`, `show_order`, `ref`) VALUES (1, 'User Access', '/UserAccess', 1, 'profile_drop_down'), (2, 'HelpDesk', '/admin', 3, 'profile_drop_down'), (3, 'Category Setup', '/CategorySetup', 4, 'profile_drop_down'), (4, 'Admin Panel', '/admin', 5, 'profile_drop_down'), (5, 'Edit Product Listing', '/admin', 6, 'profile_drop_down'), (6, 'Refresh Order', '/admin', 7, 'profile_drop_down'), (7, 'Query Screen', '/QueryScreen', 2, 'profile_drop_down'), (8, 'Brand Update', '/brandupdate', 8, 'profile_drop_down'), (9, 'Accountant', '/accountant', 9, 'profile_drop_down'), (10, 'Advertisement', '/advertisement', 0, 'profile_drop_down'), (14, 'Membership admin', '/membership', 0, 'profile_drop_down'), (15, 'Homepage Setup', '/homepage-setup', 10, 'profile_drop_down'), (16, 'Training Setup', '/trainsetup', 11, 'profile_drop_down'), (17, 'Exam Setup', '/examsetup', 12, 'profile_drop_down'), (18, 'Event Admin', '/events', 13, 'style=\"float:right;margin-right: -124px;'), (19, 'Blog Admin', '/public-blog', 14, 'profile_drop_down'), (22, 'SendEmail', '/sendemailforunread', 11, 'profile_drop_down'), (23, 'Faq Setup', '/faqsetup', 15, 'profile_drop_down'); -- -------------------------------------------------------- -- -- Table structure for table `messages` -- CREATE TABLE `messages` ( `id` int(10) UNSIGNED NOT NULL, `RoomId` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `sender` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `receiver` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `message` text COLLATE utf8_unicode_ci NOT NULL, `readWriteStatus` int(11) NOT NULL, `activationStatus` int(11) NOT NULL, `UTC` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `selftime` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `migrations` -- CREATE TABLE `migrations` ( `id` int(10) UNSIGNED NOT NULL, `migration` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `batch` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `migrations` -- INSERT INTO `migrations` (`id`, `migration`, `batch`) VALUES (1, '2014_10_12_000000_create_users_table', 1), (2, '2014_10_12_100000_create_password_resets_table', 1), (3, '2018_10_11_191629_create_buyers_table', 1), (4, '2018_10_11_191646_create_sellers_table', 1), (5, '2018_10_12_194145_create_articles_table', 1), (6, '2018_11_07_110554_add_status_column_to_user_table', 1), (7, '2018_11_08_150306_create_orders_table', 1), (8, '2018_11_16_221256_create_menu_options_table', 1), (9, '2018_11_16_221256_create_site_info_table', 1), (10, '2018_11_16_221256_create_user_menu_table', 1), (11, '2018_11_17_043724_create_queries_table', 1), (12, '2018_11_17_091510_add_fields_in_users_table', 1), (13, '2018_11_22_143254_create_saved_posts_table', 1), (14, '2018_12_01_104115_add_buyer_saved_status_to_buyers', 1), (15, '2018_12_01_120751_add_seller_saved_status_to_buyers', 1), (16, '2018_12_01_124821_add_article_saved_status_to_buyers', 1), (17, '2018_12_10_201905_change_article_table', 1), (18, '2018_12_10_202540_change_sellers_table', 1), (19, '2018_12_12_045327_change_sellers_again_table', 1), (20, '2018_12_12_045517_change_sellers_again_d_table', 1), (21, '2018_12_15_083338_create_categories_table', 1), (22, '2018_12_15_104630_create_balances_table', 1), (23, '2018_12_15_113749_add_details_to_balances', 1), (24, '2018_12_15_130629_add_with_to_balances', 1), (25, '2018_12_15_131535_add_datwise_to_balances', 1), (26, '2018_12_15_133412_change_nullable_balances_stable', 1), (27, '2018_12_15_194436_change_nullable_f_balances_table', 1), (28, '2018_12_23_104046_chatroom', 1), (29, '2018_12_23_104253_message', 1), (30, '2018_12_23_134617_create_table_coupon', 1), (31, '2018_12_31_082958_add_online_status', 1), (32, '2019_01_05_103903_leveltable', 1), (33, '2019_01_07_055758_create_professions_table', 1), (34, '2019_01_10_100052_add_utc_zone_to_user', 1), (35, '2019_01_10_215839_create_menu_option_seeding_table', 1), (36, '2019_01_20_123612_updates_menu_option_table', 1), (37, '2019_01_23_203938_create_home_page_setups', 1), (38, '2019_01_26_195318_create_memberships_table', 1), (39, '2019_02_02_125557_create_blog_posts_table', 1), (40, '2019_02_03_084924_create_event_visitors_table', 1), (41, '2019_02_05_145812_create_comment_post_table', 1), (42, '2019_02_09_062719_update_blog_comment_table', 1), (43, '2019_02_09_075507_create_events_table', 1), (44, '2019_02_09_075704_create_event_modals_table', 1), (45, '2019_02_09_130443_advertisement_new_matul', 1), (46, '2019_02_09_132127_change_to_advertisement_table_matul', 1), (47, '2019_02_09_135413_create_examination_table', 1), (48, '2019_02_09_135845_create_faq_table', 1), (49, '2019_02_09_140119_create_training_table', 1), (50, '2019_02_09_130443_create__advertisement_new_matul', 2), (51, '2019_02_16_030943_create_disputes_table', 2), (52, '2019_02_16_050630_create_replies_table', 2), (53, '2019_02_16_153805_add_dispute_naker_id_to_disputes', 2), (54, '2019_02_16_154701_add_replyer_id_to_disputes', 2), (55, '2019_02_16_155959_add_dispute_no_to_replies', 2), (56, '2019_02_17_164250_add_event_id_to__event__models', 2), (57, '2019_02_17_165717_add_event_modal_image_in_events', 2), (58, '2019_02_17_202030_create_comment_reactions', 2), (59, '2019_02_20_193608_add_is_published_in_events', 2), (60, '2019_02_22_062526_add_replyer_id_to_replies', 2), (61, '2019_02_26_153959_add_buy_colunms_to_blog_posts', 2), (62, '2019_02_26_185702_add_reactions_to_blog_posts', 2), (63, '2019_02_27_185918_add_verify', 2); -- -------------------------------------------------------- -- -- Table structure for table `orders` -- CREATE TABLE `orders` ( `id` int(10) UNSIGNED NOT NULL, `user_id` int(10) UNSIGNED NOT NULL, `order_number` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `buyer_status` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `seller_order_status` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `password_resets` -- CREATE TABLE `password_resets` ( `email` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `token` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `professions` -- CREATE TABLE `professions` ( `id` int(10) UNSIGNED NOT NULL, `profession_name` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `profession_type` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `queries` -- CREATE TABLE `queries` ( `id` int(10) UNSIGNED NOT NULL, `name` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `description` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `replies` -- CREATE TABLE `replies` ( `id` int(10) UNSIGNED NOT NULL, `note_id` int(11) NOT NULL, `notes` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `dispute_no` int(11) NOT NULL, `replyer_id` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `saved_posts` -- CREATE TABLE `saved_posts` ( `id` int(10) UNSIGNED NOT NULL, `user_id` int(10) UNSIGNED NOT NULL, `post_id` int(10) UNSIGNED NOT NULL, `post_type` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `sellers` -- CREATE TABLE `sellers` ( `id` int(10) UNSIGNED NOT NULL, `user_id` int(10) UNSIGNED NOT NULL, `seller_status` tinyint(1) DEFAULT NULL, `seller_item_code` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `seller_pro_weight` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `seller_category` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `seller_org_price` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `seller_sale_price` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `seller_website` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `seller_pro_title` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `seller_pro_description` longtext COLLATE utf8_unicode_ci NOT NULL, `seller_location` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `seller_info_from` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `seller_info_price` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `seller_info_description` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `seller_featured_image` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `seller_commission_percentage` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `seller_saved_status` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `site_info` -- CREATE TABLE `site_info` ( `id` int(11) NOT NULL, `attr_name` varchar(100) COLLATE utf8_unicode_ci NOT NULL, `attr_value` varchar(100) COLLATE utf8_unicode_ci NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `site_info` -- INSERT INTO `site_info` (`id`, `attr_name`, `attr_value`) VALUES (1, 'logo_pic', '1549780726.png'), (2, 'test_next_to_logo', 'Favicon'), (3, 'header_left_pic', '1549780726.png'), (4, 'site_name', '.center'), (5, 'site_slogan', 'everything I need ...'), (9, 'form_opacity', '1'), (6, 'header_right_pic', '1548180905.png'), (7, 'above_footer_pic', '1549780690.png'), (8, 'footer_pic', '1548180820.PNG'); -- -------------------------------------------------------- -- -- Table structure for table `training` -- CREATE TABLE `training` ( `id` int(10) UNSIGNED NOT NULL, `title` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `image` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `youtube_link` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -------------------------------------------------------- -- -- Table structure for table `users` -- CREATE TABLE `users` ( `id` int(10) UNSIGNED NOT NULL, `name` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `email` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `avatar` varchar(255) COLLATE utf8_unicode_ci NOT NULL DEFAULT 'default.png', `IsAdmin` tinyint(1) DEFAULT NULL, `location` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `phone_no` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `paypal_email` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `password` varchar(255) COLLATE utf8_unicode_ci NOT NULL, `email_verified_at` timestamp NULL DEFAULT NULL, `remember_token` varchar(100) COLLATE utf8_unicode_ci DEFAULT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `status` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `photo_id` text COLLATE utf8_unicode_ci, `webcam_image` text COLLATE utf8_unicode_ci, `onlineStatus` int(11) DEFAULT NULL, `utc` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `verify_tokekn` varchar(255) COLLATE utf8_unicode_ci DEFAULT NULL, `verify_status` tinyint(1) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `users` -- INSERT INTO `users` (`id`, `name`, `email`, `avatar`, `IsAdmin`, `location`, `phone_no`, `paypal_email`, `password`, `email_verified_at`, `remember_token`, `created_at`, `updated_at`, `status`, `photo_id`, `webcam_image`, `onlineStatus`, `utc`, `verify_tokekn`, `verify_status`) VALUES (2, 'Bakibillah Sakib', 'sakib192@gmail.com', 'default.png', NULL, NULL, NULL, NULL, '$2y$10$bzWRUgJtWHw1HDrCF/WadOvk5td24f7LoC4VjVez20g2XAFsrDlkS', NULL, NULL, '2018-11-16 12:09:19', '2018-11-16 12:09:19', '1', NULL, NULL, NULL, NULL, NULL, 0), (3, 'Arefa', 'arefa@hi5.com', '1542355689.jpg', 1, NULL, NULL, NULL, '$2y$10$lv1HoFX7pJzsYxjPEuZn9ubov9UMUZLMZlsGLyafdIALrKDPPk6OC', NULL, 'nHOrkk8k5fIXpRK23z9Mg71ZYVrQ5njFBinUFsa1QkzVPSjE1pod7k93mIm1', '2018-11-16 13:45:36', '2018-11-16 14:08:09', '1', NULL, NULL, NULL, NULL, NULL, 0), (4, 'Awais', 'awais@cbsurety.com', 'default.png', 1, NULL, NULL, NULL, '$2y$10$5A7Jtkle1JzHNcpkTXyRTupkTaSQF1kSowVI.YXNy.dLRyj0d1VSa', '2018-11-16 12:04:35', NULL, '2018-11-19 02:22:08', '2018-11-19 02:22:08', '1', NULL, NULL, NULL, NULL, NULL, 0), (5, 'Arefa', 'arefa.akhter.nila@gmail.com', '1549780419.jpg', NULL, NULL, NULL, NULL, '$2y$10$jbFstj1yBMTnEQdnEuavW.eZCXpfKVkxN8EcFoCGiS.QmDiO38ojK', NULL, '5BebzgV5EEJqb8SXQKfQKG9bA9ZSw4KdqbwwTYw5SZEEQsqBIbKg03WZIoKy', '2018-11-19 02:23:45', '2019-02-10 14:34:44', '1', NULL, '1549780484.png', 1, '480', NULL, 0), (6, 'Muhammad Kashif', 'aa@aa.com', '1544338965.jpg', NULL, NULL, NULL, NULL, '$2y$10$6uVO5vV8cK0prwGcFq4/n.qL1WdWU9WLnPZ58z.EtWoKv9crCcWaC', NULL, '8r6HqN4RPgqdhSikmgTkqgrGupKmJxrPfxnpW7820iUzv4ZJGVxQbMM6r9vY', '2018-11-19 02:29:31', '2019-02-09 01:02:44', '1', NULL, NULL, 1, '-360', NULL, 0), (41, 'admin', 'admin@hi5.com', '1548357919.jpg', 1, NULL, NULL, NULL, '$2y$10$6uVO5vV8cK0prwGcFq4/n.qL1WdWU9WLnPZ58z.EtWoKv9crCcWaC', '2018-11-16 12:04:35', '78LqpbiGs1nsflgOHoY5lkBR1LeAeehJDy8Cl7FRvWkKsf6sNXGyfHPcfo5z', '2018-11-16 12:04:35', '2019-02-09 01:52:09', '1', '1547977754.jpg', '1548181284.png', 0, '-300', NULL, 0), (42, 'Ujjal', 'ujjal@hi5.com', '1542771611.JPG', NULL, NULL, NULL, NULL, '$2y$10$f9fqtlj4ISGjqR68dOFj1etBCDwfl2F9uOtaFBUHCZItk9Ipcmgvq', NULL, 'UKPebRGWkqLzYIbJ4qj8EOQoigcy7vk5AD0UZX2kxQ9bT66Adp8Z7yJzlyt7', '2018-11-21 09:36:16', '2018-11-21 09:40:11', '1', NULL, NULL, NULL, NULL, NULL, 0), (43, 'Hamid Raza', 'badshah.hazor@gmail.com', 'default.png', NULL, NULL, NULL, NULL, '$2y$10$7EsnPOuhgVf2mwUSzPUvd.CFZ6jPLpnqhoGzYBvU78JzNq2C/9ECu', NULL, 'oyACFEx8fkcGxG6CurjyN13n3BwvwiIVEifqslWteXO7vGc8ZYJ8me4JY1wm', '2018-12-03 01:09:52', '2018-12-03 01:09:52', '1', NULL, NULL, NULL, NULL, NULL, 0), (44, 'waqas767', 'waqas767@yahoo.com', 'default.png', NULL, NULL, NULL, NULL, '$2y$10$3aM6H6ZFgW3UUGiLQdPEDOb62vh6IaT9J4BcrqzdQilzAiAyh02x6', NULL, NULL, '2018-12-03 08:59:09', '2018-12-03 08:59:09', '1', NULL, NULL, NULL, NULL, NULL, 0), (45, 'babar afzal', 'babarmalik6444@gmail.com', 'default.png', NULL, NULL, NULL, NULL, '$2y$10$AurO88j5fhBTrvxErZaVj.QOmhHoX7Ft.aqVH6.7qGOLJ79TJx6u2', NULL, NULL, '2018-12-04 05:43:09', '2018-12-04 05:43:09', '1', NULL, NULL, NULL, NULL, NULL, 0), (46, 'Masum Kabir', 'mylearning705@gmail.com', 'default.png', NULL, NULL, NULL, NULL, '$2y$10$9qGpqlt6drufsZ82Qq/9L.oOjXvGLrfmfLNLnxMrxbYeQK/M9tm.G', NULL, 'jkoSnPhe8AGpLqYHzOfunEkictT90Gm8Fk4ulgKQXiRB3Tiu98vweonYn6MX', '2018-12-04 15:11:04', '2018-12-04 15:11:04', '1', NULL, NULL, NULL, NULL, NULL, 0), (47, 'ankur', 'ankurmakavana7@gmail.com', 'default.png', NULL, NULL, NULL, NULL, '$2y$10$E1EH/1KEEO5nZ1FOjE5j4OjlOB/g8SlDR.Ixkp/ELG.ZcruwiyAJ.', NULL, NULL, '2018-12-08 14:51:25', '2018-12-08 14:51:25', '1', NULL, NULL, NULL, NULL, NULL, 0), (48, 'Bakibillah Sakib', 'developer@sakibian.com', 'default.png', NULL, NULL, NULL, NULL, '$2y$10$vRsVUn0x448z1YLHR5OfHeV5YhTDSnK5IsdtAKbW1.L0y.RnR3JMS', NULL, NULL, '2018-12-24 17:23:27', '2018-12-24 17:23:27', '1', NULL, NULL, NULL, NULL, NULL, 0), (49, 'Saleh', 'unmax.systems@gmail.com', 'default.png', NULL, NULL, NULL, NULL, '$2y$10$bvCSMBiK9FkEq/9GkdRQV.srJSKASmnXmHx68KjJ2/HO72SNHf01G', NULL, NULL, '2018-12-31 13:08:13', '2018-12-31 13:08:13', '1', NULL, NULL, NULL, NULL, NULL, 0), (51, 'Abu Saleh Matul', 'saleh.matul@gmail.com', 'saleh.matul@gmail.com', NULL, 'Dhaka', '0101010', 'a@a.com', '$2y$10$MpOjpvYKdGHhhDxOer/rl.eZkLO4o7SB1YUQ4EcV13sj9nhA9Vc7i', '2019-02-27 18:00:00', NULL, '2019-02-28 13:53:41', '2019-02-28 13:55:12', NULL, NULL, NULL, NULL, NULL, NULL, 1); -- -------------------------------------------------------- -- -- Table structure for table `user_menu` -- CREATE TABLE `user_menu` ( `id` int(11) NOT NULL, `user_id` int(11) NOT NULL, `menu_options_id` int(11) NOT NULL ) ENGINE=MyISAM DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Dumping data for table `user_menu` -- INSERT INTO `user_menu` (`id`, `user_id`, `menu_options_id`) VALUES (262, 41, 18), (261, 41, 17), (260, 41, 16), (259, 41, 15), (258, 41, 9), (257, 41, 8), (256, 41, 6), (255, 41, 5), (330, 5, 19), (329, 5, 18), (328, 5, 17), (327, 5, 22), (326, 5, 16), (325, 5, 15), (324, 5, 9), (323, 5, 8), (75, 43, 10), (76, 43, 1), (77, 43, 7), (78, 43, 2), (79, 43, 3), (80, 43, 4), (81, 43, 5), (82, 43, 6), (83, 43, 8), (84, 43, 9), (254, 41, 4), (253, 41, 3), (252, 41, 2), (251, 41, 7), (250, 41, 1), (249, 41, 14), (248, 41, 10), (263, 41, 19), (322, 5, 6), (321, 5, 5), (320, 5, 4), (319, 5, 3), (318, 5, 2), (317, 5, 7), (316, 5, 1), (315, 5, 14), (314, 5, 10), (331, 5, 23); -- -- Indexes for dumped tables -- -- -- Indexes for table `advertisements` -- ALTER TABLE `advertisements` ADD PRIMARY KEY (`id`); -- -- Indexes for table `articles` -- ALTER TABLE `articles` ADD PRIMARY KEY (`id`); -- -- Indexes for table `balances` -- ALTER TABLE `balances` ADD PRIMARY KEY (`id`); -- -- Indexes for table `blog_posts` -- ALTER TABLE `blog_posts` ADD PRIMARY KEY (`id`); -- -- Indexes for table `buyers` -- ALTER TABLE `buyers` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `buyers_buyer_item_code_unique` (`buyer_item_code`); -- -- Indexes for table `categories` -- ALTER TABLE `categories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `chatrooms` -- ALTER TABLE `chatrooms` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `chatrooms_chatroomid_unique` (`chatRoomId`); -- -- Indexes for table `comment_post` -- ALTER TABLE `comment_post` ADD PRIMARY KEY (`id`); -- -- Indexes for table `comment_reactions` -- ALTER TABLE `comment_reactions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `coupon` -- ALTER TABLE `coupon` ADD PRIMARY KEY (`id`); -- -- Indexes for table `disputes` -- ALTER TABLE `disputes` ADD PRIMARY KEY (`id`); -- -- Indexes for table `events` -- ALTER TABLE `events` ADD PRIMARY KEY (`id`); -- -- Indexes for table `event_modals` -- ALTER TABLE `event_modals` ADD PRIMARY KEY (`id`); -- -- Indexes for table `event_visitors` -- ALTER TABLE `event_visitors` ADD PRIMARY KEY (`id`); -- -- Indexes for table `examination` -- ALTER TABLE `examination` ADD PRIMARY KEY (`id`); -- -- Indexes for table `faq` -- ALTER TABLE `faq` ADD PRIMARY KEY (`id`); -- -- Indexes for table `home_page_setups` -- ALTER TABLE `home_page_setups` ADD PRIMARY KEY (`id`); -- -- Indexes for table `levels` -- ALTER TABLE `levels` ADD PRIMARY KEY (`id`); -- -- Indexes for table `memberships` -- ALTER TABLE `memberships` ADD PRIMARY KEY (`id`); -- -- Indexes for table `menu_options` -- ALTER TABLE `menu_options` ADD PRIMARY KEY (`id`); -- -- Indexes for table `messages` -- ALTER TABLE `messages` ADD PRIMARY KEY (`id`); -- -- Indexes for table `migrations` -- ALTER TABLE `migrations` ADD PRIMARY KEY (`id`); -- -- Indexes for table `orders` -- ALTER TABLE `orders` ADD PRIMARY KEY (`id`); -- -- Indexes for table `password_resets` -- ALTER TABLE `password_resets` ADD KEY `password_resets_email_index` (`email`); -- -- Indexes for table `professions` -- ALTER TABLE `professions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `queries` -- ALTER TABLE `queries` ADD PRIMARY KEY (`id`); -- -- Indexes for table `replies` -- ALTER TABLE `replies` ADD PRIMARY KEY (`id`); -- -- Indexes for table `saved_posts` -- ALTER TABLE `saved_posts` ADD PRIMARY KEY (`id`); -- -- Indexes for table `sellers` -- ALTER TABLE `sellers` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `sellers_seller_item_code_unique` (`seller_item_code`); -- -- Indexes for table `site_info` -- ALTER TABLE `site_info` ADD PRIMARY KEY (`id`); -- -- Indexes for table `training` -- ALTER TABLE `training` ADD PRIMARY KEY (`id`); -- -- Indexes for table `users` -- ALTER TABLE `users` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `users_email_unique` (`email`); -- -- Indexes for table `user_menu` -- ALTER TABLE `user_menu` ADD PRIMARY KEY (`id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `advertisements` -- ALTER TABLE `advertisements` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `articles` -- ALTER TABLE `articles` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `balances` -- ALTER TABLE `balances` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `blog_posts` -- ALTER TABLE `blog_posts` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `buyers` -- ALTER TABLE `buyers` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `categories` -- ALTER TABLE `categories` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `chatrooms` -- ALTER TABLE `chatrooms` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `comment_post` -- ALTER TABLE `comment_post` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `comment_reactions` -- ALTER TABLE `comment_reactions` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `coupon` -- ALTER TABLE `coupon` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `disputes` -- ALTER TABLE `disputes` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `events` -- ALTER TABLE `events` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `event_modals` -- ALTER TABLE `event_modals` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `event_visitors` -- ALTER TABLE `event_visitors` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `examination` -- ALTER TABLE `examination` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `faq` -- ALTER TABLE `faq` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `home_page_setups` -- ALTER TABLE `home_page_setups` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `levels` -- ALTER TABLE `levels` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `memberships` -- ALTER TABLE `memberships` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `menu_options` -- ALTER TABLE `menu_options` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=24; -- -- AUTO_INCREMENT for table `messages` -- ALTER TABLE `messages` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `migrations` -- ALTER TABLE `migrations` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=64; -- -- AUTO_INCREMENT for table `orders` -- ALTER TABLE `orders` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `professions` -- ALTER TABLE `professions` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `queries` -- ALTER TABLE `queries` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `replies` -- ALTER TABLE `replies` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `saved_posts` -- ALTER TABLE `saved_posts` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `sellers` -- ALTER TABLE `sellers` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `site_info` -- ALTER TABLE `site_info` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10; -- -- AUTO_INCREMENT for table `training` -- ALTER TABLE `training` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `users` -- ALTER TABLE `users` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=52; -- -- AUTO_INCREMENT for table `user_menu` -- ALTER TABLE `user_menu` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=332; 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 */;
SELECT DISTINCT(CITY) FROM STATION WHERE NOT (CITY LIKE 'A%' OR CITY LIKE 'E%' OR CITY LIKE 'I%' OR CITY LIKE 'O%' OR CITY LIKE 'U%');
@../sql/GRC_BD_FX_SANITY_TESTS_{ID_JIRA}.sql exit
set echo on set define off set sqlblanklines on spool KC-RELEASE-5_2_1-UA-ORACLE.log @../../current/5.2.1/KC-5.2.1-DatabaseUpgradeScript.sql commit; exit
create database shop; /*create table user_info */ create table user_info (user_id int(10), firstname varchar(100),lastname varchar(200) ,email varchar(100),password varchar(100),mobile varchar(20),add1 varchar(200),add2 varchar(300)); ALTER TABLE `user_info` CHANGE `user_id` `user_id` INT(10) NULL DEFAULT NULL AUTO_INCREMENT, add PRIMARY KEY (`user_id`); /* create product*/ create table product (product_id int(10),product_cat varchar(100),product_brand varchar(100), product_price varchar(100),product_desc varchar(200),product_image varchar(100), product_keyword varchar(100), product_title varchar(100)); /* primary key added*/ ALTER TABLE `product` CHANGE `product_id` `product_id` INT(10) NULL DEFAULT NULL AUTO_INCREMENT, add PRIMARY KEY (`product_id`); /*insert record */ INSERT INTO `product` (`product_id`, `product_cat`, `product_brand`, `product_price`, `product_desc`, `product_image`, `product_keyword`, `product_title`) VALUES (NULL, '1', '3', '12000.00', 'samsung j5 prime', 'samsung.jpg', 'samusng j5 prime', 'samsung j5'); INSERT INTO `product` (`product_id`, `product_cat`, `product_brand`, `product_price`, `product_desc`, `product_image`, `product_keyword`, `product_title`) VALUES (NULL, '1', '2', '20000.00', 'samsung new series ', 'mobile5.jpeg', 'samsung new series', 'samsung A30'); INSERT INTO `product` (`product_id`, `product_cat`, `product_brand`, `product_price`, `product_desc`, `product_image`, `product_keyword`, `product_title`) VALUES (NULL, '1', '2', '5000.00', 'samsung j1', 'mobile4.jpeg', 'samsung mobile j1', 'samsung A10'); INSERT INTO `product` (`product_id`, `product_cat`, `product_brand`, `product_price`, `product_desc`, `product_image`, `product_keyword`, `product_title`) VALUES (NULL, '3', '6', '500.00', 'round t-shirt', 'boyes.jpg', 'red rounded t-shrit', 'red t-shirt'); INSERT INTO `product` (`product_id`, `product_cat`, `product_brand`, `product_price`, `product_desc`, `product_image`, `product_keyword`, `product_title`) VALUES (NULL, '3', '6', '750.00', 'jacket brown', 'boy3.jpg', 'jacket , brown', 'jacket brown'); INSERT INTO `product` (`product_id`, `product_cat`, `product_brand`, `product_price`, `product_desc`, `product_image`, `product_keyword`, `product_title`) VALUES (NULL, '3', '6', '350.00', 'casual shirt', 'boy.jpg', 'casual shirt', 'formal shirt'); INSERT INTO `product` (`product_id`, `product_cat`, `product_brand`, `product_price`, `product_desc`, `product_image`, `product_keyword`, `product_title`) VALUES (NULL, '3', '6', '700.00', 'white t-shirt', 'shirt.jpg', 'white shirt', 'wthie t-shirt'); INSERT INTO `product` (`product_id`, `product_cat`, `product_brand`, `product_price`, `product_desc`, `product_image`, `product_keyword`, `product_title`) VALUES (NULL, '2', '6', '300.00', 'yellow t-shirt', 'yellow.jpg', 'yellow t-shirt', 'yellow t-shirt '); INSERT INTO `product` (`product_id`, `product_cat`, `product_brand`, `product_price`, `product_desc`, `product_image`, `product_keyword`, `product_title`) VALUES (NULL, '2', '6', '800', 'white or black ', 'white.jpg', 'white or black ', 'white and black'); INSERT INTO `product` (`product_id`, `product_cat`, `product_brand`, `product_price`, `product_desc`, `product_image`, `product_keyword`, `product_title`) VALUES (NULL, '2', '6', '800', 'hat dress', 'ladies1.jpg', 'white hat', 'white top'); INSERT INTO `product` (`product_id`, `product_cat`, `product_brand`, `product_price`, `product_desc`, `product_image`, `product_keyword`, `product_title`) VALUES (NULL, '2', '6', '2500', 'jense top and paint', 'ladies.jpg', 'jense top', 'jense top '); INSERT INTO `product` (`product_id`, `product_cat`, `product_brand`, `product_price`, `product_desc`, `product_image`, `product_keyword`, `product_title`) VALUES (NULL, '1', '3', '14000', 'samsung mobile', 'samsung1.jpg', 'samsung mobile A10', 'Samsung A10'); INSERT INTO `product` (`product_id`, `product_cat`, `product_brand`, `product_price`, `product_desc`, `product_image`, `product_keyword`, `product_title`) VALUES (NULL, '1', '3', '10000', 'samsung j5 mobile', 'samsung2.jpg', 'samsung mobile A30', 'Samsung A30'); INSERT INTO `product` (`product_id`, `product_cat`, `product_brand`, `product_price`, `product_desc`, `product_image`, `product_keyword`, `product_title`) VALUES (NULL, '3', '6', '914', 'cape Dress', 'kids1.jpg', 'solid fit flare cape Dress', 'Cape Dress'); INSERT INTO `product` (`product_id`, `product_cat`, `product_brand`, `product_price`, `product_desc`, `product_image`, `product_keyword`, `product_title`) VALUES (NULL, '1', '1', '45000', 'Laptop ', 'laptop4.jpeg', 'laptop hp', 'hp laptop'); INSERT INTO `product` (`product_id`, `product_cat`, `product_brand`, `product_price`, `product_desc`, `product_image`, `product_keyword`, `product_title`) VALUES (NULL, '1', '1', '35000', 'lenovo laptop', 'laptop1.jpeg', 'laptop.jpeg', 'lenovo laptop'); INSERT INTO `product` (`product_id`, `product_cat`, `product_brand`, `product_price`, `product_desc`, `product_image`, `product_keyword`, `product_title`) VALUES (NULL, '1', '1', '75000', 'lenovo laptop', 'laptop5.jpeg', 'ausus', 'Dell laptop'); INSERT INTO `product` (`product_id`, `product_cat`, `product_brand`, `product_price`, `product_desc`, `product_image`, `product_keyword`, `product_title`) VALUES (NULL, '5', NULL, '120000', 'luxury wooden sofa set', 'sofa1.jpg', 'wooden sofa set', 'wooden sofa set '); /*create category */ create table catergory (cid int (10),ctitle varchar(100)); /*primary key*/ ALTER TABLE `catergory` CHANGE `cid` `cid` INT(10) NULL DEFAULT NULL AUTO_INCREMENT, add PRIMARY KEY (`cid`); /* insert record */; INSERT INTO `catergory` ( `ctitle`) VALUES ( 'Electronic'); INSERT INTO `catergory` ( `ctitle`) VALUES ( 'ladies'); INSERT INTO `catergory` ( `ctitle`) VALUES ( 'mens'); INSERT INTO `catergory` ( `ctitle`) VALUES ( 'furniture'); /* create brand */ create table brand (brand_id int (10),brand_title varchar(100)); /*primary key*/ ALTER TABLE `brand` CHANGE `brand_id` `brand_id` INT(10) NULL DEFAULT NULL AUTO_INCREMENT, add PRIMARY KEY (`brand_id`); /*insert Record */ INSERT INTO `brand` ( `brand_title`) VALUES ( 'HP'); INSERT INTO `brand` ( `brand_title`) VALUES ( 'Samsung'); INSERT INTO `brand` ( `brand_title`) VALUES ( 'cloth'); /*creat card*/ create table card(id int(30),user_id varchar(50),p_id int(30),ip_add int(30),product_title varchar(200),product_image varchar(300),qty int(30), price int(30), total_amount int(100)); ALTER TABLE `card` CHANGE `id` `id` INT(30) NULL DEFAULT NULL AUTO_INCREMENT, add PRIMARY KEY (`id`); /*creat card*/
SELECT TOP 1000 a.RequestUsername, a.ActivityId, a.ActivityDate, at.Name, at.ActivityTypeId, d.Value, dt.Name FROM GISite.audit.Activity a (NOLOCK) JOIN GISite.audit.ActivityType at (NOLOCK) ON a.ActivityTypeId = at.ActivityTypeId JOIN GISite.audit.Detail d (NOLOCK) ON a.ActivityId = d.ActivityId JOIN GISite.audit.DetailType dt (NOLOCK) ON d.DetailTypeId = dt.DetailTypeId WHERE a.ActivityDate >= GETDATE() - 1 ORDER BY a.ActivityId DESC SELECT COUNT(*), RequestServer FROM GISite.audit.Activity GROUP BY RequestServer
create table empty_table ( id bigint generated by default as identity, last_updated timestamp ); create table date_range_test ( id bigint generated by default as identity, last_updated timestamp ); insert into date_range_test (last_updated) values ('2010-02-01-00.00.00.000000'), ('2010-02-01-00.00.01.000000'), ('2010-02-01-00.00.03.000000'); create table string_column_test ( id bigint generated by default as identity, col_fixed char(20), col_string varchar(255), col_clob clob ); insert into string_column_test (col_fixed, col_string, col_clob) values (NULL, NULL, NULL), ('', '', ''), ('a', 'b', 'c'), (' a ', ' b ', ' c '); create table numeric_column_test ( id bigint generated by default as identity, col_int int, col_double double ); insert into numeric_column_test (col_int, col_double) values (NULL, NULL), (0, 0), (12, 34.56); create table datetime_column_test ( id bigint generated by default as identity, col_date date, col_time time, col_datetime timestamp ); insert into datetime_column_test (col_date, col_time, col_datetime) values (NULL, NULL, NULL), ('2010-01-01', '00:00:00', '2010-01-01 00:00:00'); create table subquery_test ( id bigint primary key generated by default as identity ); create table subquery_joined_test ( id bigint generated by default as identity, parent_id bigint not null, name varchar(255) ); alter table subquery_joined_test add foreign key (parent_id) references subquery_test(id); insert into subquery_test (id) values (1), (2), (3); insert into subquery_joined_test (parent_id, name) values (1, 'redfish'), (1, 'bluefish'), (3, 'onefish'), (3, 'twofish');
INSERT INTO notespace.notes(id, userid, content, created) VALUES ( c8f727b3-f31d-41a3-9d25-e0d282dd82cd, c8f727b3-f31d-41a3-9d25-e0d282dd82cd, 'some content 1', '2016-10-11 19:06:21'); INSERT INTO notespace.notes(id, userid, content, created) VALUES ( 4a5d0831-4630-4e82-b3bb-80fe8a7dc9bd, 05cd3079-a9ea-4cff-ba22-b4211a95d1be, 'some content 2', '2016-12-10 19:06:21'); INSERT INTO notespace.notes(id, userid, content, created) VALUES ( 3e6ea370-e09a-4c82-b413-f557f4baf3e3, 6cc1eb8f-fe59-47a1-a9b2-d51399d79f89, 'some content 3', '2017-02-20 18:06:21'); INSERT INTO notespace.notes(id, userid, content, created) VALUES ( 05db40e8-0eb6-4166-9a97-aece071237fd, 789ad333-3a36-4349-8b50-0279b94b5091, 'some content 4', '2017-11-11 19:06:21');
-- phpMyAdmin SQL Dump -- version 4.8.3 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1 -- Generation Time: Apr 03, 2020 at 09:32 AM -- Server version: 10.1.36-MariaDB -- PHP Version: 7.2.11 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: `restaurants` -- -- -------------------------------------------------------- -- -- Table structure for table `about` -- CREATE TABLE `about` ( `id` int(255) NOT NULL, `title` varchar(255) NOT NULL, `description` blob NOT NULL, `image` varchar(255) NOT NULL, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00' ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `about` -- INSERT INTO `about` (`id`, `title`, `description`, `image`, `updated_at`, `created_at`) VALUES (1, 'about us page', 0x3c703e54686973206973207665727920676f6f642e3c2f703e0d0a0d0a3c703e49206c696b65207468697320666c6174666f726d2e3c2f703e0d0a0d0a3c703e6f6b733c2f703e, 'uploads/user/slideshow2.jpg', '2020-03-30 22:42:52', '0000-00-00 00:00:00'); -- -------------------------------------------------------- -- -- Table structure for table `category` -- CREATE TABLE `category` ( `id` int(10) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `sp_name` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL DEFAULT 'category.png', `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `category` -- INSERT INTO `category` (`id`, `name`, `sp_name`, `image`, `created_at`, `updated_at`) VALUES (2, 'Mexicana', 'Mexicana', 'uploads/category/1.png', '2020-03-24 05:05:29', '2020-03-24 05:05:29'), (3, 'Internacional', 'Internacional', 'uploads/category/2.png', '2020-03-24 05:08:10', '2020-03-24 05:08:10'), (4, 'Comida rapida', 'Comida rapida', 'uploads/category/3.png', '2020-03-24 05:08:41', '2020-03-24 05:08:41'), (5, 'Del mar', 'Del mar', 'uploads/category/4.png', '2020-03-24 05:08:51', '2020-03-24 05:08:51'), (6, 'Bffetes', 'Bffetes', 'uploads/category/5.png', '2020-03-24 05:09:06', '2020-03-24 05:09:06'), (7, 'De autor', 'De autor', 'uploads/category/6.png', '2020-03-24 05:09:19', '2020-03-24 05:09:19'), (8, 'Colectivos', 'Colectivos', 'uploads/category/7.png', '2020-03-24 05:09:33', '2020-03-24 05:09:33'), (9, 'Desayunos', 'Desayunos', 'uploads/category/8.png', '2020-03-24 05:09:48', '2020-03-24 05:09:48'); -- -------------------------------------------------------- -- -- Table structure for table `city` -- CREATE TABLE `city` ( `id` bigint(20) NOT NULL, `state_id` int(11) DEFAULT NULL, `county_fips` int(11) DEFAULT NULL, `city_name` varchar(50) DEFAULT NULL, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00' ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `city` -- INSERT INTO `city` (`id`, `state_id`, `county_fips`, `city_name`, `updated_at`, `created_at`) VALUES (1, 50, 0, 'San Die Go', '2020-03-28 13:13:11', '2020-03-28 05:09:34'), (3, 50, 0, 'Lon Don', '2020-03-28 05:14:11', '2020-03-28 05:14:11'), (4, 50, 0, 'NewYork', '2020-03-28 05:14:21', '2020-03-28 05:14:21'), (5, 50, 0, 'Japan', '2020-03-30 01:02:41', '2020-03-30 01:02:41'); -- -------------------------------------------------------- -- -- Table structure for table `facility` -- CREATE TABLE `facility` ( `id` int(255) NOT NULL, `title` varchar(255) NOT NULL, `image` varchar(155) NOT NULL, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00' ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `facility` -- INSERT INTO `facility` (`id`, `title`, `image`, `updated_at`, `created_at`) VALUES (8, 'wifi', 'uploads/facility/1.png', '2020-03-28 09:48:03', '2020-03-28 01:47:40'), (9, 'Pet', 'uploads/facility/2.png', '2020-03-28 01:51:33', '2020-03-28 01:51:33'), (10, 'Parking', 'uploads/facility/3.png', '2020-03-28 01:51:43', '2020-03-28 01:51:43'), (11, 'Area', 'uploads/facility/4.png', '2020-03-28 01:51:53', '2020-03-28 01:51:53'), (12, 'Access', 'uploads/facility/5.png', '2020-03-28 01:52:05', '2020-03-28 01:52:05'); -- -------------------------------------------------------- -- -- Table structure for table `hours` -- CREATE TABLE `hours` ( `id` int(10) UNSIGNED NOT NULL, `start_time` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `end_time` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `week_of_day` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `hours` -- INSERT INTO `hours` (`id`, `start_time`, `end_time`, `week_of_day`, `created_at`, `updated_at`) VALUES (11, '00:13', '15:04', '3', '2018-11-16 08:31:20', '2018-11-16 08:31:20'), (13, '08:00', '17:00', '2', '2018-11-16 08:39:52', '2018-11-16 08:39:52'), (14, '09:00', '18:00', '3', '2018-11-16 08:40:11', '2018-11-16 08:40:11'), (15, '08:00', '15:00', '4', '2018-11-16 08:40:30', '2018-11-16 08:40:30'), (16, '02:00', '23:00', '7', '2018-11-16 08:41:00', '2018-11-16 08:41:00'); -- -------------------------------------------------------- -- -- Table structure for table `notification` -- CREATE TABLE `notification` ( `id` int(255) NOT NULL, `title` varchar(255) NOT NULL, `description` blob NOT NULL, `url` varchar(255) NOT NULL, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00' ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `notification` -- INSERT INTO `notification` (`id`, `title`, `description`, `url`, `updated_at`, `created_at`) VALUES (1, 'Notification 1', 0x6e6f74696669636174696f6e2031206173646673, 'http://www.google.com', '2020-03-30 01:56:04', '2020-03-30 01:56:04'), (3, 'Notification', 0x6e6f74696669636174696f6e2e202e2e, 'http://www.twillio.com', '2020-03-30 23:00:11', '2020-03-30 23:00:11'); -- -------------------------------------------------------- -- -- Table structure for table `restaurant` -- CREATE TABLE `restaurant` ( `id` int(10) UNSIGNED NOT NULL, `title` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `description` blob NOT NULL, `address` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `lat` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `lng` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `phone` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `email` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `fax` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `url` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `img` varchar(191) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `video` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `rate` int(255) NOT NULL DEFAULT '5', `facebook` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `twitter` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `instagram` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `min_price` double(10,2) NOT NULL, `max_price` double(10,2) NOT NULL, `category_id` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `hour_id` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `facility_id` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `city_id` int(11) NOT NULL, `time` varchar(255) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `status` int(1) NOT NULL, `favorite` int(1) NOT NULL, `review` int(255) NOT NULL, `company_id` int(255) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL, `slug` text COLLATE utf8mb4_unicode_ci NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `restaurant` -- INSERT INTO `restaurant` (`id`, `title`, `description`, `address`, `lat`, `lng`, `phone`, `email`, `fax`, `url`, `img`, `video`, `rate`, `facebook`, `twitter`, `instagram`, `min_price`, `max_price`, `category_id`, `hour_id`, `facility_id`, `city_id`, `time`, `status`, `favorite`, `review`, `company_id`, `created_at`, `updated_at`, `slug`) VALUES (7, 'Res 1111', 0x3c703e5468697320726573206973207665727920676f6f6420696e2074686520776f726c643c2f703e, 'Sna Diego', '53.41524304907991', '-112.64272850123474', '23412312342', 'kingstarboy@outlook.com', 'fax', 'web link', 'uploads/restaurant/slideshow2.jpg', 'video', 5, 'facebook', 'facebook', 'facebook', 56.00, 100.00, ':6:4', ':13:14:15:16', ':8:9:10', 1, NULL, 1, 1, 0, 11, '2020-03-24 07:55:27', '2020-03-24 07:55:27', 'res-1'), (8, 'Res2', 0x3c703e4465736372697074696f6e3c2f703e, 'San Diego USA', '50.33063713987774', '-108.26519959377568', '42342134', 'forwcj@gmail.com', 'fax', 'weblink', 'uploads/restaurant/slideshow3.jpg', 'video', 5, 'facebok', 'twitter', 'instagram', 0.00, 0.00, ':4:8', ':11:13:14', ':11:12', 1, NULL, 1, 0, 0, 11, '2020-03-24 08:05:51', '2020-03-24 08:05:51', 'res2'), (9, 'Res3', 0x3c703e6173646661736466617364663c2f703e, 'Res3', '51.36397246354523', '-111.68096812055514', '3453452345', 'kingstarboy@outlook.com', 'fax', 'web link', 'uploads/restaurant/slideshow2.jpg', 'video', 5, 'facebooklink', 'twitter', 'instagram', 0.00, 0.00, ':6:7', ':11:13:14:15', '', 1, NULL, 1, 0, 0, 11, '2020-03-24 08:09:57', '2020-03-24 08:09:57', 'res3'), (10, 'Res4', 0x3c703e33343233343233343c2f703e, 'Res4', '51.936726050442665', '-109.45494437831951', '5464356456', 'kingstarboy@outlook.com', 'fax', 'web link', 'uploads/restaurant/slideshow4.jpg', 'video', 5, 'facebooklink', 'twitter', 'instagram', 0.00, 0.00, ':6', ':11', ':9', 1, NULL, 1, 0, 0, 11, '2020-03-24 08:10:24', '2020-03-24 08:10:24', 'res4'), (11, 'Mexican Res', 0x3c703e6d65786963616e20666f6f643c2f703e, 'Japan', '52.77421091210483', '-111.79263168756995', '4353453452345', 'kingstarboy@outlook.com', 'fax', 'web link', 'uploads/restaurant/slideshow2.jpg', 'video', 5, 'facebooklink', 'twitter', 'instagram', 23.00, 23453.00, ':2', ':11', '', 0, NULL, 1, 0, 0, 11, '2020-03-30 00:49:59', '2020-03-30 00:49:59', 'mexican-res'); -- -------------------------------------------------------- -- -- Table structure for table `restaurant_categories` -- CREATE TABLE `restaurant_categories` ( `id` int(10) UNSIGNED NOT NULL, `restaurant_id` int(11) NOT NULL, `category_id` int(11) NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `restaurant_categories` -- INSERT INTO `restaurant_categories` (`id`, `restaurant_id`, `category_id`, `created_at`, `updated_at`) VALUES (1, 1, 8, '2020-03-24 07:16:32', '2020-03-24 07:16:32'), (2, 1, 4, '2020-03-24 07:16:32', '2020-03-24 07:16:32'), (3, 2, 8, '2020-03-24 07:32:23', '2020-03-24 07:32:23'), (4, 2, 7, '2020-03-24 07:32:23', '2020-03-24 07:32:23'), (5, 3, 8, '2020-03-24 07:41:38', '2020-03-24 07:41:38'), (6, 3, 7, '2020-03-24 07:41:38', '2020-03-24 07:41:38'), (7, 4, 8, '2020-03-24 07:42:36', '2020-03-24 07:42:36'), (8, 4, 7, '2020-03-24 07:42:36', '2020-03-24 07:42:36'), (9, 5, 8, '2020-03-24 07:42:48', '2020-03-24 07:42:48'), (10, 5, 7, '2020-03-24 07:42:48', '2020-03-24 07:42:48'), (11, 6, 8, '2020-03-24 07:43:26', '2020-03-24 07:43:26'), (12, 6, 7, '2020-03-24 07:43:26', '2020-03-24 07:43:26'), (81, 10, 6, '2020-03-28 06:18:42', '2020-03-28 06:18:42'), (86, 9, 6, '2020-03-28 06:21:07', '2020-03-28 06:21:07'), (87, 9, 7, '2020-03-28 06:21:07', '2020-03-28 06:21:07'), (108, 8, 4, '2020-03-28 06:59:51', '2020-03-28 06:59:51'), (109, 8, 8, '2020-03-28 06:59:51', '2020-03-28 06:59:51'), (126, 7, 6, '2020-03-30 00:11:56', '2020-03-30 00:11:56'), (127, 7, 4, '2020-03-30 00:11:56', '2020-03-30 00:11:56'), (128, 11, 2, '2020-03-30 00:49:59', '2020-03-30 00:49:59'); -- -------------------------------------------------------- -- -- Table structure for table `restaurant_facility` -- CREATE TABLE `restaurant_facility` ( `id` int(255) NOT NULL, `restaurant_id` int(255) NOT NULL, `facility_id` int(255) NOT NULL, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00' ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `restaurant_facility` -- INSERT INTO `restaurant_facility` (`id`, `restaurant_id`, `facility_id`, `updated_at`, `created_at`) VALUES (79, 10, 9, '2020-03-28 06:18:42', '2020-03-28 06:18:42'), (97, 8, 11, '2020-03-28 06:59:52', '2020-03-28 06:59:52'), (98, 8, 12, '2020-03-28 06:59:52', '2020-03-28 06:59:52'), (123, 7, 8, '2020-03-30 00:11:57', '2020-03-30 00:11:57'), (124, 7, 9, '2020-03-30 00:11:57', '2020-03-30 00:11:57'), (125, 7, 10, '2020-03-30 00:11:57', '2020-03-30 00:11:57'), (126, 11, 8, '2020-03-30 00:49:59', '2020-03-30 00:49:59'); -- -------------------------------------------------------- -- -- Table structure for table `restaurant_hours` -- CREATE TABLE `restaurant_hours` ( `id` int(255) NOT NULL, `restaurant_id` int(255) NOT NULL, `hour_id` int(255) NOT NULL, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00' ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `restaurant_hours` -- INSERT INTO `restaurant_hours` (`id`, `restaurant_id`, `hour_id`, `updated_at`, `created_at`) VALUES (0, 1, 11, '2020-03-24 07:16:32', '2020-03-24 07:16:32'), (0, 2, 11, '2020-03-24 07:32:23', '2020-03-24 07:32:23'), (0, 3, 11, '2020-03-24 07:41:38', '2020-03-24 07:41:38'), (0, 4, 11, '2020-03-24 07:42:36', '2020-03-24 07:42:36'), (0, 5, 11, '2020-03-24 07:42:48', '2020-03-24 07:42:48'), (0, 6, 11, '2020-03-24 07:43:26', '2020-03-24 07:43:26'), (0, 10, 11, '2020-03-28 06:18:42', '2020-03-28 06:18:42'), (0, 9, 11, '2020-03-28 06:21:08', '2020-03-28 06:21:08'), (0, 9, 13, '2020-03-28 06:21:08', '2020-03-28 06:21:08'), (0, 9, 14, '2020-03-28 06:21:08', '2020-03-28 06:21:08'), (0, 9, 15, '2020-03-28 06:21:08', '2020-03-28 06:21:08'), (0, 8, 11, '2020-03-28 06:59:52', '2020-03-28 06:59:52'), (0, 8, 13, '2020-03-28 06:59:52', '2020-03-28 06:59:52'), (0, 8, 14, '2020-03-28 06:59:52', '2020-03-28 06:59:52'), (0, 7, 13, '2020-03-30 00:11:56', '2020-03-30 00:11:56'), (0, 7, 14, '2020-03-30 00:11:57', '2020-03-30 00:11:57'), (0, 7, 15, '2020-03-30 00:11:57', '2020-03-30 00:11:57'), (0, 7, 16, '2020-03-30 00:11:57', '2020-03-30 00:11:57'), (0, 11, 11, '2020-03-30 00:49:59', '2020-03-30 00:49:59'); -- -------------------------------------------------------- -- -- Table structure for table `restaurant_images` -- CREATE TABLE `restaurant_images` ( `id` int(10) UNSIGNED NOT NULL, `restaurant_id` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `image` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `created_at` timestamp NULL DEFAULT NULL, `updated_at` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `restaurant_images` -- INSERT INTO `restaurant_images` (`id`, `restaurant_id`, `image`, `created_at`, `updated_at`) VALUES (10, '1', 'uploads/business/slideshow1.jpg', '2020-03-24 07:16:32', '2020-03-24 07:16:32'), (11, '2', 'uploads/restaurant/slideshow2.jpg', '2020-03-24 07:32:23', '2020-03-24 07:32:23'), (12, '3', 'uploads/restaurant/slideshow2.jpg', '2020-03-24 07:41:38', '2020-03-24 07:41:38'), (13, '4', 'uploads/restaurant/slideshow2.jpg', '2020-03-24 07:42:36', '2020-03-24 07:42:36'), (14, '5', 'uploads/restaurant/slideshow2.jpg', '2020-03-24 07:42:48', '2020-03-24 07:42:48'), (15, '6', 'uploads/restaurant/slideshow2.jpg', '2020-03-24 07:43:26', '2020-03-24 07:43:26'), (16, '7', 'uploads/restaurant/slideshow1.jpg', '2020-03-24 07:55:27', '2020-03-24 07:55:27'), (17, '7', 'uploads/restaurant/slideshow2.jpg', '2020-03-24 07:55:27', '2020-03-24 07:55:27'), (18, '8', 'uploads/restaurant/slideshow3.jpg', '2020-03-24 08:05:51', '2020-03-24 08:05:51'), (19, '9', 'uploads/restaurant/slideshow3.jpg', '2020-03-24 08:09:58', '2020-03-24 08:09:58'), (20, '10', 'uploads/restaurant/slideshow3.jpg', '2020-03-24 08:10:24', '2020-03-24 08:10:24'), (21, '11', 'uploads/restaurant/slideshow2.jpg', '2020-03-30 00:49:59', '2020-03-30 00:49:59'); -- -------------------------------------------------------- -- -- Table structure for table `slideshow` -- CREATE TABLE `slideshow` ( `id` int(255) NOT NULL, `title` varchar(255) NOT NULL, `image` varchar(255) NOT NULL, `url` varchar(255) NOT NULL, `status` int(1) NOT NULL, `updated_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00' ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `slideshow` -- INSERT INTO `slideshow` (`id`, `title`, `image`, `url`, `status`, `updated_at`, `created_at`) VALUES (1, 'First Slide', 'uploads/slideshow/slideshow1.jpg', 'http:34234234234234', 1, '2020-03-31 06:54:14', '2020-03-24 00:04:30'), (3, 'Second Slide', 'uploads/slideshow/slideshow2.jpg', 'http://www.google.com', 1, '2020-04-03 06:39:02', '2020-03-24 00:05:52'), (4, 'Third', 'uploads/slideshow/slideshow3.jpg', '', 1, '2020-03-31 06:54:31', '2020-03-24 00:08:11'), (5, 'Fourth', 'uploads/slideshow/slideshow4.jpg', '', 1, '2020-03-31 06:54:32', '2020-03-24 00:08:26'); -- -------------------------------------------------------- -- -- Table structure for table `users` -- CREATE TABLE `users` ( `id` int(10) UNSIGNED NOT NULL, `name` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `email` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `phone` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `image` varchar(255) COLLATE utf8mb4_unicode_ci NOT NULL, `email_verified_at` timestamp NULL DEFAULT NULL, `password` varchar(191) COLLATE utf8mb4_unicode_ci NOT NULL, `remember_token` varchar(100) COLLATE utf8mb4_unicode_ci DEFAULT NULL, `created_at` timestamp NOT NULL DEFAULT '0000-00-00 00:00:00', `updated_at` timestamp NULL DEFAULT NULL, `role` int(1) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_unicode_ci; -- -- Dumping data for table `users` -- INSERT INTO `users` (`id`, `name`, `email`, `phone`, `image`, `email_verified_at`, `password`, `remember_token`, `created_at`, `updated_at`, `role`) VALUES (11, 'Super Admin', 'admin@admin.com', '', '', NULL, 'admin', NULL, '2018-11-14 13:51:58', NULL, 0), (13, 'Wang', 'Wang@wang.com', '', '', NULL, 'asd', NULL, '2018-11-14 13:51:58', NULL, 3), (14, 'Sokerrererere', 'sss@sss.com', '', '', NULL, 'ass', NULL, '2018-11-14 06:00:05', '2018-11-14 06:00:05', 3), (16, 'JinChongIl', 'chong@chong.com', '', '', NULL, 'aaa', NULL, '2018-11-14 06:01:53', '2018-11-14 06:01:53', 2), (18, 'Mary Rose Barr', 'maryroseb@telus.net', '', '', NULL, 'wilbar5', NULL, '2019-01-01 05:21:40', '2019-01-01 05:21:40', 1), (27, 'changping, fang', 'kingstarboy@outlook.com', '111111111', 'uploads/user/piggy.png', NULL, 'aaaaaa', NULL, '2020-03-30 04:35:35', '2020-03-30 04:51:19', 3), (28, 'test', 'test@test.com', '123456', 'uploads/user/logo.png', NULL, 'test', 'ecggAR6eUn8:APA91bFSftbDr7s4MtUTYM7U37RygTBA8IZZRDVpyjd6MM2S6oLVPTONz_DkvZtzvTgJ0c__WH5R7MXwjt5CT3ta', '2020-03-30 04:46:11', '2020-03-30 04:46:11', 3); -- -- Indexes for dumped tables -- -- -- Indexes for table `about` -- ALTER TABLE `about` ADD PRIMARY KEY (`id`); -- -- Indexes for table `category` -- ALTER TABLE `category` ADD PRIMARY KEY (`id`); -- -- Indexes for table `city` -- ALTER TABLE `city` ADD PRIMARY KEY (`id`); -- -- Indexes for table `facility` -- ALTER TABLE `facility` ADD PRIMARY KEY (`id`); -- -- Indexes for table `hours` -- ALTER TABLE `hours` ADD PRIMARY KEY (`id`); -- -- Indexes for table `notification` -- ALTER TABLE `notification` ADD PRIMARY KEY (`id`); -- -- Indexes for table `restaurant` -- ALTER TABLE `restaurant` ADD PRIMARY KEY (`id`); -- -- Indexes for table `restaurant_categories` -- ALTER TABLE `restaurant_categories` ADD PRIMARY KEY (`id`); -- -- Indexes for table `restaurant_facility` -- ALTER TABLE `restaurant_facility` ADD PRIMARY KEY (`id`); -- -- Indexes for table `restaurant_images` -- ALTER TABLE `restaurant_images` ADD PRIMARY KEY (`id`); -- -- Indexes for table `slideshow` -- ALTER TABLE `slideshow` ADD PRIMARY KEY (`id`); -- -- Indexes for table `users` -- ALTER TABLE `users` ADD PRIMARY KEY (`id`), ADD UNIQUE KEY `users_email_unique` (`email`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `about` -- ALTER TABLE `about` MODIFY `id` int(255) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=2; -- -- AUTO_INCREMENT for table `category` -- ALTER TABLE `category` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10; -- -- AUTO_INCREMENT for table `city` -- ALTER TABLE `city` MODIFY `id` bigint(20) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6; -- -- AUTO_INCREMENT for table `facility` -- ALTER TABLE `facility` MODIFY `id` int(255) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=13; -- -- AUTO_INCREMENT for table `hours` -- ALTER TABLE `hours` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=17; -- -- AUTO_INCREMENT for table `notification` -- ALTER TABLE `notification` MODIFY `id` int(255) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=4; -- -- AUTO_INCREMENT for table `restaurant` -- ALTER TABLE `restaurant` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=12; -- -- AUTO_INCREMENT for table `restaurant_categories` -- ALTER TABLE `restaurant_categories` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=129; -- -- AUTO_INCREMENT for table `restaurant_facility` -- ALTER TABLE `restaurant_facility` MODIFY `id` int(255) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=127; -- -- AUTO_INCREMENT for table `restaurant_images` -- ALTER TABLE `restaurant_images` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=22; -- -- AUTO_INCREMENT for table `slideshow` -- ALTER TABLE `slideshow` MODIFY `id` int(255) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6; -- -- AUTO_INCREMENT for table `users` -- ALTER TABLE `users` MODIFY `id` int(10) UNSIGNED NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=29; 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 */;
---- charge (correction) INSERT INTO BILLOPERATION (ID,NAME,NAME_BS,TYPE_ID,D1,D2,REQ_CYCLE,REQ_READING,REQ_KWH,REQ_GEL,SEQ,DIFF_GROUP_ID) VALUES (560, '2010 correction', '2010 ß.ÃÀÒÉÝáÅÉÓ ÊÏÒÄØÔÉÒÄÁÀ', 4, null, null, 0, 1, 0, 0, 802, 0); INSERT INTO BILLOPERATION (ID,NAME,NAME_BS,TYPE_ID,D1,D2,REQ_CYCLE,REQ_READING,REQ_KWH,REQ_GEL,SEQ,DIFF_GROUP_ID) VALUES (561, '2010 discharge', '2010 ß.ÃÀÒÉÝáÅÉÓ ÌÏáÓÍÀ', 4, null, null, 0, 1, 0, 0, 162, 0); INSERT INTO BILLOPERATION (ID,NAME,NAME_BS,TYPE_ID,D1,D2,REQ_CYCLE,REQ_READING,REQ_KWH,REQ_GEL,SEQ,DIFF_GROUP_ID) VALUES (562, '2010corrected', '2010 ß.ÊÏÒÄØÔÉÒÄÁÖËÉ ÃÀÒÉÝáÅÀ', 4, null, null, 0, 1, 0, 0, 162, 0); ---- debt (correction) INSERT INTO BILLOPERATION (ID,NAME,NAME_BS,TYPE_ID,D1,D2,REQ_CYCLE,REQ_READING,REQ_KWH,REQ_GEL,SEQ,DIFF_GROUP_ID) VALUES (563, '2010 debt correction', '2010 ß.ÅÀËÉÓ ÊÏÒÄØÔÉÒÄÁÀ', 4, null, null, 0, 1, 0, 0, 234, 0); ---- compensation (correction) INSERT INTO BILLOPERATION (ID,NAME,NAME_BS,TYPE_ID,D1,D2,REQ_CYCLE,REQ_READING,REQ_KWH,REQ_GEL,SEQ,DIFF_GROUP_ID) VALUES (564, '2010 compensation correction', '2010 ß.ÊÏÌÐÄÍÓÀÝÉÉÓ ÊÏÒÄØÔÉÒÄÁÀ', 4, null, null, 0, 1, 0, 0, 930, 0); INSERT INTO BILLOPERATION (ID,NAME,NAME_BS,TYPE_ID,D1,D2,REQ_CYCLE,REQ_READING,REQ_KWH,REQ_GEL,SEQ,DIFF_GROUP_ID) VALUES (565, '2010 compensation discharge', '2010 ß.ÊÏÌÐÄÍÓÀÝÉÉÓ ÌÏáÓÍÀ', 4, null, null, 0, 1, 0, 0, 418, 0); INSERT INTO BILLOPERATION (ID,NAME,NAME_BS,TYPE_ID,D1,D2,REQ_CYCLE,REQ_READING,REQ_KWH,REQ_GEL,SEQ,DIFF_GROUP_ID) VALUES (566, '2010 compensation corrected', '2010 ß.ÊÏÒÄØÔÉÒÄÁÖËÉ ÊÏÌÐÄÍÓÀÝÉÀ', 4, null, null, 0, 1, 0, 0, 419, 0); ---- % subsidy (correction) INSERT INTO BILLOPERATION (ID,NAME,NAME_BS,TYPE_ID,D1,D2,REQ_CYCLE,REQ_READING,REQ_KWH,REQ_GEL,SEQ,DIFF_GROUP_ID) VALUES (567, '2010 percent subsidy corrected', '2010 ß.ÐÒÏÝ. ÛÄÙÀÅÀÈÉÓ ÊÏÒÄØÔÉÒÄÁÀ', 4, null, null, 0, 1, 0, 0, 850, 0); INSERT INTO BILLOPERATION (ID,NAME,NAME_BS,TYPE_ID,D1,D2,REQ_CYCLE,REQ_READING,REQ_KWH,REQ_GEL,SEQ,DIFF_GROUP_ID) VALUES (568, '2010 percent subsidy corrected', '2010 ß.ÐÒÏÝ. ÛÄÙÀÅÀÈÉÓ ÌÏáÓÍÀ', 4, null, null, 0, 1, 0, 0, 602, 0); INSERT INTO BILLOPERATION (ID,NAME,NAME_BS,TYPE_ID,D1,D2,REQ_CYCLE,REQ_READING,REQ_KWH,REQ_GEL,SEQ,DIFF_GROUP_ID) VALUES (569, '2010 percent subsidy corrected', '2010 ß.ÛÄÓßÏÒÄÁÖËÉ ÐÒÏÝ ÛÄÙÀÅÀÈÉ', 4, null, null, 0, 1, 0, 0, 602, 0); ---- current act for 2009 (previous year) INSERT INTO RECUT.BILLOPERATION (ID, NAME, NAME_BS, TYPE_ID, D1, D2, REQ_CYCLE, REQ_READING, REQ_KWH, REQ_GEL, SEQ, DIFF_GROUP_ID) VALUES (412, 'oper.actcorr.2009', 'ÄÒÈãÄÒÀÃÉ ÀØÔÉ -2009ß', 4, '01-Jan-2010', null, 0, 0, 0, 0, 50112, 0);
-- MySQL Workbench Forward Engineering SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0; SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0; SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION'; -- ----------------------------------------------------- -- Schema dronedb -- ----------------------------------------------------- DROP SCHEMA IF EXISTS `dronedb` ; -- ----------------------------------------------------- -- Schema dronedb -- ----------------------------------------------------- CREATE SCHEMA IF NOT EXISTS `dronedb` DEFAULT CHARACTER SET utf8 ; USE `dronedb` ; -- ----------------------------------------------------- -- Table `Location` -- ----------------------------------------------------- DROP TABLE IF EXISTS `Location` ; CREATE TABLE IF NOT EXISTS `Location` ( `id` INT NOT NULL AUTO_INCREMENT, `state` VARCHAR(100) NULL, `city` VARCHAR(400) NULL, PRIMARY KEY (`id`)) ENGINE = InnoDB; -- ----------------------------------------------------- -- Table `Flight` -- ----------------------------------------------------- DROP TABLE IF EXISTS `Flight` ; CREATE TABLE IF NOT EXISTS `Flight` ( `id` INT NOT NULL AUTO_INCREMENT, `aircraft` VARCHAR(500) NULL, `weather` VARCHAR(500) NULL, `flight_time` VARCHAR(300) NULL, `difficulty_level` INT NULL, `terrain` VARCHAR(400) NULL, `drone_issues` VARCHAR(1000) NULL, `location_id` INT NOT NULL, PRIMARY KEY (`id`), INDEX `fk_Flight_Location1_idx` (`location_id` ASC), CONSTRAINT `fk_Flight_Location1` FOREIGN KEY (`location_id`) REFERENCES `Location` (`id`) ON DELETE NO ACTION ON UPDATE NO ACTION) ENGINE = InnoDB; SET SQL_MODE = ''; DROP USER IF EXISTS droneuser@localhost; SET SQL_MODE='ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION'; CREATE USER 'droneuser'@'localhost' IDENTIFIED BY 'droneuser'; GRANT SELECT, INSERT, TRIGGER, UPDATE, DELETE ON TABLE * TO 'droneuser'@'localhost'; SET SQL_MODE=@OLD_SQL_MODE; SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS; SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS; -- ----------------------------------------------------- -- Data for table `Location` -- ----------------------------------------------------- START TRANSACTION; USE `dronedb`; INSERT INTO `Location` (`id`, `state`, `city`) VALUES (1, 'California', 'Mckinleyville'); INSERT INTO `Location` (`id`, `state`, `city`) VALUES (2, 'California ', 'Arcata'); COMMIT; -- ----------------------------------------------------- -- Data for table `Flight` -- ----------------------------------------------------- START TRANSACTION; USE `dronedb`; INSERT INTO `Flight` (`id`, `aircraft`, `weather`, `flight_time`, `difficulty_level`, `terrain`, `drone_issues`, `location_id`) VALUES (1, 'DJI Mavic Pro', 'overcast clear skies', '24 minutes', 5, 'beach, over water, with hills', 'app issues, lost visual connection during wind gusts', 1); INSERT INTO `Flight` (`id`, `aircraft`, `weather`, `flight_time`, `difficulty_level`, `terrain`, `drone_issues`, `location_id`) VALUES (2, 'DJI Mavic Pro', 'sunny, high winds', '20 mins', 7, 'launched off a hill top', 'lost visual connection multiple times', 2); INSERT INTO `Flight` (`id`, `aircraft`, `weather`, `flight_time`, `difficulty_level`, `terrain`, `drone_issues`, `location_id`) VALUES (3, 'DJI Mavic Pro', 'overcast', '27 mins', 4, 'street view', 'sun glare messed with camerea visual', 2); COMMIT;
SELECT TYPE "TRANSACTION TYPE", to_char(SUM(MONEY_IN),'9,999,990.99')as "PAID IN", to_char(SUM(MONEY_OUT),'9,999,990.99')as "PAID OUT" FROM ( SELECT F_RT_SEQID,CASE WHEN F_RT_SEQID IN (13,11) AND MMTX_INFO LIKE '%SOURCE' THEN 'SEND TO MOBILE' WHEN F_RT_SEQID IN (30) AND MMTX_INFO LIKE '%SOURCE' THEN 'SENT TO BANK' WHEN F_RT_SEQID IN (12, 27, 22) AND MMTX_INFO LIKE '%SOURCE' THEN 'AIRTIME AND BUNDLE PURCHASE' WHEN F_RT_SEQID IN (18) AND MMTX_INFO LIKE '%SOURCE' THEN 'AGENT WITHDRAWALS' WHEN F_RT_SEQID IN (29) AND MMTX_INFO LIKE '%SOURCE' THEN 'ATM WITHDRAWALS' WHEN F_RT_SEQID IN (16,21) AND MMTX_INFO LIKE '%SOURCE' THEN 'BILL PAYMENTS' WHEN F_RT_SEQID IN (19) AND MMTX_INFO LIKE '%SOURCE' THEN 'BUY GOODS' ELSE NULL END AS TYPE, CASE WHEN REF_STS_ID = 25 THEN NVL(MMTX_AMOUNT,0.0) ELSE 0 END AS MONEY_OUT, CASE WHEN REF_STS_ID = 27 THEN NVL(MMTX_AMOUNT,0.0) ELSE 0 END AS MONEY_IN FROM ODS.FCT_MMTX_MOBILE_MONEY_TRANSACT, ODS.AGG_AP_ACCOUNT_PROFILE, ODS.REF_STS_STATUS WHERE MMTX_ACCOUNT_ID(+) = AP_ACCOUNT_ID AND REF_STS_ID = STS_ID AND REF_LYR_ID = 41 AND MMTX_INFO LIKE '%SOURCE' AND REF_STS_ID IN (25,27) AND AP_ACCOUNT_MSISDN = ? and to_char(MMTX_RECORDTIMESTAMP,'YYYYMMDD') between ? and ? UNION ALL SELECT F_RT_SEQID, CASE WHEN F_RT_SEQID IN (13,11) AND MMTX_INFO LIKE '%DEST' THEN 'RECEIVED MONEY' WHEN F_RT_SEQID IN (17) AND MMTX_INFO LIKE '%DEST' THEN 'AGENT DEPOSITS' WHEN F_RT_SEQID IN (88) AND MMTX_INFO LIKE '%DEST' THEN 'DISBURSEMENTS' ELSE NULL END, CASE WHEN REF_STS_ID = 27 THEN NVL(MMTX_AMOUNT,0) ELSE 0 END AS MONEY_OUT, CASE WHEN REF_STS_ID = 25 THEN NVL(MMTX_AMOUNT,0) ELSE 0 END AS MONEY_IN FROM ODS.FCT_MMTX_MOBILE_MONEY_TRANSACT, ODS.AGG_AP_ACCOUNT_PROFILE, ODS.REF_STS_STATUS WHERE MMTX_BPARTY_ACCOUNT_ID(+) = AP_ACCOUNT_ID AND REF_STS_ID = STS_ID AND REF_LYR_ID = 41 AND MMTX_INFO LIKE '%DEST' AND REF_STS_ID IN (25,27) AND MMTX_BPARTY_MSISDN = ? and to_char(MMTX_RECORDTIMESTAMP,'YYYYMMDD') between ? and ? ) GROUP BY TYPE
create database PDO; use PDO; create table tablekey ( pdoID int unsigned auto_increment primary key, userID int unsigned not null, name char(200) not null, key0 char(200) not null, key1 char(200) null, key2 char(200) null, key3 char(200) null, key4 char(200) null, key5 char(200) null, key6 char(200) null, key7 char(200) null, index(userID) )character set = utf8; create table tableheader( userID int unsigned not null, name char(200) not null primary key, key0 char(200) not null, key1 char(200) null, key2 char(200) null, key3 char(200) null, key4 char(200) null, key5 char(200) null, key6 char(200) null, key7 char(200) null, index(userID), index(name) )character set = utf8; create table tablevalue ( pdoID int unsigned auto_increment primary key, userID int unsigned not null, name char(200) not null, value0 text null, value1 text null, value2 text null, value3 text null, value4 text null, value5 text null, value6 text null, value7 text null, index(userID), index(name) )character set = utf8; create table tablequery ( pdoID int unsigned auto_increment primary key, userID int unsigned not null, datetime DATE null, spend float null, place text null, index(userID) )character set = utf8; create table tablerelation ( pdo1 int unsigned not null, pdo2 int unsigned not null, index(pdo1), index(pdo2) )character set = utf8; create table tableuser ( userId int unsigned not null primary key, password char(30) not null )character set = utf8;
/* Navicat Premium Data Transfer Source Server : cpms Source Server Type : MySQL Source Server Version : 50716 Source Host : localhost:3306 Source Schema : cpms Target Server Type : MySQL Target Server Version : 50716 File Encoding : 65001 Date: 10/04/2019 16:25:12 */ SET NAMES utf8mb4; SET FOREIGN_KEY_CHECKS = 0; -- ---------------------------- -- Table structure for building_info -- ---------------------------- DROP TABLE IF EXISTS `building_info`; CREATE TABLE `building_info` ( `building_id` int(11) NOT NULL COMMENT '楼宇ID', `building_name` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '楼宇名称', `building_level` double(255, 0) NULL DEFAULT NULL COMMENT '楼宇层数', `building_height` double NULL DEFAULT NULL COMMENT '楼宇高度', `building_type` varchar(255) CHARACTER SET latin1 COLLATE latin1_swedish_ci NULL DEFAULT NULL COMMENT '楼宇类型', `building_status` varchar(255) CHARACTER SET latin1 COLLATE latin1_swedish_ci NULL DEFAULT NULL COMMENT '楼宇状态', PRIMARY KEY (`building_id`) USING BTREE ) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of building_info -- ---------------------------- INSERT INTO `building_info` VALUES (1, '天河A1', 6, 16.8, 'commercial', 'using'); INSERT INTO `building_info` VALUES (2, 'jludormitory1', 6, 16.8, 'residential', 'using'); INSERT INTO `building_info` VALUES (3, '天河A2', 6, 16.8, 'commercial', 'constructing'); INSERT INTO `building_info` VALUES (4, 'jludomitory2', 6, 16.8, 'residential', 'constructing'); INSERT INTO `building_info` VALUES (5, 'jludomitory3', 6, 16.8, 'residential', 'using'); -- ---------------------------- -- Table structure for menu_info -- ---------------------------- DROP TABLE IF EXISTS `menu_info`; CREATE TABLE `menu_info` ( `menu_id` int(11) NOT NULL COMMENT '菜单ID', `menu_name` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '菜单名称', PRIMARY KEY (`menu_id`) USING BTREE ) ENGINE = InnoDB CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of menu_info -- ---------------------------- INSERT INTO `menu_info` VALUES (1, 'showUserMessage'); INSERT INTO `menu_info` VALUES (2, 'ownerMessageManage'); INSERT INTO `menu_info` VALUES (3, 'buildingMessageManage'); INSERT INTO `menu_info` VALUES (4, 'roomMessageManage'); INSERT INTO `menu_info` VALUES (5, 'userMessageManage'); INSERT INTO `menu_info` VALUES (6, 'systemManage'); -- ---------------------------- -- Table structure for role_info -- ---------------------------- DROP TABLE IF EXISTS `role_info`; CREATE TABLE `role_info` ( `role_id` int(11) NOT NULL COMMENT '角色ID', `role_name` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '角色名称', PRIMARY KEY (`role_id`) USING BTREE ) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of role_info -- ---------------------------- INSERT INTO `role_info` VALUES (1, 'admin'); INSERT INTO `role_info` VALUES (2, 'manager'); INSERT INTO `role_info` VALUES (3, 'owner'); -- ---------------------------- -- Table structure for role_menu_relation -- ---------------------------- DROP TABLE IF EXISTS `role_menu_relation`; CREATE TABLE `role_menu_relation` ( `role_menu_id` int(11) NOT NULL COMMENT '角色菜单唯一标识', `role_id` int(11) NULL DEFAULT NULL COMMENT '角色ID', `menu_id` int(11) NULL DEFAULT NULL COMMENT '菜单ID', PRIMARY KEY (`role_menu_id`) USING BTREE, INDEX `role_id`(`role_id`) USING BTREE, INDEX `menu_id`(`menu_id`) USING BTREE, CONSTRAINT `role_menu_relation_ibfk_1` FOREIGN KEY (`role_id`) REFERENCES `role_info` (`role_id`) ON DELETE RESTRICT ON UPDATE RESTRICT, CONSTRAINT `role_menu_relation_ibfk_2` FOREIGN KEY (`menu_id`) REFERENCES `menu_info` (`menu_id`) ON DELETE RESTRICT ON UPDATE RESTRICT ) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of role_menu_relation -- ---------------------------- INSERT INTO `role_menu_relation` VALUES (1, 1, 1); INSERT INTO `role_menu_relation` VALUES (2, 1, 2); INSERT INTO `role_menu_relation` VALUES (3, 1, 3); INSERT INTO `role_menu_relation` VALUES (4, 1, 4); INSERT INTO `role_menu_relation` VALUES (5, 1, 5); INSERT INTO `role_menu_relation` VALUES (6, 1, 6); INSERT INTO `role_menu_relation` VALUES (7, 2, 1); INSERT INTO `role_menu_relation` VALUES (8, 2, 2); INSERT INTO `role_menu_relation` VALUES (9, 2, 3); INSERT INTO `role_menu_relation` VALUES (10, 2, 4); INSERT INTO `role_menu_relation` VALUES (11, 3, 1); -- ---------------------------- -- Table structure for room_info -- ---------------------------- DROP TABLE IF EXISTS `room_info`; CREATE TABLE `room_info` ( `room_id` int(11) NOT NULL COMMENT '房屋ID', `building_id` int(255) NOT NULL COMMENT '房屋所在楼宇ID', `area` double(255, 0) NULL DEFAULT NULL COMMENT '房屋面积', `owner_id` int(11) NULL DEFAULT NULL COMMENT '业主ID', PRIMARY KEY (`room_id`, `building_id`) USING BTREE, INDEX `building_id`(`building_id`) USING BTREE, INDEX `owner_id`(`owner_id`) USING BTREE, CONSTRAINT `building_id` FOREIGN KEY (`building_id`) REFERENCES `building_info` (`building_id`) ON DELETE RESTRICT ON UPDATE RESTRICT, CONSTRAINT `room_info_ibfk_1` FOREIGN KEY (`owner_id`) REFERENCES `user_info` (`user_id`) ON DELETE RESTRICT ON UPDATE RESTRICT ) ENGINE = InnoDB CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of room_info -- ---------------------------- INSERT INTO `room_info` VALUES (201, 1, 100, 4); INSERT INTO `room_info` VALUES (201, 2, 100, 5); INSERT INTO `room_info` VALUES (301, 1, 100, 6); INSERT INTO `room_info` VALUES (301, 2, 100, 7); INSERT INTO `room_info` VALUES (401, 1, 100, NULL); -- ---------------------------- -- Table structure for user_info -- ---------------------------- DROP TABLE IF EXISTS `user_info`; CREATE TABLE `user_info` ( `user_id` int(11) NOT NULL AUTO_INCREMENT COMMENT '用户ID', `user_name` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL COMMENT '用户姓名', `user_password` varchar(255) CHARACTER SET latin1 COLLATE latin1_swedish_ci NULL DEFAULT NULL COMMENT '用户密码', `user_account` varchar(255) CHARACTER SET latin1 COLLATE latin1_swedish_ci NULL DEFAULT NULL COMMENT '用户账号', `user_idnumber` bigint(50) NOT NULL COMMENT '用户身份证号', `user_phonenumber` bigint(11) NULL DEFAULT NULL COMMENT '用户电话号码', PRIMARY KEY (`user_id`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 8 CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of user_info -- ---------------------------- INSERT INTO `user_info` VALUES (1, 'kim', 'q', 'q', 293049199605292288, 18812341234); INSERT INTO `user_info` VALUES (2, 'jim', 'w', 'w', 234234199508244219, NULL); INSERT INTO `user_info` VALUES (3, 'william', 'e', 'e', 201234199811222610, NULL); INSERT INTO `user_info` VALUES (4, 'zhangjie1', 'a', 'a', 12312319970920221, NULL); INSERT INTO `user_info` VALUES (5, 'zhangjie2', 'b', 'b', 234234199709232224, NULL); INSERT INTO `user_info` VALUES (6, 'zhangjie3', 'c', 'c', 345345199709202233, NULL); INSERT INTO `user_info` VALUES (7, 'zhangjie5', 'd', 'd', 567567199709201135, NULL); -- ---------------------------- -- Table structure for user_role_relation -- ---------------------------- DROP TABLE IF EXISTS `user_role_relation`; CREATE TABLE `user_role_relation` ( `user_role_id` int(11) NOT NULL COMMENT '用户-角色唯一标识ID', `user_id` int(11) NULL DEFAULT NULL COMMENT '用户ID', `role_id` int(11) NULL DEFAULT NULL COMMENT '角色ID', PRIMARY KEY (`user_role_id`) USING BTREE, INDEX `user_id`(`user_id`) USING BTREE, INDEX `role_id`(`role_id`) USING BTREE, CONSTRAINT `user_id` FOREIGN KEY (`user_id`) REFERENCES `user_info` (`user_id`) ON DELETE RESTRICT ON UPDATE RESTRICT, CONSTRAINT `user_role_relation_ibfk_1` FOREIGN KEY (`role_id`) REFERENCES `role_info` (`role_id`) ON DELETE RESTRICT ON UPDATE RESTRICT ) ENGINE = InnoDB CHARACTER SET = latin1 COLLATE = latin1_swedish_ci ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of user_role_relation -- ---------------------------- INSERT INTO `user_role_relation` VALUES (1, 1, 1); INSERT INTO `user_role_relation` VALUES (2, 2, 2); INSERT INTO `user_role_relation` VALUES (3, 3, 3); INSERT INTO `user_role_relation` VALUES (4, 4, 3); INSERT INTO `user_role_relation` VALUES (5, 5, 3); INSERT INTO `user_role_relation` VALUES (6, 6, 3); INSERT INTO `user_role_relation` VALUES (7, 7, 3); SET FOREIGN_KEY_CHECKS = 1;
PARAMETERS [@CuentaID] Text (255); SELECT A.CuentaID, A.Cuenta, A.EntidadID, B.Entidad, A.CuentaTipoID, C.CuentaTipo, A.MonedaID, D.MonedaCuenta, A.Numero FROM ((TB_Cuenta AS A LEFT JOIN TB_Entidad AS B ON A.EntidadID=B.EntidadID) LEFT JOIN TB_CuentaTipo AS C ON A.CuentaTipoID=C.CuentaTipoID) LEFT JOIN TB_Moneda AS D ON A.MonedaID=D.MonedaID WHERE (A.CuentaID=[@CuentaID] OR [@CuentaID] IS NULL)
-- phpMyAdmin SQL Dump -- version 4.1.14 -- http://www.phpmyadmin.net -- -- Host: 127.0.0.1 -- Generation Time: 27-Maio-2017 às 23:16 -- Versão do servidor: 5.6.17 -- PHP Version: 5.5.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 utf8 */; -- -- Database: `ifamprotocolo` -- -- -------------------------------------------------------- -- -- Estrutura da tabela `anexos` -- CREATE TABLE IF NOT EXISTS `anexos` ( `id` int(11) NOT NULL, `caminho` varchar(256) NOT NULL, `idSolicitacao` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Estrutura da tabela `departamento` -- CREATE TABLE IF NOT EXISTS `departamento` ( `id` int(11) NOT NULL, `Nome` varchar(30) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Estrutura da tabela `servicodepart` -- CREATE TABLE IF NOT EXISTS `servicodepart` ( `id` int(11) NOT NULL, `idServico` int(11) NOT NULL, `idDepartamento` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Estrutura da tabela `servicos` -- CREATE TABLE IF NOT EXISTS `servicos` ( `id` int(11) NOT NULL, `Nome` varchar(30) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Estrutura da tabela `solicitação` -- CREATE TABLE IF NOT EXISTS `solicitação` ( `id` varchar(11) NOT NULL, `Data` date NOT NULL, `Status` varchar(20) NOT NULL, `idServico` int(11) NOT NULL, `idUsuario` int(11) NOT NULL, `idDepartamento` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Estrutura da tabela `usuario` -- CREATE TABLE IF NOT EXISTS `usuario` ( `nome` varchar(20) DEFAULT NULL, `senha` varchar(20) DEFAULT NULL, `email` varchar(254) NOT NULL, `id` int(11) NOT NULL, `telefone` int(11) NOT NULL, `matricula` varchar(13) NOT NULL, `logradouro` varchar(150) NOT NULL, `numero` varchar(5) NOT NULL, `bairro` varchar(25) NOT NULL, `complemento` varchar(25) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*!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.8.2 -- http://www.phpmyadmin.net -- -- Servidor: localhost -- Tiempo de generación: 06-03-2015 a las 18:04:02 -- Versión del servidor: 5.1.68-cll -- Versión de PHP: 5.2.6 -- -- Autor: Jhonatan Ponce -- Git: https://github.com/jhonatanponce/paises_estados_del_mundo.git -- Redes Sociales: ponceelrelajado -- agradecido por el trabajo de ponceelrelajado -- Modificado en Septiembre 2020 por : UbikaloPro -- Git https://github.com/UbikaloPro -- Redes @ubikalo 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 */; -- -- Base de datos: `SQL-paises` -- -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `pais` -- CREATE TABLE IF NOT EXISTS `pais` ( `pais_id` int(11) NOT NULL AUTO_INCREMENT, `nombrepais` varchar(250) COLLATE utf8_unicode_ci NOT NULL, PRIMARY KEY (`pais_id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci AUTO_INCREMENT=247 ; -- -- Volcado de datos para la tabla `pais` -- INSERT INTO `pais` (`pais_id`, `nombrepais`) VALUES (1, 'Afganistan'), (2, 'Albania'), (3, 'Alemania'), (4, 'Algeria'), (5, 'Ardorra'), (6, 'Angola'), (7, 'Anguila'), (8, 'Antigua y Bernuda'), (9, 'Antillas Holandesas'), (10, 'Arabia Saudita'), (11, 'Argentina'), (12, 'Armenia'), (13, 'Aruba'), (14, 'Australia'), (15, 'Austria'), (16, 'Azerbaiyan'), (17, 'Bahamas'), (18, 'Bahrein'), (19, 'Bangladesh'), (20, 'Barbados'), (21, 'Bélgica'), (22, 'Belice'), (23, 'Benin'), (24, 'Bermudas'), (25, 'Bielorrusia'), (26, 'Bolivia'), (27, 'Bosnia y Herzegovina'), (28, 'Botsuana'), (29, 'Brasil'), (30, 'Brunei'), (31, 'Bulgaria'), (32, 'Burkina Faso'), (33, 'Burundi'), (34, 'Butan'), (35, 'Cabo Verde'), (36, 'Camboya'), (37, 'Camerun'), (38, 'Canada'), (39, 'Chad'), (40, 'Chile'), (41, 'China'), (42, 'Chipre'), (43, 'Colombia'), (44, 'Comores'), (45, 'Congo (Brazzaville)'), (46, 'Congo (Kinshasa'), (47, 'Corea del Norte'), (48, 'Corea del Sur'), (49, 'Costa de Marfil'), (50, 'Costa Rica'), (51, 'Croacia'), (52, 'Cuba'), (53, 'Dinamarca'), (54, 'Djibouti Yibuti'), (55, 'Ecuador'), (56, 'Egipto'), (57, 'El Salvador'), (58, 'Emiratos Arabes Unidos'), (59, 'Eritrea'), (60, 'Eslovaquia'), (61, 'Eslovenia'), (62, 'España'), (63, 'Estados Unidos'), (64, 'Estonia'), (65, 'Etiopia'), (66, 'Filipinas'), (67, 'Finlandia'), (68, 'Fiji'), (69, 'Francia'), (70, 'Gabon'), (71, 'Gambia'), (72, 'Georgia'), (73, 'Ghana'), (74, 'Gibraltar'), (75, 'Granada'), (76, 'Grecia'), (77, 'Groenlandia'), (78, 'Guadalupe'), (79, 'Guatemala'), (80, 'Guernsey'), (81, 'Guinea'), (82, 'Guinea Ecuatorial'), (83, 'Guinea-Bissau'), (84, 'Guyana'), (85, 'Haiti'), (86, 'Holanda, Paises Bajos'), (87, 'Honduras'), (88, 'Hong Kong'), (89, 'Hungria'), (90, 'India'), (91, 'Indonesia'), (92, 'Irak'), (93, 'Iran'), (94, 'Irlanda'), (95, 'Isla de Man'), (96, 'Isla Norfolk'), (97, 'Islandia'), (98, 'Islas Cook'), (99, 'Islas Feroe'), (100, 'Islas Salomon'), (101, 'Islas Turcas y Caicos'), (102, 'Islas Virgenes Britanicas'), (103, 'Israel'), (104, 'Italia'), (105, 'Jamaica'), (106, 'Japon'), (107, 'Jersey'), (108, 'Jordania'), (109, 'Kazajstan'), (110, 'Kenia'), (111, 'Kirguistan'), (112, 'Kiribati'), (113, 'Kuwait'), (114, 'Laos'), (115, 'Lesotho'), (116, 'Letonia'), (117, 'Libano'), (118, 'Liberia'), (119, 'Libia'), (120, 'Liechtenstein'), (121, 'lituania'), (122, 'luxemburgo'), (123, 'Macedonia'), (124, 'Madagascar'), (125, 'Malasia'), (126, 'Malawi'), (127, 'Maldivas'), (128, 'Mali'), (129, 'Malta'), (130, 'Marruecos'), (131, 'Martinica'), (132, 'Mauricio'), (133, 'Mauritania'), (134, 'Mexico'), (135, 'Moldavia'), (136, 'Monaco'), (137, 'Mongolia'), (138, 'Mozambique'), (139, 'Myanmar'), (140, 'Namibia'), (141, 'Nauru'), (142, 'Nepal'), (143, 'Nicaruagua'), (144, 'Niger'), (145, 'Nigeria'), (146, 'Noruega'), (147, 'Nueva Caledonia'), (148, 'Nueva Zelanda'), (149, 'Oman'), (150, 'Pakistan'), (151, 'Panama'), (152, 'Papua-Nueva Guinea'), (153, 'Paraguay'), (154, 'Peru'), (155, 'Polinesia Francesa'), (156, 'Polonia'), (157, 'Portugal'), (158, 'Puerto Rico'), (159, 'Qatar'), (160, 'Reino Unido'), (161, 'Republica Checa'), (162, 'Republica Dominicana'), (163, 'Reunion'), (164, 'Ruanda'), (165, 'Rumania'), (166, 'Rusia'), (167, 'Sahara Occidental'), (168, 'Samoa'), (169, 'San Cristobal y Neivis'), (170, 'San Marino'), (171, 'San Pedro y Miquelon'), (172, 'San Tome y Principe'), (173, 'San Vicente y Granadinas'), (174, 'Santa Elena'), (175, 'Santa Lucia'), (176, 'Senegal'), (177, 'Serbia y Montenegro'), (178, 'Seychelles'), (179, 'Sierra Leona'), (180, 'Singapur'), (181, 'Siria'), (182, 'Somalia'), (183, 'Sri Lanka'), (184, 'Sudafrica'), (185, 'Sudan'), (186, 'Suecia'), (187, 'Suiza'), (188, 'Surinam'), (189, 'Swazilandia'), (190, 'Tadjikistan'), (191, 'Tailandia'), (192, 'Taiwan'), (193, 'Tanzania'), (194, 'Timor Oriental'), (195, 'Togo'), (196, 'Tokelau'), (197, 'Tonga'), (198, 'Trinidad y Tobago'), (199, 'Tunez'), (200, 'Turkmenistan'), (201, 'Turquia'), (202, 'Tuvalu'), (203, 'Ucrania'), (204, 'Uganda'), (205, 'Uruguay'), (206, 'Uzbekistan'), (207, 'Vanuatu'), (208, 'Venezuela'), (209, 'Vietnam'), (210, 'Wallis y Futuna'), (211, 'Yemen'), (212, 'Zambia'), (213, 'Zimbabwe'); /*!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 */;
-- MySQL dump 10.13 Distrib 5.7.19, for Linux (x86_64) -- -- Host: 192.168.56.10 Database: projetotbd -- ------------------------------------------------------ -- Server version 5.5.5-10.0.31-MariaDB-0ubuntu0.16.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 `produto` -- DROP TABLE IF EXISTS `produto`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `produto` ( `id` int(11) NOT NULL AUTO_INCREMENT, `nome_produto` varchar(64) NOT NULL, `caracteristicas` blob, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `produto` -- LOCK TABLES `produto` WRITE; /*!40000 ALTER TABLE `produto` DISABLE KEYS */; /*!40000 ALTER TABLE `produto` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `refeicao` -- DROP TABLE IF EXISTS `refeicao`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `refeicao` ( `id` int(11) NOT NULL AUTO_INCREMENT, `nome_refeicao` varchar(64) NOT NULL, `descricao` text NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `refeicao` -- LOCK TABLES `refeicao` WRITE; /*!40000 ALTER TABLE `refeicao` DISABLE KEYS */; /*!40000 ALTER TABLE `refeicao` ENABLE KEYS */; UNLOCK TABLES; -- -- Table structure for table `refeicao_produto` -- DROP TABLE IF EXISTS `refeicao_produto`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `refeicao_produto` ( `id` int(11) NOT NULL AUTO_INCREMENT, `refeicao_id` int(11) NOT NULL, `produto_id` int(11) NOT NULL, PRIMARY KEY (`id`), KEY `refeicao_id` (`refeicao_id`), KEY `produto_id` (`produto_id`), CONSTRAINT `refeicao_produto_ibfk_1` FOREIGN KEY (`refeicao_id`) REFERENCES `refeicao` (`id`), CONSTRAINT `refeicao_produto_ibfk_2` FOREIGN KEY (`produto_id`) REFERENCES `produto` (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8mb4; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `refeicao_produto` -- LOCK TABLES `refeicao_produto` WRITE; /*!40000 ALTER TABLE `refeicao_produto` DISABLE KEYS */; /*!40000 ALTER TABLE `refeicao_produto` 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 2017-10-19 21:31:34
--this query removes dups from a generic install table with dup_install as ( select id --in this table there are multiple records for the same d ,timestamp ,source ,row_number()over(partition by id order by timestamp asc) as rown ) ,no_dup_install as ( select id ,timstamp ,source from dup_install where 1=1 and rown =1 --this will take the first install for ever id ) select * from no_dup_install
CREATE TABLE `cs_transactions` ( `id` int(10) NOT NULL, `nama_pembeli` varchar(191) NOT NULL, `no_hp` varchar(21) NOT NULL, `alamat_pembeli` text NOT NULL, `tanggal` date NOT NULL, `status_bayar` varchar(20) NOT NULL, `kekurangan` decimal(15,2) DEFAULT NULL, `nama_rekening` varchar(100) NOT NULL, `tujuan_rekening` varchar(10) NOT NULL, `estimate_ongkir` decimal(15,2) NOT NULL, `actual_ongkir` decimal(15,2) NOT NULL, `sisa_ongkir` decimal(15,2) NOT NULL, `ekspedisi` text NOT NULL, `keterangan` text NOT NULL, `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Table structure for table `detil_cstransactions` -- CREATE TABLE `detil_cstransactions` ( `id` int(11) NOT NULL, `cs_transaction_id` int(10) NOT NULL, `item` text NOT NULL, `qty` int(11) NOT NULL, `created_at` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP, `updated_at` timestamp NULL DEFAULT NULL ON UPDATE CURRENT_TIMESTAMP ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -------------------------------------------------------- -- -- Indexes for table `cs_transactions` -- ALTER TABLE `cs_transactions` ADD PRIMARY KEY (`id`); -- -- Indexes for table `detil_cstransactions` -- ALTER TABLE `detil_cstransactions` ADD PRIMARY KEY (`id`), ADD KEY `cd_transaction` (`cs_transaction_id`); -- -- AUTO_INCREMENT for table `cs_transactions` -- ALTER TABLE `cs_transactions` MODIFY `id` int(10) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `detil_cstransactions` -- ALTER TABLE `detil_cstransactions` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=10; -- -- Constraints for table `detil_cstransactions` -- ALTER TABLE `detil_cstransactions` ADD CONSTRAINT `cd_transaction` FOREIGN KEY (`cs_transaction_id`) REFERENCES `cs_transactions` (`id`);
-- -- SQL file used to populate the database or can be used to auto-load on init() -- -- homes table CREATE TABLE homes ( home_id int UNSIGNED NOT NULL AUTO_INCREMENT, type VARCHAR(50) NOT NULL, size VARCHAR(100) NOT NULL, age TINYINT NOT NULL, PRIMARY KEY (home_id) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- sales table CREATE TABLE sales ( id int UNSIGNED NOT NULL AUTO_INCREMENT, list_price BIGINT NOT NULL, sold_price BIGINT NOT NULL, active VARCHAR(50) NOT NULL, PRIMARY KEY (id) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- homebuyer table CREATE TABLE homebuyer ( id int UNSIGNED NOT NULL AUTO_INCREMENT, walkability VARCHAR(50) NOT NULL, crime_rating VARCHAR(50) NOT NULL, location VARCHAR(50) NOT NULL, budget BIGINT NOT NULL, PRIMARY KEY (id) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- neighborhoods table CREATE TABLE neighborhoods ( id int UNSIGNED NOT NULL AUTO_INCREMENT PRIMARY KEY, name VARCHAR(255) NOT NULL, per_capita_income DECIMAL(15,4), Homes_Id int, Sales_Id int, Homebuyer_Id int ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- populate tables with intitial data-set INSERT INTO neighborhoods (id, name, per_capita_income) VALUES (1,'South Park','82,000.00'), (2,'North Park','92,000.00'), (3,'Pacific Beach','108,000.00'), (4,'Sherman Heights','35,000.00'), (5,'Golden Hill','55,000.00'); INSERT INTO homes (home_id, type, size, age) VALUES (1,'spanish bungalow','1200 sqft', '95'), (2,'craftsman bungalow','550 sqft', '85'), (3,'craftsman','2200 sqft', '75'), (4,'prairie','1900 sqft', '105'), (5,'mid-century modern','2500 sqft', '50'); INSERT INTO sales (id, list_price, sold_price, active) VALUES (1,'500000','550000', 'yes'), (2,'650000','655000', 'yes'), (3,'750000','705000', 'no'), (4,'425000','295000', 'no'), (5,'185000','210000', 'yes'); INSERT INTO homebuyer (id, walkability, crime_rating, location, budget) VALUES (1,'fair','high', 'local', '500000'), (2,'great','medium', 'CONUS', '650000'), (3,'awesome','low', 'local', '750000'), (4,'horrible','low', 'CONUS', '5000000'), (5,'fair','low', 'OCONUS', '1500000');
CREATE TABLE IF NOT EXISTS `WI_blog` ( `id` int(11) NOT NULL AUTO_INCREMENT, `type` enum('blog_slider','blog_video','blog_image','blog_audio','NoMedia','blog_youtube') NOT NULL, `day` varchar(255) NOT NULL, `month` varchar(255) NOT NULL, `image` varchar(255) NOT NULL, `image2` varchar(255) NOT NULL, `image3` varchar(255) NOT NULL, `video` varchar(255) NOT NULL, `audio` varchar(255) NOT NULL, `youtube` varchar(255) NOT NULL, `title` varchar(255) NOT NULL, `href` varchar(255) NOT NULL, `user` varchar(255) NOT NULL, `tags` varchar(255) NOT NULL, `post` varchar(255) NOT NULL, `button_name` varchar(255) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; CREATE TABLE IF NOT EXISTS `wi_blogcategories` ( `cat_id` int(100) NOT NULL AUTO_INCREMENT, `title` text NOT NULL, PRIMARY KEY (`cat_id`) ) ENGINE=MyISAM DEFAULT CHARSET=utf8; -- -- Dumping data for table `wi_blogcategories` -- INSERT INTO `wi_blogcategories` (`title`) VALUES ('cms systems'), ( 'code development');
WITH WT AS ( --対象データワーク SELECT CONTRACT_NO,COUPON FROM DATA_OBJECT_WORKTABLE --セッションID WHERE SESSION_ID = /*sessionId*/'' ), HIST AS ( SELECT * FROM ( SELECT --契約番号 CONTRACT_NO, --回収予定日 CASE (SCHEDULE_DATE) WHEN DATEADD(month, -11, CUR_DATE) then 'COL1' WHEN DATEADD(month, -10, CUR_DATE) then 'COL2' WHEN DATEADD(month, -9, CUR_DATE) then 'COL3' WHEN DATEADD(month, -8, CUR_DATE) then 'COL4' WHEN DATEADD(month, -7, CUR_DATE) then 'COL5' WHEN DATEADD(month, -6, CUR_DATE) then 'COL6' WHEN DATEADD(month, -5, CUR_DATE) then 'COL7' WHEN DATEADD(month, -4, CUR_DATE) then 'COL8' WHEN DATEADD(month, -3, CUR_DATE) then 'COL9' WHEN DATEADD(month, -2, CUR_DATE) then 'COL10' WHEN DATEADD(month, -1, CUR_DATE) then 'COL11' WHEN DATEADD(month, -0, CUR_DATE) then 'COL12' END AS HIST_YM, --延滞日数 DAYS FROM ( SELECT --契約番号 R1.CONTRACT_NO, --回収予定日(月初) DATEADD(M,DATEDIFF(M, 0, WITHDRAW_SCHEDULE_DATE ), 0) AS SCHEDULE_DATE, --延滞日数 CASE WHEN --回収実績日がNULLの場合 WITHDRAW_RESULT_DATE IS NULL --回収実績額<回収予定額の場合 OR WITHDRAW_RESULT_AMOUNT < WITHDRAW_SCHEDULE_AMOUNT THEN '' --延滞日数 = 回収実績日ー回収予定日 ELSE CAST(DATEDIFF(d, WITHDRAW_SCHEDULE_DATE, WITHDRAW_RESULT_DATE) AS varchar) END AS DAYS , --当月月初 DATEADD(M,DATEDIFF(M, 0, /*searchDateLast*/''), 0) AS CUR_DATE FROM --請求回収情報 REQUST_WITHDRAW_INFO R1 INNER JOIN --対象データワーク WT --請求回収情報.契約番号 = 対象データワーク.契約番号 ON R1.CONTRACT_NO = WT.CONTRACT_NO WHERE WITHDRAW_SCHEDULE_DATE <= /*searchDateLast*/'' AND WITHDRAW_SCHEDULE_DATE > DATEADD(year, -1, /*searchDateLast*/'') ) T1 ) T2 PIVOT( MAX(DAYS) FOR HIST_YM IN( [COL1],[COL2],[COL3],[COL4],[COL5],[COL6], [COL7],[COL8],[COL9],[COL10],[COL11],[COL12] ) ) AS PVT ) SELECT --案件名称 C.CASES_NAME AS CASES_NAME, --代理店_名称 B.AGENCY_NAME, --顧客_名称 B.CUSTOMER_NAME, --リース料回収方法 B.NEXT_WITHDRAW_METHOD, --型式 D.TYPE, --シリアル番号 D.SERIAL_NO, --契約番号 B.CONTRACT_NO, --回数 WT.COUPON, --回収総額 B.WITHDRAW_SUM_TOTAL, --リース料金 B.LEASE_FEE, --リース料回収日 B.NEXT_WITHDRAW_DATE, --予定回収先区分 E.SCHEDULE_WITHDRAW_KBN, --過去1年分の延滞日数 COL1, COL2, COL3, COL4, COL5, COL6, COL7, COL8, COL9, COL10, COL11, COL12, --未収番号 E.DELAYED_NO FROM --対象データワーク WT INNER JOIN --契約情報 CONTRACT_INFO B --契約情報.契約番号 = 契約情報.契約番号 ON WT.CONTRACT_NO = B.CONTRACT_NO INNER JOIN --案件属性マスタ CASE_MST C --契約情報.案件番号 = 案件属性マスタ.案件番号 ON B.CASE_NO = C.CASE_NO LEFT JOIN --契約物件情報 (SELECT CONTRACT_NO,TYPE,SERIAL_NO, RID = ROW_NUMBER() OVER(PARTITION BY CONTRACT_NO ORDER BY SUPPLIES_NO) FROM CONTRACT_SUPPLIES_DETAIL_INFO --CONTRACT_SUPPLIES_INFO -- 解約フラグ <> 2:解約 WHERE SUPPLIES_END_AGREEMENT_FLG <> CAST(/*endFlg*/'2' AS CHAR(1)) ) D --契約情報.契約番号 = 契約物件情報.契約番号 AND 1番目 ON B.CONTRACT_NO = D.CONTRACT_NO AND D.RID = 1 INNER JOIN --請求回収情報 REQUST_WITHDRAW_INFO E --対象データワーク.契約番号 = 請求回収情報.契約番号 --対象データワーク.回数 = 請求回収情報.回数 ON WT.CONTRACT_NO = E.CONTRACT_NO AND WT.COUPON = E.COUPON INNER JOIN -- 過去1年分(当月を含んで1年)の延滞情報 HIST --契約情報.契約番号 = HIST.契約番号 ON B.CONTRACT_NO = HIST.CONTRACT_NO ORDER BY --案件番号,代理店_取引先コード,契約番号 C.CASE_NO, B.AGENCY_CUST_CODE, B.CONTRACT_NO
/* * searchBasic * Inverted Index Toolkit <http://code.google.com/p/inverted-index/> * Apache License 2.0, blah blah blah. * * This constructs and executes a simple "AND" query, based on an input * string of words. Rather than including the words themselves in the * query, it looks them up in advance. * * Parameters: * * _classId: the class ID to be searched. eg. classID('doc') * * _sentence: the sentence to be searched. eg. "best of times" * * Optional control variables: * * SET @_noExecute = TRUE; * -- Returns the query parts, rather than executing it, to assist * -- building of custom queries. * * SET @_suppressGlobals = TRUE; * -- Do not set the global variable parts, and preserve @_sql if * -- possible. * */ DROP PROCEDURE IF EXISTS searchBasic; DELIMITER ;; CREATE PROCEDURE `searchBasic`(_classId INT UNSIGNED, _sentence TEXT) thisproc:BEGIN DECLARE _dataTable VARCHAR(64); DECLARE _primaryKey VARCHAR(64); -- Retrieve data table from search_class table, so we know what to display. SELECT data_table, primary_key INTO _dataTable, _primaryKey FROM search_class WHERE search_class_id = _classId; IF _dataTable IS NULL THEN -- The search_class wasn't found, or the _dataTable was NULL (impossible?) SELECT CONCAT('Search class ',_classId,' not found or incomplete.') AS Error; LEAVE thisproc; END IF; CALL search(_classId, _sentence, 'and', _dataTable, _primaryKey, 'd.*'); END;; DELIMITER ;
-- phpMyAdmin SQL Dump -- version 4.5.1 -- http://www.phpmyadmin.net -- -- Host: 127.0.0.1 -- Generation Time: Oct 25, 2016 at 08:03 AM -- Server version: 10.1.16-MariaDB -- PHP Version: 7.0.9 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: `nsbm` -- -- -------------------------------------------------------- -- -- Table structure for table `contact` -- CREATE TABLE `contact` ( `Name` varchar(50) NOT NULL, `Subject` varchar(50) NOT NULL, `Email` varchar(50) NOT NULL, `Mobile` varchar(10) NOT NULL, `Message` varchar(100) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `contact` -- INSERT INTO `contact` (`Name`, `Subject`, `Email`, `Mobile`, `Message`) VALUES ('Tharusha Jayadeera', 'Lecture Slides', 'tharusha.pasindu@ymail.com', '0715414939', 'Dear Sir, Can you please upload lecture slides.'), ('Diyath Abeywickrama', 'Lecture Slides', 'diyath@gmail.com', '0715893698', ''); -- -------------------------------------------------------- -- -- Table structure for table `login` -- CREATE TABLE `login` ( `id` int(11) NOT NULL, `username` varchar(20) NOT NULL, `password` varchar(30) NOT NULL, `fullname` varchar(100) NOT NULL, `Address` varchar(100) NOT NULL, `permission` varchar(20) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `login` -- INSERT INTO `login` (`id`, `username`, `password`, `fullname`, `Address`, `permission`) VALUES (111, 'tharusha', 'tharusha123', 'Tharusha Jayadeera', '638/2, Pagoda rd, Nugegoda.', 'null'), (154, 'viraj', 'viraj123', 'Viraj xxx', '45, Kirulapone,Nugegoda', 'admin'); -- -- Indexes for dumped tables -- -- -- Indexes for table `login` -- ALTER TABLE `login` ADD PRIMARY KEY (`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 sequence test_id_seq; create table test( id bigint not null default nextval('test_id_seq') primary key, content text not null unique );
# David Kloepper # Data Visualization Bootcamp, Cohort 3 # April 22, 2019 -- Denotes original instructions # Denotes comment from David Kloepper USE sakila; -- 1a. Display the first and last names of all actors from the table actor. SELECT first_name, last_name FROM actor; -- 1b. Display the first and last name of each actor in a single column in upper case letters. Name the column Actor Name. SELECT UPPER(CONCAT(first_name, ' ', last_name)) AS 'Actor Name' FROM actor; -- 2a. You need to find the ID number, first name, and last name of an actor, of whom you know only the first name, "Joe." -- What is one query would you use to obtain this information? # David Kloepper: Added BINARY keyword to enforce a case-sensitive search SELECT actor_id, first_name, last_name FROM actor WHERE BINARY first_name = 'JOE'; -- 2b. Find all actors whose last name contain the letters GEN SELECT actor_id, first_name, last_name FROM actor WHERE last_name LIKE '%GEN%'; -- 2c. Find all actors whose last names contain the letters LI. This time, order the rows by last name and first name, in that order: SELECT actor_id, first_name, last_name FROM actor WHERE last_name LIKE '%LI%' ORDER BY last_name , first_name; -- 2d. Using IN, display the country_id and country columns of the following countries: Afghanistan, Bangladesh, and China SELECT country_id, country FROM country WHERE country IN ('Afghanistan' , 'Bangladesh', 'China'); -- 3a. You want to keep a description of each actor. You don't think you will be performing queries on a description, -- so create a column in the table actor named description and use the data type BLOB -- (Make sure to research the type BLOB, as the difference between it and VARCHAR are significant). ALTER TABLE actor ADD COLUMN description BLOB AFTER last_name; -- 3b. Very quickly you realize that entering descriptions for each actor is too much effort. Delete the description column. ALTER TABLE actor DROP COLUMN description; -- 4a. List the last names of actors, as well as how many actors have that last name. SELECT last_name, COUNT(last_name) AS actor_count FROM actor GROUP BY last_name; -- 4b. List last names of actors and the number of actors who have that last name, but only for names that are shared by at least two actors SELECT last_name, COUNT(last_name) AS actor_count FROM actor GROUP BY last_name HAVING COUNT(last_name) > 1; -- 4c. The actor HARPO WILLIAMS was accidentally entered in the actor table as GROUCHO WILLIAMS. Write a query to fix the record. UPDATE actor SET first_name = 'HARPO' WHERE first_name = 'GROUCHO' AND last_name = 'WILLIAMS'; -- 4d. Perhaps we were too hasty in changing GROUCHO to HARPO. It turns out that GROUCHO was the correct name after all! -- In a single query, if the first name of the actor is currently HARPO, change it to GROUCHO. # David Kloepper: This query will not update using only first_name unless MySQL safe update mode is disabled (commented out). # It will work under safe mode if both the first and last name are used (ensures single row update), so that version is included here UPDATE actor SET first_name = 'GROUCHO' WHERE # first_name = 'HARPO'; first_name = 'HARPO' AND last_name = 'WILLIAMS'; -- 5a. You cannot locate the schema of the address table. Which query would you use to re-create it? -- SHOW CREATE TABLE address; # David Kloepper: CREATE TABLE query is commented out to prevent error when running entire SQL script, due to table already existing #CREATE TABLE `address` ( # `address_id` smallint(5) unsigned NOT NULL AUTO_INCREMENT, # `address` varchar(50) NOT NULL, # `address2` varchar(50) DEFAULT NULL, # `district` varchar(20) NOT NULL, # `city_id` smallint(5) unsigned NOT NULL, # `postal_code` varchar(10) DEFAULT NULL, # `phone` varchar(20) NOT NULL, # `location` geometry NOT NULL, # `last_update` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ON UPDATE CURRENT_TIMESTAMP, # PRIMARY KEY (`address_id`), # KEY `idx_fk_city_id` (`city_id`), # SPATIAL KEY `idx_location` (`location`), # CONSTRAINT `fk_address_city` FOREIGN KEY (`city_id`) REFERENCES `city` (`city_id`) ON UPDATE CASCADE # ) ENGINE=InnoDB AUTO_INCREMENT=606 DEFAULT CHARSET=utf8 -- 6a. Use JOIN to display the first and last names, as well as the address, of each staff member. Use the tables staff and address: SELECT s.first_name, s.last_name, a.address FROM staff AS s INNER JOIN address AS a ON s.address_id = a.address_id; -- 6b. Use JOIN to display the total amount rung up by each staff member in August of 2005. Use tables staff and payment. SELECT CONCAT(s.first_name, ' ', s.last_name) AS staff_name, SUM(p.amount) AS total_amount FROM staff AS s INNER JOIN payment AS p ON s.staff_id = p.staff_id WHERE YEAR(p.payment_date) = 2005 AND MONTH(p.payment_date) = 8 GROUP BY s.last_name , s.first_name; -- 6c. List each film and the number of actors who are listed for that film. Use tables film_actor and film. Use inner join. SELECT f.title, COUNT(fa.actor_id) AS actor_count FROM film AS f INNER JOIN film_actor AS fa ON f.film_id = fa.film_id GROUP BY f.title; -- 6d. How many copies of the film Hunchback Impossible exist in the inventory system? SELECT f.title, COUNT(i.inventory_id) AS copy_count FROM film AS f INNER JOIN inventory AS i ON f.film_id = i.film_id GROUP BY f.title HAVING f.title = 'Hunchback Impossible'; -- 6e. Using the tables payment and customer and the JOIN command, list the total paid by each customer. -- List the customers alphabetically by last name: SELECT CONCAT(c.first_name, ' ', c.last_name) AS customer_name, SUM(p.amount) AS total_payments FROM customer AS c LEFT JOIN payment AS p ON c.customer_id = p.customer_id GROUP BY c.first_name , c.last_name ORDER BY c.last_name; -- 7a. The music of Queen and Kris Kristofferson have seen an unlikely resurgence. -- As an unintended consequence, films starting with the letters K and Q have also soared in popularity. -- Use subqueries to display the titles of movies starting with the letters K and Q whose language is English. SELECT f.title FROM film AS f WHERE (f.title LIKE 'K%' OR f.title LIKE 'Q%') AND f.language_id = (SELECT l.language_id FROM language AS l WHERE l.name = 'English'); -- 7b. Use subqueries to display all actors who appear in the film Alone Trip. SELECT CONCAT(a.first_name, ' ', a.last_name) AS actor_name FROM actor AS a WHERE a.actor_id IN (SELECT fa.actor_id FROM film_actor AS fa INNER JOIN film AS f ON fa.film_id = f.film_id WHERE f.title = 'Alone Trip'); -- 7c. You want to run an email marketing campaign in Canada, for which you will need -- the names and email addresses of all Canadian customers. -- Use joins to retrieve this information. SELECT CONCAT(c.first_name, ' ', c.last_name) AS customer_name, c.email AS email_address FROM customer AS c INNER JOIN address AS a ON c.address_id = a.address_id INNER JOIN city AS ci ON a.city_id = ci.city_id INNER JOIN country AS co ON ci.country_id = co.country_id WHERE co.country = 'Canada'; -- 7d. Sales have been lagging among young families, and you wish to target all family movies for a promotion. -- Identify all movies categorized as family films. SELECT f.title FROM film AS f INNER JOIN film_category AS fc ON f.film_id = fc.film_id INNER JOIN category AS c ON fc.category_id = c.category_id WHERE c.name = 'Family'; -- 7e. Display the most frequently rented movies in descending order. SELECT f.title AS film_title, COUNT(r.rental_id) AS number_of_rentals FROM rental AS r INNER JOIN inventory AS i ON r.inventory_id = i.inventory_id INNER JOIN film AS f ON i.film_id = f.film_id GROUP BY f.title ORDER BY COUNT(r.rental_id) DESC; -- 7f. Write a query to display how much business, in dollars, each store brought in. -- #David Kloepper: This is probably the correct query, however there are 5 records in the payment table that have no rental id, # so this query returns $5.95 less than summed total in the payment table SELECT s.store_id, SUM(p.amount) AS total_business FROM payment AS p LEFT JOIN rental AS r ON p.rental_id = r.rental_id INNER JOIN inventory AS i ON i.inventory_id = r.inventory_id INNER JOIN store AS s ON i.store_id = s.store_id GROUP BY s.store_id; #David Kloepper: This query returns the full total of payments, supported by the current data model that allows only one store id per staff, # and all payments having a staff id SELECT s.store_id, SUM(p.amount) AS total_business FROM payment AS p LEFT JOIN staff AS st ON p.staff_id = st.staff_id INNER JOIN store AS s ON st.store_id = s.store_id GROUP BY s.store_id; -- 7g. Write a query to display for each store its store ID, city, and country. SELECT s.store_id, ci.city, co.country FROM store AS s INNER JOIN address AS a ON s.address_id = a.address_id INNER JOIN city AS ci ON a.city_id = ci.city_id INNER JOIN country AS co ON ci.country_id = co.country_id; -- 7h. List the top five genres in gross revenue in descending order. -- -- (Hint: you may need to use the following tables: category, film_category, inventory, payment, and rental.) SELECT c.name AS category_name, SUM(p.amount) AS gross_revenue FROM category AS c INNER JOIN film_category AS fc ON c.category_id = fc.category_id INNER JOIN inventory AS i ON fc.film_id = i.film_id INNER JOIN rental AS r ON i.inventory_id = r.inventory_id INNER JOIN payment AS p ON r.rental_id = p.rental_id GROUP BY c.name ORDER BY SUM(p.amount) DESC LIMIT 5; -- 8a. In your new role as an executive, you would like to have an easy way of viewing the Top five genres by gross revenue. -- Use the solution from the problem above to create a view. If you haven't solved 7h, you can substitute another query to create a view. CREATE OR REPLACE VIEW top_categories AS SELECT c.name AS category_name, SUM(p.amount) AS gross_revenue FROM category AS c INNER JOIN film_category AS fc ON c.category_id = fc.category_id INNER JOIN inventory AS i ON fc.film_id = i.film_id INNER JOIN rental AS r ON i.inventory_id = r.inventory_id INNER JOIN payment AS p ON r.rental_id = p.rental_id GROUP BY c.name ORDER BY SUM(p.amount) DESC LIMIT 5; -- 8b. How would you display the view that you created in 8a? SELECT category_name, gross_revenue FROM top_categories; -- 8c. You find that you no longer need the view top_five_genres. Write a query to delete it. DROP VIEW IF EXISTS top_categories;
Question 1 declare empno sh_emp.eno %type; cursor salCd is select eno from sh_emp where salary > 5000; begin open salCd; loop fetch salCd into empno ; update sh_emp set city = 'LONDON' where eno = empno; exit when salCd %notfound; end loop; close salCd; end; / Question 2 declare cursor c is select extract(month from DOJ),avg(salary) from sh_emp group by extract(month from DOJ); mon varchar(4); cnt int; begin open c; loop fetch c into mon,cnt ; dbms_output.put_line(mon || '-' || cnt ); exit when c %notfound; end loop; close c; end; /
-- {'dct': {'k1': 'v1', 'k2': 'v1'}} select * from xxx where 1 = 1 and col0 in ('k1', 'v1') and col1 in ('k2', 'v2') ;
-- Seed data for department table. Populate this first INSERT INTO department (name) VALUES ("Sales"), ("IT"); -- Seed Data for role table. Populate this next INSERT INTO role (title, salary, department_id) VALUES ("Sales Associate", 50000.2, 1), ("Lead Developer", 100000, 2); -- Seed Data for employees INSERT INTO employee (first_name, last_name, role_id) VALUES ("John", "Deer", 1), ("Jane", "Doe", 2);
SELECT DISTINCT nro_voluntario, id_institucion, id_tarea FROM unc_esq_voluntario.voluntario ORDER BY nro_voluntario;
create table t_board( board_id int primary key IDENTITY(1,1), board_name varchar(150) not null default '', board_desc varchar(255) null default NULL, board_num int not null default 0 ) create table t_board_manager( boeard_id int not null, user_id int not null, primary key(boeard_id,user_id) ) create table t_topic( topic_id int primary key IDENTITY(1,1), board_id int not null, topic_title varchar(100) not null default '', user_id int not null, create_time datetime not null, last_post datetime not null, topic_views int not null, topic_replies int not null, digest int not null ) create table t_post( post_id int primary key IDENTITY(1,1), board_id int not null, topic_id int not null, user_id int not null, post_type tinyint not null default 2, post_text text not null, create_time datetime not null ) create table t_user( user_id int primary key identity(1,1), user_name varchar(30) not null, password varchar(40) not null, user_type tinyint not null default 1, locked tinyint not null default 0, credit int default 0 ) create table t_login_log( login_log_id int primary key identity(1,1), user_id int not null, ip varchar(30) not null, login_datetime datetime not null )
############## #数据库创建脚本 ############## CREATE TABLE user_basic ( user_id BIGINT NOT NULL, user_name CHAR(64) NOT NULL, user_sex TINYINT NOT NULL, user_create_time DATE NULL, PRIMARY KEY(user_id) ) ENGINE=InnoDB; CREATE TABLE user_tieba ( user_id BIGINT NOT NULL, tieba_name CHAR(64) NOT NULL, update_time DATETIME NOT NULL, is_like TINYINT NULL, level_id TINYINT NULL, level_name CHAR(64) NULL, cur_score INT NULL, bawu TINYINT NULL, PRIMARY KEY (user_id, tieba_name) ) ENGINE=InnoDB; CREATE TABLE post ( tieba_name CHAR(64) NOT NULL, thread_id BIGINT NOT NULL, post_id BIGINT NOT NULL, user_id BIGINT NOT NULL, content TEXT NOT NULL, post_no INT NOT NULL, post_index INT NOT NULL, data DATETIME NOT NULL, is_anonym BOOLEAN NULL, open_id CHAR(64) NULL, open_type CHAR(64) NULL, vote_crypt CHAR(255) NULL, type CHAR(64) NULL, ptype CHAR(64) NULL, is_saveface BOOLEAN NULL, props CHAR(255) NULL, pb_tpoint CHAR(255) NULL, PRIMARY KEY(post_id) ) ENGINE=InnoDB; CREATE TABLE comment ( tieba_name CHAR(64) NOT NULL, post_id BIGINT NOT NULL, comment_id BIGINT NOT NULL, user_id BIGINT NOT NULL, now_time DATETIME NOT NULL, content MEDIUMTEXT NOT NULL, ptype CHAR(255) NULL, during_time CHAR(255) NULL, direct_user_id BIGINT NULL, PRIMARY KEY(comment_id) ) ENGINE=InnoDB; CREATE TABLE thread ( tieba_name CHAR(64) NOT NULL, thread_id BIGINT NOT NULL, title CHAR(255) NOT NULL, first_post_id BIGINT NOT NULL, user_id BIGINT NOT NULL, data DATETIME NULL, update_time DATETIME NOT NULL, is_bakan CHAR(255) NULL, vid CHAR(255) NULL, is_good BOOLEAN NULL, is_top BOOLEAN NULL, is_protal CHAR(255) NULL, is_membertop CHAR(255) NULL, is_multi_forum CHAR(255) NULL, frs_tpiont CHAR(255) NULL, PRIMARY KEY (thread_id) ) ENGINE=InnoDB;
drop table Equipment; drop table Can_Fly; drop table Assigned_To; drop table Booked_On; drop table Departure; drop table Pilot; drop table Employee; drop table Person; create table Person ( Name varchar(15) not null, Address varchar(15) not null, Phone varchar(12), -- optional primary key (Name) ); create table Employee ( Name varchar(15) not null, Salary int, Emp_No smallint unique not null, primary key (Name), constraint empfk foreign key (Name) references Person(Name) ); create table Pilot ( Emp_No smallint not null, constraint pilfk foreign key (Emp_No) references Employee(Emp_No) ); drop table Aircraft; drop table Plane; create table Plane ( Maker varchar(15) not null, Model_No varchar(15) not null, primary key (Model_No) ); create table Aircraft ( -- subsumes type Serial_No smallint not null, Model_No varchar(15) not null, primary key (Serial_No, Model_No), constraint airfk foreign key (Model_No) references Plane(Model_No) ); drop table Flight; create table Flight ( Num smallint not null, Origin varchar(3), Dest varchar(3), Dep_Time date, Arr_Time date, primary key (Num) ); create table Departure ( /* subsumes Instance_Of */ Dep_Date date not null, Num smallint not null, primary key (Dep_Date, Num), constraint depfk foreign key (Num) references Flight(Num) ); create table Booked_On ( Name varchar(15) not null, Dep_Date date not null, Num smallint not null, primary key (Name, Dep_Date, Num), constraint boofk foreign key (Dep_Date, Num) references Departure(Dep_Date, Num) ); create table Assigned_To ( Emp_No smallint not null, Dep_Date date not null, Num smallint not null, primary key (Emp_No, Dep_Date, Num), constraint assfk1 foreign key (Emp_No) references Employee(Emp_No), constraint assfk2 foreign key (Dep_Date, Num) references Departure(Dep_Date, Num) ); create table Can_Fly ( Emp_No smallint not null, Model_No varchar(15) not null, primary key (Emp_No, Model_No), constraint canfk1 foreign key (Emp_No) references Employee(Emp_No), constraint canfk2 foreign key (Model_No) references Plane(Model_No) ); create table Equipment ( Dep_Date date not null, Num smallint not null, Serial_No smallint not null, Model_No varchar(15) not null, primary key (Dep_Date, Num, Serial_No, Model_No), constraint equfk1 foreign key (Dep_Date, Num) references Departure(Dep_Date, Num), constraint equfk2 foreign key (Serial_No, Model_No) references Aircraft(Serial_No, Model_No) );
CREATE TABLE PUBLIC.person ( id INT, tenant VARCHAR(90), first_name VARCHAR(90), last_name VARCHAR(90) ); INSERT INTO PUBLIC.person(id, tenant, first_name, last_name) VALUES (1, 'base', 'Mario', 'Neri'); INSERT INTO PUBLIC.person(id, tenant, first_name, last_name) VALUES (2, 'base', 'Marco', 'Rssi'); INSERT INTO PUBLIC.person(id, tenant, first_name, last_name) VALUES (3, 'base', 'Luca', 'Verdi');
SELECT DNUM AS TICKET,IEAN AS EAN,ICOD AS MODELO,IDESCR AS DESCRIPCION,FAM2.FAMDESCR AS DEPARTAMENTO, AICANTF AS VENTA_EN_UNIDADES,AICOSTO * 1.16 AS COSTO_C_IVA,AICOSTO * AICANTF * 1.16 AS COSTO_TOTAL, AIPRECIO * 1.16 AS PRECIO_C_IVA,AIPRECIO * AICANTF * 1.16AS PRECIO_TOTAL,FAM1.FAMDESCR AS PROVEEDOR, FAM3.FAMDESCR AS TIPO,FAM4.FAMDESCR AS SUBTIPO,FAM5.FAMDESCR AS PERSONAJE, FAM6.FAMDESCR AS TRIMESTRE,FAM7.FAMDESCR AS DISEÑADOR,FAM8.FAMDESCR AS LICENCIA, FAM9.FAMDESCR AS TIPO_DE_LICENCIA,CATDESCR AS TIENDA, DFECHA AS FECHA, IF(DALMACEN < 12, "BOUTIQUES", IF(DALMACEN <303,"MAYOREO" ,IF(DALMACEN <503,"FRANQUICIAS", "BODEGAS"))) AS CLASIFICA_ALMACEN,SUBSTRING(ICOD,1,9)AS MODELO_PADRE, DREFER AS FACTURA FROM FAXINV LEFT JOIN FDOC ON FDOC.DSEQ=FAXINV.DSEQ LEFT JOIN FINV ON FINV.ISEQ=FAXINV.ISEQ LEFT JOIN FCLI ON FCLI.CLISEQ=FDOC.CLISEQ LEFT JOIN FUNIDAD ON FUNIDAD.UCOD=FINV.IUM LEFT JOIN FALMCAT ON FALMCAT.CATALM = FDOC.DALMACEN LEFT JOIN FAG ON FAG.AGTNUM = FDOC.DPAR1 LEFT JOIN FFAM AS FAM1 ON FAM1.FAMTNUM=FINV.IFAM1 LEFT JOIN FFAM AS FAM2 ON FAM2.FAMTNUM=FINV.IFAM2 LEFT JOIN FFAM AS FAM3 ON FAM3.FAMTNUM=FINV.IFAM3 LEFT JOIN FFAM AS FAM4 ON FAM4.FAMTNUM=FINV.IFAM4 LEFT JOIN FFAM AS FAM5 ON FAM5.FAMTNUM=FINV.IFAM5 LEFT JOIN FFAM AS FAM6 ON FAM6.FAMTNUM=FINV.IFAM6 LEFT JOIN FFAM AS FAM7 ON FAM7.FAMTNUM=FINV.IFAM7 LEFT JOIN FFAM AS FAM8 ON FAM8.FAMTNUM=FINV.IFAM8 LEFT JOIN FFAM AS FAM9 ON FAM9.FAMTNUM=FINV.IFAM9 LEFT JOIN FFAM AS FAMA ON FAMA.FAMTNUM=FINV.IFAMA WHERE DITIPMV='T' AND DFECHA>='2020-03-01' AND DFECHA<='2020-03-15' AND DALMACEN >11 AND DALMACEN <400
/* Formatted on 17/06/2014 18:04:12 (QP5 v5.227.12220.39754) */ CREATE OR REPLACE FORCE VIEW MCRE_OWN.V_MCRE0_APP_SCHEDA_ANAG_GE ( COD_GRUPPO_ECONOMICO, COD_SNDG, VAL_PD_ONLINE, VAL_RATING_ONLINE, VAL_PD_MONIT_ONLINE, VAL_RATING_MONIT_ONLINE, VAL_IRIS, VAL_LR, VAL_LGD, VAL_EAD, VAL_PA, VAL_ACCORDATO, VAL_UTILIZZATO, DTA_IRIS, DTA_PD_ONLINE, DTA_PD_MONITORAGGIO, VAL_QI, VAL_QIS_ACC, VAL_QIS_UTI, FLG_FATAL ) AS SELECT /*+ INDEX(CR IDX_T_MCRE0_APP_CR_SNDG) */ DISTINCT -- V1 02/12/2010 VG: Congelata -- v2 08/03/2011 MM: passata su tabella PCR -- v3 16/03/2011 LF: aggiunti dta_ris, dta_pd_online e dta_pd_monitoraggio -- v4 28/03/2011 VG: dati presi per ge -- v5 21/04/2011 VG: aggiunto cod_sndg per capogruppo -- V6 02/05/2011 LF: aggiunti i campi QIS -- V7 02/05/2011 VG: PCR NUOVA 3 con CR commentata -- V8 20/06/2011 VG: Solo GE join FG -- V9 11/07/2011 MM: Scommentata CR -- V10 14/10/2013 TB: AGGIUNTO CAMPO FLG_FATAL GE.COD_GRUPPO_ECONOMICO, GE.COD_SNDG, A.VAL_PD_ONLINE, A.VAL_RATING_ONLINE, I.VAL_PD_MONITORAGGIO VAL_PD_MONIT_ONLINE, I.VAL_RATING_MONITORAGGIO VAL_RATING_MONIT_ONLINE, I.VAL_IRIS_GRE VAL_IRIS, I.VAL_LIV_RISCHIO_GRE VAL_LR, I.VAL_LGD VAL_LGD, I.VAL_EAD VAL_EAD, I.VAL_PA VAL_PA, B.GEGB_ACC_CASSA + B.GEGB_ACC_FIRMA VAL_ACCORDATO, B.GEGB_UTI_CASSA + B.GEGB_UTI_FIRMA VAL_UTILIZZATO, I.DTA_RIFERIMENTO DTA_IRIS, A.DTA_RIF_PD_ONLINE DTA_PD_ONLINE, I.DTA_PD_MONITORAGGIO, NULL VAL_QI, CR.GEGB_QIS_ACC VAL_QIS_ACC, CR.GEGB_QIS_UTI VAL_QIS_UTI, I.FLG_FATAL FROM T_MCRE0_APP_ANAGRAFICA_GRUPPO A, T_MCRE0_APP_GRUPPO_ECONOMICO GE, V_MCRE0_APP_UPD_FIELDS_PALL B, T_MCRE0_APP_IRIS I, T_MCRE0_APP_CR CR WHERE GE.FLG_CAPOGRUPPO = 'S' AND GE.COD_SNDG = B.COD_SNDG AND B.FLG_GRUPPO_ECONOMICO = '1' AND GE.COD_SNDG = A.COD_SNDG AND GE.COD_SNDG = I.COD_SNDG(+) AND GE.COD_SNDG = CR.COD_SNDG(+); GRANT DELETE, INSERT, REFERENCES, SELECT, UPDATE, ON COMMIT REFRESH, QUERY REWRITE, DEBUG, FLASHBACK, MERGE VIEW ON MCRE_OWN.V_MCRE0_APP_SCHEDA_ANAG_GE TO MCRE_USR;
--10 Octombrie Select phone_number ,to_number(replace(phone_number,'.',','), '999,999,9999') From employees Where employee_id between 100 and 144; ---am schimbat nr. telefon (string) in number Select last_name, job_id, salary, DECODE (job_id, 'IT_PROG', salary*1.10, 'ST_Clerk', salary*1.15, 'SA_REP', salary *1.20, salary) as REVISED_SALARY From employees; Select sum(salary) as totalsalary ,min(salary) as min_salary ,max(salary) as max_salary ,AVG(salary) as avg_salary ,Count (employee_id) as count_employee_id From employees; Select distinct count(distinct job_id) as job_id_1 ,count(job_id) as job_id_2 ,sum(salary) as salary_2 ,sum(distinct salary) as salary_1 ,min(hire_date) as min_hire_date ,max(hire_date) as max_hire_date ,count(nvl(commission_pct, 0)) as count_employee_id ,count(*) as count_all --deoarece doar 4 nu au null la commision_pct From employees; --Where job_id='SA_REP'; Select nvl (department_id,10) ,round (AVG(salary),2) From employees Group by nvl (department_id,10); Select department_id, job_id, manager_id, sum(salary) From employees Where department_id between 50 and 100 ---AND salary>=10000 ---AND Max(salary)>=10000 da eroare Group by department_id, job_id, manager_id Having max(salary)>=10000 Order by 1; ---------------12 oct --1 Select to_char(hire_date,'MM.YYYY'), max(salary) From employees Where phone_number LIKE '650%' Group by to_char(hire_date,'MM.YYYY') Order by max(salary) DESC; Select * From employees; --2 Select INITCAP(job_id), count(employee_id) From employees Group by job_id; --3a Select to_char(hire_date,'MM.YYYY'), count(employee_id) From employees Group by to_char(hire_date,'MM.YYYY') Order by 1 DESC; --3b Select to_char(hire_date,'MM.YYYY'), count(employee_id) AS COUNT_EMPLOYEE From employees Group by to_char(hire_date,'MM.YYYY') Having count(employee_id)>1 Order by 1 DESC; --4 Select manager_id, count(manager_id) From employees Group by manager_id Having count(manager_id)>1; --5 Select To_char(commission_pct) as char_commission, count(employee_id) ,NVL((To_char(commission_pct)),'Persoane fara comision') as situatia_comisioanelor From employees Group by To_char(commission_pct); --6 Select employee_id, job_id, months_between(start_date, end_date); From job_history; ----------------- tema 11 Select employee_id, first_name, job_id, job_title From employees natural join jobs; Select * from employees Natural join jobs natural join departments where employee_id=102; Select employees.first_name ,employees.last_name ,jobs.job_title from employees Natural join jobs; Select * from employees join jobs using(job_id) join departments using(manager_id); Select distinct manager_id from employees; Minus Select distinct manager_id from departments; Select t1.* ,t2.job_title ,t2.max_salary ,t2.min_salary from employees t1 join jobs t2 on t1.job_id=t2.job_id;
drop table driver_pref; create table driver_pref (driver_id int, sunday int, monday int, tuesday int, wednesday int, thursday int, friday int, saturday int, PRIMARY KEY (driver_id)); insert into driver_pref values (10001, 0, 1, 0, 1, 0, 1, 0); insert into driver_pref values (10002, 1, 0, 1, 0, 1, 0, 0); insert into driver_pref values (10003, 0, 0, 1, 0, 1, 0, 1); insert into driver_pref values (10004, 1, 0, 0, 1, 0, 1, 0); insert into driver_pref values (10005, 0, 1, 0, 0, 1, 0, 1); insert into driver_pref values (10006, 1, 0, 1, 0, 0, 1, 0); insert into driver_pref values (10007, 0, 1, 0, 1, 0, 0, 1); insert into driver_pref values (10008, 0, 1, 0, 1, 0, 1, 0); insert into driver_pref values (10009, 1, 0, 1, 0, 1, 0, 0); insert into driver_pref values (10010, 0, 0, 1, 0, 1, 0, 1); insert into driver_pref values (10011, 1, 0, 0, 1, 0, 1, 0); insert into driver_pref values (10012, 0, 1, 0, 0, 1, 0, 1); insert into driver_pref values (10013, 1, 0, 1, 0, 0, 1, 0); insert into driver_pref values (10014, 0, 1, 0, 1, 0, 0, 1); insert into driver_pref values (10015, 0, 1, 0, 1, 0, 1, 0); insert into driver_pref values (10016, 1, 0, 1, 0, 1, 0, 0); insert into driver_pref values (10017, 0, 0, 1, 0, 1, 0, 1); insert into driver_pref values (10018, 1, 0, 0, 1, 0, 1, 0); insert into driver_pref values (10019, 0, 1, 0, 0, 1, 0, 1); insert into driver_pref values (10020, 1, 0, 1, 0, 0, 1, 0); insert into driver_pref values (10021, 0, 1, 0, 1, 0, 0, 1);
select ms.step2_id , vnc.category, ms.question_name , ms.answer_name , ms.step1_id , vnp.pheno , vnp.main_status, vnp.period, vnq.name_eng , ms.property , ms.value , ms.unit , ms.unit_standard from munjin_step2 ms left join v_name_category vnc on ms.category_id = vnc.category_id -- 카테고리명. left join v_name_pheno vnp on ms.step1_id = vnp.step1_id -- 증상명. left join v_name_qualifier vnq on ms.qualifier_id = vnq.qualifier_id -- 분류명. order by ms.step2_id;
-- -- Execute the SQL code below to your MySQL supported database to create the user DB table -- on your "server 2". This is to be able to store and update the user credentials. -- CREATE TABLE a_user ( id int AUTO_INCREMENT PRIMARY KEY, firstname varchar(256) NOT NULL, lastname varchar(256) NOT NULL, email varchar(256) NOT NULL, password varchar(2048) NOT NULL, created datetime NOT NULL DEFAULT current_timestamp(), modified timestamp NOT NULL DEFAULT current_timestamp() ON UPDATE current_timestamp(), UNIQUE KEY(email) );
/* Formatted on 21/07/2014 18:45:20 (QP5 v5.227.12220.39754) */ CREATE OR REPLACE FORCE VIEW MCRE_OWN.VNMCRE0_APP_ASS_POS_GESTORI ( COD_COMPARTO_POSIZIONE, COD_ABI_CARTOLARIZZATO, COD_NDG, COD_MACROSTATO, ID_UTENTE, ID_REFERENTE, COGNOME, COD_COMPARTO_UTENTE ) AS SELECT --v1.1 27.04 MM: aggiunto comparto_utente x.cod_comparto cod_comparto_posizione, x.cod_abi_cartolarizzato, x.cod_ndg, x.cod_macrostato, x.id_utente, x.id_referente, x.cognome, -- NVL (u.cod_comparto_assegn, u.cod_comparto_appart) x.cod_comparto_utente FROM --mv_mcre0_app_upd_field x, t_mcre0_app_utenti u V_MCRE0_APP_UPD_FIELDS_P1 x WHERE -- u.id_utente = x.id_utente -- AND x.id_utente IS NOT NULL x.id_utente <> -1 --AND NVL (x.flg_outsourcing, 'N') = 'Y' AND X.FLG_OUTSOURCING = 'Y' -- AND X.FLG_STATO_CHK = '1' AND x.cod_stato IN (SELECT cod_microstato FROM t_mcre0_app_stati s WHERE s.flg_stato_chk = 1);
CREATE TABLE ceos( id serial not null, index VARCHAR NOT NULL, nombre VARCHAR(70) NOT NULL, age VARCHAR, picture VARCHAR(1000), PRIMARY KEY (id) ); CREATE TABLE companies( id serial not null, nombre VARCHAR(100), email VARCHAR(1000), phone VARCHAR(50), about VARCHAR(1000), direccion VARCHAR(1000), registered VARCHAR(100), latitude VARCHAR(100), longitude VARCHAR(100), PRIMARY KEY (id) );
DROP TABLE IF EXISTS tower_records; CREATE TABLE IF NOT EXISTS tower_records ( level INT UNSIGNED UNIQUE, records BLOB ) CHARACTER SET = utf8 ENGINE = InnoDB; DELIMITER $$ DROP PROCEDURE IF EXISTS get_tower_records$$ CREATE PROCEDURE get_tower_records (IN param1 INT UNSIGNED) BEGIN SELECT records FROM tower_records WHERE level = param1; END$$ DROP PROCEDURE IF EXISTS update_tower_records$$ CREATE PROCEDURE update_tower_records (IN param1 INT UNSIGNED, IN param2 BLOB) BEGIN INSERT INTO tower_records(level, records) VALUES(param1, param2) ON DUPLICATE KEY UPDATE records = param2; END$$
CREATE TABLE IF NOT EXISTS s3_uri_cache ( id VARCHAR(255) NOT NULL, uri VARCHAR(255) NOT NULL, PRIMARY KEY (id) ) ENGINE=InnoDB DEFAULT CHARSET=latin1;
SELECT * FROM users WHERE users.email = $1;
delete from ct_image where ct_image_pk_id in (select c.ct_image_pk_id from ct_image c, general_image g where (c.image_pk_id = g.image_pk_id) and g.patient_pk_id in (select distinct patient_pk_id from patient p, trial_data_provenance dp where p.trial_dp_pk_id = dp.trial_dp_pk_id and project = 'CT Colonography' and dp.trial_dp_pk_id <> 3)); delete from qa_status_history where qa_status_history_pk_id in (select q.qa_status_history_pk_id from qa_status_history q, general_image g where (q.general_image_pk_id = g.image_pk_id) and g.patient_pk_id in (select distinct patient_pk_id from patient p, trial_data_provenance dp where p.trial_dp_pk_id = dp.trial_dp_pk_id and project = 'CT Colonography' and dp.trial_dp_pk_id <> 3)); delete from general_image gi where gi.patient_pk_id in(select distinct patient_pk_id from patient p, trial_data_provenance dp where p.trial_dp_pk_id = dp.trial_dp_pk_id and project = 'CT Colonography' and dp.trial_dp_pk_id <> 3); delete from general_series gs where gs.patient_pk_id in (select distinct patient_pk_id from patient p, trial_data_provenance dp where p.trial_dp_pk_id = dp.trial_dp_pk_id and project = 'CT Colonography' and dp.trial_dp_pk_id <> 3); delete from study s where s.patient_pk_id in (select distinct patient_pk_id from patient p, trial_data_provenance dp where p.trial_dp_pk_id = dp.trial_dp_pk_id and project = 'CT Colonography' and dp.trial_dp_pk_id <> 3); delete from patient p where p.patient_pk_id in (select distinct patient_pk_id from patient p, trial_data_provenance dp where p.trial_dp_pk_id = dp.trial_dp_pk_id and project = 'CT Colonography' and dp.trial_dp_pk_id <> 3 ); delete from trial_data_provenance where project = 'CT Colonography' and trial_dp_pk_id <> 3;
-- Supprimer toutes les données DELETE FROM role; DELETE FROM compte; --Activite insert into activite values(1,'Developpeur','geek@3il.fr','geek','ADMINISTRATEUR'); insert into activite values(1,'Organisateur course','Course','boldaire','ORGANISATEUR'); insert into activite values(1,'Benevole repas','Course','repas','BENEVOLE'); insert into activite values(1,'Benevole chrono','Course','chrono','BENEVOLE'); insert into activite values(1,'Benevole equipement','Course','equipement','BENEVOLE'); --Circuit insert into circuit values(3,'Grand Bol',50,sysdate,7,null); insert into circuit values(3,'Mini Bol',40,sysdate,7,null); --Puce insert into puce values('A',null); insert into puce values('B',null); insert into puce values('C',null); insert into puce values('D',null); insert into puce values('E',null); insert into puce values('F',null); insert into puce values('G',null); insert into puce values('H',null); insert into puce values('I',null); insert into puce values('J',null); --Personne insert into personne values(1,'Lim','Sophea','sophea@gmail.com'); insert into personne values (1,'Laporte','Juliette','juliette@gmail.com'); insert into personne values(1,'Moreaux','Romain','romain@gmail.com'); insert into personne values(1,'Romane','Alexis','alexis@gmail.com'); --Benevole insert into benevole values(1,1); insert into benevole values(2,1); insert into benevole values(3,1); insert into benevole values(4,1); --Etape insert into etape values(1,'courir',3,1,1); insert into etape values(1,'velo',5,2,1); insert into etape values(1,'canoe',6,3,1); insert into etape values(1,'courir',2,1,2); insert into etape values(1,'velo',3,2,2); insert into etape values(1,'canoe',5,3,2);
CREATE DATABASE IF NOT EXISTS `stp_final`; USE `stp_final`; CREATE TABLE IF NOT EXISTS `homepage` ( `id` int(11) NOT NULL AUTO_INCREMENT, `photo` char(50) COLLATE utf8_turkish_ci NOT NULL, `toptitle` varchar(250) COLLATE utf8_turkish_ci NOT NULL, `topcontent` varchar(6000) COLLATE utf8_turkish_ci NOT NULL, `link` char(50) COLLATE utf8_turkish_ci NOT NULL, `subtitle` char(250) COLLATE utf8_turkish_ci NOT NULL, `subcontent` varchar(6000) COLLATE utf8_turkish_ci NOT NULL, PRIMARY KEY (`id`) ); INSERT INTO `homepage` (`id`, `photo`, `toptitle`, `topcontent`, `link`, `subtitle`, `subcontent`) VALUES (1, 'intro.jpg', 'İÇMEYE DEĞER', '<p> Kaliteli esnaf kahvemizin her fincanı, yerel kaynaklı, elle seçilmiş malzemelerle başlar. Bir kez denediğinizde, kahvemiz günlük sabah rutininize keyifli bir katkı olacak - bunu garanti ediyoruz!</p>', 'Size', 'Size', '<p>Güne başlamak için mağazamıza girdiğinizde, size güler yüzlü hizmet, sıcak bir atmosfer ve her şeyden önce en kaliteli malzemelerle yapılmış mükemmel ürünler sunmaya kendimizi adadık. Memnun değilseniz, lütfen bize bildirin, işleri düzeltmek için elimizden geleni yapacağız!</p>'); CREATE TABLE IF NOT EXISTS `about_us` ( `id` int(11) NOT NULL AUTO_INCREMENT, `photo` char(50) COLLATE utf8_turkish_ci NOT NULL, `toptitle` char(250) COLLATE utf8_turkish_ci NOT NULL, `title` char(250) COLLATE utf8_turkish_ci NOT NULL, `content` text COLLATE utf8_turkish_ci NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8 COLLATE=utf8_turkish_ci; INSERT INTO `about_us` (`id`, `photo`, `toptitle`, `title`, `content`) VALUES (1, 'about.jpg', 'Güçlü Kahve, Güçlü Kökler', 'Kafemiz Hakkında', '<p>1987 yılında yılmaz kardeşler tarafından kurulan işletmemiz, Güney ve Orta Amerika''nın çeşitli bölgelerinde zanaatkar çiftçilerden elde ettiği zengin kahveleri servis etmektedir. Kendimizi dünyayı gezmeye, en iyi kahveyi bulmaya ve kafemizde size geri getirmeye adadık.</p><p>İçeri girdiğiniz andan bitirene kadar çökmekte olan karışımlarımızla şehvetinize kapılacağınızı garanti ediyoruz. son yudumun. Günlük rutininiz için, arkadaşlarınızla bir gezintiye çıkmak veya sadece biraz yalnız zaman geçirmek için bize katılın.</p>'); CREATE TABLE IF NOT EXISTS `users` ( `id` int(11) NOT NULL AUTO_INCREMENT, `username` char(50) NOT NULL, `password` char(50) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=15 DEFAULT CHARSET=utf8; INSERT INTO `users` (`id`, `username`, `password`) VALUES (1, 'admin', '105a9a2d46f64e147097c986076d2164'); CREATE TABLE IF NOT EXISTS `store` ( `id` int(11) NOT NULL AUTO_INCREMENT, `toptitle` char(50) NOT NULL DEFAULT '0', `maintitle` varchar(500) NOT NULL DEFAULT '0', `adress` char(250) NOT NULL DEFAULT '0', `phone` char(20) NOT NULL DEFAULT '0', PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=2 DEFAULT CHARSET=utf8; INSERT INTO `store` (`id`, `toptitle`, `maintitle`, `adress`, `phone`) VALUES (1, 'ZİYARETE GELİN', 'Çalışma Saatleri', '<p><i><strong>Cumhuriyet Caddesi</strong></i><br><i>Selçuk Mahallesi, Muratpaşa/Antalya&nbsp;</i></p>', '0 (242) 123 45 67'); CREATE TABLE IF NOT EXISTS `openingtime` ( `id` int(11) NOT NULL AUTO_INCREMENT, `day` char(50) NOT NULL, `time` char(50) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=11 DEFAULT CHARSET=utf8; INSERT INTO `openingtime` (`id`, `day`, `time`) VALUES (1, 'Pazartesi', '09:00 - 23:00'), (2, 'Salı', '09:00 - 23:00'), (3, 'Çarşamba', '09:00 - 23:00'), (4, 'Perşembe', '09:00 - 23:00'), (5, 'Cuma', '09:00 - 23:00'), (6, 'Cumartesi', '10:00 - 00:00'), (7, 'Pazar', '10:00 - 00:00'); CREATE TABLE IF NOT EXISTS `products` ( `id` int(11) NOT NULL AUTO_INCREMENT, `photo` char(50) COLLATE utf8_turkish_ci NOT NULL, `title` char(250) COLLATE utf8_turkish_ci NOT NULL, `header` char(250) COLLATE utf8_turkish_ci NOT NULL, `content` text COLLATE utf8_turkish_ci NOT NULL, PRIMARY KEY (`id`) ) ENGINE=MyISAM AUTO_INCREMENT=7 DEFAULT CHARSET=utf8 COLLATE=utf8_turkish_ci; INSERT INTO `products` (`id`, `photo`, `title`, `header`, `content`) VALUES (1, 'products-01.jpg', 'Çay ve Kahveler', 'MÜKEMMELLİK İÇİN HARMANLANMIŞ', '<p class="mb-0">İşimizle gurur duyuyoruz ve bu gösteriyor. Bizden her içecek siparişi verdiğinizde, bunun yaşamaya değer bir deneyim olacağını garanti ediyoruz. Dünyaca ünlü Venezuela Cappuccino''muz, serinletici bir buzlu bitki çayı veya bir fincan özel kaynaklı sade kahve gibi basit bir şey olsun, daha fazlası için geri geleceksiniz.</p>'), (2, 'products-02.jpg', 'Mutfak ve Hamurişi', 'LEZZETLİ İKRAMLAR, İYİ YEMEKLER', '<p class="mb-0">Mevsimlik menümüzde lezzetli atıştırmalıklar, unlu mamüller ve hatta kahvaltı veya öğle yemeği için mükemmel olan tam öğünler bulunur. Özel ürünler için premium satıcıların yanı sıra, mümkün olduğunca yerel, organik çiftliklerden malzemelerimizi tedarik ediyoruz.</p>'), (3, 'products-03.jpg', 'Özel Karışımlar', 'DÜNYANIN DÖRT BİR YANINDAN', '<p class="mb-0">En kaliteli kahve için dünyayı gezmek gurur verici bir şeydir. Bizi ziyaret ettiğinizde, her zaman dünyanın dört bir yanından, özellikle Orta ve Güney Amerika''daki bölgelerden yeni karışımlar bulacaksınız. Karışımlarımızı küçükten büyüğe toplu miktarlarda satıyoruz. Daha fazla bilgi için lütfen bizi şahsen ziyaret edin.</p>');
use sakila; #1a select first_name + last_name from actor; #1b SELECT CONCAT(first_name, ' ', last_name) AS whole_name from actor; #2a SELECT actor_id, first_name, last_name FROM actor WHERE first_name like "John"; #2b SELECT first_name, last_name FROM actor WHERE last_name like '%gen%'; #2c SELECT first_name, last_name FROM actor WHERE last_name like '%li%' ORDER BY last_name ASC,first_name ASC; #2d SELECT country_id, country FROM country WHERE country like 'Afghanistan' OR country LIKE 'Bangladesh' OR country LIKE 'China'; #3a ALTER TABLE actor ADD middle_name VARCHAR(15) AFTER first_name; #3b ALTER TABLE actor MODIFY COLUMN middle_name blob; #3c ALTER TABLE actor DROP COLUMN middle_name; #4a SELECT last_name, COUNT(*) FROM actor GROUP BY last_name; #4b SELECT last_name, COUNT(*) FROM actor GROUP BY last_name HAVING COUNT(*) > 1; #4c UPDATE actor SET first_name = 'Harpo' WHERE actor_id = 172; (SELECT actor_id FROM actor WHERE first_name = 'groucho' and last_name = 'williams'); #4d UPDATE actor SET first_name = IF(first_name LIKE 'harpo', 'groucho', 'mucho groucho') WHERE actor_id = 172; #5a SHOW CREATE TABLE address; #6a SELECT actor.first_name, actor.last_name, address.address FROM actor INNER JOIN address ON actor_id = address_id; #6b SELECT payment.staff_id, sum(amount) FROM payment INNER JOIN staff ON payment.staff_id = staff.staff_id GROUP BY staff.staff_id; #6c SELECT title, film.film_id, count(DISTINCT actor_id) AS number_of_actors FROM film INNER JOIN film_actor ON actor_id = actor_id GROUP BY film.film_id; #6d SELECT title, count(*) as number_of_copies FROM film WHERE title like '%Hunchback Impossible%'; #6e SELECT first_name, last_name, sum(payment.amount) as total_payment FROM customer INNER JOIN payment ON customer.customer_id = payment.customer_id GROUP BY payment.customer_id ORDER BY last_name; #7a SELECT title, language.name FROM film INNER JOIN language ON film.language_id = language.language_id WHERE (title like 'q%' OR title like 'k%' ) and language.name like 'english'; #7b SELECT DISTINCT actor.first_name, actor.last_name from film_actor INNER JOIN film ON film_actor.film_id = film.film_id INNER JOIN actor ON film_actor.actor_id = actor.actor_id WHERE film.title like 'alone trip'; #7c SELECT first_name, last_name, email FROM customer INNER JOIN address on address.address_id = customer.address_id INNER JOIN city on address.city_id = city.city_id INNER JOIN country on city.country_id = country.country_id WHERE country.country LIKE 'canada'; #7d SELECT title FROM film INNER JOIN film_category ON film.film_id = film_category.film_id INNER JOIN category ON category.category_id = film_category.category_id WHERE category.name like 'Family'; #7e SELECT title FROM film ORDER BY rental_rate DESC; #7f SELECT store.store_id, sum(payment.amount) FROM payment INNER JOIN staff ON payment.staff_id = staff.staff_id INNER JOIN store ON store.store_id = staff.store_id GROUP BY store.store_id; #7g SELECT store.store_id, country.country, city.city FROM store INNER JOIN address ON store.address_id = address.address_id INNER JOIN city ON address.city_id = city.city_id INNER JOIN country ON city.country_id = country.country_id; #7h SELECT name, sum(payment.amount) FROM category INNER JOIN film_category ON category.category_id = film_category.category_id INNER JOIN inventory ON inventory.film_id = film_category.film_id INNER JOIN rental ON inventory.inventory_id = rental.inventory_id INNER JOIN payment ON rental.rental_id = payment.rental_id GROUP BY film_category.category_id ORDER BY sum(payment.amount) DESC LIMIT 5; #8a CREATE VIEW top_five AS SELECT name, sum(payment.amount) FROM category INNER JOIN film_category ON category.category_id = film_category.category_id INNER JOIN inventory ON inventory.film_id = film_category.film_id INNER JOIN rental ON inventory.inventory_id = rental.inventory_id INNER JOIN payment ON rental.rental_id = payment.rental_id GROUP BY film_category.category_id ORDER BY sum(payment.amount) DESC LIMIT 5; #8b SELECT * FROM top_five; #8c DROP VIEW top_five;
DROP DATABASE IF EXISTS generic_company; CREATE DATABASE generic_company; USE generic_company;
START TRANSACTION; alter table user_table add column salt varchar(255); alter table project alter column description type text; alter table project alter column motivation type text; update comment set text = (select data from pg_catalog.pg_largeobject where loid = text::int); update comment set text = replace(text, '\\015\\012', '\n'); COMMIT;
alter table MOD_BLOB_DATA rename to MOD_FORECAST; alter table MOD_FORECAST add NUM_MOD INTEGER default 0 not null;
-- phpMyAdmin SQL Dump -- version 3.4.10.1deb1 -- http://www.phpmyadmin.net -- -- Хост: localhost -- Время создания: Окт 26 2015 г., 22:01 -- Версия сервера: 5.5.37 -- Версия PHP: 5.3.10-1ubuntu3.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 */; -- -- База данных: `fiestar` -- -- -------------------------------------------------------- -- -- Структура таблицы `fs_city` -- CREATE TABLE IF NOT EXISTS `fs_city` ( `id` int(12) unsigned NOT NULL AUTO_INCREMENT, `id_region` int(10) NOT NULL, `name` varchar(250) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1126 ; -- -- Дамп данных таблицы `fs_city` -- INSERT INTO `fs_city` (`id`, `id_region`, `name`) VALUES (1, 1, 'Адыгейск'), (2, 1, 'Майкоп'), (3, 2, 'Горно-Алтайск'), (4, 3, 'Алейск'), (5, 3, 'Барнаул'), (6, 3, 'Белокуриха'), (7, 3, 'Бийск'), (8, 3, 'Горняк'), (9, 3, 'Заринск'), (10, 3, 'Змеиногорск'), (11, 3, 'Камень-на-Оби'), (12, 3, 'Новоалтайск'), (13, 3, 'Рубцовск'), (14, 3, 'Славгород'), (15, 3, 'Яровое'), (16, 4, 'Белогорск'), (17, 4, 'Благовещенск'), (18, 4, 'Завитинск'), (19, 4, 'Зея'), (20, 4, 'Райчихинск'), (21, 4, 'Свободный'), (22, 4, 'Сковородино'), (23, 4, 'Тында'), (24, 4, 'Шимановск'), (25, 5, 'Архангельск'), (26, 5, 'Вельск'), (27, 5, 'Каргополь'), (28, 5, 'Коряжма'), (29, 5, 'Котлас'), (30, 5, 'Мезень'), (31, 5, 'Мирный'), (32, 5, 'Новодвинск'), (33, 5, 'Няндома'), (34, 5, 'Онега'), (35, 5, 'Северодвинск'), (36, 5, 'Сольвычегодск'), (37, 5, 'Шенкурск'), (38, 6, 'Астрахань'), (39, 6, 'Ахтубинск'), (40, 6, 'Знаменск'), (41, 6, 'Камызяк'), (42, 6, 'Нариманов'), (43, 6, 'Харабали'), (44, 7, 'Агидель'), (45, 7, 'Баймак'), (46, 7, 'Белебей'), (47, 7, 'Белорецк'), (48, 7, 'Бирск'), (49, 7, 'Благовещенск'), (50, 7, 'Давлеканово'), (51, 7, 'Дюртюли'), (52, 7, 'Ишимбай'), (53, 7, 'Кумертау'), (54, 7, 'Межгорье'), (55, 7, 'Мелеуз'), (56, 7, 'Нефтекамск'), (57, 7, 'Октябрьский'), (58, 7, 'Салават'), (59, 7, 'Сибай'), (60, 7, 'Стерлитамак'), (61, 7, 'Туймазы'), (62, 7, 'Уфа'), (63, 7, 'Учалы'), (64, 7, 'Янаул'), (65, 8, 'Алексеевка'), (66, 8, 'Белгород'), (67, 8, 'Бирюч'), (68, 8, 'Валуйки'), (69, 8, 'Грайворон'), (70, 8, 'Губкин'), (71, 8, 'Короча'), (72, 8, 'Новый Оскол'), (73, 8, 'Старый Оскол'), (74, 8, 'Строитель'), (75, 8, 'Шебекино'), (76, 9, 'Брянск'), (77, 9, 'Дятьково'), (78, 9, 'Жуковка'), (79, 9, 'Злынка'), (80, 9, 'Карачев'), (81, 9, 'Клинцы'), (82, 9, 'Мглин'), (83, 9, 'Новозыбков'), (84, 9, 'Почеп'), (85, 9, 'Севск'), (86, 9, 'Сельцо'), (87, 9, 'Стародуб'), (88, 9, 'Сураж'), (89, 9, 'Трубчевск'), (90, 9, 'Унеча'), (91, 9, 'Фокино'), (92, 10, 'Бабушкин'), (93, 10, 'Гусиноозёрск'), (94, 10, 'Закаменск'), (95, 10, 'Кяхта'), (96, 10, 'Северобайкальск'), (97, 10, 'Улан-Удэ'), (98, 11, 'Александров'), (99, 11, 'Владимир'), (100, 11, 'Вязники'), (101, 11, 'Гороховец'), (102, 11, 'Гусь-Хрустальный'), (103, 11, 'Камешково'), (104, 11, 'Карабаново'), (105, 11, 'Киржач'), (106, 11, 'Ковров'), (107, 11, 'Кольчугино'), (108, 11, 'Костерёво'), (109, 11, 'Курлово'), (110, 11, 'Лакинск'), (111, 11, 'Меленки'), (112, 11, 'Муром'), (113, 11, 'Петушки'), (114, 11, 'Покров'), (115, 11, 'Радужный'), (116, 11, 'Собинка'), (117, 11, 'Струнино'), (118, 11, 'Судогда'), (119, 11, 'Суздаль'), (120, 11, 'Юрьев-Польский'), (121, 12, 'Волгоград'), (122, 12, 'Волжский'), (123, 12, 'Дубовка'), (124, 12, 'Жирновск'), (125, 12, 'Калач-на-Дону'), (126, 12, 'Камышин'), (127, 12, 'Котельниково'), (128, 12, 'Котово'), (129, 12, 'Краснослободск'), (130, 12, 'Ленинск'), (131, 12, 'Михайловка'), (132, 12, 'Николаевск'), (133, 12, 'Новоаннинский'), (134, 12, 'Палласовка'), (135, 12, 'Петров Вал'), (136, 12, 'Серафимович'), (137, 12, 'Суровикино'), (138, 12, 'Урюпинск'), (139, 12, 'Фролово'), (140, 13, 'Бабаево'), (141, 13, 'Белозерск'), (142, 13, 'Великий Устюг'), (143, 13, 'Вологда'), (144, 13, 'Вытегра'), (145, 13, 'Грязовец'), (146, 13, 'Кадников'), (147, 13, 'Кириллов'), (148, 13, 'Красавино'), (149, 13, 'Никольск'), (150, 13, 'Сокол'), (151, 13, 'Тотьма'), (152, 13, 'Устюжна'), (153, 13, 'Харовск'), (154, 13, 'Череповец'), (155, 14, 'Бобров'), (156, 14, 'Богучар'), (157, 14, 'Борисоглебск'), (158, 14, 'Бутурлиновка'), (159, 14, 'Воронеж'), (160, 14, 'Калач'), (161, 14, 'Лиски'), (162, 14, 'Нововоронеж'), (163, 14, 'Новохопёрск'), (164, 14, 'Острогожск'), (165, 14, 'Павловск'), (166, 14, 'Поворино'), (167, 14, 'Россошь'), (168, 14, 'Семилуки'), (169, 14, 'Эртиль'), (170, 15, 'Буйнакск'), (171, 15, 'Республика Дагестанские Огни'), (172, 15, 'Дербент'), (173, 15, 'Избербаш'), (174, 15, 'Каспийск'), (175, 15, 'Кизилюрт'), (176, 15, 'Кизляр'), (177, 15, 'Махачкала'), (178, 15, 'Хасавюрт'), (179, 15, 'Южно-Сухокумск'), (180, 16, 'Биробиджан'), (181, 16, 'Облучье'), (182, 17, 'Балей'), (183, 17, 'Борзя'), (184, 17, 'Краснокаменск'), (185, 17, 'Могоча'), (186, 17, 'Нерчинск'), (187, 17, 'Петровск-Забайкальский'), (188, 17, 'Сретенск'), (189, 17, 'Хилок'), (190, 17, 'Чита'), (191, 17, 'Шилка'), (192, 18, 'Вичуга'), (193, 18, 'Гаврилов Посад'), (194, 18, 'Заволжск'), (195, 18, 'Иваново'), (196, 18, 'Кинешма'), (197, 18, 'Комсомольск'), (198, 18, 'Кохма'), (199, 18, 'Наволоки'), (200, 18, 'Плёс'), (201, 18, 'Приволжск'), (202, 18, 'Пучеж'), (203, 18, 'Родники'), (204, 18, 'Тейково'), (205, 18, 'Фурманов'), (206, 18, 'Шуя'), (207, 18, 'Южа'), (208, 18, 'Юрьевец'), (209, 19, 'Карабулак'), (210, 19, 'Магас'), (211, 19, 'Малгобек'), (212, 19, 'Назрань'), (213, 20, 'Алзамай'), (214, 20, 'Ангарск'), (215, 20, 'Байкальск'), (216, 20, 'Бирюсинск'), (217, 20, 'Бодайбо'), (218, 20, 'Братск'), (219, 20, 'Вихоревка'), (220, 20, 'Железногорск-Илимский'), (221, 20, 'Зима'), (222, 20, 'Иркутск'), (223, 20, 'Киренск'), (224, 20, 'Нижнеудинск'), (225, 20, 'Саянск'), (226, 20, 'Свирск'), (227, 20, 'Слюдянка'), (228, 20, 'Тайшет'), (229, 20, 'Тулун'), (230, 20, 'Усолье-Сибирское'), (231, 20, 'Усть-Илимск'), (232, 20, 'Усть-Кут'), (233, 20, 'Черемхово'), (234, 20, 'Шелехов'), (235, 21, 'Баксан'), (236, 21, 'Майский'), (237, 21, 'Нальчик'), (238, 21, 'Нарткала'), (239, 21, 'Прохладный'), (240, 21, 'Терек'), (241, 21, 'Тырныауз'), (242, 21, 'Чегем'), (243, 22, 'Багратионовск'), (244, 22, 'Балтийск'), (245, 22, 'Гвардейск'), (246, 22, 'Гурьевск'), (247, 22, 'Гусев'), (248, 22, 'Зеленоградск'), (249, 22, 'Калининград'), (250, 22, 'Краснознаменск'), (251, 22, 'Ладушкин'), (252, 22, 'Мамоново'), (253, 22, 'Неман'), (254, 22, 'Нестеров'), (255, 22, 'Озёрск'), (256, 22, 'Пионерский'), (257, 22, 'Полесск'), (258, 22, 'Правдинск'), (259, 22, 'Светлогорск'), (260, 22, 'Светлый'), (261, 22, 'Славск'), (262, 22, 'Советск'), (263, 22, 'Черняховск'), (264, 22, 'Приморск'), (265, 23, 'Городовиковск'), (266, 23, 'Лагань'), (267, 23, 'Элиста'), (268, 24, 'Балабаново'), (269, 24, 'Белоусово'), (270, 24, 'Боровск'), (271, 24, 'Ермолино'), (272, 24, 'Жиздра'), (273, 24, 'Жуков'), (274, 24, 'Калуга'), (275, 24, 'Киров'), (276, 24, 'Козельск'), (277, 24, 'Кондрово'), (278, 24, 'Кремёнки'), (279, 24, 'Людиново'), (280, 24, 'Малоярославец'), (281, 24, 'Медынь'), (282, 24, 'Мещовск'), (283, 24, 'Мосальск'), (284, 24, 'Обнинск'), (285, 24, 'Сосенский'), (286, 24, 'Спас-Деменск'), (287, 24, 'Сухиничи'), (288, 24, 'Таруса'), (289, 24, 'Юхнов'), (290, 25, 'Вилючинск'), (291, 25, 'Елизово'), (292, 25, 'Петропавловск-Камчатский'), (293, 26, 'Карачаевск'), (294, 26, 'Теберда'), (295, 26, 'Усть-Джегута'), (296, 26, 'Черкесск'), (297, 27, 'Беломорск'), (298, 27, 'Кемь'), (299, 27, 'Кондопога'), (300, 27, 'Костомукша'), (301, 27, 'Лахденпохья'), (302, 27, 'Медвежьегорск'), (303, 27, 'Олонец'), (304, 27, 'Петрозаводск'), (305, 27, 'Питкяранта'), (306, 27, 'Пудож'), (307, 27, 'Сегежа'), (308, 27, 'Сортавала'), (309, 27, 'Суоярви'), (310, 28, 'Анжеро-Судженск'), (311, 28, 'Белово'), (312, 28, 'Берёзовский'), (313, 28, 'Гурьевск'), (314, 28, 'Калтан'), (315, 28, 'Кемерово'), (316, 28, 'Киселёвск'), (317, 28, 'Ленинск-Кузнецкий'), (318, 28, 'Мариинск'), (319, 28, 'Междуреченск'), (320, 28, 'Мыски'), (321, 28, 'Новокузнецк'), (322, 28, 'Осинники'), (323, 28, 'Полысаево'), (324, 28, 'Прокопьевск'), (325, 28, 'Салаир'), (326, 28, 'Тайга'), (327, 28, 'Таштагол'), (328, 28, 'Топки'), (329, 28, 'Юрга'), (330, 29, 'Белая Холуница'), (331, 29, 'Вятские Поляны'), (332, 29, 'Зуевка'), (333, 29, 'Киров'), (334, 29, 'Кирово-Чепецк'), (335, 29, 'Кирс'), (336, 29, 'Котельнич'), (337, 29, 'Луза'), (338, 29, 'Малмыж'), (339, 29, 'Мураши'), (340, 29, 'Нолинск'), (341, 29, 'Омутнинск'), (342, 29, 'Орлов'), (343, 29, 'Слободской'), (344, 29, 'Советск'), (345, 29, 'Сосновка'), (346, 29, 'Уржум'), (347, 29, 'Яранск'), (348, 30, 'Воркута'), (349, 30, 'Вуктыл'), (350, 30, 'Емва'), (351, 30, 'Инта'), (352, 30, 'Микунь'), (353, 30, 'Печора'), (354, 30, 'Сосногорск'), (355, 30, 'Сыктывкар'), (356, 30, 'Усинск'), (357, 30, 'Ухта'), (358, 31, 'Буй'), (359, 31, 'Волгореченск'), (360, 31, 'Галич'), (361, 31, 'Кологрив'), (362, 31, 'Кострома'), (363, 31, 'Макарьев'), (364, 31, 'Мантурово'), (365, 31, 'Нерехта'), (366, 31, 'Нея'), (367, 31, 'Солигалич'), (368, 31, 'Чухлома'), (369, 31, 'Шарья'), (370, 32, 'Абинск'), (371, 32, 'Анапа'), (372, 32, 'Апшеронск'), (373, 32, 'Армавир'), (374, 32, 'Белореченск'), (375, 32, 'Геленджик'), (376, 32, 'Горячий Ключ'), (377, 32, 'Гулькевичи'), (378, 32, 'Ейск'), (379, 32, 'Кореновск'), (380, 32, 'Краснодар'), (381, 32, 'Кропоткин'), (382, 32, 'Республика Крымск'), (383, 32, 'Курганинск'), (384, 32, 'Лабинск'), (385, 32, 'Новокубанск'), (386, 32, 'Новороссийск'), (387, 32, 'Приморско-Ахтарск'), (388, 32, 'Славянск-на-Кубани'), (389, 32, 'Сочи'), (390, 32, 'Темрюк'), (391, 32, 'Тимашёвск'), (392, 32, 'Тихорецк'), (393, 32, 'Туапсе'), (394, 32, 'Усть-Лабинск'), (395, 32, 'Хадыженск'), (396, 33, 'Артёмовск'), (397, 33, 'Ачинск'), (398, 33, 'Боготол'), (399, 33, 'Бородино'), (400, 33, 'Дивногорск'), (401, 33, 'Дудинка'), (402, 33, 'Енисейск'), (403, 33, 'Железногорск'), (404, 33, 'Заозёрный'), (405, 33, 'Зеленогорск'), (406, 33, 'Игарка'), (407, 33, 'Иланский'), (408, 33, 'Канск'), (409, 33, 'Кодинск'), (410, 33, 'Красноярск'), (411, 33, 'Лесосибирск'), (412, 33, 'Минусинск'), (413, 33, 'Назарово'), (414, 33, 'Норильск'), (415, 33, 'Сосновоборск'), (416, 33, 'Ужур'), (417, 33, 'Уяр'), (418, 33, 'Шарыпово'), (419, 34, 'Алупка'), (420, 34, 'Алушта'), (421, 34, 'Армянск'), (422, 34, 'Бахчисарай'), (423, 34, 'Белогорск'), (424, 34, 'Джанкой'), (425, 34, 'Евпатория'), (426, 34, 'Керчь'), (427, 34, 'Красноперекопск'), (428, 34, 'Саки'), (429, 34, 'Симферополь'), (430, 34, 'Старый Республика Крым'), (431, 34, 'Судак'), (432, 34, 'Феодосия'), (433, 34, 'Щёлкино'), (434, 34, 'Ялта'), (435, 35, 'Инкерман'), (436, 35, 'Севастополь'), (437, 36, 'Далматово'), (438, 36, 'Катайск'), (439, 36, 'Курган'), (440, 36, 'Куртамыш'), (441, 36, 'Макушино'), (442, 36, 'Петухово'), (443, 36, 'Шадринск'), (444, 36, 'Шумиха'), (445, 36, 'Щучье'), (446, 37, 'Дмитриев'), (447, 37, 'Железногорск'), (448, 37, 'Курск'), (449, 37, 'Курчатов'), (450, 37, 'Льгов'), (451, 37, 'Обоянь'), (452, 37, 'Рыльск'), (453, 37, 'Суджа'), (454, 37, 'Фатеж'), (455, 37, 'Щигры'), (456, 38, 'Бокситогорск'), (457, 38, 'Волосово'), (458, 38, 'Волхов'), (459, 38, 'Всеволожск'), (460, 38, 'Выборг'), (461, 38, 'Высоцк'), (462, 38, 'Гатчина'), (463, 38, 'Ивангород'), (464, 38, 'Каменногорск'), (465, 38, 'Кингисепп'), (466, 38, 'Кириши'), (467, 38, 'Кировск'), (468, 38, 'Коммунар'), (469, 38, 'Лодейное Поле'), (470, 38, 'Луга'), (471, 38, 'Любань'), (472, 38, 'Никольское'), (473, 38, 'Новая Ладога'), (474, 38, 'Отрадное'), (475, 38, 'Пикалёво'), (476, 38, 'Подпорожье'), (477, 38, 'Приморск'), (478, 38, 'Приозерск'), (479, 38, 'Светогорск'), (480, 38, 'Сертолово'), (481, 38, 'Сланцы'), (482, 38, 'Сосновый Бор'), (483, 38, 'Сясьстрой'), (484, 38, 'Тихвин'), (485, 38, 'Тосно'), (486, 38, 'Шлиссельбург'), (487, 39, 'Грязи'), (488, 39, 'Данков'), (489, 39, 'Елец'), (490, 39, 'Задонск'), (491, 39, 'Лебедянь'), (492, 39, 'Липецк'), (493, 39, 'Усмань'), (494, 39, 'Чаплыгин'), (495, 40, 'Магадан'), (496, 40, 'Сусуман'), (497, 41, 'Волжск'), (498, 41, 'Звенигово'), (499, 41, 'Йошкар-Ола'), (500, 41, 'Козьмодемьянск'), (501, 42, 'Ардатов'), (502, 42, 'Инсар'), (503, 42, 'Ковылкино'), (504, 42, 'Краснослободск'), (505, 42, 'Рузаевка'), (506, 42, 'Саранск'), (507, 42, 'Темников'), (508, 43, 'Москва'), (509, 43, 'Московский'), (510, 43, 'Троицк'), (511, 43, 'Щербинка'), (512, 44, 'Апрелевка'), (513, 44, 'Балашиха'), (514, 44, 'Бронницы'), (515, 44, 'Верея'), (516, 44, 'Видное'), (517, 44, 'Волоколамск'), (518, 44, 'Воскресенск'), (519, 44, 'Высоковск'), (520, 44, 'Голицыно'), (521, 44, 'Дедовск'), (522, 44, 'Дзержинский'), (523, 44, 'Дмитров'), (524, 44, 'Долгопрудный'), (525, 44, 'Домодедово'), (526, 44, 'Дрезна'), (527, 44, 'Дубна'), (528, 44, 'Егорьевск'), (529, 44, 'Жуковский'), (530, 44, 'Зарайск'), (531, 44, 'Звенигород'), (532, 44, 'Ивантеевка'), (533, 44, 'Истра'), (534, 44, 'Кашира'), (535, 44, 'Клин'), (536, 44, 'Коломна'), (537, 44, 'Котельники'), (538, 44, 'Королёв'), (539, 44, 'Красноармейск'), (540, 44, 'Красногорск'), (541, 44, 'Краснозаводск'), (542, 44, 'Краснознаменск'), (543, 44, 'Кубинка'), (544, 44, 'Куровское'), (545, 44, 'Ликино-Дулёво'), (546, 44, 'Лобня'), (547, 44, 'Лосино-Петровский'), (548, 44, 'Луховицы'), (549, 44, 'Лыткарино'), (550, 44, 'Люберцы'), (551, 44, 'Можайск'), (552, 44, 'Мытищи'), (553, 44, 'Наро-Фоминск'), (554, 44, 'Ногинск'), (555, 44, 'Одинцово'), (556, 44, 'Ожерелье'), (557, 44, 'Озёры'), (558, 44, 'Орехово-Зуево'), (559, 44, 'Павловский Посад'), (560, 44, 'Пересвет'), (561, 44, 'Подольск'), (562, 44, 'Протвино'), (563, 44, 'Пушкино'), (564, 44, 'Пущино'), (565, 44, 'Раменское'), (566, 44, 'Реутов'), (567, 44, 'Рошаль'), (568, 44, 'Руза'), (569, 44, 'Сергиев Посад'), (570, 44, 'Серпухов'), (571, 44, 'Солнечногорск'), (572, 44, 'Старая Купавна'), (573, 44, 'Ступино'), (574, 44, 'Талдом'), (575, 44, 'Фрязино'), (576, 44, 'Химки'), (577, 44, 'Хотьково'), (578, 44, 'Черноголовка'), (579, 44, 'Чехов'), (580, 44, 'Шатура'), (581, 44, 'Щёлково'), (582, 44, 'Электрогорск'), (583, 44, 'Электросталь'), (584, 44, 'Электроугли'), (585, 44, 'Яхрома'), (586, 45, 'Апатиты'), (587, 45, 'Гаджиево'), (588, 45, 'Заозёрск'), (589, 45, 'Заполярный'), (590, 45, 'Кандалакша'), (591, 45, 'Кировск'), (592, 45, 'Ковдор'), (593, 45, 'Кола'), (594, 45, 'Мончегорск'), (595, 45, 'Мурманск'), (596, 45, 'Оленегорск'), (597, 45, 'Островной'), (598, 45, 'Полярные Зори'), (599, 45, 'Полярный'), (600, 45, 'Североморск'), (601, 45, 'Снежногорск'), (602, 46, 'Нарьян-Мар'), (603, 47, 'Арзамас'), (604, 47, 'Балахна'), (605, 47, 'Богородск'), (606, 47, 'Бор'), (607, 47, 'Ветлуга'), (608, 47, 'Володарск'), (609, 47, 'Ворсма'), (610, 47, 'Выкса'), (611, 47, 'Горбатов'), (612, 47, 'Городец'), (613, 47, 'Дзержинск'), (614, 47, 'Заволжье'), (615, 47, 'Княгинино'), (616, 47, 'Кстово'), (617, 47, 'Кулебаки'), (618, 47, 'Лукоянов'), (619, 47, 'Лысково'), (620, 47, 'Навашино'), (621, 47, 'Нижний Новгород'), (622, 47, 'Павлово'), (623, 47, 'Первомайск'), (624, 47, 'Перевоз'), (625, 47, 'Саров'), (626, 47, 'Семёнов'), (627, 47, 'Сергач'), (628, 47, 'Урень'), (629, 47, 'Чкаловск'), (630, 47, 'Шахунья'), (631, 48, 'Боровичи'), (632, 48, 'Валдай'), (633, 48, 'Великий Новгород'), (634, 48, 'Малая Вишера'), (635, 48, 'Окуловка'), (636, 48, 'Пестово'), (637, 48, 'Сольцы'), (638, 48, 'Старая Русса'), (639, 48, 'Холм'), (640, 48, 'Чудово'), (641, 49, 'Барабинск'), (642, 49, 'Бердск'), (643, 49, 'Болотное'), (644, 49, 'Искитим'), (645, 49, 'Карасук'), (646, 49, 'Каргат'), (647, 49, 'Куйбышев'), (648, 49, 'Купино'), (649, 49, 'Новосибирск'), (650, 49, 'Обь'), (651, 49, 'Татарск'), (652, 49, 'Тогучин'), (653, 49, 'Черепаново'), (654, 49, 'Чулым'), (655, 50, 'Исилькуль'), (656, 50, 'Калачинск'), (657, 50, 'Называевск'), (658, 50, 'Омск'), (659, 50, 'Тара'), (660, 50, 'Тюкалинск'), (661, 51, 'Абдулино'), (662, 51, 'Бугуруслан'), (663, 51, 'Бузулук'), (664, 51, 'Гай'), (665, 51, 'Кувандык'), (666, 51, 'Медногорск'), (667, 51, 'Новотроицк'), (668, 51, 'Оренбург'), (669, 51, 'Орск'), (670, 51, 'Соль-Илецк'), (671, 51, 'Сорочинск'), (672, 51, 'Ясный'), (673, 52, 'Болхов'), (674, 52, 'Дмитровск'), (675, 52, 'Ливны'), (676, 52, 'Малоархангельск'), (677, 52, 'Мценск'), (678, 52, 'Новосиль'), (679, 52, 'Орёл'), (680, 53, 'Белинский'), (681, 53, 'Городище'), (682, 53, 'Заречный'), (683, 53, 'Каменка'), (684, 53, 'Кузнецк'), (685, 53, 'Нижний Ломов'), (686, 53, 'Никольск'), (687, 53, 'Пенза'), (688, 53, 'Сердобск'), (689, 53, 'Спасск'), (690, 53, 'Сурск'), (691, 54, 'Александровск'), (692, 54, 'Березники'), (693, 54, 'Верещагино'), (694, 54, 'Горнозаводск'), (695, 54, 'Гремячинск'), (696, 54, 'Губаха'), (697, 54, 'Добрянка'), (698, 54, 'Кизел'), (699, 54, 'Красновишерск'), (700, 54, 'Краснокамск'), (701, 54, 'Кудымкар'), (702, 54, 'Кунгур'), (703, 54, 'Лысьва'), (704, 54, 'Нытва'), (705, 54, 'Оса'), (706, 54, 'Оханск'), (707, 54, 'Очёр'), (708, 54, 'Пермь'), (709, 54, 'Соликамск'), (710, 54, 'Усолье'), (711, 54, 'Чайковский'), (712, 54, 'Чердынь'), (713, 54, 'Чёрмоз'), (714, 54, 'Чернушка'), (715, 54, 'Чусовой'), (716, 55, 'Арсеньев'), (717, 55, 'Артём'), (718, 55, 'Большой Камень'), (719, 55, 'Владивосток'), (720, 55, 'Дальнегорск'), (721, 55, 'Дальнереченск'), (722, 55, 'Лесозаводск'), (723, 55, 'Находка'), (724, 55, 'Партизанск'), (725, 55, 'Спасск-Дальний'), (726, 55, 'Уссурийск'), (727, 55, 'Фокино'), (728, 56, 'Великие Луки'), (729, 56, 'Гдов'), (730, 56, 'Дно'), (731, 56, 'Невель'), (732, 56, 'Новоржев'), (733, 56, 'Новосокольники'), (734, 56, 'Опочка'), (735, 56, 'Остров'), (736, 56, 'Печоры'), (737, 56, 'Порхов'), (738, 56, 'Псков'), (739, 56, 'Пустошка'), (740, 56, 'Пыталово'), (741, 56, 'Себеж'), (742, 57, 'Азов'), (743, 57, 'Аксай'), (744, 57, 'Батайск'), (745, 57, 'Белая Калитва'), (746, 57, 'Волгодонск'), (747, 57, 'Гуково'), (748, 57, 'Донецк'), (749, 57, 'Зверево'), (750, 57, 'Зерноград'), (751, 57, 'Каменск-Шахтинский'), (752, 57, 'Константиновск'), (753, 57, 'Красный Сулин'), (754, 57, 'Миллерово'), (755, 57, 'Морозовск'), (756, 57, 'Новочеркасск'), (757, 57, 'Новошахтинск'), (758, 57, 'Пролетарск'), (759, 57, 'Ростов-на-Дону'), (760, 57, 'Сальск'), (761, 57, 'Семикаракорск'), (762, 57, 'Таганрог'), (763, 57, 'Цимлянск'), (764, 57, 'Шахты'), (765, 58, 'Касимов'), (766, 58, 'Кораблино'), (767, 58, 'Михайлов'), (768, 58, 'Новомичуринск'), (769, 58, 'Рыбное'), (770, 58, 'Ряжск'), (771, 58, 'Рязань'), (772, 58, 'Сасово'), (773, 58, 'Скопин'), (774, 58, 'Спас-Клепики'), (775, 58, 'Спасск-Рязанский'), (776, 58, 'Шацк'), (777, 59, 'Жигулёвск'), (778, 59, 'Кинель'), (779, 59, 'Нефтегорск'), (780, 59, 'Новокуйбышевск'), (781, 59, 'Октябрьск'), (782, 59, 'Отрадный'), (783, 59, 'Похвистнево'), (784, 59, 'Самара'), (785, 59, 'Сызрань'), (786, 59, 'Тольятти'), (787, 59, 'Чапаевск'), (788, 60, 'Зеленогорск'), (789, 60, 'Колпино'), (790, 60, 'Красное Село'), (791, 60, 'Кронштадт'), (792, 60, 'Ломоносов'), (793, 60, 'Павловск'), (794, 60, 'Петергоф'), (795, 60, 'Пушкин'), (796, 60, 'Санкт-Петербург'), (797, 60, 'Сестрорецк'), (798, 61, 'Аркадак'), (799, 61, 'Аткарск'), (800, 61, 'Балаково'), (801, 61, 'Балашов'), (802, 61, 'Вольск'), (803, 61, 'Ершов'), (804, 61, 'Калининск'), (805, 61, 'Красноармейск'), (806, 61, 'Красный Кут'), (807, 61, 'Маркс'), (808, 61, 'Новоузенск'), (809, 61, 'Петровск'), (810, 61, 'Пугачёв'), (811, 61, 'Ртищево'), (812, 61, 'Саратов'), (813, 61, 'Хвалынск'), (814, 61, 'Шиханы'), (815, 61, 'Энгельс'), (816, 62, 'Александровск-Сахалинский'), (817, 62, 'Анива'), (818, 62, 'Долинск'), (819, 62, 'Корсаков'), (820, 62, 'Курильск'), (821, 62, 'Макаров'), (822, 62, 'Невельск'), (823, 62, 'Оха'), (824, 62, 'Поронайск'), (825, 62, 'Северо-Курильск'), (826, 62, 'Томари'), (827, 62, 'Углегорск'), (828, 62, 'Холмск'), (829, 62, 'Шахтёрск'), (830, 62, 'Южно-Сахалинск'), (831, 63, 'Алапаевск'), (832, 63, 'Арамиль'), (833, 63, 'Артёмовский'), (834, 63, 'Асбест'), (835, 63, 'Берёзовский'), (836, 63, 'Богданович'), (837, 63, 'Верхний Тагил'), (838, 63, 'Верхняя Пышма'), (839, 63, 'Верхняя Салда'), (840, 63, 'Верхняя Тура'), (841, 63, 'Верхотурье'), (842, 63, 'Волчанск'), (843, 63, 'Дегтярск'), (844, 63, 'Екатеринбург'), (845, 63, 'Заречный'), (846, 63, 'Ивдель'), (847, 63, 'Ирбит'), (848, 63, 'Каменск-Уральский'), (849, 63, 'Камышлов'), (850, 63, 'Карпинск'), (851, 63, 'Качканар'), (852, 63, 'Кировград'), (853, 63, 'Краснотурьинск'), (854, 63, 'Красноуральск'), (855, 63, 'Красноуфимск'), (856, 63, 'Кушва'), (857, 63, 'Лесной'), (858, 63, 'Михайловск'), (859, 63, 'Невьянск'), (860, 63, 'Нижние Серги'), (861, 63, 'Нижний Тагил'), (862, 63, 'Нижняя Салда'), (863, 63, 'Нижняя Тура'), (864, 63, 'Новая Ляля'), (865, 63, 'Новоуральск'), (866, 63, 'Первоуральск'), (867, 63, 'Полевской'), (868, 63, 'Ревда'), (869, 63, 'Реж'), (870, 63, 'Североуральск'), (871, 63, 'Серов'), (872, 63, 'Среднеуральск'), (873, 63, 'Сухой Лог'), (874, 63, 'Сысерть'), (875, 63, 'Тавда'), (876, 63, 'Талица'), (877, 63, 'Туринск'), (878, 64, 'Алагир'), (879, 64, 'Ардон'), (880, 64, 'Беслан'), (881, 64, 'Владикавказ'), (882, 64, 'Дигора'), (883, 64, 'Моздок'), (884, 65, 'Велиж'), (885, 65, 'Вязьма'), (886, 65, 'Гагарин'), (887, 65, 'Демидов'), (888, 65, 'Десногорск'), (889, 65, 'Дорогобуж'), (890, 65, 'Духовщина'), (891, 65, 'Ельня'), (892, 65, 'Починок'), (893, 65, 'Рославль'), (894, 65, 'Рудня'), (895, 65, 'Сафоново'), (896, 65, 'Смоленск'), (897, 65, 'Сычёвка'), (898, 65, 'Ярцево'), (899, 66, 'Благодарный'), (900, 66, 'Будённовск'), (901, 66, 'Георгиевск'), (902, 66, 'Ессентуки'), (903, 66, 'Железноводск'), (904, 66, 'Зеленокумск'), (905, 66, 'Изобильный'), (906, 66, 'Ипатово'), (907, 66, 'Кисловодск'), (908, 66, 'Лермонтов'), (909, 66, 'Минеральные Воды'), (910, 66, 'Михайловск'), (911, 66, 'Невинномысск'), (912, 66, 'Нефтекумск'), (913, 66, 'Новоалександровск'), (914, 66, 'Новопавловск'), (915, 66, 'Пятигорск'), (916, 66, 'Светлоград'), (917, 66, 'Ставрополь'), (918, 67, 'Жердевка'), (919, 67, 'Кирсанов'), (920, 67, 'Котовск'), (921, 67, 'Мичуринск'), (922, 67, 'Моршанск'), (923, 67, 'Рассказово'), (924, 67, 'Тамбов'), (925, 67, 'Уварово'), (926, 68, 'Агрыз'), (927, 68, 'Азнакаево'), (928, 68, 'Альметьевск'), (929, 68, 'Арск'), (930, 68, 'Бавлы'), (931, 68, 'Болгар'), (932, 68, 'Бугульма'), (933, 68, 'Буинск'), (934, 68, 'Елабуга'), (935, 68, 'Заинск'), (936, 68, 'Зеленодольск'), (937, 68, 'Иннополис'), (938, 68, 'Казань'), (939, 68, 'Лаишево'), (940, 68, 'Лениногорск'), (941, 68, 'Мамадыш'), (942, 68, 'Менделеевск'), (943, 68, 'Мензелинск'), (944, 68, 'Набережные Челны'), (945, 68, 'Нижнекамск'), (946, 68, 'Нурлат'), (947, 68, 'Тетюши'), (948, 68, 'Чистополь'), (949, 69, 'Андреаполь'), (950, 69, 'Бежецк'), (951, 69, 'Белый'), (952, 69, 'Бологое'), (953, 69, 'Весьегонск'), (954, 69, 'Вышний Волочёк'), (955, 69, 'Западная Двина'), (956, 69, 'Зубцов'), (957, 69, 'Калязин'), (958, 69, 'Кашин'), (959, 69, 'Кимры'), (960, 69, 'Конаково'), (961, 69, 'Красный Холм'), (962, 69, 'Кувшиново'), (963, 69, 'Лихославль'), (964, 69, 'Нелидово'), (965, 69, 'Осташков'), (966, 69, 'Ржев'), (967, 69, 'Старица'), (968, 69, 'Тверь'), (969, 69, 'Торжок'), (970, 69, 'Торопец'), (971, 69, 'Удомля'), (972, 70, 'Асино'), (973, 70, 'Кедровый'), (974, 70, 'Колпашево'), (975, 70, 'Северск'), (976, 70, 'Стрежевой'), (977, 70, 'Томск'), (978, 71, 'Алексин'), (979, 71, 'Белёв'), (980, 71, 'Богородицк'), (981, 71, 'Болохово'), (982, 71, 'Венёв'), (983, 71, 'Донской'), (984, 71, 'Ефремов'), (985, 71, 'Кимовск'), (986, 71, 'Киреевск'), (987, 71, 'Липки'), (988, 71, 'Новомосковск'), (989, 71, 'Плавск'), (990, 71, 'Суворов'), (991, 71, 'Тула'), (992, 71, 'Узловая'), (993, 71, 'Чекалин'), (994, 71, 'Щёкино'), (995, 71, 'Ясногорск'), (996, 71, 'Советск'), (997, 72, 'Ак-Довурак'), (998, 72, 'Кызыл'), (999, 72, 'Туран'), (1000, 72, 'Чадан'), (1001, 72, 'Шагонар'), (1002, 73, 'Заводоуковск'), (1003, 73, 'Ишим'), (1004, 73, 'Тобольск'), (1005, 73, 'Тюмень'), (1006, 73, 'Ялуторовск'), (1007, 74, 'Воткинск'), (1008, 74, 'Глазов'), (1009, 74, 'Ижевск'), (1010, 74, 'Камбарка'), (1011, 74, 'Можга'), (1012, 74, 'Сарапул'), (1013, 75, 'Барыш'), (1014, 75, 'Димитровград'), (1015, 75, 'Инза'), (1016, 75, 'Новоульяновск'), (1017, 75, 'Сенгилей'), (1018, 75, 'Ульяновск'), (1019, 76, 'Амурск'), (1020, 76, 'Бикин'), (1021, 76, 'Вяземский'), (1022, 76, 'Комсомольск-на-Амуре'), (1023, 76, 'Николаевск-на-Амуре'), (1024, 76, 'Советская Гавань'), (1025, 76, 'Хабаровск'), (1026, 77, 'Абаза'), (1027, 77, 'Абакан'), (1028, 77, 'Саяногорск'), (1029, 77, 'Сорск'), (1030, 77, 'Черногорск'), (1031, 78, 'Белоярский'), (1032, 78, 'Когалым'), (1033, 78, 'Лангепас'), (1034, 78, 'Лянтор'), (1035, 78, 'Мегион'), (1036, 78, 'Нефтеюганск'), (1037, 78, 'Нижневартовск'), (1038, 78, 'Нягань'), (1039, 78, 'Покачи'), (1040, 78, 'Пыть-Ях'), (1041, 78, 'Радужный'), (1042, 78, 'Советский'), (1043, 78, 'Сургут'), (1044, 78, 'Урай'), (1045, 78, 'Ханты-Мансийск'), (1046, 78, 'Югорск'), (1047, 79, 'Аша'), (1048, 79, 'Бакал'), (1049, 79, 'Верхнеуральск'), (1050, 79, 'Верхний Уфалей'), (1051, 79, 'Еманжелинск'), (1052, 79, 'Златоуст'), (1053, 79, 'Карабаш'), (1054, 79, 'Карталы'), (1055, 79, 'Касли'), (1056, 79, 'Катав-Ивановск'), (1057, 79, 'Копейск'), (1058, 79, 'Коркино'), (1059, 79, 'Куса'), (1060, 79, 'Кыштым'), (1061, 79, 'Магнитогорск'), (1062, 79, 'Миасс'), (1063, 79, 'Миньяр'), (1064, 79, 'Нязепетровск'), (1065, 79, 'Озёрск'), (1066, 79, 'Пласт'), (1067, 79, 'Сатка'), (1068, 79, 'Сим'), (1069, 79, 'Снежинск'), (1070, 79, 'Трёхгорный'), (1071, 79, 'Троицк'), (1072, 79, 'Усть-Катав'), (1073, 79, 'Чебаркуль'), (1074, 79, 'Челябинск'), (1075, 79, 'Южноуральск'), (1076, 79, 'Юрюзань'), (1077, 80, 'Аргун'), (1078, 80, 'Грозный'), (1079, 80, 'Гудермес'), (1080, 80, 'Урус-Мартан'), (1081, 80, 'Шали'), (1082, 81, 'Алатырь'), (1083, 81, 'Канаш'), (1084, 81, 'Козловка'), (1085, 81, 'Мариинский Посад'), (1086, 81, 'Новочебоксарск'), (1087, 81, 'Цивильск'), (1088, 81, 'Чебоксары'), (1089, 81, 'Шумерля'), (1090, 81, 'Ядрин'), (1091, 82, 'Анадырь'), (1092, 82, 'Билибино'), (1093, 82, 'Певек'), (1094, 83, 'Алдан'), (1095, 83, 'Верхоянск'), (1096, 83, 'Вилюйск'), (1097, 83, 'Ленск'), (1098, 83, 'Мирный'), (1099, 83, 'Нерюнгри'), (1100, 83, 'Нюрба'), (1101, 83, 'Олёкминск'), (1102, 83, 'Покровск'), (1103, 83, 'Среднеколымск'), (1104, 83, 'Томмот'), (1105, 83, 'Удачный'), (1106, 83, 'Якутск'), (1107, 84, 'Губкинский'), (1108, 84, 'Лабытнанги'), (1109, 84, 'Муравленко'), (1110, 84, 'Надым'), (1111, 84, 'Новый Уренгой'), (1112, 84, 'Ноябрьск'), (1113, 84, 'Салехард'), (1114, 84, 'Тарко-Сале'), (1115, 85, 'Гаврилов-Ям'), (1116, 85, 'Данилов'), (1117, 85, 'Любим'), (1118, 85, 'Мышкин'), (1119, 85, 'Переславль-Залесский'), (1120, 85, 'Пошехонье'), (1121, 85, 'Ростов'), (1122, 85, 'Рыбинск'), (1123, 85, 'Тутаев'), (1124, 85, 'Углич'), (1125, 85, 'Ярославль'); -- -------------------------------------------------------- -- -- Структура таблицы `fs_okrug` -- CREATE TABLE IF NOT EXISTS `fs_okrug` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `name` varchar(250) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=11 ; -- -- Дамп данных таблицы `fs_okrug` -- INSERT INTO `fs_okrug` (`id`, `name`) VALUES (1, 'Южный'), (2, 'Сибирский'), (3, 'Дальневосточный'), (4, 'Северо-Западный'), (5, 'Приволжский'), (6, 'Крымский'), (7, 'Северо-Кавказский'), (8, 'Уральский'), (9, 'Центральный'); -- -------------------------------------------------------- -- -- Структура таблицы `fs_region` -- CREATE TABLE IF NOT EXISTS `fs_region` ( `id` int(10) unsigned NOT NULL AUTO_INCREMENT, `id_country` int(6) NOT NULL, `id_okrug` int(3) NOT NULL, `name` varchar(250) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=86 ; -- -- Дамп данных таблицы `fs_region` -- INSERT INTO `fs_region` (`id`, `id_country`, `id_okrug`, `name`) VALUES (1, 1, 1, 'Республика Адыгея'), (2, 1, 2, 'Республика Алтай'), (3, 1, 2, 'Алтайский край'), (4, 1, 3, 'Амурская область'), (5, 1, 4, 'Архангельская область'), (6, 1, 1, 'Астраханская область'), (7, 1, 5, 'Республика Башкортостан'), (8, 1, 9, 'Белгородская область'), (9, 1, 9, 'Брянская область'), (10, 1, 2, 'Республика Бурятия'), (11, 1, 9, 'Владимирская область'), (12, 1, 1, 'Волгоградская область'), (13, 1, 4, 'Вологодская область'), (14, 1, 9, 'Воронежская область'), (15, 1, 7, 'Республика Дагестан'), (16, 1, 3, 'Еврейская АО'), (17, 1, 2, 'Забайкальский край'), (18, 1, 9, 'Ивановская область'), (19, 1, 7, 'Республика Игушетия'), (20, 1, 2, 'Иркутская область'), (21, 1, 7, 'Кабардино-Балкария'), (22, 1, 4, 'Калининградская область'), (23, 1, 1, 'Республика Калмыкия'), (24, 1, 9, 'Калужская область'), (25, 1, 3, 'Камчатский край'), (26, 1, 7, 'Карачаево-Черкесия'), (27, 1, 4, 'Республика Карелия'), (28, 1, 2, 'Кемеровская область'), (29, 1, 5, 'Кировская область'), (30, 1, 4, 'Республика Коми'), (31, 1, 9, 'Костромская область'), (32, 1, 1, 'Краснодарский край'), (33, 1, 2, 'Красноярский край'), (34, 1, 6, 'Республика Крым'), (35, 1, 6, 'Севастополь'), (36, 1, 8, 'Курганская область'), (37, 1, 9, 'Курская область'), (38, 1, 4, 'Ленинградская область'), (39, 1, 9, 'Липецкая область'), (40, 1, 3, 'Магаданская область'), (41, 1, 5, 'Республика Марий Эл'), (42, 1, 5, 'Республика Мордовия'), (43, 1, 9, 'Москва'), (44, 1, 9, 'Московская область'), (45, 1, 4, 'Мурманская область'), (46, 1, 4, 'Ненецкий АО'), (47, 1, 5, 'Нижегородская область'), (48, 1, 4, 'Новгородская область'), (49, 1, 2, 'Новосибирская область'), (50, 1, 2, 'Омская область'), (51, 1, 5, 'Оренбургская область'), (52, 1, 9, 'Орловская область'), (53, 1, 5, 'Пензенская область'), (54, 1, 5, 'Пермский край'), (55, 1, 3, 'Приморский край'), (56, 1, 4, 'Псковская область'), (57, 1, 1, 'Ростовская область'), (58, 1, 9, 'Рязанская область'), (59, 1, 5, 'Самарская область'), (60, 1, 4, 'Санкт-Петербург'), (61, 1, 5, 'Саратовская область'), (62, 1, 3, 'Сахалинская область'), (63, 1, 8, 'Свердловская область'), (64, 1, 7, 'Республика Северная Осетия - Алания'), (65, 1, 9, 'Смоленская область'), (66, 1, 7, 'Ставропольский край'), (67, 1, 9, 'Тамбовская область'), (68, 1, 5, 'Республика Татарстан'), (69, 1, 9, 'Тверская область'), (70, 1, 2, 'Томская область'), (71, 1, 9, 'Тульская область'), (72, 1, 2, 'Республика Тыва'), (73, 1, 8, 'Тюменская область'), (74, 1, 5, 'Удмуртская Республика'), (75, 1, 5, 'Ульяновская область'), (76, 1, 3, 'Хабаровский край'), (77, 1, 2, 'Республика Хакасия'), (78, 1, 8, 'Ханты-Мансийский АО'), (79, 1, 8, 'Челябинская область'), (80, 1, 7, 'Республика Чечня'), (81, 1, 5, 'Чувашская Республика'), (82, 1, 3, 'Чукотский АО'), (83, 1, 3, 'Республика Саха (Якутия)'), (84, 1, 8, 'Ямало-Ненецкий АО'), (85, 1, 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 */;
CREATE TABLE person ( id SERIAL PRIMARY KEY NOT NULL, first VARCHAR(100) NOT NULL, last VARCHAR(100), birthdate date ); -- inserted some users INSERT INTO person (first, last, birthdate) values ('Jeremy', 'Duong', '1995-09-19'); INSERT INTO person (first, last, birthdate) values ('Huynh', 'Duong', '1955-08-10'); INSERT INTO person (first, last, birthdate) values ('An', 'Duong', '1988-12-12'); CREATE USER clientuser1 WITH PASSWORD '123456'; GRANT SELECT, INSERT, UPDATE ON person TO clientuser1; GRANT USAGE, SELECT ON SEQUENCE person_id_seq TO clientuser1;
SQL> DECLARE 2 PO_RESULT NUMBER; 3 BEGIN 4 PO_RESULT := 100; 5 dbms_output.put_line(PO_RESULT); 6 END; 7 / 100 PL/SQL procedure successfully completed. ----------------------------------------------------------------------- SQL> DECLARE 2 -- Global variables 3 num1 number := 95; 4 num2 number := 85; 5 BEGIN 6 dbms_output.put_line('Outer Variable num1: ' || num1); 7 dbms_output.put_line('Outer Variable num2: ' || num2); 8 DECLARE 9 -- Local variables 10 num1 number := 195; 11 num2 number := 185; 12 BEGIN 13 dbms_output.put_line('Inner Variable num1: ' || num1); 14 dbms_output.put_line('Inner Variable num2: ' || num2); 15 END; 16 dbms_output.put_line('Outer Variable num1: ' || num1); 17 dbms_output.put_line('Outer Variable num2: ' || num2); 18 END; 19 / Outer Variable num1: 95 Outer Variable num2: 85 Inner Variable num1: 195 Inner Variable num2: 185 Outer Variable num1: 95 Outer Variable num2: 85 PL/SQL procedure successfully completed. -----------------------------------------------------------------------
-- MySQL Script generated by MySQL Workbench -- Sun Feb 14 21:43:58 2021 -- Model: New Model Version: 1.0 -- MySQL Workbench Forward Engineering SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0; SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0; SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION'; -- ----------------------------------------------------- -- Schema db_VarejoBoaz -- ----------------------------------------------------- -- ----------------------------------------------------- -- Schema db_VarejoBoaz -- ----------------------------------------------------- CREATE SCHEMA IF NOT EXISTS `db_VarejoBoaz` DEFAULT CHARACTER SET utf8 ; USE `db_VarejoBoaz` ; -- ----------------------------------------------------- -- Table `db_VarejoBoaz`.`tb_produto` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `db_VarejoBoaz`.`tb_produto` ( `id_produto` INT NOT NULL AUTO_INCREMENT, `produto` VARCHAR(45) NOT NULL, `preco` DOUBLE NOT NULL, PRIMARY KEY (`id_produto`), UNIQUE INDEX `id_produto_UNIQUE` (`id_produto` ASC) VISIBLE, UNIQUE INDEX `produto_UNIQUE` (`produto` ASC) VISIBLE) ENGINE = InnoDB; -- ----------------------------------------------------- -- Table `db_VarejoBoaz`.`tb_venda` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `db_VarejoBoaz`.`tb_venda` ( `id_venda` INT NOT NULL AUTO_INCREMENT, `id_produto` INT NULL, `nome_cliente` VARCHAR(45) NOT NULL, PRIMARY KEY (`id_venda`), INDEX `fk_tb_venda_tb_produto_idx` (`id_produto` ASC) VISIBLE, CONSTRAINT `fk_tb_venda_tb_produto` FOREIGN KEY (`id_produto`) REFERENCES `db_VarejoBoaz`.`tb_produto` (`id_produto`) ON DELETE CASCADE ON UPDATE CASCADE) ENGINE = InnoDB; SET SQL_MODE=@OLD_SQL_MODE; SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS; SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS;
DELETE StudentsTeachers WHERE TeacherId IN (SELECT Id FROM Teachers WHERE Phone LIKE '%72%') --DELETE Teachers --WHERE Phone LIKE '%72%' DELETE Teachers WHERE CHARINDEX('72', Phone) > 0
SET SERVEROUTPUT ON; CREATE OR REPLACE FUNCTION tempo_empresa ( empid employees.employee_id%TYPE ) RETURN NUMBER IS qtd NUMBER; BEGIN SELECT TRUNC(MONTHS_BETWEEN(sysdate,hire_date)/12,0) INTO qtd FROM employees WHERE employee_id = empid; RETURN qtd; END; / DECLARE teste NUMBER; qtd NUMBER; BEGIN teste := &teste; qtd := tempo_empresa(teste); DBMS_OUTPUT.PUT_LINE('ANOS:' || '' || qtd); END; / select hire_date, employee_id from employees where employee_id = 100; CREATE OR REPLACE FUNCTION mais_tempo_empresa ( empid employees.employee_id%TYPE ) RETURN NUMBER IS qtd NUMBER; BEGIN select count(e.employee_id) INTO qtd from employees e, employees g WHERE e.hire_date < g.hire_date and g.employee_id = empid; RETURN qtd; END; / DECLARE teste NUMBER; qtd NUMBER; BEGIN teste := &teste; qtd := mais_tempo_empresa(teste); DBMS_OUTPUT.PUT_LINE (qtd || ' ' || 'COM MAIS TEMPO DE EMPRESA'); END; / select e.hire_date from employees e, employees g WHERE e.hire_date < g.hire_date and g.employee_id = 100; select * from job_history;
alter table tbl_sec_bank_details add account_holder varchar(255) after sec_name
SELECT pizza.id, pizza.name, pizza.url FROM pizza LEFT JOIN pizza_ingredient ON pizza.id = pizza_ingredient.id_pizza LEFT JOIN ingredient ON pizza_ingredient.id_ingredient = ingredient.id WHERE pizza_ingredient.id IS NULL;
/* -- =========================================================================== A Activité : IFT187 Trimestre : 2017-3 Composant : Exemples/Herbivorie/Herbivorie_jeu1.sql Encodage : UTF-8, sans BOM; fin de ligne Unix (LF) Plateforme : PostgreSQL 9.3-9.6 Responsable : Luc.Lavoie@USherbrooke.ca Version : 0.1.0a Statut : base de développement -- =========================================================================== A */ /* -- =========================================================================== B Ce jeu de données représente un ensemble minimal permettant d'exercer plusieurs requêtes typiques. L'initialisation est divisée en deux parties : 1. Les données issues du protocole expérimental (Etat, Peuplement, Taux, Arbre, Placette). 2. Les observations recueillies par la suite sur le terrain. (Plant, ObsDimension, ObsFloraison, ObsEtat) ces dernières doivent être extraites des carnets de terrain. NOTE : à proprement parler, les données des placettes relèvent aussi d'observations faites sur le terrain. Celles-ci ont cependant été faites au départ et on s'est alors assuré qu'aucune donnée n'était manquante. -- =========================================================================== B */ -- -- Partie 1 -- INSERT INTO Etat VALUES ('O', 'vivante'), ('B', 'broutée'), ('X', 'fanée'), ('C', 'cassée'), ('D', 'disparue'), ('N', 'non retrouvée'); INSERT INTO Peuplement VALUES ('ERHE', 'érablière à hêtre'), ('BEMI', 'bétulai à érable et sapin'), ('SABO', 'sapinière à bouleau'), ('SAPI', 'sapinière pure'), ('ERSA', 'érablière à sapin'), ('PEBO', 'pessière à bouleau'); INSERT INTO Taux VALUES ('A', 21, 30), ('B', 16, 20), ('C', 11, 15), ('D', 6, 10), ('E', 1, 5), ('F', 0, 0); INSERT INTO Arbre VALUES ('ABIBAL', 'Abies balsamea'), ('ACESAC', 'Acer saccharum'), ('BETALL', 'Betula alleghaniensis'), ('BETCOR', 'Betula papyrifera var. cordifolia'), ('BETPAP', 'Betula papyrifera'), ('FAGGRA', 'Fagus grandifolia'), ('NA', 'non applicable (sans objet)'), ('PICMAR', 'Picea mariana'), ('SORSSP', 'Sorbus sp.'); INSERT INTO Placette VALUES ('A1', 'ERHE', 'E', 'E', 'F', 'F', 'D', 'E', 'D', 'F', 'C', 'ACESAC', 'FAGGRA', 'BETALL', '2017-07-25'), ('A5', 'BEMI', 'C', 'E', 'D', 'D', 'B', 'D', 'E', 'F', 'A', 'BETPAP', 'ACESAC', 'ABIBAL', '2017-07-25'), ('A7', 'SAPI', 'D', 'D', 'C', 'C', 'B', 'B', 'E', 'C', 'A', 'ABIBAL', 'BETCOR', 'SORSSP', '2017-08-01'), ('B1', 'ERHE', 'D', 'D', 'F', 'E', 'D', 'D', 'F', 'E', 'D', 'ACESAC', 'FAGGRA', 'BETPAP', '2017-07-25'), ('B5', 'ERHE', 'E', 'E', 'D', 'D', 'C', 'D', 'E', 'E', 'C', 'ACESAC', 'FAGGRA', 'ABIBAL', '2017-07-26'), ('B7', 'SABO', 'E', 'E', 'D', 'D', 'C', 'D', 'D', 'D', 'A', 'ABIBAL', 'BETCOR', 'PICMAR', '2017-08-02'), ('C1', 'ERHE', 'D', 'D', 'F', 'F', 'D', 'D', 'E', 'E', 'C', 'ACESAC', 'FAGGRA', 'NA', '2017-07-26'), ('C5', 'ERSA', 'E', 'E', 'D', 'D', 'C', 'D', 'E', 'E', 'A', 'ACESAC', 'ABIBAL', 'PICMAR', '2017-07-26'), ('C7', 'PEBO', 'F', 'F', 'D', 'D', 'B', 'D', 'E', 'D', 'B', 'PICMAR', 'BETALL', 'ABIBAL', '2017-08-02'); -- -- Partie 2 -- INSERT INTO plant (id, placette, parcelle, date, note) VALUES ('MMA1040', 'A1', 4, '2017-05-08', ''); INSERT INTO plant (id, placette, parcelle, date, note) VALUES ('MMB1305', 'B1', 11, '2017-06-04', ''); INSERT INTO plant (id, placette, parcelle, date, note) VALUES ('MMB7103', 'B7', 6, '2017-06-01', ''); INSERT INTO plant (id, placette, parcelle, date, note) VALUES ('MMA1122', 'A1', 12, '2017-05-12', ''); INSERT INTO plant(id, placette, parcelle, date, note) VALUES ('MMB1009', 'B1', 1, '2017-05-13', ''); INSERT INTO plant (id, placette, parcelle, date, note) VALUES ('MMA5041', 'A5', 6, '2017-05-27', ''); INSERT INTO plant (id, placette, parcelle, date, note) VALUES ('MMA5186', 'A5', 15, '2017-05-27', ''); INSERT INTO plant (id, placette, parcelle, date, note) VALUES ('MMA5051', 'A5', 7, '2017-05-27', ''); INSERT INTO plant (id, placette, parcelle, date, note) VALUES ('MMB5103', 'B5', 9, '2017-05-23', ''); INSERT INTO plant(id, placette, parcelle, date, note) VALUES ('MMA7092', 'A7', 7, '2017-05-31', ''); INSERT INTO plant(id, placette, parcelle, date, note) VALUES ('MMC1185', 'C1', 9, '2017-05-17', ''); INSERT INTO plant(id, placette, parcelle, date, note) VALUES ('MMB5213', 'B5', 16, '2017-05-23', ''); INSERT INTO plant(id, placette, parcelle, date, note) VALUES ('MMA1197', 'A1', 19, '2017-05-12', ''); INSERT INTO plant (id, placette, parcelle, date, note) VALUES ('MMB7087', 'B7', 5, '2017-06-01', ''); INSERT INTO plant (id, placette, parcelle, date, note) VALUES ('MMC1085', 'C1', 6, '2017-05-17', ''); INSERT INTO obsdimension (id, longueur, largeur, date, note) VALUES ('MMA1040', 50, 35, '2017-05-08', 'pas jolie'); INSERT INTO obsdimension (id, longueur, largeur, date, note) VALUES ('MMA1040', 119, 84, '2017-06-04', ''); INSERT INTO obsdimension (id, longueur, largeur, date, note) VALUES ('MMA1040', 121, 87, '2017-07-10', ''); INSERT INTO obsdimension (id, longueur, largeur, date, note) VALUES ('MMB1305', 113, 78, '2017-06-04', ''); INSERT INTO obsdimension (id, longueur, largeur, date, note) VALUES ('MMB7103', 22, 12, '2017-06-01', 'complètement à l''ombre tout le jour'); INSERT INTO obsdimension (id, longueur, largeur, date, note) VALUES ('MMB7103', 44, 26, '2017-06-20', ''); INSERT INTO obsdimension (id, longueur, largeur, date, note) VALUES ('MMA1122', 65, 46, '2017-05-12', ''); INSERT INTO obsdimension (id, longueur, largeur, date, note) VALUES ('MMA1122', 136, 101, '2017-06-04', ''); INSERT INTO obsdimension (id, longueur, largeur, date, note) VALUES ('MMA1122', 134, 103, '2017-07-10', 'manque 1 feuille'); INSERT INTO obsdimension (id, longueur, largeur, date, note) VALUES ('MMB1009', 67, 63, '2017-05-13', ''); INSERT INTO obsdimension (id, longueur, largeur, date, note) VALUES ('MMA5041', 55, 45, '2017-05-27', ''); INSERT INTO obsfloraison (id, fleur, date, note) VALUES ('MMA1040', true, '2017-05-08', ''); INSERT INTO obsfloraison (id, fleur, date, note) VALUES ('MMB1305', false, '2017-06-04', ''); INSERT INTO obsfloraison (id, fleur, date, note) VALUES ('MMB7103', false, '2017-06-01', ''); INSERT INTO obsfloraison (id, fleur, date, note) VALUES ('MMA1122', false, '2017-05-12', ''); INSERT INTO obsfloraison (id, fleur, date, note) VALUES ('MMB1009', true, '2017-05-13', ''); INSERT INTO obsfloraison (id, fleur, date, note) VALUES ('MMA5041', false, '2017-05-27', ''); INSERT INTO obsfloraison (id, fleur, date, note) VALUES ('MMA5186', false, '2017-05-27', ''); INSERT INTO obsfloraison (id, fleur, date, note) VALUES ('MMA5051', false, '2017-05-27', ''); INSERT INTO obsfloraison (id, fleur, date, note) VALUES ('MMB5103', false, '2017-05-23', ''); INSERT INTO obsfloraison (id, fleur, date, note) VALUES ('MMA7092', true, '2017-05-31', ''); INSERT INTO obsfloraison (id, fleur, date, note) VALUES ('MMC1185', false, '2017-05-17', ''); INSERT INTO obsfloraison (id, fleur, date, note) VALUES ('MMB5213', false, '2017-05-23', ''); INSERT INTO obsfloraison (id, fleur, date, note) VALUES ('MMA1197', true, '2017-05-12', ''); INSERT INTO obsfloraison (id, fleur, date, note) VALUES ('MMB7087', false, '2017-06-01', ''); INSERT INTO obsfloraison(id, fleur, date, note) VALUES ('MMC1085', false, '2017-05-17', ''); INSERT INTO obsetat (id, etat, date, note) VALUES ('MMA1040', 'O', '2017-06-08', ''); INSERT INTO obsetat (id, etat, date, note) VALUES ('MMB1305', 'O', '2017-07-04', ''); INSERT INTO obsetat (id, etat, date, note) VALUES ('MMB7103', 'O', '2017-06-01', ''); INSERT INTO obsetat (id, etat, date, note) VALUES ('MMA1122', 'B', '2017-06-12', ''); INSERT INTO obsetat (id, etat, date, note) VALUES ('MMB1009', 'O', '2017-06-13', ''); INSERT INTO obsetat (id, etat, date, note) VALUES ('MMA5041', 'O', '2017-06-27', ''); INSERT INTO obsetat (id, etat, date, note) VALUES ('MMA5186', 'B', '2017-06-27', ''); INSERT INTO obsetat (id, etat, date, note) VALUES ('MMA5051', 'O', '2017-06-27', ''); INSERT INTO obsetat (id, etat, date, note) VALUES ('MMB5103', 'O', '2017-06-23', ''); INSERT INTO obsetat (id, etat, date, note) VALUES ('MMA7092', 'O', '2017-06-30', ''); -- Observation manquante 'MMC1185' INSERT INTO obsetat (id, etat, date, note) VALUES ('MMB5213', 'O', '2017-06-23', ''); INSERT INTO obsetat (id, etat, date, note) VALUES ('MMA1197', 'O', '2017-06-12', ''); INSERT INTO obsetat (id, etat, date, note) VALUES ('MMB7087', 'C', '2017-06-15', ''); INSERT INTO obsetat (id, etat, date, note) VALUES ('MMC1085', 'D', '2017-05-17', ''); --CORRECT INSERT INTO carnetmeteo (date, temp_min, temp_max, vent_min, vent_max, pres_min, pres_max, hum_min, hum_max, prec_mm, prec_typ, ensol) values ('2017-06-25', '-10', '10', '30', '499', '80', '200', '10', '10', '100', 'pluie', '600'); --VALEUR INCORRECT INSERT INTO carnetmeteo (date, temp_min, temp_max, vent_min, vent_max, pres_min, pres_max, hum_min, hum_max, prec_mm, prec_typ, ensol) values ('2016-06-02', '-10', '10', '30', '499', '80', '200', NULL, '10', '100', 'Lave', '600'); --VALEUR INCORRECT INSERT INTO carnetmeteo (date, temp_min, temp_max, vent_min, vent_max, pres_min, pres_max, hum_min, hum_max, prec_mm, prec_typ, ensol) values ('2017-07-09', '-10', '10', '30', '499', '80', '200', '10', '10', '100', 'pluie', '600'); --VALEUR INCORRECT INSERT INTO carnetmeteo (date, temp_min, temp_max, vent_min, vent_max, pres_min, pres_max, hum_min, hum_max, prec_mm, prec_typ, ensol) values ('2016-06-14', 'papa', '10', '30', '499', 'noel', '200', '10', '10', '100', 'pluie', '600'); ---INSERT NEW TAUX INSERT INTO taux (tcat, tmin, tmax) VALUES ('X',31, 60); INSERT INTO taux (tcat, tmin, tmax) VALUES ('Y',35, 40); --ERROR INSERT INTO taux (tcat, tmin, tmax) VALUES ('Z',65, 70); --GOOD /* -- =========================================================================== Z Contributeurs : (DAL) Diane.Auberson-Lavoie@USherbrooke.ca, (LL) Luc.Lavoie@USherbrooke.ca Adresse, droits d'auteur et copyright : Groupe Metis Département d'informatique Faculté des sciences Université de Sherbrooke Sherbrooke (Québec) J1K 2R1 Canada http://info.usherbrooke.ca/llavoie/ [CC-BY-NC-4.0 (http://creativecommons.org/licenses/by-nc/4.0)] Tâches projetées : * Maintenir le script au fil de l'évolution de Herbivorie_cre.sql Tâches réalisées : 2017-09-17 (LL) : Création * Version initiale. Références : [ddv] http://info.usherbrooke.ca/llavoie/enseignement/Exemples/Herbivorie/Herbivorie_DDV.pdf [mod] http://info.usherbrooke.ca/llavoie/enseignement/Modules/ -- ----------------------------------------------------------------------------- -- fin de Exemples/Herbivorie/Herbivorie_jeu1.sql -- =========================================================================== Z */
alter table REPORT_DATA_SET rename column TYPE to DATA_SET_TYPE; alter table REPORT_INPUT_PARAMETER rename column TYPE to PARAMETER_TYPE;
USE ProjetRJ; DROP PROCEDURE IF EXISTS ps_voir_amis; DELIMITER # CREATE PROCEDURE ps_voir_amis (IN p_pseudonyme VARCHAR(40)) BEGIN DECLARE l_id_utilisateur INT; SET @l_id_utilisateur = (SELECT id_utilisateur FROM t_utilisateur WHERE pseudonyme = p_pseudonyme); SELECT id_utilisateur_ami, pseudonyme, 'ami' relation FROM vue_amis WHERE id_utilisateur = @l_id_utilisateur ORDER BY pseudonyme ASC; END# DELIMITER ;
/* Navicat MySQL Data Transfer Source Server : localhost_3306 Source Server Version : 50617 Source Host : localhost:3306 Source Database : bilibili Target Server Type : MYSQL Target Server Version : 50617 File Encoding : 65001 Date: 2016-02-22 21:55:24 */ SET FOREIGN_KEY_CHECKS=0; -- ---------------------------- -- Table structure for image -- ---------------------------- DROP TABLE IF EXISTS `image`; CREATE TABLE `image` ( `id` int(11) DEFAULT NULL, `ImageName` varchar(255) DEFAULT NULL, `Author` varchar(255) DEFAULT NULL, `Name` varchar(255) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- ---------------------------- -- Records of image -- ----------------------------
INSERT INTO dnsrecord VALUES (1), (2), (3), (4), (5);
-- List all Comedy shows in database hbtn_0d_tvshows -- Display tv_shows.title -- Results ASC order SELECT tv_shows.title FROM tv_genres INNER JOIN (tv_shows INNER JOIN tv_show_genres ON tv_shows.id = tv_show_genres.show_id) ON tv_genres.id = tv_show_genres.genre_id WHERE tv_genres.name = 'Comedy' ORDER BY tv_shows.title ASC;
SELECT id_institucion, COUNT(*) AS "Total de Voluntarios" FROM unc_esq_voluntario.voluntario GROUP BY id_institucion HAVING COUNT(nro_voluntario) > 10;
/* Generated by InMemoryDatabaseModelInclude.tt downloaded from https://github.com/enriquecatala/SSDTt4Helper */ /* Copyright (c) 2020 Enrique Catalá Bañuls */
DROP TABLE IF EXISTS league_war; CREATE TABLE IF NOT EXISTS league_war ( gid BIGINT UNSIGNED NOT NULL UNIQUE, data MEDIUMBLOB NOT NULL ) CHARACTER SET = utf8 ENGINE = InnoDB; DELIMITER $$ DROP PROCEDURE IF EXISTS get_league_war$$ CREATE PROCEDURE get_league_war () BEGIN SELECT data FROM league_war WHERE gid = 1; END$$ DROP PROCEDURE IF EXISTS save_league_war$$ CREATE PROCEDURE save_league_war (IN param1 MEDIUMBLOB) BEGIN INSERT INTO league_war(gid , data) VALUES(1, param1) ON DUPLICATE KEY UPDATE data = param1; END$$ DELIMITER ;
CREATE TABLE stubs( id BIGINT GENERATED BY DEFAULT AS IDENTITY, urlpath VARCHAR(2083), isActive BOOLEAN DEFAULT TRUE NOT NULL, isSite BOOLEAN DEFAULT FALSE NOT NULL, directoryPath VARCHAR(2000), httpmethod VARCHAR(50), headers CLOB, response CLOB);
-- MySQL dump 10.13 Distrib 5.7.17, for macos10.12 (x86_64) -- -- Host: localhost Database: dev_mall -- ------------------------------------------------------ -- Server version 5.6.37 /*!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 `order_info` -- DROP TABLE IF EXISTS `order_info`; /*!40101 SET @saved_cs_client = @@character_set_client */; /*!40101 SET character_set_client = utf8 */; CREATE TABLE `order_info` ( `id` int(11) NOT NULL AUTO_INCREMENT, `user_id` varchar(45) NOT NULL, `code` varchar(20) NOT NULL, `create_time` datetime NOT NULL DEFAULT CURRENT_TIMESTAMP, `status` int(11) NOT NULL DEFAULT '1', `expired_time` varchar(45) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=15 DEFAULT CHARSET=utf8; /*!40101 SET character_set_client = @saved_cs_client */; -- -- Dumping data for table `order_info` -- LOCK TABLES `order_info` WRITE; /*!40000 ALTER TABLE `order_info` DISABLE KEYS */; INSERT INTO `order_info` VALUES (6,'1','2017091996M83Fu5Jz8D','2017-09-19 10:14:51',1,'2017-09-20 10:14:51'),(7,'1','201709192n9D1xwArd20','2017-09-19 11:21:14',1,'2017-09-20 10:21:14'),(8,'1','2017091902G1h2Mbr11J','2017-09-19 11:21:14',0,'2017-09-20 10:21:14'),(9,'1','20170919H636LuG2o0su','2017-09-19 11:21:15',1,'2017-09-20 10:21:15'),(10,'1','201709197N77t6ee0NtT','2017-09-19 11:21:15',0,'2017-09-20 10:21:15'),(11,'1','20170919Y65hs9wm6480','2017-09-19 11:21:15',1,'2017-09-20 10:21:15'),(12,'1','20170919s9rH30Dn7636','2017-09-19 11:21:16',1,'2017-09-20 10:21:16'),(13,'1','20170919G6XHATza68Oe','2017-09-19 11:21:16',1,'2017-09-20 10:21:16'),(14,'1','20170919Jq4T2e8PD361','2017-09-19 11:21:16',1,'2017-09-20 10:21:16'); /*!40000 ALTER TABLE `order_info` 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 2017-09-19 13:08:49
SELECT e.EmployeeID , e.FirstName , e.LastName , d.[Name] AS DepartmentName FROM Employees AS e JOIN Departments AS d ON e.DepartmentID = d.DepartmentID AND d.Name = 'Sales' ORDER BY e.EmployeeID