text
stringlengths
6
9.38M
drop table se_process_status create table se_process_status ( account_id numeric(10), administrator varchar(40), target_nav_time varchar(40), fund_initialization numeric(10), capital_stock numeric(10), corp_action numeric(10), trades numeric(10), income numeric(10), amortization numeric(10), expenses numeric(10), income_distribution numeric(10), UnrealizedGL numeric(10), nav float, reviewed numeric(10), released numeric(10), asof Datetime) delete from se_process_status insert into se_process_status values(199,'Citi','5:40',1,3,2,2,2,2,2,2,2,2,2,2,'02/01/2018') insert into se_process_status values(208,'Citi','5:40',1,2,2,2,2,2,2,2,2,2,2,2,'02/01/2018') insert into se_process_status values(209,'Citi','5:40',1,2,2,2,2,2,2,2,2,2,2,2,'02/01/2018') insert into se_process_status values(210,'Citi','5:40',1,2,2,2,2,2,2,2,2,2,2,2,'02/01/2018') insert into se_process_status values(211,'Citi','5:40',1,2,2,2,2,2,2,2,2,2,2,2,'02/01/2018') select * from account where short_name like 'wm%' select * from se_process_status create table se_process_status_type ( se_proces_status_type_id numeric(10), description varchar(40)) insert into se_process_status_type values(1,'Complete') insert into se_process_status_type values(2,'WIP') insert into se_process_status_type values(3,'Error') select * from se_process_status
-- phpMyAdmin SQL Dump -- version 4.2.7.1 -- http://www.phpmyadmin.net -- -- Host: 127.0.0.1 -- Generation Time: 08 Jan 2017 pada 08.08 -- Versi Server: 5.6.20 -- PHP Version: 5.5.15 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: `sekolah` -- -- -------------------------------------------------------- -- -- Struktur dari tabel `guru` -- CREATE TABLE IF NOT EXISTS `guru` ( `guru_id` int(11) NOT NULL, `guru_nik` int(11) DEFAULT NULL, `guru_name` varchar(45) DEFAULT NULL, `guru_birth_date` date DEFAULT NULL, `guru_gender` varchar(45) DEFAULT NULL, `guru_religion` varchar(45) DEFAULT NULL, `guru_addres` varchar(45) DEFAULT NULL, `guru_email` varchar(45) DEFAULT NULL, `guru_image` varchar(45) DEFAULT NULL, `guru_hp` int(20) DEFAULT NULL, `guru_status` varchar(45) DEFAULT NULL, `guru_input_date` timestamp NULL DEFAULT NULL, `guru_last_update` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Struktur dari tabel `jurusan` -- CREATE TABLE IF NOT EXISTS `jurusan` ( `jurusan_id` int(11) NOT NULL, `jurusan_name` varchar(45) DEFAULT NULL, `prodi_prodi_id` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Struktur dari tabel `kelas` -- CREATE TABLE IF NOT EXISTS `kelas` ( `kelas_id` int(11) NOT NULL, `kelas_name` varchar(45) DEFAULT NULL, `kelas_wali` varchar(45) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Struktur dari tabel `krs` -- CREATE TABLE IF NOT EXISTS `krs` ( `krs_id` int(11) NOT NULL, `krs_smester` varchar(45) DEFAULT NULL, `krs_date` date DEFAULT NULL, `krs_jumlah_sks` int(11) DEFAULT NULL, `krs_jumlah_matkul` int(11) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Struktur dari tabel `matakuliah` -- CREATE TABLE IF NOT EXISTS `matakuliah` ( `matkul_id` int(11) NOT NULL, `matakul_name` varchar(45) DEFAULT NULL, `matkul_guru` varchar(45) DEFAULT NULL, `matakul_input_date` timestamp NULL DEFAULT NULL, `matkul_last_update` timestamp NULL DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Struktur dari tabel `prodi` -- CREATE TABLE IF NOT EXISTS `prodi` ( `prodi_id` int(11) NOT NULL, `prodi_name` varchar(45) DEFAULT NULL, `prodi_leader` varchar(45) DEFAULT NULL, `prodi_secre` varchar(45) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Struktur dari tabel `siswa` -- CREATE TABLE IF NOT EXISTS `siswa` ( `siswa_id` int(11) NOT NULL, `siswa_nik` int(11) DEFAULT NULL, `siswa_name` varchar(45) DEFAULT NULL, `siswa_birth_date` date DEFAULT NULL, `siswa_gender` varchar(45) DEFAULT NULL, `siswa_religion` varchar(45) DEFAULT NULL, `siswa_addres` varchar(45) DEFAULT NULL, `siswa_email` varchar(45) DEFAULT NULL, `siswa_image` varchar(45) DEFAULT NULL, `siswa_hp` int(20) DEFAULT NULL, `siswa_satatus` varchar(45) DEFAULT NULL, `siswa_input_date` timestamp NULL DEFAULT NULL, `siswa_last_update` timestamp NULL DEFAULT NULL, `jurusan_jurusan_id` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Struktur dari tabel `user` -- CREATE TABLE IF NOT EXISTS `user` ( `user_id` int(11) NOT NULL, `user_name` varchar(45) DEFAULT NULL, `user_password` varchar(45) DEFAULT NULL, `user_image` varchar(45) DEFAULT NULL, `user_full_name` varchar(45) DEFAULT NULL, `user_email` varchar(45) DEFAULT NULL, `user_description` text, `user_input_date` timestamp NULL DEFAULT NULL, `user_last_update` timestamp NULL DEFAULT NULL, `user_role_role_id` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -------------------------------------------------------- -- -- Struktur dari tabel `user_role` -- CREATE TABLE IF NOT EXISTS `user_role` ( `role_id` int(11) NOT NULL, `role_name` varchar(45) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 AUTO_INCREMENT=1 ; -- -- Indexes for dumped tables -- -- -- Indexes for table `guru` -- ALTER TABLE `guru` ADD PRIMARY KEY (`guru_id`); -- -- Indexes for table `jurusan` -- ALTER TABLE `jurusan` ADD PRIMARY KEY (`jurusan_id`), ADD KEY `fk_jurusan_prodi1_idx` (`prodi_prodi_id`); -- -- Indexes for table `kelas` -- ALTER TABLE `kelas` ADD PRIMARY KEY (`kelas_id`); -- -- Indexes for table `krs` -- ALTER TABLE `krs` ADD PRIMARY KEY (`krs_id`); -- -- Indexes for table `matakuliah` -- ALTER TABLE `matakuliah` ADD PRIMARY KEY (`matkul_id`); -- -- Indexes for table `prodi` -- ALTER TABLE `prodi` ADD PRIMARY KEY (`prodi_id`); -- -- Indexes for table `siswa` -- ALTER TABLE `siswa` ADD PRIMARY KEY (`siswa_id`), ADD KEY `fk_siswa_jurusan1_idx` (`jurusan_jurusan_id`); -- -- Indexes for table `user` -- ALTER TABLE `user` ADD PRIMARY KEY (`user_id`), ADD KEY `fk_user_user_role_idx` (`user_role_role_id`); -- -- Indexes for table `user_role` -- ALTER TABLE `user_role` ADD PRIMARY KEY (`role_id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `guru` -- ALTER TABLE `guru` MODIFY `guru_id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `jurusan` -- ALTER TABLE `jurusan` MODIFY `jurusan_id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `kelas` -- ALTER TABLE `kelas` MODIFY `kelas_id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `krs` -- ALTER TABLE `krs` MODIFY `krs_id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `matakuliah` -- ALTER TABLE `matakuliah` MODIFY `matkul_id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `prodi` -- ALTER TABLE `prodi` MODIFY `prodi_id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `siswa` -- ALTER TABLE `siswa` MODIFY `siswa_id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `user` -- ALTER TABLE `user` MODIFY `user_id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `user_role` -- ALTER TABLE `user_role` MODIFY `role_id` int(11) NOT NULL AUTO_INCREMENT; -- -- Ketidakleluasaan untuk tabel pelimpahan (Dumped Tables) -- -- -- Ketidakleluasaan untuk tabel `jurusan` -- ALTER TABLE `jurusan` ADD CONSTRAINT `fk_jurusan_prodi1` FOREIGN KEY (`prodi_prodi_id`) REFERENCES `prodi` (`prodi_id`) ON DELETE NO ACTION ON UPDATE NO ACTION; -- -- Ketidakleluasaan untuk tabel `siswa` -- ALTER TABLE `siswa` ADD CONSTRAINT `fk_siswa_jurusan1` FOREIGN KEY (`jurusan_jurusan_id`) REFERENCES `jurusan` (`jurusan_id`) ON DELETE NO ACTION ON UPDATE NO ACTION; -- -- Ketidakleluasaan untuk tabel `user` -- ALTER TABLE `user` ADD CONSTRAINT `fk_user_user_role` FOREIGN KEY (`user_role_role_id`) REFERENCES `user_role` (`role_id`) ON DELETE NO ACTION ON UPDATE NO ACTION; /*!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 */;
--- --- Базовые поля объекта домена --- --- Single Values --- CREATE TABLE IF NOT EXISTS `<domain_name>_s` ( `object_id` varchar(10) NOT NULL,--- !!!индексируемое!!! `object_name` varchar(20) NOT NULL, `creation_time` datetime NOT NULL, `modified_time` datetime NOT NULL, `is_public` tinyint NOT NULL, `object_creator` varchar(20) NOT NULL, `object_modifier` varchar(20) NOT NULL, --- --- Добавь сюда свои поля --- PRIMARY KEY (`object_id`) ); --- --- Repeat Values --- CREATE TABLE IF NOT EXISTS `<domain_name>_r` ( `object_id` varchar(10) NOT NULL, `object_reader` varchar(20),--- !!!индексируемое!!! `object_writer` varchar(20),--- !!!индексируемое!!! --- --- Добавь сюда свои поля --- ); --- --- Зарегистрируй тип домена --- INSERT INTO `domain_registry` (`domain_name`, `class_api`, `class_impl`) VALUES ('<имя домена>', '<интерфейс>', '<класс реализации>');
-- ----------------------------------------------------- -- Schema onbus -- ----------------------------------------------------- CREATE SCHEMA IF NOT EXISTS onbus DEFAULT CHARACTER SET utf8 ; USE onbus ; -- ----------------------------------------------------- -- Tabela onibus -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS onbus.onibus ( id_onibus INT NOT NULL AUTO_INCREMENT, placa VARCHAR(10) NOT NULL, lotacao_max INT(3) NOT NULL, numero_onibus VARCHAR(6) NOT NULL, PRIMARY KEY (id_onibus)) ENGINE = InnoDB; -- ----------------------------------------------------- -- Tabela usuario -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS onbus.usuario ( id_usuario INT NOT NULL AUTO_INCREMENT, login VARCHAR(45) NOT NULL, senha VARCHAR(45) NOT NULL, email VARCHAR(255) NOT NULL, cpf INT(11) NOT NULL, nascimento DATE NOT NULL DEFAULT '9999-12-31', pne BOOLEAN NULL, nivel int(1) DEFAULT '0', PRIMARY KEY (id_usuario), UNIQUE INDEX login_UNIQUE (login ASC), UNIQUE INDEX cpf_UNIQUE (cpf ASC), UNIQUE INDEX email_UNIQUE (email ASC)) ENGINE = InnoDB; -- ----------------------------------------------------- -- Tabela ponto -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS onbus.ponto ( id_ponto INT NOT NULL AUTO_INCREMENT, latitude_ponto DOUBLE NOT NULL, longitude_ponto DOUBLE NOT NULL, descricao_ponto TEXT NOT NULL, /* Definir pontos de referência do ponto de ônibus, tal como nome da rua e sentido de tráfego */ PRIMARY KEY (id_ponto)) ENGINE = InnoDB; -- ----------------------------------------------------- -- Tabela linha -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS onbus.linha ( id_linha INT NOT NULL AUTO_INCREMENT, num_linha VARCHAR(6) NOT NULL, variacao_linha VARCHAR(2) NOT NULL DEFAULT '00', desc_linha TEXT NOT NULL, PRIMARY KEY (id_linha)) ENGINE = InnoDB; -- ----------------------------------------------------- -- Tabela itinerario -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS onbus.itinerario ( id_itinerario INT NOT NULL AUTO_INCREMENT, id_linha INT NOT NULL, id_ponto INT NOT NULL, PRIMARY KEY (id_itinerario), INDEX fk_itinerario_linha1_idx (id_linha ASC), INDEX fk_itinerario_ponto1_idx (id_ponto ASC), CONSTRAINT fk_itinerario_linha1 FOREIGN KEY (id_linha) REFERENCES onbus.linha (id_linha) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT fk_itinerario_ponto1 FOREIGN KEY (id_ponto) REFERENCES onbus.ponto (id_ponto) ON DELETE CASCADE ON UPDATE CASCADE) ENGINE = InnoDB; -- ----------------------------------------------------- -- Tabela peticao -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS onbus.peticao ( id_peticao INT NOT NULL AUTO_INCREMENT, hora_pedido TIMESTAMP NOT NULL, id_ponto INT NOT NULL, id_usuario INT NOT NULL, id_linha INT NOT NULL, PRIMARY KEY (id_peticao), INDEX fk_peticao_ponto1_idx (id_ponto ASC), INDEX fk_peticao_usuario1_idx (id_usuario ASC), INDEX fk_peticao_linha1_idx (id_linha ASC), CONSTRAINT fk_peticao_ponto1 FOREIGN KEY (id_ponto) REFERENCES onbus.ponto (id_ponto) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT fk_peticao_usuario1 FOREIGN KEY (id_usuario) REFERENCES onbus.usuario (id_usuario) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT fk_peticao_linha1 FOREIGN KEY (id_linha) REFERENCES onbus.linha (id_linha) ON DELETE CASCADE ON UPDATE CASCADE) ENGINE = InnoDB; -- ----------------------------------------------------- -- Tabela onibus_linha -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS onbus.onibus_linha ( id_onibus_linha INT NOT NULL AUTO_INCREMENT, id_onibus INT NOT NULL, id_linha INT NOT NULL, PRIMARY KEY (id_onibus_linha), INDEX fk_onibus_linha_onibus1_idx (id_onibus ASC), INDEX fk_onibus_linha_linha1_idx (id_linha ASC), CONSTRAINT fk_onibus_linha_onibus1 FOREIGN KEY (id_onibus) REFERENCES onbus.onibus (id_onibus) ON DELETE CASCADE ON UPDATE CASCADE, CONSTRAINT fk_onibus_linha_linha1 FOREIGN KEY (id_linha) REFERENCES onbus.linha (id_linha) ON DELETE CASCADE ON UPDATE CASCADE) ENGINE = InnoDB; -- ----------------------------------------------------- -- Tabela estado_onibus -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS onbus.estado_onibus ( id_estado_onibus INT NOT NULL AUTO_INCREMENT, id_onibus_linha INT NOT NULL, velocidade_act FLOAT(5,2) NOT NULL, latitude_act DOUBLE NOT NULL, longitude_act DOUBLE NOT NULL, lotacao_act INT(3) NOT NULL, hora_inf_recebida TIMESTAMP NOT NULL, PRIMARY KEY (id_estado_onibus), INDEX fk_estado_onibus_onibus_linha1_idx (id_onibus_linha ASC), CONSTRAINT fk_estado_onibus_onibus_linha1 FOREIGN KEY (id_onibus_linha) REFERENCES onbus.onibus_linha (id_onibus_linha) ON DELETE CASCADE ON UPDATE CASCADE) ENGINE = InnoDB;
-- phpMyAdmin SQL Dump -- version 4.0.4 -- http://www.phpmyadmin.net -- -- Máquina: localhost -- Data de Criação: 27-Jul-2014 às 20:48 -- Versão do servidor: 5.6.12-log -- versão do PHP: 5.4.12 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET time_zone = "+00:00"; -- -- Base de Dados: `araruna_paiamab` -- -- -------------------------------------------------------- -- -- Estrutura da tabela `1_anexo2` -- CREATE TABLE IF NOT EXISTS `1_anexo2` ( `id_ficha` int(11) NOT NULL, `tab1_p1` int(11) DEFAULT NULL, `tab1_p2` int(11) DEFAULT NULL, `tab1_p3` int(11) DEFAULT NULL, `tab1_p4` int(11) DEFAULT NULL, `tab1_p5` int(11) DEFAULT NULL, `tab1_p6` int(11) DEFAULT NULL, `tab1_p7` int(11) DEFAULT NULL, `tab1_p8` int(11) DEFAULT NULL, `tab1_p9` int(11) DEFAULT NULL, `tab1_p10` int(11) DEFAULT NULL, `tab1_p11` int(11) DEFAULT NULL, `tab1_p12` int(11) DEFAULT NULL, `tab1_p13` int(11) DEFAULT NULL, `tab1_p14` int(11) DEFAULT NULL, `tab2_p1` int(11) DEFAULT NULL, `tab2_p2` int(11) DEFAULT NULL, `tab2_p3` int(11) DEFAULT NULL, `tab2_p4` int(11) DEFAULT NULL, `tab2_p5` int(11) DEFAULT NULL, `tab2_p6` int(11) DEFAULT NULL, `tab2_p7` int(11) DEFAULT NULL, `tab2_p8` int(11) DEFAULT NULL, `tab2_p9` int(11) DEFAULT NULL, `tab2_p10` int(11) DEFAULT NULL, `tab2_p11` int(11) DEFAULT NULL, `tab2_p12` int(11) DEFAULT NULL, `tab2_p13` int(11) DEFAULT NULL, `tab2_p14` int(11) DEFAULT NULL, `entrevistador` varchar(100) DEFAULT NULL, `data` varchar(10) DEFAULT NULL, `id_usuario` int(11) DEFAULT NULL, KEY `id_ficha` (`id_ficha`,`id_usuario`), KEY `id_usuario` (`id_usuario`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8; -- -- Constraints for dumped tables -- -- -- Limitadores para a tabela `1_anexo2` -- ALTER TABLE `1_anexo2` ADD CONSTRAINT `pk2_id_ficha` FOREIGN KEY (`id_ficha`) REFERENCES `1_ficha` (`id_ficha`) ON DELETE CASCADE ON UPDATE CASCADE, ADD CONSTRAINT `pk2_usuario` FOREIGN KEY (`id_usuario`) REFERENCES `1_usuario` (`id_usuario`) ON DELETE NO ACTION ON UPDATE CASCADE;
INSERT into example values(1); INSERT into example values(2);
--天皇誕生日 CREATE OR REPLACE FUNCTION holidays_in_japan.IS_EMPERORS_BIRTHDAY(d DATE) AS ( d BETWEEN "1948-07-20" AND "1989-02-16" AND EXTRACT(MONTH FROM d) = 4 AND EXTRACT(DAY FROM d) = 29 OR d BETWEEN "1989-02-17" AND "2019-04-30" AND EXTRACT(MONTH FROM d) = 12 AND EXTRACT(DAY FROM d) = 23 OR "2019-05-01" <= d AND EXTRACT(MONTH FROM d) = 2 AND EXTRACT(DAY FROM d) = 23 );
-- prep work before creating an external table CREATE DIRECTORY external_dir AS 'D:\external'; GRANT READ ON DIRECTORY external_dir TO table_owner; GRANT WRITE ON DIRECTORY external_dir TO table_owner; -- create an external table CREATE TABLE tablename (column1 NUMBER(4), ... ) ORGANIZATION EXTERNAL ( TYPE ORACLE_LOADER DEFAULT DIRECTORY external_dir ACCESS PARAMETERS ( records delimited by newline badfile external_dir:'ext%a_%p.bad' logfile external_dir:'ext%a_%p.log' fields terminated by ',' missing field values are null ( column1,... ) ) LOCATION ('external.dat') ) REJECT LIMIT UNLIMITED; -- example -- put log file on local disk, not snapdisk create table LISTENER_UXP33 ( TIMESTAMP date, CONNECT_DATA varchar2(2048), PROTOCOL_INFO varchar2(64), EVENT varchar2(64), SID varchar2(64), RETURN_CODE number(5) ) organization external ( type ORACLE_LOADER default directory DPUMP_EXP access parameters ( records delimited by NEWLINE badfile DPUMP_EXP:'listener_uxp33.bad' nodiscardfile logfile DPUMP_EXP:'listener_uxp33.log' fields terminated by '*' LDRTRIM reject rows with all null fields ( "TIMESTAMP" char date_format DATE mask "DD-MON-YYYY HH24:MI:SS ", "CONNECT_DATA", "PROTOCOL_INFO", "EVENT", "SID", "RETURN_CODE" ) ) location ('listener_uxp33.log') ) reject limit unlimited; create table edmat_tab_privs ( GRANTEE VARCHAR2(128), OWNER VARCHAR2(128), TABLE_NAME VARCHAR2(128), PRIVILEGE VARCHAR2(40) ) organization external ( type ORACLE_LOADER default directory external_dir access parameters ( records delimited by NEWLINE badfile external_dir:'edmat_tab_privs.bad' nodiscardfile logfile external_dir:'edmat_tab_privs.log' fields terminated by ',' reject rows with all null fields ( "GRANTEE", "OWNER", "TABLE_NAME", "PRIVILEGE" ) ) location ('edmat_tab_privs.csv') ) reject limit unlimited; -- *** fixing newline issue *** -- external table includes newline as part of last column select rtrim(GRANTED_ROLE)||'*' from edmat_roles_ext where rownum<11; RTRIM(GRANTED_ROLE)||'*' --------------------------------------------------------------------------------------------------------------------------------- *ONNECT *BA *ONNECT -- use REGEXP_REPLACE to remove it select REGEXP_REPLACE(GRANTED_ROLE,'(^[[:space:]]*|[[:space:]]*$)')||'*' from edmat_roles_ext where rownum<11; REGEXP_REPLACE(GRANTED_ROLE,'(^[[:SPACE:]]*|[[:SPACE:]]*$)')||'*' ------------------------------------------------------------------------------------------------------------------------------------------------------ CONNECT* DBA* CONNECT* -- create internal table to get table clean create table edmap_roles as select rtrim(grantee) grantee, REGEXP_REPLACE(GRANTED_ROLE,'(^[[:space:]]*|[[:space:]]*$)') granted_role from edmap_roles_ext; -- ########## -- # TKPROF # -- Using an external table as a way to view trace files -- ########## /* SYSDBA */ -- Create new directories CREATE DIRECTORY bin_dir AS 'D:\DBA\TKProf'; CREATE DIRECTORY trace_dir AS 'D:\oradata\DEVA\dw3\General\Admin\diag\rdbms\dw3deva\dw3deva\trace'; -- Grant privs GRANT READ, WRITE ON DIRECTORY trace_dir TO dw3; GRANT EXECUTE ON DIRECTORY bin_dir TO dw3; GRANT READ, WRITE ON DIRECTORY bin_dir TO dw3; -- allow DW3 to enable tracing grant alter session to dw3; -- Server Access Change -- Allow users to modify D:\oradata\DEVA\dw3\General\Admin\diag\rdbms\dw3deva\dw3deva\trace /* DW3 */ -- this can be any end user with above privs CREATE TABLE tkprof_xt (line NUMBER ,text VARCHAR2(4000) ) ORGANIZATION EXTERNAL (TYPE ORACLE_LOADER DEFAULT DIRECTORY trace_dir ACCESS PARAMETERS (RECORDS DELIMITED BY NEWLINE PREPROCESSOR bin_dir: 'TKProf_dw3deva.bat' LOGFILE bin_dir: 'TKProf_dw3deva.log' FIELDS TERMINATED BY WHITESPACE (line RecNum ,text POSITION(1:4000) ) ) LOCATION ('') ) REJECT LIMIT UNLIMITED; -- start tracing ALTER SESSION SET EVENTS '10046 trace name context forever, level 12'; SELECT COUNT(*) FROM user_tables; -- end tracing ALTER SESSION SET EVENTS '10046 trace name context off'; -- find trace file SELECT 'ALTER TABLE tkprof_xt LOCATION ('''||REGEXP_SUBSTR(value, '[^\]+$')||''');' run_me FROM v$diag_info WHERE name = 'Default Trace File'; -- view contents SELECT * FROM tkprof_xt ORDER BY line; /* TKProf_dw3deva.bat */ /* @echo off cd D:\oradata\DEVA\dw3\General\Admin\diag\rdbms\dw3deva\dw3deva\trace D:\Oracle\Product\11.2.0\dbhome_11203\BIN\tkprof %1 %1.txt type %1.txt */
-- Product Group table CREATE TABLE product_group ( id SERIAL NOT NULL PRIMARY KEY, name TEXT NOT NULL, description TEXT NOT NULL DEFAULT '' ); -- Product table CREATE TABLE product ( id SERIAL NOT NULL PRIMARY KEY, name TEXT NOT NULL, unit TEXT NOT NULL, price_per_unit FLOAT NOT NULL ); -- Product to Product Group table CREATE TABLE product_to_group ( product_id INT NOT NULL REFERENCES product (id) ON UPDATE CASCADE ON DELETE CASCADE, product_group_id INT NOT NULL REFERENCES product_group (id) ON UPDATE CASCADE ON DELETE CASCADE, CONSTRAINT product_to_group_pk PRIMARY KEY (product_id, product_group_id) ); CREATE INDEX i_product_to_group__product_group_id ON product_to_group (product_group_id); -- User table CREATE TABLE "user" ( id SERIAL NOT NULL PRIMARY KEY, password_hash TEXT NOT NULL, email TEXT NOT NULL UNIQUE, real_name TEXT NOT NULL, role TEXT NOT NULL ); -- -- Cart table -- -- CREATE TABLE cart ( -- id BIGSERIAL NOT NULL PRIMARY KEY, -- username TEXT NOT NULL REFERENCES "user" (username), -- product_id BIGINT NOT NULL REFERENCES product (id), -- quantity INT NOT NULL, -- UNIQUE (username, product_id) -- ); -- -- -- Special Offer table -- -- CREATE TABLE special_offer ( -- id BIGSERIAL NOT NULL PRIMARY KEY, -- name TEXT NOT NULL, -- priority INT NOT NULL, -- start_date TIMESTAMP WITHOUT TIME ZONE NOT NULL, -- ending_date TIMESTAMP WITHOUT TIME ZONE NOT NULL -- ); -- -- -- Special Offer to Product table -- -- CREATE TABLE special_offer_to_product ( -- special_offer_id BIGINT NOT NULL REFERENCES special_offer (id), -- product_id BIGINT NOT NULL REFERENCES product (id), -- CONSTRAINT special_offer_to_product_pk PRIMARY KEY (special_offer_id, product_id) -- ); -- -- CREATE INDEX i_special_offer_to_product__product_id -- ON special_offer_to_product (product_id); -- -- -- Supply table -- -- CREATE TABLE supply ( -- id BIGSERIAL NOT NULL PRIMARY KEY, -- supply_date TIMESTAMP WITHOUT TIME ZONE NOT NULL, -- product_id BIGINT NOT NULL REFERENCES product (id), -- supply_price REAL NOT NULL, -- quantity INT NOT NULL DEFAULT 1 -- ); -- -- -- Payment table -- -- CREATE TABLE payment ( -- id BIGSERIAL NOT NULL PRIMARY KEY, -- username TEXT NOT NULL REFERENCES "user" (username), -- payment_date TIMESTAMP WITHOUT TIME ZONE NOT NULL -- ); -- -- -- Sale table -- -- CREATE TABLE sale ( -- payment_id BIGINT NOT NULL REFERENCES payment (id), -- product_id BIGINT NOT NULL REFERENCES product (id), -- sale_price REAL NOT NULL, -- quanitity INT NOT NULL, -- CONSTRAINT sales_pk PRIMARY KEY (payment_id, product_id) -- ); -- -- CREATE INDEX i_sale__product_id -- ON sale (product_id);
-- Script generated by com.jnj.gtsc.harmony.migration.script.migrate.MigrateAccessRightsScript -- Script generated on 28/May/2013 00:12:54 -- 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/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MACHERMA', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MACHERMA/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('MACHERMA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999838', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999810', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999745', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999659', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999654', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999458', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999307', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999189', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999187', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999181', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999178', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999175', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999173', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998984', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998973', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998972', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998962', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998911', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999459', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999494', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999495', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999497', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999504', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999534', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999535', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999607', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999608', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999610', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999650', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999652', sysdate, null); -- Inserting RoleToUserAssignment 'MACHERMA/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MACHERMA', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MACHERMA/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('MACHERMA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999838', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999810', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999745', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999659', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999654', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999458', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999307', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999189', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999187', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999181', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999178', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999175', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999173', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998984', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998973', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998972', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998962', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998911', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999459', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999494', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999495', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999497', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999504', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999534', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999535', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999607', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999608', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999610', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999650', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999652', sysdate, null); -- Inserting RoleToUserAssignment 'MACHERMA/H_EFS2_LOC_EDIT' harmony.usermgt.create_role_to_user_assignment('MACHERMA', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MACHERMA/H_EFS2_LOC_EDIT harmony.usermgt.create_dds_item_assignment('MACHERMA', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '704', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '697', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '684', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '677', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '664', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '550', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '468', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '451', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '450', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '434', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '432', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '431', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '430', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '427', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '426', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '396', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '358', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '356', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '584', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '599', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '600', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '601', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '602', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '603', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '604', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '623', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '638', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '645', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '646', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '648', sysdate, null); -- Inserting RoleToUserAssignment 'MACHERMA/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('MACHERMA', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MACHERMA/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('MACHERMA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[434/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[254/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[253/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[232/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11825/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11785/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11713/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11419/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11061/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MACHERMA/H_NETTING_LOC_INP_TC' harmony.usermgt.create_role_to_user_assignment('MACHERMA', 'H_NETTING_LOC_INP_TC', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MACHERMA/H_NETTING_LOC_INP_TC harmony.usermgt.create_dds_item_assignment('MACHERMA', 'H_NETTING_LOC_INP_TC', 'Treasury Center Netting Participant', 'ONE', '[233/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MACHERMA/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('MACHERMA', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MACHERMA/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('MACHERMA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11825/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MACHERMA/H_TPP_LOC_EDIT' harmony.usermgt.create_role_to_user_assignment('MACHERMA', 'H_TPP_LOC_EDIT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MACHERMA/H_TPP_LOC_EDIT harmony.usermgt.create_dds_item_assignment('MACHERMA', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '7', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '15', sysdate, null); -- Inserting RoleToUserAssignment 'MACHERMA/H_TPP_P2P_OFFERMGT' harmony.usermgt.create_role_to_user_assignment('MACHERMA', 'H_TPP_P2P_OFFERMGT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MACHERMA/H_TPP_P2P_OFFERMGT harmony.usermgt.create_dds_item_assignment('MACHERMA', 'H_TPP_P2P_OFFERMGT', 'TPP AP2PLE OC', 'ONE', '99', sysdate, null); harmony.usermgt.create_dds_item_assignment('MACHERMA', 'H_TPP_P2P_OFFERMGT', 'TPP AP2PLE OC', 'ONE', '93', sysdate, null); -- Inserting RoleToUserAssignment 'MACHERMA/H_TPP_P2P_REPORT' harmony.usermgt.create_role_to_user_assignment('MACHERMA', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MACHERMA/H_TPP_P2P_REPORT harmony.usermgt.create_dds_item_assignment('MACHERMA', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '94', sysdate, null); -- Inserting RoleToUserAssignment 'MALLEN6/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MALLEN6', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MALLEN6/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('MALLEN6', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999713', sysdate, null); -- Inserting RoleToUserAssignment 'MALLEN6/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MALLEN6', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MALLEN6/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('MALLEN6', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999713', sysdate, null); -- Inserting RoleToUserAssignment 'MALLEN6/H_EFS2_LOC_EDIT' harmony.usermgt.create_role_to_user_assignment('MALLEN6', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MALLEN6/H_EFS2_LOC_EDIT harmony.usermgt.create_dds_item_assignment('MALLEN6', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '266', sysdate, null); -- Inserting RoleToUserAssignment 'MALLEN6/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('MALLEN6', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MALLEN6/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('MALLEN6', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[58/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MALLEN6/H_TPP_P2P_REPORT' harmony.usermgt.create_role_to_user_assignment('MALLEN6', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MALLEN6/H_TPP_P2P_REPORT harmony.usermgt.create_dds_item_assignment('MALLEN6', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '404', sysdate, null); -- Inserting RoleToUserAssignment 'MALOPE1/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MALOPE1', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MALOPE1/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('MALOPE1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999850', sysdate, null); -- Inserting RoleToUserAssignment 'MALOPE1/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MALOPE1', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MALOPE1/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('MALOPE1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999850', sysdate, null); -- Inserting RoleToUserAssignment 'MALOPE1/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('MALOPE1', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MALOPE1/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('MALOPE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[169/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MALOPE1/H_TPP_LOC_REP' harmony.usermgt.create_role_to_user_assignment('MALOPE1', 'H_TPP_LOC_REP', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MALOPE1/H_TPP_LOC_REP harmony.usermgt.create_dds_item_assignment('MALOPE1', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '24', sysdate, null); -- Inserting RoleToUserAssignment 'MAPHANE/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MAPHANE', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MAPHANE/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('MAPHANE', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999669', sysdate, null); -- Inserting RoleToUserAssignment 'MAPHANE/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MAPHANE', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MAPHANE/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('MAPHANE', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999669', sysdate, null); -- Inserting RoleToUserAssignment 'MAPHANE/H_EFS2_LOC_EDIT' harmony.usermgt.create_role_to_user_assignment('MAPHANE', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MAPHANE/H_EFS2_LOC_EDIT harmony.usermgt.create_dds_item_assignment('MAPHANE', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '414', sysdate, null); -- Inserting RoleToUserAssignment 'MAPHANE/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('MAPHANE', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MAPHANE/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('MAPHANE', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[167/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MARANEO/HERMES_STAT_REP_CTR' harmony.usermgt.create_role_to_user_assignment('MARANEO', 'HERMES_STAT_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MARANEO/HERMES_STAT_REP_CTR harmony.usermgt.create_dds_item_assignment('MARANEO', 'HERMES_STAT_REP_CTR', 'Trax Account Groups', 'ONE', '37', sysdate, null); -- Inserting RoleToUserAssignment 'MARANEO/HERMES_TXN_REP_CTR' harmony.usermgt.create_role_to_user_assignment('MARANEO', 'HERMES_TXN_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MARANEO/HERMES_TXN_REP_CTR harmony.usermgt.create_dds_item_assignment('MARANEO', 'HERMES_TXN_REP_CTR', 'Trax Account Groups', 'ONE', '37', sysdate, null); -- Inserting RoleToUserAssignment 'MARANEO/H_GXRS_SSC_USER' harmony.usermgt.create_role_to_user_assignment('MARANEO', 'H_GXRS_SSC_USER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MARANEO/H_GXRS_SSC_USER harmony.usermgt.create_dds_item_assignment('MARANEO', 'H_GXRS_SSC_USER', 'GXRS instructing accounts in ART', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MARMIRAN/H_EFS2_LOC_REP_PARTY' harmony.usermgt.create_role_to_user_assignment('MARMIRAN', 'H_EFS2_LOC_REP_PARTY', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MARMIRAN/H_EFS2_LOC_REP_PARTY harmony.usermgt.create_dds_item_assignment('MARMIRAN', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '554', sysdate, null); -- Inserting RoleToUserAssignment 'MASHLEY1/H_EFS2_LOC_AUTH' harmony.usermgt.create_role_to_user_assignment('MASHLEY1', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MASHLEY1/H_EFS2_LOC_AUTH harmony.usermgt.create_dds_item_assignment('MASHLEY1', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '563', sysdate, null); harmony.usermgt.create_dds_item_assignment('MASHLEY1', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '537', sysdate, null); -- Inserting RoleToUserAssignment 'MASHLEY1/H_EFS2_LOC_REP_PARTY' harmony.usermgt.create_role_to_user_assignment('MASHLEY1', 'H_EFS2_LOC_REP_PARTY', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MASHLEY1/H_EFS2_LOC_REP_PARTY harmony.usermgt.create_dds_item_assignment('MASHLEY1', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '617', sysdate, null); harmony.usermgt.create_dds_item_assignment('MASHLEY1', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '521', sysdate, null); -- Inserting RoleToUserAssignment 'MAUTEA/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('MAUTEA', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MAUTEA/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('MAUTEA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[80/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MAUTEA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11421/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MAUTEA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11331/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MAUTEA/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('MAUTEA', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MAUTEA/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('MAUTEA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[96/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MAUTEA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[80/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MAUTEA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[77/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MAUTEA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[74/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MAUTEA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[73/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MAUTEA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[69/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MAUTEA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[67/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MAUTEA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[57/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MAUTEA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[54/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MAUTEA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[52/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MAUTEA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11109/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MAUTEA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11331/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MAUTEA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11335/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MAUTEA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11353/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MAUTEA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11422/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MAUTEA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11766/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MAUTEA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11782/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MAUTEA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[2/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MAUTEA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[258/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MAUTEA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[259/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MAUTEA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[277/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MAUTEA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[284/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MAUTEA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[51/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MBAETION/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MBAETION', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MBAETION/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('MBAETION', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999879', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBAETION', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999745', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBAETION', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999690', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBAETION', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998868', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBAETION', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998867', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBAETION', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998865', sysdate, null); -- Inserting RoleToUserAssignment 'MBAETION/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MBAETION', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MBAETION/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('MBAETION', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999879', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBAETION', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999745', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBAETION', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999690', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBAETION', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998868', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBAETION', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998867', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBAETION', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998865', sysdate, null); -- Inserting RoleToUserAssignment 'MBAETION/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('MBAETION', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MBAETION/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('MBAETION', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[279/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBAETION', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11995/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBAETION', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11865/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBAETION', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11862/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBAETION', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11334/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBAETION', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11072/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MBAETION/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('MBAETION', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MBAETION/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('MBAETION', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[279/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBAETION', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11865/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBAETION', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11862/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBAETION', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11589/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBAETION', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11334/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBAETION', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11072/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBAETION', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[108/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MBAETION/H_TPP_LOC_REP' harmony.usermgt.create_role_to_user_assignment('MBAETION', 'H_TPP_LOC_REP', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MBAETION/H_TPP_LOC_REP harmony.usermgt.create_dds_item_assignment('MBAETION', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '71', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBAETION', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '377', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBAETION', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '376', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBAETION', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '375', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBAETION', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '374', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBAETION', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '29', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBAETION', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '233', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBAETION', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '13', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBAETION', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '12', sysdate, null); -- Inserting RoleToUserAssignment 'MBAETION/H_TPP_P2P_REPORT' harmony.usermgt.create_role_to_user_assignment('MBAETION', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MBAETION/H_TPP_P2P_REPORT harmony.usermgt.create_dds_item_assignment('MBAETION', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '378', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBAETION', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '372', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBAETION', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '371', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBAETION', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '370', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBAETION', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '302', sysdate, null); -- Inserting RoleToUserAssignment 'MBAGTING/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('MBAGTING', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MBAGTING/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('MBAGTING', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[182/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBAGTING', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11409/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MBALLES2/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('MBALLES2', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MBALLES2/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('MBALLES2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[63/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBALLES2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[60/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBALLES2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[6/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MBARNETT/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('MBARNETT', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MBARNETT/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('MBARNETT', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[238/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MBARRET2/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MBARRET2', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MBARRET2/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('MBARRET2', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999921', sysdate, null); -- Inserting RoleToUserAssignment 'MBARRET2/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MBARRET2', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MBARRET2/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('MBARRET2', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999921', sysdate, null); -- Inserting RoleToUserAssignment 'MBARRET2/H_EFS2_LOC_AUTH' harmony.usermgt.create_role_to_user_assignment('MBARRET2', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MBARRET2/H_EFS2_LOC_AUTH harmony.usermgt.create_dds_item_assignment('MBARRET2', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '709', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBARRET2', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '632', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBARRET2', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '605', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBARRET2', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '260', sysdate, null); -- Inserting RoleToUserAssignment 'MBARRET2/H_TPP_P2P_REPORT' harmony.usermgt.create_role_to_user_assignment('MBARRET2', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MBARRET2/H_TPP_P2P_REPORT harmony.usermgt.create_dds_item_assignment('MBARRET2', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '97', sysdate, null); -- Inserting RoleToUserAssignment 'MBAYNOS/H_TPP_LOC_EDIT' harmony.usermgt.create_role_to_user_assignment('MBAYNOS', 'H_TPP_LOC_EDIT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MBAYNOS/H_TPP_LOC_EDIT harmony.usermgt.create_dds_item_assignment('MBAYNOS', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '77', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBAYNOS', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '76', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBAYNOS', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '33', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBAYNOS', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '31', sysdate, null); -- Inserting RoleToUserAssignment 'MBEATTY/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('MBEATTY', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MBEATTY/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('MBEATTY', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11347/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MBEATTY/H_TPP_LOC_STOP_PAY' harmony.usermgt.create_role_to_user_assignment('MBEATTY', 'H_TPP_LOC_STOP_PAY', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MBEATTY/H_TPP_LOC_STOP_PAY harmony.usermgt.create_dds_item_assignment('MBEATTY', 'H_TPP_LOC_STOP_PAY', 'TPP operating company', 'ONE', '61', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBEATTY', 'H_TPP_LOC_STOP_PAY', 'TPP operating company', 'ONE', '60', sysdate, null); -- Inserting RoleToUserAssignment 'MBENDER/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('MBENDER', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MBENDER/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('MBENDER', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11881/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBENDER', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11780/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBENDER', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11707/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBENDER', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[115/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MBENDER/H_TPP_P2P_REPORT' harmony.usermgt.create_role_to_user_assignment('MBENDER', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MBENDER/H_TPP_P2P_REPORT harmony.usermgt.create_dds_item_assignment('MBENDER', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '114', sysdate, null); -- Inserting RoleToUserAssignment 'MBENIN/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('MBENIN', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MBENIN/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('MBENIN', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11266/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MBENIN/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('MBENIN', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MBENIN/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('MBENIN', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11266/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MBERNATO/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('MBERNATO', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MBERNATO/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('MBERNATO', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[219/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBERNATO', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11130/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MBODEWIG/H_EFS2_LOC_AUTH' harmony.usermgt.create_role_to_user_assignment('MBODEWIG', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MBODEWIG/H_EFS2_LOC_AUTH harmony.usermgt.create_dds_item_assignment('MBODEWIG', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '560', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBODEWIG', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '292', sysdate, null); -- Inserting RoleToUserAssignment 'MBORODIN/H_EFS2_LOC_AUTH' harmony.usermgt.create_role_to_user_assignment('MBORODIN', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MBORODIN/H_EFS2_LOC_AUTH harmony.usermgt.create_dds_item_assignment('MBORODIN', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '707', sysdate, null); -- Inserting RoleToUserAssignment 'MBORODIN/H_EFS2_LOC_EDIT' harmony.usermgt.create_role_to_user_assignment('MBORODIN', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MBORODIN/H_EFS2_LOC_EDIT harmony.usermgt.create_dds_item_assignment('MBORODIN', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '707', sysdate, null); -- Inserting RoleToUserAssignment 'MBORODIN/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('MBORODIN', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MBORODIN/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('MBORODIN', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11916/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MBRADL29/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MBRADL29', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MBRADL29/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('MBRADL29', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999224', sysdate, null); -- Inserting RoleToUserAssignment 'MBRADL29/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MBRADL29', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MBRADL29/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('MBRADL29', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999224', sysdate, null); -- Inserting RoleToUserAssignment 'MBRADL29/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('MBRADL29', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MBRADL29/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('MBRADL29', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[274/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBRADL29', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11739/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBRADL29', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11425/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBRADL29', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11346/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBRADL29', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11340/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBRADL29', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11323/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MBRIGGS/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MBRIGGS', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MBRIGGS/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('MBRIGGS', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '100038', sysdate, null); -- Inserting RoleToUserAssignment 'MBRIGGS/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MBRIGGS', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MBRIGGS/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('MBRIGGS', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '100038', sysdate, null); -- Inserting RoleToUserAssignment 'MBRIGGS/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('MBRIGGS', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MBRIGGS/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('MBRIGGS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11883/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MBROEKH1/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MBROEKH1', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MBROEKH1/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('MBROEKH1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999034', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBROEKH1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999031', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBROEKH1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999025', sysdate, null); -- Inserting RoleToUserAssignment 'MBROEKH1/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MBROEKH1', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MBROEKH1/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('MBROEKH1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999034', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBROEKH1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999031', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBROEKH1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999025', sysdate, null); -- Inserting RoleToUserAssignment 'MBROEKH1/H_EFS2_LOC_EDIT' harmony.usermgt.create_role_to_user_assignment('MBROEKH1', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MBROEKH1/H_EFS2_LOC_EDIT harmony.usermgt.create_dds_item_assignment('MBROEKH1', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '625', sysdate, null); -- Inserting RoleToUserAssignment 'MBROEKH1/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('MBROEKH1', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MBROEKH1/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('MBROEKH1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11635/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBROEKH1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11628/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBROEKH1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11627/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MBRONOLA/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('MBRONOLA', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MBRONOLA/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('MBRONOLA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[97/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MBROWN15/H_EFS2_LOC_REP_PARTY' harmony.usermgt.create_role_to_user_assignment('MBROWN15', 'H_EFS2_LOC_REP_PARTY', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MBROWN15/H_EFS2_LOC_REP_PARTY harmony.usermgt.create_dds_item_assignment('MBROWN15', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '614', sysdate, null); -- Inserting RoleToUserAssignment 'MBROWN15/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('MBROWN15', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MBROWN15/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('MBROWN15', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11756/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MBRUNNER/H_EFS2_LOC_REP_PARTY' harmony.usermgt.create_role_to_user_assignment('MBRUNNER', 'H_EFS2_LOC_REP_PARTY', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MBRUNNER/H_EFS2_LOC_REP_PARTY harmony.usermgt.create_dds_item_assignment('MBRUNNER', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '623', sysdate, null); harmony.usermgt.create_dds_item_assignment('MBRUNNER', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '430', sysdate, null); -- Inserting RoleToUserAssignment 'MCAHOVA/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MCAHOVA', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MCAHOVA/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('MCAHOVA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999891', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCAHOVA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999277', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCAHOVA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999274', sysdate, null); -- Inserting RoleToUserAssignment 'MCAHOVA/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MCAHOVA', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MCAHOVA/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('MCAHOVA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999891', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCAHOVA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999277', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCAHOVA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999274', sysdate, null); -- Inserting RoleToUserAssignment 'MCAMALIG/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('MCAMALIG', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MCAMALIG/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('MCAMALIG', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11105/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCAMALIG', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11109/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCAMALIG', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11343/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCAMALIG', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11463/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCAMALIG', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11552/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCAMALIG', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11553/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCAMALIG', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11782/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCAMALIG', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11827/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCAMALIG', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11829/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCAMALIG', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11830/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCAMALIG', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[41/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCAMALIG', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[55/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCAMALIG', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[70/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MCANTIEL/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MCANTIEL', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MCANTIEL/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('MCANTIEL', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999872', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCANTIEL', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998926', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCANTIEL', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '100057', sysdate, null); -- Inserting RoleToUserAssignment 'MCANTIEL/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MCANTIEL', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MCANTIEL/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('MCANTIEL', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999872', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCANTIEL', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998926', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCANTIEL', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '100057', sysdate, null); -- Inserting RoleToUserAssignment 'MCANTIEL/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('MCANTIEL', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MCANTIEL/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('MCANTIEL', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11761/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MCASTI39/H_TPP_LOC_EDIT' harmony.usermgt.create_role_to_user_assignment('MCASTI39', 'H_TPP_LOC_EDIT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MCASTI39/H_TPP_LOC_EDIT harmony.usermgt.create_dds_item_assignment('MCASTI39', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '375', sysdate, null); -- Inserting RoleToUserAssignment 'MCATALUN/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MCATALUN', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MCATALUN/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('MCATALUN', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999603', sysdate, null); -- Inserting RoleToUserAssignment 'MCATALUN/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MCATALUN', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MCATALUN/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('MCATALUN', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999603', sysdate, null); -- Inserting RoleToUserAssignment 'MCATALUN/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('MCATALUN', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MCATALUN/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('MCATALUN', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[70/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCATALUN', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[39/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCATALUN', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11078/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCATALUN', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11109/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCATALUN', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11323/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCATALUN', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11324/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCATALUN', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11346/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCATALUN', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11425/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCATALUN', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11552/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCATALUN', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11553/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCATALUN', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11739/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCATALUN', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11763/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCATALUN', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11782/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCATALUN', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[2/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCATALUN', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[274/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MCHAN2/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MCHAN2', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MCHAN2/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('MCHAN2', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999781', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCHAN2', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999524', sysdate, null); -- Inserting RoleToUserAssignment 'MCHAN2/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MCHAN2', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MCHAN2/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('MCHAN2', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999781', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCHAN2', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999524', sysdate, null); -- Inserting RoleToUserAssignment 'MCHAN2/H_EFS2_LOC_EDIT' harmony.usermgt.create_role_to_user_assignment('MCHAN2', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MCHAN2/H_EFS2_LOC_EDIT harmony.usermgt.create_dds_item_assignment('MCHAN2', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '283', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCHAN2', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '282', sysdate, null); -- Inserting RoleToUserAssignment 'MCHAN2/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('MCHAN2', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MCHAN2/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('MCHAN2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[409/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCHAN2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[100/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MCHARVAT/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MCHARVAT', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MCHARVAT/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('MCHARVAT', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999888', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCHARVAT', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999887', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCHARVAT', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999884', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCHARVAT', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999765', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCHARVAT', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999751', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCHARVAT', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999746', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCHARVAT', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999743', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCHARVAT', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999412', sysdate, null); -- Inserting RoleToUserAssignment 'MCHARVAT/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MCHARVAT', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MCHARVAT/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('MCHARVAT', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999888', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCHARVAT', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999887', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCHARVAT', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999884', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCHARVAT', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999765', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCHARVAT', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999751', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCHARVAT', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999746', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCHARVAT', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999743', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCHARVAT', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999412', sysdate, null); -- Inserting RoleToUserAssignment 'MCHAWLA/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MCHAWLA', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MCHAWLA/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('MCHAWLA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998932', sysdate, null); -- Inserting RoleToUserAssignment 'MCHAWLA/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MCHAWLA', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MCHAWLA/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('MCHAWLA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998932', sysdate, null); -- Inserting RoleToUserAssignment 'MCHAWLA/H_TPP_P2P_REPORT' harmony.usermgt.create_role_to_user_assignment('MCHAWLA', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MCHAWLA/H_TPP_P2P_REPORT harmony.usermgt.create_dds_item_assignment('MCHAWLA', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '343', sysdate, null); -- Inserting RoleToUserAssignment 'MCHENG3/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MCHENG3', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MCHENG3/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('MCHENG3', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999979', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCHENG3', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999933', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCHENG3', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999932', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCHENG3', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999569', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCHENG3', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999265', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCHENG3', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999074', sysdate, null); -- Inserting RoleToUserAssignment 'MCHENG3/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MCHENG3', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MCHENG3/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('MCHENG3', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999979', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCHENG3', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999933', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCHENG3', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999932', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCHENG3', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999569', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCHENG3', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999265', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCHENG3', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999074', sysdate, null); -- Inserting RoleToUserAssignment 'MCHENG3/H_EFS2_LOC_REP_PARTY' harmony.usermgt.create_role_to_user_assignment('MCHENG3', 'H_EFS2_LOC_REP_PARTY', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MCHENG3/H_EFS2_LOC_REP_PARTY harmony.usermgt.create_dds_item_assignment('MCHENG3', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '263', sysdate, null); -- Inserting RoleToUserAssignment 'MCHONG/H_EFS2_LOC_AUTH' harmony.usermgt.create_role_to_user_assignment('MCHONG', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MCHONG/H_EFS2_LOC_AUTH harmony.usermgt.create_dds_item_assignment('MCHONG', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '283', sysdate, null); -- Inserting RoleToUserAssignment 'MCHONG/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('MCHONG', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MCHONG/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('MCHONG', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[100/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MCIARDIE/H_GXRS_CALL_CENTER' harmony.usermgt.create_role_to_user_assignment('MCIARDIE', 'H_GXRS_CALL_CENTER', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MCOLUMBU/H_EFS2_LOC_AUTH' harmony.usermgt.create_role_to_user_assignment('MCOLUMBU', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MCOLUMBU/H_EFS2_LOC_AUTH harmony.usermgt.create_dds_item_assignment('MCOLUMBU', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '439', sysdate, null); -- Inserting RoleToUserAssignment 'MCONDON4/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MCONDON4', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MCONDON4/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('MCONDON4', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999713', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCONDON4', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999400', sysdate, null); -- Inserting RoleToUserAssignment 'MCONDON4/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MCONDON4', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MCONDON4/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('MCONDON4', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999713', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCONDON4', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999400', sysdate, null); -- Inserting RoleToUserAssignment 'MCONDON4/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('MCONDON4', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MCONDON4/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('MCONDON4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[58/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCONDON4', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11441/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MCONDON4/H_TPP_P2P_REPORT' harmony.usermgt.create_role_to_user_assignment('MCONDON4', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MCONDON4/H_TPP_P2P_REPORT harmony.usermgt.create_dds_item_assignment('MCONDON4', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '404', sysdate, null); -- Inserting RoleToUserAssignment 'MCRUZ20/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('MCRUZ20', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MCRUZ20/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('MCRUZ20', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[124/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MCRUZ20', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11380/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MCRUZ20/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('MCRUZ20', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MCRUZ20/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('MCRUZ20', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[122/CC]', sysdate, null); -- Inserting RoleToUserAssignment 'MDALUYO/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('MDALUYO', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MDALUYO/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('MDALUYO', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[406/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDALUYO', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11681/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MDAPON/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('MDAPON', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MDAPON/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('MDAPON', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[430/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MDAVID8/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MDAVID8', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MDAVID8/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('MDAVID8', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999263', sysdate, null); -- Inserting RoleToUserAssignment 'MDAVID8/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MDAVID8', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MDAVID8/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('MDAVID8', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999263', sysdate, null); -- Inserting RoleToUserAssignment 'MDAVID8/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('MDAVID8', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MDAVID8/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('MDAVID8', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[274/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDAVID8', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11739/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDAVID8', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11425/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDAVID8', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11340/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDAVID8', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11323/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDAVID8', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11105/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MDAVID8/H_TPP_P2P_REPORT' harmony.usermgt.create_role_to_user_assignment('MDAVID8', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MDAVID8/H_TPP_P2P_REPORT harmony.usermgt.create_dds_item_assignment('MDAVID8', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '242', sysdate, null); -- Inserting RoleToUserAssignment 'MDELADIA/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('MDELADIA', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MDELADIA/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('MDELADIA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[133/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MDELGA20/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('MDELGA20', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MDELGA20/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('MDELGA20', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[80/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDELGA20', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[73/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDELGA20', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[59/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDELGA20', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[210/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDELGA20', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11422/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDELGA20', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11344/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDELGA20', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11331/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MDEPTULA/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MDEPTULA', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MDEPTULA/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('MDEPTULA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999347', sysdate, null); -- Inserting RoleToUserAssignment 'MDEPTULA/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MDEPTULA', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MDEPTULA/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('MDEPTULA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999347', sysdate, null); -- Inserting RoleToUserAssignment 'MDEPTULA/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('MDEPTULA', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MDEPTULA/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('MDEPTULA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11285/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDEPTULA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11281/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDEPTULA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11280/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MDEPTULA/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('MDEPTULA', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MDEPTULA/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('MDEPTULA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11082/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MDEPTULA/H_TPP_P2P_OFFERAUTH' harmony.usermgt.create_role_to_user_assignment('MDEPTULA', 'H_TPP_P2P_OFFERAUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MDEPTULA/H_TPP_P2P_OFFERAUTH harmony.usermgt.create_dds_item_assignment('MDEPTULA', 'H_TPP_P2P_OFFERAUTH', 'TPP AP2PLE OC', 'ONE', '401', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDEPTULA', 'H_TPP_P2P_OFFERAUTH', 'TPP AP2PLE OC', 'ONE', '400', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDEPTULA', 'H_TPP_P2P_OFFERAUTH', 'TPP AP2PLE OC', 'ONE', '399', sysdate, null); -- Inserting RoleToUserAssignment 'MDEPTULA/H_TPP_P2P_OFFERMGT' harmony.usermgt.create_role_to_user_assignment('MDEPTULA', 'H_TPP_P2P_OFFERMGT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MDEPTULA/H_TPP_P2P_OFFERMGT harmony.usermgt.create_dds_item_assignment('MDEPTULA', 'H_TPP_P2P_OFFERMGT', 'TPP AP2PLE OC', 'ONE', '401', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDEPTULA', 'H_TPP_P2P_OFFERMGT', 'TPP AP2PLE OC', 'ONE', '400', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDEPTULA', 'H_TPP_P2P_OFFERMGT', 'TPP AP2PLE OC', 'ONE', '399', sysdate, null); -- Inserting RoleToUserAssignment 'MDESCHE/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MDESCHE', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MDESCHE/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('MDESCHE', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999524', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDESCHE', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999222', sysdate, null); -- Inserting RoleToUserAssignment 'MDESCHE/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MDESCHE', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MDESCHE/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('MDESCHE', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999524', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDESCHE', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999222', sysdate, null); -- Inserting RoleToUserAssignment 'MDEVERA1/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('MDEVERA1', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MDEVERA1/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('MDEVERA1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[63/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDEVERA1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[60/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDEVERA1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[6/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MDIELS3/BAM_REPORTER' harmony.usermgt.create_role_to_user_assignment('MDIELS3', 'BAM_REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MDIELS3/BAM_REPORTER harmony.usermgt.create_dds_item_assignment('MDIELS3', 'BAM_REPORTER', 'BAM Region', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MDIELS3/HB_FM_COMBI_REQUEST' harmony.usermgt.create_role_to_user_assignment('MDIELS3', 'HB_FM_COMBI_REQUEST', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MDIELS3/HERMES_CMEFF_REP_CTR' harmony.usermgt.create_role_to_user_assignment('MDIELS3', 'HERMES_CMEFF_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MDIELS3/HERMES_CMEFF_REP_CTR harmony.usermgt.create_dds_item_assignment('MDIELS3', 'HERMES_CMEFF_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MDIELS3/HERMES_GRP_REP_CTR' harmony.usermgt.create_role_to_user_assignment('MDIELS3', 'HERMES_GRP_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MDIELS3/HERMES_GRP_REP_CTR harmony.usermgt.create_dds_item_assignment('MDIELS3', 'HERMES_GRP_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MDIELS3/HERMES_IDTXN_REP_CTR' harmony.usermgt.create_role_to_user_assignment('MDIELS3', 'HERMES_IDTXN_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MDIELS3/HERMES_IDTXN_REP_CTR harmony.usermgt.create_dds_item_assignment('MDIELS3', 'HERMES_IDTXN_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MDIELS3/HERMES_STAT_REP_CTR' harmony.usermgt.create_role_to_user_assignment('MDIELS3', 'HERMES_STAT_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MDIELS3/HERMES_STAT_REP_CTR harmony.usermgt.create_dds_item_assignment('MDIELS3', 'HERMES_STAT_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MDIELS3/HERMES_STS_REP_CTR' harmony.usermgt.create_role_to_user_assignment('MDIELS3', 'HERMES_STS_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MDIELS3/HERMES_STS_REP_CTR harmony.usermgt.create_dds_item_assignment('MDIELS3', 'HERMES_STS_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MDIELS3/HERMES_SYM_REC_CTR' harmony.usermgt.create_role_to_user_assignment('MDIELS3', 'HERMES_SYM_REC_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MDIELS3/HERMES_SYM_REC_CTR harmony.usermgt.create_dds_item_assignment('MDIELS3', 'HERMES_SYM_REC_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MDIELS3/HERMES_TXN_REP_CTR' harmony.usermgt.create_role_to_user_assignment('MDIELS3', 'HERMES_TXN_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MDIELS3/HERMES_TXN_REP_CTR harmony.usermgt.create_dds_item_assignment('MDIELS3', 'HERMES_TXN_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MDIELS3/HERMES_VAVO_REP_CTR' harmony.usermgt.create_role_to_user_assignment('MDIELS3', 'HERMES_VAVO_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MDIELS3/HERMES_VAVO_REP_CTR harmony.usermgt.create_dds_item_assignment('MDIELS3', 'HERMES_VAVO_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MDIELS3/H_BANKDIR_BO_USER' harmony.usermgt.create_role_to_user_assignment('MDIELS3', 'H_BANKDIR_BO_USER', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MDIELS3/H_COMMONS_BO_USER' harmony.usermgt.create_role_to_user_assignment('MDIELS3', 'H_COMMONS_BO_USER', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MDIELS3/H_DLINK_BO_USER' harmony.usermgt.create_role_to_user_assignment('MDIELS3', 'H_DLINK_BO_USER', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MDIELS3/H_DLINK_REPORTING' harmony.usermgt.create_role_to_user_assignment('MDIELS3', 'H_DLINK_REPORTING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MDIELS3/H_EFS2_BO_USER' harmony.usermgt.create_role_to_user_assignment('MDIELS3', 'H_EFS2_BO_USER', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MDIELS3/H_NETTING_BO_USER' harmony.usermgt.create_role_to_user_assignment('MDIELS3', 'H_NETTING_BO_USER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MDIELS3/H_NETTING_BO_USER harmony.usermgt.create_dds_item_assignment('MDIELS3', 'H_NETTING_BO_USER', 'Treasury Center Netting Participant', 'ONE', '[7/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'H_NETTING_BO_USER', 'Treasury Center Netting Participant', 'ONE', '[5/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'H_NETTING_BO_USER', 'Treasury Center Netting Participant', 'ONE', '[233/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'H_NETTING_BO_USER', 'Treasury Center Netting Participant', 'ONE', '[223/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'H_NETTING_BO_USER', 'Treasury Center Netting Participant', 'ONE', '[222/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'H_NETTING_BO_USER', 'Treasury Center Netting Participant', 'ONE', '[11486/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'H_NETTING_BO_USER', 'Treasury Center Netting Participant', 'ONE', '[11120/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'H_NETTING_BO_USER', 'Treasury Center Netting Participant', 'ONE', '[1/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MDIELS3/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('MDIELS3', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MDIELS3/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('MDIELS3', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[93/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[254/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[142/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11419/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11356/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11347/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11212/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MDIELS3/H_NETTING_LOC_REP_TC' harmony.usermgt.create_role_to_user_assignment('MDIELS3', 'H_NETTING_LOC_REP_TC', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MDIELS3/H_NETTING_LOC_REP_TC harmony.usermgt.create_dds_item_assignment('MDIELS3', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[7/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[233/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[223/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[222/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[11486/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[11120/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MDIELS3/H_SWIFTCOM_RELEASER' harmony.usermgt.create_role_to_user_assignment('MDIELS3', 'H_SWIFTCOM_RELEASER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MDIELS3/H_SWIFTCOM_RELEASER harmony.usermgt.create_dds_item_assignment('MDIELS3', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '15', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '14', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDIELS3', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '13', sysdate, null); -- Inserting RoleToUserAssignment 'MDIELS3/H_SWIFTCOM_REPORTER' harmony.usermgt.create_role_to_user_assignment('MDIELS3', 'H_SWIFTCOM_REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MDIELS3/H_SWIFTCOM_REPORTER harmony.usermgt.create_dds_item_assignment('MDIELS3', 'H_SWIFTCOM_REPORTER', 'SWIFTCOM FM Source', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MDIELS3/H_SWIFTCOM_STADA_MGR' harmony.usermgt.create_role_to_user_assignment('MDIELS3', 'H_SWIFTCOM_STADA_MGR', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MDIELS3/H_TOPS_BO_USER' harmony.usermgt.create_role_to_user_assignment('MDIELS3', 'H_TOPS_BO_USER', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MDIELS3/H_TPP_BO_USER' harmony.usermgt.create_role_to_user_assignment('MDIELS3', 'H_TPP_BO_USER', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MDINGAL/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MDINGAL', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MDINGAL/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('MDINGAL', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999812', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDINGAL', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999809', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDINGAL', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998919', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDINGAL', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999020', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDINGAL', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999068', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDINGAL', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999245', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDINGAL', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999246', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDINGAL', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999320', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDINGAL', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999331', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDINGAL', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999547', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDINGAL', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999691', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDINGAL', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999692', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDINGAL', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999693', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDINGAL', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999804', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDINGAL', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999808', sysdate, null); -- Inserting RoleToUserAssignment 'MDINGAL/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MDINGAL', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MDINGAL/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('MDINGAL', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999812', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDINGAL', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999809', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDINGAL', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998919', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDINGAL', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999020', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDINGAL', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999068', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDINGAL', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999245', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDINGAL', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999246', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDINGAL', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999320', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDINGAL', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999331', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDINGAL', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999547', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDINGAL', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999691', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDINGAL', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999692', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDINGAL', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999693', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDINGAL', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999804', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDINGAL', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999808', sysdate, null); -- Inserting RoleToUserAssignment 'MDINGAL/H_ASP2PIRE1_SSC_MGR' harmony.usermgt.create_role_to_user_assignment('MDINGAL', 'H_ASP2PIRE1_SSC_MGR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MDINGAL/H_ASP2PIRE1_SSC_MGR harmony.usermgt.create_dds_item_assignment('MDINGAL', 'H_ASP2PIRE1_SSC_MGR', 'TPP AP2PLE OC', 'ONE', '345', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDINGAL', 'H_ASP2PIRE1_SSC_MGR', 'TPP AP2PLE OC', 'ONE', '346', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDINGAL', 'H_ASP2PIRE1_SSC_MGR', 'TPP AP2PLE OC', 'ONE', '347', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDINGAL', 'H_ASP2PIRE1_SSC_MGR', 'TPP AP2PLE OC', 'ONE', '348', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDINGAL', 'H_ASP2PIRE1_SSC_MGR', 'TPP AP2PLE OC', 'ONE', '349', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDINGAL', 'H_ASP2PIRE1_SSC_MGR', 'TPP AP2PLE OC', 'ONE', '408', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDINGAL', 'H_ASP2PIRE1_SSC_MGR', 'TPP AP2PLE OC', 'ONE', '409', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDINGAL', 'H_ASP2PIRE1_SSC_MGR', 'TPP AP2PLE OC', 'ONE', '410', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDINGAL', 'H_ASP2PIRE1_SSC_MGR', 'TPP AP2PLE OC', 'ONE', '411', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDINGAL', 'H_ASP2PIRE1_SSC_MGR', 'TPP AP2PLE OC', 'ONE', '412', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDINGAL', 'H_ASP2PIRE1_SSC_MGR', 'TPP AP2PLE OC', 'ONE', '413', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDINGAL', 'H_ASP2PIRE1_SSC_MGR', 'TPP AP2PLE OC', 'ONE', '414', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDINGAL', 'H_ASP2PIRE1_SSC_MGR', 'TPP AP2PLE OC', 'ONE', '415', sysdate, null); -- Inserting RoleToUserAssignment 'MDINGAL/H_ASP2PIRE2_SSC_MGR' harmony.usermgt.create_role_to_user_assignment('MDINGAL', 'H_ASP2PIRE2_SSC_MGR', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MDINGAL/H_TPP_LOC_REP' harmony.usermgt.create_role_to_user_assignment('MDINGAL', 'H_TPP_LOC_REP', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MDINGAL/H_TPP_LOC_REP harmony.usermgt.create_dds_item_assignment('MDINGAL', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '77', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDINGAL', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '76', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDINGAL', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '423', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDINGAL', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '422', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDINGAL', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '421', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDINGAL', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '420', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDINGAL', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '419', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDINGAL', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '418', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDINGAL', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '417', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDINGAL', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '416', sysdate, null); -- Inserting RoleToUserAssignment 'MDINOPOU/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MDINOPOU', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MDINOPOU/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('MDINOPOU', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999737', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDINOPOU', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998923', sysdate, null); -- Inserting RoleToUserAssignment 'MDINOPOU/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MDINOPOU', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MDINOPOU/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('MDINOPOU', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999737', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDINOPOU', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998923', sysdate, null); -- Inserting RoleToUserAssignment 'MDOUKAS/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MDOUKAS', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MDOUKAS/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('MDOUKAS', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999781', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDOUKAS', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999524', sysdate, null); -- Inserting RoleToUserAssignment 'MDOUKAS/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MDOUKAS', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MDOUKAS/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('MDOUKAS', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999781', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDOUKAS', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999524', sysdate, null); -- Inserting RoleToUserAssignment 'MDOUKAS/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('MDOUKAS', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MDOUKAS/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('MDOUKAS', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[409/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDOUKAS', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[100/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MDUNLEA/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MDUNLEA', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MDUNLEA/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('MDUNLEA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999790', sysdate, null); -- Inserting RoleToUserAssignment 'MDUNLEA/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MDUNLEA', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MDUNLEA/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('MDUNLEA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999790', sysdate, null); -- Inserting RoleToUserAssignment 'MDWYER1/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('MDWYER1', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MDWYER1/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('MDWYER1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[261/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDWYER1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11782/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MDWYER1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11763/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MEDAN/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('MEDAN', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MEDAN/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('MEDAN', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[429/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MENDO8/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('MENDO8', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MENDO8/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('MENDO8', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11887/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MESCOBA6/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('MESCOBA6', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MESCOBA6/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('MESCOBA6', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[193/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MESPINOS/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('MESPINOS', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MESPINOS/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('MESPINOS', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[417/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MFAJARIT/H_ASP2PIRE1_SSC_USER' harmony.usermgt.create_role_to_user_assignment('MFAJARIT', 'H_ASP2PIRE1_SSC_USER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MFAJARIT/H_ASP2PIRE1_SSC_USER harmony.usermgt.create_dds_item_assignment('MFAJARIT', 'H_ASP2PIRE1_SSC_USER', 'TPP AP2PLE OC', 'ONE', '345', sysdate, null); harmony.usermgt.create_dds_item_assignment('MFAJARIT', 'H_ASP2PIRE1_SSC_USER', 'TPP AP2PLE OC', 'ONE', '346', sysdate, null); harmony.usermgt.create_dds_item_assignment('MFAJARIT', 'H_ASP2PIRE1_SSC_USER', 'TPP AP2PLE OC', 'ONE', '347', sysdate, null); harmony.usermgt.create_dds_item_assignment('MFAJARIT', 'H_ASP2PIRE1_SSC_USER', 'TPP AP2PLE OC', 'ONE', '348', sysdate, null); harmony.usermgt.create_dds_item_assignment('MFAJARIT', 'H_ASP2PIRE1_SSC_USER', 'TPP AP2PLE OC', 'ONE', '349', sysdate, null); harmony.usermgt.create_dds_item_assignment('MFAJARIT', 'H_ASP2PIRE1_SSC_USER', 'TPP AP2PLE OC', 'ONE', '408', sysdate, null); harmony.usermgt.create_dds_item_assignment('MFAJARIT', 'H_ASP2PIRE1_SSC_USER', 'TPP AP2PLE OC', 'ONE', '409', sysdate, null); harmony.usermgt.create_dds_item_assignment('MFAJARIT', 'H_ASP2PIRE1_SSC_USER', 'TPP AP2PLE OC', 'ONE', '410', sysdate, null); harmony.usermgt.create_dds_item_assignment('MFAJARIT', 'H_ASP2PIRE1_SSC_USER', 'TPP AP2PLE OC', 'ONE', '411', sysdate, null); harmony.usermgt.create_dds_item_assignment('MFAJARIT', 'H_ASP2PIRE1_SSC_USER', 'TPP AP2PLE OC', 'ONE', '412', sysdate, null); harmony.usermgt.create_dds_item_assignment('MFAJARIT', 'H_ASP2PIRE1_SSC_USER', 'TPP AP2PLE OC', 'ONE', '413', sysdate, null); harmony.usermgt.create_dds_item_assignment('MFAJARIT', 'H_ASP2PIRE1_SSC_USER', 'TPP AP2PLE OC', 'ONE', '414', sysdate, null); harmony.usermgt.create_dds_item_assignment('MFAJARIT', 'H_ASP2PIRE1_SSC_USER', 'TPP AP2PLE OC', 'ONE', '415', sysdate, null); -- Inserting RoleToUserAssignment 'MFAJARIT/H_ASP2PIRE2_SSC_USER' harmony.usermgt.create_role_to_user_assignment('MFAJARIT', 'H_ASP2PIRE2_SSC_USER', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MFARKACO/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('MFARKACO', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MFARKACO/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('MFARKACO', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[438/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MFARKACO', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[190/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MFARKACO', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[117/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MFASTIGG/H_EFS2_LOC_AUTH' harmony.usermgt.create_role_to_user_assignment('MFASTIGG', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MFASTIGG/H_EFS2_LOC_AUTH harmony.usermgt.create_dds_item_assignment('MFASTIGG', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '328', sysdate, null); -- Inserting RoleToUserAssignment 'MFEHLING/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MFEHLING', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MFEHLING/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('MFEHLING', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999141', sysdate, null); -- Inserting RoleToUserAssignment 'MFEHLING/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MFEHLING', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MFEHLING/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('MFEHLING', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999141', sysdate, null); -- Inserting RoleToUserAssignment 'MFEHLING/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('MFEHLING', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MFEHLING/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('MFEHLING', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[156/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MFEHLING/H_TPP_P2P_REPORT' harmony.usermgt.create_role_to_user_assignment('MFEHLING', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MFEHLING/H_TPP_P2P_REPORT harmony.usermgt.create_dds_item_assignment('MFEHLING', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '148', sysdate, null); -- Inserting RoleToUserAssignment 'MFLEUR1/H_EFS2_LOC_REP_PARTY' harmony.usermgt.create_role_to_user_assignment('MFLEUR1', 'H_EFS2_LOC_REP_PARTY', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MFLEUR1/H_EFS2_LOC_REP_PARTY harmony.usermgt.create_dds_item_assignment('MFLEUR1', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '648', sysdate, null); harmony.usermgt.create_dds_item_assignment('MFLEUR1', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '646', sysdate, null); harmony.usermgt.create_dds_item_assignment('MFLEUR1', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '645', sysdate, null); harmony.usermgt.create_dds_item_assignment('MFLEUR1', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '468', sysdate, null); harmony.usermgt.create_dds_item_assignment('MFLEUR1', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '396', sysdate, null); -- Inserting RoleToUserAssignment 'MFLEUR1/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('MFLEUR1', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MFLEUR1/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('MFLEUR1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[266/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MFLEUR1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11710/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MFODOR1/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MFODOR1', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MFODOR1/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('MFODOR1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998943', sysdate, null); -- Inserting RoleToUserAssignment 'MFODOR1/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MFODOR1', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MFODOR1/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('MFODOR1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998943', sysdate, null); -- Inserting RoleToUserAssignment 'MFODOR1/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('MFODOR1', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MFODOR1/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('MFODOR1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11983/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MFRANCE3/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MFRANCE3', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MFRANCE3/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('MFRANCE3', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999872', sysdate, null); harmony.usermgt.create_dds_item_assignment('MFRANCE3', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998926', sysdate, null); harmony.usermgt.create_dds_item_assignment('MFRANCE3', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '100057', sysdate, null); -- Inserting RoleToUserAssignment 'MFRANCE3/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MFRANCE3', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MFRANCE3/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('MFRANCE3', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999872', sysdate, null); harmony.usermgt.create_dds_item_assignment('MFRANCE3', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998926', sysdate, null); harmony.usermgt.create_dds_item_assignment('MFRANCE3', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '100057', sysdate, null); -- Inserting RoleToUserAssignment 'MFRANCE3/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('MFRANCE3', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MFRANCE3/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('MFRANCE3', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[147/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MFRANCE3', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11761/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MFRANCE3/H_TPP_P2P_REPORT' harmony.usermgt.create_role_to_user_assignment('MFRANCE3', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MFRANCE3/H_TPP_P2P_REPORT harmony.usermgt.create_dds_item_assignment('MFRANCE3', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '273', sysdate, null); -- Inserting RoleToUserAssignment 'MGALLE2/H_EFS2_LOC_AUTH' harmony.usermgt.create_role_to_user_assignment('MGALLE2', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MGALLE2/H_EFS2_LOC_AUTH harmony.usermgt.create_dds_item_assignment('MGALLE2', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '398', sysdate, null); -- Inserting RoleToUserAssignment 'MGEERTS/H_EFS2_LOC_REP_PARTY' harmony.usermgt.create_role_to_user_assignment('MGEERTS', 'H_EFS2_LOC_REP_PARTY', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MGEERTS/H_EFS2_LOC_REP_PARTY harmony.usermgt.create_dds_item_assignment('MGEERTS', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '604', sysdate, null); harmony.usermgt.create_dds_item_assignment('MGEERTS', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '603', sysdate, null); harmony.usermgt.create_dds_item_assignment('MGEERTS', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '602', sysdate, null); harmony.usermgt.create_dds_item_assignment('MGEERTS', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '601', sysdate, null); harmony.usermgt.create_dds_item_assignment('MGEERTS', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '600', sysdate, null); harmony.usermgt.create_dds_item_assignment('MGEERTS', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '599', sysdate, null); harmony.usermgt.create_dds_item_assignment('MGEERTS', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '434', sysdate, null); -- Inserting RoleToUserAssignment 'MGENELAS/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('MGENELAS', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MGENELAS/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('MGENELAS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11345/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MGERTSCH/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('MGERTSCH', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MGERTSCH/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('MGERTSCH', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11847/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MGERTSCH', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11846/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MGERTSCH', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11843/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MGERTSCH', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11841/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MGO1/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MGO1', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MGO1/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('MGO1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998912', sysdate, null); -- Inserting RoleToUserAssignment 'MGO1/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MGO1', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MGO1/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('MGO1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998912', sysdate, null); -- Inserting RoleToUserAssignment 'MGO1/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('MGO1', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MGO1/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('MGO1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11105/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MGO1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11109/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MGO1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11147/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MGO1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11323/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MGO1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11346/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MGO1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11425/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MGO1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11463/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MGO1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11552/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MGO1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11553/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MGO1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11739/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MGO1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11782/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MGO1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[2/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MGO1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[70/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MGONZA13/H_EFS2_LOC_EDIT' harmony.usermgt.create_role_to_user_assignment('MGONZA13', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MGONZA13/H_EFS2_LOC_EDIT harmony.usermgt.create_dds_item_assignment('MGONZA13', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '568', sysdate, null); -- Inserting RoleToUserAssignment 'MGONZA20/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MGONZA20', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MGONZA20/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('MGONZA20', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998904', sysdate, null); -- Inserting RoleToUserAssignment 'MGONZA20/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MGONZA20', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MGONZA20/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('MGONZA20', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998904', sysdate, null); -- Inserting RoleToUserAssignment 'MGONZA20/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('MGONZA20', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MGONZA20/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('MGONZA20', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11805/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MGOUTIER/H_EFS2_LOC_EDIT' harmony.usermgt.create_role_to_user_assignment('MGOUTIER', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MGOUTIER/H_EFS2_LOC_EDIT harmony.usermgt.create_dds_item_assignment('MGOUTIER', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '414', sysdate, null); -- Inserting RoleToUserAssignment 'MGOUTIER/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('MGOUTIER', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MGOUTIER/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('MGOUTIER', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[167/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MGQUINTO/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('MGQUINTO', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MGQUINTO/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('MGQUINTO', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11753/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MGQUINTO', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11342/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MGQUINTO/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('MGQUINTO', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MGQUINTO/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('MGQUINTO', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11334/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MGQUINTO/H_TPP_P2P_REPORT' harmony.usermgt.create_role_to_user_assignment('MGQUINTO', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MGQUINTO/H_TPP_P2P_REPORT harmony.usermgt.create_dds_item_assignment('MGQUINTO', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '302', sysdate, null); harmony.usermgt.create_dds_item_assignment('MGQUINTO', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '149', sysdate, null); -- Inserting RoleToUserAssignment 'MGRANDI/H_EFS2_LOC_AUTH' harmony.usermgt.create_role_to_user_assignment('MGRANDI', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MGRANDI/H_EFS2_LOC_AUTH harmony.usermgt.create_dds_item_assignment('MGRANDI', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '554', sysdate, null); -- Inserting RoleToUserAssignment 'MGREEN5/H_EFS2_LOC_EDIT' harmony.usermgt.create_role_to_user_assignment('MGREEN5', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MGREEN5/H_EFS2_LOC_EDIT harmony.usermgt.create_dds_item_assignment('MGREEN5', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '313', sysdate, null); -- Inserting RoleToUserAssignment 'MGRIERSO/H_EFS2_LOC_AUTH' harmony.usermgt.create_role_to_user_assignment('MGRIERSO', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MGRIERSO/H_EFS2_LOC_AUTH harmony.usermgt.create_dds_item_assignment('MGRIERSO', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '554', sysdate, null); harmony.usermgt.create_dds_item_assignment('MGRIERSO', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '527', sysdate, null); harmony.usermgt.create_dds_item_assignment('MGRIERSO', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '406', sysdate, null); harmony.usermgt.create_dds_item_assignment('MGRIERSO', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '402', sysdate, null); -- Inserting RoleToUserAssignment 'MGRIERSO/H_EFS2_LOC_EDIT' harmony.usermgt.create_role_to_user_assignment('MGRIERSO', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MGRIERSO/H_EFS2_LOC_EDIT harmony.usermgt.create_dds_item_assignment('MGRIERSO', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '554', sysdate, null); harmony.usermgt.create_dds_item_assignment('MGRIERSO', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '527', sysdate, null); harmony.usermgt.create_dds_item_assignment('MGRIERSO', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '406', sysdate, null); harmony.usermgt.create_dds_item_assignment('MGRIERSO', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '402', sysdate, null); -- Inserting RoleToUserAssignment 'MGRIERSO/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('MGRIERSO', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MGRIERSO/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('MGRIERSO', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11364/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MGRIERSO/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('MGRIERSO', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MGRIERSO/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('MGRIERSO', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[193/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MGRIERSO', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11336/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MHAAS4/H_EFS2_LOC_REP_PARTY' harmony.usermgt.create_role_to_user_assignment('MHAAS4', 'H_EFS2_LOC_REP_PARTY', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MHAAS4/H_EFS2_LOC_REP_PARTY harmony.usermgt.create_dds_item_assignment('MHAAS4', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '623', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHAAS4', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '430', sysdate, null); -- Inserting RoleToUserAssignment 'MHAJATIA/H_EFS2_LOC_REP_PARTY' harmony.usermgt.create_role_to_user_assignment('MHAJATIA', 'H_EFS2_LOC_REP_PARTY', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MHAJATIA/H_EFS2_LOC_REP_PARTY harmony.usermgt.create_dds_item_assignment('MHAJATIA', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '582', sysdate, null); -- Inserting RoleToUserAssignment 'MHANSON1/H_EFS2_LOC_EDIT' harmony.usermgt.create_role_to_user_assignment('MHANSON1', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MHANSON1/H_EFS2_LOC_EDIT harmony.usermgt.create_dds_item_assignment('MHANSON1', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '424', sysdate, null); -- Inserting RoleToUserAssignment 'MHARPULA/H_EFS2_LOC_EDIT' harmony.usermgt.create_role_to_user_assignment('MHARPULA', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MHARPULA/H_EFS2_LOC_EDIT harmony.usermgt.create_dds_item_assignment('MHARPULA', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '444', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHARPULA', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '443', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHARPULA', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '420', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHARPULA', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '419', sysdate, null); -- Inserting RoleToUserAssignment 'MHARPULA/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('MHARPULA', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MHARPULA/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('MHARPULA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[279/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MHARPULA/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('MHARPULA', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MHARPULA/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('MHARPULA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11182/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHARPULA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11181/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHARPULA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11180/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MHEBERT/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('MHEBERT', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MHEBERT/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('MHEBERT', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11385/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MHEBERT/H_TPP_LOC_EDIT' harmony.usermgt.create_role_to_user_assignment('MHEBERT', 'H_TPP_LOC_EDIT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MHEBERT/H_TPP_LOC_EDIT harmony.usermgt.create_dds_item_assignment('MHEBERT', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '73', sysdate, null); -- Inserting RoleToUserAssignment 'MHEGGLIN/H_EFS2_LOC_REP_PARTY' harmony.usermgt.create_role_to_user_assignment('MHEGGLIN', 'H_EFS2_LOC_REP_PARTY', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MHEGGLIN/H_EFS2_LOC_REP_PARTY harmony.usermgt.create_dds_item_assignment('MHEGGLIN', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '623', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHEGGLIN', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '430', sysdate, null); -- Inserting RoleToUserAssignment 'MHEGGLIN/H_TPP_LOC_AUTH' harmony.usermgt.create_role_to_user_assignment('MHEGGLIN', 'H_TPP_LOC_AUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MHEGGLIN/H_TPP_LOC_AUTH harmony.usermgt.create_dds_item_assignment('MHEGGLIN', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '6', sysdate, null); -- Inserting RoleToUserAssignment 'MHENNIG/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MHENNIG', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MHENNIG/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('MHENNIG', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999482', sysdate, null); -- Inserting RoleToUserAssignment 'MHENNIG/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MHENNIG', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MHENNIG/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('MHENNIG', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999482', sysdate, null); -- Inserting RoleToUserAssignment 'MHENNIG/H_EFS2_LOC_AUTH' harmony.usermgt.create_role_to_user_assignment('MHENNIG', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MHENNIG/H_EFS2_LOC_AUTH harmony.usermgt.create_dds_item_assignment('MHENNIG', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '333', sysdate, null); -- Inserting RoleToUserAssignment 'MHENNIG/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('MHENNIG', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MHENNIG/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('MHENNIG', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[207/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MHENNIG/H_TPP_LOC_AUTH' harmony.usermgt.create_role_to_user_assignment('MHENNIG', 'H_TPP_LOC_AUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MHENNIG/H_TPP_LOC_AUTH harmony.usermgt.create_dds_item_assignment('MHENNIG', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '75', sysdate, null); -- Inserting RoleToUserAssignment 'MHIEW/H_EFS2_LOC_REP_PARTY' harmony.usermgt.create_role_to_user_assignment('MHIEW', 'H_EFS2_LOC_REP_PARTY', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MHIEW/H_EFS2_LOC_REP_PARTY harmony.usermgt.create_dds_item_assignment('MHIEW', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '575', sysdate, null); -- Inserting RoleToUserAssignment 'MHILL2/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MHILL2', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MHILL2/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('MHILL2', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999273', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHILL2', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999272', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHILL2', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999090', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHILL2', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999083', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHILL2', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999058', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHILL2', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999010', sysdate, null); -- Inserting RoleToUserAssignment 'MHILL2/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MHILL2', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MHILL2/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('MHILL2', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999273', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHILL2', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999272', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHILL2', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999090', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHILL2', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999083', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHILL2', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999058', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHILL2', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999010', sysdate, null); -- Inserting RoleToUserAssignment 'MHILL2/H_EFS2_LOC_REP_PARTY' harmony.usermgt.create_role_to_user_assignment('MHILL2', 'H_EFS2_LOC_REP_PARTY', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MHILL2/H_EFS2_LOC_REP_PARTY harmony.usermgt.create_dds_item_assignment('MHILL2', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '263', sysdate, null); -- Inserting RoleToUserAssignment 'MHILL2/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('MHILL2', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MHILL2/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('MHILL2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11980/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MHIRAKAW/H_TPP_LOC_REP' harmony.usermgt.create_role_to_user_assignment('MHIRAKAW', 'H_TPP_LOC_REP', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MHIRAKAW/H_TPP_LOC_REP harmony.usermgt.create_dds_item_assignment('MHIRAKAW', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '48', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHIRAKAW', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '32', sysdate, null); -- Inserting RoleToUserAssignment 'MHLADIKO/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MHLADIKO', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MHLADIKO/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999893', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999891', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998866', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998924', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999211', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999612', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999652', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999665', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999798', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999841', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999842', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999857', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999858', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999876', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999883', sysdate, null); -- Inserting RoleToUserAssignment 'MHLADIKO/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MHLADIKO', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MHLADIKO/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999893', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999891', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998866', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998924', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999211', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999612', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999652', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999665', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999798', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999841', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999842', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999857', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999858', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999876', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999883', sysdate, null); -- Inserting RoleToUserAssignment 'MHLADIKO/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('MHLADIKO', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MHLADIKO/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11234/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MHLADIKO/H_TPP_P2P_REPORT' harmony.usermgt.create_role_to_user_assignment('MHLADIKO', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MHLADIKO/H_TPP_P2P_REPORT harmony.usermgt.create_dds_item_assignment('MHLADIKO', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '404', sysdate, null); -- Inserting RoleToUserAssignment 'MHOANG1/H_EFS2_LOC_EDIT' harmony.usermgt.create_role_to_user_assignment('MHOANG1', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MHOANG1/H_EFS2_LOC_EDIT harmony.usermgt.create_dds_item_assignment('MHOANG1', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '393', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHOANG1', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '329', sysdate, null); -- Inserting RoleToUserAssignment 'MHOFIRKO/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MHOFIRKO', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MHOFIRKO/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('MHOFIRKO', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999888', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHOFIRKO', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999887', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHOFIRKO', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999884', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHOFIRKO', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999799', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHOFIRKO', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999765', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHOFIRKO', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999751', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHOFIRKO', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999746', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHOFIRKO', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999743', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHOFIRKO', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999175', sysdate, null); -- Inserting RoleToUserAssignment 'MHOFIRKO/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MHOFIRKO', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MHOFIRKO/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('MHOFIRKO', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999888', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHOFIRKO', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999887', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHOFIRKO', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999884', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHOFIRKO', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999799', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHOFIRKO', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999765', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHOFIRKO', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999751', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHOFIRKO', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999746', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHOFIRKO', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999743', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHOFIRKO', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999175', sysdate, null); -- Inserting RoleToUserAssignment 'MHOFIRKO/H_TPP_LOC_AUTH' harmony.usermgt.create_role_to_user_assignment('MHOFIRKO', 'H_TPP_LOC_AUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MHOFIRKO/H_TPP_LOC_AUTH harmony.usermgt.create_dds_item_assignment('MHOFIRKO', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '5', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHOFIRKO', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '23', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHOFIRKO', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '21', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHOFIRKO', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '20', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHOFIRKO', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '19', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHOFIRKO', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '18', sysdate, null); -- Inserting RoleToUserAssignment 'MHOFIRKO/H_TPP_LOC_EDIT' harmony.usermgt.create_role_to_user_assignment('MHOFIRKO', 'H_TPP_LOC_EDIT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MHOFIRKO/H_TPP_LOC_EDIT harmony.usermgt.create_dds_item_assignment('MHOFIRKO', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '5', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHOFIRKO', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '23', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHOFIRKO', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '21', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHOFIRKO', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '20', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHOFIRKO', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '19', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHOFIRKO', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '18', sysdate, null); -- Inserting RoleToUserAssignment 'MHOLDENE/H_EFS2_LOC_REP_PARTY' harmony.usermgt.create_role_to_user_assignment('MHOLDENE', 'H_EFS2_LOC_REP_PARTY', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MHOLDENE/H_EFS2_LOC_REP_PARTY harmony.usermgt.create_dds_item_assignment('MHOLDENE', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '623', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHOLDENE', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '430', sysdate, null); -- Inserting RoleToUserAssignment 'MHOLLAND/H_TPP_P2P_OFFERAUTH' harmony.usermgt.create_role_to_user_assignment('MHOLLAND', 'H_TPP_P2P_OFFERAUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MHOLLAND/H_TPP_P2P_OFFERAUTH harmony.usermgt.create_dds_item_assignment('MHOLLAND', 'H_TPP_P2P_OFFERAUTH', 'TPP AP2PLE OC', 'ONE', '98', sysdate, null); harmony.usermgt.create_dds_item_assignment('MHOLLAND', 'H_TPP_P2P_OFFERAUTH', 'TPP AP2PLE OC', 'ONE', '255', sysdate, null); -- Inserting RoleToUserAssignment 'MIWABUCH/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MIWABUCH', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MIWABUCH/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('MIWABUCH', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999705', sysdate, null); -- Inserting RoleToUserAssignment 'MIWABUCH/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MIWABUCH', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MIWABUCH/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('MIWABUCH', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999705', sysdate, null); -- Inserting RoleToUserAssignment 'MIWABUCH/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('MIWABUCH', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MIWABUCH/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('MIWABUCH', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[433/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MIWABUCH/H_TPP_LOC_AUTH' harmony.usermgt.create_role_to_user_assignment('MIWABUCH', 'H_TPP_LOC_AUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MIWABUCH/H_TPP_LOC_AUTH harmony.usermgt.create_dds_item_assignment('MIWABUCH', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '363', sysdate, null); harmony.usermgt.create_dds_item_assignment('MIWABUCH', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '32', sysdate, null); -- Inserting RoleToUserAssignment 'MJACKS17/H_EFS2_LOC_REP_PARTY' harmony.usermgt.create_role_to_user_assignment('MJACKS17', 'H_EFS2_LOC_REP_PARTY', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MJACKS17/H_EFS2_LOC_REP_PARTY harmony.usermgt.create_dds_item_assignment('MJACKS17', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '461', sysdate, null); -- Inserting RoleToUserAssignment 'MJACKS17/H_TPP_P2P_REPORT' harmony.usermgt.create_role_to_user_assignment('MJACKS17', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MJACKS17/H_TPP_P2P_REPORT harmony.usermgt.create_dds_item_assignment('MJACKS17', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '186', sysdate, null); -- Inserting RoleToUserAssignment 'MJANSSEE/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('MJANSSEE', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MJANSSEE/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('MJANSSEE', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[93/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MJIMEN12/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('MJIMEN12', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MJIMEN12/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('MJIMEN12', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11805/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MJUTA/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('MJUTA', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MJUTA/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('MJUTA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[54/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MJUTA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[52/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MJUTA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[51/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MJUTA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[259/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MJUTA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[258/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MJUTA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11004/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MKATIGBA/H_EFS2_LOC_REP_PARTY' harmony.usermgt.create_role_to_user_assignment('MKATIGBA', 'H_EFS2_LOC_REP_PARTY', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MKATIGBA/H_EFS2_LOC_REP_PARTY harmony.usermgt.create_dds_item_assignment('MKATIGBA', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '309', sysdate, null); -- Inserting RoleToUserAssignment 'MKHAWAM/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('MKHAWAM', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MKHAWAM/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('MKHAWAM', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11666/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MKIM22/H_EFS2_LOC_AUTH' harmony.usermgt.create_role_to_user_assignment('MKIM22', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MKIM22/H_EFS2_LOC_AUTH harmony.usermgt.create_dds_item_assignment('MKIM22', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '389', sysdate, null); -- Inserting RoleToUserAssignment 'MKIRIKMA/BAM_REPORTER' harmony.usermgt.create_role_to_user_assignment('MKIRIKMA', 'BAM_REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MKIRIKMA/BAM_REPORTER harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'BAM_REPORTER', 'BAM Region', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MKIRIKMA/HB_FM_COMBI_REQUEST' harmony.usermgt.create_role_to_user_assignment('MKIRIKMA', 'HB_FM_COMBI_REQUEST', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MKIRIKMA/HERMES_CMEFF_REP_CTR' harmony.usermgt.create_role_to_user_assignment('MKIRIKMA', 'HERMES_CMEFF_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MKIRIKMA/HERMES_CMEFF_REP_CTR harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'HERMES_CMEFF_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MKIRIKMA/HERMES_GRP_REP_CTR' harmony.usermgt.create_role_to_user_assignment('MKIRIKMA', 'HERMES_GRP_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MKIRIKMA/HERMES_GRP_REP_CTR harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'HERMES_GRP_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MKIRIKMA/HERMES_IDTXN_REP_CTR' harmony.usermgt.create_role_to_user_assignment('MKIRIKMA', 'HERMES_IDTXN_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MKIRIKMA/HERMES_IDTXN_REP_CTR harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'HERMES_IDTXN_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MKIRIKMA/HERMES_STAT_REP_CTR' harmony.usermgt.create_role_to_user_assignment('MKIRIKMA', 'HERMES_STAT_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MKIRIKMA/HERMES_STAT_REP_CTR harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'HERMES_STAT_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MKIRIKMA/HERMES_STS_REP_CTR' harmony.usermgt.create_role_to_user_assignment('MKIRIKMA', 'HERMES_STS_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MKIRIKMA/HERMES_STS_REP_CTR harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'HERMES_STS_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MKIRIKMA/HERMES_SYM_REC_CTR' harmony.usermgt.create_role_to_user_assignment('MKIRIKMA', 'HERMES_SYM_REC_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MKIRIKMA/HERMES_SYM_REC_CTR harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'HERMES_SYM_REC_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MKIRIKMA/HERMES_TXN_REP_CTR' harmony.usermgt.create_role_to_user_assignment('MKIRIKMA', 'HERMES_TXN_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MKIRIKMA/HERMES_TXN_REP_CTR harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'HERMES_TXN_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MKIRIKMA/HERMES_VAVO_REP_CTR' harmony.usermgt.create_role_to_user_assignment('MKIRIKMA', 'HERMES_VAVO_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MKIRIKMA/HERMES_VAVO_REP_CTR harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'HERMES_VAVO_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MKIRIKMA/H_BANKDIR_BO_USER' harmony.usermgt.create_role_to_user_assignment('MKIRIKMA', 'H_BANKDIR_BO_USER', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MKIRIKMA/H_COMMONS_BO_USER' harmony.usermgt.create_role_to_user_assignment('MKIRIKMA', 'H_COMMONS_BO_USER', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MKIRIKMA/H_DLINK_BO_USER' harmony.usermgt.create_role_to_user_assignment('MKIRIKMA', 'H_DLINK_BO_USER', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MKIRIKMA/H_DLINK_REPORTING' harmony.usermgt.create_role_to_user_assignment('MKIRIKMA', 'H_DLINK_REPORTING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MKIRIKMA/H_EFS2_BO_USER' harmony.usermgt.create_role_to_user_assignment('MKIRIKMA', 'H_EFS2_BO_USER', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MKIRIKMA/H_NETTING_BO_USER' harmony.usermgt.create_role_to_user_assignment('MKIRIKMA', 'H_NETTING_BO_USER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MKIRIKMA/H_NETTING_BO_USER harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'H_NETTING_BO_USER', 'Treasury Center Netting Participant', 'ONE', '[7/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'H_NETTING_BO_USER', 'Treasury Center Netting Participant', 'ONE', '[5/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'H_NETTING_BO_USER', 'Treasury Center Netting Participant', 'ONE', '[233/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'H_NETTING_BO_USER', 'Treasury Center Netting Participant', 'ONE', '[223/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'H_NETTING_BO_USER', 'Treasury Center Netting Participant', 'ONE', '[222/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'H_NETTING_BO_USER', 'Treasury Center Netting Participant', 'ONE', '[11486/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'H_NETTING_BO_USER', 'Treasury Center Netting Participant', 'ONE', '[11120/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'H_NETTING_BO_USER', 'Treasury Center Netting Participant', 'ONE', '[1/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MKIRIKMA/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('MKIRIKMA', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MKIRIKMA/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[93/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[254/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[142/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11419/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11356/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11347/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11212/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MKIRIKMA/H_NETTING_LOC_REP_TC' harmony.usermgt.create_role_to_user_assignment('MKIRIKMA', 'H_NETTING_LOC_REP_TC', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MKIRIKMA/H_NETTING_LOC_REP_TC harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[7/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[233/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[223/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[222/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[11486/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[11120/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MKIRIKMA/H_SWIFTCOM_RELEASER' harmony.usermgt.create_role_to_user_assignment('MKIRIKMA', 'H_SWIFTCOM_RELEASER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MKIRIKMA/H_SWIFTCOM_RELEASER harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '15', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '14', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '13', sysdate, null); -- Inserting RoleToUserAssignment 'MKIRIKMA/H_SWIFTCOM_REPORTER' harmony.usermgt.create_role_to_user_assignment('MKIRIKMA', 'H_SWIFTCOM_REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MKIRIKMA/H_SWIFTCOM_REPORTER harmony.usermgt.create_dds_item_assignment('MKIRIKMA', 'H_SWIFTCOM_REPORTER', 'SWIFTCOM FM Source', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MKIRIKMA/H_TOPS_BO_USER' harmony.usermgt.create_role_to_user_assignment('MKIRIKMA', 'H_TOPS_BO_USER', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MKIRIKMA/H_TPP_BO_USER' harmony.usermgt.create_role_to_user_assignment('MKIRIKMA', 'H_TPP_BO_USER', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MKODEJS2/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('MKODEJS2', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MKODEJS2/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('MKODEJS2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11327/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKODEJS2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11178/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKODEJS2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11194/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKODEJS2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11195/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKODEJS2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11216/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKODEJS2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11217/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKODEJS2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11218/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKODEJS2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11230/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKODEJS2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11232/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKODEJS2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11233/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKODEJS2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11234/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKODEJS2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11235/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKODEJS2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11237/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKODEJS2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11260/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MKUHN3/H_EFS2_LOC_EDIT' harmony.usermgt.create_role_to_user_assignment('MKUHN3', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MKUHN3/H_EFS2_LOC_EDIT harmony.usermgt.create_dds_item_assignment('MKUHN3', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '701', sysdate, null); -- Inserting RoleToUserAssignment 'MKULINA/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('MKULINA', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MKULINA/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('MKULINA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11330/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MKURTZ2/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('MKURTZ2', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MKURTZ2/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('MKURTZ2', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11838/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKURTZ2', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11837/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKURTZ2', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11836/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKURTZ2', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11835/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKURTZ2', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11833/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MKWIKERT/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MKWIKERT', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MKWIKERT/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('MKWIKERT', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999347', sysdate, null); -- Inserting RoleToUserAssignment 'MKWIKERT/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MKWIKERT', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MKWIKERT/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('MKWIKERT', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999347', sysdate, null); -- Inserting RoleToUserAssignment 'MKWIKERT/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('MKWIKERT', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MKWIKERT/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('MKWIKERT', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11285/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKWIKERT', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11281/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKWIKERT', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11280/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MKWIKERT', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11082/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MLATIF1/BAM_MANAGER' harmony.usermgt.create_role_to_user_assignment('MLATIF1', 'BAM_MANAGER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MLATIF1/BAM_MANAGER harmony.usermgt.create_dds_item_assignment('MLATIF1', 'BAM_MANAGER', 'BAM Region', 'ONE', '4', sysdate, null); -- Inserting RoleToUserAssignment 'MLATIF1/BAM_REPORTER' harmony.usermgt.create_role_to_user_assignment('MLATIF1', 'BAM_REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MLATIF1/BAM_REPORTER harmony.usermgt.create_dds_item_assignment('MLATIF1', 'BAM_REPORTER', 'BAM Region', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MLATIF1/HERMES_CMEFF_REP_CTR' harmony.usermgt.create_role_to_user_assignment('MLATIF1', 'HERMES_CMEFF_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MLATIF1/HERMES_CMEFF_REP_CTR harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HERMES_CMEFF_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MLATIF1/HERMES_GRP_REP_CTR' harmony.usermgt.create_role_to_user_assignment('MLATIF1', 'HERMES_GRP_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MLATIF1/HERMES_GRP_REP_CTR harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HERMES_GRP_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MLATIF1/HERMES_IDTXN_REP_CTR' harmony.usermgt.create_role_to_user_assignment('MLATIF1', 'HERMES_IDTXN_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MLATIF1/HERMES_IDTXN_REP_CTR harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HERMES_IDTXN_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MLATIF1/HERMES_STAT_REP_CTR' harmony.usermgt.create_role_to_user_assignment('MLATIF1', 'HERMES_STAT_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MLATIF1/HERMES_STAT_REP_CTR harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HERMES_STAT_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MLATIF1/HERMES_STS_REP_CTR' harmony.usermgt.create_role_to_user_assignment('MLATIF1', 'HERMES_STS_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MLATIF1/HERMES_STS_REP_CTR harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HERMES_STS_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MLATIF1/HERMES_SYM_REC_CTR' harmony.usermgt.create_role_to_user_assignment('MLATIF1', 'HERMES_SYM_REC_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MLATIF1/HERMES_SYM_REC_CTR harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HERMES_SYM_REC_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MLATIF1/HERMES_TXN_REP_CTR' harmony.usermgt.create_role_to_user_assignment('MLATIF1', 'HERMES_TXN_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MLATIF1/HERMES_TXN_REP_CTR harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HERMES_TXN_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MLATIF1/HERMES_VAVO_REP_CTR' harmony.usermgt.create_role_to_user_assignment('MLATIF1', 'HERMES_VAVO_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MLATIF1/HERMES_VAVO_REP_CTR harmony.usermgt.create_dds_item_assignment('MLATIF1', 'HERMES_VAVO_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MLATIF1/H_EFS2_CTR_REP' harmony.usermgt.create_role_to_user_assignment('MLATIF1', 'H_EFS2_CTR_REP', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MLATIF1/H_NETTING_CTR_REP' harmony.usermgt.create_role_to_user_assignment('MLATIF1', 'H_NETTING_CTR_REP', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MLATIF1/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('MLATIF1', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MLATIF1/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('MLATIF1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[85/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[84/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[436/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[433/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[432/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11102/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11360/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11380/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[124/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[150/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[151/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[181/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[249/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[250/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[251/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[412/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[413/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[423/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MLATIF1/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('MLATIF1', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MLATIF1/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('MLATIF1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MLATIF1/H_NETTING_LOC_REP_TC' harmony.usermgt.create_role_to_user_assignment('MLATIF1', 'H_NETTING_LOC_REP_TC', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MLATIF1/H_NETTING_LOC_REP_TC harmony.usermgt.create_dds_item_assignment('MLATIF1', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MLATIF1/H_SWIFTCOM_REPORTER' harmony.usermgt.create_role_to_user_assignment('MLATIF1', 'H_SWIFTCOM_REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MLATIF1/H_SWIFTCOM_REPORTER harmony.usermgt.create_dds_item_assignment('MLATIF1', 'H_SWIFTCOM_REPORTER', 'SWIFTCOM FM Source', 'ONE', '18', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'H_SWIFTCOM_REPORTER', 'SWIFTCOM FM Source', 'ONE', '17', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'H_SWIFTCOM_REPORTER', 'SWIFTCOM FM Source', 'ONE', '16', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'H_SWIFTCOM_REPORTER', 'SWIFTCOM FM Source', 'ONE', '14', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLATIF1', 'H_SWIFTCOM_REPORTER', 'SWIFTCOM FM Source', 'ONE', '13', sysdate, null); -- Inserting RoleToUserAssignment 'MLATIF1/H_TOPS_CNTRP_EXP_REP' harmony.usermgt.create_role_to_user_assignment('MLATIF1', 'H_TOPS_CNTRP_EXP_REP', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MLATIF1/H_TPP_CTR_REP' harmony.usermgt.create_role_to_user_assignment('MLATIF1', 'H_TPP_CTR_REP', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MLEBOURG/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MLEBOURG', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MLEBOURG/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('MLEBOURG', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999518', sysdate, null); -- Inserting RoleToUserAssignment 'MLEBOURG/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MLEBOURG', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MLEBOURG/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('MLEBOURG', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999518', sysdate, null); -- Inserting RoleToUserAssignment 'MLEBOURG/H_EFS2_LOC_AUTH' harmony.usermgt.create_role_to_user_assignment('MLEBOURG', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MLEBOURG/H_EFS2_LOC_AUTH harmony.usermgt.create_dds_item_assignment('MLEBOURG', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '365', sysdate, null); -- Inserting RoleToUserAssignment 'MLEBOURG/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('MLEBOURG', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MLEBOURG/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('MLEBOURG', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[107/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MLEBOURG/H_TPP_LOC_AUTH' harmony.usermgt.create_role_to_user_assignment('MLEBOURG', 'H_TPP_LOC_AUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MLEBOURG/H_TPP_LOC_AUTH harmony.usermgt.create_dds_item_assignment('MLEBOURG', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '25', sysdate, null); -- Inserting RoleToUserAssignment 'MLEBOURG/H_TPP_P2P_REPORT' harmony.usermgt.create_role_to_user_assignment('MLEBOURG', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MLEBOURG/H_TPP_P2P_REPORT harmony.usermgt.create_dds_item_assignment('MLEBOURG', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '118', sysdate, null); -- Inserting RoleToUserAssignment 'MLEITAO/H_EFS2_LOC_AUTH' harmony.usermgt.create_role_to_user_assignment('MLEITAO', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MLEITAO/H_EFS2_LOC_AUTH harmony.usermgt.create_dds_item_assignment('MLEITAO', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '400', sysdate, null); -- Inserting RoleToUserAssignment 'MLIM13/H_EFS2_LOC_EDIT' harmony.usermgt.create_role_to_user_assignment('MLIM13', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MLIM13/H_EFS2_LOC_EDIT harmony.usermgt.create_dds_item_assignment('MLIM13', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '620', sysdate, null); -- Inserting RoleToUserAssignment 'MLIM13/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('MLIM13', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MLIM13/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('MLIM13', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11993/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MLIM13', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11623/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MLPARODI/H_EFS2_LOC_AUTH' harmony.usermgt.create_role_to_user_assignment('MLPARODI', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MLPARODI/H_EFS2_LOC_AUTH harmony.usermgt.create_dds_item_assignment('MLPARODI', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '527', sysdate, null); -- Inserting RoleToUserAssignment 'MLUM/H_EFS2_LOC_AUTH' harmony.usermgt.create_role_to_user_assignment('MLUM', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MLUM/H_EFS2_LOC_AUTH harmony.usermgt.create_dds_item_assignment('MLUM', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '640', sysdate, null); -- Inserting RoleToUserAssignment 'MLUM/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('MLUM', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MLUM/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('MLUM', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11681/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MLUM/H_TPP_LOC_AUTH' harmony.usermgt.create_role_to_user_assignment('MLUM', 'H_TPP_LOC_AUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MLUM/H_TPP_LOC_AUTH harmony.usermgt.create_dds_item_assignment('MLUM', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '304', sysdate, null); -- Inserting RoleToUserAssignment 'MLYNGSIE/H_TPP_P2P_OFFERAUTH' harmony.usermgt.create_role_to_user_assignment('MLYNGSIE', 'H_TPP_P2P_OFFERAUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MLYNGSIE/H_TPP_P2P_OFFERAUTH harmony.usermgt.create_dds_item_assignment('MLYNGSIE', 'H_TPP_P2P_OFFERAUTH', 'TPP AP2PLE OC', 'ONE', '188', sysdate, null); -- Inserting RoleToUserAssignment 'MMAGSIGA/H_TPP_LOC_EDIT' harmony.usermgt.create_role_to_user_assignment('MMAGSIGA', 'H_TPP_LOC_EDIT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MMAGSIGA/H_TPP_LOC_EDIT harmony.usermgt.create_dds_item_assignment('MMAGSIGA', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '77', sysdate, null); harmony.usermgt.create_dds_item_assignment('MMAGSIGA', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '76', sysdate, null); -- Inserting RoleToUserAssignment 'MMAJERNI/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MMAJERNI', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MMAJERNI/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('MMAJERNI', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999884', sysdate, null); harmony.usermgt.create_dds_item_assignment('MMAJERNI', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999843', sysdate, null); harmony.usermgt.create_dds_item_assignment('MMAJERNI', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999751', sysdate, null); harmony.usermgt.create_dds_item_assignment('MMAJERNI', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999746', sysdate, null); harmony.usermgt.create_dds_item_assignment('MMAJERNI', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999003', sysdate, null); -- Inserting RoleToUserAssignment 'MMAJERNI/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MMAJERNI', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MMAJERNI/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('MMAJERNI', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999884', sysdate, null); harmony.usermgt.create_dds_item_assignment('MMAJERNI', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999843', sysdate, null); harmony.usermgt.create_dds_item_assignment('MMAJERNI', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999751', sysdate, null); harmony.usermgt.create_dds_item_assignment('MMAJERNI', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999746', sysdate, null); harmony.usermgt.create_dds_item_assignment('MMAJERNI', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999003', sysdate, null); -- Inserting RoleToUserAssignment 'MMAJOROS/H_TPP_LOC_AUTH' harmony.usermgt.create_role_to_user_assignment('MMAJOROS', 'H_TPP_LOC_AUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MMAJOROS/H_TPP_LOC_AUTH harmony.usermgt.create_dds_item_assignment('MMAJOROS', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '107', sysdate, null); -- Inserting RoleToUserAssignment 'MMALMASS/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MMALMASS', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MMALMASS/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('MMALMASS', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999662', sysdate, null); harmony.usermgt.create_dds_item_assignment('MMALMASS', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999203', sysdate, null); harmony.usermgt.create_dds_item_assignment('MMALMASS', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998979', sysdate, null); -- Inserting RoleToUserAssignment 'MMALMASS/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MMALMASS', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MMALMASS/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('MMALMASS', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999662', sysdate, null); harmony.usermgt.create_dds_item_assignment('MMALMASS', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999203', sysdate, null); harmony.usermgt.create_dds_item_assignment('MMALMASS', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998979', sysdate, null); -- Inserting RoleToUserAssignment 'MMANANSA/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('MMANANSA', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MMANANSA/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('MMANANSA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[124/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MMANANSA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11380/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MMANANSA/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('MMANANSA', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MMANANSA/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('MMANANSA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[122/CC]', sysdate, null); -- Inserting RoleToUserAssignment 'MMANEA/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MMANEA', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MMANEA/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('MMANEA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998970', sysdate, null); -- Inserting RoleToUserAssignment 'MMANEA/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MMANEA', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MMANEA/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('MMANEA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998970', sysdate, null); -- Inserting RoleToUserAssignment 'MMANEA/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('MMANEA', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MMANEA/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('MMANEA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11930/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MMANEA/H_TPP_P2P_REPORT' harmony.usermgt.create_role_to_user_assignment('MMANEA', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MMANEA/H_TPP_P2P_REPORT harmony.usermgt.create_dds_item_assignment('MMANEA', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '366', sysdate, null); -- Inserting RoleToUserAssignment 'MMANFRIN/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MMANFRIN', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MMANFRIN/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('MMANFRIN', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999469', sysdate, null); -- Inserting RoleToUserAssignment 'MMANFRIN/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MMANFRIN', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MMANFRIN/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('MMANFRIN', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999469', sysdate, null); -- Inserting RoleToUserAssignment 'MMARBELL/H_EFS2_LOC_REP_PARTY' harmony.usermgt.create_role_to_user_assignment('MMARBELL', 'H_EFS2_LOC_REP_PARTY', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MMARBELL/H_EFS2_LOC_REP_PARTY harmony.usermgt.create_dds_item_assignment('MMARBELL', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '674', sysdate, null); -- Inserting RoleToUserAssignment 'MMARTELL/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MMARTELL', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MMARTELL/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('MMARTELL', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999469', sysdate, null); harmony.usermgt.create_dds_item_assignment('MMARTELL', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999381', sysdate, null); -- Inserting RoleToUserAssignment 'MMARTELL/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MMARTELL', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MMARTELL/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('MMARTELL', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999469', sysdate, null); harmony.usermgt.create_dds_item_assignment('MMARTELL', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999381', sysdate, null); -- Inserting RoleToUserAssignment 'MMARTELL/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('MMARTELL', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MMARTELL/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('MMARTELL', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[144/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MMARTELL/H_TPP_LOC_AUTH' harmony.usermgt.create_role_to_user_assignment('MMARTELL', 'H_TPP_LOC_AUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MMARTELL/H_TPP_LOC_AUTH harmony.usermgt.create_dds_item_assignment('MMARTELL', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '64', sysdate, null); -- Inserting RoleToUserAssignment 'MMARTELL/H_TPP_P2P_REPORT' harmony.usermgt.create_role_to_user_assignment('MMARTELL', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MMARTELL/H_TPP_P2P_REPORT harmony.usermgt.create_dds_item_assignment('MMARTELL', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '92', sysdate, null); harmony.usermgt.create_dds_item_assignment('MMARTELL', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '127', sysdate, null); harmony.usermgt.create_dds_item_assignment('MMARTELL', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '126', sysdate, null); -- Inserting RoleToUserAssignment 'MMARTI45/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('MMARTI45', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MMARTI45/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('MMARTI45', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11652/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MMARTI97/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('MMARTI97', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MMARTI97/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('MMARTI97', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11630/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MMASKOVA/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MMASKOVA', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MMASKOVA/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('MMASKOVA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999843', sysdate, null); harmony.usermgt.create_dds_item_assignment('MMASKOVA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999746', sysdate, null); harmony.usermgt.create_dds_item_assignment('MMASKOVA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999003', sysdate, null); -- Inserting RoleToUserAssignment 'MMASKOVA/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MMASKOVA', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MMASKOVA/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('MMASKOVA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999843', sysdate, null); harmony.usermgt.create_dds_item_assignment('MMASKOVA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999746', sysdate, null); harmony.usermgt.create_dds_item_assignment('MMASKOVA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999003', sysdate, null); -- Inserting RoleToUserAssignment 'MMATASOV/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('MMATASOV', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MMATASOV/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('MMATASOV', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[146/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MMCKINN1/H_EFS2_LOC_AUTH' harmony.usermgt.create_role_to_user_assignment('MMCKINN1', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MMCKINN1/H_EFS2_LOC_AUTH harmony.usermgt.create_dds_item_assignment('MMCKINN1', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '701', sysdate, null); -- Inserting RoleToUserAssignment 'MMCVEA/H_EFS2_LOC_EDIT' harmony.usermgt.create_role_to_user_assignment('MMCVEA', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MMCVEA/H_EFS2_LOC_EDIT harmony.usermgt.create_dds_item_assignment('MMCVEA', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '281', sysdate, null); -- Inserting RoleToUserAssignment 'MMENDO29/H_EFS2_LOC_REP_PARTY' harmony.usermgt.create_role_to_user_assignment('MMENDO29', 'H_EFS2_LOC_REP_PARTY', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MMENDO29/H_EFS2_LOC_REP_PARTY harmony.usermgt.create_dds_item_assignment('MMENDO29', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '369', sysdate, null); harmony.usermgt.create_dds_item_assignment('MMENDO29', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '367', sysdate, null); -- Inserting RoleToUserAssignment 'MMENDO29/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('MMENDO29', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MMENDO29/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('MMENDO29', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[422/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MMENDO29', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[164/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MMILLER6/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MMILLER6', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MMILLER6/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('MMILLER6', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999796', sysdate, null); -- Inserting RoleToUserAssignment 'MMILLER6/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MMILLER6', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MMILLER6/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('MMILLER6', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999796', sysdate, null); -- Inserting RoleToUserAssignment 'MMILLER6/H_TPP_P2P_REPORT' harmony.usermgt.create_role_to_user_assignment('MMILLER6', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MMILLER6/H_TPP_P2P_REPORT harmony.usermgt.create_dds_item_assignment('MMILLER6', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '342', sysdate, null); -- Inserting RoleToUserAssignment 'MMITIDIE/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MMITIDIE', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MMITIDIE/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('MMITIDIE', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999872', sysdate, null); -- Inserting RoleToUserAssignment 'MMITIDIE/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MMITIDIE', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MMITIDIE/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('MMITIDIE', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999872', sysdate, null); -- Inserting RoleToUserAssignment 'MMITIDIE/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('MMITIDIE', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MMITIDIE/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('MMITIDIE', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[147/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MMITIDIE/H_TPP_P2P_REPORT' harmony.usermgt.create_role_to_user_assignment('MMITIDIE', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MMITIDIE/H_TPP_P2P_REPORT harmony.usermgt.create_dds_item_assignment('MMITIDIE', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '273', sysdate, null); -- Inserting RoleToUserAssignment 'MMOEK/H_TPP_LOC_AUTH' harmony.usermgt.create_role_to_user_assignment('MMOEK', 'H_TPP_LOC_AUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MMOEK/H_TPP_LOC_AUTH harmony.usermgt.create_dds_item_assignment('MMOEK', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '23', sysdate, null); harmony.usermgt.create_dds_item_assignment('MMOEK', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '22', sysdate, null); harmony.usermgt.create_dds_item_assignment('MMOEK', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '21', sysdate, null); harmony.usermgt.create_dds_item_assignment('MMOEK', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '19', sysdate, null); harmony.usermgt.create_dds_item_assignment('MMOEK', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '18', sysdate, null); harmony.usermgt.create_dds_item_assignment('MMOEK', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '17', sysdate, null); -- Inserting RoleToUserAssignment 'MMOLLIC2/H_TPP_LOC_REP' harmony.usermgt.create_role_to_user_assignment('MMOLLIC2', 'H_TPP_LOC_REP', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MMOLLIC2/H_TPP_LOC_REP harmony.usermgt.create_dds_item_assignment('MMOLLIC2', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '72', sysdate, null); -- Inserting RoleToUserAssignment 'MMUELL10/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MMUELL10', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MMUELL10/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('MMUELL10', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999412', sysdate, null); -- Inserting RoleToUserAssignment 'MMUELL10/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MMUELL10', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MMUELL10/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('MMUELL10', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999412', sysdate, null); -- Inserting RoleToUserAssignment 'MMUELL10/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('MMUELL10', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MMUELL10/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('MMUELL10', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[237/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MMUIZNI2/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MMUIZNI2', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MMUIZNI2/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('MMUIZNI2', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998999', sysdate, null); -- Inserting RoleToUserAssignment 'MMUIZNI2/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MMUIZNI2', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MMUIZNI2/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('MMUIZNI2', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998999', sysdate, null); -- Inserting RoleToUserAssignment 'MNANOLA/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MNANOLA', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MNANOLA/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('MNANOLA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999392', sysdate, null); harmony.usermgt.create_dds_item_assignment('MNANOLA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999391', sysdate, null); -- Inserting RoleToUserAssignment 'MNANOLA/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MNANOLA', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MNANOLA/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('MNANOLA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999392', sysdate, null); harmony.usermgt.create_dds_item_assignment('MNANOLA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999391', sysdate, null); -- Inserting RoleToUserAssignment 'MNANOLA/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('MNANOLA', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MNANOLA/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('MNANOLA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[77/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MNANOLA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[57/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MNANOLA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[52/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MNANOLA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[42/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MNANOLA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11335/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MNANOLA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11113/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MNAVEDO/HERMES_CMEFF_REP_CTR' harmony.usermgt.create_role_to_user_assignment('MNAVEDO', 'HERMES_CMEFF_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MNAVEDO/HERMES_CMEFF_REP_CTR harmony.usermgt.create_dds_item_assignment('MNAVEDO', 'HERMES_CMEFF_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MNAVEDO/HERMES_GRP_REP_CTR' harmony.usermgt.create_role_to_user_assignment('MNAVEDO', 'HERMES_GRP_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MNAVEDO/HERMES_GRP_REP_CTR harmony.usermgt.create_dds_item_assignment('MNAVEDO', 'HERMES_GRP_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MNAVEDO/HERMES_IDTXN_REP_CTR' harmony.usermgt.create_role_to_user_assignment('MNAVEDO', 'HERMES_IDTXN_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MNAVEDO/HERMES_IDTXN_REP_CTR harmony.usermgt.create_dds_item_assignment('MNAVEDO', 'HERMES_IDTXN_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MNAVEDO/HERMES_STAT_REP_CTR' harmony.usermgt.create_role_to_user_assignment('MNAVEDO', 'HERMES_STAT_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MNAVEDO/HERMES_STAT_REP_CTR harmony.usermgt.create_dds_item_assignment('MNAVEDO', 'HERMES_STAT_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MNAVEDO/HERMES_STS_REP_CTR' harmony.usermgt.create_role_to_user_assignment('MNAVEDO', 'HERMES_STS_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MNAVEDO/HERMES_STS_REP_CTR harmony.usermgt.create_dds_item_assignment('MNAVEDO', 'HERMES_STS_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MNAVEDO/HERMES_SYM_REC_CTR' harmony.usermgt.create_role_to_user_assignment('MNAVEDO', 'HERMES_SYM_REC_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MNAVEDO/HERMES_SYM_REC_CTR harmony.usermgt.create_dds_item_assignment('MNAVEDO', 'HERMES_SYM_REC_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MNAVEDO/HERMES_TXN_REP_CTR' harmony.usermgt.create_role_to_user_assignment('MNAVEDO', 'HERMES_TXN_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MNAVEDO/HERMES_TXN_REP_CTR harmony.usermgt.create_dds_item_assignment('MNAVEDO', 'HERMES_TXN_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MNAVEDO/HERMES_VAVO_REP_CTR' harmony.usermgt.create_role_to_user_assignment('MNAVEDO', 'HERMES_VAVO_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MNAVEDO/HERMES_VAVO_REP_CTR harmony.usermgt.create_dds_item_assignment('MNAVEDO', 'HERMES_VAVO_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MNAVEDO/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('MNAVEDO', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MNAVEDO/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('MNAVEDO', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[55/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MNAVEDO', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[42/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MNAVEDO', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[41/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MNAVEDO', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[39/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MNAVEDO', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[37/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MNAVEDO', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[33/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MNAVEDO', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[32/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MNAVEDO', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[31/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MNAVEDO', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11113/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MNAVEDO', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11316/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MNAVEDO', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11343/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MNAVEDO', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11361/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MNAVEDO', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11456/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MNAVEDO', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11463/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MNAVEDO', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11480/CC]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MNAVEDO', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11605/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MNAVEDO', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11749/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MNAVEDO', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[2/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MNAVEDO', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[27/CC]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MNAVEDO', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[282/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MNAVEDO', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[284/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MNIKLECZ/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MNIKLECZ', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MNIKLECZ/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('MNIKLECZ', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999200', sysdate, null); harmony.usermgt.create_dds_item_assignment('MNIKLECZ', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998971', sysdate, null); harmony.usermgt.create_dds_item_assignment('MNIKLECZ', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998922', sysdate, null); -- Inserting RoleToUserAssignment 'MNIKLECZ/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MNIKLECZ', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MNIKLECZ/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('MNIKLECZ', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999200', sysdate, null); harmony.usermgt.create_dds_item_assignment('MNIKLECZ', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998971', sysdate, null); harmony.usermgt.create_dds_item_assignment('MNIKLECZ', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998922', sysdate, null); -- Inserting RoleToUserAssignment 'MNIKLECZ/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('MNIKLECZ', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MNIKLECZ/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('MNIKLECZ', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11184/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MNIKLECZ/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('MNIKLECZ', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MNIKLECZ/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('MNIKLECZ', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11764/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MNIKLECZ', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11695/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MNIKLECZ', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11184/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MNIKLECZ/H_TPP_P2P_REPORT' harmony.usermgt.create_role_to_user_assignment('MNIKLECZ', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MNIKLECZ/H_TPP_P2P_REPORT harmony.usermgt.create_dds_item_assignment('MNIKLECZ', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '367', sysdate, null); -- Inserting RoleToUserAssignment 'MNOBLEJA/H_TPP_LOC_REP' harmony.usermgt.create_role_to_user_assignment('MNOBLEJA', 'H_TPP_LOC_REP', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MNOBLEJA/H_TPP_LOC_REP harmony.usermgt.create_dds_item_assignment('MNOBLEJA', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '33', sysdate, null); -- Inserting RoleToUserAssignment 'MOCBENA/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('MOCBENA', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MOCBENA/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('MOCBENA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11004/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MOCBENA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11335/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MOCBENA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11556/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MOCBENA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[258/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MOCBENA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[259/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MOCBENA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[277/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MOCBENA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[51/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MOCBENA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[52/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MOCBENA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[53/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MOCBENA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[54/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MOCBENA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[57/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MOCBENA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[77/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MOCBENA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[96/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MOLSSON1/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MOLSSON1', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MOLSSON1/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('MOLSSON1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998983', sysdate, null); -- Inserting RoleToUserAssignment 'MOLSSON1/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MOLSSON1', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MOLSSON1/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('MOLSSON1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998983', sysdate, null); -- Inserting RoleToUserAssignment 'MOLSSON1/H_EFS2_LOC_AUTH' harmony.usermgt.create_role_to_user_assignment('MOLSSON1', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MOLSSON1/H_EFS2_LOC_AUTH harmony.usermgt.create_dds_item_assignment('MOLSSON1', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '647', sysdate, null); -- Inserting RoleToUserAssignment 'MOLSSON1/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('MOLSSON1', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MOLSSON1/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('MOLSSON1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11670/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MOLSSON1/H_TPP_P2P_OFFERAUTH' harmony.usermgt.create_role_to_user_assignment('MOLSSON1', 'H_TPP_P2P_OFFERAUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MOLSSON1/H_TPP_P2P_OFFERAUTH harmony.usermgt.create_dds_item_assignment('MOLSSON1', 'H_TPP_P2P_OFFERAUTH', 'TPP AP2PLE OC', 'ONE', '336', sysdate, null); harmony.usermgt.create_dds_item_assignment('MOLSSON1', 'H_TPP_P2P_OFFERAUTH', 'TPP AP2PLE OC', 'ONE', '333', sysdate, null); harmony.usermgt.create_dds_item_assignment('MOLSSON1', 'H_TPP_P2P_OFFERAUTH', 'TPP AP2PLE OC', 'ONE', '285', sysdate, null); -- Inserting RoleToUserAssignment 'MONG/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('MONG', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MONG/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('MONG', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[405/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MOOI1/H_EFS2_LOC_AUTH' harmony.usermgt.create_role_to_user_assignment('MOOI1', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MOOI1/H_EFS2_LOC_AUTH harmony.usermgt.create_dds_item_assignment('MOOI1', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '259', sysdate, null); -- Inserting RoleToUserAssignment 'MOWENS5/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MOWENS5', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MOWENS5/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('MOWENS5', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999787', sysdate, null); -- Inserting RoleToUserAssignment 'MOWENS5/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MOWENS5', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MOWENS5/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('MOWENS5', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999787', sysdate, null); -- Inserting RoleToUserAssignment 'MOWENS5/H_EFS2_LOC_EDIT' harmony.usermgt.create_role_to_user_assignment('MOWENS5', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MOWENS5/H_EFS2_LOC_EDIT harmony.usermgt.create_dds_item_assignment('MOWENS5', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '518', sysdate, null); -- Inserting RoleToUserAssignment 'MOWENS5/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('MOWENS5', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MOWENS5/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('MOWENS5', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[142/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MOWENS5', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11417/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MPANAGIO/H_TPP_LOC_EDIT' harmony.usermgt.create_role_to_user_assignment('MPANAGIO', 'H_TPP_LOC_EDIT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MPANAGIO/H_TPP_LOC_EDIT harmony.usermgt.create_dds_item_assignment('MPANAGIO', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '339', sysdate, null); -- Inserting RoleToUserAssignment 'MPARK17/H_EFS2_LOC_EDIT' harmony.usermgt.create_role_to_user_assignment('MPARK17', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MPARK17/H_EFS2_LOC_EDIT harmony.usermgt.create_dds_item_assignment('MPARK17', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '286', sysdate, null); -- Inserting RoleToUserAssignment 'MPASIA/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('MPASIA', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MPASIA/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('MPASIA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[429/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MPAULY/H_EFS2_LOC_EDIT' harmony.usermgt.create_role_to_user_assignment('MPAULY', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MPAULY/H_EFS2_LOC_EDIT harmony.usermgt.create_dds_item_assignment('MPAULY', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '262', sysdate, null); -- Inserting RoleToUserAssignment 'MPENA1/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MPENA1', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MPENA1/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('MPENA1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999850', sysdate, null); harmony.usermgt.create_dds_item_assignment('MPENA1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999158', sysdate, null); harmony.usermgt.create_dds_item_assignment('MPENA1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999155', sysdate, null); -- Inserting RoleToUserAssignment 'MPENA1/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MPENA1', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MPENA1/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('MPENA1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999850', sysdate, null); harmony.usermgt.create_dds_item_assignment('MPENA1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999158', sysdate, null); harmony.usermgt.create_dds_item_assignment('MPENA1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999155', sysdate, null); -- Inserting RoleToUserAssignment 'MPENA1/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('MPENA1', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MPENA1/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('MPENA1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[170/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MPENA1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[169/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MPENA1/H_TPP_LOC_REP' harmony.usermgt.create_role_to_user_assignment('MPENA1', 'H_TPP_LOC_REP', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MPENA1/H_TPP_LOC_REP harmony.usermgt.create_dds_item_assignment('MPENA1', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '24', sysdate, null); harmony.usermgt.create_dds_item_assignment('MPENA1', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '128', sysdate, null); -- Inserting RoleToUserAssignment 'MPENA1/H_TPP_P2P_REPORT' harmony.usermgt.create_role_to_user_assignment('MPENA1', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MPENA1/H_TPP_P2P_REPORT harmony.usermgt.create_dds_item_assignment('MPENA1', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '146', sysdate, null); harmony.usermgt.create_dds_item_assignment('MPENA1', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '132', sysdate, null); -- Inserting RoleToUserAssignment 'MPLANT/H_EFS2_LOC_AUTH' harmony.usermgt.create_role_to_user_assignment('MPLANT', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MPLANT/H_EFS2_LOC_AUTH harmony.usermgt.create_dds_item_assignment('MPLANT', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '413', sysdate, null); -- Inserting RoleToUserAssignment 'MPLANT/H_EFS2_LOC_EDIT' harmony.usermgt.create_role_to_user_assignment('MPLANT', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MPLANT/H_EFS2_LOC_EDIT harmony.usermgt.create_dds_item_assignment('MPLANT', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '413', sysdate, null); -- Inserting RoleToUserAssignment 'MPLANT/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('MPLANT', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MPLANT/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('MPLANT', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[166/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MPOLAK/H_EFS2_LOC_EDIT' harmony.usermgt.create_role_to_user_assignment('MPOLAK', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MPOLAK/H_EFS2_LOC_EDIT harmony.usermgt.create_dds_item_assignment('MPOLAK', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '642', sysdate, null); -- Inserting RoleToUserAssignment 'MPOLAK/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('MPOLAK', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MPOLAK/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('MPOLAK', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11682/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MPOLAK/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('MPOLAK', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MPOLAK/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('MPOLAK', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11682/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MPOSADA/H_TPP_LOC_AUTH' harmony.usermgt.create_role_to_user_assignment('MPOSADA', 'H_TPP_LOC_AUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MPOSADA/H_TPP_LOC_AUTH harmony.usermgt.create_dds_item_assignment('MPOSADA', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '24', sysdate, null); -- Inserting RoleToUserAssignment 'MQUINON/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('MQUINON', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MQUINON/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('MQUINON', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11316/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MQUITAL1/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MQUITAL1', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MQUITAL1/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999872', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999864', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999847', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999745', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999714', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999683', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999666', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '100057', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '200010', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998926', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998966', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998972', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998973', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999111', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999327', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999364', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999382', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999410', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999417', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999427', sysdate, null); -- Inserting RoleToUserAssignment 'MQUITAL1/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MQUITAL1', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MQUITAL1/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999872', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999864', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999847', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999745', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999714', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999683', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999666', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '100057', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '200010', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998926', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998966', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998972', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998973', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999111', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999327', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999364', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999382', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999410', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999417', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999427', sysdate, null); -- Inserting RoleToUserAssignment 'MQUITAL1/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('MQUITAL1', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MQUITAL1/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[439/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[344/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[168/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[147/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11699/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11697/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11582/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11349/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11342/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MQUITAL1/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('MQUITAL1', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MQUITAL1/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[344/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[168/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11761/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11342/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11334/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[108/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MQUITAL1/H_TPP_LOC_REP' harmony.usermgt.create_role_to_user_assignment('MQUITAL1', 'H_TPP_LOC_REP', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MQUITAL1/H_TPP_LOC_REP harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '71', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '29', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '233', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '195', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '14', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '13', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '12', sysdate, null); -- Inserting RoleToUserAssignment 'MQUITAL1/H_TPP_P2P_REPORT' harmony.usermgt.create_role_to_user_assignment('MQUITAL1', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MQUITAL1/H_TPP_P2P_REPORT harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '329', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '328', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '327', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '302', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '276', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '273', sysdate, null); harmony.usermgt.create_dds_item_assignment('MQUITAL1', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '150', sysdate, null); -- Inserting RoleToUserAssignment 'MRACINE/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('MRACINE', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MRACINE/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('MRACINE', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11847/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRACINE', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11846/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRACINE', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11843/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRACINE', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11841/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MRAGHOEN/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('MRAGHOEN', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MRAGHOEN/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('MRAGHOEN', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11713/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MRAMOS41/BAM_MANAGER' harmony.usermgt.create_role_to_user_assignment('MRAMOS41', 'BAM_MANAGER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MRAMOS41/BAM_MANAGER harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'BAM_MANAGER', 'BAM Region', 'ONE', '3', sysdate, null); -- Inserting RoleToUserAssignment 'MRAMOS41/BAM_REPORTER' harmony.usermgt.create_role_to_user_assignment('MRAMOS41', 'BAM_REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MRAMOS41/BAM_REPORTER harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'BAM_REPORTER', 'BAM Region', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MRAMOS41/HERMES_CMEFF_REP_CTR' harmony.usermgt.create_role_to_user_assignment('MRAMOS41', 'HERMES_CMEFF_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MRAMOS41/HERMES_CMEFF_REP_CTR harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HERMES_CMEFF_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MRAMOS41/HERMES_GRP_REP_CTR' harmony.usermgt.create_role_to_user_assignment('MRAMOS41', 'HERMES_GRP_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MRAMOS41/HERMES_GRP_REP_CTR harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HERMES_GRP_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MRAMOS41/HERMES_STAT_REP_CTR' harmony.usermgt.create_role_to_user_assignment('MRAMOS41', 'HERMES_STAT_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MRAMOS41/HERMES_STAT_REP_CTR harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HERMES_STAT_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MRAMOS41/HERMES_STS_REP_CTR' harmony.usermgt.create_role_to_user_assignment('MRAMOS41', 'HERMES_STS_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MRAMOS41/HERMES_STS_REP_CTR harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HERMES_STS_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MRAMOS41/HERMES_SYM_REC_CTR' harmony.usermgt.create_role_to_user_assignment('MRAMOS41', 'HERMES_SYM_REC_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MRAMOS41/HERMES_SYM_REC_CTR harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HERMES_SYM_REC_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MRAMOS41/HERMES_TXN_REP_CTR' harmony.usermgt.create_role_to_user_assignment('MRAMOS41', 'HERMES_TXN_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MRAMOS41/HERMES_TXN_REP_CTR harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HERMES_TXN_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MRAMOS41/HERMES_VAVO_REP_CTR' harmony.usermgt.create_role_to_user_assignment('MRAMOS41', 'HERMES_VAVO_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MRAMOS41/HERMES_VAVO_REP_CTR harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'HERMES_VAVO_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MRAMOS41/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('MRAMOS41', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MRAMOS41/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11100/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11085/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MRAMOS41/H_SWIFTCOM_REPORTER' harmony.usermgt.create_role_to_user_assignment('MRAMOS41', 'H_SWIFTCOM_REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MRAMOS41/H_SWIFTCOM_REPORTER harmony.usermgt.create_dds_item_assignment('MRAMOS41', 'H_SWIFTCOM_REPORTER', 'SWIFTCOM FM Source', 'ONE', '13', sysdate, null); -- Inserting RoleToUserAssignment 'MRAMOS41/H_TOPS_CNTRP_EXP_REP' harmony.usermgt.create_role_to_user_assignment('MRAMOS41', 'H_TOPS_CNTRP_EXP_REP', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MREINDLO/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('MREINDLO', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MREINDLO/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('MREINDLO', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11327/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MREINDLO', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11178/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MREINDLO', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11194/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MREINDLO', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11195/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MREINDLO', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11216/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MREINDLO', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11217/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MREINDLO', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11218/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MREINDLO', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11230/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MREINDLO', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11232/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MREINDLO', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11233/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MREINDLO', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11234/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MREINDLO', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11235/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MREINDLO', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11237/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MREINDLO', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11260/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MREINDLO/H_TPP_P2P_REPORT' harmony.usermgt.create_role_to_user_assignment('MREINDLO', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MREINDLO/H_TPP_P2P_REPORT harmony.usermgt.create_dds_item_assignment('MREINDLO', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '406', sysdate, null); harmony.usermgt.create_dds_item_assignment('MREINDLO', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '405', sysdate, null); harmony.usermgt.create_dds_item_assignment('MREINDLO', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '404', sysdate, null); harmony.usermgt.create_dds_item_assignment('MREINDLO', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '395', sysdate, null); harmony.usermgt.create_dds_item_assignment('MREINDLO', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '392', sysdate, null); harmony.usermgt.create_dds_item_assignment('MREINDLO', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '391', sysdate, null); harmony.usermgt.create_dds_item_assignment('MREINDLO', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '390', sysdate, null); harmony.usermgt.create_dds_item_assignment('MREINDLO', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '389', sysdate, null); harmony.usermgt.create_dds_item_assignment('MREINDLO', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '388', sysdate, null); harmony.usermgt.create_dds_item_assignment('MREINDLO', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '387', sysdate, null); -- Inserting RoleToUserAssignment 'MREINOVA/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MREINOVA', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MREINOVA/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('MREINOVA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999863', sysdate, null); harmony.usermgt.create_dds_item_assignment('MREINOVA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999862', sysdate, null); harmony.usermgt.create_dds_item_assignment('MREINOVA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999644', sysdate, null); -- Inserting RoleToUserAssignment 'MREINOVA/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MREINOVA', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MREINOVA/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('MREINOVA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999863', sysdate, null); harmony.usermgt.create_dds_item_assignment('MREINOVA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999862', sysdate, null); harmony.usermgt.create_dds_item_assignment('MREINOVA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999644', sysdate, null); -- Inserting RoleToUserAssignment 'MREINSTE/H_EFS2_LOC_REP_PARTY' harmony.usermgt.create_role_to_user_assignment('MREINSTE', 'H_EFS2_LOC_REP_PARTY', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MREINSTE/H_EFS2_LOC_REP_PARTY harmony.usermgt.create_dds_item_assignment('MREINSTE', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '482', sysdate, null); -- Inserting RoleToUserAssignment 'MRIHA/H_TPP_LOC_AUTH' harmony.usermgt.create_role_to_user_assignment('MRIHA', 'H_TPP_LOC_AUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MRIHA/H_TPP_LOC_AUTH harmony.usermgt.create_dds_item_assignment('MRIHA', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '5', sysdate, null); -- Inserting RoleToUserAssignment 'MRINGOOT/BAM_REPORTER' harmony.usermgt.create_role_to_user_assignment('MRINGOOT', 'BAM_REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MRINGOOT/BAM_REPORTER harmony.usermgt.create_dds_item_assignment('MRINGOOT', 'BAM_REPORTER', 'BAM Region', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MRINGOOT/HB_FM_COMBI_VIEW' harmony.usermgt.create_role_to_user_assignment('MRINGOOT', 'HB_FM_COMBI_VIEW', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MRINGOOT/HERMES_IM_SUPPORT' harmony.usermgt.create_role_to_user_assignment('MRINGOOT', 'HERMES_IM_SUPPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MRINGOOT/HERMES_IM_SUPPORT harmony.usermgt.create_dds_item_assignment('MRINGOOT', 'HERMES_IM_SUPPORT', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MRINGOOT/H_CHAINS_IM_SUPPORT' harmony.usermgt.create_role_to_user_assignment('MRINGOOT', 'H_CHAINS_IM_SUPPORT', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MRINGOOT/H_DLINK_IM_SUPPORT' harmony.usermgt.create_role_to_user_assignment('MRINGOOT', 'H_DLINK_IM_SUPPORT', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MRINGOOT/H_EFS2_IM_SUPPORT' harmony.usermgt.create_role_to_user_assignment('MRINGOOT', 'H_EFS2_IM_SUPPORT', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MRINGOOT/H_GXRS_IM_SUPPORT' harmony.usermgt.create_role_to_user_assignment('MRINGOOT', 'H_GXRS_IM_SUPPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MRINGOOT/H_GXRS_IM_SUPPORT harmony.usermgt.create_dds_item_assignment('MRINGOOT', 'H_GXRS_IM_SUPPORT', 'GXRS instructing accounts in ART', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MRINGOOT/H_P2P_IM_SUPPORT' harmony.usermgt.create_role_to_user_assignment('MRINGOOT', 'H_P2P_IM_SUPPORT', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MRINGOOT/H_SWIFTCOM_IM_SUP' harmony.usermgt.create_role_to_user_assignment('MRINGOOT', 'H_SWIFTCOM_IM_SUP', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MRINGOOT/H_SWIFTCOM_IM_SUP harmony.usermgt.create_dds_item_assignment('MRINGOOT', 'H_SWIFTCOM_IM_SUP', 'SWIFTCOM FM Source', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MRINGOOT/H_TOPS_IM_SUPPORT' harmony.usermgt.create_role_to_user_assignment('MRINGOOT', 'H_TOPS_IM_SUPPORT', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MRINGOOT/H_TPP_IM_SUPPORT' harmony.usermgt.create_role_to_user_assignment('MRINGOOT', 'H_TPP_IM_SUPPORT', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MROBINS4/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MROBINS4', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MROBINS4/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('MROBINS4', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999642', sysdate, null); harmony.usermgt.create_dds_item_assignment('MROBINS4', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999641', sysdate, null); harmony.usermgt.create_dds_item_assignment('MROBINS4', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999383', sysdate, null); harmony.usermgt.create_dds_item_assignment('MROBINS4', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999033', sysdate, null); -- Inserting RoleToUserAssignment 'MROBINS4/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MROBINS4', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MROBINS4/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('MROBINS4', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999642', sysdate, null); harmony.usermgt.create_dds_item_assignment('MROBINS4', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999641', sysdate, null); harmony.usermgt.create_dds_item_assignment('MROBINS4', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999383', sysdate, null); harmony.usermgt.create_dds_item_assignment('MROBINS4', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999033', sysdate, null); -- Inserting RoleToUserAssignment 'MROBINS4/H_TPP_P2P_OFFERAUTH' harmony.usermgt.create_role_to_user_assignment('MROBINS4', 'H_TPP_P2P_OFFERAUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MROBINS4/H_TPP_P2P_OFFERAUTH harmony.usermgt.create_dds_item_assignment('MROBINS4', 'H_TPP_P2P_OFFERAUTH', 'TPP AP2PLE OC', 'ONE', '186', sysdate, null); -- Inserting RoleToUserAssignment 'MROBSON/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MROBSON', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MROBSON/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('MROBSON', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998892', sysdate, null); -- Inserting RoleToUserAssignment 'MROBSON/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MROBSON', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MROBSON/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('MROBSON', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998892', sysdate, null); -- Inserting RoleToUserAssignment 'MRODR19/H_EFS2_LOC_EDIT' harmony.usermgt.create_role_to_user_assignment('MRODR19', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MRODR19/H_EFS2_LOC_EDIT harmony.usermgt.create_dds_item_assignment('MRODR19', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '398', sysdate, null); -- Inserting RoleToUserAssignment 'MSABER1/H_EFS2_LOC_AUTH' harmony.usermgt.create_role_to_user_assignment('MSABER1', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MSABER1/H_EFS2_LOC_AUTH harmony.usermgt.create_dds_item_assignment('MSABER1', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '320', sysdate, null); harmony.usermgt.create_dds_item_assignment('MSABER1', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '277', sysdate, null); -- Inserting RoleToUserAssignment 'MSAGLAM/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MSAGLAM', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MSAGLAM/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('MSAGLAM', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999832', sysdate, null); -- Inserting RoleToUserAssignment 'MSAGLAM/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MSAGLAM', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MSAGLAM/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('MSAGLAM', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999832', sysdate, null); -- Inserting RoleToUserAssignment 'MSAGLAM/H_EFS2_LOC_EDIT' harmony.usermgt.create_role_to_user_assignment('MSAGLAM', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MSAGLAM/H_EFS2_LOC_EDIT harmony.usermgt.create_dds_item_assignment('MSAGLAM', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '483', sysdate, null); -- Inserting RoleToUserAssignment 'MSAKYS/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MSAKYS', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MSAKYS/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('MSAKYS', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998998', sysdate, null); -- Inserting RoleToUserAssignment 'MSAKYS/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MSAKYS', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MSAKYS/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('MSAKYS', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998998', sysdate, null); -- Inserting RoleToUserAssignment 'MSANCHE2/H_EFS2_LOC_EDIT' harmony.usermgt.create_role_to_user_assignment('MSANCHE2', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MSANCHE2/H_EFS2_LOC_EDIT harmony.usermgt.create_dds_item_assignment('MSANCHE2', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '558', sysdate, null); harmony.usermgt.create_dds_item_assignment('MSANCHE2', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '552', sysdate, null); -- Inserting RoleToUserAssignment 'MSANDACH/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MSANDACH', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MSANDACH/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('MSANDACH', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999417', sysdate, null); -- Inserting RoleToUserAssignment 'MSANDACH/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MSANDACH', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MSANDACH/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('MSANDACH', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999417', sysdate, null); -- Inserting RoleToUserAssignment 'MSANDACH/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('MSANDACH', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MSANDACH/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('MSANDACH', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[178/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MSANTIA6/H_TPP_LOC_REP' harmony.usermgt.create_role_to_user_assignment('MSANTIA6', 'H_TPP_LOC_REP', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MSANTIA6/H_TPP_LOC_REP harmony.usermgt.create_dds_item_assignment('MSANTIA6', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '304', sysdate, null); -- Inserting RoleToUserAssignment 'MSANTO99/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('MSANTO99', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MSANTO99/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('MSANTO99', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11681/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MSANTO99/H_TPP_LOC_REP' harmony.usermgt.create_role_to_user_assignment('MSANTO99', 'H_TPP_LOC_REP', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MSANTO99/H_TPP_LOC_REP harmony.usermgt.create_dds_item_assignment('MSANTO99', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '304', sysdate, null); -- Inserting RoleToUserAssignment 'MSERAC/H_EFS2_LOC_EDIT' harmony.usermgt.create_role_to_user_assignment('MSERAC', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MSERAC/H_EFS2_LOC_EDIT harmony.usermgt.create_dds_item_assignment('MSERAC', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '458', sysdate, null); -- Inserting RoleToUserAssignment 'MSERANT1/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MSERANT1', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MSERANT1/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('MSERANT1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999666', sysdate, null); harmony.usermgt.create_dds_item_assignment('MSERANT1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999665', sysdate, null); harmony.usermgt.create_dds_item_assignment('MSERANT1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999662', sysdate, null); harmony.usermgt.create_dds_item_assignment('MSERANT1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999158', sysdate, null); harmony.usermgt.create_dds_item_assignment('MSERANT1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999155', sysdate, null); -- Inserting RoleToUserAssignment 'MSERANT1/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MSERANT1', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MSERANT1/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('MSERANT1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999666', sysdate, null); harmony.usermgt.create_dds_item_assignment('MSERANT1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999665', sysdate, null); harmony.usermgt.create_dds_item_assignment('MSERANT1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999662', sysdate, null); harmony.usermgt.create_dds_item_assignment('MSERANT1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999158', sysdate, null); harmony.usermgt.create_dds_item_assignment('MSERANT1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999155', sysdate, null); -- Inserting RoleToUserAssignment 'MSERANT1/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('MSERANT1', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MSERANT1/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('MSERANT1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11637/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MSERANT1/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('MSERANT1', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MSERANT1/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('MSERANT1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[170/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MSERANT1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[168/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MSERANT1/H_TPP_LOC_EDIT' harmony.usermgt.create_role_to_user_assignment('MSERANT1', 'H_TPP_LOC_EDIT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MSERANT1/H_TPP_LOC_EDIT harmony.usermgt.create_dds_item_assignment('MSERANT1', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '54', sysdate, null); harmony.usermgt.create_dds_item_assignment('MSERANT1', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '195', sysdate, null); -- Inserting RoleToUserAssignment 'MSERANT1/H_TPP_LOC_REP' harmony.usermgt.create_role_to_user_assignment('MSERANT1', 'H_TPP_LOC_REP', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MSERANT1/H_TPP_LOC_REP harmony.usermgt.create_dds_item_assignment('MSERANT1', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '128', sysdate, null); -- Inserting RoleToUserAssignment 'MSERANT1/H_TPP_P2P_REPORT' harmony.usermgt.create_role_to_user_assignment('MSERANT1', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MSERANT1/H_TPP_P2P_REPORT harmony.usermgt.create_dds_item_assignment('MSERANT1', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '278', sysdate, null); harmony.usermgt.create_dds_item_assignment('MSERANT1', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '146', sysdate, null); harmony.usermgt.create_dds_item_assignment('MSERANT1', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '129', sysdate, null); -- Inserting RoleToUserAssignment 'MSHIGEY1/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MSHIGEY1', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MSHIGEY1/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('MSHIGEY1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999708', sysdate, null); -- Inserting RoleToUserAssignment 'MSHIGEY1/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MSHIGEY1', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MSHIGEY1/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('MSHIGEY1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999708', sysdate, null); -- Inserting RoleToUserAssignment 'MSHIGEY1/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('MSHIGEY1', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MSHIGEY1/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('MSHIGEY1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[249/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MSHIGEY1/H_TPP_LOC_AUTH' harmony.usermgt.create_role_to_user_assignment('MSHIGEY1', 'H_TPP_LOC_AUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MSHIGEY1/H_TPP_LOC_AUTH harmony.usermgt.create_dds_item_assignment('MSHIGEY1', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '31', sysdate, null); -- Inserting RoleToUserAssignment 'MSHIGEY1/H_TPP_LOC_EDIT' harmony.usermgt.create_role_to_user_assignment('MSHIGEY1', 'H_TPP_LOC_EDIT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MSHIGEY1/H_TPP_LOC_EDIT harmony.usermgt.create_dds_item_assignment('MSHIGEY1', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '31', sysdate, null); -- Inserting RoleToUserAssignment 'MSMITH02/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MSMITH02', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MSMITH02/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('MSMITH02', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999831', sysdate, null); harmony.usermgt.create_dds_item_assignment('MSMITH02', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999714', sysdate, null); harmony.usermgt.create_dds_item_assignment('MSMITH02', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999711', sysdate, null); harmony.usermgt.create_dds_item_assignment('MSMITH02', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999484', sysdate, null); -- Inserting RoleToUserAssignment 'MSMITH02/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MSMITH02', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MSMITH02/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('MSMITH02', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999831', sysdate, null); harmony.usermgt.create_dds_item_assignment('MSMITH02', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999714', sysdate, null); harmony.usermgt.create_dds_item_assignment('MSMITH02', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999711', sysdate, null); harmony.usermgt.create_dds_item_assignment('MSMITH02', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999484', sysdate, null); -- Inserting RoleToUserAssignment 'MSOLIWOD/H_EFS2_LOC_REP_PARTY' harmony.usermgt.create_role_to_user_assignment('MSOLIWOD', 'H_EFS2_LOC_REP_PARTY', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MSOLIWOD/H_EFS2_LOC_REP_PARTY harmony.usermgt.create_dds_item_assignment('MSOLIWOD', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '704', sysdate, null); -- Inserting RoleToUserAssignment 'MSOLIWOD/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('MSOLIWOD', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MSOLIWOD/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('MSOLIWOD', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11865/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MSOUBEYR/H_EFS2_LOC_EDIT' harmony.usermgt.create_role_to_user_assignment('MSOUBEYR', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MSOUBEYR/H_EFS2_LOC_EDIT harmony.usermgt.create_dds_item_assignment('MSOUBEYR', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '524', sysdate, null); -- Inserting RoleToUserAssignment 'MSTEHLIK/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MSTEHLIK', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MSTEHLIK/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('MSTEHLIK', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999893', sysdate, null); harmony.usermgt.create_dds_item_assignment('MSTEHLIK', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998866', sysdate, null); -- Inserting RoleToUserAssignment 'MSTEHLIK/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MSTEHLIK', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MSTEHLIK/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('MSTEHLIK', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999893', sysdate, null); harmony.usermgt.create_dds_item_assignment('MSTEHLIK', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998866', sysdate, null); -- Inserting RoleToUserAssignment 'MSTEHLIK/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('MSTEHLIK', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MSTEHLIK/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('MSTEHLIK', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11234/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MSTEURS1/H_TPP_LOC_EDIT' harmony.usermgt.create_role_to_user_assignment('MSTEURS1', 'H_TPP_LOC_EDIT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MSTEURS1/H_TPP_LOC_EDIT harmony.usermgt.create_dds_item_assignment('MSTEURS1', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '47', sysdate, null); -- Inserting RoleToUserAssignment 'MSTOUTEN/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MSTOUTEN', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MSTOUTEN/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('MSTOUTEN', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998945', sysdate, null); harmony.usermgt.create_dds_item_assignment('MSTOUTEN', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998906', sysdate, null); -- Inserting RoleToUserAssignment 'MSTOUTEN/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MSTOUTEN', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MSTOUTEN/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('MSTOUTEN', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998945', sysdate, null); harmony.usermgt.create_dds_item_assignment('MSTOUTEN', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998906', sysdate, null); -- Inserting RoleToUserAssignment 'MSTOUTEN/H_EFS2_LOC_REP_PARTY' harmony.usermgt.create_role_to_user_assignment('MSTOUTEN', 'H_EFS2_LOC_REP_PARTY', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MSTOUTEN/H_EFS2_LOC_REP_PARTY harmony.usermgt.create_dds_item_assignment('MSTOUTEN', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '670', sysdate, null); harmony.usermgt.create_dds_item_assignment('MSTOUTEN', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '664', sysdate, null); harmony.usermgt.create_dds_item_assignment('MSTOUTEN', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '662', sysdate, null); harmony.usermgt.create_dds_item_assignment('MSTOUTEN', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '659', sysdate, null); -- Inserting RoleToUserAssignment 'MSTOUTEN/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('MSTOUTEN', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MSTOUTEN/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('MSTOUTEN', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11767/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MSTOUTEN', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11737/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MSTOUTEN/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('MSTOUTEN', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MSTOUTEN/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('MSTOUTEN', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11767/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MSTOUTEN', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11737/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MSUZUK13/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MSUZUK13', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MSUZUK13/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('MSUZUK13', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999708', sysdate, null); -- Inserting RoleToUserAssignment 'MSUZUK13/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MSUZUK13', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MSUZUK13/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('MSUZUK13', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999708', sysdate, null); -- Inserting RoleToUserAssignment 'MSUZUK13/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('MSUZUK13', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MSUZUK13/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('MSUZUK13', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[249/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MSUZUK13/H_TPP_P2P_OFFERAUTH' harmony.usermgt.create_role_to_user_assignment('MSUZUK13', 'H_TPP_P2P_OFFERAUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MSUZUK13/H_TPP_P2P_OFFERAUTH harmony.usermgt.create_dds_item_assignment('MSUZUK13', 'H_TPP_P2P_OFFERAUTH', 'TPP AP2PLE OC', 'ONE', '345', sysdate, null); -- Inserting RoleToUserAssignment 'MSZOTAK/H_GXRS_CALL_CENTER' harmony.usermgt.create_role_to_user_assignment('MSZOTAK', 'H_GXRS_CALL_CENTER', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MTAKADA3/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('MTAKADA3', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MTAKADA3/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('MTAKADA3', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11887/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MTAMIKIN/H_TPP_LOC_EDIT' harmony.usermgt.create_role_to_user_assignment('MTAMIKIN', 'H_TPP_LOC_EDIT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MTAMIKIN/H_TPP_LOC_EDIT harmony.usermgt.create_dds_item_assignment('MTAMIKIN', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '65', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTAMIKIN', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '29', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTAMIKIN', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '233', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTAMIKIN', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '195', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTAMIKIN', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '147', sysdate, null); -- Inserting RoleToUserAssignment 'MTAMIKIN/H_TPP_P2P_OFFERMGT' harmony.usermgt.create_role_to_user_assignment('MTAMIKIN', 'H_TPP_P2P_OFFERMGT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MTAMIKIN/H_TPP_P2P_OFFERMGT harmony.usermgt.create_dds_item_assignment('MTAMIKIN', 'H_TPP_P2P_OFFERMGT', 'TPP AP2PLE OC', 'ONE', '120', sysdate, null); -- Inserting RoleToUserAssignment 'MTAMIKIN/H_TPP_P2P_REPORT' harmony.usermgt.create_role_to_user_assignment('MTAMIKIN', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MTAMIKIN/H_TPP_P2P_REPORT harmony.usermgt.create_dds_item_assignment('MTAMIKIN', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '191', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTAMIKIN', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '148', sysdate, null); -- Inserting RoleToUserAssignment 'MTAN7/H_TPP_LOC_REP' harmony.usermgt.create_role_to_user_assignment('MTAN7', 'H_TPP_LOC_REP', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MTAN7/H_TPP_LOC_REP harmony.usermgt.create_dds_item_assignment('MTAN7', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '33', sysdate, null); -- Inserting RoleToUserAssignment 'MTANG9/H_EFS2_LOC_AUTH' harmony.usermgt.create_role_to_user_assignment('MTANG9', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MTANG9/H_EFS2_LOC_AUTH harmony.usermgt.create_dds_item_assignment('MTANG9', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '705', sysdate, null); -- Inserting RoleToUserAssignment 'MTANG9/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('MTANG9', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MTANG9/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('MTANG9', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11897/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTANG9', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11895/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MTENENBM/H_EFS2_LOC_EDIT' harmony.usermgt.create_role_to_user_assignment('MTENENBM', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MTENENBM/H_EFS2_LOC_EDIT harmony.usermgt.create_dds_item_assignment('MTENENBM', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '642', sysdate, null); -- Inserting RoleToUserAssignment 'MTENENBM/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('MTENENBM', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MTENENBM/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('MTENENBM', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11682/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MTENENBM/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('MTENENBM', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MTENENBM/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('MTENENBM', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11682/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MTETOUR2/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MTETOUR2', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MTETOUR2/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('MTETOUR2', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999891', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTETOUR2', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999883', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTETOUR2', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999857', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTETOUR2', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999665', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTETOUR2', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999652', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTETOUR2', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998924', sysdate, null); -- Inserting RoleToUserAssignment 'MTETOUR2/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MTETOUR2', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MTETOUR2/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('MTETOUR2', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999891', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTETOUR2', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999883', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTETOUR2', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999857', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTETOUR2', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999665', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTETOUR2', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999652', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTETOUR2', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998924', sysdate, null); -- Inserting RoleToUserAssignment 'MTORFS/HERMES_CMEFF_REP_CTR' harmony.usermgt.create_role_to_user_assignment('MTORFS', 'HERMES_CMEFF_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MTORFS/HERMES_CMEFF_REP_CTR harmony.usermgt.create_dds_item_assignment('MTORFS', 'HERMES_CMEFF_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MTORFS/HERMES_GRP_REP_CTR' harmony.usermgt.create_role_to_user_assignment('MTORFS', 'HERMES_GRP_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MTORFS/HERMES_GRP_REP_CTR harmony.usermgt.create_dds_item_assignment('MTORFS', 'HERMES_GRP_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MTORFS/HERMES_IDTXN_REP_CTR' harmony.usermgt.create_role_to_user_assignment('MTORFS', 'HERMES_IDTXN_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MTORFS/HERMES_IDTXN_REP_CTR harmony.usermgt.create_dds_item_assignment('MTORFS', 'HERMES_IDTXN_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MTORFS/HERMES_STAT_REP_CTR' harmony.usermgt.create_role_to_user_assignment('MTORFS', 'HERMES_STAT_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MTORFS/HERMES_STAT_REP_CTR harmony.usermgt.create_dds_item_assignment('MTORFS', 'HERMES_STAT_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MTORFS/HERMES_STS_REP_CTR' harmony.usermgt.create_role_to_user_assignment('MTORFS', 'HERMES_STS_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MTORFS/HERMES_STS_REP_CTR harmony.usermgt.create_dds_item_assignment('MTORFS', 'HERMES_STS_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MTORFS/HERMES_SYM_REC_CTR' harmony.usermgt.create_role_to_user_assignment('MTORFS', 'HERMES_SYM_REC_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MTORFS/HERMES_SYM_REC_CTR harmony.usermgt.create_dds_item_assignment('MTORFS', 'HERMES_SYM_REC_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MTORFS/HERMES_TXN_REP_CTR' harmony.usermgt.create_role_to_user_assignment('MTORFS', 'HERMES_TXN_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MTORFS/HERMES_TXN_REP_CTR harmony.usermgt.create_dds_item_assignment('MTORFS', 'HERMES_TXN_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MTORFS/HERMES_VAVO_REP_CTR' harmony.usermgt.create_role_to_user_assignment('MTORFS', 'HERMES_VAVO_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MTORFS/HERMES_VAVO_REP_CTR harmony.usermgt.create_dds_item_assignment('MTORFS', 'HERMES_VAVO_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MTORFS/H_NETTING_CTR_MGT' harmony.usermgt.create_role_to_user_assignment('MTORFS', 'H_NETTING_CTR_MGT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MTORFS/H_NETTING_CTR_MGT harmony.usermgt.create_dds_item_assignment('MTORFS', 'H_NETTING_CTR_MGT', 'Third Party Netting Participant', 'ALL', null, sysdate, null); harmony.usermgt.create_dds_item_assignment('MTORFS', 'H_NETTING_CTR_MGT', 'Treasury Center Netting Participant', 'ALL', null, sysdate, null); harmony.usermgt.create_dds_item_assignment('MTORFS', 'H_NETTING_CTR_MGT', 'Standard Netting Participant', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MTORFS/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('MTORFS', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MTORFS/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('MTORFS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[246/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTORFS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[238/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTORFS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[225/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTORFS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[219/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTORFS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[218/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTORFS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[177/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTORFS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[176/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTORFS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[175/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTORFS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[174/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTORFS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[173/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTORFS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[172/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTORFS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[171/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTORFS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11695/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTORFS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11670/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTORFS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11629/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTORFS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11627/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTORFS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11582/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTORFS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11580/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTORFS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11575/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTORFS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11562/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTORFS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11543/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTORFS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11537/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTORFS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11495/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTORFS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11349/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTORFS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[103/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTORFS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[104/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTORFS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11070/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTORFS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11072/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTORFS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11130/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTORFS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11184/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTORFS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11218/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTORFS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11234/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTORFS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11235/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTORFS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11237/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTORFS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11272/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTORFS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11327/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTORFS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11342/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTORFS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11713/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTORFS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11737/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTORFS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11753/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTORFS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11755/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTORFS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11756/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTORFS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11761/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTORFS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11764/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTORFS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11767/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTORFS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11769/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTORFS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11771/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTORFS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11780/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTORFS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11783/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTORFS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11785/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTORFS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11805/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTORFS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11818/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTORFS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11820/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTORFS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11862/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTORFS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11865/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTORFS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11881/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTORFS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11930/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTORFS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11983/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTORFS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[144/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTORFS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[146/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTORFS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[147/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MTORFS/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('MTORFS', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MTORFS/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('MTORFS', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[142/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MTORFS/H_NETTING_LOC_REP_TC' harmony.usermgt.create_role_to_user_assignment('MTORFS', 'H_NETTING_LOC_REP_TC', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MTORFS/H_NETTING_LOC_REP_TC harmony.usermgt.create_dds_item_assignment('MTORFS', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[7/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTORFS', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[233/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTORFS', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[223/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTORFS', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[222/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTORFS', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[11486/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTORFS', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[11120/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MTORFS/H_SWIFTCOM_RELEASER' harmony.usermgt.create_role_to_user_assignment('MTORFS', 'H_SWIFTCOM_RELEASER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MTORFS/H_SWIFTCOM_RELEASER harmony.usermgt.create_dds_item_assignment('MTORFS', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '9', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTORFS', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '8', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTORFS', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '7', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTORFS', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '6', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTORFS', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '5', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTORFS', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '4', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTORFS', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '2', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTORFS', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '11', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTORFS', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '10', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTORFS', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '1', sysdate, null); -- Inserting RoleToUserAssignment 'MTORFS/H_TOPS_FO_USER' harmony.usermgt.create_role_to_user_assignment('MTORFS', 'H_TOPS_FO_USER', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MTOTHOVA/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MTOTHOVA', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MTOTHOVA/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('MTOTHOVA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999214', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTOTHOVA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999213', sysdate, null); -- Inserting RoleToUserAssignment 'MTOTHOVA/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MTOTHOVA', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MTOTHOVA/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('MTOTHOVA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999214', sysdate, null); harmony.usermgt.create_dds_item_assignment('MTOTHOVA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999213', sysdate, null); -- Inserting RoleToUserAssignment 'MTREVETT/H_EFS2_LOC_EDIT' harmony.usermgt.create_role_to_user_assignment('MTREVETT', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MTREVETT/H_EFS2_LOC_EDIT harmony.usermgt.create_dds_item_assignment('MTREVETT', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '530', sysdate, null); -- Inserting RoleToUserAssignment 'MVANKERC/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MVANKERC', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MVANKERC/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('MVANKERC', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999994', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVANKERC', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999993', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVANKERC', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999887', sysdate, null); -- Inserting RoleToUserAssignment 'MVANKERC/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MVANKERC', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MVANKERC/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('MVANKERC', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999994', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVANKERC', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999993', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVANKERC', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999887', sysdate, null); -- Inserting RoleToUserAssignment 'MVANKERC/H_EFS2_LOC_AUTH' harmony.usermgt.create_role_to_user_assignment('MVANKERC', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MVANKERC/H_EFS2_LOC_AUTH harmony.usermgt.create_dds_item_assignment('MVANKERC', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '566', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVANKERC', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '489', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVANKERC', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '453', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVANKERC', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '452', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVANKERC', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '362', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVANKERC', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '361', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVANKERC', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '279', sysdate, null); -- Inserting RoleToUserAssignment 'MVANKERC/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('MVANKERC', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MVANKERC/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('MVANKERC', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[93/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVANKERC', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[91/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVANKERC', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[286/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MVANKERC/H_TPP_P2P_OFFERAUTH' harmony.usermgt.create_role_to_user_assignment('MVANKERC', 'H_TPP_P2P_OFFERAUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MVANKERC/H_TPP_P2P_OFFERAUTH harmony.usermgt.create_dds_item_assignment('MVANKERC', 'H_TPP_P2P_OFFERAUTH', 'TPP AP2PLE OC', 'ONE', '113', sysdate, null); -- Inserting RoleToUserAssignment 'MVATSA/H_TPP_LOC_AUTH' harmony.usermgt.create_role_to_user_assignment('MVATSA', 'H_TPP_LOC_AUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MVATSA/H_TPP_LOC_AUTH harmony.usermgt.create_dds_item_assignment('MVATSA', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '36', sysdate, null); -- Inserting RoleToUserAssignment 'MVERISS2/H_EFS2_LOC_AUTH' harmony.usermgt.create_role_to_user_assignment('MVERISS2', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MVERISS2/H_EFS2_LOC_AUTH harmony.usermgt.create_dds_item_assignment('MVERISS2', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '699', sysdate, null); -- Inserting RoleToUserAssignment 'MVERISS2/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('MVERISS2', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MVERISS2/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('MVERISS2', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11636/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MVERTEN1/BAM_MANAGER' harmony.usermgt.create_role_to_user_assignment('MVERTEN1', 'BAM_MANAGER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MVERTEN1/BAM_MANAGER harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'BAM_MANAGER', 'BAM Region', 'ONE', '1', sysdate, null); -- Inserting RoleToUserAssignment 'MVERTEN1/BAM_REPORTER' harmony.usermgt.create_role_to_user_assignment('MVERTEN1', 'BAM_REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MVERTEN1/BAM_REPORTER harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'BAM_REPORTER', 'BAM Region', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MVERTEN1/HERMES_CMEFF_REP_CTR' harmony.usermgt.create_role_to_user_assignment('MVERTEN1', 'HERMES_CMEFF_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MVERTEN1/HERMES_CMEFF_REP_CTR harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'HERMES_CMEFF_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MVERTEN1/HERMES_GRP_REP_CTR' harmony.usermgt.create_role_to_user_assignment('MVERTEN1', 'HERMES_GRP_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MVERTEN1/HERMES_GRP_REP_CTR harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'HERMES_GRP_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MVERTEN1/HERMES_IDTXN_REP_CTR' harmony.usermgt.create_role_to_user_assignment('MVERTEN1', 'HERMES_IDTXN_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MVERTEN1/HERMES_IDTXN_REP_CTR harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'HERMES_IDTXN_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MVERTEN1/HERMES_STAT_REP_CTR' harmony.usermgt.create_role_to_user_assignment('MVERTEN1', 'HERMES_STAT_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MVERTEN1/HERMES_STAT_REP_CTR harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'HERMES_STAT_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MVERTEN1/HERMES_STS_REP_CTR' harmony.usermgt.create_role_to_user_assignment('MVERTEN1', 'HERMES_STS_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MVERTEN1/HERMES_STS_REP_CTR harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'HERMES_STS_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MVERTEN1/HERMES_SYM_REC_CTR' harmony.usermgt.create_role_to_user_assignment('MVERTEN1', 'HERMES_SYM_REC_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MVERTEN1/HERMES_SYM_REC_CTR harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'HERMES_SYM_REC_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MVERTEN1/HERMES_TXN_REP_CTR' harmony.usermgt.create_role_to_user_assignment('MVERTEN1', 'HERMES_TXN_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MVERTEN1/HERMES_TXN_REP_CTR harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'HERMES_TXN_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MVERTEN1/HERMES_VAVO_REP_CTR' harmony.usermgt.create_role_to_user_assignment('MVERTEN1', 'HERMES_VAVO_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MVERTEN1/HERMES_VAVO_REP_CTR harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'HERMES_VAVO_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MVERTEN1/H_EFS2_CTR_REP' harmony.usermgt.create_role_to_user_assignment('MVERTEN1', 'H_EFS2_CTR_REP', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MVERTEN1/H_EFS2_LOC_AUTH' harmony.usermgt.create_role_to_user_assignment('MVERTEN1', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MVERTEN1/H_EFS2_LOC_AUTH harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '270', sysdate, null); -- Inserting RoleToUserAssignment 'MVERTEN1/H_NETTING_CTR_REP' harmony.usermgt.create_role_to_user_assignment('MVERTEN1', 'H_NETTING_CTR_REP', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MVERTEN1/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('MVERTEN1', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MVERTEN1/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11955/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MVERTEN1/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('MVERTEN1', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MVERTEN1/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'MVERTEN1/H_SWIFTCOM_RELEASER' harmony.usermgt.create_role_to_user_assignment('MVERTEN1', 'H_SWIFTCOM_RELEASER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MVERTEN1/H_SWIFTCOM_RELEASER harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '13', sysdate, null); -- Inserting RoleToUserAssignment 'MVERTEN1/H_TOPS_CNTRP_EXP_REP' harmony.usermgt.create_role_to_user_assignment('MVERTEN1', 'H_TOPS_CNTRP_EXP_REP', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MVERTEN1/H_TPP_CTR_REP' harmony.usermgt.create_role_to_user_assignment('MVERTEN1', 'H_TPP_CTR_REP', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'MVERTEN1/H_TPP_LOC_REP' harmony.usermgt.create_role_to_user_assignment('MVERTEN1', 'H_TPP_LOC_REP', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MVERTEN1/H_TPP_LOC_REP harmony.usermgt.create_dds_item_assignment('MVERTEN1', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '34', sysdate, null); -- Inserting RoleToUserAssignment 'MVOREADI/H_TPP_LOC_AUTH' harmony.usermgt.create_role_to_user_assignment('MVOREADI', 'H_TPP_LOC_AUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MVOREADI/H_TPP_LOC_AUTH harmony.usermgt.create_dds_item_assignment('MVOREADI', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '355', sysdate, null); -- Inserting RoleToUserAssignment 'MVOROU/H_TPP_LOC_AUTH' harmony.usermgt.create_role_to_user_assignment('MVOROU', 'H_TPP_LOC_AUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MVOROU/H_TPP_LOC_AUTH harmony.usermgt.create_dds_item_assignment('MVOROU', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '63', sysdate, null); harmony.usermgt.create_dds_item_assignment('MVOROU', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '355', sysdate, null); -- Inserting RoleToUserAssignment 'MWAGNER6/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('MWAGNER6', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MWAGNER6/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('MWAGNER6', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11991/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MWAGNER6', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11924/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MWALTON4/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MWALTON4', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MWALTON4/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('MWALTON4', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998981', sysdate, null); -- Inserting RoleToUserAssignment 'MWALTON4/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MWALTON4', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MWALTON4/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('MWALTON4', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998981', sysdate, null); -- Inserting RoleToUserAssignment 'MWALTON4/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('MWALTON4', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MWALTON4/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('MWALTON4', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[246/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MWAY/H_TPP_LOC_AUTH' harmony.usermgt.create_role_to_user_assignment('MWAY', 'H_TPP_LOC_AUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MWAY/H_TPP_LOC_AUTH harmony.usermgt.create_dds_item_assignment('MWAY', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '65', sysdate, null); harmony.usermgt.create_dds_item_assignment('MWAY', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '11', sysdate, null); -- Inserting RoleToUserAssignment 'MWIJK/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MWIJK', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MWIJK/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('MWIJK', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999456', sysdate, null); harmony.usermgt.create_dds_item_assignment('MWIJK', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999455', sysdate, null); harmony.usermgt.create_dds_item_assignment('MWIJK', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999082', sysdate, null); -- Inserting RoleToUserAssignment 'MWIJK/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MWIJK', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MWIJK/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('MWIJK', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999456', sysdate, null); harmony.usermgt.create_dds_item_assignment('MWIJK', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999455', sysdate, null); harmony.usermgt.create_dds_item_assignment('MWIJK', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999082', sysdate, null); -- Inserting RoleToUserAssignment 'MWIJK/H_EFS2_LOC_EDIT' harmony.usermgt.create_role_to_user_assignment('MWIJK', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MWIJK/H_EFS2_LOC_EDIT harmony.usermgt.create_dds_item_assignment('MWIJK', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '593', sysdate, null); -- Inserting RoleToUserAssignment 'MWIJK/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('MWIJK', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MWIJK/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('MWIJK', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[276/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MWIJK', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11870/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MWIJK', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11868/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('MWIJK', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11713/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'MYANAI/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MYANAI', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MYANAI/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('MYANAI', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999705', sysdate, null); -- Inserting RoleToUserAssignment 'MYANAI/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MYANAI', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MYANAI/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('MYANAI', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999705', sysdate, null); -- Inserting RoleToUserAssignment 'MZAMORA9/H_TPP_LOC_REP' harmony.usermgt.create_role_to_user_assignment('MZAMORA9', 'H_TPP_LOC_REP', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MZAMORA9/H_TPP_LOC_REP harmony.usermgt.create_dds_item_assignment('MZAMORA9', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '71', sysdate, null); harmony.usermgt.create_dds_item_assignment('MZAMORA9', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '29', sysdate, null); harmony.usermgt.create_dds_item_assignment('MZAMORA9', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '233', sysdate, null); harmony.usermgt.create_dds_item_assignment('MZAMORA9', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '13', sysdate, null); harmony.usermgt.create_dds_item_assignment('MZAMORA9', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '12', sysdate, null); -- Inserting RoleToUserAssignment 'MZAMORA9/H_TPP_P2P_REPORT' harmony.usermgt.create_role_to_user_assignment('MZAMORA9', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MZAMORA9/H_TPP_P2P_REPORT harmony.usermgt.create_dds_item_assignment('MZAMORA9', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '302', sysdate, null); -- Inserting RoleToUserAssignment 'MZAPP/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MZAPP', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MZAPP/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('MZAPP', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999427', sysdate, null); harmony.usermgt.create_dds_item_assignment('MZAPP', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999183', sysdate, null); harmony.usermgt.create_dds_item_assignment('MZAPP', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999182', sysdate, null); harmony.usermgt.create_dds_item_assignment('MZAPP', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999006', sysdate, null); -- Inserting RoleToUserAssignment 'MZAPP/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('MZAPP', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MZAPP/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('MZAPP', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999427', sysdate, null); harmony.usermgt.create_dds_item_assignment('MZAPP', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999183', sysdate, null); harmony.usermgt.create_dds_item_assignment('MZAPP', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999182', sysdate, null); harmony.usermgt.create_dds_item_assignment('MZAPP', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999006', sysdate, null); -- Inserting RoleToUserAssignment 'MZAPP/H_EFS2_LOC_EDIT' harmony.usermgt.create_role_to_user_assignment('MZAPP', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MZAPP/H_EFS2_LOC_EDIT harmony.usermgt.create_dds_item_assignment('MZAPP', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '560', sysdate, null); harmony.usermgt.create_dds_item_assignment('MZAPP', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '292', sysdate, null); -- Inserting RoleToUserAssignment 'MZEHETNE/H_TPP_P2P_OFFERAUTH' harmony.usermgt.create_role_to_user_assignment('MZEHETNE', 'H_TPP_P2P_OFFERAUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MZEHETNE/H_TPP_P2P_OFFERAUTH harmony.usermgt.create_dds_item_assignment('MZEHETNE', 'H_TPP_P2P_OFFERAUTH', 'TPP AP2PLE OC', 'ONE', '253', sysdate, null); -- Inserting RoleToUserAssignment 'MZHOU8/H_EFS2_LOC_EDIT' harmony.usermgt.create_role_to_user_assignment('MZHOU8', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for MZHOU8/H_EFS2_LOC_EDIT harmony.usermgt.create_dds_item_assignment('MZHOU8', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '650', sysdate, null); -- Inserting RoleToUserAssignment 'NACHOUI/H_EFS2_LOC_EDIT' harmony.usermgt.create_role_to_user_assignment('NACHOUI', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NACHOUI/H_EFS2_LOC_EDIT harmony.usermgt.create_dds_item_assignment('NACHOUI', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '669', sysdate, null); -- Inserting RoleToUserAssignment 'NAUGUSTH/H_EFS2_LOC_AUTH' harmony.usermgt.create_role_to_user_assignment('NAUGUSTH', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NAUGUSTH/H_EFS2_LOC_AUTH harmony.usermgt.create_dds_item_assignment('NAUGUSTH', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '640', sysdate, null); -- Inserting RoleToUserAssignment 'NBAUTIS1/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('NBAUTIS1', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NBAUTIS1/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('NBAUTIS1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[63/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBAUTIS1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[60/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'NBENNETT/H_EFS2_LOC_AUTH' harmony.usermgt.create_role_to_user_assignment('NBENNETT', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NBENNETT/H_EFS2_LOC_AUTH harmony.usermgt.create_dds_item_assignment('NBENNETT', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '335', sysdate, null); -- Inserting RoleToUserAssignment 'NBENNETT/H_TPP_LOC_AUTH' harmony.usermgt.create_role_to_user_assignment('NBENNETT', 'H_TPP_LOC_AUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NBENNETT/H_TPP_LOC_AUTH harmony.usermgt.create_dds_item_assignment('NBENNETT', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '53', sysdate, null); -- Inserting RoleToUserAssignment 'NBITOIN/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('NBITOIN', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NBITOIN/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('NBITOIN', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999864', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBITOIN', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999834', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBITOIN', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999427', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBITOIN', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999417', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBITOIN', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999364', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBITOIN', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999187', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBITOIN', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999141', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBITOIN', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999111', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBITOIN', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998966', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBITOIN', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998932', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBITOIN', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '200010', sysdate, null); -- Inserting RoleToUserAssignment 'NBITOIN/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('NBITOIN', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NBITOIN/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('NBITOIN', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999864', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBITOIN', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999834', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBITOIN', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999427', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBITOIN', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999417', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBITOIN', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999364', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBITOIN', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999187', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBITOIN', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999141', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBITOIN', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999111', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBITOIN', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998966', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBITOIN', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998932', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBITOIN', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '200010', sysdate, null); -- Inserting RoleToUserAssignment 'NBITOIN/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('NBITOIN', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NBITOIN/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('NBITOIN', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[88/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBITOIN', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[178/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBITOIN', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[156/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBITOIN', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[116/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBITOIN', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[102/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'NBITOIN/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('NBITOIN', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NBITOIN/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('NBITOIN', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[88/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBITOIN', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11753/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBITOIN', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[116/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBITOIN', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11334/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBITOIN', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[108/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'NBITOIN/H_TPP_P2P_REPORT' harmony.usermgt.create_role_to_user_assignment('NBITOIN', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NBITOIN/H_TPP_P2P_REPORT harmony.usermgt.create_dds_item_assignment('NBITOIN', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '327', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBITOIN', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '300', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBITOIN', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '274', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBITOIN', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '191', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBITOIN', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '148', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBITOIN', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '120', sysdate, null); -- Inserting RoleToUserAssignment 'NBONDARE/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('NBONDARE', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NBONDARE/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('NBONDARE', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999887', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBONDARE', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999863', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBONDARE', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999862', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBONDARE', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999765', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBONDARE', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999659', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBONDARE', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999652', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBONDARE', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999644', sysdate, null); -- Inserting RoleToUserAssignment 'NBONDARE/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('NBONDARE', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NBONDARE/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('NBONDARE', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999887', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBONDARE', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999863', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBONDARE', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999862', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBONDARE', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999765', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBONDARE', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999659', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBONDARE', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999652', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBONDARE', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999644', sysdate, null); -- Inserting RoleToUserAssignment 'NBONDARE/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('NBONDARE', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NBONDARE/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('NBONDARE', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[94/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBONDARE', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[47/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBONDARE', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[154/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'NBONDARE/H_TPP_P2P_OFFERMGT' harmony.usermgt.create_role_to_user_assignment('NBONDARE', 'H_TPP_P2P_OFFERMGT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NBONDARE/H_TPP_P2P_OFFERMGT harmony.usermgt.create_dds_item_assignment('NBONDARE', 'H_TPP_P2P_OFFERMGT', 'TPP AP2PLE OC', 'ONE', '124', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBONDARE', 'H_TPP_P2P_OFFERMGT', 'TPP AP2PLE OC', 'ONE', '123', sysdate, null); -- Inserting RoleToUserAssignment 'NBONDARE/H_TPP_P2P_REPORT' harmony.usermgt.create_role_to_user_assignment('NBONDARE', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NBONDARE/H_TPP_P2P_REPORT harmony.usermgt.create_dds_item_assignment('NBONDARE', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '293', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBONDARE', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '292', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBONDARE', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '122', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBONDARE', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '121', sysdate, null); -- Inserting RoleToUserAssignment 'NBOUNDRO/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('NBOUNDRO', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NBOUNDRO/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('NBOUNDRO', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999737', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBOUNDRO', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998923', sysdate, null); -- Inserting RoleToUserAssignment 'NBOUNDRO/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('NBOUNDRO', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NBOUNDRO/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('NBOUNDRO', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999737', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBOUNDRO', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998923', sysdate, null); -- Inserting RoleToUserAssignment 'NBOUNDRO/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('NBOUNDRO', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NBOUNDRO/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('NBOUNDRO', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[225/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'NBOUNDRO/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('NBOUNDRO', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NBOUNDRO/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('NBOUNDRO', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[225/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'NBOUNDRO/H_TPP_LOC_AUTH' harmony.usermgt.create_role_to_user_assignment('NBOUNDRO', 'H_TPP_LOC_AUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NBOUNDRO/H_TPP_LOC_AUTH harmony.usermgt.create_dds_item_assignment('NBOUNDRO', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '8', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBOUNDRO', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '63', sysdate, null); harmony.usermgt.create_dds_item_assignment('NBOUNDRO', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '355', sysdate, null); -- Inserting RoleToUserAssignment 'NCELIKEL/H_EFS2_LOC_EDIT' harmony.usermgt.create_role_to_user_assignment('NCELIKEL', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NCELIKEL/H_EFS2_LOC_EDIT harmony.usermgt.create_dds_item_assignment('NCELIKEL', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '483', sysdate, null); -- Inserting RoleToUserAssignment 'NCHUTRUT/H_EFS2_LOC_AUTH' harmony.usermgt.create_role_to_user_assignment('NCHUTRUT', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NCHUTRUT/H_EFS2_LOC_AUTH harmony.usermgt.create_dds_item_assignment('NCHUTRUT', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '376', sysdate, null); -- Inserting RoleToUserAssignment 'NCHUTRUT/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('NCHUTRUT', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NCHUTRUT/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('NCHUTRUT', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[425/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'NDOMINGO/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('NDOMINGO', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NDOMINGO/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('NDOMINGO', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[63/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NDOMINGO', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[60/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'NEKBLOM/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('NEKBLOM', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NEKBLOM/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('NEKBLOM', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[176/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'NFITZGER/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('NFITZGER', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NFITZGER/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('NFITZGER', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[85/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NFITZGER', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[436/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NFITZGER', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[250/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NFITZGER', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11360/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'NFITZGER/H_TPP_LOC_AUTH' harmony.usermgt.create_role_to_user_assignment('NFITZGER', 'H_TPP_LOC_AUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NFITZGER/H_TPP_LOC_AUTH harmony.usermgt.create_dds_item_assignment('NFITZGER', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '77', sysdate, null); harmony.usermgt.create_dds_item_assignment('NFITZGER', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '76', sysdate, null); -- Inserting RoleToUserAssignment 'NGHESQUI/H_EFS2_LOC_REP_PARTY' harmony.usermgt.create_role_to_user_assignment('NGHESQUI', 'H_EFS2_LOC_REP_PARTY', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NGHESQUI/H_EFS2_LOC_REP_PARTY harmony.usermgt.create_dds_item_assignment('NGHESQUI', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '427', sysdate, null); -- Inserting RoleToUserAssignment 'NHANTTH/H_EFS2_LOC_AUTH' harmony.usermgt.create_role_to_user_assignment('NHANTTH', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NHANTTH/H_EFS2_LOC_AUTH harmony.usermgt.create_dds_item_assignment('NHANTTH', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '674', sysdate, null); -- Inserting RoleToUserAssignment 'NJADDAOU/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('NJADDAOU', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NJADDAOU/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('NJADDAOU', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11834/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'NJELAGIN/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('NJELAGIN', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NJELAGIN/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('NJELAGIN', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999839', sysdate, null); -- Inserting RoleToUserAssignment 'NJELAGIN/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('NJELAGIN', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NJELAGIN/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('NJELAGIN', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999839', sysdate, null); -- Inserting RoleToUserAssignment 'NJELAGIN/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('NJELAGIN', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NJELAGIN/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('NJELAGIN', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[104/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'NJUBIN/H_TPP_LOC_AUTH' harmony.usermgt.create_role_to_user_assignment('NJUBIN', 'H_TPP_LOC_AUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NJUBIN/H_TPP_LOC_AUTH harmony.usermgt.create_dds_item_assignment('NJUBIN', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '29', sysdate, null); harmony.usermgt.create_dds_item_assignment('NJUBIN', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '233', sysdate, null); -- Inserting RoleToUserAssignment 'NKHUMSH6/H_EFS2_LOC_EDIT' harmony.usermgt.create_role_to_user_assignment('NKHUMSH6', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NKHUMSH6/H_EFS2_LOC_EDIT harmony.usermgt.create_dds_item_assignment('NKHUMSH6', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '514', sysdate, null); harmony.usermgt.create_dds_item_assignment('NKHUMSH6', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '370', sysdate, null); -- Inserting RoleToUserAssignment 'NKIEFEL/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('NKIEFEL', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NKIEFEL/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('NKIEFEL', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999954', sysdate, null); -- Inserting RoleToUserAssignment 'NKIEFEL/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('NKIEFEL', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NKIEFEL/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('NKIEFEL', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999954', sysdate, null); -- Inserting RoleToUserAssignment 'NLEE1/H_EFS2_LOC_AUTH' harmony.usermgt.create_role_to_user_assignment('NLEE1', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NLEE1/H_EFS2_LOC_AUTH harmony.usermgt.create_dds_item_assignment('NLEE1', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '705', sysdate, null); -- Inserting RoleToUserAssignment 'NLEE1/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('NLEE1', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NLEE1/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('NLEE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11897/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NLEE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11895/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'NLIU35/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('NLIU35', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NLIU35/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('NLIU35', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999869', sysdate, null); harmony.usermgt.create_dds_item_assignment('NLIU35', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999708', sysdate, null); harmony.usermgt.create_dds_item_assignment('NLIU35', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999707', sysdate, null); harmony.usermgt.create_dds_item_assignment('NLIU35', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999706', sysdate, null); harmony.usermgt.create_dds_item_assignment('NLIU35', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999705', sysdate, null); harmony.usermgt.create_dds_item_assignment('NLIU35', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999089', sysdate, null); harmony.usermgt.create_dds_item_assignment('NLIU35', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998960', sysdate, null); -- Inserting RoleToUserAssignment 'NLIU35/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('NLIU35', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NLIU35/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('NLIU35', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999869', sysdate, null); harmony.usermgt.create_dds_item_assignment('NLIU35', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999708', sysdate, null); harmony.usermgt.create_dds_item_assignment('NLIU35', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999707', sysdate, null); harmony.usermgt.create_dds_item_assignment('NLIU35', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999706', sysdate, null); harmony.usermgt.create_dds_item_assignment('NLIU35', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999705', sysdate, null); harmony.usermgt.create_dds_item_assignment('NLIU35', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999089', sysdate, null); harmony.usermgt.create_dds_item_assignment('NLIU35', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998960', sysdate, null); -- Inserting RoleToUserAssignment 'NLIU35/H_ASP2PIRE1_SSC_MGR' harmony.usermgt.create_role_to_user_assignment('NLIU35', 'H_ASP2PIRE1_SSC_MGR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NLIU35/H_ASP2PIRE1_SSC_MGR harmony.usermgt.create_dds_item_assignment('NLIU35', 'H_ASP2PIRE1_SSC_MGR', 'TPP AP2PLE OC', 'ONE', '348', sysdate, null); harmony.usermgt.create_dds_item_assignment('NLIU35', 'H_ASP2PIRE1_SSC_MGR', 'TPP AP2PLE OC', 'ONE', '347', sysdate, null); harmony.usermgt.create_dds_item_assignment('NLIU35', 'H_ASP2PIRE1_SSC_MGR', 'TPP AP2PLE OC', 'ONE', '346', sysdate, null); harmony.usermgt.create_dds_item_assignment('NLIU35', 'H_ASP2PIRE1_SSC_MGR', 'TPP AP2PLE OC', 'ONE', '345', sysdate, null); -- Inserting RoleToUserAssignment 'NLIU35/H_ASP2PIRE2_SSC_MGR' harmony.usermgt.create_role_to_user_assignment('NLIU35', 'H_ASP2PIRE2_SSC_MGR', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'NLIU35/H_TPP_LOC_EDIT' harmony.usermgt.create_role_to_user_assignment('NLIU35', 'H_TPP_LOC_EDIT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NLIU35/H_TPP_LOC_EDIT harmony.usermgt.create_dds_item_assignment('NLIU35', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '48', sysdate, null); harmony.usermgt.create_dds_item_assignment('NLIU35', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '32', sysdate, null); -- Inserting RoleToUserAssignment 'NLIU35/H_TPP_LOC_REP' harmony.usermgt.create_role_to_user_assignment('NLIU35', 'H_TPP_LOC_REP', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NLIU35/H_TPP_LOC_REP harmony.usermgt.create_dds_item_assignment('NLIU35', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '49', sysdate, null); harmony.usermgt.create_dds_item_assignment('NLIU35', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '31', sysdate, null); -- Inserting RoleToUserAssignment 'NLIU35/H_TPP_P2P_OFFERMGT' harmony.usermgt.create_role_to_user_assignment('NLIU35', 'H_TPP_P2P_OFFERMGT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NLIU35/H_TPP_P2P_OFFERMGT harmony.usermgt.create_dds_item_assignment('NLIU35', 'H_TPP_P2P_OFFERMGT', 'TPP AP2PLE OC', 'ONE', '346', sysdate, null); -- Inserting RoleToUserAssignment 'NLIU35/H_TPP_P2P_REPORT' harmony.usermgt.create_role_to_user_assignment('NLIU35', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NLIU35/H_TPP_P2P_REPORT harmony.usermgt.create_dds_item_assignment('NLIU35', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '349', sysdate, null); -- Inserting RoleToUserAssignment 'NMAHUSAY/H_TPP_LOC_REP' harmony.usermgt.create_role_to_user_assignment('NMAHUSAY', 'H_TPP_LOC_REP', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NMAHUSAY/H_TPP_LOC_REP harmony.usermgt.create_dds_item_assignment('NMAHUSAY', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '71', sysdate, null); harmony.usermgt.create_dds_item_assignment('NMAHUSAY', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '43', sysdate, null); harmony.usermgt.create_dds_item_assignment('NMAHUSAY', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '29', sysdate, null); harmony.usermgt.create_dds_item_assignment('NMAHUSAY', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '233', sysdate, null); harmony.usermgt.create_dds_item_assignment('NMAHUSAY', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '14', sysdate, null); harmony.usermgt.create_dds_item_assignment('NMAHUSAY', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '13', sysdate, null); harmony.usermgt.create_dds_item_assignment('NMAHUSAY', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '12', sysdate, null); -- Inserting RoleToUserAssignment 'NMAHUSAY/H_TPP_P2P_REPORT' harmony.usermgt.create_role_to_user_assignment('NMAHUSAY', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NMAHUSAY/H_TPP_P2P_REPORT harmony.usermgt.create_dds_item_assignment('NMAHUSAY', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '329', sysdate, null); harmony.usermgt.create_dds_item_assignment('NMAHUSAY', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '328', sysdate, null); harmony.usermgt.create_dds_item_assignment('NMAHUSAY', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '302', sysdate, null); -- Inserting RoleToUserAssignment 'NMANALO/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('NMANALO', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NMANALO/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('NMANALO', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[164/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'NMANANGA/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('NMANANGA', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NMANANGA/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('NMANANGA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[96/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NMANANGA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[77/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NMANANGA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[69/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NMANANGA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[57/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NMANANGA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[54/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NMANANGA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[52/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NMANANGA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[51/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NMANANGA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[277/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NMANANGA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[259/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NMANANGA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[258/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'NMCCORM2/H_EFS2_LOC_EDIT' harmony.usermgt.create_role_to_user_assignment('NMCCORM2', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NMCCORM2/H_EFS2_LOC_EDIT harmony.usermgt.create_dds_item_assignment('NMCCORM2', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '694', sysdate, null); -- Inserting RoleToUserAssignment 'NMENAKAY/H_EFS2_LOC_EDIT' harmony.usermgt.create_role_to_user_assignment('NMENAKAY', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NMENAKAY/H_EFS2_LOC_EDIT harmony.usermgt.create_dds_item_assignment('NMENAKAY', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '709', sysdate, null); harmony.usermgt.create_dds_item_assignment('NMENAKAY', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '632', sysdate, null); harmony.usermgt.create_dds_item_assignment('NMENAKAY', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '605', sysdate, null); harmony.usermgt.create_dds_item_assignment('NMENAKAY', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '260', sysdate, null); -- Inserting RoleToUserAssignment 'NMENAKAY/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('NMENAKAY', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NMENAKAY/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('NMENAKAY', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11739/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NMENAKAY', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11425/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NMENAKAY', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11323/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'NNGUYENT1/H_EFS2_LOC_REP_PARTY' harmony.usermgt.create_role_to_user_assignment('NNGUYENT1', 'H_EFS2_LOC_REP_PARTY', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NNGUYENT1/H_EFS2_LOC_REP_PARTY harmony.usermgt.create_dds_item_assignment('NNGUYENT1', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '652', sysdate, null); -- Inserting RoleToUserAssignment 'NNUYDENS/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('NNUYDENS', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NNUYDENS/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('NNUYDENS', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999997', sysdate, null); harmony.usermgt.create_dds_item_assignment('NNUYDENS', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999123', sysdate, null); harmony.usermgt.create_dds_item_assignment('NNUYDENS', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '100006', sysdate, null); -- Inserting RoleToUserAssignment 'NNUYDENS/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('NNUYDENS', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NNUYDENS/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('NNUYDENS', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999997', sysdate, null); harmony.usermgt.create_dds_item_assignment('NNUYDENS', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999123', sysdate, null); harmony.usermgt.create_dds_item_assignment('NNUYDENS', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '100006', sysdate, null); -- Inserting RoleToUserAssignment 'NNUYDENS/H_EFS2_LOC_EDIT' harmony.usermgt.create_role_to_user_assignment('NNUYDENS', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NNUYDENS/H_EFS2_LOC_EDIT harmony.usermgt.create_dds_item_assignment('NNUYDENS', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '711', sysdate, null); harmony.usermgt.create_dds_item_assignment('NNUYDENS', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '566', sysdate, null); harmony.usermgt.create_dds_item_assignment('NNUYDENS', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '544', sysdate, null); harmony.usermgt.create_dds_item_assignment('NNUYDENS', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '489', sysdate, null); harmony.usermgt.create_dds_item_assignment('NNUYDENS', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '362', sysdate, null); harmony.usermgt.create_dds_item_assignment('NNUYDENS', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '361', sysdate, null); harmony.usermgt.create_dds_item_assignment('NNUYDENS', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '279', sysdate, null); -- Inserting RoleToUserAssignment 'NNUYDENS/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('NNUYDENS', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NNUYDENS/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('NNUYDENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[286/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NNUYDENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11356/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NNUYDENS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11153/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'NNUYDENS/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('NNUYDENS', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NNUYDENS/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('NNUYDENS', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[93/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'NNUYDENS/H_TPP_P2P_REPORT' harmony.usermgt.create_role_to_user_assignment('NNUYDENS', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NNUYDENS/H_TPP_P2P_REPORT harmony.usermgt.create_dds_item_assignment('NNUYDENS', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '258', sysdate, null); -- Inserting RoleToUserAssignment 'NOCARROL/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('NOCARROL', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NOCARROL/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('NOCARROL', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999040', sysdate, null); -- Inserting RoleToUserAssignment 'NOCARROL/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('NOCARROL', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NOCARROL/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('NOCARROL', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999040', sysdate, null); -- Inserting RoleToUserAssignment 'NOCARROL/H_EFS2_LOC_AUTH' harmony.usermgt.create_role_to_user_assignment('NOCARROL', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NOCARROL/H_EFS2_LOC_AUTH harmony.usermgt.create_dds_item_assignment('NOCARROL', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '618', sysdate, null); harmony.usermgt.create_dds_item_assignment('NOCARROL', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '518', sysdate, null); -- Inserting RoleToUserAssignment 'NOCARROL/H_EFS2_LOC_REP_PARTY' harmony.usermgt.create_role_to_user_assignment('NOCARROL', 'H_EFS2_LOC_REP_PARTY', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NOCARROL/H_EFS2_LOC_REP_PARTY harmony.usermgt.create_dds_item_assignment('NOCARROL', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '619', sysdate, null); -- Inserting RoleToUserAssignment 'NOCARROL/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('NOCARROL', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NOCARROL/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('NOCARROL', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11602/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'NOCARROL/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('NOCARROL', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NOCARROL/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('NOCARROL', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11417/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'NOCARROL/H_TPP_P2P_REPORT' harmony.usermgt.create_role_to_user_assignment('NOCARROL', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NOCARROL/H_TPP_P2P_REPORT harmony.usermgt.create_dds_item_assignment('NOCARROL', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '269', sysdate, null); -- Inserting RoleToUserAssignment 'NPAVLOVA/H_EFS2_LOC_EDIT' harmony.usermgt.create_role_to_user_assignment('NPAVLOVA', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NPAVLOVA/H_EFS2_LOC_EDIT harmony.usermgt.create_dds_item_assignment('NPAVLOVA', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '614', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPAVLOVA', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '612', sysdate, null); -- Inserting RoleToUserAssignment 'NPAVLOVA/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('NPAVLOVA', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NPAVLOVA/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('NPAVLOVA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11756/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPAVLOVA', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11543/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'NPEETER2/BAM_REPORTER' harmony.usermgt.create_role_to_user_assignment('NPEETER2', 'BAM_REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NPEETER2/BAM_REPORTER harmony.usermgt.create_dds_item_assignment('NPEETER2', 'BAM_REPORTER', 'BAM Region', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'NPEETER2/HB_FM_COMBI_REQUEST' harmony.usermgt.create_role_to_user_assignment('NPEETER2', 'HB_FM_COMBI_REQUEST', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'NPEETER2/HERMES_CMEFF_REP_CTR' harmony.usermgt.create_role_to_user_assignment('NPEETER2', 'HERMES_CMEFF_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NPEETER2/HERMES_CMEFF_REP_CTR harmony.usermgt.create_dds_item_assignment('NPEETER2', 'HERMES_CMEFF_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'NPEETER2/HERMES_GRP_REP_CTR' harmony.usermgt.create_role_to_user_assignment('NPEETER2', 'HERMES_GRP_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NPEETER2/HERMES_GRP_REP_CTR harmony.usermgt.create_dds_item_assignment('NPEETER2', 'HERMES_GRP_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'NPEETER2/HERMES_IDTXN_REP_CTR' harmony.usermgt.create_role_to_user_assignment('NPEETER2', 'HERMES_IDTXN_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NPEETER2/HERMES_IDTXN_REP_CTR harmony.usermgt.create_dds_item_assignment('NPEETER2', 'HERMES_IDTXN_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'NPEETER2/HERMES_STAT_REP_CTR' harmony.usermgt.create_role_to_user_assignment('NPEETER2', 'HERMES_STAT_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NPEETER2/HERMES_STAT_REP_CTR harmony.usermgt.create_dds_item_assignment('NPEETER2', 'HERMES_STAT_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'NPEETER2/HERMES_STS_REP_CTR' harmony.usermgt.create_role_to_user_assignment('NPEETER2', 'HERMES_STS_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NPEETER2/HERMES_STS_REP_CTR harmony.usermgt.create_dds_item_assignment('NPEETER2', 'HERMES_STS_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'NPEETER2/HERMES_SYM_REC_CTR' harmony.usermgt.create_role_to_user_assignment('NPEETER2', 'HERMES_SYM_REC_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NPEETER2/HERMES_SYM_REC_CTR harmony.usermgt.create_dds_item_assignment('NPEETER2', 'HERMES_SYM_REC_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'NPEETER2/HERMES_TXN_REP_CTR' harmony.usermgt.create_role_to_user_assignment('NPEETER2', 'HERMES_TXN_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NPEETER2/HERMES_TXN_REP_CTR harmony.usermgt.create_dds_item_assignment('NPEETER2', 'HERMES_TXN_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'NPEETER2/HERMES_VAVO_REP_CTR' harmony.usermgt.create_role_to_user_assignment('NPEETER2', 'HERMES_VAVO_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NPEETER2/HERMES_VAVO_REP_CTR harmony.usermgt.create_dds_item_assignment('NPEETER2', 'HERMES_VAVO_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'NPEETER2/H_BANKDIR_BO_USER' harmony.usermgt.create_role_to_user_assignment('NPEETER2', 'H_BANKDIR_BO_USER', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'NPEETER2/H_COMMONS_BO_USER' harmony.usermgt.create_role_to_user_assignment('NPEETER2', 'H_COMMONS_BO_USER', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'NPEETER2/H_DLINK_BO_USER' harmony.usermgt.create_role_to_user_assignment('NPEETER2', 'H_DLINK_BO_USER', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'NPEETER2/H_DLINK_REPORTING' harmony.usermgt.create_role_to_user_assignment('NPEETER2', 'H_DLINK_REPORTING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'NPEETER2/H_EFS2_BO_USER' harmony.usermgt.create_role_to_user_assignment('NPEETER2', 'H_EFS2_BO_USER', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'NPEETER2/H_NETTING_BO_USER' harmony.usermgt.create_role_to_user_assignment('NPEETER2', 'H_NETTING_BO_USER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NPEETER2/H_NETTING_BO_USER harmony.usermgt.create_dds_item_assignment('NPEETER2', 'H_NETTING_BO_USER', 'Treasury Center Netting Participant', 'ONE', '[7/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'H_NETTING_BO_USER', 'Treasury Center Netting Participant', 'ONE', '[5/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'H_NETTING_BO_USER', 'Treasury Center Netting Participant', 'ONE', '[233/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'H_NETTING_BO_USER', 'Treasury Center Netting Participant', 'ONE', '[223/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'H_NETTING_BO_USER', 'Treasury Center Netting Participant', 'ONE', '[222/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'H_NETTING_BO_USER', 'Treasury Center Netting Participant', 'ONE', '[11486/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'H_NETTING_BO_USER', 'Treasury Center Netting Participant', 'ONE', '[11120/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'H_NETTING_BO_USER', 'Treasury Center Netting Participant', 'ONE', '[1/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'NPEETER2/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('NPEETER2', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NPEETER2/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('NPEETER2', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[93/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[254/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[142/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11419/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11356/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11347/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11212/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'NPEETER2/H_NETTING_LOC_REP_TC' harmony.usermgt.create_role_to_user_assignment('NPEETER2', 'H_NETTING_LOC_REP_TC', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NPEETER2/H_NETTING_LOC_REP_TC harmony.usermgt.create_dds_item_assignment('NPEETER2', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[7/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[233/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[223/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[222/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[11486/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[11120/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'NPEETER2/H_SWIFTCOM_RELEASER' harmony.usermgt.create_role_to_user_assignment('NPEETER2', 'H_SWIFTCOM_RELEASER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NPEETER2/H_SWIFTCOM_RELEASER harmony.usermgt.create_dds_item_assignment('NPEETER2', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '15', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '14', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPEETER2', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '13', sysdate, null); -- Inserting RoleToUserAssignment 'NPEETER2/H_SWIFTCOM_REPORTER' harmony.usermgt.create_role_to_user_assignment('NPEETER2', 'H_SWIFTCOM_REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NPEETER2/H_SWIFTCOM_REPORTER harmony.usermgt.create_dds_item_assignment('NPEETER2', 'H_SWIFTCOM_REPORTER', 'SWIFTCOM FM Source', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'NPEETER2/H_SWIFTCOM_STADA_MGR' harmony.usermgt.create_role_to_user_assignment('NPEETER2', 'H_SWIFTCOM_STADA_MGR', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'NPEETER2/H_TOPS_BO_USER' harmony.usermgt.create_role_to_user_assignment('NPEETER2', 'H_TOPS_BO_USER', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'NPEETER2/H_TPP_BO_USER' harmony.usermgt.create_role_to_user_assignment('NPEETER2', 'H_TPP_BO_USER', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'NPLACZEK/H_EFS2_LOC_AUTH' harmony.usermgt.create_role_to_user_assignment('NPLACZEK', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NPLACZEK/H_EFS2_LOC_AUTH harmony.usermgt.create_dds_item_assignment('NPLACZEK', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '293', sysdate, null); harmony.usermgt.create_dds_item_assignment('NPLACZEK', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '290', sysdate, null); -- Inserting RoleToUserAssignment 'NPOPP/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('NPOPP', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NPOPP/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('NPOPP', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[237/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'NPRAIWET/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('NPRAIWET', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NPRAIWET/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('NPRAIWET', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[425/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'NREECE1/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('NREECE1', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NREECE1/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('NREECE1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[62/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'NROMLAH1/H_EFS2_LOC_REP_PARTY' harmony.usermgt.create_role_to_user_assignment('NROMLAH1', 'H_EFS2_LOC_REP_PARTY', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NROMLAH1/H_EFS2_LOC_REP_PARTY harmony.usermgt.create_dds_item_assignment('NROMLAH1', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '307', sysdate, null); -- Inserting RoleToUserAssignment 'NROMLAH1/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('NROMLAH1', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NROMLAH1/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('NROMLAH1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[133/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'NSAMPAIO/BAM_MANAGER' harmony.usermgt.create_role_to_user_assignment('NSAMPAIO', 'BAM_MANAGER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NSAMPAIO/BAM_MANAGER harmony.usermgt.create_dds_item_assignment('NSAMPAIO', 'BAM_MANAGER', 'BAM Region', 'ONE', '3', sysdate, null); -- Inserting RoleToUserAssignment 'NSAMPAIO/BAM_REPORTER' harmony.usermgt.create_role_to_user_assignment('NSAMPAIO', 'BAM_REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NSAMPAIO/BAM_REPORTER harmony.usermgt.create_dds_item_assignment('NSAMPAIO', 'BAM_REPORTER', 'BAM Region', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'NSAMPAIO/HERMES_CMEFF_REP_CTR' harmony.usermgt.create_role_to_user_assignment('NSAMPAIO', 'HERMES_CMEFF_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NSAMPAIO/HERMES_CMEFF_REP_CTR harmony.usermgt.create_dds_item_assignment('NSAMPAIO', 'HERMES_CMEFF_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'NSAMPAIO/HERMES_GRP_REP_CTR' harmony.usermgt.create_role_to_user_assignment('NSAMPAIO', 'HERMES_GRP_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NSAMPAIO/HERMES_GRP_REP_CTR harmony.usermgt.create_dds_item_assignment('NSAMPAIO', 'HERMES_GRP_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'NSAMPAIO/HERMES_STAT_REP_CTR' harmony.usermgt.create_role_to_user_assignment('NSAMPAIO', 'HERMES_STAT_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NSAMPAIO/HERMES_STAT_REP_CTR harmony.usermgt.create_dds_item_assignment('NSAMPAIO', 'HERMES_STAT_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'NSAMPAIO/HERMES_STS_REP_CTR' harmony.usermgt.create_role_to_user_assignment('NSAMPAIO', 'HERMES_STS_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NSAMPAIO/HERMES_STS_REP_CTR harmony.usermgt.create_dds_item_assignment('NSAMPAIO', 'HERMES_STS_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'NSAMPAIO/HERMES_SYM_REC_CTR' harmony.usermgt.create_role_to_user_assignment('NSAMPAIO', 'HERMES_SYM_REC_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NSAMPAIO/HERMES_SYM_REC_CTR harmony.usermgt.create_dds_item_assignment('NSAMPAIO', 'HERMES_SYM_REC_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'NSAMPAIO/HERMES_TXN_REP_CTR' harmony.usermgt.create_role_to_user_assignment('NSAMPAIO', 'HERMES_TXN_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NSAMPAIO/HERMES_TXN_REP_CTR harmony.usermgt.create_dds_item_assignment('NSAMPAIO', 'HERMES_TXN_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'NSAMPAIO/HERMES_VAVO_REP_CTR' harmony.usermgt.create_role_to_user_assignment('NSAMPAIO', 'HERMES_VAVO_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NSAMPAIO/HERMES_VAVO_REP_CTR harmony.usermgt.create_dds_item_assignment('NSAMPAIO', 'HERMES_VAVO_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'NSAMPAIO/H_EFS2_LOC_AUTH' harmony.usermgt.create_role_to_user_assignment('NSAMPAIO', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NSAMPAIO/H_EFS2_LOC_AUTH harmony.usermgt.create_dds_item_assignment('NSAMPAIO', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '708', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSAMPAIO', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '400', sysdate, null); -- Inserting RoleToUserAssignment 'NSAMPAIO/H_EFS2_LOC_EDIT' harmony.usermgt.create_role_to_user_assignment('NSAMPAIO', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NSAMPAIO/H_EFS2_LOC_EDIT harmony.usermgt.create_dds_item_assignment('NSAMPAIO', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '708', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSAMPAIO', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '398', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSAMPAIO', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '397', sysdate, null); -- Inserting RoleToUserAssignment 'NSAMPAIO/H_EFS2_LOC_REP_PARTY' harmony.usermgt.create_role_to_user_assignment('NSAMPAIO', 'H_EFS2_LOC_REP_PARTY', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NSAMPAIO/H_EFS2_LOC_REP_PARTY harmony.usermgt.create_dds_item_assignment('NSAMPAIO', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '558', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSAMPAIO', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '480', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSAMPAIO', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '399', sysdate, null); -- Inserting RoleToUserAssignment 'NSAMPAIO/H_SWIFTCOM_RELEASER' harmony.usermgt.create_role_to_user_assignment('NSAMPAIO', 'H_SWIFTCOM_RELEASER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NSAMPAIO/H_SWIFTCOM_RELEASER harmony.usermgt.create_dds_item_assignment('NSAMPAIO', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '13', sysdate, null); -- Inserting RoleToUserAssignment 'NSAMPAIO/H_TOPS_CNTRP_EXP_REP' harmony.usermgt.create_role_to_user_assignment('NSAMPAIO', 'H_TOPS_CNTRP_EXP_REP', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'NSCHELST/BAM_MANAGER' harmony.usermgt.create_role_to_user_assignment('NSCHELST', 'BAM_MANAGER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NSCHELST/BAM_MANAGER harmony.usermgt.create_dds_item_assignment('NSCHELST', 'BAM_MANAGER', 'BAM Region', 'ONE', '2', sysdate, null); -- Inserting RoleToUserAssignment 'NSCHELST/BAM_REPORTER' harmony.usermgt.create_role_to_user_assignment('NSCHELST', 'BAM_REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NSCHELST/BAM_REPORTER harmony.usermgt.create_dds_item_assignment('NSCHELST', 'BAM_REPORTER', 'BAM Region', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'NSCHELST/HERMES_CMEFF_REP_CTR' harmony.usermgt.create_role_to_user_assignment('NSCHELST', 'HERMES_CMEFF_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NSCHELST/HERMES_CMEFF_REP_CTR harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HERMES_CMEFF_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'NSCHELST/HERMES_GRP_REP_CTR' harmony.usermgt.create_role_to_user_assignment('NSCHELST', 'HERMES_GRP_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NSCHELST/HERMES_GRP_REP_CTR harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HERMES_GRP_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'NSCHELST/HERMES_IDTXN_REP_CTR' harmony.usermgt.create_role_to_user_assignment('NSCHELST', 'HERMES_IDTXN_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NSCHELST/HERMES_IDTXN_REP_CTR harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HERMES_IDTXN_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'NSCHELST/HERMES_STAT_REP_CTR' harmony.usermgt.create_role_to_user_assignment('NSCHELST', 'HERMES_STAT_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NSCHELST/HERMES_STAT_REP_CTR harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HERMES_STAT_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'NSCHELST/HERMES_STS_REP_CTR' harmony.usermgt.create_role_to_user_assignment('NSCHELST', 'HERMES_STS_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NSCHELST/HERMES_STS_REP_CTR harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HERMES_STS_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'NSCHELST/HERMES_SYM_REC_CTR' harmony.usermgt.create_role_to_user_assignment('NSCHELST', 'HERMES_SYM_REC_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NSCHELST/HERMES_SYM_REC_CTR harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HERMES_SYM_REC_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'NSCHELST/HERMES_TXN_REP_CTR' harmony.usermgt.create_role_to_user_assignment('NSCHELST', 'HERMES_TXN_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NSCHELST/HERMES_TXN_REP_CTR harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HERMES_TXN_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'NSCHELST/HERMES_VAVO_REP_CTR' harmony.usermgt.create_role_to_user_assignment('NSCHELST', 'HERMES_VAVO_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NSCHELST/HERMES_VAVO_REP_CTR harmony.usermgt.create_dds_item_assignment('NSCHELST', 'HERMES_VAVO_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'NSCHELST/H_EFS2_CTR_REP' harmony.usermgt.create_role_to_user_assignment('NSCHELST', 'H_EFS2_CTR_REP', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'NSCHELST/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NSCHELST/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[94/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[93/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[91/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[89/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[88/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[58/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[47/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[439/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[438/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[434/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[411/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[397/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[38/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[348/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[344/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[342/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[288/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[286/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[281/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[276/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[268/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[267/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[266/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[264/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[263/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[254/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[253/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[246/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[244/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[238/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[237/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[232/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[229/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[225/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[219/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[218/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[217/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[215/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[208/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[207/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[190/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[179/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[178/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[177/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[176/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[175/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[174/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[173/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[172/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[171/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[170/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[169/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[168/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[161/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[160/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[159/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[156/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[155/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[154/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[153/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[147/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[146/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[144/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[141/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[140/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[131/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[130/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[129/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[127/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11991/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11983/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11981/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11973/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11930/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11927/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11924/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11919/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11918/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11917/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11881/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11865/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11862/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11436/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11417/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[114/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11385/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11362/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11358/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11357/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11349/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11342/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11334/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11327/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11319/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11272/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11260/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11237/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11235/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11234/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11233/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11232/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11230/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11218/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11217/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11216/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11212/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11080/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11072/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11070/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11061/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11015/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[109/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[108/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[107/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[106/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[105/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[104/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[103/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[102/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11091/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[111/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11106/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11130/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11147/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11148/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11153/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11178/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11184/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11194/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11195/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[112/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11495/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[115/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11536/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11537/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11543/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11562/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11566/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11575/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11580/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11582/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[116/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11627/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11628/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11629/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11635/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11637/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11654/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11655/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11661/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11670/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11695/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11697/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11699/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[117/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11710/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11713/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11737/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11753/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11755/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11756/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11761/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11764/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11767/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11769/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11771/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11780/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11783/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11785/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11805/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11818/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11820/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11825/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11841/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11842/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11843/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11844/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11846/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11847/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'NSCHELST/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('NSCHELST', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NSCHELST/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[49/CC]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11356/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11687/CC]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11688/CC]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11689/CC]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11741/CC]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11743/CC]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11744/CC]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11745/CC]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11790/CC]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11831/CC]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11978/CC]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11985/CC]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[142/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'NSCHELST/H_NETTING_LOC_REP_TC' harmony.usermgt.create_role_to_user_assignment('NSCHELST', 'H_NETTING_LOC_REP_TC', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NSCHELST/H_NETTING_LOC_REP_TC harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[7/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[233/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[11486/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[11120/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'NSCHELST/H_SWIFTCOM_REPORTER' harmony.usermgt.create_role_to_user_assignment('NSCHELST', 'H_SWIFTCOM_REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NSCHELST/H_SWIFTCOM_REPORTER harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_SWIFTCOM_REPORTER', 'SWIFTCOM FM Source', 'ONE', '14', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSCHELST', 'H_SWIFTCOM_REPORTER', 'SWIFTCOM FM Source', 'ONE', '13', sysdate, null); -- Inserting RoleToUserAssignment 'NSCHELST/H_TPP_CTR_REP' harmony.usermgt.create_role_to_user_assignment('NSCHELST', 'H_TPP_CTR_REP', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'NSHAH15/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('NSHAH15', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NSHAH15/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('NSHAH15', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999605', sysdate, null); -- Inserting RoleToUserAssignment 'NSHAH15/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('NSHAH15', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NSHAH15/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('NSHAH15', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999605', sysdate, null); -- Inserting RoleToUserAssignment 'NSMITH3/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('NSMITH3', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NSMITH3/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('NSMITH3', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[88/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSMITH3', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11699/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSMITH3', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11697/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSMITH3', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11661/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSMITH3', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[116/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSMITH3', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11582/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSMITH3', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11580/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSMITH3', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11566/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSMITH3', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11536/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSMITH3', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11495/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSMITH3', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11349/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSMITH3', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11342/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSMITH3', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11334/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSMITH3', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[102/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSMITH3', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11753/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSMITH3', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[128/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSMITH3', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[129/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSMITH3', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[130/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSMITH3', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[131/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSMITH3', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[140/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSMITH3', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[147/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSMITH3', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[153/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSMITH3', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[156/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSMITH3', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[168/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSMITH3', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[178/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSMITH3', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[344/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'NSMITH3/H_TPP_LOC_AUTH' harmony.usermgt.create_role_to_user_assignment('NSMITH3', 'H_TPP_LOC_AUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NSMITH3/H_TPP_LOC_AUTH harmony.usermgt.create_dds_item_assignment('NSMITH3', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '71', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSMITH3', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '14', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSMITH3', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '13', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSMITH3', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '12', sysdate, null); -- Inserting RoleToUserAssignment 'NSMITH3/H_TPP_LOC_REP' harmony.usermgt.create_role_to_user_assignment('NSMITH3', 'H_TPP_LOC_REP', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NSMITH3/H_TPP_LOC_REP harmony.usermgt.create_dds_item_assignment('NSMITH3', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '65', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSMITH3', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '51', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSMITH3', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '45', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSMITH3', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '44', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSMITH3', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '361', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSMITH3', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '358', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSMITH3', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '195', sysdate, null); -- Inserting RoleToUserAssignment 'NSUKUMAR/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('NSUKUMAR', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NSUKUMAR/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('NSUKUMAR', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999524', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSUKUMAR', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999222', sysdate, null); -- Inserting RoleToUserAssignment 'NSUKUMAR/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('NSUKUMAR', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NSUKUMAR/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('NSUKUMAR', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999524', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSUKUMAR', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999222', sysdate, null); -- Inserting RoleToUserAssignment 'NSUKUMAR/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('NSUKUMAR', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NSUKUMAR/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('NSUKUMAR', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[409/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NSUKUMAR', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[100/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'NTHOMAS1/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('NTHOMAS1', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NTHOMAS1/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('NTHOMAS1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[246/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'NTOYNE/H_EFS2_LOC_REP_PARTY' harmony.usermgt.create_role_to_user_assignment('NTOYNE', 'H_EFS2_LOC_REP_PARTY', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NTOYNE/H_EFS2_LOC_REP_PARTY harmony.usermgt.create_dds_item_assignment('NTOYNE', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '426', sysdate, null); -- Inserting RoleToUserAssignment 'NTRUONG/H_EFS2_LOC_REP_PARTY' harmony.usermgt.create_role_to_user_assignment('NTRUONG', 'H_EFS2_LOC_REP_PARTY', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NTRUONG/H_EFS2_LOC_REP_PARTY harmony.usermgt.create_dds_item_assignment('NTRUONG', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '652', sysdate, null); -- Inserting RoleToUserAssignment 'NTSCHANZ/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('NTSCHANZ', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NTSCHANZ/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('NTSCHANZ', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999514', sysdate, null); -- Inserting RoleToUserAssignment 'NTSCHANZ/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('NTSCHANZ', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NTSCHANZ/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('NTSCHANZ', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999514', sysdate, null); -- Inserting RoleToUserAssignment 'NVANGEEL/BAM_REPORTER' harmony.usermgt.create_role_to_user_assignment('NVANGEEL', 'BAM_REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NVANGEEL/BAM_REPORTER harmony.usermgt.create_dds_item_assignment('NVANGEEL', 'BAM_REPORTER', 'BAM Region', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'NVANGEEL/HB_FM_COMBI_VIEW' harmony.usermgt.create_role_to_user_assignment('NVANGEEL', 'HB_FM_COMBI_VIEW', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'NVANGEEL/HERMES_IM_SUPPORT' harmony.usermgt.create_role_to_user_assignment('NVANGEEL', 'HERMES_IM_SUPPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NVANGEEL/HERMES_IM_SUPPORT harmony.usermgt.create_dds_item_assignment('NVANGEEL', 'HERMES_IM_SUPPORT', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'NVANGEEL/H_CHAINS_IM_SUPPORT' harmony.usermgt.create_role_to_user_assignment('NVANGEEL', 'H_CHAINS_IM_SUPPORT', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'NVANGEEL/H_DLINK_IM_SUPPORT' harmony.usermgt.create_role_to_user_assignment('NVANGEEL', 'H_DLINK_IM_SUPPORT', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'NVANGEEL/H_EFS2_IM_SUPPORT' harmony.usermgt.create_role_to_user_assignment('NVANGEEL', 'H_EFS2_IM_SUPPORT', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'NVANGEEL/H_GXRS_IM_SUPPORT' harmony.usermgt.create_role_to_user_assignment('NVANGEEL', 'H_GXRS_IM_SUPPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NVANGEEL/H_GXRS_IM_SUPPORT harmony.usermgt.create_dds_item_assignment('NVANGEEL', 'H_GXRS_IM_SUPPORT', 'GXRS instructing accounts in ART', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'NVANGEEL/H_P2P_IM_SUPPORT' harmony.usermgt.create_role_to_user_assignment('NVANGEEL', 'H_P2P_IM_SUPPORT', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'NVANGEEL/H_SWIFTCOM_IM_SUP' harmony.usermgt.create_role_to_user_assignment('NVANGEEL', 'H_SWIFTCOM_IM_SUP', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NVANGEEL/H_SWIFTCOM_IM_SUP harmony.usermgt.create_dds_item_assignment('NVANGEEL', 'H_SWIFTCOM_IM_SUP', 'SWIFTCOM FM Source', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'NVANGEEL/H_TOPS_IM_SUPPORT' harmony.usermgt.create_role_to_user_assignment('NVANGEEL', 'H_TOPS_IM_SUPPORT', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'NVANGEEL/H_TPP_IM_SUPPORT' harmony.usermgt.create_role_to_user_assignment('NVANGEEL', 'H_TPP_IM_SUPPORT', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'NVASWAN/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('NVASWAN', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NVASWAN/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('NVASWAN', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999298', sysdate, null); harmony.usermgt.create_dds_item_assignment('NVASWAN', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999297', sysdate, null); harmony.usermgt.create_dds_item_assignment('NVASWAN', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999296', sysdate, null); -- Inserting RoleToUserAssignment 'NVASWAN/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('NVASWAN', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NVASWAN/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('NVASWAN', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999298', sysdate, null); harmony.usermgt.create_dds_item_assignment('NVASWAN', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999297', sysdate, null); harmony.usermgt.create_dds_item_assignment('NVASWAN', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999296', sysdate, null); -- Inserting RoleToUserAssignment 'NVIERNES/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('NVIERNES', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NVIERNES/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('NVIERNES', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999708', sysdate, null); -- Inserting RoleToUserAssignment 'NVIERNES/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('NVIERNES', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NVIERNES/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('NVIERNES', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999708', sysdate, null); -- Inserting RoleToUserAssignment 'NVIERNES/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('NVIERNES', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NVIERNES/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('NVIERNES', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[124/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NVIERNES', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11993/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NVIERNES', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11989/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('NVIERNES', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11380/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'NVIERNES/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('NVIERNES', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NVIERNES/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('NVIERNES', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[122/CC]', sysdate, null); -- Inserting RoleToUserAssignment 'NWOOD4/H_EFS2_LOC_AUTH' harmony.usermgt.create_role_to_user_assignment('NWOOD4', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NWOOD4/H_EFS2_LOC_AUTH harmony.usermgt.create_dds_item_assignment('NWOOD4', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '524', sysdate, null); -- Inserting RoleToUserAssignment 'NYUILL/H_EFS2_LOC_EDIT' harmony.usermgt.create_role_to_user_assignment('NYUILL', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for NYUILL/H_EFS2_LOC_EDIT harmony.usermgt.create_dds_item_assignment('NYUILL', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '521', sysdate, null); -- Inserting RoleToUserAssignment 'OBALATON/H_EFS2_LOC_EDIT' harmony.usermgt.create_role_to_user_assignment('OBALATON', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for OBALATON/H_EFS2_LOC_EDIT harmony.usermgt.create_dds_item_assignment('OBALATON', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '449', sysdate, null); -- Inserting RoleToUserAssignment 'OBALATON/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('OBALATON', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for OBALATON/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('OBALATON', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11070/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'OCATTIN/H_EFS2_LOC_REP_PARTY' harmony.usermgt.create_role_to_user_assignment('OCATTIN', 'H_EFS2_LOC_REP_PARTY', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for OCATTIN/H_EFS2_LOC_REP_PARTY harmony.usermgt.create_dds_item_assignment('OCATTIN', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '684', sysdate, null); harmony.usermgt.create_dds_item_assignment('OCATTIN', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '648', sysdate, null); harmony.usermgt.create_dds_item_assignment('OCATTIN', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '638', sysdate, null); harmony.usermgt.create_dds_item_assignment('OCATTIN', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '584', sysdate, null); harmony.usermgt.create_dds_item_assignment('OCATTIN', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '550', sysdate, null); harmony.usermgt.create_dds_item_assignment('OCATTIN', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '468', sysdate, null); -- Inserting RoleToUserAssignment 'OCATTIN/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('OCATTIN', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for OCATTIN/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('OCATTIN', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11927/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('OCATTIN', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11919/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('OCATTIN', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11918/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('OCATTIN', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11820/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'OGIESECK/H_EFS2_LOC_AUTH' harmony.usermgt.create_role_to_user_assignment('OGIESECK', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for OGIESECK/H_EFS2_LOC_AUTH harmony.usermgt.create_dds_item_assignment('OGIESECK', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '293', sysdate, null); harmony.usermgt.create_dds_item_assignment('OGIESECK', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '290', sysdate, null); -- Inserting RoleToUserAssignment 'OGIESECK/H_EFS2_LOC_EDIT' harmony.usermgt.create_role_to_user_assignment('OGIESECK', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for OGIESECK/H_EFS2_LOC_EDIT harmony.usermgt.create_dds_item_assignment('OGIESECK', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '293', sysdate, null); harmony.usermgt.create_dds_item_assignment('OGIESECK', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '290', sysdate, null); -- Inserting RoleToUserAssignment 'OGURSKAY/H_EFS2_LOC_AUTH' harmony.usermgt.create_role_to_user_assignment('OGURSKAY', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for OGURSKAY/H_EFS2_LOC_AUTH harmony.usermgt.create_dds_item_assignment('OGURSKAY', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '551', sysdate, null); -- Inserting RoleToUserAssignment 'OHONSCHA/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('OHONSCHA', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for OHONSCHA/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('OHONSCHA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999427', sysdate, null); harmony.usermgt.create_dds_item_assignment('OHONSCHA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999417', sysdate, null); harmony.usermgt.create_dds_item_assignment('OHONSCHA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999183', sysdate, null); harmony.usermgt.create_dds_item_assignment('OHONSCHA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999182', sysdate, null); harmony.usermgt.create_dds_item_assignment('OHONSCHA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999006', sysdate, null); -- Inserting RoleToUserAssignment 'OHONSCHA/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('OHONSCHA', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for OHONSCHA/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('OHONSCHA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999427', sysdate, null); harmony.usermgt.create_dds_item_assignment('OHONSCHA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999417', sysdate, null); harmony.usermgt.create_dds_item_assignment('OHONSCHA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999183', sysdate, null); harmony.usermgt.create_dds_item_assignment('OHONSCHA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999182', sysdate, null); harmony.usermgt.create_dds_item_assignment('OHONSCHA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999006', sysdate, null); -- Inserting RoleToUserAssignment 'OHONSCHA/H_EFS2_LOC_AUTH' harmony.usermgt.create_role_to_user_assignment('OHONSCHA', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for OHONSCHA/H_EFS2_LOC_AUTH harmony.usermgt.create_dds_item_assignment('OHONSCHA', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '560', sysdate, null); harmony.usermgt.create_dds_item_assignment('OHONSCHA', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '292', sysdate, null); -- Inserting RoleToUserAssignment 'OKATSAOU/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('OKATSAOU', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for OKATSAOU/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('OKATSAOU', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999737', sysdate, null); -- Inserting RoleToUserAssignment 'OKATSAOU/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('OKATSAOU', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for OKATSAOU/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('OKATSAOU', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999737', sysdate, null); -- Inserting RoleToUserAssignment 'OKATSAOU/H_EFS2_LOC_AUTH' harmony.usermgt.create_role_to_user_assignment('OKATSAOU', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for OKATSAOU/H_EFS2_LOC_AUTH harmony.usermgt.create_dds_item_assignment('OKATSAOU', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '337', sysdate, null); -- Inserting RoleToUserAssignment 'OKATSAOU/H_TPP_LOC_AUTH' harmony.usermgt.create_role_to_user_assignment('OKATSAOU', 'H_TPP_LOC_AUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for OKATSAOU/H_TPP_LOC_AUTH harmony.usermgt.create_dds_item_assignment('OKATSAOU', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '8', sysdate, null); -- Inserting RoleToUserAssignment 'OKOVALEN/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('OKOVALEN', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for OKOVALEN/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('OKOVALEN', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999008', sysdate, null); -- Inserting RoleToUserAssignment 'OKOVALEN/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('OKOVALEN', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for OKOVALEN/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('OKOVALEN', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999008', sysdate, null); -- Inserting RoleToUserAssignment 'OKOVALEN/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('OKOVALEN', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for OKOVALEN/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('OKOVALEN', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[94/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('OKOVALEN', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[47/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('OKOVALEN', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[154/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('OKOVALEN', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11436/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'OKOVALEN/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('OKOVALEN', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for OKOVALEN/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('OKOVALEN', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[94/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('OKOVALEN', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[47/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('OKOVALEN', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[154/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('OKOVALEN', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11436/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'OKOVALEN/H_TPP_P2P_REPORT' harmony.usermgt.create_role_to_user_assignment('OKOVALEN', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for OKOVALEN/H_TPP_P2P_REPORT harmony.usermgt.create_dds_item_assignment('OKOVALEN', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '124', sysdate, null); harmony.usermgt.create_dds_item_assignment('OKOVALEN', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '123', sysdate, null); harmony.usermgt.create_dds_item_assignment('OKOVALEN', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '122', sysdate, null); harmony.usermgt.create_dds_item_assignment('OKOVALEN', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '121', sysdate, null); -- Inserting RoleToUserAssignment 'OKUSHNIR/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('OKUSHNIR', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for OKUSHNIR/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('OKUSHNIR', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11556/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'OMORALE9/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('OMORALE9', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for OMORALE9/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('OMORALE9', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11423/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('OMORALE9', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11347/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'OMUSKO/H_EFS2_LOC_REP_PARTY' harmony.usermgt.create_role_to_user_assignment('OMUSKO', 'H_EFS2_LOC_REP_PARTY', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for OMUSKO/H_EFS2_LOC_REP_PARTY harmony.usermgt.create_dds_item_assignment('OMUSKO', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '426', sysdate, null); -- Inserting RoleToUserAssignment 'OOERTLI/H_EFS2_LOC_AUTH' harmony.usermgt.create_role_to_user_assignment('OOERTLI', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for OOERTLI/H_EFS2_LOC_AUTH harmony.usermgt.create_dds_item_assignment('OOERTLI', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '413', sysdate, null); -- Inserting RoleToUserAssignment 'OOERTLI/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('OOERTLI', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for OOERTLI/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('OOERTLI', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[166/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'OOZDEMIR/H_EFS2_LOC_AUTH' harmony.usermgt.create_role_to_user_assignment('OOZDEMIR', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for OOZDEMIR/H_EFS2_LOC_AUTH harmony.usermgt.create_dds_item_assignment('OOZDEMIR', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '483', sysdate, null); -- Inserting RoleToUserAssignment 'OVIHTELI/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('OVIHTELI', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for OVIHTELI/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('OVIHTELI', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998943', sysdate, null); -- Inserting RoleToUserAssignment 'OVIHTELI/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('OVIHTELI', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for OVIHTELI/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('OVIHTELI', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998943', sysdate, null); -- Inserting RoleToUserAssignment 'OVIHTELI/H_EFS2_LOC_AUTH' harmony.usermgt.create_role_to_user_assignment('OVIHTELI', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for OVIHTELI/H_EFS2_LOC_AUTH harmony.usermgt.create_dds_item_assignment('OVIHTELI', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '517', sysdate, null); harmony.usermgt.create_dds_item_assignment('OVIHTELI', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '449', sysdate, null); -- Inserting RoleToUserAssignment 'OVIHTELI/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('OVIHTELI', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for OVIHTELI/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('OVIHTELI', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11983/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'OVOLKOVI/H_EFS2_LOC_EDIT' harmony.usermgt.create_role_to_user_assignment('OVOLKOVI', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for OVOLKOVI/H_EFS2_LOC_EDIT harmony.usermgt.create_dds_item_assignment('OVOLKOVI', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '615', sysdate, null); -- Inserting RoleToUserAssignment 'OVOLKOVI/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('OVOLKOVI', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for OVOLKOVI/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('OVOLKOVI', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11575/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'PANAND/H_EFS2_LOC_AUTH' harmony.usermgt.create_role_to_user_assignment('PANAND', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PANAND/H_EFS2_LOC_AUTH harmony.usermgt.create_dds_item_assignment('PANAND', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '576', sysdate, null); harmony.usermgt.create_dds_item_assignment('PANAND', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '382', sysdate, null); harmony.usermgt.create_dds_item_assignment('PANAND', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '380', sysdate, null); harmony.usermgt.create_dds_item_assignment('PANAND', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '378', sysdate, null); -- Inserting RoleToUserAssignment 'PBABIC/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('PBABIC', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PBABIC/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('PBABIC', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[144/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'PBABIC/H_TPP_LOC_AUTH' harmony.usermgt.create_role_to_user_assignment('PBABIC', 'H_TPP_LOC_AUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PBABIC/H_TPP_LOC_AUTH harmony.usermgt.create_dds_item_assignment('PBABIC', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '64', sysdate, null); -- Inserting RoleToUserAssignment 'PBACQUIE/H_TPP_LOC_AUTH' harmony.usermgt.create_role_to_user_assignment('PBACQUIE', 'H_TPP_LOC_AUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PBACQUIE/H_TPP_LOC_AUTH harmony.usermgt.create_dds_item_assignment('PBACQUIE', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '41', sysdate, null); -- Inserting RoleToUserAssignment 'PBARRY4/H_EFS2_LOC_EDIT' harmony.usermgt.create_role_to_user_assignment('PBARRY4', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PBARRY4/H_EFS2_LOC_EDIT harmony.usermgt.create_dds_item_assignment('PBARRY4', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '535', sysdate, null); harmony.usermgt.create_dds_item_assignment('PBARRY4', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '518', sysdate, null); harmony.usermgt.create_dds_item_assignment('PBARRY4', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '315', sysdate, null); -- Inserting RoleToUserAssignment 'PBOONRAC/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('PBOONRAC', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PBOONRAC/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('PBOONRAC', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[426/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'PBRANDT1/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('PBRANDT1', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PBRANDT1/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('PBRANDT1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11769/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'PBUCKLEY/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('PBUCKLEY', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PBUCKLEY/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('PBUCKLEY', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999448', sysdate, null); -- Inserting RoleToUserAssignment 'PBUCKLEY/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('PBUCKLEY', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PBUCKLEY/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('PBUCKLEY', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999448', sysdate, null); -- Inserting RoleToUserAssignment 'PBUCKLEY/H_EFS2_LOC_EDIT' harmony.usermgt.create_role_to_user_assignment('PBUCKLEY', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PBUCKLEY/H_EFS2_LOC_EDIT harmony.usermgt.create_dds_item_assignment('PBUCKLEY', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '535', sysdate, null); harmony.usermgt.create_dds_item_assignment('PBUCKLEY', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '315', sysdate, null); harmony.usermgt.create_dds_item_assignment('PBUCKLEY', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '314', sysdate, null); -- Inserting RoleToUserAssignment 'PBUCKLEY/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('PBUCKLEY', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PBUCKLEY/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('PBUCKLEY', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[142/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PBUCKLEY', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11068/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'PBYRNE3/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('PBYRNE3', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PBYRNE3/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('PBYRNE3', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[58/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'PCOLAS/H_EFS2_LOC_REP_PARTY' harmony.usermgt.create_role_to_user_assignment('PCOLAS', 'H_EFS2_LOC_REP_PARTY', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PCOLAS/H_EFS2_LOC_REP_PARTY harmony.usermgt.create_dds_item_assignment('PCOLAS', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '451', sysdate, null); -- Inserting RoleToUserAssignment 'PCSILVA7/BAM_MANAGER' harmony.usermgt.create_role_to_user_assignment('PCSILVA7', 'BAM_MANAGER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PCSILVA7/BAM_MANAGER harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'BAM_MANAGER', 'BAM Region', 'ONE', '3', sysdate, null); -- Inserting RoleToUserAssignment 'PCSILVA7/BAM_REPORTER' harmony.usermgt.create_role_to_user_assignment('PCSILVA7', 'BAM_REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PCSILVA7/BAM_REPORTER harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'BAM_REPORTER', 'BAM Region', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PCSILVA7/HERMES_CMEFF_REP_CTR' harmony.usermgt.create_role_to_user_assignment('PCSILVA7', 'HERMES_CMEFF_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PCSILVA7/HERMES_CMEFF_REP_CTR harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HERMES_CMEFF_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PCSILVA7/HERMES_GRP_REP_CTR' harmony.usermgt.create_role_to_user_assignment('PCSILVA7', 'HERMES_GRP_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PCSILVA7/HERMES_GRP_REP_CTR harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HERMES_GRP_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PCSILVA7/HERMES_STAT_REP_CTR' harmony.usermgt.create_role_to_user_assignment('PCSILVA7', 'HERMES_STAT_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PCSILVA7/HERMES_STAT_REP_CTR harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HERMES_STAT_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PCSILVA7/HERMES_STS_REP_CTR' harmony.usermgt.create_role_to_user_assignment('PCSILVA7', 'HERMES_STS_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PCSILVA7/HERMES_STS_REP_CTR harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HERMES_STS_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PCSILVA7/HERMES_SYM_REC_CTR' harmony.usermgt.create_role_to_user_assignment('PCSILVA7', 'HERMES_SYM_REC_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PCSILVA7/HERMES_SYM_REC_CTR harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HERMES_SYM_REC_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PCSILVA7/HERMES_TXN_REP_CTR' harmony.usermgt.create_role_to_user_assignment('PCSILVA7', 'HERMES_TXN_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PCSILVA7/HERMES_TXN_REP_CTR harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HERMES_TXN_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PCSILVA7/HERMES_VAVO_REP_CTR' harmony.usermgt.create_role_to_user_assignment('PCSILVA7', 'HERMES_VAVO_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PCSILVA7/HERMES_VAVO_REP_CTR harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'HERMES_VAVO_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PCSILVA7/H_EFS2_LOC_EDIT' harmony.usermgt.create_role_to_user_assignment('PCSILVA7', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PCSILVA7/H_EFS2_LOC_EDIT harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '708', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '480', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '400', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '399', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '398', sysdate, null); harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '397', sysdate, null); -- Inserting RoleToUserAssignment 'PCSILVA7/H_SWIFTCOM_REPORTER' harmony.usermgt.create_role_to_user_assignment('PCSILVA7', 'H_SWIFTCOM_REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PCSILVA7/H_SWIFTCOM_REPORTER harmony.usermgt.create_dds_item_assignment('PCSILVA7', 'H_SWIFTCOM_REPORTER', 'SWIFTCOM FM Source', 'ONE', '13', sysdate, null); -- Inserting RoleToUserAssignment 'PCSILVA7/H_TOPS_CNTRP_EXP_REP' harmony.usermgt.create_role_to_user_assignment('PCSILVA7', 'H_TOPS_CNTRP_EXP_REP', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PDEPAEPE/H_EFS2_LOC_AUTH' harmony.usermgt.create_role_to_user_assignment('PDEPAEPE', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PDEPAEPE/H_EFS2_LOC_AUTH harmony.usermgt.create_dds_item_assignment('PDEPAEPE', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '320', sysdate, null); harmony.usermgt.create_dds_item_assignment('PDEPAEPE', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '277', sysdate, null); -- Inserting RoleToUserAssignment 'PDEWANDE/H_EFS2_LOC_REP_PARTY' harmony.usermgt.create_role_to_user_assignment('PDEWANDE', 'H_EFS2_LOC_REP_PARTY', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PDEWANDE/H_EFS2_LOC_REP_PARTY harmony.usermgt.create_dds_item_assignment('PDEWANDE', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '697', sysdate, null); -- Inserting RoleToUserAssignment 'PDHOINE1/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('PDHOINE1', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PDHOINE1/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('PDHOINE1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[397/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PDHOINE1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[217/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PDHOINE1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11629/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PDHOINE1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[106/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PDHOINE1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[105/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'PDHOINE1/H_TPP_LOC_AUTH' harmony.usermgt.create_role_to_user_assignment('PDHOINE1', 'H_TPP_LOC_AUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PDHOINE1/H_TPP_LOC_AUTH harmony.usermgt.create_dds_item_assignment('PDHOINE1', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '107', sysdate, null); -- Inserting RoleToUserAssignment 'PDHOINE1/H_TPP_P2P_OFFERAUTH' harmony.usermgt.create_role_to_user_assignment('PDHOINE1', 'H_TPP_P2P_OFFERAUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PDHOINE1/H_TPP_P2P_OFFERAUTH harmony.usermgt.create_dds_item_assignment('PDHOINE1', 'H_TPP_P2P_OFFERAUTH', 'TPP AP2PLE OC', 'ONE', '344', sysdate, null); harmony.usermgt.create_dds_item_assignment('PDHOINE1', 'H_TPP_P2P_OFFERAUTH', 'TPP AP2PLE OC', 'ONE', '331', sysdate, null); -- Inserting RoleToUserAssignment 'PDIERCK3/HERMES_GRP_REP_CTR' harmony.usermgt.create_role_to_user_assignment('PDIERCK3', 'HERMES_GRP_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PDIERCK3/HERMES_GRP_REP_CTR harmony.usermgt.create_dds_item_assignment('PDIERCK3', 'HERMES_GRP_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PDIERCK3/HERMES_IDTXN_REP_CTR' harmony.usermgt.create_role_to_user_assignment('PDIERCK3', 'HERMES_IDTXN_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PDIERCK3/HERMES_IDTXN_REP_CTR harmony.usermgt.create_dds_item_assignment('PDIERCK3', 'HERMES_IDTXN_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PDIERCK3/HERMES_STAT_REP_CTR' harmony.usermgt.create_role_to_user_assignment('PDIERCK3', 'HERMES_STAT_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PDIERCK3/HERMES_STAT_REP_CTR harmony.usermgt.create_dds_item_assignment('PDIERCK3', 'HERMES_STAT_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PDIERCK3/HERMES_STS_REP_CTR' harmony.usermgt.create_role_to_user_assignment('PDIERCK3', 'HERMES_STS_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PDIERCK3/HERMES_STS_REP_CTR harmony.usermgt.create_dds_item_assignment('PDIERCK3', 'HERMES_STS_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PDIERCK3/HERMES_SYM_REC_CTR' harmony.usermgt.create_role_to_user_assignment('PDIERCK3', 'HERMES_SYM_REC_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PDIERCK3/HERMES_SYM_REC_CTR harmony.usermgt.create_dds_item_assignment('PDIERCK3', 'HERMES_SYM_REC_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PDIERCK3/HERMES_TXN_REP_CTR' harmony.usermgt.create_role_to_user_assignment('PDIERCK3', 'HERMES_TXN_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PDIERCK3/HERMES_TXN_REP_CTR harmony.usermgt.create_dds_item_assignment('PDIERCK3', 'HERMES_TXN_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PDIERCK3/HERMES_VAVO_REP_CTR' harmony.usermgt.create_role_to_user_assignment('PDIERCK3', 'HERMES_VAVO_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PDIERCK3/HERMES_VAVO_REP_CTR harmony.usermgt.create_dds_item_assignment('PDIERCK3', 'HERMES_VAVO_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PDIERCK3/H_GXRS_KEY_USER' harmony.usermgt.create_role_to_user_assignment('PDIERCK3', 'H_GXRS_KEY_USER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PDIERCK3/H_GXRS_KEY_USER harmony.usermgt.create_dds_item_assignment('PDIERCK3', 'H_GXRS_KEY_USER', 'C4S-GXRS as XAD originating system', 'ALL', null, sysdate, null); harmony.usermgt.create_dds_item_assignment('PDIERCK3', 'H_GXRS_KEY_USER', 'GXRS instructing accounts in ART', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PDIERCK3/H_NETTING_CTR_MGT' harmony.usermgt.create_role_to_user_assignment('PDIERCK3', 'H_NETTING_CTR_MGT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PDIERCK3/H_NETTING_CTR_MGT harmony.usermgt.create_dds_item_assignment('PDIERCK3', 'H_NETTING_CTR_MGT', 'Third Party Netting Participant', 'ALL', null, sysdate, null); harmony.usermgt.create_dds_item_assignment('PDIERCK3', 'H_NETTING_CTR_MGT', 'Treasury Center Netting Participant', 'ALL', null, sysdate, null); harmony.usermgt.create_dds_item_assignment('PDIERCK3', 'H_NETTING_CTR_MGT', 'Standard Netting Participant', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PDIERCK3/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('PDIERCK3', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PDIERCK3/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('PDIERCK3', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11212/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'PDIERCK3/H_P2P_KEY_USER' harmony.usermgt.create_role_to_user_assignment('PDIERCK3', 'H_P2P_KEY_USER', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PDIERCK3/H_SWIFTCOM_RELEASER' harmony.usermgt.create_role_to_user_assignment('PDIERCK3', 'H_SWIFTCOM_RELEASER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PDIERCK3/H_SWIFTCOM_RELEASER harmony.usermgt.create_dds_item_assignment('PDIERCK3', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '7', sysdate, null); harmony.usermgt.create_dds_item_assignment('PDIERCK3', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '6', sysdate, null); harmony.usermgt.create_dds_item_assignment('PDIERCK3', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '4', sysdate, null); harmony.usermgt.create_dds_item_assignment('PDIERCK3', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '2', sysdate, null); harmony.usermgt.create_dds_item_assignment('PDIERCK3', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '18', sysdate, null); harmony.usermgt.create_dds_item_assignment('PDIERCK3', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '17', sysdate, null); harmony.usermgt.create_dds_item_assignment('PDIERCK3', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '16', sysdate, null); harmony.usermgt.create_dds_item_assignment('PDIERCK3', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '15', sysdate, null); harmony.usermgt.create_dds_item_assignment('PDIERCK3', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '11', sysdate, null); harmony.usermgt.create_dds_item_assignment('PDIERCK3', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '10', sysdate, null); -- Inserting RoleToUserAssignment 'PDIERCK3/H_SWIFTCOM_REPORTER' harmony.usermgt.create_role_to_user_assignment('PDIERCK3', 'H_SWIFTCOM_REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PDIERCK3/H_SWIFTCOM_REPORTER harmony.usermgt.create_dds_item_assignment('PDIERCK3', 'H_SWIFTCOM_REPORTER', 'SWIFTCOM FM Source', 'ONE', '13', sysdate, null); -- Inserting RoleToUserAssignment 'PDIERCK3/H_SWIFTCOM_STADA_MGR' harmony.usermgt.create_role_to_user_assignment('PDIERCK3', 'H_SWIFTCOM_STADA_MGR', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PDIERCK3/H_TPP_CTR_AUTH' harmony.usermgt.create_role_to_user_assignment('PDIERCK3', 'H_TPP_CTR_AUTH', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PFARIA3/H_EFS2_LOC_AUTH' harmony.usermgt.create_role_to_user_assignment('PFARIA3', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PFARIA3/H_EFS2_LOC_AUTH harmony.usermgt.create_dds_item_assignment('PFARIA3', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '702', sysdate, null); -- Inserting RoleToUserAssignment 'PFORSBER/H_EFS2_LOC_AUTH' harmony.usermgt.create_role_to_user_assignment('PFORSBER', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PFORSBER/H_EFS2_LOC_AUTH harmony.usermgt.create_dds_item_assignment('PFORSBER', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '437', sysdate, null); -- Inserting RoleToUserAssignment 'PFOURMOI/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('PFOURMOI', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PFOURMOI/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('PFOURMOI', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999518', sysdate, null); -- Inserting RoleToUserAssignment 'PFOURMOI/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('PFOURMOI', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PFOURMOI/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('PFOURMOI', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999518', sysdate, null); -- Inserting RoleToUserAssignment 'PGEERTS1/BAM_REPORTER' harmony.usermgt.create_role_to_user_assignment('PGEERTS1', 'BAM_REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PGEERTS1/BAM_REPORTER harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'BAM_REPORTER', 'BAM Region', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PGEERTS1/HB_FM_COMBI_REQUEST' harmony.usermgt.create_role_to_user_assignment('PGEERTS1', 'HB_FM_COMBI_REQUEST', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PGEERTS1/HERMES_CMEFF_REP_CTR' harmony.usermgt.create_role_to_user_assignment('PGEERTS1', 'HERMES_CMEFF_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PGEERTS1/HERMES_CMEFF_REP_CTR harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'HERMES_CMEFF_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PGEERTS1/HERMES_GRP_REP_CTR' harmony.usermgt.create_role_to_user_assignment('PGEERTS1', 'HERMES_GRP_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PGEERTS1/HERMES_GRP_REP_CTR harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'HERMES_GRP_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PGEERTS1/HERMES_IDTXN_REP_CTR' harmony.usermgt.create_role_to_user_assignment('PGEERTS1', 'HERMES_IDTXN_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PGEERTS1/HERMES_IDTXN_REP_CTR harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'HERMES_IDTXN_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PGEERTS1/HERMES_STAT_REP_CTR' harmony.usermgt.create_role_to_user_assignment('PGEERTS1', 'HERMES_STAT_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PGEERTS1/HERMES_STAT_REP_CTR harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'HERMES_STAT_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PGEERTS1/HERMES_STS_REP_CTR' harmony.usermgt.create_role_to_user_assignment('PGEERTS1', 'HERMES_STS_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PGEERTS1/HERMES_STS_REP_CTR harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'HERMES_STS_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PGEERTS1/HERMES_SYM_REC_CTR' harmony.usermgt.create_role_to_user_assignment('PGEERTS1', 'HERMES_SYM_REC_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PGEERTS1/HERMES_SYM_REC_CTR harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'HERMES_SYM_REC_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PGEERTS1/HERMES_TXN_REP_CTR' harmony.usermgt.create_role_to_user_assignment('PGEERTS1', 'HERMES_TXN_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PGEERTS1/HERMES_TXN_REP_CTR harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'HERMES_TXN_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PGEERTS1/HERMES_VAVO_REP_CTR' harmony.usermgt.create_role_to_user_assignment('PGEERTS1', 'HERMES_VAVO_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PGEERTS1/HERMES_VAVO_REP_CTR harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'HERMES_VAVO_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PGEERTS1/H_BANKDIR_BO_USER' harmony.usermgt.create_role_to_user_assignment('PGEERTS1', 'H_BANKDIR_BO_USER', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PGEERTS1/H_COMMONS_BO_USER' harmony.usermgt.create_role_to_user_assignment('PGEERTS1', 'H_COMMONS_BO_USER', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PGEERTS1/H_DLINK_BO_USER' harmony.usermgt.create_role_to_user_assignment('PGEERTS1', 'H_DLINK_BO_USER', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PGEERTS1/H_DLINK_REPORTING' harmony.usermgt.create_role_to_user_assignment('PGEERTS1', 'H_DLINK_REPORTING', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PGEERTS1/H_EFS2_BO_USER' harmony.usermgt.create_role_to_user_assignment('PGEERTS1', 'H_EFS2_BO_USER', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PGEERTS1/H_NETTING_BO_USER' harmony.usermgt.create_role_to_user_assignment('PGEERTS1', 'H_NETTING_BO_USER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PGEERTS1/H_NETTING_BO_USER harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'H_NETTING_BO_USER', 'Treasury Center Netting Participant', 'ONE', '[7/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'H_NETTING_BO_USER', 'Treasury Center Netting Participant', 'ONE', '[5/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'H_NETTING_BO_USER', 'Treasury Center Netting Participant', 'ONE', '[233/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'H_NETTING_BO_USER', 'Treasury Center Netting Participant', 'ONE', '[223/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'H_NETTING_BO_USER', 'Treasury Center Netting Participant', 'ONE', '[222/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'H_NETTING_BO_USER', 'Treasury Center Netting Participant', 'ONE', '[11486/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'H_NETTING_BO_USER', 'Treasury Center Netting Participant', 'ONE', '[11120/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'H_NETTING_BO_USER', 'Treasury Center Netting Participant', 'ONE', '[1/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'PGEERTS1/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('PGEERTS1', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PGEERTS1/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[93/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[254/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[142/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11419/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11356/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11347/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11212/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'PGEERTS1/H_NETTING_LOC_REP_TC' harmony.usermgt.create_role_to_user_assignment('PGEERTS1', 'H_NETTING_LOC_REP_TC', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PGEERTS1/H_NETTING_LOC_REP_TC harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[7/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[233/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[223/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[222/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[11486/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[11120/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'PGEERTS1/H_SWIFTCOM_RELEASER' harmony.usermgt.create_role_to_user_assignment('PGEERTS1', 'H_SWIFTCOM_RELEASER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PGEERTS1/H_SWIFTCOM_RELEASER harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '15', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '14', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '13', sysdate, null); -- Inserting RoleToUserAssignment 'PGEERTS1/H_SWIFTCOM_REPORTER' harmony.usermgt.create_role_to_user_assignment('PGEERTS1', 'H_SWIFTCOM_REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PGEERTS1/H_SWIFTCOM_REPORTER harmony.usermgt.create_dds_item_assignment('PGEERTS1', 'H_SWIFTCOM_REPORTER', 'SWIFTCOM FM Source', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PGEERTS1/H_SWIFTCOM_STADA_MGR' harmony.usermgt.create_role_to_user_assignment('PGEERTS1', 'H_SWIFTCOM_STADA_MGR', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PGEERTS1/H_TOPS_BO_USER' harmony.usermgt.create_role_to_user_assignment('PGEERTS1', 'H_TOPS_BO_USER', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PGEERTS1/H_TPP_BO_USER' harmony.usermgt.create_role_to_user_assignment('PGEERTS1', 'H_TPP_BO_USER', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PGRAHAM/H_EFS2_LOC_REP_PARTY' harmony.usermgt.create_role_to_user_assignment('PGRAHAM', 'H_EFS2_LOC_REP_PARTY', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PGRAHAM/H_EFS2_LOC_REP_PARTY harmony.usermgt.create_dds_item_assignment('PGRAHAM', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '584', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGRAHAM', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '358', sysdate, null); -- Inserting RoleToUserAssignment 'PGRASSED/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('PGRASSED', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PGRASSED/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('PGRASSED', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999872', sysdate, null); -- Inserting RoleToUserAssignment 'PGRASSED/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('PGRASSED', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PGRASSED/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('PGRASSED', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999872', sysdate, null); -- Inserting RoleToUserAssignment 'PGRIFFIN1/H_EFS2_LOC_EDIT' harmony.usermgt.create_role_to_user_assignment('PGRIFFIN1', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PGRIFFIN1/H_EFS2_LOC_EDIT harmony.usermgt.create_dds_item_assignment('PGRIFFIN1', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '711', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGRIFFIN1', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '544', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGRIFFIN1', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '535', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGRIFFIN1', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '315', sysdate, null); harmony.usermgt.create_dds_item_assignment('PGRIFFIN1', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '314', sysdate, null); -- Inserting RoleToUserAssignment 'PGRIFFIN1/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('PGRIFFIN1', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PGRIFFIN1/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('PGRIFFIN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11068/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'PHERNAN/H_AP2OLLO_SSC_USER' harmony.usermgt.create_role_to_user_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PHERNAN/H_AP2OLLO_SSC_USER harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '407', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '341', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '340', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '337', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '335', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '334', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '297', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '296', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '295', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '283', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '282', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '281', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '280', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '279', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '268', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '267', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '266', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '265', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '264', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '263', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '262', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '261', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '260', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '259', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '200', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '199', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '198', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '197', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '196', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '194', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '193', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '184', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '183', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '182', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '181', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '180', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '179', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '178', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '177', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '176', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '175', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '174', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '173', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '172', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '171', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '170', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '169', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '168', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '155', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '154', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '153', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '152', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '151', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '145', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '144', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '143', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '141', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '140', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '139', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '138', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '137', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '156', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '157', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '158', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '159', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '160', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '161', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '162', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '163', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '164', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '165', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '166', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '167', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '201', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '202', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '203', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '204', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '205', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '206', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '207', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '208', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '209', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '210', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '211', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '212', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '213', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '214', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '215', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '216', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '217', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '218', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '219', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '220', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '221', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '222', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '223', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '224', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '225', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '226', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '227', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '228', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '229', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '230', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '231', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '232', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '236', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '237', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '238', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '239', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '240', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '241', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '242', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '243', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '244', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '245', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '246', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '247', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '248', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '250', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '251', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_AP2OLLO_SSC_USER', 'TPP AP2PLE OC', 'ONE', '252', sysdate, null); -- Inserting RoleToUserAssignment 'PHERNAN/H_AP2PLE_SSC_USER' harmony.usermgt.create_role_to_user_assignment('PHERNAN', 'H_AP2PLE_SSC_USER', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PHERNAN/H_SWIFTCOM_REPORTER' harmony.usermgt.create_role_to_user_assignment('PHERNAN', 'H_SWIFTCOM_REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PHERNAN/H_SWIFTCOM_REPORTER harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_SWIFTCOM_REPORTER', 'SWIFTCOM FM Source', 'ONE', '13', sysdate, null); -- Inserting RoleToUserAssignment 'PHERNAN/H_TPP_LOC_EDIT' harmony.usermgt.create_role_to_user_assignment('PHERNAN', 'H_TPP_LOC_EDIT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PHERNAN/H_TPP_LOC_EDIT harmony.usermgt.create_dds_item_assignment('PHERNAN', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '50', sysdate, null); -- Inserting RoleToUserAssignment 'PHOSKEN1/HERMES_GRP_REP_CTR' harmony.usermgt.create_role_to_user_assignment('PHOSKEN1', 'HERMES_GRP_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PHOSKEN1/HERMES_GRP_REP_CTR harmony.usermgt.create_dds_item_assignment('PHOSKEN1', 'HERMES_GRP_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PHOSKEN1/HERMES_IDTXN_REP_CTR' harmony.usermgt.create_role_to_user_assignment('PHOSKEN1', 'HERMES_IDTXN_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PHOSKEN1/HERMES_IDTXN_REP_CTR harmony.usermgt.create_dds_item_assignment('PHOSKEN1', 'HERMES_IDTXN_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PHOSKEN1/HERMES_STAT_REP_CTR' harmony.usermgt.create_role_to_user_assignment('PHOSKEN1', 'HERMES_STAT_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PHOSKEN1/HERMES_STAT_REP_CTR harmony.usermgt.create_dds_item_assignment('PHOSKEN1', 'HERMES_STAT_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PHOSKEN1/HERMES_SYM_REC_CTR' harmony.usermgt.create_role_to_user_assignment('PHOSKEN1', 'HERMES_SYM_REC_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PHOSKEN1/HERMES_SYM_REC_CTR harmony.usermgt.create_dds_item_assignment('PHOSKEN1', 'HERMES_SYM_REC_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PHOSKEN1/HERMES_TXN_REP_CTR' harmony.usermgt.create_role_to_user_assignment('PHOSKEN1', 'HERMES_TXN_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PHOSKEN1/HERMES_TXN_REP_CTR harmony.usermgt.create_dds_item_assignment('PHOSKEN1', 'HERMES_TXN_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PHOSKEN1/HERMES_VAVO_REP_CTR' harmony.usermgt.create_role_to_user_assignment('PHOSKEN1', 'HERMES_VAVO_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PHOSKEN1/HERMES_VAVO_REP_CTR harmony.usermgt.create_dds_item_assignment('PHOSKEN1', 'HERMES_VAVO_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PHOSKEN1/H_GXRS_KEY_USER' harmony.usermgt.create_role_to_user_assignment('PHOSKEN1', 'H_GXRS_KEY_USER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PHOSKEN1/H_GXRS_KEY_USER harmony.usermgt.create_dds_item_assignment('PHOSKEN1', 'H_GXRS_KEY_USER', 'C4S-GXRS as XAD originating system', 'ALL', null, sysdate, null); harmony.usermgt.create_dds_item_assignment('PHOSKEN1', 'H_GXRS_KEY_USER', 'GXRS instructing accounts in ART', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PHOSKEN1/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('PHOSKEN1', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PHOSKEN1/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('PHOSKEN1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11212/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'PHOSKEN1/H_P2P_KEY_USER' harmony.usermgt.create_role_to_user_assignment('PHOSKEN1', 'H_P2P_KEY_USER', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PHOSKEN1/H_SWIFTCOM_RELEASER' harmony.usermgt.create_role_to_user_assignment('PHOSKEN1', 'H_SWIFTCOM_RELEASER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PHOSKEN1/H_SWIFTCOM_RELEASER harmony.usermgt.create_dds_item_assignment('PHOSKEN1', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '7', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHOSKEN1', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '4', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHOSKEN1', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '18', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHOSKEN1', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '17', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHOSKEN1', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '16', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHOSKEN1', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '15', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHOSKEN1', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '11', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHOSKEN1', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '10', sysdate, null); -- Inserting RoleToUserAssignment 'PHOSKEN1/H_SWIFTCOM_REPORTER' harmony.usermgt.create_role_to_user_assignment('PHOSKEN1', 'H_SWIFTCOM_REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PHOSKEN1/H_SWIFTCOM_REPORTER harmony.usermgt.create_dds_item_assignment('PHOSKEN1', 'H_SWIFTCOM_REPORTER', 'SWIFTCOM FM Source', 'ONE', '6', sysdate, null); harmony.usermgt.create_dds_item_assignment('PHOSKEN1', 'H_SWIFTCOM_REPORTER', 'SWIFTCOM FM Source', 'ONE', '13', sysdate, null); -- Inserting RoleToUserAssignment 'PHOSKEN1/H_SWIFTCOM_STADA_MGR' harmony.usermgt.create_role_to_user_assignment('PHOSKEN1', 'H_SWIFTCOM_STADA_MGR', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PHOSKEN1/H_TPP_CTR_AUTH' harmony.usermgt.create_role_to_user_assignment('PHOSKEN1', 'H_TPP_CTR_AUTH', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PIOAKIM/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('PIOAKIM', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PIOAKIM/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('PIOAKIM', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[218/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'PJANSSE7/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('PJANSSE7', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PJANSSE7/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('PJANSSE7', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11737/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PJANSSE7', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11736/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'PJCASEY/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('PJCASEY', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PJCASEY/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('PJCASEY', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999714', sysdate, null); harmony.usermgt.create_dds_item_assignment('PJCASEY', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998932', sysdate, null); -- Inserting RoleToUserAssignment 'PJCASEY/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('PJCASEY', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PJCASEY/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('PJCASEY', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999714', sysdate, null); harmony.usermgt.create_dds_item_assignment('PJCASEY', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998932', sysdate, null); -- Inserting RoleToUserAssignment 'PJCASEY/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('PJCASEY', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PJCASEY/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('PJCASEY', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11753/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'PKAUR12/H_EFS2_LOC_EDIT' harmony.usermgt.create_role_to_user_assignment('PKAUR12', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PKAUR12/H_EFS2_LOC_EDIT harmony.usermgt.create_dds_item_assignment('PKAUR12', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '473', sysdate, null); harmony.usermgt.create_dds_item_assignment('PKAUR12', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '296', sysdate, null); -- Inserting RoleToUserAssignment 'PKAUR12/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('PKAUR12', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PKAUR12/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('PKAUR12', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[411/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PKAUR12', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11080/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'PKNOPFOV/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('PKNOPFOV', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PKNOPFOV/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('PKNOPFOV', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[438/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PKNOPFOV', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[190/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'PKORECKO/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('PKORECKO', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PKORECKO/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('PKORECKO', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999799', sysdate, null); harmony.usermgt.create_dds_item_assignment('PKORECKO', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999175', sysdate, null); -- Inserting RoleToUserAssignment 'PKORECKO/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('PKORECKO', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PKORECKO/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('PKORECKO', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999799', sysdate, null); harmony.usermgt.create_dds_item_assignment('PKORECKO', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999175', sysdate, null); -- Inserting RoleToUserAssignment 'PKORECKO/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('PKORECKO', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PKORECKO/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('PKORECKO', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[438/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PKORECKO', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[190/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'PKORECKO/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('PKORECKO', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PKORECKO/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('PKORECKO', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[207/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'PKRAEUTL/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('PKRAEUTL', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PKRAEUTL/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('PKRAEUTL', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999482', sysdate, null); -- Inserting RoleToUserAssignment 'PKRAEUTL/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('PKRAEUTL', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PKRAEUTL/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('PKRAEUTL', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999482', sysdate, null); -- Inserting RoleToUserAssignment 'PKWAN/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('PKWAN', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PKWAN/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('PKWAN', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999437', sysdate, null); -- Inserting RoleToUserAssignment 'PKWAN/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('PKWAN', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PKWAN/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('PKWAN', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999437', sysdate, null); -- Inserting RoleToUserAssignment 'PLEDESMA/H_EFS2_LOC_AUTH' harmony.usermgt.create_role_to_user_assignment('PLEDESMA', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PLEDESMA/H_EFS2_LOC_AUTH harmony.usermgt.create_dds_item_assignment('PLEDESMA', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '406', sysdate, null); harmony.usermgt.create_dds_item_assignment('PLEDESMA', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '402', sysdate, null); -- Inserting RoleToUserAssignment 'PLINNMAN/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('PLINNMAN', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PLINNMAN/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('PLINNMAN', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11648/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'PLISS/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('PLISS', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PLISS/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('PLISS', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11769/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'PLIU2/H_EFS2_LOC_EDIT' harmony.usermgt.create_role_to_user_assignment('PLIU2', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PLIU2/H_EFS2_LOC_EDIT harmony.usermgt.create_dds_item_assignment('PLIU2', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '408', sysdate, null); -- Inserting RoleToUserAssignment 'PLIU2/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('PLIU2', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PLIU2/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('PLIU2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[101/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'PLIU2/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('PLIU2', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PLIU2/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('PLIU2', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[437/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PLIU2', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11310/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PLIU2', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11003/CC]', sysdate, null); -- Inserting RoleToUserAssignment 'PLORENZ/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('PLORENZ', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PLORENZ/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('PLORENZ', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999844', sysdate, null); harmony.usermgt.create_dds_item_assignment('PLORENZ', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999843', sysdate, null); harmony.usermgt.create_dds_item_assignment('PLORENZ', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999003', sysdate, null); harmony.usermgt.create_dds_item_assignment('PLORENZ', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999002', sysdate, null); harmony.usermgt.create_dds_item_assignment('PLORENZ', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999001', sysdate, null); harmony.usermgt.create_dds_item_assignment('PLORENZ', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999000', sysdate, null); harmony.usermgt.create_dds_item_assignment('PLORENZ', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998999', sysdate, null); harmony.usermgt.create_dds_item_assignment('PLORENZ', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998998', sysdate, null); -- Inserting RoleToUserAssignment 'PLORENZ/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('PLORENZ', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PLORENZ/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('PLORENZ', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999844', sysdate, null); harmony.usermgt.create_dds_item_assignment('PLORENZ', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999843', sysdate, null); harmony.usermgt.create_dds_item_assignment('PLORENZ', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999003', sysdate, null); harmony.usermgt.create_dds_item_assignment('PLORENZ', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999002', sysdate, null); harmony.usermgt.create_dds_item_assignment('PLORENZ', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999001', sysdate, null); harmony.usermgt.create_dds_item_assignment('PLORENZ', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999000', sysdate, null); harmony.usermgt.create_dds_item_assignment('PLORENZ', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998999', sysdate, null); harmony.usermgt.create_dds_item_assignment('PLORENZ', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998998', sysdate, null); -- Inserting RoleToUserAssignment 'PLORENZ/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('PLORENZ', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PLORENZ/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('PLORENZ', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[175/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PLORENZ', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[174/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PLORENZ', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[173/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PLORENZ', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[172/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PLORENZ', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[171/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PLORENZ', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11182/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PLORENZ', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11181/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PLORENZ', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11180/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'PLORENZ/H_TPP_P2P_REPORT' harmony.usermgt.create_role_to_user_assignment('PLORENZ', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PLORENZ/H_TPP_P2P_REPORT harmony.usermgt.create_dds_item_assignment('PLORENZ', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '307', sysdate, null); harmony.usermgt.create_dds_item_assignment('PLORENZ', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '306', sysdate, null); harmony.usermgt.create_dds_item_assignment('PLORENZ', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '305', sysdate, null); -- Inserting RoleToUserAssignment 'PMARIVEL/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('PMARIVEL', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PMARIVEL/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('PMARIVEL', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[422/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PMARIVEL', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[37/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PMARIVEL', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[204/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PMARIVEL', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[164/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PMARIVEL', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11456/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PMARIVEL', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11333/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'PMENNEN/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('PMENNEN', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PMENNEN/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('PMENNEN', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999082', sysdate, null); -- Inserting RoleToUserAssignment 'PMENNEN/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('PMENNEN', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PMENNEN/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('PMENNEN', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999082', sysdate, null); -- Inserting RoleToUserAssignment 'PMENNEN/H_EFS2_LOC_EDIT' harmony.usermgt.create_role_to_user_assignment('PMENNEN', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PMENNEN/H_EFS2_LOC_EDIT harmony.usermgt.create_dds_item_assignment('PMENNEN', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '593', sysdate, null); -- Inserting RoleToUserAssignment 'PMENNEN/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('PMENNEN', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PMENNEN/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('PMENNEN', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[276/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PMENNEN', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11713/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'PMERGAER/BAM_REPORTER' harmony.usermgt.create_role_to_user_assignment('PMERGAER', 'BAM_REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PMERGAER/BAM_REPORTER harmony.usermgt.create_dds_item_assignment('PMERGAER', 'BAM_REPORTER', 'BAM Region', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PMERGAER/HB_FM_COMBI_VIEW' harmony.usermgt.create_role_to_user_assignment('PMERGAER', 'HB_FM_COMBI_VIEW', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PMERGAER/HERMES_IM_SUPPORT' harmony.usermgt.create_role_to_user_assignment('PMERGAER', 'HERMES_IM_SUPPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PMERGAER/HERMES_IM_SUPPORT harmony.usermgt.create_dds_item_assignment('PMERGAER', 'HERMES_IM_SUPPORT', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PMERGAER/H_CHAINS_IM_SUPPORT' harmony.usermgt.create_role_to_user_assignment('PMERGAER', 'H_CHAINS_IM_SUPPORT', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PMERGAER/H_DLINK_IM_SUPPORT' harmony.usermgt.create_role_to_user_assignment('PMERGAER', 'H_DLINK_IM_SUPPORT', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PMERGAER/H_EFS2_IM_SUPPORT' harmony.usermgt.create_role_to_user_assignment('PMERGAER', 'H_EFS2_IM_SUPPORT', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PMERGAER/H_GXRS_IM_SUPPORT' harmony.usermgt.create_role_to_user_assignment('PMERGAER', 'H_GXRS_IM_SUPPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PMERGAER/H_GXRS_IM_SUPPORT harmony.usermgt.create_dds_item_assignment('PMERGAER', 'H_GXRS_IM_SUPPORT', 'GXRS instructing accounts in ART', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PMERGAER/H_P2P_IM_SUPPORT' harmony.usermgt.create_role_to_user_assignment('PMERGAER', 'H_P2P_IM_SUPPORT', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PMERGAER/H_SWIFTCOM_IM_SUP' harmony.usermgt.create_role_to_user_assignment('PMERGAER', 'H_SWIFTCOM_IM_SUP', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PMERGAER/H_SWIFTCOM_IM_SUP harmony.usermgt.create_dds_item_assignment('PMERGAER', 'H_SWIFTCOM_IM_SUP', 'SWIFTCOM FM Source', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PMERGAER/H_TOPS_IM_SUPPORT' harmony.usermgt.create_role_to_user_assignment('PMERGAER', 'H_TOPS_IM_SUPPORT', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PMERGAER/H_TPP_IM_SUPPORT' harmony.usermgt.create_role_to_user_assignment('PMERGAER', 'H_TPP_IM_SUPPORT', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PMIRALT1/H_EFS2_LOC_REP_PARTY' harmony.usermgt.create_role_to_user_assignment('PMIRALT1', 'H_EFS2_LOC_REP_PARTY', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PMIRALT1/H_EFS2_LOC_REP_PARTY harmony.usermgt.create_dds_item_assignment('PMIRALT1', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '638', sysdate, null); harmony.usermgt.create_dds_item_assignment('PMIRALT1', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '584', sysdate, null); harmony.usermgt.create_dds_item_assignment('PMIRALT1', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '550', sysdate, null); -- Inserting RoleToUserAssignment 'PNANDRA8/H_EFS2_LOC_AUTH' harmony.usermgt.create_role_to_user_assignment('PNANDRA8', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PNANDRA8/H_EFS2_LOC_AUTH harmony.usermgt.create_dds_item_assignment('PNANDRA8', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '281', sysdate, null); -- Inserting RoleToUserAssignment 'PNOVO/H_TPP_LOC_REP' harmony.usermgt.create_role_to_user_assignment('PNOVO', 'H_TPP_LOC_REP', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PNOVO/H_TPP_LOC_REP harmony.usermgt.create_dds_item_assignment('PNOVO', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '24', sysdate, null); -- Inserting RoleToUserAssignment 'PNOVO/H_TPP_P2P_REPORT' harmony.usermgt.create_role_to_user_assignment('PNOVO', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PNOVO/H_TPP_P2P_REPORT harmony.usermgt.create_dds_item_assignment('PNOVO', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '132', sysdate, null); -- Inserting RoleToUserAssignment 'PORSULAK/H_EFS2_LOC_REP_PARTY' harmony.usermgt.create_role_to_user_assignment('PORSULAK', 'H_EFS2_LOC_REP_PARTY', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PORSULAK/H_EFS2_LOC_REP_PARTY harmony.usermgt.create_dds_item_assignment('PORSULAK', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '698', sysdate, null); -- Inserting RoleToUserAssignment 'PORSULAK/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('PORSULAK', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PORSULAK/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('PORSULAK', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[284/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'POSULLI6/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('POSULLI6', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for POSULLI6/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('POSULLI6', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999411', sysdate, null); -- Inserting RoleToUserAssignment 'POSULLI6/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('POSULLI6', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for POSULLI6/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('POSULLI6', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999411', sysdate, null); -- Inserting RoleToUserAssignment 'POSULLI6/H_EFS2_LOC_AUTH' harmony.usermgt.create_role_to_user_assignment('POSULLI6', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for POSULLI6/H_EFS2_LOC_AUTH harmony.usermgt.create_dds_item_assignment('POSULLI6', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '313', sysdate, null); -- Inserting RoleToUserAssignment 'POSULLI6/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('POSULLI6', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for POSULLI6/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('POSULLI6', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[141/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'POSULLI6/H_TPP_LOC_AUTH' harmony.usermgt.create_role_to_user_assignment('POSULLI6', 'H_TPP_LOC_AUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for POSULLI6/H_TPP_LOC_AUTH harmony.usermgt.create_dds_item_assignment('POSULLI6', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '315', sysdate, null); -- Inserting RoleToUserAssignment 'PPALME2/H_EFS2_LOC_REP_PARTY' harmony.usermgt.create_role_to_user_assignment('PPALME2', 'H_EFS2_LOC_REP_PARTY', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PPALME2/H_EFS2_LOC_REP_PARTY harmony.usermgt.create_dds_item_assignment('PPALME2', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '585', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPALME2', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '528', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPALME2', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '273', sysdate, null); -- Inserting RoleToUserAssignment 'PPATELB/BAM_MANAGER' harmony.usermgt.create_role_to_user_assignment('PPATELB', 'BAM_MANAGER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PPATELB/BAM_MANAGER harmony.usermgt.create_dds_item_assignment('PPATELB', 'BAM_MANAGER', 'BAM Region', 'ONE', '2', sysdate, null); -- Inserting RoleToUserAssignment 'PPATELB/BAM_REPORTER' harmony.usermgt.create_role_to_user_assignment('PPATELB', 'BAM_REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PPATELB/BAM_REPORTER harmony.usermgt.create_dds_item_assignment('PPATELB', 'BAM_REPORTER', 'BAM Region', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PPATELB/HERMES_CMEFF_REP_CTR' harmony.usermgt.create_role_to_user_assignment('PPATELB', 'HERMES_CMEFF_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PPATELB/HERMES_CMEFF_REP_CTR harmony.usermgt.create_dds_item_assignment('PPATELB', 'HERMES_CMEFF_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PPATELB/HERMES_GRP_REP_CTR' harmony.usermgt.create_role_to_user_assignment('PPATELB', 'HERMES_GRP_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PPATELB/HERMES_GRP_REP_CTR harmony.usermgt.create_dds_item_assignment('PPATELB', 'HERMES_GRP_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PPATELB/HERMES_IDTXN_REP_CTR' harmony.usermgt.create_role_to_user_assignment('PPATELB', 'HERMES_IDTXN_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PPATELB/HERMES_IDTXN_REP_CTR harmony.usermgt.create_dds_item_assignment('PPATELB', 'HERMES_IDTXN_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PPATELB/HERMES_STAT_REP_CTR' harmony.usermgt.create_role_to_user_assignment('PPATELB', 'HERMES_STAT_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PPATELB/HERMES_STAT_REP_CTR harmony.usermgt.create_dds_item_assignment('PPATELB', 'HERMES_STAT_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PPATELB/HERMES_STS_REP_CTR' harmony.usermgt.create_role_to_user_assignment('PPATELB', 'HERMES_STS_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PPATELB/HERMES_STS_REP_CTR harmony.usermgt.create_dds_item_assignment('PPATELB', 'HERMES_STS_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PPATELB/HERMES_SYM_REC_CTR' harmony.usermgt.create_role_to_user_assignment('PPATELB', 'HERMES_SYM_REC_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PPATELB/HERMES_SYM_REC_CTR harmony.usermgt.create_dds_item_assignment('PPATELB', 'HERMES_SYM_REC_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PPATELB/HERMES_TXN_REP_CTR' harmony.usermgt.create_role_to_user_assignment('PPATELB', 'HERMES_TXN_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PPATELB/HERMES_TXN_REP_CTR harmony.usermgt.create_dds_item_assignment('PPATELB', 'HERMES_TXN_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PPATELB/HERMES_VAVO_REP_CTR' harmony.usermgt.create_role_to_user_assignment('PPATELB', 'HERMES_VAVO_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PPATELB/HERMES_VAVO_REP_CTR harmony.usermgt.create_dds_item_assignment('PPATELB', 'HERMES_VAVO_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PPATELB/H_EFS2_CTR_REP' harmony.usermgt.create_role_to_user_assignment('PPATELB', 'H_EFS2_CTR_REP', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PPATELB/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PPATELB/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[94/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[93/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[91/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[89/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[88/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[58/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[47/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[439/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[438/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[434/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[411/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[397/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[38/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[348/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[344/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[342/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[288/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[286/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[281/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[276/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[268/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[267/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[266/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[264/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[263/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[254/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[253/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[244/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[238/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[237/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[232/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[229/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[225/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[218/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[217/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[215/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[208/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[207/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[190/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[179/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[178/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[177/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[176/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[175/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[174/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[173/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[172/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[171/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[170/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[169/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[168/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[161/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[160/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[159/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[156/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[155/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[154/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[153/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[147/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[146/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[144/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[141/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[140/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[131/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[130/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[129/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[127/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11991/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11983/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11536/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[115/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11495/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11436/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11417/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[114/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11385/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11362/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11358/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11357/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11349/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11342/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11334/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11327/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11319/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11260/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11235/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11234/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11233/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11232/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11230/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11218/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11217/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11216/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11080/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11072/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11070/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11061/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11015/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[109/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[108/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[107/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[106/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[105/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[104/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[103/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[102/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11091/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[111/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11106/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11147/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11148/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11153/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11178/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11184/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11194/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11195/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[112/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11212/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11537/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11543/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11566/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11575/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11580/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11582/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[116/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11627/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11628/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11629/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11635/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11637/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11654/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11655/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11661/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11670/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11695/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11697/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11699/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[117/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11710/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11713/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11737/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11755/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11756/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11761/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11764/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11780/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11785/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11818/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11825/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11841/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11842/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11843/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11844/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11846/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11847/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11862/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11865/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11881/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11917/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11918/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11919/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11924/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11927/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11930/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11973/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11981/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'PPATELB/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('PPATELB', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PPATELB/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[49/CC]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[142/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11985/CC]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11978/CC]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11745/CC]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11744/CC]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11743/CC]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11741/CC]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11689/CC]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11688/CC]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11687/CC]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11356/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'PPATELB/H_NETTING_LOC_REP_TC' harmony.usermgt.create_role_to_user_assignment('PPATELB', 'H_NETTING_LOC_REP_TC', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PPATELB/H_NETTING_LOC_REP_TC harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[7/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[233/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[223/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[222/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[11486/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[11120/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'PPATELB/H_SWIFTCOM_RELEASER' harmony.usermgt.create_role_to_user_assignment('PPATELB', 'H_SWIFTCOM_RELEASER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PPATELB/H_SWIFTCOM_RELEASER harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '9', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '8', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '7', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '6', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '5', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '4', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '2', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '11', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '10', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '1', sysdate, null); -- Inserting RoleToUserAssignment 'PPATELB/H_SWIFTCOM_REPORTER' harmony.usermgt.create_role_to_user_assignment('PPATELB', 'H_SWIFTCOM_REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PPATELB/H_SWIFTCOM_REPORTER harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_SWIFTCOM_REPORTER', 'SWIFTCOM FM Source', 'ONE', '9', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_SWIFTCOM_REPORTER', 'SWIFTCOM FM Source', 'ONE', '8', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_SWIFTCOM_REPORTER', 'SWIFTCOM FM Source', 'ONE', '7', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_SWIFTCOM_REPORTER', 'SWIFTCOM FM Source', 'ONE', '6', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_SWIFTCOM_REPORTER', 'SWIFTCOM FM Source', 'ONE', '5', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_SWIFTCOM_REPORTER', 'SWIFTCOM FM Source', 'ONE', '4', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_SWIFTCOM_REPORTER', 'SWIFTCOM FM Source', 'ONE', '2', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_SWIFTCOM_REPORTER', 'SWIFTCOM FM Source', 'ONE', '11', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_SWIFTCOM_REPORTER', 'SWIFTCOM FM Source', 'ONE', '10', sysdate, null); harmony.usermgt.create_dds_item_assignment('PPATELB', 'H_SWIFTCOM_REPORTER', 'SWIFTCOM FM Source', 'ONE', '1', sysdate, null); -- Inserting RoleToUserAssignment 'PPATELB/H_TPP_CTR_REP' harmony.usermgt.create_role_to_user_assignment('PPATELB', 'H_TPP_CTR_REP', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PPLAS3/BAM_REPORTER' harmony.usermgt.create_role_to_user_assignment('PPLAS3', 'BAM_REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PPLAS3/BAM_REPORTER harmony.usermgt.create_dds_item_assignment('PPLAS3', 'BAM_REPORTER', 'BAM Region', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PPLAS3/HB_FM_COMBI_VIEW' harmony.usermgt.create_role_to_user_assignment('PPLAS3', 'HB_FM_COMBI_VIEW', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PPLAS3/HERMES_IM_SUPPORT' harmony.usermgt.create_role_to_user_assignment('PPLAS3', 'HERMES_IM_SUPPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PPLAS3/HERMES_IM_SUPPORT harmony.usermgt.create_dds_item_assignment('PPLAS3', 'HERMES_IM_SUPPORT', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PPLAS3/H_CHAINS_IM_SUPPORT' harmony.usermgt.create_role_to_user_assignment('PPLAS3', 'H_CHAINS_IM_SUPPORT', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PPLAS3/H_DLINK_IM_SUPPORT' harmony.usermgt.create_role_to_user_assignment('PPLAS3', 'H_DLINK_IM_SUPPORT', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PPLAS3/H_EFS2_IM_SUPPORT' harmony.usermgt.create_role_to_user_assignment('PPLAS3', 'H_EFS2_IM_SUPPORT', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PPLAS3/H_GXRS_IM_SUPPORT' harmony.usermgt.create_role_to_user_assignment('PPLAS3', 'H_GXRS_IM_SUPPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PPLAS3/H_GXRS_IM_SUPPORT harmony.usermgt.create_dds_item_assignment('PPLAS3', 'H_GXRS_IM_SUPPORT', 'GXRS instructing accounts in ART', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PPLAS3/H_P2P_IM_SUPPORT' harmony.usermgt.create_role_to_user_assignment('PPLAS3', 'H_P2P_IM_SUPPORT', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PPLAS3/H_SWIFTCOM_IM_SUP' harmony.usermgt.create_role_to_user_assignment('PPLAS3', 'H_SWIFTCOM_IM_SUP', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PPLAS3/H_SWIFTCOM_IM_SUP harmony.usermgt.create_dds_item_assignment('PPLAS3', 'H_SWIFTCOM_IM_SUP', 'SWIFTCOM FM Source', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PPLAS3/H_TOPS_IM_SUPPORT' harmony.usermgt.create_role_to_user_assignment('PPLAS3', 'H_TOPS_IM_SUPPORT', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PPLAS3/H_TPP_IM_SUPPORT' harmony.usermgt.create_role_to_user_assignment('PPLAS3', 'H_TPP_IM_SUPPORT', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PPLUEANG/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('PPLUEANG', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PPLUEANG/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('PPLUEANG', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[5001/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'PPLUEANG/H_TPP_LOC_EDIT' harmony.usermgt.create_role_to_user_assignment('PPLUEANG', 'H_TPP_LOC_EDIT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PPLUEANG/H_TPP_LOC_EDIT harmony.usermgt.create_dds_item_assignment('PPLUEANG', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '33', sysdate, null); -- Inserting RoleToUserAssignment 'PREGENAS/H_EFS2_LOC_AUTH' harmony.usermgt.create_role_to_user_assignment('PREGENAS', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PREGENAS/H_EFS2_LOC_AUTH harmony.usermgt.create_dds_item_assignment('PREGENAS', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '696', sysdate, null); -- Inserting RoleToUserAssignment 'PREGENAS/H_EFS2_LOC_EDIT' harmony.usermgt.create_role_to_user_assignment('PREGENAS', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PREGENAS/H_EFS2_LOC_EDIT harmony.usermgt.create_dds_item_assignment('PREGENAS', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '696', sysdate, null); -- Inserting RoleToUserAssignment 'PREGENAS/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('PREGENAS', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PREGENAS/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('PREGENAS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11846/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'PREGENAS/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('PREGENAS', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PREGENAS/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('PREGENAS', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11846/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'PROMAN1/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('PROMAN1', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PROMAN1/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('PROMAN1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999851', sysdate, null); -- Inserting RoleToUserAssignment 'PROMAN1/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('PROMAN1', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PROMAN1/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('PROMAN1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999851', sysdate, null); -- Inserting RoleToUserAssignment 'PROMAN1/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('PROMAN1', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PROMAN1/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('PROMAN1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[161/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'PROMAN1/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('PROMAN1', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PROMAN1/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('PROMAN1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[161/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'PROSS1/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('PROSS1', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PROSS1/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('PROSS1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[281/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PROSS1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[111/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'PRUAO/H_TPP_P2P_OFFERAUTH' harmony.usermgt.create_role_to_user_assignment('PRUAO', 'H_TPP_P2P_OFFERAUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PRUAO/H_TPP_P2P_OFFERAUTH harmony.usermgt.create_dds_item_assignment('PRUAO', 'H_TPP_P2P_OFFERAUTH', 'TPP AP2PLE OC', 'ONE', '186', sysdate, null); -- Inserting RoleToUserAssignment 'PRUDOLF/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('PRUDOLF', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PRUDOLF/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('PRUDOLF', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998879', sysdate, null); -- Inserting RoleToUserAssignment 'PRUDOLF/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('PRUDOLF', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PRUDOLF/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('PRUDOLF', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998879', sysdate, null); -- Inserting RoleToUserAssignment 'PRUDOLF/H_EFS2_LOC_AUTH' harmony.usermgt.create_role_to_user_assignment('PRUDOLF', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PRUDOLF/H_EFS2_LOC_AUTH harmony.usermgt.create_dds_item_assignment('PRUDOLF', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '693', sysdate, null); harmony.usermgt.create_dds_item_assignment('PRUDOLF', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '692', sysdate, null); harmony.usermgt.create_dds_item_assignment('PRUDOLF', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '689', sysdate, null); -- Inserting RoleToUserAssignment 'PRUDOLF/H_EFS2_LOC_EDIT' harmony.usermgt.create_role_to_user_assignment('PRUDOLF', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PRUDOLF/H_EFS2_LOC_EDIT harmony.usermgt.create_dds_item_assignment('PRUDOLF', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '693', sysdate, null); harmony.usermgt.create_dds_item_assignment('PRUDOLF', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '692', sysdate, null); harmony.usermgt.create_dds_item_assignment('PRUDOLF', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '689', sysdate, null); -- Inserting RoleToUserAssignment 'PRUDOLF/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('PRUDOLF', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PRUDOLF/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('PRUDOLF', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11847/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PRUDOLF', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11843/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PRUDOLF', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11841/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'PRUDOLF/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('PRUDOLF', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PRUDOLF/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('PRUDOLF', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11847/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PRUDOLF', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11843/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PRUDOLF', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11841/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'PSA2/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('PSA2', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PSA2/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('PSA2', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999852', sysdate, null); harmony.usermgt.create_dds_item_assignment('PSA2', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999851', sysdate, null); -- Inserting RoleToUserAssignment 'PSA2/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('PSA2', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PSA2/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('PSA2', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999852', sysdate, null); harmony.usermgt.create_dds_item_assignment('PSA2', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999851', sysdate, null); -- Inserting RoleToUserAssignment 'PSA2/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('PSA2', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PSA2/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('PSA2', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[161/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PSA2', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[160/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'PSA2/H_TPP_P2P_REPORT' harmony.usermgt.create_role_to_user_assignment('PSA2', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PSA2/H_TPP_P2P_REPORT harmony.usermgt.create_dds_item_assignment('PSA2', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '136', sysdate, null); harmony.usermgt.create_dds_item_assignment('PSA2', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '134', sysdate, null); harmony.usermgt.create_dds_item_assignment('PSA2', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '130', sysdate, null); -- Inserting RoleToUserAssignment 'PSANDOV2/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('PSANDOV2', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PSANDOV2/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('PSANDOV2', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999863', sysdate, null); harmony.usermgt.create_dds_item_assignment('PSANDOV2', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999862', sysdate, null); harmony.usermgt.create_dds_item_assignment('PSANDOV2', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999644', sysdate, null); -- Inserting RoleToUserAssignment 'PSANDOV2/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('PSANDOV2', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PSANDOV2/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('PSANDOV2', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999863', sysdate, null); harmony.usermgt.create_dds_item_assignment('PSANDOV2', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999862', sysdate, null); harmony.usermgt.create_dds_item_assignment('PSANDOV2', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999644', sysdate, null); -- Inserting RoleToUserAssignment 'PSANDOV2/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('PSANDOV2', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PSANDOV2/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('PSANDOV2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[94/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PSANDOV2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[47/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PSANDOV2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[154/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PSANDOV2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11981/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PSANDOV2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11973/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'PSANDOV2/H_TPP_LOC_REP' harmony.usermgt.create_role_to_user_assignment('PSANDOV2', 'H_TPP_LOC_REP', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PSANDOV2/H_TPP_LOC_REP harmony.usermgt.create_dds_item_assignment('PSANDOV2', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '55', sysdate, null); -- Inserting RoleToUserAssignment 'PSCHIPP1/BAM_REPORTER' harmony.usermgt.create_role_to_user_assignment('PSCHIPP1', 'BAM_REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PSCHIPP1/BAM_REPORTER harmony.usermgt.create_dds_item_assignment('PSCHIPP1', 'BAM_REPORTER', 'BAM Region', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PSCHIPP1/HB_FM_COMBI_VIEW' harmony.usermgt.create_role_to_user_assignment('PSCHIPP1', 'HB_FM_COMBI_VIEW', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PSCHIPP1/HERMES_IM_SUPPORT' harmony.usermgt.create_role_to_user_assignment('PSCHIPP1', 'HERMES_IM_SUPPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PSCHIPP1/HERMES_IM_SUPPORT harmony.usermgt.create_dds_item_assignment('PSCHIPP1', 'HERMES_IM_SUPPORT', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PSCHIPP1/H_CHAINS_IM_SUPPORT' harmony.usermgt.create_role_to_user_assignment('PSCHIPP1', 'H_CHAINS_IM_SUPPORT', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PSCHIPP1/H_DLINK_IM_SUPPORT' harmony.usermgt.create_role_to_user_assignment('PSCHIPP1', 'H_DLINK_IM_SUPPORT', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PSCHIPP1/H_EFS2_IM_SUPPORT' harmony.usermgt.create_role_to_user_assignment('PSCHIPP1', 'H_EFS2_IM_SUPPORT', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PSCHIPP1/H_GXRS_IM_SUPPORT' harmony.usermgt.create_role_to_user_assignment('PSCHIPP1', 'H_GXRS_IM_SUPPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PSCHIPP1/H_GXRS_IM_SUPPORT harmony.usermgt.create_dds_item_assignment('PSCHIPP1', 'H_GXRS_IM_SUPPORT', 'GXRS instructing accounts in ART', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PSCHIPP1/H_P2P_IM_SUPPORT' harmony.usermgt.create_role_to_user_assignment('PSCHIPP1', 'H_P2P_IM_SUPPORT', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PSCHIPP1/H_SWIFTCOM_IM_SUP' harmony.usermgt.create_role_to_user_assignment('PSCHIPP1', 'H_SWIFTCOM_IM_SUP', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PSCHIPP1/H_SWIFTCOM_IM_SUP harmony.usermgt.create_dds_item_assignment('PSCHIPP1', 'H_SWIFTCOM_IM_SUP', 'SWIFTCOM FM Source', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PSCHIPP1/H_TOPS_IM_SUPPORT' harmony.usermgt.create_role_to_user_assignment('PSCHIPP1', 'H_TOPS_IM_SUPPORT', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PSCHIPP1/H_TPP_IM_SUPPORT' harmony.usermgt.create_role_to_user_assignment('PSCHIPP1', 'H_TPP_IM_SUPPORT', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PSCHNYD1/H_EFS2_LOC_REP_PARTY' harmony.usermgt.create_role_to_user_assignment('PSCHNYD1', 'H_EFS2_LOC_REP_PARTY', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PSCHNYD1/H_EFS2_LOC_REP_PARTY harmony.usermgt.create_dds_item_assignment('PSCHNYD1', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '664', sysdate, null); -- Inserting RoleToUserAssignment 'PSCHNYD1/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('PSCHNYD1', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PSCHNYD1/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('PSCHNYD1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11771/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'PSEETO/H_EFS2_LOC_AUTH' harmony.usermgt.create_role_to_user_assignment('PSEETO', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PSEETO/H_EFS2_LOC_AUTH harmony.usermgt.create_dds_item_assignment('PSEETO', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '523', sysdate, null); -- Inserting RoleToUserAssignment 'PSEETO/H_EFS2_LOC_EDIT' harmony.usermgt.create_role_to_user_assignment('PSEETO', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PSEETO/H_EFS2_LOC_EDIT harmony.usermgt.create_dds_item_assignment('PSEETO', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '523', sysdate, null); -- Inserting RoleToUserAssignment 'PSEETO/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('PSEETO', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PSEETO/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('PSEETO', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11332/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'PSHEN3/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('PSHEN3', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PSHEN3/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('PSHEN3', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11901/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PSHEN3', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11899/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PSHEN3', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11893/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'PSTEINE2/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('PSTEINE2', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PSTEINE2/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('PSTEINE2', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999482', sysdate, null); -- Inserting RoleToUserAssignment 'PSTEINE2/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('PSTEINE2', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PSTEINE2/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('PSTEINE2', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999482', sysdate, null); -- Inserting RoleToUserAssignment 'PSTEWAR1/H_EFS2_LOC_REP_PARTY' harmony.usermgt.create_role_to_user_assignment('PSTEWAR1', 'H_EFS2_LOC_REP_PARTY', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PSTEWAR1/H_EFS2_LOC_REP_PARTY harmony.usermgt.create_dds_item_assignment('PSTEWAR1', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '623', sysdate, null); harmony.usermgt.create_dds_item_assignment('PSTEWAR1', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '430', sysdate, null); -- Inserting RoleToUserAssignment 'PTABI/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('PTABI', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PTABI/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('PTABI', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999881', sysdate, null); -- Inserting RoleToUserAssignment 'PTABI/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('PTABI', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PTABI/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('PTABI', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999881', sysdate, null); -- Inserting RoleToUserAssignment 'PTABI/H_EFS2_LOC_EDIT' harmony.usermgt.create_role_to_user_assignment('PTABI', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PTABI/H_EFS2_LOC_EDIT harmony.usermgt.create_dds_item_assignment('PTABI', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '449', sysdate, null); -- Inserting RoleToUserAssignment 'PTABI/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('PTABI', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PTABI/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('PTABI', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11070/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'PVANDERK/HERMES_GRP_REP_CTR' harmony.usermgt.create_role_to_user_assignment('PVANDERK', 'HERMES_GRP_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PVANDERK/HERMES_GRP_REP_CTR harmony.usermgt.create_dds_item_assignment('PVANDERK', 'HERMES_GRP_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PVANDERK/HERMES_STAT_REP_CTR' harmony.usermgt.create_role_to_user_assignment('PVANDERK', 'HERMES_STAT_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PVANDERK/HERMES_STAT_REP_CTR harmony.usermgt.create_dds_item_assignment('PVANDERK', 'HERMES_STAT_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PVANDERK/HERMES_STS_REP_CTR' harmony.usermgt.create_role_to_user_assignment('PVANDERK', 'HERMES_STS_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PVANDERK/HERMES_STS_REP_CTR harmony.usermgt.create_dds_item_assignment('PVANDERK', 'HERMES_STS_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PVANDERK/HERMES_SYM_REC_CTR' harmony.usermgt.create_role_to_user_assignment('PVANDERK', 'HERMES_SYM_REC_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PVANDERK/HERMES_SYM_REC_CTR harmony.usermgt.create_dds_item_assignment('PVANDERK', 'HERMES_SYM_REC_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PVANDERK/HERMES_TXN_REP_CTR' harmony.usermgt.create_role_to_user_assignment('PVANDERK', 'HERMES_TXN_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PVANDERK/HERMES_TXN_REP_CTR harmony.usermgt.create_dds_item_assignment('PVANDERK', 'HERMES_TXN_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PVANDERK/HERMES_VAVO_REP_CTR' harmony.usermgt.create_role_to_user_assignment('PVANDERK', 'HERMES_VAVO_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PVANDERK/HERMES_VAVO_REP_CTR harmony.usermgt.create_dds_item_assignment('PVANDERK', 'HERMES_VAVO_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PVANDERK/H_EFS2_LOC_EDIT' harmony.usermgt.create_role_to_user_assignment('PVANDERK', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PVANDERK/H_EFS2_LOC_EDIT harmony.usermgt.create_dds_item_assignment('PVANDERK', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '673', sysdate, null); harmony.usermgt.create_dds_item_assignment('PVANDERK', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '671', sysdate, null); harmony.usermgt.create_dds_item_assignment('PVANDERK', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '543', sysdate, null); harmony.usermgt.create_dds_item_assignment('PVANDERK', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '534', sysdate, null); harmony.usermgt.create_dds_item_assignment('PVANDERK', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '445', sysdate, null); harmony.usermgt.create_dds_item_assignment('PVANDERK', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '314', sysdate, null); -- Inserting RoleToUserAssignment 'PVANDERK/H_EFS2_LOC_REP_PARTY' harmony.usermgt.create_role_to_user_assignment('PVANDERK', 'H_EFS2_LOC_REP_PARTY', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PVANDERK/H_EFS2_LOC_REP_PARTY harmony.usermgt.create_dds_item_assignment('PVANDERK', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '708', sysdate, null); harmony.usermgt.create_dds_item_assignment('PVANDERK', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '480', sysdate, null); harmony.usermgt.create_dds_item_assignment('PVANDERK', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '400', sysdate, null); harmony.usermgt.create_dds_item_assignment('PVANDERK', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '399', sysdate, null); harmony.usermgt.create_dds_item_assignment('PVANDERK', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '398', sysdate, null); harmony.usermgt.create_dds_item_assignment('PVANDERK', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '397', sysdate, null); -- Inserting RoleToUserAssignment 'PVANDERK/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('PVANDERK', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PVANDERK/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('PVANDERK', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PVANDERK/H_NETTING_LOC_REP_TC' harmony.usermgt.create_role_to_user_assignment('PVANDERK', 'H_NETTING_LOC_REP_TC', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PVANDERK/H_NETTING_LOC_REP_TC harmony.usermgt.create_dds_item_assignment('PVANDERK', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PVANDERK/H_TPP_CTR_REP' harmony.usermgt.create_role_to_user_assignment('PVANDERK', 'H_TPP_CTR_REP', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PVANDERK/H_TPP_P2P_REPORT' harmony.usermgt.create_role_to_user_assignment('PVANDERK', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PVANDERK/H_TPP_P2P_REPORT harmony.usermgt.create_dds_item_assignment('PVANDERK', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '82', sysdate, null); harmony.usermgt.create_dds_item_assignment('PVANDERK', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '81', sysdate, null); harmony.usermgt.create_dds_item_assignment('PVANDERK', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '258', sysdate, null); harmony.usermgt.create_dds_item_assignment('PVANDERK', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '257', sysdate, null); -- Inserting RoleToUserAssignment 'PVILLAVE/H_EFS2_LOC_REP_PARTY' harmony.usermgt.create_role_to_user_assignment('PVILLAVE', 'H_EFS2_LOC_REP_PARTY', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PVILLAVE/H_EFS2_LOC_REP_PARTY harmony.usermgt.create_dds_item_assignment('PVILLAVE', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '648', sysdate, null); harmony.usermgt.create_dds_item_assignment('PVILLAVE', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '468', sysdate, null); -- Inserting RoleToUserAssignment 'PVILLAVE/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('PVILLAVE', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PVILLAVE/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('PVILLAVE', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11927/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PVILLAVE', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11919/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PVILLAVE', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11918/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'PVISSER1/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('PVISSER1', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PVISSER1/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('PVISSER1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999034', sysdate, null); harmony.usermgt.create_dds_item_assignment('PVISSER1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999031', sysdate, null); harmony.usermgt.create_dds_item_assignment('PVISSER1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999025', sysdate, null); -- Inserting RoleToUserAssignment 'PVISSER1/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('PVISSER1', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PVISSER1/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('PVISSER1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999034', sysdate, null); harmony.usermgt.create_dds_item_assignment('PVISSER1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999031', sysdate, null); harmony.usermgt.create_dds_item_assignment('PVISSER1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999025', sysdate, null); -- Inserting RoleToUserAssignment 'PVISSER1/H_EFS2_LOC_AUTH' harmony.usermgt.create_role_to_user_assignment('PVISSER1', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PVISSER1/H_EFS2_LOC_AUTH harmony.usermgt.create_dds_item_assignment('PVISSER1', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '625', sysdate, null); -- Inserting RoleToUserAssignment 'PVISSER1/H_EFS2_LOC_EDIT' harmony.usermgt.create_role_to_user_assignment('PVISSER1', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PVISSER1/H_EFS2_LOC_EDIT harmony.usermgt.create_dds_item_assignment('PVISSER1', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '625', sysdate, null); -- Inserting RoleToUserAssignment 'PVISSER1/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('PVISSER1', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PVISSER1/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('PVISSER1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11635/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PVISSER1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11628/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('PVISSER1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11627/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'PVLAEKE1/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('PVLAEKE1', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PVLAEKE1/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('PVLAEKE1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999838', sysdate, null); harmony.usermgt.create_dds_item_assignment('PVLAEKE1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999837', sysdate, null); -- Inserting RoleToUserAssignment 'PVLAEKE1/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('PVLAEKE1', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PVLAEKE1/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('PVLAEKE1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999838', sysdate, null); harmony.usermgt.create_dds_item_assignment('PVLAEKE1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999837', sysdate, null); -- Inserting RoleToUserAssignment 'PWULFIN/BAM_REPORTER' harmony.usermgt.create_role_to_user_assignment('PWULFIN', 'BAM_REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PWULFIN/BAM_REPORTER harmony.usermgt.create_dds_item_assignment('PWULFIN', 'BAM_REPORTER', 'BAM Region', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PWULFIN/HERMES_CMEFF_REP_CTR' harmony.usermgt.create_role_to_user_assignment('PWULFIN', 'HERMES_CMEFF_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PWULFIN/HERMES_CMEFF_REP_CTR harmony.usermgt.create_dds_item_assignment('PWULFIN', 'HERMES_CMEFF_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PWULFIN/HERMES_GRP_REP_CTR' harmony.usermgt.create_role_to_user_assignment('PWULFIN', 'HERMES_GRP_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PWULFIN/HERMES_GRP_REP_CTR harmony.usermgt.create_dds_item_assignment('PWULFIN', 'HERMES_GRP_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PWULFIN/HERMES_IDTXN_REP_CTR' harmony.usermgt.create_role_to_user_assignment('PWULFIN', 'HERMES_IDTXN_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PWULFIN/HERMES_IDTXN_REP_CTR harmony.usermgt.create_dds_item_assignment('PWULFIN', 'HERMES_IDTXN_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PWULFIN/HERMES_STAT_REP_CTR' harmony.usermgt.create_role_to_user_assignment('PWULFIN', 'HERMES_STAT_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PWULFIN/HERMES_STAT_REP_CTR harmony.usermgt.create_dds_item_assignment('PWULFIN', 'HERMES_STAT_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PWULFIN/HERMES_STS_REP_CTR' harmony.usermgt.create_role_to_user_assignment('PWULFIN', 'HERMES_STS_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PWULFIN/HERMES_STS_REP_CTR harmony.usermgt.create_dds_item_assignment('PWULFIN', 'HERMES_STS_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PWULFIN/HERMES_SYM_REC_CTR' harmony.usermgt.create_role_to_user_assignment('PWULFIN', 'HERMES_SYM_REC_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PWULFIN/HERMES_SYM_REC_CTR harmony.usermgt.create_dds_item_assignment('PWULFIN', 'HERMES_SYM_REC_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PWULFIN/HERMES_TXN_REP_CTR' harmony.usermgt.create_role_to_user_assignment('PWULFIN', 'HERMES_TXN_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PWULFIN/HERMES_TXN_REP_CTR harmony.usermgt.create_dds_item_assignment('PWULFIN', 'HERMES_TXN_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PWULFIN/HERMES_VAVO_REP_CTR' harmony.usermgt.create_role_to_user_assignment('PWULFIN', 'HERMES_VAVO_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PWULFIN/HERMES_VAVO_REP_CTR harmony.usermgt.create_dds_item_assignment('PWULFIN', 'HERMES_VAVO_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'PWULFIN/H_EFS2_CTR_AUTH' harmony.usermgt.create_role_to_user_assignment('PWULFIN', 'H_EFS2_CTR_AUTH', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PWULFIN/H_EFS2_CTR_REP' harmony.usermgt.create_role_to_user_assignment('PWULFIN', 'H_EFS2_CTR_REP', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PWULFIN/H_EFS2_LOC_REP_PARTY' harmony.usermgt.create_role_to_user_assignment('PWULFIN', 'H_EFS2_LOC_REP_PARTY', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PWULFIN/H_EFS2_LOC_REP_PARTY harmony.usermgt.create_dds_item_assignment('PWULFIN', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '270', sysdate, null); -- Inserting RoleToUserAssignment 'PWULFIN/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('PWULFIN', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PWULFIN/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('PWULFIN', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[45/CC]', sysdate, null); -- Inserting RoleToUserAssignment 'PWULFIN/H_NETTING_LOC_REP_TC' harmony.usermgt.create_role_to_user_assignment('PWULFIN', 'H_NETTING_LOC_REP_TC', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PWULFIN/H_NETTING_LOC_REP_TC harmony.usermgt.create_dds_item_assignment('PWULFIN', 'H_NETTING_LOC_REP_TC', 'Treasury Center Netting Participant', 'ONE', '[11120/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'PWULFIN/H_SWIFTCOM_RELEASER' harmony.usermgt.create_role_to_user_assignment('PWULFIN', 'H_SWIFTCOM_RELEASER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PWULFIN/H_SWIFTCOM_RELEASER harmony.usermgt.create_dds_item_assignment('PWULFIN', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '13', sysdate, null); -- Inserting RoleToUserAssignment 'PWULFIN/H_TOPS_CNTRP_EXP_REP' harmony.usermgt.create_role_to_user_assignment('PWULFIN', 'H_TOPS_CNTRP_EXP_REP', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PWULFIN/H_TPP_LOC_REP' harmony.usermgt.create_role_to_user_assignment('PWULFIN', 'H_TPP_LOC_REP', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PWULFIN/H_TPP_LOC_REP harmony.usermgt.create_dds_item_assignment('PWULFIN', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '34', sysdate, null); -- Inserting RoleToUserAssignment 'PZAFEIRI/H_GXRS_CALL_CENTER' harmony.usermgt.create_role_to_user_assignment('PZAFEIRI', 'H_GXRS_CALL_CENTER', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'PZNIDARS/H_EFS2_LOC_EDIT' harmony.usermgt.create_role_to_user_assignment('PZNIDARS', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PZNIDARS/H_EFS2_LOC_EDIT harmony.usermgt.create_dds_item_assignment('PZNIDARS', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '517', sysdate, null); -- Inserting RoleToUserAssignment 'PZNIDARS/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('PZNIDARS', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for PZNIDARS/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('PZNIDARS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[203/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'QGAO2/H_EFS2_LOC_EDIT' harmony.usermgt.create_role_to_user_assignment('QGAO2', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for QGAO2/H_EFS2_LOC_EDIT harmony.usermgt.create_dds_item_assignment('QGAO2', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '385', sysdate, null); -- Inserting RoleToUserAssignment 'QLIN5/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('QLIN5', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for QLIN5/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('QLIN5', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11310/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'QUARTZ/Quartz Scheduler' harmony.usermgt.create_role_to_user_assignment('QUARTZ', 'Quartz Scheduler', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'QYUAN5/H_EFS2_LOC_AUTH' harmony.usermgt.create_role_to_user_assignment('QYUAN5', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for QYUAN5/H_EFS2_LOC_AUTH harmony.usermgt.create_dds_item_assignment('QYUAN5', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '575', sysdate, null); -- Inserting RoleToUserAssignment 'RALLRED/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('RALLRED', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RALLRED/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('RALLRED', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999010', sysdate, null); -- Inserting RoleToUserAssignment 'RALLRED/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('RALLRED', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RALLRED/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('RALLRED', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999010', sysdate, null); -- Inserting RoleToUserAssignment 'RALLRED/H_EFS2_LOC_AUTH' harmony.usermgt.create_role_to_user_assignment('RALLRED', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RALLRED/H_EFS2_LOC_AUTH harmony.usermgt.create_dds_item_assignment('RALLRED', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '658', sysdate, null); -- Inserting RoleToUserAssignment 'RALLRED/H_EFS2_LOC_EDIT' harmony.usermgt.create_role_to_user_assignment('RALLRED', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RALLRED/H_EFS2_LOC_EDIT harmony.usermgt.create_dds_item_assignment('RALLRED', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '658', sysdate, null); -- Inserting RoleToUserAssignment 'RALLRED/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('RALLRED', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RALLRED/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('RALLRED', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11712/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'RALLRED/H_TPP_LOC_AUTH' harmony.usermgt.create_role_to_user_assignment('RALLRED', 'H_TPP_LOC_AUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RALLRED/H_TPP_LOC_AUTH harmony.usermgt.create_dds_item_assignment('RALLRED', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '354', sysdate, null); -- Inserting RoleToUserAssignment 'RALLRED/H_TPP_LOC_EDIT' harmony.usermgt.create_role_to_user_assignment('RALLRED', 'H_TPP_LOC_EDIT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RALLRED/H_TPP_LOC_EDIT harmony.usermgt.create_dds_item_assignment('RALLRED', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '354', sysdate, null); -- Inserting RoleToUserAssignment 'RALVARE1/H_EFS2_LOC_AUTH' harmony.usermgt.create_role_to_user_assignment('RALVARE1', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RALVARE1/H_EFS2_LOC_AUTH harmony.usermgt.create_dds_item_assignment('RALVARE1', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '527', sysdate, null); -- Inserting RoleToUserAssignment 'RBARIGE/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('RBARIGE', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RBARIGE/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('RBARIGE', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[274/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('RBARIGE', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11739/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('RBARIGE', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11425/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('RBARIGE', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11340/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('RBARIGE', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11323/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'RBARIGE/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('RBARIGE', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RBARIGE/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('RBARIGE', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[70/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'RBLUEMLE/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('RBLUEMLE', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RBLUEMLE/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('RBLUEMLE', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999659', sysdate, null); -- Inserting RoleToUserAssignment 'RBLUEMLE/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('RBLUEMLE', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RBLUEMLE/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('RBLUEMLE', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999659', sysdate, null); -- Inserting RoleToUserAssignment 'RBRINDLE/H_TPP_P2P_REPORT' harmony.usermgt.create_role_to_user_assignment('RBRINDLE', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RBRINDLE/H_TPP_P2P_REPORT harmony.usermgt.create_dds_item_assignment('RBRINDLE', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '109', sysdate, null); -- Inserting RoleToUserAssignment 'RCAMPOS/H_EFS2_LOC_AUTH' harmony.usermgt.create_role_to_user_assignment('RCAMPOS', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RCAMPOS/H_EFS2_LOC_AUTH harmony.usermgt.create_dds_item_assignment('RCAMPOS', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '399', sysdate, null); -- Inserting RoleToUserAssignment 'RCASSELL/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('RCASSELL', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RCASSELL/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('RCASSELL', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999605', sysdate, null); -- Inserting RoleToUserAssignment 'RCASSELL/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('RCASSELL', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RCASSELL/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('RCASSELL', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999605', sysdate, null); -- Inserting RoleToUserAssignment 'RCAYANAN/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('RCAYANAN', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RCAYANAN/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('RCAYANAN', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[85/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('RCAYANAN', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[436/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('RCAYANAN', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[250/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('RCAYANAN', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11360/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'RCERNY/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('RCERNY', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RCERNY/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('RCERNY', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11385/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'RCERNY/H_TPP_LOC_REP' harmony.usermgt.create_role_to_user_assignment('RCERNY', 'H_TPP_LOC_REP', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RCERNY/H_TPP_LOC_REP harmony.usermgt.create_dds_item_assignment('RCERNY', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '73', sysdate, null); -- Inserting RoleToUserAssignment 'RCHANAMR/H_EFS2_LOC_EDIT' harmony.usermgt.create_role_to_user_assignment('RCHANAMR', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RCHANAMR/H_EFS2_LOC_EDIT harmony.usermgt.create_dds_item_assignment('RCHANAMR', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '514', sysdate, null); harmony.usermgt.create_dds_item_assignment('RCHANAMR', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '370', sysdate, null); -- Inserting RoleToUserAssignment 'RCHANAMR/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('RCHANAMR', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RCHANAMR/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('RCHANAMR', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[425/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'RCHAO/H_EFS2_LOC_EDIT' harmony.usermgt.create_role_to_user_assignment('RCHAO', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RCHAO/H_EFS2_LOC_EDIT harmony.usermgt.create_dds_item_assignment('RCHAO', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '654', sysdate, null); -- Inserting RoleToUserAssignment 'RCHAO/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('RCHAO', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RCHAO/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('RCHAO', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[421/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'RCHIRON/H_EFS2_LOC_EDIT' harmony.usermgt.create_role_to_user_assignment('RCHIRON', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RCHIRON/H_EFS2_LOC_EDIT harmony.usermgt.create_dds_item_assignment('RCHIRON', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '655', sysdate, null); -- Inserting RoleToUserAssignment 'RCHIRON/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('RCHIRON', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RCHIRON/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('RCHIRON', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11334/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('RCHIRON', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[108/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'RCOLE/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('RCOLE', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RCOLE/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('RCOLE', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999188', sysdate, null); -- Inserting RoleToUserAssignment 'RCOLE/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('RCOLE', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RCOLE/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('RCOLE', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999188', sysdate, null); -- Inserting RoleToUserAssignment 'RCOLE/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('RCOLE', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RCOLE/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('RCOLE', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[68/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('RCOLE', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11652/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'RCOSTA7/H_TPP_LOC_EDIT' harmony.usermgt.create_role_to_user_assignment('RCOSTA7', 'H_TPP_LOC_EDIT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RCOSTA7/H_TPP_LOC_EDIT harmony.usermgt.create_dds_item_assignment('RCOSTA7', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '36', sysdate, null); -- Inserting RoleToUserAssignment 'RCOWDREY/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('RCOWDREY', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RCOWDREY/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('RCOWDREY', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[411/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('RCOWDREY', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11147/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'RCRUZ/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('RCRUZ', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RCRUZ/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('RCRUZ', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[55/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'RDAVYDEN/H_EFS2_LOC_EDIT' harmony.usermgt.create_role_to_user_assignment('RDAVYDEN', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RDAVYDEN/H_EFS2_LOC_EDIT harmony.usermgt.create_dds_item_assignment('RDAVYDEN', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '615', sysdate, null); -- Inserting RoleToUserAssignment 'RDAVYDEN/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('RDAVYDEN', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RDAVYDEN/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('RDAVYDEN', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11575/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'RDCRUZ/H_TPP_LOC_EDIT' harmony.usermgt.create_role_to_user_assignment('RDCRUZ', 'H_TPP_LOC_EDIT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RDCRUZ/H_TPP_LOC_EDIT harmony.usermgt.create_dds_item_assignment('RDCRUZ', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '65', sysdate, null); harmony.usermgt.create_dds_item_assignment('RDCRUZ', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '361', sysdate, null); harmony.usermgt.create_dds_item_assignment('RDCRUZ', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '29', sysdate, null); harmony.usermgt.create_dds_item_assignment('RDCRUZ', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '233', sysdate, null); harmony.usermgt.create_dds_item_assignment('RDCRUZ', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '195', sysdate, null); harmony.usermgt.create_dds_item_assignment('RDCRUZ', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '147', sysdate, null); -- Inserting RoleToUserAssignment 'RDCRUZ/H_TPP_P2P_REPORT' harmony.usermgt.create_role_to_user_assignment('RDCRUZ', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RDCRUZ/H_TPP_P2P_REPORT harmony.usermgt.create_dds_item_assignment('RDCRUZ', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '191', sysdate, null); harmony.usermgt.create_dds_item_assignment('RDCRUZ', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '148', sysdate, null); -- Inserting RoleToUserAssignment 'RDIZON1/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('RDIZON1', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RDIZON1/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('RDIZON1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999812', sysdate, null); harmony.usermgt.create_dds_item_assignment('RDIZON1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999809', sysdate, null); harmony.usermgt.create_dds_item_assignment('RDIZON1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998919', sysdate, null); harmony.usermgt.create_dds_item_assignment('RDIZON1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999020', sysdate, null); harmony.usermgt.create_dds_item_assignment('RDIZON1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999068', sysdate, null); harmony.usermgt.create_dds_item_assignment('RDIZON1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999245', sysdate, null); harmony.usermgt.create_dds_item_assignment('RDIZON1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999246', sysdate, null); harmony.usermgt.create_dds_item_assignment('RDIZON1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999320', sysdate, null); harmony.usermgt.create_dds_item_assignment('RDIZON1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999331', sysdate, null); harmony.usermgt.create_dds_item_assignment('RDIZON1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999547', sysdate, null); harmony.usermgt.create_dds_item_assignment('RDIZON1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999691', sysdate, null); harmony.usermgt.create_dds_item_assignment('RDIZON1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999692', sysdate, null); harmony.usermgt.create_dds_item_assignment('RDIZON1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999693', sysdate, null); harmony.usermgt.create_dds_item_assignment('RDIZON1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999804', sysdate, null); harmony.usermgt.create_dds_item_assignment('RDIZON1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999808', sysdate, null); -- Inserting RoleToUserAssignment 'RDIZON1/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('RDIZON1', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RDIZON1/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('RDIZON1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999812', sysdate, null); harmony.usermgt.create_dds_item_assignment('RDIZON1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999809', sysdate, null); harmony.usermgt.create_dds_item_assignment('RDIZON1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998919', sysdate, null); harmony.usermgt.create_dds_item_assignment('RDIZON1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999020', sysdate, null); harmony.usermgt.create_dds_item_assignment('RDIZON1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999068', sysdate, null); harmony.usermgt.create_dds_item_assignment('RDIZON1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999245', sysdate, null); harmony.usermgt.create_dds_item_assignment('RDIZON1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999246', sysdate, null); harmony.usermgt.create_dds_item_assignment('RDIZON1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999320', sysdate, null); harmony.usermgt.create_dds_item_assignment('RDIZON1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999331', sysdate, null); harmony.usermgt.create_dds_item_assignment('RDIZON1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999547', sysdate, null); harmony.usermgt.create_dds_item_assignment('RDIZON1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999691', sysdate, null); harmony.usermgt.create_dds_item_assignment('RDIZON1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999692', sysdate, null); harmony.usermgt.create_dds_item_assignment('RDIZON1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999693', sysdate, null); harmony.usermgt.create_dds_item_assignment('RDIZON1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999804', sysdate, null); harmony.usermgt.create_dds_item_assignment('RDIZON1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999808', sysdate, null); -- Inserting RoleToUserAssignment 'RDIZON1/H_ASP2PIRE1_SSC_MGR' harmony.usermgt.create_role_to_user_assignment('RDIZON1', 'H_ASP2PIRE1_SSC_MGR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RDIZON1/H_ASP2PIRE1_SSC_MGR harmony.usermgt.create_dds_item_assignment('RDIZON1', 'H_ASP2PIRE1_SSC_MGR', 'TPP AP2PLE OC', 'ONE', '345', sysdate, null); harmony.usermgt.create_dds_item_assignment('RDIZON1', 'H_ASP2PIRE1_SSC_MGR', 'TPP AP2PLE OC', 'ONE', '346', sysdate, null); harmony.usermgt.create_dds_item_assignment('RDIZON1', 'H_ASP2PIRE1_SSC_MGR', 'TPP AP2PLE OC', 'ONE', '347', sysdate, null); harmony.usermgt.create_dds_item_assignment('RDIZON1', 'H_ASP2PIRE1_SSC_MGR', 'TPP AP2PLE OC', 'ONE', '348', sysdate, null); harmony.usermgt.create_dds_item_assignment('RDIZON1', 'H_ASP2PIRE1_SSC_MGR', 'TPP AP2PLE OC', 'ONE', '349', sysdate, null); harmony.usermgt.create_dds_item_assignment('RDIZON1', 'H_ASP2PIRE1_SSC_MGR', 'TPP AP2PLE OC', 'ONE', '408', sysdate, null); harmony.usermgt.create_dds_item_assignment('RDIZON1', 'H_ASP2PIRE1_SSC_MGR', 'TPP AP2PLE OC', 'ONE', '409', sysdate, null); harmony.usermgt.create_dds_item_assignment('RDIZON1', 'H_ASP2PIRE1_SSC_MGR', 'TPP AP2PLE OC', 'ONE', '410', sysdate, null); harmony.usermgt.create_dds_item_assignment('RDIZON1', 'H_ASP2PIRE1_SSC_MGR', 'TPP AP2PLE OC', 'ONE', '411', sysdate, null); harmony.usermgt.create_dds_item_assignment('RDIZON1', 'H_ASP2PIRE1_SSC_MGR', 'TPP AP2PLE OC', 'ONE', '412', sysdate, null); harmony.usermgt.create_dds_item_assignment('RDIZON1', 'H_ASP2PIRE1_SSC_MGR', 'TPP AP2PLE OC', 'ONE', '413', sysdate, null); harmony.usermgt.create_dds_item_assignment('RDIZON1', 'H_ASP2PIRE1_SSC_MGR', 'TPP AP2PLE OC', 'ONE', '414', sysdate, null); harmony.usermgt.create_dds_item_assignment('RDIZON1', 'H_ASP2PIRE1_SSC_MGR', 'TPP AP2PLE OC', 'ONE', '415', sysdate, null); -- Inserting RoleToUserAssignment 'RDIZON1/H_ASP2PIRE2_SSC_MGR' harmony.usermgt.create_role_to_user_assignment('RDIZON1', 'H_ASP2PIRE2_SSC_MGR', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'RDIZON1/H_TPP_LOC_REP' harmony.usermgt.create_role_to_user_assignment('RDIZON1', 'H_TPP_LOC_REP', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RDIZON1/H_TPP_LOC_REP harmony.usermgt.create_dds_item_assignment('RDIZON1', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '77', sysdate, null); harmony.usermgt.create_dds_item_assignment('RDIZON1', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '76', sysdate, null); harmony.usermgt.create_dds_item_assignment('RDIZON1', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '423', sysdate, null); harmony.usermgt.create_dds_item_assignment('RDIZON1', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '422', sysdate, null); harmony.usermgt.create_dds_item_assignment('RDIZON1', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '421', sysdate, null); harmony.usermgt.create_dds_item_assignment('RDIZON1', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '420', sysdate, null); harmony.usermgt.create_dds_item_assignment('RDIZON1', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '419', sysdate, null); harmony.usermgt.create_dds_item_assignment('RDIZON1', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '418', sysdate, null); harmony.usermgt.create_dds_item_assignment('RDIZON1', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '417', sysdate, null); harmony.usermgt.create_dds_item_assignment('RDIZON1', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '416', sysdate, null); -- Inserting RoleToUserAssignment 'RERALIL/H_EFS2_LOC_REP_PARTY' harmony.usermgt.create_role_to_user_assignment('RERALIL', 'H_EFS2_LOC_REP_PARTY', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RERALIL/H_EFS2_LOC_REP_PARTY harmony.usermgt.create_dds_item_assignment('RERALIL', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '356', sysdate, null); -- Inserting RoleToUserAssignment 'RFELDER3/H_EFS2_LOC_REP_PARTY' harmony.usermgt.create_role_to_user_assignment('RFELDER3', 'H_EFS2_LOC_REP_PARTY', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RFELDER3/H_EFS2_LOC_REP_PARTY harmony.usermgt.create_dds_item_assignment('RFELDER3', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '604', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFELDER3', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '603', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFELDER3', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '602', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFELDER3', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '601', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFELDER3', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '600', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFELDER3', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '599', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFELDER3', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '434', sysdate, null); -- Inserting RoleToUserAssignment 'RFERFUEL/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('RFERFUEL', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RFERFUEL/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999872', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999864', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999745', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '100057', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '200010', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998926', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998966', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998972', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998973', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999111', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999364', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999382', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999417', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999427', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999666', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999683', sysdate, null); -- Inserting RoleToUserAssignment 'RFERFUEL/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('RFERFUEL', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RFERFUEL/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999872', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999864', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999745', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '100057', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '200010', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998926', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998966', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998972', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998973', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999111', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999364', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999382', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999417', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999427', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999666', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999683', sysdate, null); -- Inserting RoleToUserAssignment 'RFERFUEL/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('RFERFUEL', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RFERFUEL/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[344/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[168/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[147/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'RFERFUEL/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('RFERFUEL', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RFERFUEL/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[344/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[168/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11761/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11334/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[108/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'RFERFUEL/H_TPP_LOC_REP' harmony.usermgt.create_role_to_user_assignment('RFERFUEL', 'H_TPP_LOC_REP', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RFERFUEL/H_TPP_LOC_REP harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '71', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '195', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '14', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '13', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '12', sysdate, null); -- Inserting RoleToUserAssignment 'RFERFUEL/H_TPP_P2P_REPORT' harmony.usermgt.create_role_to_user_assignment('RFERFUEL', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RFERFUEL/H_TPP_P2P_REPORT harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '343', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '329', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '328', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '327', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '278', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '276', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '273', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '192', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFERFUEL', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '150', sysdate, null); -- Inserting RoleToUserAssignment 'RFITT/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('RFITT', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RFITT/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('RFITT', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11330/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'RFLYNN1/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('RFLYNN1', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RFLYNN1/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('RFLYNN1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999863', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFLYNN1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999862', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFLYNN1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999787', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFLYNN1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999743', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFLYNN1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999644', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFLYNN1', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999221', sysdate, null); -- Inserting RoleToUserAssignment 'RFLYNN1/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('RFLYNN1', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RFLYNN1/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('RFLYNN1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999863', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFLYNN1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999862', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFLYNN1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999787', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFLYNN1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999743', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFLYNN1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999644', sysdate, null); harmony.usermgt.create_dds_item_assignment('RFLYNN1', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999221', sysdate, null); -- Inserting RoleToUserAssignment 'RGALLARD/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('RGALLARD', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RGALLARD/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('RGALLARD', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11345/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'RGEERS/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('RGEERS', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RGEERS/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('RGEERS', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11211/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'RGIL1/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('RGIL1', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RGIL1/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('RGIL1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11637/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'RGIL1/H_TPP_P2P_REPORT' harmony.usermgt.create_role_to_user_assignment('RGIL1', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RGIL1/H_TPP_P2P_REPORT harmony.usermgt.create_dds_item_assignment('RGIL1', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '332', sysdate, null); harmony.usermgt.create_dds_item_assignment('RGIL1', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '330', sysdate, null); -- Inserting RoleToUserAssignment 'RHAERTE1/H_EFS2_LOC_REP_PARTY' harmony.usermgt.create_role_to_user_assignment('RHAERTE1', 'H_EFS2_LOC_REP_PARTY', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RHAERTE1/H_EFS2_LOC_REP_PARTY harmony.usermgt.create_dds_item_assignment('RHAERTE1', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '697', sysdate, null); -- Inserting RoleToUserAssignment 'RHERBOZO/HERMES_STAT_REP_CTR' harmony.usermgt.create_role_to_user_assignment('RHERBOZO', 'HERMES_STAT_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RHERBOZO/HERMES_STAT_REP_CTR harmony.usermgt.create_dds_item_assignment('RHERBOZO', 'HERMES_STAT_REP_CTR', 'Trax Account Groups', 'ONE', '11', sysdate, null); -- Inserting RoleToUserAssignment 'RHERBOZO/HERMES_TXN_REP_CTR' harmony.usermgt.create_role_to_user_assignment('RHERBOZO', 'HERMES_TXN_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RHERBOZO/HERMES_TXN_REP_CTR harmony.usermgt.create_dds_item_assignment('RHERBOZO', 'HERMES_TXN_REP_CTR', 'Trax Account Groups', 'ONE', '11', sysdate, null); -- Inserting RoleToUserAssignment 'RHERBOZO/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('RHERBOZO', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RHERBOZO/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('RHERBOZO', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[348/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHERBOZO', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[342/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'RHERBOZO/H_TPP_P2P_REPORT' harmony.usermgt.create_role_to_user_assignment('RHERBOZO', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RHERBOZO/H_TPP_P2P_REPORT harmony.usermgt.create_dds_item_assignment('RHERBOZO', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '338', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHERBOZO', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '332', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHERBOZO', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '330', sysdate, null); -- Inserting RoleToUserAssignment 'RHIDALG3/BAM_MANAGER' harmony.usermgt.create_role_to_user_assignment('RHIDALG3', 'BAM_MANAGER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RHIDALG3/BAM_MANAGER harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'BAM_MANAGER', 'BAM Region', 'ONE', '3', sysdate, null); -- Inserting RoleToUserAssignment 'RHIDALG3/BAM_REPORTER' harmony.usermgt.create_role_to_user_assignment('RHIDALG3', 'BAM_REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RHIDALG3/BAM_REPORTER harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'BAM_REPORTER', 'BAM Region', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'RHIDALG3/HERMES_CMEFF_REP_CTR' harmony.usermgt.create_role_to_user_assignment('RHIDALG3', 'HERMES_CMEFF_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RHIDALG3/HERMES_CMEFF_REP_CTR harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HERMES_CMEFF_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'RHIDALG3/HERMES_GRP_REP_CTR' harmony.usermgt.create_role_to_user_assignment('RHIDALG3', 'HERMES_GRP_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RHIDALG3/HERMES_GRP_REP_CTR harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HERMES_GRP_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'RHIDALG3/HERMES_STAT_REP_CTR' harmony.usermgt.create_role_to_user_assignment('RHIDALG3', 'HERMES_STAT_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RHIDALG3/HERMES_STAT_REP_CTR harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HERMES_STAT_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'RHIDALG3/HERMES_STS_REP_CTR' harmony.usermgt.create_role_to_user_assignment('RHIDALG3', 'HERMES_STS_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RHIDALG3/HERMES_STS_REP_CTR harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HERMES_STS_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'RHIDALG3/HERMES_SYM_REC_CTR' harmony.usermgt.create_role_to_user_assignment('RHIDALG3', 'HERMES_SYM_REC_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RHIDALG3/HERMES_SYM_REC_CTR harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HERMES_SYM_REC_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'RHIDALG3/HERMES_TXN_REP_CTR' harmony.usermgt.create_role_to_user_assignment('RHIDALG3', 'HERMES_TXN_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RHIDALG3/HERMES_TXN_REP_CTR harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HERMES_TXN_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'RHIDALG3/HERMES_VAVO_REP_CTR' harmony.usermgt.create_role_to_user_assignment('RHIDALG3', 'HERMES_VAVO_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RHIDALG3/HERMES_VAVO_REP_CTR harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'HERMES_VAVO_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'RHIDALG3/H_EFS2_LOC_EDIT' harmony.usermgt.create_role_to_user_assignment('RHIDALG3', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RHIDALG3/H_EFS2_LOC_EDIT harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '708', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '702', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '700', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '480', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '400', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '399', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '398', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '397', sysdate, null); -- Inserting RoleToUserAssignment 'RHIDALG3/H_EFS2_LOC_REP_PARTY' harmony.usermgt.create_role_to_user_assignment('RHIDALG3', 'H_EFS2_LOC_REP_PARTY', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RHIDALG3/H_EFS2_LOC_REP_PARTY harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '703', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '402', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '406', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '527', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '552', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '554', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '558', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '564', sysdate, null); -- Inserting RoleToUserAssignment 'RHIDALG3/H_SWIFTCOM_REPORTER' harmony.usermgt.create_role_to_user_assignment('RHIDALG3', 'H_SWIFTCOM_REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RHIDALG3/H_SWIFTCOM_REPORTER harmony.usermgt.create_dds_item_assignment('RHIDALG3', 'H_SWIFTCOM_REPORTER', 'SWIFTCOM FM Source', 'ONE', '13', sysdate, null); -- Inserting RoleToUserAssignment 'RHIDALG3/H_TOPS_CNTRP_EXP_REP' harmony.usermgt.create_role_to_user_assignment('RHIDALG3', 'H_TOPS_CNTRP_EXP_REP', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'RHOEFNAG/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('RHOEFNAG', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RHOEFNAG/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('RHOEFNAG', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999141', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHOEFNAG', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999042', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHOEFNAG', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999041', sysdate, null); -- Inserting RoleToUserAssignment 'RHOEFNAG/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('RHOEFNAG', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RHOEFNAG/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('RHOEFNAG', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999141', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHOEFNAG', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999042', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHOEFNAG', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999041', sysdate, null); -- Inserting RoleToUserAssignment 'RHOLZER/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('RHOLZER', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RHOLZER/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('RHOLZER', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[266/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('RHOLZER', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11710/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'RHYMAN/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('RHYMAN', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RHYMAN/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('RHYMAN', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999176', sysdate, null); -- Inserting RoleToUserAssignment 'RHYMAN/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('RHYMAN', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RHYMAN/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('RHYMAN', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999176', sysdate, null); -- Inserting RoleToUserAssignment 'RJACINT2/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('RJACINT2', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RJACINT2/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('RJACINT2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11763/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('RJACINT2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11329/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('RJACINT2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11324/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('RJACINT2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11078/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('RJACINT2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11017/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'RJAIN1/H_EFS2_LOC_AUTH' harmony.usermgt.create_role_to_user_assignment('RJAIN1', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RJAIN1/H_EFS2_LOC_AUTH harmony.usermgt.create_dds_item_assignment('RJAIN1', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '309', sysdate, null); -- Inserting RoleToUserAssignment 'RJDESAMI/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('RJDESAMI', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RJDESAMI/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('RJDESAMI', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999745', sysdate, null); -- Inserting RoleToUserAssignment 'RJDESAMI/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('RJDESAMI', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RJDESAMI/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('RJDESAMI', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999745', sysdate, null); -- Inserting RoleToUserAssignment 'RJDESAMI/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('RJDESAMI', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RJDESAMI/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('RJDESAMI', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[168/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('RJDESAMI', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[147/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'RJDESAMI/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('RJDESAMI', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RJDESAMI/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('RJDESAMI', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[168/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'RJDESAMI/H_TPP_LOC_REP' harmony.usermgt.create_role_to_user_assignment('RJDESAMI', 'H_TPP_LOC_REP', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RJDESAMI/H_TPP_LOC_REP harmony.usermgt.create_dds_item_assignment('RJDESAMI', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '71', sysdate, null); harmony.usermgt.create_dds_item_assignment('RJDESAMI', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '29', sysdate, null); harmony.usermgt.create_dds_item_assignment('RJDESAMI', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '233', sysdate, null); harmony.usermgt.create_dds_item_assignment('RJDESAMI', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '13', sysdate, null); harmony.usermgt.create_dds_item_assignment('RJDESAMI', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '12', sysdate, null); -- Inserting RoleToUserAssignment 'RJDESAMI/H_TPP_P2P_REPORT' harmony.usermgt.create_role_to_user_assignment('RJDESAMI', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RJDESAMI/H_TPP_P2P_REPORT harmony.usermgt.create_dds_item_assignment('RJDESAMI', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '329', sysdate, null); harmony.usermgt.create_dds_item_assignment('RJDESAMI', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '328', sysdate, null); harmony.usermgt.create_dds_item_assignment('RJDESAMI', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '302', sysdate, null); -- Inserting RoleToUserAssignment 'RJUTAMAN/H_EFS2_LOC_REP_PARTY' harmony.usermgt.create_role_to_user_assignment('RJUTAMAN', 'H_EFS2_LOC_REP_PARTY', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RJUTAMAN/H_EFS2_LOC_REP_PARTY harmony.usermgt.create_dds_item_assignment('RJUTAMAN', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '371', sysdate, null); -- Inserting RoleToUserAssignment 'RJUTAMAN/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('RJUTAMAN', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RJUTAMAN/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('RJUTAMAN', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[424/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'RKARLI/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('RKARLI', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RKARLI/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('RKARLI', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11072/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'RKHERMOS/H_EFS2_LOC_EDIT' harmony.usermgt.create_role_to_user_assignment('RKHERMOS', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RKHERMOS/H_EFS2_LOC_EDIT harmony.usermgt.create_dds_item_assignment('RKHERMOS', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '583', sysdate, null); -- Inserting RoleToUserAssignment 'RKHERMOS/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('RKHERMOS', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RKHERMOS/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('RKHERMOS', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11556/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'RKOFLER/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('RKOFLER', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RKOFLER/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('RKOFLER', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11365/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'RKONDASO/H_TPP_P2P_REPORT' harmony.usermgt.create_role_to_user_assignment('RKONDASO', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RKONDASO/H_TPP_P2P_REPORT harmony.usermgt.create_dds_item_assignment('RKONDASO', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '404', sysdate, null); -- Inserting RoleToUserAssignment 'RKOORS/H_EFS2_LOC_AUTH' harmony.usermgt.create_role_to_user_assignment('RKOORS', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RKOORS/H_EFS2_LOC_AUTH harmony.usermgt.create_dds_item_assignment('RKOORS', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '268', sysdate, null); -- Inserting RoleToUserAssignment 'RKOX/H_EFS2_LOC_AUTH' harmony.usermgt.create_role_to_user_assignment('RKOX', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RKOX/H_EFS2_LOC_AUTH harmony.usermgt.create_dds_item_assignment('RKOX', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '544', sysdate, null); harmony.usermgt.create_dds_item_assignment('RKOX', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '362', sysdate, null); -- Inserting RoleToUserAssignment 'RKOX/H_EFS2_LOC_REP_PARTY' harmony.usermgt.create_role_to_user_assignment('RKOX', 'H_EFS2_LOC_REP_PARTY', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RKOX/H_EFS2_LOC_REP_PARTY harmony.usermgt.create_dds_item_assignment('RKOX', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '432', sysdate, null); -- Inserting RoleToUserAssignment 'RLEITE/BAM_MANAGER' harmony.usermgt.create_role_to_user_assignment('RLEITE', 'BAM_MANAGER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RLEITE/BAM_MANAGER harmony.usermgt.create_dds_item_assignment('RLEITE', 'BAM_MANAGER', 'BAM Region', 'ONE', '3', sysdate, null); -- Inserting RoleToUserAssignment 'RLEITE/BAM_REPORTER' harmony.usermgt.create_role_to_user_assignment('RLEITE', 'BAM_REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RLEITE/BAM_REPORTER harmony.usermgt.create_dds_item_assignment('RLEITE', 'BAM_REPORTER', 'BAM Region', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'RLEITE/HERMES_CMEFF_REP_CTR' harmony.usermgt.create_role_to_user_assignment('RLEITE', 'HERMES_CMEFF_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RLEITE/HERMES_CMEFF_REP_CTR harmony.usermgt.create_dds_item_assignment('RLEITE', 'HERMES_CMEFF_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'RLEITE/HERMES_GRP_REP_CTR' harmony.usermgt.create_role_to_user_assignment('RLEITE', 'HERMES_GRP_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RLEITE/HERMES_GRP_REP_CTR harmony.usermgt.create_dds_item_assignment('RLEITE', 'HERMES_GRP_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'RLEITE/HERMES_STAT_REP_CTR' harmony.usermgt.create_role_to_user_assignment('RLEITE', 'HERMES_STAT_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RLEITE/HERMES_STAT_REP_CTR harmony.usermgt.create_dds_item_assignment('RLEITE', 'HERMES_STAT_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'RLEITE/HERMES_STS_REP_CTR' harmony.usermgt.create_role_to_user_assignment('RLEITE', 'HERMES_STS_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RLEITE/HERMES_STS_REP_CTR harmony.usermgt.create_dds_item_assignment('RLEITE', 'HERMES_STS_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'RLEITE/HERMES_SYM_REC_CTR' harmony.usermgt.create_role_to_user_assignment('RLEITE', 'HERMES_SYM_REC_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RLEITE/HERMES_SYM_REC_CTR harmony.usermgt.create_dds_item_assignment('RLEITE', 'HERMES_SYM_REC_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'RLEITE/HERMES_TXN_REP_CTR' harmony.usermgt.create_role_to_user_assignment('RLEITE', 'HERMES_TXN_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RLEITE/HERMES_TXN_REP_CTR harmony.usermgt.create_dds_item_assignment('RLEITE', 'HERMES_TXN_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'RLEITE/HERMES_VAVO_REP_CTR' harmony.usermgt.create_role_to_user_assignment('RLEITE', 'HERMES_VAVO_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RLEITE/HERMES_VAVO_REP_CTR harmony.usermgt.create_dds_item_assignment('RLEITE', 'HERMES_VAVO_REP_CTR', 'Trax Account Groups', 'ALL', null, sysdate, null); -- Inserting RoleToUserAssignment 'RLEITE/H_EFS2_LOC_AUTH' harmony.usermgt.create_role_to_user_assignment('RLEITE', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RLEITE/H_EFS2_LOC_AUTH harmony.usermgt.create_dds_item_assignment('RLEITE', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '708', sysdate, null); harmony.usermgt.create_dds_item_assignment('RLEITE', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '399', sysdate, null); harmony.usermgt.create_dds_item_assignment('RLEITE', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '398', sysdate, null); harmony.usermgt.create_dds_item_assignment('RLEITE', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '397', sysdate, null); -- Inserting RoleToUserAssignment 'RLEITE/H_EFS2_LOC_EDIT' harmony.usermgt.create_role_to_user_assignment('RLEITE', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RLEITE/H_EFS2_LOC_EDIT harmony.usermgt.create_dds_item_assignment('RLEITE', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '708', sysdate, null); -- Inserting RoleToUserAssignment 'RLEITE/H_EFS2_LOC_REP_PARTY' harmony.usermgt.create_role_to_user_assignment('RLEITE', 'H_EFS2_LOC_REP_PARTY', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RLEITE/H_EFS2_LOC_REP_PARTY harmony.usermgt.create_dds_item_assignment('RLEITE', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '480', sysdate, null); harmony.usermgt.create_dds_item_assignment('RLEITE', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '400', sysdate, null); -- Inserting RoleToUserAssignment 'RLEITE/H_SWIFTCOM_RELEASER' harmony.usermgt.create_role_to_user_assignment('RLEITE', 'H_SWIFTCOM_RELEASER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RLEITE/H_SWIFTCOM_RELEASER harmony.usermgt.create_dds_item_assignment('RLEITE', 'H_SWIFTCOM_RELEASER', 'SWIFTCOM FM Source', 'ONE', '13', sysdate, null); -- Inserting RoleToUserAssignment 'RLEITE/H_TOPS_CNTRP_EXP_REP' harmony.usermgt.create_role_to_user_assignment('RLEITE', 'H_TOPS_CNTRP_EXP_REP', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'RLENZ/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('RLENZ', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RLENZ/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('RLENZ', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999889', sysdate, null); harmony.usermgt.create_dds_item_assignment('RLENZ', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998968', sysdate, null); -- Inserting RoleToUserAssignment 'RLENZ/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('RLENZ', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RLENZ/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('RLENZ', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999889', sysdate, null); harmony.usermgt.create_dds_item_assignment('RLENZ', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998968', sysdate, null); -- Inserting RoleToUserAssignment 'RLENZ/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('RLENZ', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RLENZ/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('RLENZ', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11881/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('RLENZ', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11780/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('RLENZ', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11707/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('RLENZ', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[115/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'RLENZ/H_TPP_P2P_OFFERMGT' harmony.usermgt.create_role_to_user_assignment('RLENZ', 'H_TPP_P2P_OFFERMGT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RLENZ/H_TPP_P2P_OFFERMGT harmony.usermgt.create_dds_item_assignment('RLENZ', 'H_TPP_P2P_OFFERMGT', 'TPP AP2PLE OC', 'ONE', '114', sysdate, null); -- Inserting RoleToUserAssignment 'RLLANTOS/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('RLLANTOS', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RLLANTOS/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('RLLANTOS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[37/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('RLLANTOS', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11456/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'RLOJKOVA/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('RLOJKOVA', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RLOJKOVA/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('RLOJKOVA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999863', sysdate, null); harmony.usermgt.create_dds_item_assignment('RLOJKOVA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999862', sysdate, null); harmony.usermgt.create_dds_item_assignment('RLOJKOVA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999844', sysdate, null); harmony.usermgt.create_dds_item_assignment('RLOJKOVA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999843', sysdate, null); harmony.usermgt.create_dds_item_assignment('RLOJKOVA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999644', sysdate, null); harmony.usermgt.create_dds_item_assignment('RLOJKOVA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999003', sysdate, null); harmony.usermgt.create_dds_item_assignment('RLOJKOVA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999002', sysdate, null); harmony.usermgt.create_dds_item_assignment('RLOJKOVA', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999001', sysdate, null); -- Inserting RoleToUserAssignment 'RLOJKOVA/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('RLOJKOVA', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RLOJKOVA/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('RLOJKOVA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999863', sysdate, null); harmony.usermgt.create_dds_item_assignment('RLOJKOVA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999862', sysdate, null); harmony.usermgt.create_dds_item_assignment('RLOJKOVA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999844', sysdate, null); harmony.usermgt.create_dds_item_assignment('RLOJKOVA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999843', sysdate, null); harmony.usermgt.create_dds_item_assignment('RLOJKOVA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999644', sysdate, null); harmony.usermgt.create_dds_item_assignment('RLOJKOVA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999003', sysdate, null); harmony.usermgt.create_dds_item_assignment('RLOJKOVA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999002', sysdate, null); harmony.usermgt.create_dds_item_assignment('RLOJKOVA', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999001', sysdate, null); -- Inserting RoleToUserAssignment 'RLOJKOVA/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('RLOJKOVA', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RLOJKOVA/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('RLOJKOVA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[175/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('RLOJKOVA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[174/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('RLOJKOVA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[173/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('RLOJKOVA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[172/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('RLOJKOVA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[171/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('RLOJKOVA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11182/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('RLOJKOVA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11181/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('RLOJKOVA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11180/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'RLOW1/H_EFS2_LOC_EDIT' harmony.usermgt.create_role_to_user_assignment('RLOW1', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RLOW1/H_EFS2_LOC_EDIT harmony.usermgt.create_dds_item_assignment('RLOW1', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '486', sysdate, null); -- Inserting RoleToUserAssignment 'RLOW1/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('RLOW1', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RLOW1/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('RLOW1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[5001/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'RLOW1/H_TPP_LOC_EDIT' harmony.usermgt.create_role_to_user_assignment('RLOW1', 'H_TPP_LOC_EDIT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RLOW1/H_TPP_LOC_EDIT harmony.usermgt.create_dds_item_assignment('RLOW1', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '33', sysdate, null); -- Inserting RoleToUserAssignment 'RMACARIO/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('RMACARIO', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RMACARIO/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('RMACARIO', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[156/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMACARIO', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[153/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMACARIO', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[140/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMACARIO', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11566/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'RMACARIO/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('RMACARIO', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RMACARIO/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('RMACARIO', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[153/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'RMACARIO/H_TPP_LOC_REP' harmony.usermgt.create_role_to_user_assignment('RMACARIO', 'H_TPP_LOC_REP', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RMACARIO/H_TPP_LOC_REP harmony.usermgt.create_dds_item_assignment('RMACARIO', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '29', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMACARIO', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '233', sysdate, null); -- Inserting RoleToUserAssignment 'RMACARIO/H_TPP_P2P_REPORT' harmony.usermgt.create_role_to_user_assignment('RMACARIO', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RMACARIO/H_TPP_P2P_REPORT harmony.usermgt.create_dds_item_assignment('RMACARIO', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '302', sysdate, null); -- Inserting RoleToUserAssignment 'RMALINAO/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('RMALINAO', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RMALINAO/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('RMALINAO', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999872', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999864', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999847', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999846', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999745', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '200010', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998966', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998973', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999111', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999141', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999187', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999364', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999382', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999410', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999417', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999427', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999666', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999714', sysdate, null); -- Inserting RoleToUserAssignment 'RMALINAO/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('RMALINAO', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RMALINAO/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('RMALINAO', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999872', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999864', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999847', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999846', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999745', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '200010', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998966', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998973', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999111', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999141', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999187', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999364', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999382', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999410', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999417', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999427', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999666', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999714', sysdate, null); -- Inserting RoleToUserAssignment 'RMALINAO/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('RMALINAO', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RMALINAO/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('RMALINAO', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[88/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[178/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[156/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[116/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11582/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11580/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[102/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'RMALINAO/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('RMALINAO', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RMALINAO/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('RMALINAO', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[88/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[116/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'RMALINAO/H_TPP_P2P_REPORT' harmony.usermgt.create_role_to_user_assignment('RMALINAO', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RMALINAO/H_TPP_P2P_REPORT harmony.usermgt.create_dds_item_assignment('RMALINAO', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '327', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '301', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '300', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '278', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '274', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '191', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '148', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMALINAO', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '120', sysdate, null); -- Inserting RoleToUserAssignment 'RMARCUZZ/H_EFS2_LOC_EDIT' harmony.usermgt.create_role_to_user_assignment('RMARCUZZ', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RMARCUZZ/H_EFS2_LOC_EDIT harmony.usermgt.create_dds_item_assignment('RMARCUZZ', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '400', sysdate, null); -- Inserting RoleToUserAssignment 'RMCMAHO/H_EFS2_LOC_REP_PARTY' harmony.usermgt.create_role_to_user_assignment('RMCMAHO', 'H_EFS2_LOC_REP_PARTY', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RMCMAHO/H_EFS2_LOC_REP_PARTY harmony.usermgt.create_dds_item_assignment('RMCMAHO', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '268', sysdate, null); -- Inserting RoleToUserAssignment 'RMERLI/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('RMERLI', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RMERLI/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('RMERLI', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999469', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMERLI', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999381', sysdate, null); -- Inserting RoleToUserAssignment 'RMERLI/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('RMERLI', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RMERLI/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('RMERLI', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999469', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMERLI', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999381', sysdate, null); -- Inserting RoleToUserAssignment 'RMINICOZ/H_EFS2_LOC_EDIT' harmony.usermgt.create_role_to_user_assignment('RMINICOZ', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RMINICOZ/H_EFS2_LOC_EDIT harmony.usermgt.create_dds_item_assignment('RMINICOZ', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '582', sysdate, null); harmony.usermgt.create_dds_item_assignment('RMINICOZ', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '270', sysdate, null); -- Inserting RoleToUserAssignment 'RNAISMY/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('RNAISMY', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RNAISMY/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('RNAISMY', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999442', sysdate, null); -- Inserting RoleToUserAssignment 'RNAISMY/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('RNAISMY', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RNAISMY/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('RNAISMY', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999442', sysdate, null); -- Inserting RoleToUserAssignment 'RNAISMY/H_SWIFTCOM_REPORTER' harmony.usermgt.create_role_to_user_assignment('RNAISMY', 'H_SWIFTCOM_REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RNAISMY/H_SWIFTCOM_REPORTER harmony.usermgt.create_dds_item_assignment('RNAISMY', 'H_SWIFTCOM_REPORTER', 'SWIFTCOM FM Source', 'ONE', '13', sysdate, null); -- Inserting RoleToUserAssignment 'RNAKAGAW/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('RNAKAGAW', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RNAKAGAW/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('RNAKAGAW', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11887/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'RNAKAJIM/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('RNAKAJIM', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RNAKAJIM/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('RNAKAJIM', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[150/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'RNAKAJIM/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('RNAKAJIM', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RNAKAJIM/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('RNAKAJIM', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[150/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'RNAKAJIM/H_TPP_P2P_OFFERMGT' harmony.usermgt.create_role_to_user_assignment('RNAKAJIM', 'H_TPP_P2P_OFFERMGT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RNAKAJIM/H_TPP_P2P_OFFERMGT harmony.usermgt.create_dds_item_assignment('RNAKAJIM', 'H_TPP_P2P_OFFERMGT', 'TPP AP2PLE OC', 'ONE', '348', sysdate, null); -- Inserting RoleToUserAssignment 'ROLIVA2/H_EFS2_LOC_EDIT' harmony.usermgt.create_role_to_user_assignment('ROLIVA2', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for ROLIVA2/H_EFS2_LOC_EDIT harmony.usermgt.create_dds_item_assignment('ROLIVA2', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '309', sysdate, null); -- Inserting RoleToUserAssignment 'ROLIVA2/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('ROLIVA2', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for ROLIVA2/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('ROLIVA2', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[417/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'ROREGAN1/H_TPP_LOC_EDIT' harmony.usermgt.create_role_to_user_assignment('ROREGAN1', 'H_TPP_LOC_EDIT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for ROREGAN1/H_TPP_LOC_EDIT harmony.usermgt.create_dds_item_assignment('ROREGAN1', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '315', sysdate, null); -- Inserting RoleToUserAssignment 'RPACLIBA/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('RPACLIBA', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RPACLIBA/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('RPACLIBA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[84/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('RPACLIBA', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[423/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'RPALOVIC/H_EFS2_LOC_REP_PARTY' harmony.usermgt.create_role_to_user_assignment('RPALOVIC', 'H_EFS2_LOC_REP_PARTY', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RPALOVIC/H_EFS2_LOC_REP_PARTY harmony.usermgt.create_dds_item_assignment('RPALOVIC', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '684', sysdate, null); harmony.usermgt.create_dds_item_assignment('RPALOVIC', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '638', sysdate, null); harmony.usermgt.create_dds_item_assignment('RPALOVIC', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '584', sysdate, null); harmony.usermgt.create_dds_item_assignment('RPALOVIC', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '550', sysdate, null); -- Inserting RoleToUserAssignment 'RPALOVIC/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('RPALOVIC', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RPALOVIC/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('RPALOVIC', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11991/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'RPARE/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('RPARE', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RPARE/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('RPARE', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999204', sysdate, null); -- Inserting RoleToUserAssignment 'RPARE/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('RPARE', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RPARE/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('RPARE', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999204', sysdate, null); -- Inserting RoleToUserAssignment 'RPASQUIL/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('RPASQUIL', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RPASQUIL/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('RPASQUIL', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11495/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('RPASQUIL', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11342/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'RPASQUIL/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('RPASQUIL', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RPASQUIL/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('RPASQUIL', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11342/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'RPASQUIL/H_TPP_P2P_OFFERMGT' harmony.usermgt.create_role_to_user_assignment('RPASQUIL', 'H_TPP_P2P_OFFERMGT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RPASQUIL/H_TPP_P2P_OFFERMGT harmony.usermgt.create_dds_item_assignment('RPASQUIL', 'H_TPP_P2P_OFFERMGT', 'TPP AP2PLE OC', 'ONE', '149', sysdate, null); -- Inserting RoleToUserAssignment 'RPIOY/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('RPIOY', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RPIOY/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('RPIOY', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[5001/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'RPIZZUTI/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('RPIZZUTI', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RPIZZUTI/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('RPIZZUTI', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999876', sysdate, null); harmony.usermgt.create_dds_item_assignment('RPIZZUTI', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999875', sysdate, null); harmony.usermgt.create_dds_item_assignment('RPIZZUTI', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999203', sysdate, null); -- Inserting RoleToUserAssignment 'RPIZZUTI/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('RPIZZUTI', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RPIZZUTI/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('RPIZZUTI', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999876', sysdate, null); harmony.usermgt.create_dds_item_assignment('RPIZZUTI', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999875', sysdate, null); harmony.usermgt.create_dds_item_assignment('RPIZZUTI', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999203', sysdate, null); -- Inserting RoleToUserAssignment 'RPIZZUTI/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('RPIZZUTI', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RPIZZUTI/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('RPIZZUTI', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[146/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('RPIZZUTI', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11327/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'RPONCE3/H_EFS2_LOC_REP_PARTY' harmony.usermgt.create_role_to_user_assignment('RPONCE3', 'H_EFS2_LOC_REP_PARTY', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RPONCE3/H_EFS2_LOC_REP_PARTY harmony.usermgt.create_dds_item_assignment('RPONCE3', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '657', sysdate, null); -- Inserting RoleToUserAssignment 'RPONCE3/H_NETTING_LOC_INP_TC' harmony.usermgt.create_role_to_user_assignment('RPONCE3', 'H_NETTING_LOC_INP_TC', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RPONCE3/H_NETTING_LOC_INP_TC harmony.usermgt.create_dds_item_assignment('RPONCE3', 'H_NETTING_LOC_INP_TC', 'Treasury Center Netting Participant', 'ONE', '[11656/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'RPONCE3/H_TPP_LOC_EDIT' harmony.usermgt.create_role_to_user_assignment('RPONCE3', 'H_TPP_LOC_EDIT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RPONCE3/H_TPP_LOC_EDIT harmony.usermgt.create_dds_item_assignment('RPONCE3', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '298', sysdate, null); -- Inserting RoleToUserAssignment 'RPURCELL/H_EFS2_LOC_EDIT' harmony.usermgt.create_role_to_user_assignment('RPURCELL', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RPURCELL/H_EFS2_LOC_EDIT harmony.usermgt.create_dds_item_assignment('RPURCELL', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '266', sysdate, null); harmony.usermgt.create_dds_item_assignment('RPURCELL', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '265', sysdate, null); -- Inserting RoleToUserAssignment 'RPURCELL/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('RPURCELL', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RPURCELL/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('RPURCELL', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11330/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'RPURCELL/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('RPURCELL', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RPURCELL/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('RPURCELL', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[57/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'RQAZI1/H_EFS2_LOC_EDIT' harmony.usermgt.create_role_to_user_assignment('RQAZI1', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RQAZI1/H_EFS2_LOC_EDIT harmony.usermgt.create_dds_item_assignment('RQAZI1', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '408', sysdate, null); -- Inserting RoleToUserAssignment 'RQAZI1/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('RQAZI1', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RQAZI1/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('RQAZI1', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[101/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'RQAZI1/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('RQAZI1', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RQAZI1/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('RQAZI1', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11003/CC]', sysdate, null); -- Inserting RoleToUserAssignment 'RQUINANO/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('RQUINANO', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RQUINANO/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('RQUINANO', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[147/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('RQUINANO', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11753/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('RQUINANO', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11699/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'RQUINANO/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('RQUINANO', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RQUINANO/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('RQUINANO', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11753/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'RQUINANO/H_TPP_LOC_REP' harmony.usermgt.create_role_to_user_assignment('RQUINANO', 'H_TPP_LOC_REP', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RQUINANO/H_TPP_LOC_REP harmony.usermgt.create_dds_item_assignment('RQUINANO', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '71', sysdate, null); harmony.usermgt.create_dds_item_assignment('RQUINANO', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '13', sysdate, null); harmony.usermgt.create_dds_item_assignment('RQUINANO', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '12', sysdate, null); -- Inserting RoleToUserAssignment 'RQUINANO/H_TPP_P2P_REPORT' harmony.usermgt.create_role_to_user_assignment('RQUINANO', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RQUINANO/H_TPP_P2P_REPORT harmony.usermgt.create_dds_item_assignment('RQUINANO', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '343', sysdate, null); -- Inserting RoleToUserAssignment 'RRAVAL45/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('RRAVAL45', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RRAVAL45/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('RRAVAL45', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999933', sysdate, null); harmony.usermgt.create_dds_item_assignment('RRAVAL45', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999932', sysdate, null); harmony.usermgt.create_dds_item_assignment('RRAVAL45', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999569', sysdate, null); -- Inserting RoleToUserAssignment 'RRAVAL45/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('RRAVAL45', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RRAVAL45/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('RRAVAL45', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999933', sysdate, null); harmony.usermgt.create_dds_item_assignment('RRAVAL45', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999932', sysdate, null); harmony.usermgt.create_dds_item_assignment('RRAVAL45', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999569', sysdate, null); -- Inserting RoleToUserAssignment 'RRIETBRO/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('RRIETBRO', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RRIETBRO/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('RRIETBRO', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999863', sysdate, null); harmony.usermgt.create_dds_item_assignment('RRIETBRO', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999862', sysdate, null); -- Inserting RoleToUserAssignment 'RRIETBRO/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('RRIETBRO', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RRIETBRO/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('RRIETBRO', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999863', sysdate, null); harmony.usermgt.create_dds_item_assignment('RRIETBRO', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999862', sysdate, null); -- Inserting RoleToUserAssignment 'RRIVERA2/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('RRIVERA2', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RRIVERA2/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('RRIVERA2', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999442', sysdate, null); -- Inserting RoleToUserAssignment 'RRIVERA2/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('RRIVERA2', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RRIVERA2/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('RRIVERA2', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999442', sysdate, null); -- Inserting RoleToUserAssignment 'RRIVERA2/H_SWIFTCOM_REPORTER' harmony.usermgt.create_role_to_user_assignment('RRIVERA2', 'H_SWIFTCOM_REPORTER', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RRIVERA2/H_SWIFTCOM_REPORTER harmony.usermgt.create_dds_item_assignment('RRIVERA2', 'H_SWIFTCOM_REPORTER', 'SWIFTCOM FM Source', 'ONE', '13', sysdate, null); -- Inserting RoleToUserAssignment 'RROARTY/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('RROARTY', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RROARTY/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('RROARTY', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[41/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('RROARTY', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[39/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('RROARTY', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[2/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('RROARTY', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11463/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('RROARTY', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11343/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'RROCKBRU/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('RROCKBRU', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RROCKBRU/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('RROCKBRU', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11630/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'RROETTGE/H_TPP_LOC_AUTH' harmony.usermgt.create_role_to_user_assignment('RROETTGE', 'H_TPP_LOC_AUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RROETTGE/H_TPP_LOC_AUTH harmony.usermgt.create_dds_item_assignment('RROETTGE', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '65', sysdate, null); harmony.usermgt.create_dds_item_assignment('RROETTGE', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '52', sysdate, null); harmony.usermgt.create_dds_item_assignment('RROETTGE', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '51', sysdate, null); harmony.usermgt.create_dds_item_assignment('RROETTGE', 'H_TPP_LOC_AUTH', 'TPP operating company', 'ONE', '11', sysdate, null); -- Inserting RoleToUserAssignment 'RROMAR/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('RROMAR', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RROMAR/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('RROMAR', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998904', sysdate, null); -- Inserting RoleToUserAssignment 'RROMAR/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('RROMAR', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RROMAR/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('RROMAR', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998904', sysdate, null); -- Inserting RoleToUserAssignment 'RROMAR/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('RROMAR', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RROMAR/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('RROMAR', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11805/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'RRUTAQUI/HERMES_CMEFF_REP_CTR' harmony.usermgt.create_role_to_user_assignment('RRUTAQUI', 'HERMES_CMEFF_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RRUTAQUI/HERMES_CMEFF_REP_CTR harmony.usermgt.create_dds_item_assignment('RRUTAQUI', 'HERMES_CMEFF_REP_CTR', 'Trax Account Groups', 'ONE', '32', sysdate, null); harmony.usermgt.create_dds_item_assignment('RRUTAQUI', 'HERMES_CMEFF_REP_CTR', 'Trax Account Groups', 'ONE', '17', sysdate, null); -- Inserting RoleToUserAssignment 'RRUTAQUI/HERMES_GRP_REP_CTR' harmony.usermgt.create_role_to_user_assignment('RRUTAQUI', 'HERMES_GRP_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RRUTAQUI/HERMES_GRP_REP_CTR harmony.usermgt.create_dds_item_assignment('RRUTAQUI', 'HERMES_GRP_REP_CTR', 'Trax Account Groups', 'ONE', '32', sysdate, null); harmony.usermgt.create_dds_item_assignment('RRUTAQUI', 'HERMES_GRP_REP_CTR', 'Trax Account Groups', 'ONE', '17', sysdate, null); -- Inserting RoleToUserAssignment 'RRUTAQUI/HERMES_IDTXN_REP_CTR' harmony.usermgt.create_role_to_user_assignment('RRUTAQUI', 'HERMES_IDTXN_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RRUTAQUI/HERMES_IDTXN_REP_CTR harmony.usermgt.create_dds_item_assignment('RRUTAQUI', 'HERMES_IDTXN_REP_CTR', 'Trax Account Groups', 'ONE', '32', sysdate, null); harmony.usermgt.create_dds_item_assignment('RRUTAQUI', 'HERMES_IDTXN_REP_CTR', 'Trax Account Groups', 'ONE', '17', sysdate, null); -- Inserting RoleToUserAssignment 'RRUTAQUI/HERMES_STAT_REP_CTR' harmony.usermgt.create_role_to_user_assignment('RRUTAQUI', 'HERMES_STAT_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RRUTAQUI/HERMES_STAT_REP_CTR harmony.usermgt.create_dds_item_assignment('RRUTAQUI', 'HERMES_STAT_REP_CTR', 'Trax Account Groups', 'ONE', '32', sysdate, null); harmony.usermgt.create_dds_item_assignment('RRUTAQUI', 'HERMES_STAT_REP_CTR', 'Trax Account Groups', 'ONE', '17', sysdate, null); -- Inserting RoleToUserAssignment 'RRUTAQUI/HERMES_STS_REP_CTR' harmony.usermgt.create_role_to_user_assignment('RRUTAQUI', 'HERMES_STS_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RRUTAQUI/HERMES_STS_REP_CTR harmony.usermgt.create_dds_item_assignment('RRUTAQUI', 'HERMES_STS_REP_CTR', 'Trax Account Groups', 'ONE', '32', sysdate, null); harmony.usermgt.create_dds_item_assignment('RRUTAQUI', 'HERMES_STS_REP_CTR', 'Trax Account Groups', 'ONE', '17', sysdate, null); -- Inserting RoleToUserAssignment 'RRUTAQUI/HERMES_SYM_REC_CTR' harmony.usermgt.create_role_to_user_assignment('RRUTAQUI', 'HERMES_SYM_REC_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RRUTAQUI/HERMES_SYM_REC_CTR harmony.usermgt.create_dds_item_assignment('RRUTAQUI', 'HERMES_SYM_REC_CTR', 'Trax Account Groups', 'ONE', '32', sysdate, null); harmony.usermgt.create_dds_item_assignment('RRUTAQUI', 'HERMES_SYM_REC_CTR', 'Trax Account Groups', 'ONE', '17', sysdate, null); -- Inserting RoleToUserAssignment 'RRUTAQUI/HERMES_TXN_REP_CTR' harmony.usermgt.create_role_to_user_assignment('RRUTAQUI', 'HERMES_TXN_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RRUTAQUI/HERMES_TXN_REP_CTR harmony.usermgt.create_dds_item_assignment('RRUTAQUI', 'HERMES_TXN_REP_CTR', 'Trax Account Groups', 'ONE', '32', sysdate, null); harmony.usermgt.create_dds_item_assignment('RRUTAQUI', 'HERMES_TXN_REP_CTR', 'Trax Account Groups', 'ONE', '17', sysdate, null); -- Inserting RoleToUserAssignment 'RRUTAQUI/HERMES_VAVO_REP_CTR' harmony.usermgt.create_role_to_user_assignment('RRUTAQUI', 'HERMES_VAVO_REP_CTR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RRUTAQUI/HERMES_VAVO_REP_CTR harmony.usermgt.create_dds_item_assignment('RRUTAQUI', 'HERMES_VAVO_REP_CTR', 'Trax Account Groups', 'ONE', '32', sysdate, null); harmony.usermgt.create_dds_item_assignment('RRUTAQUI', 'HERMES_VAVO_REP_CTR', 'Trax Account Groups', 'ONE', '17', sysdate, null); -- Inserting RoleToUserAssignment 'RRUTAQUI/H_TPP_LOC_REP' harmony.usermgt.create_role_to_user_assignment('RRUTAQUI', 'H_TPP_LOC_REP', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RRUTAQUI/H_TPP_LOC_REP harmony.usermgt.create_dds_item_assignment('RRUTAQUI', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '34', sysdate, null); -- Inserting RoleToUserAssignment 'RSALVADO/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('RSALVADO', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RSALVADO/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('RSALVADO', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999812', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSALVADO', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999809', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSALVADO', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998919', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSALVADO', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999020', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSALVADO', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999068', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSALVADO', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999245', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSALVADO', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999246', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSALVADO', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999320', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSALVADO', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999331', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSALVADO', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999547', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSALVADO', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999691', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSALVADO', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999692', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSALVADO', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999693', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSALVADO', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999804', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSALVADO', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999808', sysdate, null); -- Inserting RoleToUserAssignment 'RSALVADO/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('RSALVADO', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RSALVADO/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('RSALVADO', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999812', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSALVADO', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999809', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSALVADO', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998919', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSALVADO', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999020', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSALVADO', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999068', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSALVADO', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999245', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSALVADO', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999246', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSALVADO', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999320', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSALVADO', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999331', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSALVADO', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999547', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSALVADO', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999691', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSALVADO', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999692', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSALVADO', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999693', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSALVADO', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999804', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSALVADO', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999808', sysdate, null); -- Inserting RoleToUserAssignment 'RSALVADO/H_ASP2PIRE1_SSC_MGR' harmony.usermgt.create_role_to_user_assignment('RSALVADO', 'H_ASP2PIRE1_SSC_MGR', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RSALVADO/H_ASP2PIRE1_SSC_MGR harmony.usermgt.create_dds_item_assignment('RSALVADO', 'H_ASP2PIRE1_SSC_MGR', 'TPP AP2PLE OC', 'ONE', '345', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSALVADO', 'H_ASP2PIRE1_SSC_MGR', 'TPP AP2PLE OC', 'ONE', '346', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSALVADO', 'H_ASP2PIRE1_SSC_MGR', 'TPP AP2PLE OC', 'ONE', '347', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSALVADO', 'H_ASP2PIRE1_SSC_MGR', 'TPP AP2PLE OC', 'ONE', '348', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSALVADO', 'H_ASP2PIRE1_SSC_MGR', 'TPP AP2PLE OC', 'ONE', '349', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSALVADO', 'H_ASP2PIRE1_SSC_MGR', 'TPP AP2PLE OC', 'ONE', '408', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSALVADO', 'H_ASP2PIRE1_SSC_MGR', 'TPP AP2PLE OC', 'ONE', '409', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSALVADO', 'H_ASP2PIRE1_SSC_MGR', 'TPP AP2PLE OC', 'ONE', '410', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSALVADO', 'H_ASP2PIRE1_SSC_MGR', 'TPP AP2PLE OC', 'ONE', '411', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSALVADO', 'H_ASP2PIRE1_SSC_MGR', 'TPP AP2PLE OC', 'ONE', '412', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSALVADO', 'H_ASP2PIRE1_SSC_MGR', 'TPP AP2PLE OC', 'ONE', '413', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSALVADO', 'H_ASP2PIRE1_SSC_MGR', 'TPP AP2PLE OC', 'ONE', '414', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSALVADO', 'H_ASP2PIRE1_SSC_MGR', 'TPP AP2PLE OC', 'ONE', '415', sysdate, null); -- Inserting RoleToUserAssignment 'RSALVADO/H_ASP2PIRE2_SSC_MGR' harmony.usermgt.create_role_to_user_assignment('RSALVADO', 'H_ASP2PIRE2_SSC_MGR', sysdate, null, 'ACTIVE'); -- Inserting RoleToUserAssignment 'RSALVADO/H_TPP_LOC_REP' harmony.usermgt.create_role_to_user_assignment('RSALVADO', 'H_TPP_LOC_REP', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RSALVADO/H_TPP_LOC_REP harmony.usermgt.create_dds_item_assignment('RSALVADO', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '77', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSALVADO', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '76', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSALVADO', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '423', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSALVADO', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '422', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSALVADO', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '421', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSALVADO', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '420', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSALVADO', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '419', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSALVADO', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '418', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSALVADO', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '417', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSALVADO', 'H_TPP_LOC_REP', 'TPP operating company', 'ONE', '416', sysdate, null); -- Inserting RoleToUserAssignment 'RSCARLET/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('RSCARLET', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RSCARLET/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('RSCARLET', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999683', sysdate, null); -- Inserting RoleToUserAssignment 'RSCARLET/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('RSCARLET', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RSCARLET/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('RSCARLET', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999683', sysdate, null); -- Inserting RoleToUserAssignment 'RSCHMID8/H_EFS2_LOC_AUTH' harmony.usermgt.create_role_to_user_assignment('RSCHMID8', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RSCHMID8/H_EFS2_LOC_AUTH harmony.usermgt.create_dds_item_assignment('RSCHMID8', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '696', sysdate, null); -- Inserting RoleToUserAssignment 'RSCHMID8/H_EFS2_LOC_EDIT' harmony.usermgt.create_role_to_user_assignment('RSCHMID8', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RSCHMID8/H_EFS2_LOC_EDIT harmony.usermgt.create_dds_item_assignment('RSCHMID8', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '696', sysdate, null); -- Inserting RoleToUserAssignment 'RSCHMID8/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('RSCHMID8', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RSCHMID8/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('RSCHMID8', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11846/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'RSCHMID8/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('RSCHMID8', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RSCHMID8/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('RSCHMID8', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11846/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'RSIMPSO5/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('RSIMPSO5', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RSIMPSO5/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('RSIMPSO5', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998983', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSIMPSO5', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998958', sysdate, null); -- Inserting RoleToUserAssignment 'RSIMPSO5/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('RSIMPSO5', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RSIMPSO5/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('RSIMPSO5', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998983', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSIMPSO5', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998958', sysdate, null); -- Inserting RoleToUserAssignment 'RSIMPSO5/H_EFS2_LOC_AUTH' harmony.usermgt.create_role_to_user_assignment('RSIMPSO5', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RSIMPSO5/H_EFS2_LOC_AUTH harmony.usermgt.create_dds_item_assignment('RSIMPSO5', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '647', sysdate, null); -- Inserting RoleToUserAssignment 'RSIMPSO5/H_EFS2_LOC_REP_PARTY' harmony.usermgt.create_role_to_user_assignment('RSIMPSO5', 'H_EFS2_LOC_REP_PARTY', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RSIMPSO5/H_EFS2_LOC_REP_PARTY harmony.usermgt.create_dds_item_assignment('RSIMPSO5', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '618', sysdate, null); -- Inserting RoleToUserAssignment 'RSIMPSO5/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('RSIMPSO5', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RSIMPSO5/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('RSIMPSO5', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11670/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'RSIMPSO5/H_TPP_P2P_OFFERAUTH' harmony.usermgt.create_role_to_user_assignment('RSIMPSO5', 'H_TPP_P2P_OFFERAUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RSIMPSO5/H_TPP_P2P_OFFERAUTH harmony.usermgt.create_dds_item_assignment('RSIMPSO5', 'H_TPP_P2P_OFFERAUTH', 'TPP AP2PLE OC', 'ONE', '336', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSIMPSO5', 'H_TPP_P2P_OFFERAUTH', 'TPP AP2PLE OC', 'ONE', '333', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSIMPSO5', 'H_TPP_P2P_OFFERAUTH', 'TPP AP2PLE OC', 'ONE', '285', sysdate, null); -- Inserting RoleToUserAssignment 'RSOLORI2/H_EFS2_LOC_AUTH' harmony.usermgt.create_role_to_user_assignment('RSOLORI2', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RSOLORI2/H_EFS2_LOC_AUTH harmony.usermgt.create_dds_item_assignment('RSOLORI2', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '700', sysdate, null); -- Inserting RoleToUserAssignment 'RSOLORI2/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('RSOLORI2', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RSOLORI2/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('RSOLORI2', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11867/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'RSOPOV/H_EFS2_LOC_AUTH' harmony.usermgt.create_role_to_user_assignment('RSOPOV', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RSOPOV/H_EFS2_LOC_AUTH harmony.usermgt.create_dds_item_assignment('RSOPOV', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '408', sysdate, null); -- Inserting RoleToUserAssignment 'RSTEHLIK/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('RSTEHLIK', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RSTEHLIK/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('RSTEHLIK', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999800', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSTEHLIK', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999189', sysdate, null); -- Inserting RoleToUserAssignment 'RSTEHLIK/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('RSTEHLIK', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RSTEHLIK/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('RSTEHLIK', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999800', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSTEHLIK', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999189', sysdate, null); -- Inserting RoleToUserAssignment 'RSTEHLIK/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('RSTEHLIK', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RSTEHLIK/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('RSTEHLIK', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[89/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'RSTEHLIK/H_TPP_P2P_REPORT' harmony.usermgt.create_role_to_user_assignment('RSTEHLIK', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RSTEHLIK/H_TPP_P2P_REPORT harmony.usermgt.create_dds_item_assignment('RSTEHLIK', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '119', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSTEHLIK', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '117', sysdate, null); -- Inserting RoleToUserAssignment 'RSTEINER/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('RSTEINER', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RSTEINER/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('RSTEINER', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999844', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSTEINER', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999843', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSTEINER', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999003', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSTEINER', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999002', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSTEINER', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999001', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSTEINER', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999000', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSTEINER', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998999', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSTEINER', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998998', sysdate, null); -- Inserting RoleToUserAssignment 'RSTEINER/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('RSTEINER', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RSTEINER/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('RSTEINER', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999844', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSTEINER', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999843', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSTEINER', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999003', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSTEINER', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999002', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSTEINER', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999001', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSTEINER', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999000', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSTEINER', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998999', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSTEINER', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998998', sysdate, null); -- Inserting RoleToUserAssignment 'RSTEINER/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('RSTEINER', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RSTEINER/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('RSTEINER', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11180/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSTEINER', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11181/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSTEINER', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11182/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSTEINER', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[117/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSTEINER', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[154/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSTEINER', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[171/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSTEINER', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[172/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSTEINER', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[173/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSTEINER', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[174/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSTEINER', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[175/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSTEINER', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[190/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSTEINER', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[438/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSTEINER', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[47/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'RSTEINER/H_TPP_P2P_REPORT' harmony.usermgt.create_role_to_user_assignment('RSTEINER', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RSTEINER/H_TPP_P2P_REPORT harmony.usermgt.create_dds_item_assignment('RSTEINER', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '311', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSTEINER', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '310', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSTEINER', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '309', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSTEINER', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '308', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSTEINER', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '307', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSTEINER', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '306', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSTEINER', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '305', sysdate, null); -- Inserting RoleToUserAssignment 'RSZCZYGI/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('RSZCZYGI', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RSZCZYGI/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('RSZCZYGI', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999690', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSZCZYGI', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '998868', sysdate, null); -- Inserting RoleToUserAssignment 'RSZCZYGI/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('RSZCZYGI', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RSZCZYGI/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('RSZCZYGI', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999690', sysdate, null); harmony.usermgt.create_dds_item_assignment('RSZCZYGI', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '998868', sysdate, null); -- Inserting RoleToUserAssignment 'RSZCZYGI/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('RSZCZYGI', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RSZCZYGI/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('RSZCZYGI', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11995/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'RSZCZYGI/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('RSZCZYGI', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RSZCZYGI/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('RSZCZYGI', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[279/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'RSZCZYGI/H_TPP_P2P_REPORT' harmony.usermgt.create_role_to_user_assignment('RSZCZYGI', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RSZCZYGI/H_TPP_P2P_REPORT harmony.usermgt.create_dds_item_assignment('RSZCZYGI', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '378', sysdate, null); -- Inserting RoleToUserAssignment 'RTAM/H_EFS2_LOC_AUTH' harmony.usermgt.create_role_to_user_assignment('RTAM', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RTAM/H_EFS2_LOC_AUTH harmony.usermgt.create_dds_item_assignment('RTAM', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '283', sysdate, null); harmony.usermgt.create_dds_item_assignment('RTAM', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '282', sysdate, null); -- Inserting RoleToUserAssignment 'RTAM/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('RTAM', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RTAM/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('RTAM', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[409/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('RTAM', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[100/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'RTANIMOT/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('RTANIMOT', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RTANIMOT/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('RTANIMOT', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999705', sysdate, null); -- Inserting RoleToUserAssignment 'RTANIMOT/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('RTANIMOT', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RTANIMOT/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('RTANIMOT', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999705', sysdate, null); -- Inserting RoleToUserAssignment 'RTANIMOT/H_TPP_LOC_EDIT' harmony.usermgt.create_role_to_user_assignment('RTANIMOT', 'H_TPP_LOC_EDIT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RTANIMOT/H_TPP_LOC_EDIT harmony.usermgt.create_dds_item_assignment('RTANIMOT', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '363', sysdate, null); harmony.usermgt.create_dds_item_assignment('RTANIMOT', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '32', sysdate, null); -- Inserting RoleToUserAssignment 'RTANIMOT/H_TPP_P2P_REPORT' harmony.usermgt.create_role_to_user_assignment('RTANIMOT', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RTANIMOT/H_TPP_P2P_REPORT harmony.usermgt.create_dds_item_assignment('RTANIMOT', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '347', sysdate, null); -- Inserting RoleToUserAssignment 'RUYTTEN/H_EFS2_LOC_AUTH' harmony.usermgt.create_role_to_user_assignment('RUYTTEN', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RUYTTEN/H_EFS2_LOC_AUTH harmony.usermgt.create_dds_item_assignment('RUYTTEN', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '524', sysdate, null); -- Inserting RoleToUserAssignment 'RVALDEVI/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('RVALDEVI', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RVALDEVI/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('RVALDEVI', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[128/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('RVALDEVI', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11697/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('RVALDEVI', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11349/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'RVANDEPO/H_EFS2_LOC_REP_PARTY' harmony.usermgt.create_role_to_user_assignment('RVANDEPO', 'H_EFS2_LOC_REP_PARTY', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RVANDEPO/H_EFS2_LOC_REP_PARTY harmony.usermgt.create_dds_item_assignment('RVANDEPO', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '280', sysdate, null); -- Inserting RoleToUserAssignment 'RVANNUET/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('RVANNUET', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RVANNUET/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('RVANNUET', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999008', sysdate, null); -- Inserting RoleToUserAssignment 'RVANNUET/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('RVANNUET', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RVANNUET/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('RVANNUET', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999008', sysdate, null); -- Inserting RoleToUserAssignment 'RVANNUET/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('RVANNUET', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RVANNUET/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('RVANNUET', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11436/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'RVANWESE/H_EFS2_LOC_EDIT' harmony.usermgt.create_role_to_user_assignment('RVANWESE', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RVANWESE/H_EFS2_LOC_EDIT harmony.usermgt.create_dds_item_assignment('RVANWESE', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '524', sysdate, null); -- Inserting RoleToUserAssignment 'RVANWESE/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('RVANWESE', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RVANWESE/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('RVANWESE', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11436/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'RVAYNESS/H_EFS2_LOC_REP_PARTY' harmony.usermgt.create_role_to_user_assignment('RVAYNESS', 'H_EFS2_LOC_REP_PARTY', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RVAYNESS/H_EFS2_LOC_REP_PARTY harmony.usermgt.create_dds_item_assignment('RVAYNESS', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '548', sysdate, null); -- Inserting RoleToUserAssignment 'RVAYNESS/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('RVAYNESS', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RVAYNESS/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('RVAYNESS', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11312/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'RVERDICK/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('RVERDICK', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RVERDICK/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('RVERDICK', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999456', sysdate, null); harmony.usermgt.create_dds_item_assignment('RVERDICK', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999455', sysdate, null); harmony.usermgt.create_dds_item_assignment('RVERDICK', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999082', sysdate, null); -- Inserting RoleToUserAssignment 'RVERDICK/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('RVERDICK', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RVERDICK/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('RVERDICK', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999456', sysdate, null); harmony.usermgt.create_dds_item_assignment('RVERDICK', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999455', sysdate, null); harmony.usermgt.create_dds_item_assignment('RVERDICK', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999082', sysdate, null); -- Inserting RoleToUserAssignment 'RVERDICK/H_EFS2_LOC_AUTH' harmony.usermgt.create_role_to_user_assignment('RVERDICK', 'H_EFS2_LOC_AUTH', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RVERDICK/H_EFS2_LOC_AUTH harmony.usermgt.create_dds_item_assignment('RVERDICK', 'H_EFS2_LOC_AUTH', 'EFS Participant', 'ONE', '593', sysdate, null); -- Inserting RoleToUserAssignment 'RVERDICK/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('RVERDICK', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RVERDICK/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('RVERDICK', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[276/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('RVERDICK', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11870/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('RVERDICK', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11868/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('RVERDICK', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11713/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'RVISWAM1/H_TPP_LOC_EDIT' harmony.usermgt.create_role_to_user_assignment('RVISWAM1', 'H_TPP_LOC_EDIT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RVISWAM1/H_TPP_LOC_EDIT harmony.usermgt.create_dds_item_assignment('RVISWAM1', 'H_TPP_LOC_EDIT', 'TPP operating company', 'ONE', '69', sysdate, null); -- Inserting RoleToUserAssignment 'RWHITE14/H_NETTING_LOC_INP_ST' harmony.usermgt.create_role_to_user_assignment('RWHITE14', 'H_NETTING_LOC_INP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RWHITE14/H_NETTING_LOC_INP_ST harmony.usermgt.create_dds_item_assignment('RWHITE14', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11810/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('RWHITE14', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11809/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('RWHITE14', 'H_NETTING_LOC_INP_ST', 'Standard Netting Participant', 'ONE', '[11736/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'RWHITE14/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('RWHITE14', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RWHITE14/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('RWHITE14', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11810/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('RWHITE14', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11809/SNP]', sysdate, null); harmony.usermgt.create_dds_item_assignment('RWHITE14', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[11736/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'RWHITTIN/H_EFS2_LOC_REP_PARTY' harmony.usermgt.create_role_to_user_assignment('RWHITTIN', 'H_EFS2_LOC_REP_PARTY', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RWHITTIN/H_EFS2_LOC_REP_PARTY harmony.usermgt.create_dds_item_assignment('RWHITTIN', 'H_EFS2_LOC_REP_PARTY', 'EFS Participant', 'ONE', '328', sysdate, null); -- Inserting RoleToUserAssignment 'RWHITTIN/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('RWHITTIN', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RWHITTIN/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('RWHITTIN', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[181/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'RWILMSEN/HERMES_STAT_REP_LCL' harmony.usermgt.create_role_to_user_assignment('RWILMSEN', 'HERMES_STAT_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RWILMSEN/HERMES_STAT_REP_LCL harmony.usermgt.create_dds_item_assignment('RWILMSEN', 'HERMES_STAT_REP_LCL', 'OrgId', 'ONE', '999644', sysdate, null); -- Inserting RoleToUserAssignment 'RWILMSEN/HERMES_TXN_REP_LCL' harmony.usermgt.create_role_to_user_assignment('RWILMSEN', 'HERMES_TXN_REP_LCL', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RWILMSEN/HERMES_TXN_REP_LCL harmony.usermgt.create_dds_item_assignment('RWILMSEN', 'HERMES_TXN_REP_LCL', 'OrgId', 'ONE', '999644', sysdate, null); -- Inserting RoleToUserAssignment 'RWILMSEN/H_NETTING_LOC_REP_ST' harmony.usermgt.create_role_to_user_assignment('RWILMSEN', 'H_NETTING_LOC_REP_ST', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RWILMSEN/H_NETTING_LOC_REP_ST harmony.usermgt.create_dds_item_assignment('RWILMSEN', 'H_NETTING_LOC_REP_ST', 'Standard Netting Participant', 'ONE', '[94/SNP]', sysdate, null); -- Inserting RoleToUserAssignment 'RWILMSEN/H_TPP_P2P_REPORT' harmony.usermgt.create_role_to_user_assignment('RWILMSEN', 'H_TPP_P2P_REPORT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RWILMSEN/H_TPP_P2P_REPORT harmony.usermgt.create_dds_item_assignment('RWILMSEN', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '124', sysdate, null); harmony.usermgt.create_dds_item_assignment('RWILMSEN', 'H_TPP_P2P_REPORT', 'TPP AP2PLE OC', 'ONE', '123', sysdate, null); -- Inserting RoleToUserAssignment 'RWKELLY9/H_EFS2_LOC_EDIT' harmony.usermgt.create_role_to_user_assignment('RWKELLY9', 'H_EFS2_LOC_EDIT', sysdate, null, 'ACTIVE'); -- Insert DDSItemAssignment for RWKELLY9/H_EFS2_LOC_EDIT harmony.usermgt.create_dds_item_assignment('RWKELLY9', 'H_EFS2_LOC_EDIT', 'EFS Participant', 'ONE', '263', sysdate, null); commit; exception when others then rollback; raise; end; /
-- \c sample_database; -- -- -- -- PostgreSQL database dump -- -- -- -- dumpファイルの内容とかテーブル作成とかする -- -- -- SET statement_timeout = 0; -- SET client_encoding = 'UTF8'; -- SET standard_conforming_strings = off; -- SET check_function_bodies = false; -- SET client_min_messages = warning; -- SET escape_string_warning = off; -- SET search_path = public, pg_catalog; -- SET default_tablespace = ''; -- SET default_with_oids = false; -- CREATE TABLE sample_table ( -- num bigint NOT NULL, -- create_time timestamp without time zone DEFAULT now(), -- update_time timestamp without time zone DEFAULT now() -- ); -- ALTER TABLE public.sample_table OWNER TO postgre_user; -- -- -- -- PostgreSQL database dump complete -- --
/* Navicat Premium Data Transfer Source Server : mysql Source Server Type : MySQL Source Server Version : 80022 Source Host : localhost:3306 Source Schema : data Target Server Type : MySQL Target Server Version : 80022 File Encoding : 65001 Date: 03/12/2020 12:33:58 */ SET NAMES utf8mb4; SET FOREIGN_KEY_CHECKS = 0; -- ---------------------------- -- Table structure for admin -- ---------------------------- DROP TABLE IF EXISTS `admin`; CREATE TABLE `admin` ( `username` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL, `password` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NULL DEFAULT NULL ) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of admin -- ---------------------------- INSERT INTO `admin` VALUES ('root', '123456'); -- ---------------------------- -- Table structure for car -- ---------------------------- DROP TABLE IF EXISTS `car`; CREATE TABLE `car` ( `ID` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '车辆编号', `Name` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '车辆名字', `Color` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '车辆颜色', `Type` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '车辆类型', `Price` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '车辆计价', PRIMARY KEY (`ID`) USING BTREE ) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of car -- ---------------------------- INSERT INTO `car` VALUES ('1', '宝马X6', '蓝色', '轿车', '24'); INSERT INTO `car` VALUES ('2', '奔驰X325', '蓝紫色', '超跑', '24'); INSERT INTO `car` VALUES ('3', '红旗X10', '黑色', '轿车', '26'); INSERT INTO `car` VALUES ('4', '福特18', '黑色', '轿车', '19'); -- ---------------------------- -- Table structure for rentcar -- ---------------------------- DROP TABLE IF EXISTS `rentcar`; CREATE TABLE `rentcar` ( `ID` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '租车编号', `RentDate` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '租车时间', `Name` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '租车用户', `CarID` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '车辆ID', `Price` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '租车费用', PRIMARY KEY (`ID`) USING BTREE ) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of rentcar -- ---------------------------- INSERT INTO `rentcar` VALUES ('1', '2020-11-26', '周鹏宇', '2', '8.8'); INSERT INTO `rentcar` VALUES ('2', '2020-11-27', '张帆', '22', '9.9'); -- ---------------------------- -- Table structure for repaircar -- ---------------------------- DROP TABLE IF EXISTS `repaircar`; CREATE TABLE `repaircar` ( `ID` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '修车编号', `FixDate` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '修车时间', `Question` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '车辆故障', `Price` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '车辆ID', `CarID` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '修车费用', PRIMARY KEY (`ID`) USING BTREE ) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of repaircar -- ---------------------------- INSERT INTO `repaircar` VALUES ('1', '2020-11-24', '轮胎炸了', '2.0', '3'); INSERT INTO `repaircar` VALUES ('2', '2020-11-24', '漏油', '2', '2'); -- ---------------------------- -- Table structure for repaycar -- ---------------------------- DROP TABLE IF EXISTS `repaycar`; CREATE TABLE `repaycar` ( `ID` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '还车编号', `RepayDate` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '还车时间', `Name` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '还车用户', `CarID` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '车辆ID', `Status` varchar(255) CHARACTER SET utf8 COLLATE utf8_general_ci NOT NULL COMMENT '还车状态', PRIMARY KEY (`ID`) USING BTREE ) ENGINE = InnoDB CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of repaycar -- ---------------------------- INSERT INTO `repaycar` VALUES ('1', '周鹏宇', '2020-11-25', '2', '未还车'); INSERT INTO `repaycar` VALUES ('2', '王晟宇', '2020-11-25', '3', '未还车'); INSERT INTO `repaycar` VALUES ('3', '王战军', '2020-11-24', '3', '已还车'); SET FOREIGN_KEY_CHECKS = 1;
CREATE PROC [ERP].[Usp_Sel_Producto_Pagination] @Flag BIT, @Page INT, @RowsPerPage INT, @SortDir VARCHAR(20), @SortType VARCHAR(30), @IdEmpresa INT , @RowCount INT OUT AS BEGIN WITH Producto AS ( SELECT ROW_NUMBER() OVER (ORDER BY --ASC CASE WHEN(@SortType = 'ID' AND @SortDir = 'ASC') THEN PRO.ID END ASC, CASE WHEN(@SortType = 'Nombre' AND @SortDir = 'ASC') THEN PRO.Nombre END ASC, CASE WHEN(@SortType = 'FechaRegistro' AND @SortDir = 'ASC') THEN PRO.FechaRegistro END ASC, CASE WHEN(@SortType = 'UnidadMedida' AND @SortDir = 'ASC') THEN T6U.CodigoSunat END ASC, --DESC CASE WHEN(@SortType = 'ID' AND @SortDir = 'DESC') THEN PRO.ID END DESC, CASE WHEN(@SortType = 'Nombre' AND @SortDir = 'DESC') THEN PRO.Nombre END DESC, CASE WHEN(@SortType = 'FechaRegistro' AND @SortDir = 'DESC') THEN PRO.FechaRegistro END DESC, CASE WHEN(@SortType = 'UnidadMedida' AND @SortDir = 'DESC') THEN T6U.CodigoSunat END DESC --DEFAULT --CASE WHEN @SortType = '' THEN E.ID END ASC ) AS ROWNUMBER, PRO.ID, PRO.Nombre, T6U.CodigoSunat UnidadMedida, T5E.CodigoSunat CodigoExistencia, PRO.FechaRegistro, T6U.Nombre NombreUnidadMedida, PRO.FechaEliminado FROM [ERP].[Producto] PRO LEFT JOIN PLE.T6UnidadMedida T6U ON PRO.IdUnidadMedida=T6U.ID LEFT JOIN Maestro.Marca MA ON PRO.IdMarca = MA.ID LEFT JOIN PLE.T5Existencia T5E ON PRO.IdExistencia = T5E.ID LEFT JOIN Maestro.TipoProducto TP ON PRO.IdTipoProducto=TP.ID LEFT JOIN ERP.Empresa EM ON EM.ID=PRO.IdEmpresa WHERE PRO.Flag = @Flag AND PRO.FlagBorrador = 0 AND PRO.IdEmpresa=@IdEmpresa AND PRO.IdTipoProducto= 1 ) SELECT ID, Nombre, FechaRegistro, UnidadMedida, CodigoExistencia, NombreUnidadMedida, FechaEliminado FROM Producto WHERE ROWNUMBER BETWEEN (@RowsPerPage * (@Page -1) +1) AND @Page * @RowsPerPage SET @RowCount=( SELECT COUNT(PRO.ID) FROM [ERP].[Producto] PRO LEFT JOIN PLE.T6UnidadMedida T6U ON PRO.IdUnidadMedida=T6U.ID LEFT JOIN Maestro.Marca MA ON PRO.IdMarca = MA.ID LEFT JOIN PLE.T5Existencia T5E ON PRO.IdExistencia = T5E.ID LEFT JOIN Maestro.TipoProducto TP ON PRO.IdTipoProducto=TP.ID WHERE PRO.Flag = @Flag AND PRO.FlagBorrador = 0 AND PRO.IdTipoProducto= 1 ) END
DROP DATABASE students_system; DROP DATABASE students_system_test;
INSERT INTO posts ( title, img_url, content, user_id) VALUES ($1, $2, $3, $4)
update PB_DefaultField set EpsProjId='00000000-0000-0000-0000-0000000000A4', OwnProjId='00000000-0000-0000-0000-0000000000A4',OwnProjName='永荣控股集团' where TableName='PB_Position' and OwnProjId ='345ED76D-18FA-42A4-B666-4842A12310A0' and OwnProjName='福建永荣科技有限公司'
INSERT INTO burgers (burger_name, devoured) VALUES ('Quarter Pounder With Cheese', true); INSERT INTO burgers (burger_name, devoured) VALUES ('Cheeseburger', false); INSERT INTO burgers (burger_name, devoured) VALUES ('Grilled Onion Cheddar', false); INSERT INTO burgers (burger_name, devoured) VALUES ('Grilled Artisan Chicken', true); INSERT INTO burgers (burger_name, devoured) VALUES ('Buttermilk Chicken-Crispy', false); INSERT INTO burgers (burger_name, devoured) VALUES ('Filet-O-Fish', false); INSERT INTO burgers (burger_name, devoured) VALUES ('Classic Chicken Sandwich', false);
USE OMNIKNOW; CREATE TABLE ESTADOS_REPORTES( ID_ESTADO_REPORTE INTEGER(10), NOMBRE VARCHAR(50), PRIMARY KEY(ID_ESTADO_REPORTE) ); INSERT INTO ESTADOS_REPORTES VALUES(1, 'Pendiente'); INSERT INTO ESTADOS_REPORTES VALUES(2, 'Resuelto'); INSERT INTO ESTADOS_REPORTES VALUES(3, 'Cerrado'); INSERT INTO ESTADOS_REPORTES VALUES(4, 'Pagado'); CREATE TABLE TIPOS_MANTENIMIENTOS( ID_TIPO_MANTENIMIENTO INTEGER(10), NOMBRE VARCHAR(50), PRIMARY KEY(ID_TIPO_MANTENIMIENTO) ); INSERT INTO TIPOS_MANTENIMIENTOS VALUES(1,'Preventivo'); INSERT INTO TIPOS_MANTENIMIENTOS VALUES(2,'Correctivo'); INSERT INTO TIPOS_MANTENIMIENTOS VALUES(3,'Adaptativo'); INSERT INTO TIPOS_MANTENIMIENTOS VALUES(4,'Perfecto'); CREATE TABLE USUARIOS( ID_USUARIO INTEGER(10), USUARIO VARCHAR(50), CONTRASENA VARCHAR(50), NOMBRE VARCHAR(100), TIPO INTEGER(2), INICIADO TINYINT, PRIMARY KEY(ID_USUARIO) ); CREATE TABLE REPORTES_MANTENIMIENTOS( ID_REPORTE_MANTENIMIENTO INTEGER(10), ID_REPORTE_EVENTO INTEGER(10), ID_ESTADO_REPORTE INTEGER(10), ID_TIPO_MANTENIMIENTO INTEGER(10), ID_USUARIO INTEGER(10), FECHA DATETIME, ASUNTO TEXT, DESCRIPCION TEXT, SOLUCION TEXT, PRIMARY KEY(ID_REPORTE_MANTENIMIENTO), FOREIGN KEY(ID_ESTADO_REPORTE) REFERENCES ESTADOS_REPORTES(ID_ESTADO_REPORTE), FOREIGN KEY(ID_TIPO_MANTENIMIENTO) REFERENCES TIPOS_MANTENIMIENTOS(ID_TIPO_MANTENIMIENTO), FOREIGN KEY(ID_USUARIO) REFERENCES USUARIOS(ID_USUARIO) );
create table transaction( id numeric not null, acct_type varchar, acct_num varchar, date date not null, posted date, cheq_num varchar, desc_1 varchar not null, desc_2 varchar, cad float, usd float, parent numeric references transact(id), child_number, "note" varchar); create table transaction_child_number( tx_id numeric references transaction(id), child_number int); create unique index on transaction(id); create table category( id serial primary key, name varchar unique not null); create table transaction_category( id serial primary key, tx_id numeric references transaction(id), cat_id int references category(id)); create unique index on transaction_category(tx_id, cat_id); create table category_rule( id serial primary key, match varchar, cat_id int references category(id)) ); create table budget_period( id serial primary key, period varchar ); create table category_budget( id serial primary key, cat_id int references category(id), budget numeric, period_id int references budget_period(id), "start" timestamp without time zone, "end" timestamp without time zone );
ALTER TABLE produto ADD INDEX produto_plano_idx (plano);
BEGIN TRANSACTION; CREATE TABLE IF NOT EXISTS "Billings" ( "Id" BLOB NOT NULL, "AppointmentId" BLOB NOT NULL, "Price" TEXT NOT NULL, CONSTRAINT "PK_Billings" PRIMARY KEY("Id"), CONSTRAINT "FK_Billings_Appointments_AppointmentId" FOREIGN KEY("AppointmentId") REFERENCES "Appointments"("Id") ON DELETE CASCADE ); CREATE TABLE IF NOT EXISTS "UserSettings" ( "Id" BLOB NOT NULL, "ClientId" BLOB NOT NULL, "PreferLanguage" TEXT, CONSTRAINT "PK_UserSettings" PRIMARY KEY("Id") ); CREATE TABLE IF NOT EXISTS "Therapists" ( "Id" BLOB NOT NULL, "Name" TEXT NOT NULL, "Gender" INTEGER NOT NULL, "MobileNumber" TEXT NOT NULL, "Email" TEXT NOT NULL, "Address" TEXT, "Username" TEXT, "PasswordHash" BLOB, "PasswordSalt" BLOB, CONSTRAINT "PK_Therapists" PRIMARY KEY("Id") ); CREATE TABLE IF NOT EXISTS "Clients" ( "Id" BLOB NOT NULL, "Name" TEXT NOT NULL, "Gender" INTEGER NOT NULL, "MobileNumber" TEXT NOT NULL, "Email" TEXT NOT NULL, "Address" TEXT, "CivilStatus" INTEGER NOT NULL, "DateOfBirth" TEXT NOT NULL, "NIF" TEXT, "Occupation" TEXT, "Observations" TEXT, CONSTRAINT "PK_Clients" PRIMARY KEY("Id") ); CREATE TABLE IF NOT EXISTS "AppointmentType" ( "Id" BLOB NOT NULL, "Name" TEXT NOT NULL, "Code" TEXT NOT NULL, CONSTRAINT "PK_AppointmentType" PRIMARY KEY("Id") ); CREATE TABLE IF NOT EXISTS "Appointments" ( "Id" BLOB NOT NULL, "AppointmentTypeId" BLOB NOT NULL, "ClientId" BLOB NOT NULL, "TherapistId" BLOB NOT NULL, "AppointmentDate" TEXT NOT NULL, CONSTRAINT "PK_Appointments" PRIMARY KEY("Id") ); INSERT INTO "Therapists" ("Id","Name","Gender","MobileNumber","Email","Address","Username","PasswordHash","PasswordSalt") VALUES (']�����XN��-`—��','Tiago Sá',77,'123654789','sa@email.com','Rua X','tiagossa1','PC=�j)�z�Ǯ ��,y��R���?���ןc�hU�ʼn������g�����g��jzov���','h! YN7-"�2�u��q���]�l�Q&��.?����A�@����X�C���>x3���#�-?���ԓ;�@q^���`ft�~��49F�6�þ�?����ͫ��ϯ�ej��K�`����?5���hX����'); INSERT INTO "Clients" ("Id","Name","Gender","MobileNumber","Email","Address","CivilStatus","DateOfBirth","NIF","Occupation","Observations") VALUES ('�˔��D�{��#��I','Sá',77,'321654987','sa@email.com','string',67,'2000-10-30 00:00:00','321654789','A','string'); INSERT INTO "AppointmentType" ("Id","Name","Code") VALUES ('c �~H�����w�','Florais','FLORAIS'); INSERT INTO "AppointmentType" ("Id","Name","Code") VALUES ('qi말 =E����Fݎ ','Acupuntura','ACUPUNTURA'); INSERT INTO "AppointmentType" ("Id","Name","Code") VALUES ('�v7 ��aD����H��=','Cromoterapia','CROMOTERAPIA'); INSERT INTO "AppointmentType" ("Id","Name","Code") VALUES ('�� �Y4C�SWk�0�','Massagem','MASSAGEM'); INSERT INTO "AppointmentType" ("Id","Name","Code") VALUES ('���yI�\Z0�o�6','Terapia Com Flores','TERAPIACOMFLORES'); INSERT INTO "AppointmentType" ("Id","Name","Code") VALUES ('x-��6TBK��0!@�','Fitoterapia','FITOTERAPIA'); INSERT INTO "AppointmentType" ("Id","Name","Code") VALUES ('ۚ1�B��]tO�','Reflexologia','REFLEXOLOGIA'); INSERT INTO "AppointmentType" ("Id","Name","Code") VALUES ('n0��<�jB�Ҥ�n#','Shiatsu','SHIATSU'); INSERT INTO "AppointmentType" ("Id","Name","Code") VALUES ('b1�)���F���}���q','Reiki','REIKI'); INSERT INTO "Appointments" ("Id","AppointmentTypeId","ClientId","TherapistId","AppointmentDate") VALUES ('�&/B�L����)Q]','qi말 =E����Fݎ ','�˔��D�{��#��I',']�����XN��-`—��','2019-02-14 16:00:00'); INSERT INTO "Appointments" ("Id","AppointmentTypeId","ClientId","TherapistId","AppointmentDate") VALUES (X'8412485597005d4eb4a55f4059033bad','�v7 ��aD����H��=','�˔��D�{��#��I',']�����XN��-`—��','2019-07-16 17:00:00'); CREATE INDEX IF NOT EXISTS "IX_Billings_AppointmentId" ON "Billings" ( "AppointmentId" ); COMMIT;
SET FOREIGN_KEY_CHECKS = 0; INSERT INTO roles (name) VALUES ('ROLE_EMPLOYEE'),('ROLE_MANAGER'),('ROLE_ADMIN'); INSERT INTO users (username,password,first_name,last_name,email) VALUES ('alex','$2a$10$vmkUHC45kZ4IVH./LlUH1e.jQnNZjVKss3uo3A6OChqKrl1SgoHZu','Alex','GeekBrains','alex@gb.com'); INSERT INTO users_roles (user_id, role_id) VALUES (1, 1), (1, 2), (1, 3); INSERT INTO `courses` (`title`) VALUES ('Математика'), ('Физика'), ('История'), ('Английский'), ('Химия');
#CREATE KEYSPACE test_demo #WITH replication = {'class':'SimpleStrategy', 'replication_factor' : 3}; #/ CREATE TABLE tablename( id int PRIMARYKEY, amount string )
CREATE TABLE Tbl_Broken_Products ( fld_broken_product_id varchar(10) NOT NULL, -- product identification number for any broken items fld_broken_product_code varchar(100) Default '', --User assigned product identification number fld_broken_product_name varchar(100) Default '', -- broken product name fld_broken_product_unit_cost decimal(7,2) Default 1.00, -- unit cost of broken product to take into account in financial reports; cost determined by FIFO/LIFO system fld_broken_product_unit_price decimal(7,2) Default 1.00, -- unit price of broken product to take into account in financial reports fld_broken_product_quantity_lost decimal(7,2) Default 1, -- quantity of product lost to update inventory stock levels fld_broken_product_date datetime Default '', -- date product was broken fld_product_broken_by_employee varchar(50) Default NULL, -- username of employee responsible for breaking products, if applicable (Nullable) fld_product_broken_by_customer bit Default 0 -- if product were not broken by employees, this indicates if product was broken by a customer )
CREATE TABLE MCRE_OWN.T_MCREI_DAY_POSMCI ( "ID_DPER" NUMBER, "COD_ABI" VARCHAR2(5 BYTE), "COD_NDG" VARCHAR2(16 BYTE), "ESPOSIZIONE_OGGI" CHAR(1 BYTE), "ESPOSIZIONE_IERI" CHAR(1 BYTE), "ID_UTENTE" VARCHAR2(6 BYTE) ) ; GRANT SELECT,UPDATE,INSERT,DELETE ON MCRE_OWN.T_MCREI_DAY_POSMCI TO MCRE_USR;
ALTER TABLE IACUC_REVIEWER_ATTACHMENTS MODIFY (UPDATE_USER VARCHAR2(60)) / ALTER TABLE REVIEWER_ATTACHMENTS MODIFY (UPDATE_USER VARCHAR2(60)) /
update levels set bonus_credit_rate = 1.0 where level < 30;
-- Table and view definitions for the tournament project. drop view if exists wins; drop view if exists games; drop table if exists matches; drop table if exists players; create table players(id serial primary key, name text not null); create table matches(id serial primary key, winner integer references players(id), loser integer references players(id)); -- This view shows how many wins has each player create view wins as select p.id as id, count(m.winner) as won from players p left join matches m on p.id = m.winner group by p.id; -- This view shows how many matches are played by each player create view games as select p.id as id, count(a.player) as played from players p left join (select winner as player from matches union all select loser as player from matches) as a on p.id = a.player group by p.id;
-- 최근 5년 키워드 20개 분야 랭크 상위 1000위에 대해서 특수문자, 공백 문자 처리를 통해 키워드 -국가 - 문서 ID 수집 DROP TABLE SCOPUS_2017Y_5Y_AF_DOC CASCADE CONSTRAINTS PURGE; CREATE TABLE SCOPUS_2017Y_5Y_AF_DOC AS SELECT DISTINCT A.KEYWORD, A.EID, A.COUNTRY_CODE FROM ( SELECT REGEXP_REPLACE(REGEXP_REPLACE(A.KEYWORD, '[[:punct:]]', ' '), '[[:space:]]{1,}', ' ') AS KEYWORD, A.EID, A.COUNTRY_CODE FROM ( SELECT DISTINCT KEYWORD, EID, COUNTRY_CODE FROM SCOPUS_2017Y_5Y_CT_KEY_BASE WHERE KEYWORD IN ( SELECT DISTINCT KEYWORD FROM SCOPUS_2017Y_5Y_KEY_RANKING WHERE L_ASJC_CODE IN ('1000', '1100', '1300', '1500', '1600', '1700', '1800', '1900', '2100', '2200', '2300', '2400', '2500', '2600', '2700', '2800', '3000', '3100', '3400', '3500' ) AND RANKING <= 1000 ) A ) A ); CREATE INDEX IDX_SAK_KW ON SCOPUS_2017Y_5Y_AF_DOC(KEYWORD); CREATE INDEX IDX_SAK_EID ON SCOPUS_2017Y_5Y_AF_DOC(EID); CREATE INDEX IDX_SAK_CT ON SCOPUS_2017Y_5Y_AF_DOC(COUNTRY_CODE); COMMENT ON TABLE SCOPUS_2017Y_5Y_AF_DOC IS '최근 5년간 국가별 저자 키워드 정보'; -- 최근 5년 국가 -기관별 저자키워드 문서 정보 DROP TABLE SCOPUS_2017Y_5Y_AFFIL_KEY CASCADE CONSTRAINTS PURGE; CREATE TABLE SCOPUS_2017Y_5Y_AFFIL_KEY AS SELECT DISTINCT A.KEYWORD, A.COUNTRY_CODE, A.EID, B.AFFILIATION FROM SCOPUS_2017Y_5Y_AF_DOC A INNER JOIN ( SELECT DISTINCT EID, COUNTRY_CODE, AFFILIATION FROM SCOPUS_2016_AFFIL_FULL ) B ON A.EID = B.EID AND A.COUNTRY_CODE = B.COUNTRY_CODE; CREATE INDEX IDX_AFF_KEY_KW ON SCOPUS_2017Y_5Y_AFFIL_KEY(KEYWORD); CREATE INDEX IDX_AFF_KEY_EID ON SCOPUS_2017Y_5Y_AFFIL_KEY(EID); CREATE INDEX IDX_AFF_KEY_CT ON SCOPUS_2017Y_5Y_AFFIL_KEY(COUNTRY_CODE); CREATE INDEX IDX_AFF_KEY_AFFIL ON SCOPUS_2017Y_5Y_AFFIL_KEY(AFFILIATION); -- 최근 5년 국가 -기관별 저자키워드 문서 건수 DROP TABLE SCOPUS_2017Y_5Y_AFFIL_KEY_ST CASCADE CONSTRAINTS PURGE; CREATE TABLE SCOPUS_2017Y_5Y_AFFIL_KEY_ST AS SELECT DISTINCT KEYWORD, COUNTRY_CODE, AFFILIATION, COUNT(DISTINCT EID) AS DOC_CNT FROM SCOPUS_2017Y_5Y_AFFIL_KEY GROUP BY KEYWORD, COUNTRY_CODE, AFFILIATION ORDER BY COUNTRY_CODE, KEYWORD, DOC_CNT DESC; CREATE INDEX IDX_AFF_KEY_ST_CT ON SCOPUS_2017Y_5Y_AFFIL_KEY_ST(COUNTRY_CODE);
-- phpMyAdmin SQL Dump -- version 4.7.9 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1 -- Generation Time: Oct 11, 2018 at 06:37 PM -- Server version: 10.1.31-MariaDB -- PHP Version: 7.2.3 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; SET AUTOCOMMIT = 0; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Database: `tata` -- -- -------------------------------------------------------- -- -- Table structure for table `data` -- CREATE TABLE `data` ( `nim` varchar(10) NOT NULL, `nama` varchar(25) NOT NULL, `gender` varchar(20) NOT NULL, `Fakultas` varchar(255) NOT NULL, `hobi` varchar(50) NOT NULL, `kelas` varchar(80) NOT NULL, `alamat` varchar(320) NOT NULL, `username` varchar(100) NOT NULL, `pass` varchar(60) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `data` -- INSERT INTO `data` (`nim`, `nama`, `gender`, `Fakultas`, `hobi`, `kelas`, `alamat`, `username`, `pass`) VALUES ('6701174142', 'Sindi Srikandi', 'female', 'FIT', 'Seni', 'D3MI41-03', 'Garut', '', ''), ('6701174165', 'naon', 'male', 'FTE', 'Otomotif', 'D3MI41-01', 'Garut', 'sak', '0'); -- -- Indexes for dumped tables -- -- -- Indexes for table `data` -- ALTER TABLE `data` ADD PRIMARY KEY (`nim`); 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 JY67500V.EKOMNR AS Kommunenummer, JY67500V.EEJDNR AS Ejendomsnummer, JY67500V.ABELIG AS Beliggenhed, JY67500V.VEJ_KODE AS Vejkode, JY67500V.HUS_NUMMER AS Husnummer_bogstav, JY67500V.AHUSN AS Husnummer, JY67500V.ABGST AS Husbogstav, JY67500V.ELEJNR AS Lejlighedsnummer, JY67500V.CELAV AS Ejerlavskode, JY67500V.EMATNR AS Matrikelnummer, JY67500V.ABGSTM AS Matrikelbogstav, JY67500V.EPCEL AS Parcelnummer, JY67500V.ELEJ AS Ejerlejlighedsnr, JY67500V.CARTK AS Artskode, QL61000V.TEKST AS Art, JY67500V.FTOTAR AS Matrikulært_areal_i_alt, JY67500V.FTOTVEJ AS Heraf_vejareal_ialt, JY67500V.FARVUR AS Areal_til_vurdering_i_alt, JY67500V.FVEJVUR AS Heraf_vejareal_ialt, JY67500V.CEJFORH AS Ejerforholdskode, QL50000V.TEKST AS Ejerforhold, JY67500V.FEJER AS Antal_ejere, JY67500V.BTOTOP AS Opkrævet_i_alt, JY67500V.BNYTOTOP AS Totalbeløb_efter_evt_ændring, JY67500V.BTOTSKAT AS Skat_i_alt, JY67500V.BTOTYDAF AS Ydelser_afgift_i_alt, JY67500V.BKOMAFG AS Afgiftspligtig_grundværdi_kommune, JY67500V.BAMTAFG AS Afgiftspligtig_grundværdi_amt, JY67500V.BDAFGK AS Dækningsafgift_kommunen, JY67500V.BDAFGA AS Dækningsafgift_amt, JY67500V.BDAFFK AS Dækn_afg_pl_forskelsværdi_kommunen, JY67500V.BDAFFA AS Dækn_afg_pl_forskelsværdi_amt, JY67500V.CBENYT AS Benyttelseskode_sen_vurdering, QL61500V.TEKST AS Benyttelse_sen_vurdering, JY67500V.FLEJL AS Antal_lejligheder, JY67500V.FVURDAR AS Vurderet_areal, JY67500V.GBEBYG AS Max_bebyggelsespct, JY67500V.COMVKOD AS Omvurderingskode, JY67500V.COMVGRA AS Omvurderingsgrund_A, QL61600V.TEKST AS Omvurderingsgrund_Tekst_A, JY67500V.COMVGRB AS Omvurderingsgrund_B, QL61600V.TEKST AS Omvurderingsgrund_Tekst_B, JY67500V.CMANUDT AS Manuelt_udtaget_pga_byggesag, QL50600V.TEKST AS Byggesag_tekst, JY67500V.CMSKUCR AS Maskinelt_udtaget_CR, QL50500V.TEKST AS CR_tekst, JY67500V.CMSKUCS AS Maskinelt_udtaget_CS, QL50500V.TEKST AS CS_tekst, JY67500V.CEJEV AS Kode_for_ej_vurderet, JY67500V.CEJSO AS Ej_solgt_kode, JY67500V.EVURK AS Vurderingskreds, JY67500V.EVURDDS AS Vurderingsdistrikt, JY67500V.EHENKOM AS Henvisningskommune, JY67500V.EUDSF AS Henvisningsnr_, JY67500V.EMODER AS Moderejendomsnummer, JY67500V.COFVEJ AS Adgang_til_offentlig_vej, JY67500V.CBYG66 AS Ejlh_bygning_fra_før_66, JY67500V.CBSKADRA AS Adr_beskyt_for_administrator, QL63600V.TEKST AS Adressebeskyttelse, JY67500V.AANAVN AS Administrators_navn, JY67500V.AACONAVN AS Administrators_c_o_navn, JY67500V.AAADRESS AS Administrators_adresse, JY67500V.AAUDVADR AS Administrators_udvidede_adresse, JY67500V.AAPOST AS Administrators_postdistrikt, JY67500V.EADMNR AS Administrationsnummer, JY67500V.DCPRADM AS Administrator_SPR_SE_nummer, JY67500V.CADM AS Administratorkode, QL65000V.TEKST AS Administratorstatus, JY67500V.EOPNR AS Opkrævningsnr, JY67500V.EEJBNR AS Ejendomsbetegnelsesnummer, JY67500V.UDGAAET_EJD AS Kode_for_udgået_ejendom, JY67500V.EJERLEJLIGHEDSNR AS Ejerlejlighedsnummer, JY67500V.UDSTYKKET_FRA AS Ejendomsnummer_for_udstykning_af_arealer, JY67500V.AMATBOG AS Matrikelnummer_bogstav, CAST(JY67500V.EKOMNR AS VARCHAR(3))+ RIGHT('0000' + CONVERT(VARCHAR, JY67500V.VEJ_KODE), 4) + RTRIM(JY67500V.HUS_NUMMER) AS ADRESSELINK_ID, CAST(JY67500V.EKOMNR AS VARCHAR(3)) + CAST(JY67500V.VEJ_KODE AS VARCHAR(4)) + RTRIM(JY67500V.HUS_NUMMER) AS ADRESSE_ID, CAST(JY67500V.EKOMNR AS VARCHAR(3)) + CAST(JY67500V.VEJ_KODE AS VARCHAR(4)) + RTRIM(JY67500V.HUS_NUMMER) + REPLACE(JY67500V.ELEJNR, ' ', '') AS UDVadresseID FROM JY67500V LEFT OUTER JOIN QL65000V ON JY67500V.CADM = QL65000V.KODE LEFT OUTER JOIN QL63600V ON JY67500V.CBSKADRA = QL63600V.KODE LEFT OUTER JOIN QL50500V ON JY67500V.CMSKUCS = QL50500V.KODE AND JY67500V.CMSKUCR = QL50500V.KODE LEFT OUTER JOIN QL50600V ON JY67500V.CMANUDT = QL50600V.KODE LEFT OUTER JOIN QL61600V ON JY67500V.COMVGRB = QL61600V.KODE AND JY67500V.COMVGRA = QL61600V.KODE LEFT OUTER JOIN QL61500V ON JY67500V.CBENYT = QL61500V.KODE LEFT OUTER JOIN QL50000V ON JY67500V.CEJFORH = QL50000V.KODE LEFT OUTER JOIN QL61000V ON JY67500V.CARTK = QL61000V.KODE
update study set age_group = '050Y' where study_instance_uid = '1.3.6.1.4.1.9328.50.1.2'; update general_series set age_group = '050Y' where series_instance_uid = '1.3.6.1.4.1.9328.50.1.3'; update general_series set visibility = 1 where series_instance_uid = '1.3.6.1.4.1.9328.50.1.3'; update general_image set dicom_file_uri = '/usr/local/tomcat-4.1.30/webapps/NCICBIMAGE/documents/1.3.6.1.4.1.9328.50.1.2/1.3.6.1.4.1.9328.50.1.1.dcm' where sop_instance_uid = '1.3.6.1.4.1.9328.50.1.1'; update general_image set submission_date = '2005-09-28' where sop_instance_uid = '1.3.6.1.4.1.9328.50.1.1'; update general_image set dicom_size = 1303520.000000 where sop_instance_uid = '1.3.6.1.4.1.9328.50.1.1'; update general_image set visibility = 1 where sop_instance_uid = '1.3.6.1.4.1.9328.50.1.1'; update general_image set dicom_file_uri = '/usr/local/tomcat-4.1.30/webapps/NCICBIMAGE/documents/1.3.6.1.4.1.9328.50.1.2/1.3.6.1.4.1.9328.50.1.5.dcm' where sop_instance_uid = '1.3.6.1.4.1.9328.50.1.5'; update general_image set submission_date = '2005-09-28' where sop_instance_uid = '1.3.6.1.4.1.9328.50.1.5'; update general_image set dicom_size = 1303518.000000 where sop_instance_uid = '1.3.6.1.4.1.9328.50.1.5'; update general_image set visibility = 1 where sop_instance_uid = '1.3.6.1.4.1.9328.50.1.5';
set echo off newpage 0 space 0 pagesize 32767 feed off head off underline off trimspool on termout off linesize 4000 -------------------------------------------------------- -- DDL for Table TERRITORIES -------------------------------------------------------- CREATE TABLE "BBPORTAL"."TERRITORIES" ( "TERRITORY_ID" NUMBER(19,0), "ENTITY_VERSION" NUMBER(10,0), "NAME" VARCHAR2(255 CHAR), "ALPHA_TWO_CODE" CHAR(2 BYTE), "ALPHA_THREE_CODE" CHAR(3 BYTE), "NUM_THREE_CODE" CHAR(3 BYTE), "PARENT_TERRITORY_ID" NUMBER(19,0), "ENGLISH_NAME" VARCHAR2(255 CHAR), "BB_CODE" CHAR(3 BYTE) ) SEGMENT CREATION IMMEDIATE PCTFREE 10 PCTUSED 40 INITRANS 1 MAXTRANS 255 NOCOMPRESS LOGGING STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645 PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT FLASH_CACHE DEFAULT CELL_FLASH_CACHE DEFAULT) TABLESPACE "BLAWDATA" ; -------------------------------------------------------- -- DDL for Index TERRITORIES_PK -------------------------------------------------------- CREATE UNIQUE INDEX "BBPORTAL"."TERRITORIES_PK" ON "BBPORTAL"."TERRITORIES" ("TERRITORY_ID") PCTFREE 10 INITRANS 2 MAXTRANS 255 COMPUTE STATISTICS STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645 PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT FLASH_CACHE DEFAULT CELL_FLASH_CACHE DEFAULT) TABLESPACE "BLAWDATA" ; -------------------------------------------------------- -- DDL for Index TERRITORIES_UK -------------------------------------------------------- CREATE UNIQUE INDEX "BBPORTAL"."TERRITORIES_UK" ON "BBPORTAL"."TERRITORIES" ("NAME", "PARENT_TERRITORY_ID") PCTFREE 10 INITRANS 2 MAXTRANS 255 COMPUTE STATISTICS STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645 PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT FLASH_CACHE DEFAULT CELL_FLASH_CACHE DEFAULT) TABLESPACE "BLAWDATA" ; -------------------------------------------------------- -- DDL for Index TERRITORIES_BB_CODE_IDX -------------------------------------------------------- CREATE INDEX "BBPORTAL"."TERRITORIES_BB_CODE_IDX" ON "BBPORTAL"."TERRITORIES" ("BB_CODE") PCTFREE 10 INITRANS 2 MAXTRANS 255 COMPUTE STATISTICS STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645 PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT FLASH_CACHE DEFAULT CELL_FLASH_CACHE DEFAULT) TABLESPACE "BLAWDATA" ; -------------------------------------------------------- -- DDL for Index TERRITORIES_ALPHA_TWO_CODE_IDX -------------------------------------------------------- CREATE INDEX "BBPORTAL"."TERRITORIES_ALPHA_TWO_CODE_IDX" ON "BBPORTAL"."TERRITORIES" ("ALPHA_TWO_CODE") PCTFREE 10 INITRANS 2 MAXTRANS 255 COMPUTE STATISTICS STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645 PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT FLASH_CACHE DEFAULT CELL_FLASH_CACHE DEFAULT) TABLESPACE "BLAWDATA" ; -------------------------------------------------------- -- DDL for Index TERRITORIES_NAME_IDX -------------------------------------------------------- CREATE INDEX "BBPORTAL"."TERRITORIES_NAME_IDX" ON "BBPORTAL"."TERRITORIES" ("NAME") PCTFREE 10 INITRANS 2 MAXTRANS 255 COMPUTE STATISTICS STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645 PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT FLASH_CACHE DEFAULT CELL_FLASH_CACHE DEFAULT) TABLESPACE "BLAWDATA" ; -------------------------------------------------------- -- DDL for Index TERRITORIES_PARENT_ID_IDX -------------------------------------------------------- CREATE INDEX "BBPORTAL"."TERRITORIES_PARENT_ID_IDX" ON "BBPORTAL"."TERRITORIES" ("PARENT_TERRITORY_ID") PCTFREE 10 INITRANS 2 MAXTRANS 255 COMPUTE STATISTICS STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645 PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT FLASH_CACHE DEFAULT CELL_FLASH_CACHE DEFAULT) TABLESPACE "BLAWDATA" ; -------------------------------------------------------- -- DDL for Index TERRITORIES_NUM_THREE_CODE_IDX -------------------------------------------------------- CREATE INDEX "BBPORTAL"."TERRITORIES_NUM_THREE_CODE_IDX" ON "BBPORTAL"."TERRITORIES" ("NUM_THREE_CODE") PCTFREE 10 INITRANS 2 MAXTRANS 255 COMPUTE STATISTICS STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645 PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT FLASH_CACHE DEFAULT CELL_FLASH_CACHE DEFAULT) TABLESPACE "BLAWDATA" ; -------------------------------------------------------- -- DDL for Index TE_ALPHA_THREE_CODE_IDX -------------------------------------------------------- CREATE INDEX "BBPORTAL"."TE_ALPHA_THREE_CODE_IDX" ON "BBPORTAL"."TERRITORIES" ("ALPHA_THREE_CODE") PCTFREE 10 INITRANS 2 MAXTRANS 255 COMPUTE STATISTICS STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645 PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT FLASH_CACHE DEFAULT CELL_FLASH_CACHE DEFAULT) TABLESPACE "BLAWDATA" ; -------------------------------------------------------- -- Constraints for Table TERRITORIES -------------------------------------------------------- ALTER TABLE "BBPORTAL"."TERRITORIES" ADD CONSTRAINT "TERRITORIES_UK" UNIQUE ("NAME", "PARENT_TERRITORY_ID") USING INDEX PCTFREE 10 INITRANS 2 MAXTRANS 255 COMPUTE STATISTICS STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645 PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT FLASH_CACHE DEFAULT CELL_FLASH_CACHE DEFAULT) TABLESPACE "BLAWDATA" ENABLE; ALTER TABLE "BBPORTAL"."TERRITORIES" ADD CONSTRAINT "TERRITORIES_PK" PRIMARY KEY ("TERRITORY_ID") USING INDEX PCTFREE 10 INITRANS 2 MAXTRANS 255 COMPUTE STATISTICS STORAGE(INITIAL 65536 NEXT 1048576 MINEXTENTS 1 MAXEXTENTS 2147483645 PCTINCREASE 0 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT FLASH_CACHE DEFAULT CELL_FLASH_CACHE DEFAULT) TABLESPACE "BLAWDATA" ENABLE; ALTER TABLE "BBPORTAL"."TERRITORIES" MODIFY ("NAME" NOT NULL ENABLE); ALTER TABLE "BBPORTAL"."TERRITORIES" MODIFY ("ENTITY_VERSION" NOT NULL ENABLE); ALTER TABLE "BBPORTAL"."TERRITORIES" MODIFY ("TERRITORY_ID" NOT NULL ENABLE); -------------------------------------------------------- -- Ref Constraints for Table TERRITORIES -------------------------------------------------------- ALTER TABLE "BBPORTAL"."TERRITORIES" ADD CONSTRAINT "TERRITORIES_PARENT_ID_FK" FOREIGN KEY ("PARENT_TERRITORY_ID") REFERENCES "BBPORTAL"."TERRITORIES" ("TERRITORY_ID") DISABLE; QUIT;
--数据库的命名全部小写 create database xhspsql; use xhspsql; set names gdb; --创建用户的表格 create table ruser ( id int primary key auto_increment, username varchar(40), password varchar(40), phone varchar(40), nickname varchar(16), addr varchar(255), rdate datetime, cpdate datetime ); --创建商品类别的表格 create table category ( id int primary key auto_increment, name varchar(255), descr varchar(255), orderby int, pid int, isleaf int, #0表示leaf 1表示非leaf grade int ); --创建商品信息的表格 create table product ( id int primary key auto_increment, name varchar(255), descr varchar(255), normalPrice double, memberPrice double, pdate datetime, categoryId int );
-- +migrate Up CREATE TABLE faculty ( emp_id varchar(20) REFERENCES employee (id) PRIMARY KEY, dept_id integer REFERENCES department (id), start_date DATE NOT NULL ); CREATE TABLE cc_faculty ( emp_id varchar(20) REFERENCES employee(id) PRIMARY KEY, post_id integer REFERENCES post (id), start_date DATE NOT NULL ); -- +migrate Down DROP TABLE faculty; DROP TABLE cc_faculty;
--select everyone who returned a sherrod card but no member card (2069) drop table if exists oh_1184_sbcard_nomember; create table oh_1184_sbcard_nomember as select final_id , name , fnl_priadr , fnl_city , fnl_state , fnl_zip , col0pension , membership_mail_return_score from ologghe.oh1184ret left join oh_1184_modeling m using (final_id) left join oh_1184_membership_mail_score score using (final_id) where col12senbrowncard ilike 'yes' and (m.col11membership not in ('Yes','yes') or m.col11membership is null) and fnl_dpvstt != 'N' and pp_address_index = 0 ; --make a list of additional randos to mail drop table if exists oh_1184_mail_random; create table oh_1184_mail_random as select final_id , o.name , o.fnl_priadr , o.fnl_city , o.fnl_state , o.fnl_zip , m.col0pension , score.membership_mail_return_score from ologghe.oh1184ret o left join oh_1184_modeling m using (final_id) left join oh_1184_sbcard_nomember s using (final_id) left join oh_1184_membership_mail_score score using (final_id) where s.final_id is null and (m.col11membership not in ('Yes','yes') or m.col11membership is null) and m.deceased != 'Y' and o.fnl_dpvstt = 'Y' and o.pp_address_index = 0 order by random() limit 8965; --make a list of top scorers who aren't in either of the previous lists to validate the model score drop table if exists oh_1184_top_scorers; create table oh_1184_top_scorers as select final_id , o.name , o.fnl_priadr , o.fnl_city , o.fnl_state , o.fnl_zip , m.col0pension ,score.membership_mail_return_score from ologghe.oh1184ret o left join oh_1184_modeling m using (final_id) left join oh_1184_sbcard_nomember s using (final_id) left join oh_1184_membership_mail_score score using (final_id) left join oh_1184_mail_random r using (final_id) left join ( select final_id, ntile(10) over (order by membership_mail_return_score asc) as tile from oh_1184_membership_mail_score a ) t using (final_id) where s.final_id is null and r.final_id is null and (m.col11membership not in ('Yes','yes') or m.col11membership is null) and m.deceased != 'Y' and o.fnl_dpvstt = 'Y' and o.pp_address_index = 0 and t.tile >=7 order by membership_mail_return_score desc limit 8966; select avg(membership_mail_return_score) ,'sherrod' from oh_1184_sbcard_nomember union select avg(membership_mail_return_score) ,'random' from oh_1184_mail_random union select avg(membership_mail_return_score) ,'top' from oh_1184_top_scorers --checks /*select trunc(membership_mail_return_score*100) ,count(*) from oh_1184_membership_mail_score group by 1 order by 1 select tile, sum(dv)::float/count(dv)::float as actual, avg(membership_mail_return_score) as predicted, count(*) from ( select case when col11membership ilike 'yes' then 1 else 0 end as dv , membership_mail_return_score , ntile(10) over (order by membership_mail_return_score asc) as tile from oh_1184_membership_mail_score a left join oh_1184_modeling b using (final_id) ) group by 1 order by 1 select sum(case when col11membership ilike 'yes' then 1 else 0 end)::float/count(*) from ( select * from oh_1184_modeling a left join oh_1184_membership_mail_score b using (final_id) order by membership_mail_return_score desc limit 6000);*/ drop table if exists oh_1184_overrun_recruitment_12052017; create table oh_1184_overrun_recruitment_12052017 as select s.* ,'sherrodcard' as source from oh_1184_sbcard_nomember s union select r.* ,'random' as source from oh_1184_mail_random r union select t.* ,'topscorer' as source from oh_1184_top_scorers t
DELETE FROM `[#DB_PREFIX#]system_setting` WHERE `varname` = 'base_url'; DELETE FROM `[#DB_PREFIX#]nav_menu` WHERE `type` = 'feature'; CREATE TABLE IF NOT EXISTS `[#DB_PREFIX#]weixin_accounts` ( `id` int(10) NOT NULL AUTO_INCREMENT, `weixin_mp_token` varchar(255) NOT NULL, `weixin_account_role` varchar(20) DEFAULT 'base', `weixin_app_id` varchar(255) DEFAULT '', `weixin_app_secret` varchar(255) DEFAULT '', `wecenter_access_token` varchar(255) DEFAULT '', `wecenter_access_secret` varchar(255) DEFAULT '', `weixin_mp_menu` text, `weixin_subscribe_message_key` varchar(255) COLLATE utf8_unicode_ci DEFAULT '', `weixin_no_result_message_key` varchar(255) COLLATE utf8_unicode_ci DEFAULT '', PRIMARY KEY (`id`), KEY `weixin_mp_token` (`weixin_mp_token`), KEY `weixin_account_role` (`weixin_account_role`), KEY `weixin_app_id` (`weixin_app_id`) ) ENGINE=[#DB_ENGINE#] DEFAULT CHARSET=utf8 COMMENT='微信多账号设置'; CREATE TABLE IF NOT EXISTS `[#DB_PREFIX#]weixin_msg` ( `id` int(10) NOT NULL AUTO_INCREMENT, `msg_id` bigint(20) NOT NULL, `group_name` varchar(255) NOT NULL DEFAULT '未分组', `status` varchar(15) NOT NULL DEFAULT 'unsent', `error_num` int(10) DEFAULT NULL, `main_msg` text, `articles_info` text, `questions_info` text, `create_time` int(10) NOT NULL, `filter_count` int(10) NOT NULL DEFAULT '0', PRIMARY KEY (`id`), KEY `msg_id` (`msg_id`), KEY `group_name` (`group_name`), KEY `status` (`status`) ) ENGINE=[#DB_ENGINE#] DEFAULT CHARSET=utf8 COMMENT='微信群发列表'; CREATE TABLE IF NOT EXISTS `[#DB_PREFIX#]weibo_msg` ( `id` bigint(20) NOT NULL, `created_at` int(10) NOT NULL, `msg_author_uid` bigint(20) NOT NULL, `text` varchar(255) NOT NULL, `access_key` varchar(32) NOT NULL, `has_attach` tinyint(1) NOT NULL DEFAULT '0', `uid` int(10) NOT NULL, `weibo_uid` bigint(20) NOT NULL, `question_id` int(11) DEFAULT NULL, PRIMARY KEY `id` (`id`), KEY `created_at` (`created_at`), KEY `uid` (`uid`), KEY `weibo_uid` (`weibo_uid`), KEY `question_id` (`question_id`) ) ENGINE=[#DB_ENGINE#] DEFAULT CHARSET=utf8 COMMENT='新浪微博消息列表'; CREATE INDEX `weibo_msg_id` ON `[#DB_PREFIX#]question` (`weibo_msg_id`); CREATE INDEX `last_msg_id` ON `[#DB_PREFIX#]users_sina` (`last_msg_id`); CREATE TABLE IF NOT EXISTS `[#DB_PREFIX#]weixin_qr_code` ( `scene_id` mediumint(5) NOT NULL AUTO_INCREMENT, `ticket` varchar(255) DEFAULT NULL, `description` varchar(255) NOT NULL, `subscribe_num` int(10) NOT NULL DEFAULT '0', PRIMARY KEY `scene_id` (`scene_id`), KEY `ticket` (`ticket`), KEY `subscribe_num` (`subscribe_num`) ) ENGINE=[#DB_ENGINE#] DEFAULT CHARSET=utf8 COMMENT='微信二维码'; CREATE INDEX `account_id` ON `[#DB_PREFIX#]weixin_reply_rule` (`account_id`); CREATE INDEX `unverified_modify_count` ON `[#DB_PREFIX#]question` (`unverified_modify_count`); INSERT IGNORE INTO `[#DB_PREFIX#]system_setting` (`varname`, `value`) VALUES ('weibo_msg_enabled', 's:1:"N";'), ('weibo_msg_published_user', 'a:0:"";'), ('admin_notifications', 'a:0:"";'), ('slave_mail_config', 's:0:"";'); ALTER TABLE `[#DB_PREFIX#]favorite` DROP INDEX `answer_id`; ALTER TABLE `[#DB_PREFIX#]favorite` CHANGE `answer_id` `item_id` INT( 11 ) NULL DEFAULT '0'; ALTER TABLE `[#DB_PREFIX#]favorite` ADD `type` VARCHAR( 16 ) NOT NULL DEFAULT '', ADD INDEX ( `type` ); UPDATE `[#DB_PREFIX#]favorite` SET `type` = 'answer'; ALTER TABLE `[#DB_PREFIX#]favorite_tag` DROP INDEX `answer_id`; ALTER TABLE `[#DB_PREFIX#]favorite_tag` CHANGE `answer_id` `item_id` INT( 11 ) NULL DEFAULT '0'; ALTER TABLE `[#DB_PREFIX#]favorite_tag` ADD `type` VARCHAR( 16 ) NOT NULL DEFAULT '', ADD INDEX ( `type` ); UPDATE `[#DB_PREFIX#]favorite_tag` SET `type` = 'answer'; ALTER TABLE `[#DB_PREFIX#]favorite_tag` ADD INDEX ( `item_id` ); ALTER TABLE `[#DB_PREFIX#]topic` ADD `parent_id` INT( 10 ) NULL DEFAULT '0', ADD INDEX ( `parent_id` ); ALTER TABLE `[#DB_PREFIX#]topic` ADD `is_parent` TINYINT( 1 ) NULL DEFAULT '0', ADD INDEX ( `is_parent` ); ALTER TABLE `[#DB_PREFIX#]question` ADD `weibo_msg_id` bigint(20) DEFAULT NULL; ALTER TABLE `[#DB_PREFIX#]users_sina` ADD `last_msg_id` bigint(20) DEFAULT NULL; ALTER TABLE `[#DB_PREFIX#]users_sina` ADD `expires_time` int(10) DEFAULT '0' COMMENT '过期时间'; ALTER TABLE `[#DB_PREFIX#]attach` MODIFY `item_id` bigint(20) DEFAULT '0' COMMENT '关联 ID'; ALTER TABLE `[#DB_PREFIX#]weixin_reply_rule` ADD `account_id` int(10) NOT NULL DEFAULT '0'; ALTER TABLE `[#DB_PREFIX#]question` ADD `unverified_modify_count` int(10) NOT NULL DEFAULT '0';
/* Formatted on 21/07/2014 18:39:30 (QP5 v5.227.12220.39754) */ CREATE OR REPLACE FORCE VIEW MCRE_OWN.V_MCREI_APP_DELIB_ATT_CONF_OLD ( COD_PROTOCOLLO_PACCHETTO, COD_SNDG, DESC_NOME_CONTROPARTE, COD_MICROTIPOLOGIA_DELIB, COD_FASE_PACCHETTO, COD_FASE_MICROTIPOLOGIA, VAL_RET_TOT_DA_DELIB_CASSA, VAL_RET_TOT_DA_DELIB_FIRMA, VAL_RET_TOT_DA_DELIB_DERIVATI, TOT_RETTIFICA_DA_DELIB, DTA_SCADENZA_TOT_DA_DELIB, VAL_RDV_TOT_CASSA, VAL_RDV_TOT_FIRMA, VAL_RDV_TOT_DERIVATI, VAL_RDV_TOT, TOT_RINUNCIA_DA_DELIB ) AS SELECT DISTINCT --02.15 aggiunto filtro fase_microtipol = 'ATT' cod_protocollo_pacchetto, cod_sndg, desc_nome_controparte, cod_microtipologia_delib, cod_fase_pacchetto, cod_fase_microtipologia, --valori da deliberare MAX ( val_ret_tot_da_delib_cassa) OVER ( PARTITION BY cod_protocollo_pacchetto, cod_microtipologia_delib) AS val_ret_tot_da_delib_cassa, MAX ( val_ret_tot_da_delib_firma) OVER ( PARTITION BY cod_protocollo_pacchetto, cod_microtipologia_delib) AS val_ret_tot_da_delib_firma, MAX ( val_ret_tot_da_delib_derivati) OVER ( PARTITION BY cod_protocollo_pacchetto, cod_microtipologia_delib) AS val_ret_tot_da_delib_derivati, ---tot_da deliberare MAX ( val_ret_tot_da_delib_cassa + val_ret_tot_da_delib_firma + val_ret_tot_da_delib_derivati + val_rinuncia_deliberata) OVER ( PARTITION BY cod_protocollo_pacchetto, cod_microtipologia_delib) AS tot_rettifica_da_delib, ---OPPURE SUM(S.VAL_RDV_TOT) ? MAX ( dta_scadenza_tot_da_delib) OVER ( PARTITION BY cod_protocollo_pacchetto, cod_microtipologia_delib) AS dta_scadenza_tot_da_delib, --29 MARZO MAX ( val_rdv_tot_cassa) OVER ( PARTITION BY cod_protocollo_pacchetto, cod_microtipologia_delib) AS val_rdv_tot_cassa, MAX ( val_rdv_tot_firma) OVER ( PARTITION BY cod_protocollo_pacchetto, cod_microtipologia_delib) AS val_rdv_tot_firma, MAX ( val_rdv_tot_derivati) OVER ( PARTITION BY cod_protocollo_pacchetto, cod_microtipologia_delib) AS val_rdv_tot_derivati, MAX ( val_rdv_tot_cassa + val_rdv_tot_firma + val_rdv_tot_derivati) OVER ( PARTITION BY cod_protocollo_pacchetto, cod_microtipologia_delib) AS val_rdv_tot, MAX ( (val_rinuncia_deliberata + val_rinuncia_proposta)) OVER ( PARTITION BY cod_protocollo_pacchetto, cod_microtipologia_delib) AS tot_rinuncia_da_delib FROM (SELECT DISTINCT cod_protocollo_pacchetto, cod_microtipologia_delib, cod_fase_pacchetto, cod_fase_microtipologia, d.cod_sndg, g.desc_nome_controparte, ----totali_da_deliberare CASE WHEN cod_classe_ft = 'CA' THEN SUM ( val_imp_rettifica_pregr + val_imp_rettifica_att) OVER ( PARTITION BY cod_protocollo_pacchetto, cod_microtipologia_delib, s.cod_abi, s.cod_ndg, s.cod_protocollo_delibera, cod_classe_ft) ELSE 0 END val_ret_tot_da_delib_cassa, CASE WHEN cod_classe_ft = 'FI' THEN SUM ( val_imp_rettifica_pregr + val_imp_rettifica_att) OVER ( PARTITION BY cod_protocollo_pacchetto, cod_microtipologia_delib, s.cod_abi, s.cod_ndg, s.cod_protocollo_delibera, cod_classe_ft) ELSE 0 END val_ret_tot_da_delib_firma, CASE WHEN cod_classe_ft = 'ST' THEN SUM ( val_imp_rettifica_pregr + val_imp_rettifica_att) OVER ( PARTITION BY cod_protocollo_pacchetto, cod_microtipologia_delib, s.cod_abi, s.cod_ndg, s.cod_protocollo_delibera, cod_classe_ft) ELSE 0 END val_ret_tot_da_delib_derivati, --- rettifica di valore complessiva/previsione di perdita CASE WHEN cod_classe_ft = 'CA' THEN SUM ( val_rdv_tot) OVER ( PARTITION BY cod_protocollo_pacchetto, cod_microtipologia_delib, s.cod_abi, s.cod_ndg, s.cod_protocollo_delibera, cod_classe_ft) ELSE 0 END val_rdv_tot_cassa, CASE WHEN cod_classe_ft = 'FI' THEN SUM ( val_rdv_tot) OVER ( PARTITION BY cod_protocollo_pacchetto, cod_microtipologia_delib, s.cod_abi, s.cod_ndg, s.cod_protocollo_delibera, cod_classe_ft) ELSE 0 END val_rdv_tot_firma, CASE WHEN cod_classe_ft = 'ST' THEN SUM ( val_rdv_tot) OVER ( PARTITION BY cod_protocollo_pacchetto, cod_microtipologia_delib, s.cod_abi, s.cod_ndg, s.cod_protocollo_delibera, cod_classe_ft) ELSE 0 END val_rdv_tot_derivati, ---- TO_DATE (NULL, 'ddmmyyyy') AS dta_scadenza_tot_da_delib, ---AGGIUNGERE NUOVO CAMPO MANUALE? dta_scadenza, s.val_imp_rettifica_att, s.val_imp_rettifica_pregr, val_rinuncia_proposta, val_rinuncia_deliberata FROM t_mcrei_app_delibere d, t_mcrei_app_stime s, t_mcre0_app_anagrafica_gruppo g WHERE d.cod_protocollo_delibera = s.cod_protocollo_delibera(+) AND d.cod_abi = s.cod_abi(+) AND d.cod_ndg = s.cod_ndg(+) AND D.COD_MACROTIPOLOGIA_DELIB != 'TP' -----SOLO GESTIONALI AND d.cod_fase_pacchetto = 'CNF' AND d.cod_fase_microtipologia = 'ATT' AND d.cod_fase_delibera != 'AN' AND d.flg_no_delibera = '0' AND d.flg_attiva = '1' AND d.cod_sndg = g.cod_sndg AND s.flg_attiva(+) = '1' AND s.flg_tipo_dato(+) = 'R' UNION ----20 marzo per gestire nuova fase microtipologia ACT SELECT DISTINCT cod_protocollo_pacchetto, cod_microtipologia_delib, cod_fase_pacchetto, cod_fase_microtipologia, d.cod_sndg, g.desc_nome_controparte, ----totali_da_deliberare CASE WHEN cod_classe_ft = 'CA' THEN SUM ( val_imp_rettifica_pregr + val_imp_rettifica_att) OVER ( PARTITION BY cod_protocollo_pacchetto, cod_microtipologia_delib, s.cod_abi, s.cod_ndg, s.cod_protocollo_delibera, cod_classe_ft) ELSE 0 END val_ret_tot_da_delib_cassa, CASE WHEN cod_classe_ft = 'FI' THEN SUM ( val_imp_rettifica_pregr + val_imp_rettifica_att) OVER ( PARTITION BY cod_protocollo_pacchetto, cod_microtipologia_delib, s.cod_abi, s.cod_ndg, s.cod_protocollo_delibera, cod_classe_ft) ELSE 0 END val_ret_tot_da_delib_firma, CASE WHEN cod_classe_ft = 'ST' THEN SUM ( val_imp_rettifica_pregr + val_imp_rettifica_att) OVER ( PARTITION BY cod_protocollo_pacchetto, cod_microtipologia_delib, s.cod_abi, s.cod_ndg, s.cod_protocollo_delibera, cod_classe_ft) ELSE 0 END val_ret_tot_da_delib_derivati, --- rettifica di valore complessiva/previsione di perdita CASE WHEN cod_classe_ft = 'CA' THEN SUM ( val_rdv_tot) OVER ( PARTITION BY cod_protocollo_pacchetto, cod_microtipologia_delib, s.cod_abi, s.cod_ndg, s.cod_protocollo_delibera, cod_classe_ft) ELSE 0 END val_rdv_tot_cassa, CASE WHEN cod_classe_ft = 'FI' THEN SUM ( val_rdv_tot) OVER ( PARTITION BY cod_protocollo_pacchetto, cod_microtipologia_delib, s.cod_abi, s.cod_ndg, s.cod_protocollo_delibera, cod_classe_ft) ELSE 0 END val_rdv_tot_firma, CASE WHEN cod_classe_ft = 'ST' THEN SUM ( val_rdv_tot) OVER ( PARTITION BY cod_protocollo_pacchetto, cod_microtipologia_delib, s.cod_abi, s.cod_ndg, s.cod_protocollo_delibera, cod_classe_ft) ELSE 0 END val_rdv_tot_derivati, ---- TO_DATE (NULL, 'ddmmyyyy') AS dta_scadenza_tot_da_delib, ---AGGIUNGERE NUOVO CAMPO MANUALE? dta_scadenza, s.val_imp_rettifica_att, s.val_imp_rettifica_pregr, val_rinuncia_proposta, val_rinuncia_deliberata FROM t_mcrei_app_delibere d, t_mcrei_app_stime s, t_mcre0_app_anagrafica_gruppo g WHERE d.cod_protocollo_delibera = s.cod_protocollo_delibera(+) AND d.cod_abi = s.cod_abi(+) AND d.cod_ndg = s.cod_ndg(+) AND D.COD_MACROTIPOLOGIA_DELIB = 'TP' -----SOLO TRANSAZIONI A PRONTI AND d.cod_fase_pacchetto = 'CNF' AND d.cod_fase_microtipologia IN ('ATT', 'CNF') ---20 MARZO AND d.cod_fase_delibera != 'AN' AND d.flg_no_delibera = '0' AND d.flg_attiva = '1' AND d.cod_sndg = g.cod_sndg AND s.flg_attiva(+) = '1' AND s.flg_tipo_dato(+) = 'R');
insert into ril.wsi_execution_hist (start_time, from_store, to_store, study_id, wsi, caller, request, response, error) select current_timestamp, 'store_abc', 'store_def', '19-99998', '', 'some_proc', '<process>this</process>','Some error and stack trace\nblah blah\n...', true; ; insert into ril.wsi_execution_hist (start_time, from_store, to_store, study_id, wsi, caller, request, response, error) select current_timestamp, 'store_abc', 'store_def', '19-99997', '', 'some_proc', '<process>this</process>','Some error and stack trace\nblah blah\n...', true; ; insert into ril.wsi_execution_hist (start_time, from_store, to_store, study_id, wsi, caller, request, response, error) select current_timestamp, 'store_abc', 'store_def', '19-99996', '', 'some_proc', '<process>this</process>','Some error and stack trace\nblah blah\n...', true; ; insert into ril.wsi_execution_hist (start_time, from_store, to_store, study_id, wsi, caller, request, response, error) select current_timestamp, 'store_abc', 'store_def', '19-99995', '', 'some_proc', '<process>this</process>','Some error and stack trace\nblah blah\n...', true; ; insert into ril.wsi_execution_hist (start_time, from_store, to_store, study_id, wsi, caller, request, response, error) select current_timestamp, 'store_abc', 'store_def', '19-99994', '', 'some_proc', '<process>this</process>','Some error and stack trace\nblah blah\n...', true; ; insert into ril.wsi_execution_hist (start_time, from_store, to_store, study_id, wsi, caller, request, response, error) select current_timestamp, 'store_abc', 'store_def', '19-99993', '', 'some_proc', '<process>this</process>','Some error and stack trace\nblah blah\n...', true; ; insert into ril.wsi_execution_hist (start_time, from_store, to_store, study_id, wsi, caller, request, response, error) select current_timestamp, 'store_abc', 'store_def', '19-99992', '', 'some_proc', '<process>this</process>','Some error and stack trace\nblah blah\n...', true; ; insert into ril.wsi_execution_hist (start_time, from_store, to_store, study_id, wsi, caller, request, response, error) select current_timestamp, 'store_abc', 'store_def', '19-99991', '', 'some_proc', '<process>this</process>','Some error and stack trace\nblah blah\n...', true; ; insert into ril.wsi_execution_hist (start_time, from_store, to_store, study_id, wsi, caller, request, response, error) select current_timestamp, 'store_abc', 'store_def', '19-99990', '', 'some_proc', '<process>this</process>','Some error and stack trace\nblah blah\n...', true; ; insert into ril.wsi_execution_hist (start_time, from_store, to_store, study_id, wsi, caller, request, response, error) select current_timestamp, 'store_abc', 'store_def', '19-99989', '', 'some_proc', '<process>this</process>','Some error and stack trace\nblah blah\n...', true; ;
INSERT INTO authority (name) VALUES ('ROLE_ADMIN'), ('ROLE_GUEST'); -- password for all users is '12345' INSERT INTO guest (id, first_name, last_name, email_address, username, password, active) VALUES (1001, 'Petar', 'Petrović', 'ppetrovic@gmail.com', 'perica', '$2a$04$iLVT9N/5RKaS1bMXEmueauu7pU1ZROAxtRT0x8pAGGuQtmp9E8LH.', true), (1002, 'Mika', 'Mikić', 'mmikic@gmail.com', 'mikica', '$2a$04$iLVT9N/5RKaS1bMXEmueauu7pU1ZROAxtRT0x8pAGGuQtmp9E8LH.', true), (1003, 'Bogdan', 'Bogdanović', 'bbogdan@gmail.com', 'bogi', '$2a$04$iLVT9N/5RKaS1bMXEmueauu7pU1ZROAxtRT0x8pAGGuQtmp9E8LH.', true), (1004, 'Mika', 'Mikić', 'mkmik@gmail.com', 'mikarije', '$2a$04$iLVT9N/5RKaS1bMXEmueauu7pU1ZROAxtRT0x8pAGGuQtmp9E8LH.', false), (1005, 'Goran', 'Petrović', 'gpetrovic@gmail.com', 'goPet', '$2a$04$iLVT9N/5RKaS1bMXEmueauu7pU1ZROAxtRT0x8pAGGuQtmp9E8LH.', null), (1006, 'Jovana', 'Mihajlović', 'jmihail@gmail.com', 'jovana25', '$2a$04$iLVT9N/5RKaS1bMXEmueauu7pU1ZROAxtRT0x8pAGGuQtmp9E8LH.', true), (1007, 'Milana', 'Rakić', 'mrakic@gmail.com', 'rakica2', '$2a$04$iLVT9N/5RKaS1bMXEmueauu7pU1ZROAxtRT0x8pAGGuQtmp9E8LH.', true), (1008, 'Zorana', 'Zoranić', 'zzora@gmail.com', 'zoka61', '$2a$04$iLVT9N/5RKaS1bMXEmueauu7pU1ZROAxtRT0x8pAGGuQtmp9E8LH.', true), (1009, 'Gorana', 'Maksimović', 'gmax2@gmail.com', 'gorama77', '$2a$04$iLVT9N/5RKaS1bMXEmueauu7pU1ZROAxtRT0x8pAGGuQtmp9E8LH.', true), (1010, 'Kosta', 'Kostić', 'kkostic@gmail.com', 'kostica1', '$2a$04$iLVT9N/5RKaS1bMXEmueauu7pU1ZROAxtRT0x8pAGGuQtmp9E8LH.', false), (1011, 'Uroš', 'Bogdanović', 'urosb@gmail.com', 'urosNejaki', '$2a$04$iLVT9N/5RKaS1bMXEmueauu7pU1ZROAxtRT0x8pAGGuQtmp9E8LH.', true), (1012, 'Milica', 'Nikolić', 'micani@gmail.com', 'mica51', '$2a$04$iLVT9N/5RKaS1bMXEmueauu7pU1ZROAxtRT0x8pAGGuQtmp9E8LH.', true), (1013, 'Petar', 'Jokić', 'pjoka@gmail.com', 'joka261', '$2a$04$iLVT9N/5RKaS1bMXEmueauu7pU1ZROAxtRT0x8pAGGuQtmp9E8LH.', null), (1014, 'Gorana', 'Jeftović', 'gojefta@gmail.com', 'goraje2', '$2a$04$iLVT9N/5RKaS1bMXEmueauu7pU1ZROAxtRT0x8pAGGuQtmp9E8LH.', true), (1015, 'Vladimir', 'Rakić', 'vladar2@gmail.com', 'vladar21', '$2a$04$iLVT9N/5RKaS1bMXEmueauu7pU1ZROAxtRT0x8pAGGuQtmp9E8LH.', true), (1016, 'Zorana', 'Zoranić', 'zers61@gmail.com', 'zorat2', '$2a$04$iLVT9N/5RKaS1bMXEmueauu7pU1ZROAxtRT0x8pAGGuQtmp9E8LH.', null); -- password for admin is 'admin' INSERT INTO admin (id, username, email_address, password, active) VALUES (1111, 'admin', 'admin@gmail.com', '$2a$04$5gn/3csNiz5C9S8E5SI.IO9gi8WF6AHofzUW0Ynk3.V2BzTu0sbGG', true); INSERT INTO user_authority (user_id, authority_id) VALUES (1111, 1), (1001, 2), (1002, 2), (1003, 2), (1004, 2), (1005, 2), (1006, 2), (1007, 2), (1008, 2), (1009, 2), (1010, 2), (1011, 2), (1012, 2), (1013, 2), (1014, 2), (1015, 2), (1016, 2); INSERT INTO verification_token(token, user_id, expiry_date) VALUES ('token1', 1005, '2021-10-20T15:00'), ('token2', 1013, '2020-06-20T15:00'); INSERT INTO geo_location (id, latitude, longitude, address) VALUES (1, 43.28627472234662, 20.8102511883379, 'Kopaonik 36354'); INSERT INTO geo_location (id, latitude, longitude, address) VALUES (2, 43.64599952369584, 21.859188584394833, 'Ratarska, Sokobanja 018230'); INSERT INTO geo_location (id, latitude, longitude, address) VALUES (3, 44.805761106374455, 20.46476511327134, 'Kralja Milana 50, Beograd 11000'); INSERT INTO geo_location (id, latitude, longitude, address) VALUES (4, 44.81720352816433, 20.45481367582142, 'Vuka Karadžića 18, Beograd 11000'); INSERT INTO geo_location (id, latitude, longitude, address) VALUES (5, 44.79782815556505, 20.4675192862863, 'Skerlićeva 1, Beograd 11000'); INSERT INTO geo_location (id, latitude, longitude, address) VALUES (6, 46.10015446982987, 19.665569528661162, 'Trg Slobode 1, Subotica 24000'); INSERT INTO geo_location (id, latitude, longitude, address) VALUES (7, 45.157654398690845, 19.70962757488346, 'Fruška gora'); INSERT INTO geo_location (id, latitude, longitude, address) VALUES (8, 43.33804217849204, 22.0638699407461, 'Prekonoška pećina'); INSERT INTO geo_location (id, latitude, longitude, address) VALUES (9, 43.179578722685704, 22.77474350910259, 'Rsovci'); INSERT INTO geo_location (id, latitude, longitude, address) VALUES (10, 43.37352830947373, 20.539827315594135, 'Gradac'); INSERT INTO geo_location (id, latitude, longitude, address) VALUES (11, 44.798245906897584, 20.46923107094282, 'Krušedolska 2a, Beograd'); INSERT INTO geo_location (id, latitude, longitude, address) VALUES (12, 45.25624379011394, 19.844731557466783, 'Njegoševa 10, Novi Sad 21000'); INSERT INTO geo_location (id, latitude, longitude, address) VALUES (13, 45.12657023305386, 19.78767464211861, 'Železnička 5, Vrdnik 022408'); INSERT INTO geo_location (id, latitude, longitude, address) VALUES (14, 43.612308109766715, 20.89215244206552, 'Vrnjačka 42a, Vrnjačka Banja 36210'); INSERT INTO geo_location (id, latitude, longitude, address) VALUES (15, 43.626487833559125, 20.886501896035345, 'Ive Andrića 20G, Vrnjačka Banja');
-- phpMyAdmin SQL Dump -- version 4.7.4 -- https://www.phpmyadmin.net/ -- -- Host: 127.0.0.1 -- Generation Time: Aug 13, 2021 at 01:19 AM -- Server version: 10.1.29-MariaDB -- PHP Version: 7.1.12 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: `redping` -- -- -------------------------------------------------------- -- -- Table structure for table `locations` -- CREATE TABLE `locations` ( `location_id` int(11) NOT NULL, `location_street_name` varchar(32) NOT NULL, `location_city` varchar(32) NOT NULL, `latitude` float(10,6) NOT NULL, `longitude` float(10,6) NOT NULL, `adjacent_location_id` varchar(32) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `locations` -- INSERT INTO `locations` (`location_id`, `location_street_name`, `location_city`, `latitude`, `longitude`, `adjacent_location_id`) VALUES (1, 'Panacan Rd.', 'Davao', 7.150200, 125.659767, '2,3'), (2, 'Sasa Rd.', 'Davao', 7.148060, 125.660744, '1,3'), (3, 'Daan Maharlika High Way', 'Davao', 7.148380, 125.659348, '1,2'), (4, 'San Miguel St.', 'Davao City', 7.151790, 125.656738, '1'); -- -------------------------------------------------------- -- -- Table structure for table `my_pins` -- CREATE TABLE `my_pins` ( `location_id` int(11) NOT NULL, `user_id` int(11) NOT NULL, `time` time NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `my_pins` -- INSERT INTO `my_pins` (`location_id`, `user_id`, `time`) VALUES (2, 4, '06:00:00'), (3, 1, '11:23:00'), (1, 1, '11:37:00'), (3, 3, '19:47:00'), (2, 5, '20:02:00'); -- -------------------------------------------------------- -- -- Table structure for table `notifications` -- CREATE TABLE `notifications` ( `id` int(11) NOT NULL, `location` varchar(32) NOT NULL, `reading` int(11) NOT NULL, `warning` varchar(200) NOT NULL, `noti_status` int(11) NOT NULL, `time` time NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `notifications` -- INSERT INTO `notifications` (`id`, `location`, `reading`, `warning`, `noti_status`, `time`) VALUES (1, 'Cabaguio Ave', 25, 'Unsafe for Taxi\'s aand smaller vehicles', 1, '11:13:00'), (2, 'J.P. Laurel Avenue', 12, 'Unsafe for motor bikes and smaller vehicles', 1, '11:15:00'), (3, 'Cabaguio Ave', 25, 'Unsafe for Taxi\'s aand smaller vehicles', 1, '11:16:00'), (4, 'J.P. Laurel Avenue', 12, 'Unsafe for motor bikes and smaller vehicles', 1, '11:17:00'), (5, 'Cabaguio Ave', 25, 'Unsafe for Taxi\'s aand smaller vehicles', 1, '11:17:00'), (6, 'J.P. Laurel Avenue', 12, 'Unsafe for motor bikes and smaller vehicles', 1, '11:20:00'), (7, 'J.P. Laurel Avenue', 12, 'Unsafe for motor bikes and smaller vehicles', 1, '11:22:00'), (8, 'Cabaguio Ave', 25, 'Unsafe for Taxi\'s aand smaller vehicles', 1, '11:23:00'), (9, 'J.P. Laurel Avenue', 12, 'Unsafe for motor bikes and smaller vehicles', 1, '11:28:00'), (10, 'J.P. Laurel Avenue', 12, 'Unsafe for motor bikes and smaller vehicles', 1, '11:37:00'), (11, 'Daan Maharlika High Way', 23, 'Unsafe for Taxi\'s aand smaller vehicles', 1, '19:47:00'), (12, 'Sasa Rd.', 6, 'Road is clear, drive ahead', 1, '20:02:00'); -- -------------------------------------------------------- -- -- Table structure for table `readings` -- CREATE TABLE `readings` ( `id` int(11) NOT NULL, `location_id` int(32) NOT NULL, `reading` int(32) NOT NULL, `date_time` timestamp NOT NULL DEFAULT CURRENT_TIMESTAMP ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `readings` -- INSERT INTO `readings` (`id`, `location_id`, `reading`, `date_time`) VALUES (13, 1, 10, '2021-08-10 10:30:02'), (14, 2, 23, '2021-08-10 10:30:02'), (15, 3, 6, '2021-08-10 10:30:02'), (16, 4, 13, '2021-08-10 10:30:02'); -- -------------------------------------------------------- -- -- Table structure for table `user` -- CREATE TABLE `user` ( `user_id` int(11) NOT NULL, `first_name` varchar(32) NOT NULL, `middle_name` varchar(32) NOT NULL, `last_name` varchar(32) NOT NULL, `username` varchar(32) NOT NULL, `city` varchar(32) NOT NULL, `province` varchar(32) NOT NULL, `street` varchar(32) NOT NULL, `password` varchar(32) NOT NULL, `my_pins` varchar(32) DEFAULT NULL ) ENGINE=InnoDB DEFAULT CHARSET=latin1; -- -- Dumping data for table `user` -- INSERT INTO `user` (`user_id`, `first_name`, `middle_name`, `last_name`, `username`, `city`, `province`, `street`, `password`, `my_pins`) VALUES (1, 'Ji', 'Soo', 'Park', 'Jihyo', 'Davao', 'Davel del Sur', 'Inigo st.', '123456', '1'), (4, 'ds', 'ds', 'ds', 'admin', 'as', 'g', 'g', '123456', NULL), (5, 'Eugene', 'Lucagbo', 'Cortes', 'Yujin', 'Davao City', 'Davao del Sur', 'Malagamot Rd.', '1234', NULL); -- -- Indexes for dumped tables -- -- -- Indexes for table `locations` -- ALTER TABLE `locations` ADD PRIMARY KEY (`location_id`); -- -- Indexes for table `notifications` -- ALTER TABLE `notifications` ADD PRIMARY KEY (`id`); -- -- Indexes for table `readings` -- ALTER TABLE `readings` ADD PRIMARY KEY (`id`); -- -- Indexes for table `user` -- ALTER TABLE `user` ADD PRIMARY KEY (`user_id`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `locations` -- ALTER TABLE `locations` MODIFY `location_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=5; -- -- AUTO_INCREMENT for table `notifications` -- ALTER TABLE `notifications` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=13; -- -- AUTO_INCREMENT for table `readings` -- ALTER TABLE `readings` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=17; -- -- AUTO_INCREMENT for table `user` -- ALTER TABLE `user` MODIFY `user_id` int(11) NOT NULL AUTO_INCREMENT, AUTO_INCREMENT=6; 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 */;
# 4@(#) tShowSQLTxt.sql 4.1@(#) 07/09/07 12:27:05 column username format a8 heading 'UserName' column sql_text format a80 word_wrapped set lines 120 spool sqltext.lis select s.username,s.sid,s.status,q.sql_text from v$session s,v$sqltext q where s.sql_hash_value = q.hash_value and s.sql_address = q.address order by s.username,s.sid,q.piece / spool off
-- ============================================================ -- Table : LIGNESCOMMANDESTEMP -- ============================================================ CREATE TABLE LignesCommandesTemp( idContenuCommande NUMBER GENERATED ALWAYS AS IDENTITY , nbContenants NUMBER NOT NULL , tempsFab NUMBER NULL , tempsCondi NUMBER NULL , idCommande NUMBER NOT NULL , idContenant NUMBER NOT NULL , idBonbon NUMBER NOT NULL , idVariante NUMBER NOT NULL , idTexture NUMBER NOT NULL , idCouleur NUMBER NOT NULL , idMachineFab NUMBER NULL , idMachineCondi NUMBER NULL , CONSTRAINT PK_LIGNESCOMMANDESTEMP PRIMARY KEY (idContenuCommande ) ) / -- ============================================================ -- Table : COMMANDESTEMP -- ============================================================ CREATE TABLE CommandesTemp( idCommande NUMBER GENERATED ALWAYS AS IDENTITY , numCommande Varchar (25) NOT NULL , dateCommande Varchar (25) NOT NULL , idPays NUMBER NOT NULL , tempsFabTotal NUMBER NULL , tempsCondiTotal NUMBER NULL , tempsPicking NUMBER NULL , CONSTRAINT PK_COMMANDESTEMP PRIMARY KEY (idCommande ) ) /
/** * SQL to insert table BY_KAISHA_NYUKO_ERROR * @author HaiTTH * @version $Id: KaishaEditService_insertKaishaNyukoError_Ins_01.sql 11212 2014-07-04 07:26:36Z p_chan_hai $ */ INSERT INTO BY_KAISHA_NYUKO_ERROR( KAISHA_CD, SCREEN_ID, WARN_FLG, BATCH_WARN_FLG, CAUTION_FLG, CREATE_DATE, CREATE_USER_ID, CREATE_MODULE_ID, UPDATE_DATE, UPDATE_USER_ID, UPDATE_MODULE_ID) VALUES( /*kaishaCd*/'000002' , /*screenId*/'BYKA02' , /*warnFlg*/'0' , /*batchWarnFlg*/'0' , /*cautionFlg*/'0' , /*createDate*/'20140627' , /*createUserId*/'HaiTTH' , /*createModuleId*/'SYSTEM' , /*updateDate*/'20140627' , /*updateUserId*/'HaiTTH' , /*updateModuleId*/'SYSTEM' )
CREATE OR REPLACE VIEW CAT_MAT_ARC AS SELECT SET_ARC_MAT( ID_TMAT ) "id", CASE ID_TMAT WHEN 'ACER COAR.' THEN 'Acer Coarrugat' WHEN '-' THEN 'Altres' ELSE INITCAP( ID_TMAT ) END descript, null "link" FROM NS_MATARO.CAT_TRAM_MATERIAL ORDER BY 1;
SELECT * FROM T1 WHERE T1.id > 5
``` 获取所有部门中当前员工薪水最高的相关信息,给出dept_no, emp_no以及其对应的salary CREATE TABLE `dept_emp` ( `emp_no` int(11) NOT NULL, `dept_no` char(4) NOT NULL, `from_date` date NOT NULL, `to_date` date NOT NULL, PRIMARY KEY (`emp_no`,`dept_no`)); CREATE TABLE `salaries` ( `emp_no` int(11) NOT NULL, `salary` int(11) NOT NULL, `from_date` date NOT NULL, `to_date` date NOT NULL, PRIMARY KEY (`emp_no`,`from_date`)); ``` ``` SELECT d.dept_no,d.emp_no,max(s.salary) AS salary FROM dept_emp d INNER JOIN salaries s ON d.emp_no=s.emp_no WHERE d.to_date='9999-01-01' AND s.to_date='9999-01-01' GROUP BY d.dept_no ```
select * from employee where Address like '%Houston TX%';
CREATE EXTENSION IF NOT EXISTS "uuid-ossp"; CREATE TYPE challenge_state AS ENUM ('pending', 'running', 'complete'); CREATE TABLE IF NOT EXISTS Users ( id uuid DEFAULT uuid_generate_v1() UNIQUE, email varchar(255) NOT NULL UNIQUE, password varchar(255) NOT NULL, name varchar(255) NOT NULL, PRIMARY KEY (id) ); CREATE TABLE IF NOT EXISTS Challenges ( id uuid DEFAULT uuid_generate_v1() UNIQUE, creator_id uuid REFERENCES Users(id) NOT NULL, challenger_id uuid REFERENCES Users(id) NOT NULL, state challenge_state NOT NULL DEFAULT 'pending', PRIMARY KEY (id) ); CREATE TABLE IF NOT EXISTS Tests ( challenge_id uuid REFERENCES Challenges(id) NOT NULL, name varchar(255) NOT NULL, time decimal, message varchar(255), failure boolean DEFAULT false, PRIMARY KEY (challenge_id, name) );
SELECT name, CASE WHEN SUM(revenue) > 14000 THEN 'high' WHEN sum(revenue) < 14000 AND sum(revenue) > 300 THEN 'average' ELSE 'low' END AS revenue FROM (SELECT name, CASE WHEN memid > 0 THEN membercost * slots ELSE guestcost * slots END AS revenue FROM cd.facilities AS f JOIN cd.bookings AS b ON f.facid = b.facid) AS s1 GROUP BY name ORDER BY sum(revenue) desc, name ;
--Write the SQL query that answers the question, below that comment. --Example question and answer ---- 0. Get all the users --SELECT * FROM customers; -- Tasks -- Get all customers and their addresses. SELECT "first_name", "last_name", "street", "city", "state", "zip" FROM "customers" JOIN "addresses" ON "customers"."id" = "addresses"."customer_id"; -- Get all orders and their line items (orders, quantity and product). SELECT * FROM "orders" JOIN "line_items" ON "line_items"."order_id" = "orders"."id" JOIN "products" ON "products"."id" = "line_items"."product_id"; -- Which warehouses have cheetos? SELECT "warehouse" FROM "products" JOIN "warehouse_product" ON "products"."id" = "warehouse_product"."product_id" JOIN "warehouse" ON "warehouse_product"."warehouse_id" = "warehouse"."id" WHERE "description" = 'cheetos'; delta -- Which warehouses have diet pepsi? SELECT "warehouse" FROM "products" JOIN "warehouse_product" ON "products"."id" = "warehouse_product"."product_id" JOIN "warehouse" ON "warehouse_product"."warehouse_id" = "warehouse"."id" WHERE "description" = 'diet pepsi'; alpha, delta, gamma -- Get the number of orders for each customer. NOTE: It is OK if those without orders are not included in results. -- THIS ONE IS KIND OF WRONG, FIX IT LATER! SELECT "first_name", COUNT("first_name") FROM "customers" JOIN "addresses" ON "addresses"."customer_id" = "customers"."id" JOIN "orders" ON "orders"."address_id" = "addresses"."id" GROUP BY "first_name"; -- How many customers do we have? SELECT COUNT("customers") FROM "customers"; -- How many products do we carry? SELECT COUNT("products") FROM "products"; -- What is the total available on-hand quantity of diet pepsi? SELECT SUM("on_hand") FROM "products" JOIN "warehouse_product" ON "products"."id" = "warehouse_product"."product_id" WHERE "description" = 'diet pepsi'; -- Stretch -- How much was the total cost for each order? -- How much has each customer spent in total? -- How much has each customer spent in total? Customers who have spent $0 should still show up in the table. It should say 0, not NULL (research coalesce).
/* ATIVIDADE 2.5 E 2.6 */ --VIEW --exe 01 CREATE OR REPLACE VIEW view_pedido AS SELECT num_pedido, cod_cliente, prazo_entrega FROM pedido --exe 02 CREATE OR REPLACE VIEW view_produto AS SELECT * FROM produto WHERE unidade = 'kg' --exe 03 CREATE OR REPLACE VIEW view_valor AS SELECT * FROM produto WHERE valor_unitario < ( SELECT AVG(valor_unitario) FROM produto) --exe 04 CREATE OR REPLACE VIEW view_valor AS SELECT v.cod_vendedor, v.nome_vendedor, COUNT(p.cod_vendedor) as Qtde_Vendas FROM vendedor v INNER JOIN pedido p ON p.cod_vendedor = v.cod_vendedor GROUP BY v.cod_vendedor, v.nome_vendedor; --SUBCONSULTAS -- exe 01 SELECT cidade FROM cliente WHERE nome_cliente <> 'Joao da Silva' AND cidade = ( SELECT cidade FROM cliente WHERE nome_cliente = 'Joao da Silva' ); -- exe 02 SELECT * FROM produto WHERE valor_unitario > ( SELECT AVG(valor_unitario) FROM produto ); -- exe 03 SELECT c.cod_cliente, c.nome_cliente FROM cliente c INNER JOIN pedido p ON p.cod_cliente = c.cod_cliente WHERE c.cod_cliente NOT IN ( SELECT cod_cliente FROM pedido p WHERE p.cod_vendedor <> 2 ); ----> --exe 04 SELECT cod_vendedor, nome_vendedor FROM vendedor WHERE cod_vendedor NOT IN( SELECT p.cod_vendedor FROM vendedor v, pedido p WHERE p.cod_vendedor = v.cod_vendedor GROUP BY p.cod_vendedor HAVING count(*) > 5 ); --exe 05 SELECT nome_vendedor FROM vendedor WHERE cod_vendedor NOT IN ( SELECT cod_vendedor FROM pedido WHERE to_char(prazo_entrega,'mm/yyyy') = '05/2017' ); --exe 06 SELECT v.nome_vendedor, v.cod_vendedor FROM vendedor v INNER JOIN pedido p ON p.cod_vendedor = v.cod_vendedor GROUP BY v.nome_vendedor, v.cod_vendedor HAVING COUNT(*) = ( SELECT MAX(COUNT(*)) FROM pedido GROUP BY cod_vendedor ); -- exe 07 SELECT c.nome_cliente, COUNT(num_pedido) AS total_pedidos FROM cliente c INNER JOIN pedido p ON p.cod_cliente = c.cod_cliente GROUP BY cod_cliente -- exe 08 DELETE FROM item_pedido WHERE num_pedido IN ( SELECT num_pedido FROM pedido WHERE cod_cliente = 2 ); -- exe 09 UPDATE produto SET valor_unitario = valor_unitario * 0.8 WHERE cod_produto NOT IN ( SELECT it.cod_produto FROM pedido p INNER JOIN item_pedido it ON it.num_pedido = p.num_pedido WHERE to_char(prazo_entrega, 'yyyy') = '2017' );
CREATE TABLE blogs( id SERIAL8 PRIMARY KEY, title TEXT, copy TEXT, mood TEXT, current_plaything TEXT, author TEXT, image TEXT ); INSERT INTO blogs (title, copy, mood, current_plaything, author, image) VALUES ('Post #1', 'This is the first post for testing.', 'confused', 'active record', 'Kriss', 'img here');
-- 11/10/2018 - More information for providers ALTER TABLE `providers` ADD `provider_type` INT(11) NULL DEFAULT 1 COMMENT '1 is Nha vuon, 2 is Cong ty, 3 is Thuong lai' AFTER `provider_address` ; ALTER TABLE `providers` ADD `company_name` VARCHAR(255) NULL AFTER `bank_account_number`; ALTER TABLE `providers` ADD `company_tax_code` VARCHAR(255) NULL AFTER `company_name`; ALTER TABLE `providers` ADD `company_address` VARCHAR(255) NULL AFTER `company_tax_code`; ALTER TABLE `providers` ADD `VAT_rate` INT(3) NULL COMMENT 'In percentage 5, 10, 15,..' AFTER `company_tax_code`; ALTER TABLE `inventory_import` ADD `has_invoice` TINYINT(1) NOT NULL DEFAULT '0' AFTER `total`; UPDATE `providers` SET `type` = 0 WHERE `type` = 'Trái cây'; UPDATE `providers` SET `type` = 2 WHERE `type` = 'Vật dụng'; ALTER TABLE `providers` CHANGE `type` `type` INT(10) NOT NULL DEFAULT 0 COMMENT '0 is Trai cay, 99 is Khac'; UPDATE `inventory_item_types` SET `type_name` = 'Vật dụng khác' WHERE `inventory_item_types`.`id` = 2; UPDATE `inventory_item_types` SET `type_name` = 'Máy móc trang thiết bị' WHERE `inventory_item_types`.`id` = 3; UPDATE `inventory_item_types` SET `type_name` = 'Vật dụng Takeaway' WHERE `inventory_item_types`.`id` = 4; UPDATE `inventory_item_types` SET `type_name` = 'Dụng cụ, vật dụng pha chế' WHERE `inventory_item_types`.`id` = 5; UPDATE `inventory_item_types` SET `type_name` = 'Vật dụng thủy tinh, nhựa khác' WHERE `inventory_item_types`.`id` = 9; INSERT INTO `inventory_item_types` (`id`, `type_code`, `type_name`, `is_fruit`, `created_dtm`, `modified_dtm`, `deleted`) VALUES (NULL, 'ANVAT', 'Kho hàng Ăn vặt', '0', NOW(), CURRENT_TIMESTAMP, '0')
select * from mysql.user; create user otavio identified by 'senha_usuario'; create user otavio@localhost identified by 'senha_usuario'; -- @ = at -- inicialmente, não há qualquer permissão show grants for otavio; -- grant all on nome_banco.nome_tabela; -- grant all on *.* grant all on hospital.doenca to otavio; grant all on *.* to otavio with grant option; -- db.* -- todas as tabelas do banco grant select (cpf, datanasc) on hospital.paciente to otavio@localhost; grant all on *.* to novo_usuario with grant option; -- dar ou retirar permissões de outros usuários grant all on *.* to otavio with grant option; show grants for otavio; /* revoke <privilegios> on <objetos> from <usuarios>; */ revoke all privileges on *.* from root@localhost; grant all privileges on *.* to root@localhost with grant option; revoke all privileges on *.* from otavio; DELETE FROM mysql.user WHERE user = 'otavio'; /* Crie os usuários: fulano, ciclano, beltrano e admin; */ create user fulano, ciclano, beltrano, admin identified by '1', '2', '3', '4'; -- confirmar se é possível definir senhas diferentes /* Fulano tem acesso a todas as tabelas, podendo conusltar, inserir, alterar e excluir dados */ grant select, insert, update, delete on empresa.* to fulano; show grants for fulano; /* Ciclano deve ter acesso somente à tabela funcionário. Ele pode consultar e inserir dados, mas não alterar ou excluir. */ grant select, insert on empresa.funcionario to ciclano; show grants for ciclano; /* Fulano e Ciclano ganham direito de visualização, inclusão e alteração na tabela departamento; */ grant select, insert on empresa.departamento to fulano, ciclano; /* Fulano ganha o direito de exclusão da tabela departamento */ grant drop on empresa.departamento to fulano; show grants for fulano; /* Admin tenta excluir a tabela departamento */ /* Root revoga o direito de todos os usuário (fulano, ciclano, beltrano e admin) */ revoke all on *.* from fulano, ciclano, beltrano, admin; -- não! revoke select, insert, drop on empresa.departamento from fulano; revoke select, insert, update, delete on empresa.* from fulano; revoke select, insert on empresa.departamento from ciclano; revoke select, insert on empresa.funcionario from ciclano; select * from mysql.user;
-------------------------------------------------------- -- File created - Thursday-January-23-2020 -------------------------------------------------------- -------------------------------------------------------- -- DDL for Function NEW_BATCH_TRANS_ID -------------------------------------------------------- CREATE OR REPLACE EDITIONABLE FUNCTION new_batch_trans_id ( in_batch_id IN NUMBER ) RETURN NUMBER AS vBatchTransId NUMBER(4); BEGIN SELECT MAX(batch_trans_id) INTO vBatchTransId FROM erp_gl_transaction WHERE batch_id = in_batch_id; vBatchTransId := NVL(vBatchTransId, 0) + 1; RETURN vBatchTransId; END; /
-- MySQL Script generated by MySQL Workbench -- Tue May 21 11:02:05 2019 -- 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 mydb -- ----------------------------------------------------- -- ----------------------------------------------------- -- Schema mydb -- ----------------------------------------------------- CREATE SCHEMA IF NOT EXISTS `mydb` DEFAULT CHARACTER SET utf8 ; USE `mydb` ; -- ----------------------------------------------------- -- Table `mydb`.`korisnik` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `mydb`.`korisnik` ( `ID_korisnik` INT NOT NULL, `username` VARCHAR(45) NOT NULL, `ime` VARCHAR(45) NOT NULL, `prezime` VARCHAR(45) NOT NULL, `email` VARCHAR(45) NOT NULL, `password` VARCHAR(45) NOT NULL, `admin` TINYINT NOT NULL, PRIMARY KEY (`ID_korisnik`)) ENGINE = InnoDB; -- ----------------------------------------------------- -- Table `mydb`.`kategorija` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `mydb`.`kategorija` ( `ID_kategorija` INT NOT NULL, `naziv` VARCHAR(100) NOT NULL, PRIMARY KEY (`ID_kategorija`)) ENGINE = InnoDB; -- ----------------------------------------------------- -- Table `mydb`.`proizvod` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `mydb`.`proizvod` ( `ID_proizvod` INT NOT NULL, `naziv` VARCHAR(45) NOT NULL, `slika` VARCHAR(100) NOT NULL, `cijena` DECIMAL(7,2) NOT NULL, `datum_objavljivanja` DATE NOT NULL, `opis` MEDIUMTEXT NOT NULL, `aktivan` TINYINT NOT NULL, `akcija` TINYINT NOT NULL, `kategorija_ID_kategorija` INT NOT NULL, `korisnik_ID_korisnik` INT NOT NULL, PRIMARY KEY (`ID_proizvod`), INDEX `fk_proizvod_kategorija_idx` (`kategorija_ID_kategorija` ASC), INDEX `fk_proizvod_korisnik1_idx` (`korisnik_ID_korisnik` ASC), CONSTRAINT `fk_proizvod_kategorija` FOREIGN KEY (`kategorija_ID_kategorija`) REFERENCES `mydb`.`kategorija` (`ID_kategorija`) ON DELETE NO ACTION ON UPDATE NO ACTION, CONSTRAINT `fk_proizvod_korisnik1` FOREIGN KEY (`korisnik_ID_korisnik`) REFERENCES `mydb`.`korisnik` (`ID_korisnik`) ON DELETE NO ACTION ON UPDATE NO ACTION) ENGINE = InnoDB; -- ----------------------------------------------------- -- Table `mydb`.`user` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `mydb`.`user` ( `username` VARCHAR(16) NOT NULL, `email` VARCHAR(255) NULL, `password` VARCHAR(32) NOT NULL, `create_time` TIMESTAMP NULL DEFAULT CURRENT_TIMESTAMP); -- ----------------------------------------------------- -- Table `mydb`.`adresa_korisnika` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `mydb`.`adresa_korisnika` ( `ID_adresa` INT NOT NULL, `ulica_i_broj` VARCHAR(15) NOT NULL, `postanski_br` VARCHAR(45) NOT NULL, `grad` VARCHAR(45) NOT NULL, `drzava` VARCHAR(45) NOT NULL, `korisnik_ID_korisnik` INT NOT NULL, PRIMARY KEY (`ID_adresa`), INDEX `fk_adresa_korisnika_korisnik1_idx` (`korisnik_ID_korisnik` ASC), CONSTRAINT `fk_adresa_korisnika_korisnik1` FOREIGN KEY (`korisnik_ID_korisnik`) REFERENCES `mydb`.`korisnik` (`ID_korisnik`) ON DELETE NO ACTION ON UPDATE NO ACTION) ENGINE = InnoDB; -- ----------------------------------------------------- -- Table `mydb`.`narudzba` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `mydb`.`narudzba` ( `ID_narudzba` INT NOT NULL, `datum_narudzbe` DATE NOT NULL, `sveukupna_cijena` DECIMAL(7,2) NOT NULL, `status` VARCHAR(45) NOT NULL, `korisnik_ID_korisnik` INT NOT NULL, `adresa_korisnika_ID_adresa` INT NOT NULL, PRIMARY KEY (`ID_narudzba`), INDEX `fk_narudzba_korisnik1_idx` (`korisnik_ID_korisnik` ASC), INDEX `fk_narudzba_adresa_korisnika1_idx` (`adresa_korisnika_ID_adresa` ASC), CONSTRAINT `fk_narudzba_korisnik1` FOREIGN KEY (`korisnik_ID_korisnik`) REFERENCES `mydb`.`korisnik` (`ID_korisnik`) ON DELETE NO ACTION ON UPDATE NO ACTION, CONSTRAINT `fk_narudzba_adresa_korisnika1` FOREIGN KEY (`adresa_korisnika_ID_adresa`) REFERENCES `mydb`.`adresa_korisnika` (`ID_adresa`) ON DELETE NO ACTION ON UPDATE NO ACTION) ENGINE = InnoDB; -- ----------------------------------------------------- -- Table `mydb`.`narudzba_proizvod` -- ----------------------------------------------------- CREATE TABLE IF NOT EXISTS `mydb`.`narudzba_proizvod` ( `narudzba_proizvod` VARCHAR(45) NOT NULL, `ukupna_cijena_stavke` DECIMAL(7,2) NOT NULL, `narudzba_ID_narudzba` INT NOT NULL, `proizvod_ID_proizvod` INT NOT NULL, INDEX `fk_narudzba_proizvod_narudzba1_idx` (`narudzba_ID_narudzba` ASC), INDEX `fk_narudzba_proizvod_proizvod1_idx` (`proizvod_ID_proizvod` ASC), CONSTRAINT `fk_narudzba_proizvod_narudzba1` FOREIGN KEY (`narudzba_ID_narudzba`) REFERENCES `mydb`.`narudzba` (`ID_narudzba`) ON DELETE RESTRICT ON UPDATE CASCADE, CONSTRAINT `fk_narudzba_proizvod_proizvod1` FOREIGN KEY (`proizvod_ID_proizvod`) REFERENCES `mydb`.`proizvod` (`ID_proizvod`) ON DELETE RESTRICT 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;
/******************************************************************************* * File Name: cyfittergnu.inc * * PSoC Creator 4.2 * * Description: * * This file is automatically generated by PSoC Creator. * ******************************************************************************** * Copyright (c) 2007-2018 Cypress Semiconductor. All rights reserved. * You may use this file only in accordance with the license, terms, conditions, * disclaimers, and limitations in the end user license agreement accompanying * the software package with which this file was provided. ********************************************************************************/ .ifndef INCLUDED_CYFITTERGNU_INC .set INCLUDED_CYFITTERGNU_INC, 1 .include "cydevicegnu_trm.inc" /* PWM */ .set PWM_cy_m0s8_tcpwm_1__CC, CYREG_TCPWM_CNT0_CC .set PWM_cy_m0s8_tcpwm_1__CC_BUFF, CYREG_TCPWM_CNT0_CC_BUFF .set PWM_cy_m0s8_tcpwm_1__COUNTER, CYREG_TCPWM_CNT0_COUNTER .set PWM_cy_m0s8_tcpwm_1__CTRL, CYREG_TCPWM_CNT0_CTRL .set PWM_cy_m0s8_tcpwm_1__INTR, CYREG_TCPWM_CNT0_INTR .set PWM_cy_m0s8_tcpwm_1__INTR_MASK, CYREG_TCPWM_CNT0_INTR_MASK .set PWM_cy_m0s8_tcpwm_1__INTR_MASKED, CYREG_TCPWM_CNT0_INTR_MASKED .set PWM_cy_m0s8_tcpwm_1__INTR_SET, CYREG_TCPWM_CNT0_INTR_SET .set PWM_cy_m0s8_tcpwm_1__PERIOD, CYREG_TCPWM_CNT0_PERIOD .set PWM_cy_m0s8_tcpwm_1__PERIOD_BUFF, CYREG_TCPWM_CNT0_PERIOD_BUFF .set PWM_cy_m0s8_tcpwm_1__STATUS, CYREG_TCPWM_CNT0_STATUS .set PWM_cy_m0s8_tcpwm_1__TCPWM_CMD, CYREG_TCPWM_CMD .set PWM_cy_m0s8_tcpwm_1__TCPWM_CMDCAPTURE_MASK, 0x01 .set PWM_cy_m0s8_tcpwm_1__TCPWM_CMDCAPTURE_SHIFT, 0 .set PWM_cy_m0s8_tcpwm_1__TCPWM_CMDRELOAD_MASK, 0x100 .set PWM_cy_m0s8_tcpwm_1__TCPWM_CMDRELOAD_SHIFT, 8 .set PWM_cy_m0s8_tcpwm_1__TCPWM_CMDSTART_MASK, 0x1000000 .set PWM_cy_m0s8_tcpwm_1__TCPWM_CMDSTART_SHIFT, 24 .set PWM_cy_m0s8_tcpwm_1__TCPWM_CMDSTOP_MASK, 0x10000 .set PWM_cy_m0s8_tcpwm_1__TCPWM_CMDSTOP_SHIFT, 16 .set PWM_cy_m0s8_tcpwm_1__TCPWM_CTRL, CYREG_TCPWM_CTRL .set PWM_cy_m0s8_tcpwm_1__TCPWM_CTRL_MASK, 0x01 .set PWM_cy_m0s8_tcpwm_1__TCPWM_CTRL_SHIFT, 0 .set PWM_cy_m0s8_tcpwm_1__TCPWM_INTR_CAUSE, CYREG_TCPWM_INTR_CAUSE .set PWM_cy_m0s8_tcpwm_1__TCPWM_INTR_CAUSE_MASK, 0x01 .set PWM_cy_m0s8_tcpwm_1__TCPWM_INTR_CAUSE_SHIFT, 0 .set PWM_cy_m0s8_tcpwm_1__TCPWM_NUMBER, 0 .set PWM_cy_m0s8_tcpwm_1__TR_CTRL0, CYREG_TCPWM_CNT0_TR_CTRL0 .set PWM_cy_m0s8_tcpwm_1__TR_CTRL1, CYREG_TCPWM_CNT0_TR_CTRL1 .set PWM_cy_m0s8_tcpwm_1__TR_CTRL2, CYREG_TCPWM_CNT0_TR_CTRL2 /* UART */ .set UART_rx__0__DM__MASK, 0x07 .set UART_rx__0__DM__SHIFT, 0 .set UART_rx__0__DR, CYREG_PRT3_DR .set UART_rx__0__HSIOM, CYREG_HSIOM_PORT_SEL3 .set UART_rx__0__HSIOM_GPIO, 0 .set UART_rx__0__HSIOM_I2C, 14 .set UART_rx__0__HSIOM_I2C_SCL, 14 .set UART_rx__0__HSIOM_MASK, 0x0000000F .set UART_rx__0__HSIOM_SHIFT, 0 .set UART_rx__0__HSIOM_SPI, 15 .set UART_rx__0__HSIOM_SPI_MOSI, 15 .set UART_rx__0__HSIOM_UART, 9 .set UART_rx__0__HSIOM_UART_RX, 9 .set UART_rx__0__INTCFG, CYREG_PRT3_INTCFG .set UART_rx__0__INTSTAT, CYREG_PRT3_INTSTAT .set UART_rx__0__MASK, 0x01 .set UART_rx__0__PA__CFG0, CYREG_UDB_PA3_CFG0 .set UART_rx__0__PA__CFG1, CYREG_UDB_PA3_CFG1 .set UART_rx__0__PA__CFG10, CYREG_UDB_PA3_CFG10 .set UART_rx__0__PA__CFG11, CYREG_UDB_PA3_CFG11 .set UART_rx__0__PA__CFG12, CYREG_UDB_PA3_CFG12 .set UART_rx__0__PA__CFG13, CYREG_UDB_PA3_CFG13 .set UART_rx__0__PA__CFG14, CYREG_UDB_PA3_CFG14 .set UART_rx__0__PA__CFG2, CYREG_UDB_PA3_CFG2 .set UART_rx__0__PA__CFG3, CYREG_UDB_PA3_CFG3 .set UART_rx__0__PA__CFG4, CYREG_UDB_PA3_CFG4 .set UART_rx__0__PA__CFG5, CYREG_UDB_PA3_CFG5 .set UART_rx__0__PA__CFG6, CYREG_UDB_PA3_CFG6 .set UART_rx__0__PA__CFG7, CYREG_UDB_PA3_CFG7 .set UART_rx__0__PA__CFG8, CYREG_UDB_PA3_CFG8 .set UART_rx__0__PA__CFG9, CYREG_UDB_PA3_CFG9 .set UART_rx__0__PC, CYREG_PRT3_PC .set UART_rx__0__PC2, CYREG_PRT3_PC2 .set UART_rx__0__PORT, 3 .set UART_rx__0__PS, CYREG_PRT3_PS .set UART_rx__0__SHIFT, 0 .set UART_rx__DR, CYREG_PRT3_DR .set UART_rx__INTCFG, CYREG_PRT3_INTCFG .set UART_rx__INTSTAT, CYREG_PRT3_INTSTAT .set UART_rx__MASK, 0x01 .set UART_rx__PA__CFG0, CYREG_UDB_PA3_CFG0 .set UART_rx__PA__CFG1, CYREG_UDB_PA3_CFG1 .set UART_rx__PA__CFG10, CYREG_UDB_PA3_CFG10 .set UART_rx__PA__CFG11, CYREG_UDB_PA3_CFG11 .set UART_rx__PA__CFG12, CYREG_UDB_PA3_CFG12 .set UART_rx__PA__CFG13, CYREG_UDB_PA3_CFG13 .set UART_rx__PA__CFG14, CYREG_UDB_PA3_CFG14 .set UART_rx__PA__CFG2, CYREG_UDB_PA3_CFG2 .set UART_rx__PA__CFG3, CYREG_UDB_PA3_CFG3 .set UART_rx__PA__CFG4, CYREG_UDB_PA3_CFG4 .set UART_rx__PA__CFG5, CYREG_UDB_PA3_CFG5 .set UART_rx__PA__CFG6, CYREG_UDB_PA3_CFG6 .set UART_rx__PA__CFG7, CYREG_UDB_PA3_CFG7 .set UART_rx__PA__CFG8, CYREG_UDB_PA3_CFG8 .set UART_rx__PA__CFG9, CYREG_UDB_PA3_CFG9 .set UART_rx__PC, CYREG_PRT3_PC .set UART_rx__PC2, CYREG_PRT3_PC2 .set UART_rx__PORT, 3 .set UART_rx__PS, CYREG_PRT3_PS .set UART_rx__SHIFT, 0 .set UART_SCB__BIST_CONTROL, CYREG_SCB1_BIST_CONTROL .set UART_SCB__BIST_DATA, CYREG_SCB1_BIST_DATA .set UART_SCB__CTRL, CYREG_SCB1_CTRL .set UART_SCB__EZ_DATA00, CYREG_SCB1_EZ_DATA00 .set UART_SCB__EZ_DATA01, CYREG_SCB1_EZ_DATA01 .set UART_SCB__EZ_DATA02, CYREG_SCB1_EZ_DATA02 .set UART_SCB__EZ_DATA03, CYREG_SCB1_EZ_DATA03 .set UART_SCB__EZ_DATA04, CYREG_SCB1_EZ_DATA04 .set UART_SCB__EZ_DATA05, CYREG_SCB1_EZ_DATA05 .set UART_SCB__EZ_DATA06, CYREG_SCB1_EZ_DATA06 .set UART_SCB__EZ_DATA07, CYREG_SCB1_EZ_DATA07 .set UART_SCB__EZ_DATA08, CYREG_SCB1_EZ_DATA08 .set UART_SCB__EZ_DATA09, CYREG_SCB1_EZ_DATA09 .set UART_SCB__EZ_DATA10, CYREG_SCB1_EZ_DATA10 .set UART_SCB__EZ_DATA11, CYREG_SCB1_EZ_DATA11 .set UART_SCB__EZ_DATA12, CYREG_SCB1_EZ_DATA12 .set UART_SCB__EZ_DATA13, CYREG_SCB1_EZ_DATA13 .set UART_SCB__EZ_DATA14, CYREG_SCB1_EZ_DATA14 .set UART_SCB__EZ_DATA15, CYREG_SCB1_EZ_DATA15 .set UART_SCB__EZ_DATA16, CYREG_SCB1_EZ_DATA16 .set UART_SCB__EZ_DATA17, CYREG_SCB1_EZ_DATA17 .set UART_SCB__EZ_DATA18, CYREG_SCB1_EZ_DATA18 .set UART_SCB__EZ_DATA19, CYREG_SCB1_EZ_DATA19 .set UART_SCB__EZ_DATA20, CYREG_SCB1_EZ_DATA20 .set UART_SCB__EZ_DATA21, CYREG_SCB1_EZ_DATA21 .set UART_SCB__EZ_DATA22, CYREG_SCB1_EZ_DATA22 .set UART_SCB__EZ_DATA23, CYREG_SCB1_EZ_DATA23 .set UART_SCB__EZ_DATA24, CYREG_SCB1_EZ_DATA24 .set UART_SCB__EZ_DATA25, CYREG_SCB1_EZ_DATA25 .set UART_SCB__EZ_DATA26, CYREG_SCB1_EZ_DATA26 .set UART_SCB__EZ_DATA27, CYREG_SCB1_EZ_DATA27 .set UART_SCB__EZ_DATA28, CYREG_SCB1_EZ_DATA28 .set UART_SCB__EZ_DATA29, CYREG_SCB1_EZ_DATA29 .set UART_SCB__EZ_DATA30, CYREG_SCB1_EZ_DATA30 .set UART_SCB__EZ_DATA31, CYREG_SCB1_EZ_DATA31 .set UART_SCB__I2C_CFG, CYREG_SCB1_I2C_CFG .set UART_SCB__I2C_CTRL, CYREG_SCB1_I2C_CTRL .set UART_SCB__I2C_M_CMD, CYREG_SCB1_I2C_M_CMD .set UART_SCB__I2C_S_CMD, CYREG_SCB1_I2C_S_CMD .set UART_SCB__I2C_STATUS, CYREG_SCB1_I2C_STATUS .set UART_SCB__INTR_CAUSE, CYREG_SCB1_INTR_CAUSE .set UART_SCB__INTR_I2C_EC, CYREG_SCB1_INTR_I2C_EC .set UART_SCB__INTR_I2C_EC_MASK, CYREG_SCB1_INTR_I2C_EC_MASK .set UART_SCB__INTR_I2C_EC_MASKED, CYREG_SCB1_INTR_I2C_EC_MASKED .set UART_SCB__INTR_M, CYREG_SCB1_INTR_M .set UART_SCB__INTR_M_MASK, CYREG_SCB1_INTR_M_MASK .set UART_SCB__INTR_M_MASKED, CYREG_SCB1_INTR_M_MASKED .set UART_SCB__INTR_M_SET, CYREG_SCB1_INTR_M_SET .set UART_SCB__INTR_RX, CYREG_SCB1_INTR_RX .set UART_SCB__INTR_RX_MASK, CYREG_SCB1_INTR_RX_MASK .set UART_SCB__INTR_RX_MASKED, CYREG_SCB1_INTR_RX_MASKED .set UART_SCB__INTR_RX_SET, CYREG_SCB1_INTR_RX_SET .set UART_SCB__INTR_S, CYREG_SCB1_INTR_S .set UART_SCB__INTR_S_MASK, CYREG_SCB1_INTR_S_MASK .set UART_SCB__INTR_S_MASKED, CYREG_SCB1_INTR_S_MASKED .set UART_SCB__INTR_S_SET, CYREG_SCB1_INTR_S_SET .set UART_SCB__INTR_SPI_EC, CYREG_SCB1_INTR_SPI_EC .set UART_SCB__INTR_SPI_EC_MASK, CYREG_SCB1_INTR_SPI_EC_MASK .set UART_SCB__INTR_SPI_EC_MASKED, CYREG_SCB1_INTR_SPI_EC_MASKED .set UART_SCB__INTR_TX, CYREG_SCB1_INTR_TX .set UART_SCB__INTR_TX_MASK, CYREG_SCB1_INTR_TX_MASK .set UART_SCB__INTR_TX_MASKED, CYREG_SCB1_INTR_TX_MASKED .set UART_SCB__INTR_TX_SET, CYREG_SCB1_INTR_TX_SET .set UART_SCB__RX_CTRL, CYREG_SCB1_RX_CTRL .set UART_SCB__RX_FIFO_CTRL, CYREG_SCB1_RX_FIFO_CTRL .set UART_SCB__RX_FIFO_RD, CYREG_SCB1_RX_FIFO_RD .set UART_SCB__RX_FIFO_RD_SILENT, CYREG_SCB1_RX_FIFO_RD_SILENT .set UART_SCB__RX_FIFO_STATUS, CYREG_SCB1_RX_FIFO_STATUS .set UART_SCB__RX_MATCH, CYREG_SCB1_RX_MATCH .set UART_SCB__SPI_CTRL, CYREG_SCB1_SPI_CTRL .set UART_SCB__SPI_STATUS, CYREG_SCB1_SPI_STATUS .set UART_SCB__SS0_POSISTION, 0 .set UART_SCB__SS1_POSISTION, 1 .set UART_SCB__SS2_POSISTION, 2 .set UART_SCB__SS3_POSISTION, 3 .set UART_SCB__STATUS, CYREG_SCB1_STATUS .set UART_SCB__TX_CTRL, CYREG_SCB1_TX_CTRL .set UART_SCB__TX_FIFO_CTRL, CYREG_SCB1_TX_FIFO_CTRL .set UART_SCB__TX_FIFO_STATUS, CYREG_SCB1_TX_FIFO_STATUS .set UART_SCB__TX_FIFO_WR, CYREG_SCB1_TX_FIFO_WR .set UART_SCB__UART_CTRL, CYREG_SCB1_UART_CTRL .set UART_SCB__UART_RX_CTRL, CYREG_SCB1_UART_RX_CTRL .set UART_SCB__UART_RX_STATUS, CYREG_SCB1_UART_RX_STATUS .set UART_SCB__UART_TX_CTRL, CYREG_SCB1_UART_TX_CTRL .set UART_SCB_IRQ__INTC_CLR_EN_REG, CYREG_CM0_ICER .set UART_SCB_IRQ__INTC_CLR_PD_REG, CYREG_CM0_ICPR .set UART_SCB_IRQ__INTC_MASK, 0x800 .set UART_SCB_IRQ__INTC_NUMBER, 11 .set UART_SCB_IRQ__INTC_PRIOR_MASK, 0xC0000000 .set UART_SCB_IRQ__INTC_PRIOR_NUM, 3 .set UART_SCB_IRQ__INTC_PRIOR_REG, CYREG_CM0_IPR2 .set UART_SCB_IRQ__INTC_SET_EN_REG, CYREG_CM0_ISER .set UART_SCB_IRQ__INTC_SET_PD_REG, CYREG_CM0_ISPR .set UART_SCBCLK__DIVIDER_MASK, 0x0000FFFF .set UART_SCBCLK__ENABLE, CYREG_CLK_DIVIDER_A00 .set UART_SCBCLK__ENABLE_MASK, 0x80000000 .set UART_SCBCLK__MASK, 0x80000000 .set UART_SCBCLK__REGISTER, CYREG_CLK_DIVIDER_A00 .set UART_tx__0__DM__MASK, 0x38 .set UART_tx__0__DM__SHIFT, 3 .set UART_tx__0__DR, CYREG_PRT3_DR .set UART_tx__0__HSIOM, CYREG_HSIOM_PORT_SEL3 .set UART_tx__0__HSIOM_GPIO, 0 .set UART_tx__0__HSIOM_I2C, 14 .set UART_tx__0__HSIOM_I2C_SDA, 14 .set UART_tx__0__HSIOM_MASK, 0x000000F0 .set UART_tx__0__HSIOM_SHIFT, 4 .set UART_tx__0__HSIOM_SPI, 15 .set UART_tx__0__HSIOM_SPI_MISO, 15 .set UART_tx__0__HSIOM_UART, 9 .set UART_tx__0__HSIOM_UART_TX, 9 .set UART_tx__0__INTCFG, CYREG_PRT3_INTCFG .set UART_tx__0__INTSTAT, CYREG_PRT3_INTSTAT .set UART_tx__0__MASK, 0x02 .set UART_tx__0__OUT_SEL, CYREG_UDB_PA3_CFG10 .set UART_tx__0__OUT_SEL_SHIFT, 2 .set UART_tx__0__OUT_SEL_VAL, -1 .set UART_tx__0__PA__CFG0, CYREG_UDB_PA3_CFG0 .set UART_tx__0__PA__CFG1, CYREG_UDB_PA3_CFG1 .set UART_tx__0__PA__CFG10, CYREG_UDB_PA3_CFG10 .set UART_tx__0__PA__CFG11, CYREG_UDB_PA3_CFG11 .set UART_tx__0__PA__CFG12, CYREG_UDB_PA3_CFG12 .set UART_tx__0__PA__CFG13, CYREG_UDB_PA3_CFG13 .set UART_tx__0__PA__CFG14, CYREG_UDB_PA3_CFG14 .set UART_tx__0__PA__CFG2, CYREG_UDB_PA3_CFG2 .set UART_tx__0__PA__CFG3, CYREG_UDB_PA3_CFG3 .set UART_tx__0__PA__CFG4, CYREG_UDB_PA3_CFG4 .set UART_tx__0__PA__CFG5, CYREG_UDB_PA3_CFG5 .set UART_tx__0__PA__CFG6, CYREG_UDB_PA3_CFG6 .set UART_tx__0__PA__CFG7, CYREG_UDB_PA3_CFG7 .set UART_tx__0__PA__CFG8, CYREG_UDB_PA3_CFG8 .set UART_tx__0__PA__CFG9, CYREG_UDB_PA3_CFG9 .set UART_tx__0__PC, CYREG_PRT3_PC .set UART_tx__0__PC2, CYREG_PRT3_PC2 .set UART_tx__0__PORT, 3 .set UART_tx__0__PS, CYREG_PRT3_PS .set UART_tx__0__SHIFT, 1 .set UART_tx__DR, CYREG_PRT3_DR .set UART_tx__INTCFG, CYREG_PRT3_INTCFG .set UART_tx__INTSTAT, CYREG_PRT3_INTSTAT .set UART_tx__MASK, 0x02 .set UART_tx__PA__CFG0, CYREG_UDB_PA3_CFG0 .set UART_tx__PA__CFG1, CYREG_UDB_PA3_CFG1 .set UART_tx__PA__CFG10, CYREG_UDB_PA3_CFG10 .set UART_tx__PA__CFG11, CYREG_UDB_PA3_CFG11 .set UART_tx__PA__CFG12, CYREG_UDB_PA3_CFG12 .set UART_tx__PA__CFG13, CYREG_UDB_PA3_CFG13 .set UART_tx__PA__CFG14, CYREG_UDB_PA3_CFG14 .set UART_tx__PA__CFG2, CYREG_UDB_PA3_CFG2 .set UART_tx__PA__CFG3, CYREG_UDB_PA3_CFG3 .set UART_tx__PA__CFG4, CYREG_UDB_PA3_CFG4 .set UART_tx__PA__CFG5, CYREG_UDB_PA3_CFG5 .set UART_tx__PA__CFG6, CYREG_UDB_PA3_CFG6 .set UART_tx__PA__CFG7, CYREG_UDB_PA3_CFG7 .set UART_tx__PA__CFG8, CYREG_UDB_PA3_CFG8 .set UART_tx__PA__CFG9, CYREG_UDB_PA3_CFG9 .set UART_tx__PC, CYREG_PRT3_PC .set UART_tx__PC2, CYREG_PRT3_PC2 .set UART_tx__PORT, 3 .set UART_tx__PS, CYREG_PRT3_PS .set UART_tx__SHIFT, 1 /* Clock */ .set Clock__DIVIDER_MASK, 0x0000FFFF .set Clock__ENABLE, CYREG_CLK_DIVIDER_C00 .set Clock__ENABLE_MASK, 0x80000000 .set Clock__MASK, 0x80000000 .set Clock__REGISTER, CYREG_CLK_DIVIDER_C00 /* Pin_LED */ .set Pin_LED__0__DM__MASK, 0x1C0000 .set Pin_LED__0__DM__SHIFT, 18 .set Pin_LED__0__DR, CYREG_PRT1_DR .set Pin_LED__0__HSIOM, CYREG_HSIOM_PORT_SEL1 .set Pin_LED__0__HSIOM_MASK, 0x0F000000 .set Pin_LED__0__HSIOM_SHIFT, 24 .set Pin_LED__0__INTCFG, CYREG_PRT1_INTCFG .set Pin_LED__0__INTSTAT, CYREG_PRT1_INTSTAT .set Pin_LED__0__MASK, 0x40 .set Pin_LED__0__OUT_SEL, CYREG_UDB_PA1_CFG10 .set Pin_LED__0__OUT_SEL_SHIFT, 12 .set Pin_LED__0__OUT_SEL_VAL, 2 .set Pin_LED__0__PA__CFG0, CYREG_UDB_PA1_CFG0 .set Pin_LED__0__PA__CFG1, CYREG_UDB_PA1_CFG1 .set Pin_LED__0__PA__CFG10, CYREG_UDB_PA1_CFG10 .set Pin_LED__0__PA__CFG11, CYREG_UDB_PA1_CFG11 .set Pin_LED__0__PA__CFG12, CYREG_UDB_PA1_CFG12 .set Pin_LED__0__PA__CFG13, CYREG_UDB_PA1_CFG13 .set Pin_LED__0__PA__CFG14, CYREG_UDB_PA1_CFG14 .set Pin_LED__0__PA__CFG2, CYREG_UDB_PA1_CFG2 .set Pin_LED__0__PA__CFG3, CYREG_UDB_PA1_CFG3 .set Pin_LED__0__PA__CFG4, CYREG_UDB_PA1_CFG4 .set Pin_LED__0__PA__CFG5, CYREG_UDB_PA1_CFG5 .set Pin_LED__0__PA__CFG6, CYREG_UDB_PA1_CFG6 .set Pin_LED__0__PA__CFG7, CYREG_UDB_PA1_CFG7 .set Pin_LED__0__PA__CFG8, CYREG_UDB_PA1_CFG8 .set Pin_LED__0__PA__CFG9, CYREG_UDB_PA1_CFG9 .set Pin_LED__0__PC, CYREG_PRT1_PC .set Pin_LED__0__PC2, CYREG_PRT1_PC2 .set Pin_LED__0__PORT, 1 .set Pin_LED__0__PS, CYREG_PRT1_PS .set Pin_LED__0__SHIFT, 6 .set Pin_LED__DR, CYREG_PRT1_DR .set Pin_LED__INTCFG, CYREG_PRT1_INTCFG .set Pin_LED__INTSTAT, CYREG_PRT1_INTSTAT .set Pin_LED__MASK, 0x40 .set Pin_LED__PA__CFG0, CYREG_UDB_PA1_CFG0 .set Pin_LED__PA__CFG1, CYREG_UDB_PA1_CFG1 .set Pin_LED__PA__CFG10, CYREG_UDB_PA1_CFG10 .set Pin_LED__PA__CFG11, CYREG_UDB_PA1_CFG11 .set Pin_LED__PA__CFG12, CYREG_UDB_PA1_CFG12 .set Pin_LED__PA__CFG13, CYREG_UDB_PA1_CFG13 .set Pin_LED__PA__CFG14, CYREG_UDB_PA1_CFG14 .set Pin_LED__PA__CFG2, CYREG_UDB_PA1_CFG2 .set Pin_LED__PA__CFG3, CYREG_UDB_PA1_CFG3 .set Pin_LED__PA__CFG4, CYREG_UDB_PA1_CFG4 .set Pin_LED__PA__CFG5, CYREG_UDB_PA1_CFG5 .set Pin_LED__PA__CFG6, CYREG_UDB_PA1_CFG6 .set Pin_LED__PA__CFG7, CYREG_UDB_PA1_CFG7 .set Pin_LED__PA__CFG8, CYREG_UDB_PA1_CFG8 .set Pin_LED__PA__CFG9, CYREG_UDB_PA1_CFG9 .set Pin_LED__PC, CYREG_PRT1_PC .set Pin_LED__PC2, CYREG_PRT1_PC2 .set Pin_LED__PORT, 1 .set Pin_LED__PS, CYREG_PRT1_PS .set Pin_LED__SHIFT, 6 /* Miscellaneous */ .set CYDEV_BCLK__HFCLK__HZ, 24000000 .set CYDEV_BCLK__HFCLK__KHZ, 24000 .set CYDEV_BCLK__HFCLK__MHZ, 24 .set CYDEV_BCLK__SYSCLK__HZ, 24000000 .set CYDEV_BCLK__SYSCLK__KHZ, 24000 .set CYDEV_BCLK__SYSCLK__MHZ, 24 .set CYDEV_BOOTLOADER_APPLICATIONS, 1 .set CYDEV_BOOTLOADER_CHECKSUM_BASIC, 0 .set CYDEV_BOOTLOADER_CHECKSUM_CRC, 1 .set CYDEV_BOOTLOADER_IO_COMP_CUSTOM_IO, 0 .set CyBtldr_Custom_Interface, CYDEV_BOOTLOADER_IO_COMP_CUSTOM_IO .set CYDEV_BOOTLOADER_IO_COMP_LAUNCHER_ONLY, 1 .set CyBtldr_LAUNCHER_ONLY, CYDEV_BOOTLOADER_IO_COMP_LAUNCHER_ONLY .set CYDEV_BOOTLOADER_IO_COMP_UART, 2 .set CyBtldr_UART, CYDEV_BOOTLOADER_IO_COMP_UART .set CYDEV_BOOTLOADER_IO_COMP, CYDEV_BOOTLOADER_IO_COMP_UART .set CYDEV_CHIP_DIE_LEOPARD, 1 .set CYDEV_CHIP_DIE_PSOC4A, 21 .set CYDEV_CHIP_DIE_PSOC5LP, 2 .set CYDEV_CHIP_DIE_PSOC5TM, 3 .set CYDEV_CHIP_DIE_TMA4, 4 .set CYDEV_CHIP_DIE_UNKNOWN, 0 .set CYDEV_CHIP_FAMILY_FM0P, 5 .set CYDEV_CHIP_FAMILY_FM3, 6 .set CYDEV_CHIP_FAMILY_FM4, 7 .set CYDEV_CHIP_FAMILY_PSOC3, 1 .set CYDEV_CHIP_FAMILY_PSOC4, 2 .set CYDEV_CHIP_FAMILY_PSOC5, 3 .set CYDEV_CHIP_FAMILY_PSOC6, 4 .set CYDEV_CHIP_FAMILY_UNKNOWN, 0 .set CYDEV_CHIP_FAMILY_USED, CYDEV_CHIP_FAMILY_PSOC4 .set CYDEV_CHIP_JTAG_ID, 0x04C81193 .set CYDEV_CHIP_MEMBER_3A, 1 .set CYDEV_CHIP_MEMBER_4A, 21 .set CYDEV_CHIP_MEMBER_4D, 16 .set CYDEV_CHIP_MEMBER_4E, 6 .set CYDEV_CHIP_MEMBER_4F, 22 .set CYDEV_CHIP_MEMBER_4G, 4 .set CYDEV_CHIP_MEMBER_4H, 20 .set CYDEV_CHIP_MEMBER_4I, 26 .set CYDEV_CHIP_MEMBER_4J, 17 .set CYDEV_CHIP_MEMBER_4K, 18 .set CYDEV_CHIP_MEMBER_4L, 25 .set CYDEV_CHIP_MEMBER_4M, 24 .set CYDEV_CHIP_MEMBER_4N, 11 .set CYDEV_CHIP_MEMBER_4O, 8 .set CYDEV_CHIP_MEMBER_4P, 23 .set CYDEV_CHIP_MEMBER_4Q, 14 .set CYDEV_CHIP_MEMBER_4R, 9 .set CYDEV_CHIP_MEMBER_4S, 12 .set CYDEV_CHIP_MEMBER_4T, 10 .set CYDEV_CHIP_MEMBER_4U, 5 .set CYDEV_CHIP_MEMBER_4V, 19 .set CYDEV_CHIP_MEMBER_4W, 13 .set CYDEV_CHIP_MEMBER_4X, 7 .set CYDEV_CHIP_MEMBER_4Y, 15 .set CYDEV_CHIP_MEMBER_5A, 3 .set CYDEV_CHIP_MEMBER_5B, 2 .set CYDEV_CHIP_MEMBER_6A, 27 .set CYDEV_CHIP_MEMBER_FM3, 31 .set CYDEV_CHIP_MEMBER_FM4, 32 .set CYDEV_CHIP_MEMBER_PDL_FM0P_TYPE1, 28 .set CYDEV_CHIP_MEMBER_PDL_FM0P_TYPE2, 29 .set CYDEV_CHIP_MEMBER_PDL_FM0P_TYPE3, 30 .set CYDEV_CHIP_MEMBER_UNKNOWN, 0 .set CYDEV_CHIP_MEMBER_USED, CYDEV_CHIP_MEMBER_4A .set CYDEV_CHIP_DIE_EXPECT, CYDEV_CHIP_MEMBER_USED .set CYDEV_CHIP_DIE_ACTUAL, CYDEV_CHIP_DIE_EXPECT .set CYDEV_CHIP_REV_LEOPARD_ES1, 0 .set CYDEV_CHIP_REV_LEOPARD_ES2, 1 .set CYDEV_CHIP_REV_LEOPARD_ES3, 3 .set CYDEV_CHIP_REV_LEOPARD_PRODUCTION, 3 .set CYDEV_CHIP_REV_PSOC4A_ES0, 17 .set CYDEV_CHIP_REV_PSOC4A_PRODUCTION, 17 .set CYDEV_CHIP_REV_PSOC5LP_ES0, 0 .set CYDEV_CHIP_REV_PSOC5LP_PRODUCTION, 0 .set CYDEV_CHIP_REV_PSOC5TM_ES0, 0 .set CYDEV_CHIP_REV_PSOC5TM_ES1, 1 .set CYDEV_CHIP_REV_PSOC5TM_PRODUCTION, 1 .set CYDEV_CHIP_REV_TMA4_ES, 17 .set CYDEV_CHIP_REV_TMA4_ES2, 33 .set CYDEV_CHIP_REV_TMA4_PRODUCTION, 17 .set CYDEV_CHIP_REVISION_3A_ES1, 0 .set CYDEV_CHIP_REVISION_3A_ES2, 1 .set CYDEV_CHIP_REVISION_3A_ES3, 3 .set CYDEV_CHIP_REVISION_3A_PRODUCTION, 3 .set CYDEV_CHIP_REVISION_4A_ES0, 17 .set CYDEV_CHIP_REVISION_4A_PRODUCTION, 17 .set CYDEV_CHIP_REVISION_4D_PRODUCTION, 0 .set CYDEV_CHIP_REVISION_4E_CCG2_NO_USBPD, 0 .set CYDEV_CHIP_REVISION_4E_PRODUCTION, 0 .set CYDEV_CHIP_REVISION_4F_PRODUCTION, 0 .set CYDEV_CHIP_REVISION_4F_PRODUCTION_256DMA, 0 .set CYDEV_CHIP_REVISION_4F_PRODUCTION_256K, 0 .set CYDEV_CHIP_REVISION_4G_ES, 17 .set CYDEV_CHIP_REVISION_4G_ES2, 33 .set CYDEV_CHIP_REVISION_4G_PRODUCTION, 17 .set CYDEV_CHIP_REVISION_4H_PRODUCTION, 0 .set CYDEV_CHIP_REVISION_4I_PRODUCTION, 0 .set CYDEV_CHIP_REVISION_4J_PRODUCTION, 0 .set CYDEV_CHIP_REVISION_4K_PRODUCTION, 0 .set CYDEV_CHIP_REVISION_4L_PRODUCTION, 0 .set CYDEV_CHIP_REVISION_4M_PRODUCTION, 0 .set CYDEV_CHIP_REVISION_4N_PRODUCTION, 0 .set CYDEV_CHIP_REVISION_4O_PRODUCTION, 0 .set CYDEV_CHIP_REVISION_4P_PRODUCTION, 0 .set CYDEV_CHIP_REVISION_4Q_PRODUCTION, 0 .set CYDEV_CHIP_REVISION_4R_PRODUCTION, 0 .set CYDEV_CHIP_REVISION_4S_PRODUCTION, 0 .set CYDEV_CHIP_REVISION_4T_PRODUCTION, 0 .set CYDEV_CHIP_REVISION_4U_PRODUCTION, 0 .set CYDEV_CHIP_REVISION_4V_PRODUCTION, 0 .set CYDEV_CHIP_REVISION_4W_PRODUCTION, 0 .set CYDEV_CHIP_REVISION_4X_PRODUCTION, 0 .set CYDEV_CHIP_REVISION_4Y_PRODUCTION, 0 .set CYDEV_CHIP_REVISION_5A_ES0, 0 .set CYDEV_CHIP_REVISION_5A_ES1, 1 .set CYDEV_CHIP_REVISION_5A_PRODUCTION, 1 .set CYDEV_CHIP_REVISION_5B_ES0, 0 .set CYDEV_CHIP_REVISION_5B_PRODUCTION, 0 .set CYDEV_CHIP_REVISION_6A_ES, 17 .set CYDEV_CHIP_REVISION_6A_NO_UDB, 33 .set CYDEV_CHIP_REVISION_6A_PRODUCTION, 33 .set CYDEV_CHIP_REVISION_FM3_PRODUCTION, 0 .set CYDEV_CHIP_REVISION_FM4_PRODUCTION, 0 .set CYDEV_CHIP_REVISION_PDL_FM0P_TYPE1_PRODUCTION, 0 .set CYDEV_CHIP_REVISION_PDL_FM0P_TYPE2_PRODUCTION, 0 .set CYDEV_CHIP_REVISION_PDL_FM0P_TYPE3_PRODUCTION, 0 .set CYDEV_CHIP_REVISION_USED, CYDEV_CHIP_REVISION_4A_PRODUCTION .set CYDEV_CHIP_REV_EXPECT, CYDEV_CHIP_REVISION_USED .set CYDEV_CONFIG_READ_ACCELERATOR, 1 .set CYDEV_CONFIG_UNUSED_IO_AllowButWarn, 0 .set CYDEV_CONFIG_UNUSED_IO, CYDEV_CONFIG_UNUSED_IO_AllowButWarn .set CYDEV_CONFIG_UNUSED_IO_AllowWithInfo, 1 .set CYDEV_CONFIG_UNUSED_IO_Disallowed, 2 .set CYDEV_CONFIGURATION_COMPRESSED, 1 .set CYDEV_CONFIGURATION_MODE_COMPRESSED, 0 .set CYDEV_CONFIGURATION_MODE, CYDEV_CONFIGURATION_MODE_COMPRESSED .set CYDEV_CONFIGURATION_MODE_DMA, 2 .set CYDEV_CONFIGURATION_MODE_UNCOMPRESSED, 1 .set CYDEV_DEBUG_PROTECT_KILL, 4 .set CYDEV_DEBUG_PROTECT_OPEN, 1 .set CYDEV_DEBUG_PROTECT, CYDEV_DEBUG_PROTECT_OPEN .set CYDEV_DEBUG_PROTECT_PROTECTED, 2 .set CYDEV_DEBUGGING_DPS_Disable, 3 .set CYDEV_DEBUGGING_DPS_SWD, 2 .set CYDEV_DEBUGGING_DPS, CYDEV_DEBUGGING_DPS_SWD .set CYDEV_DEBUGGING_ENABLE, 1 .set CYDEV_DFT_SELECT_CLK0, 1 .set CYDEV_DFT_SELECT_CLK1, 2 .set CYDEV_HEAP_SIZE, 0x0100 .set CYDEV_IMO_TRIMMED_BY_USB, 0 .set CYDEV_IMO_TRIMMED_BY_WCO, 0 .set CYDEV_IS_EXPORTING_CODE, 0 .set CYDEV_IS_IMPORTING_CODE, 0 .set CYDEV_PROJ_TYPE, 1 .set CYDEV_PROJ_TYPE_BOOTLOADER, 1 .set CYDEV_PROJ_TYPE_LAUNCHER, 5 .set CYDEV_PROJ_TYPE_LOADABLE, 2 .set CYDEV_PROJ_TYPE_LOADABLEANDBOOTLOADER, 4 .set CYDEV_PROJ_TYPE_MULTIAPPBOOTLOADER, 3 .set CYDEV_PROJ_TYPE_STANDARD, 0 .set CYDEV_STACK_SIZE, 0x0400 .set CYDEV_USE_BUNDLED_CMSIS, 1 .set CYDEV_VARIABLE_VDDA, 1 .set CYDEV_VDDA_MV, 3300 .set CYDEV_VDDD_MV, 3300 .set CYDEV_WDT_GENERATE_ISR, 0 .set CYIPBLOCK_M0S8_CTBM_VERSION, 0 .set CYIPBLOCK_m0s8cpuss_VERSION, 0 .set CYIPBLOCK_m0s8csd_VERSION, 0 .set CYIPBLOCK_m0s8gpio2_VERSION, 0 .set CYIPBLOCK_m0s8hsiom4a_VERSION, 0 .set CYIPBLOCK_m0s8lcd_VERSION, 0 .set CYIPBLOCK_m0s8lpcomp_VERSION, 0 .set CYIPBLOCK_m0s8pclk_VERSION, 0 .set CYIPBLOCK_m0s8sar_VERSION, 0 .set CYIPBLOCK_m0s8scb_VERSION, 0 .set CYIPBLOCK_m0s8srssv2_VERSION, 1 .set CYIPBLOCK_m0s8tcpwm_VERSION, 0 .set CYIPBLOCK_m0s8udbif_VERSION, 0 .set CYIPBLOCK_S8_GPIO_VERSION, 2 .set CYDEV_BOOTLOADER_ENABLE, 1 .endif
if not exists(select * from sys.objects where name = 'PK_PopularProducts') ALTER TABLE prod.PopularProducts ADD CONSTRAINT PK_PopularProducts PRIMARY KEY CLUSTERED ( PopularType, ProductId ) WITH( STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON) ON [PRIMARY]
-- SELECT sum(assignment_submissions.duration) from assignment_submissions JOIN students ON students.id = student_id WHERE name = 'Ibrahim Schimmel'; SELECT sum(duration) as total_duration FROM assignment_submissions JOIN students on students.id=student_id JOIN cohorts on cohorts.id=cohort_id WHERE cohorts.name ='FEB12';
CREATE TABLE rates ( id uuid NOT NULL DEFAULT uuid_generate_v4(), name VARCHAR NOT NULL, quantity INTEGER NOT NULL, unit_price FLOAT NOT NULL, rate_type_uuid uuid NOT NULL, reservation_uuid uuid NOT NULL, CONSTRAINT rates_pkey PRIMARY KEY (id) );
USE 1_a; DROP TABLE IF EXISTS orders; CREATE TABLE orders ( `price` INT(50), `productname` VARCHAR(60), `id` INT(50),
update promo.RuleDomains set Metadata.modify('delete /EntitiesMetadata/Entities[EntityName/text()="p"]/Attributes[Name/text()="CategoryId" or Name/text()="ProductId"]') where Id = 2
CREATE DATABASE mattermost; CREATE USER mmuser WITH PASSWORD 'mmuser_password'; GRANT ALL PRIVILEGES ON DATABASE mattermost to mmuser;
CREATE TABLE [oms].[reprogramaciones_orden] ( [id_orden] BIGINT NOT NULL, [id_causal_reprogramacion] BIGINT NOT NULL, [fecha_sugerida_minima] DATE NOT NULL, [fecha_sugerida_maxima] DATE NOT NULL, [hora_sugerida_minima] TIME (0) NOT NULL, [hora_sugerida_maxima] TIME (0) NOT NULL, [requiere_transporte] BIT NOT NULL, [id_ciudad] BIGINT NULL, [direccion] VARCHAR (150) NOT NULL, [indicaciones] VARCHAR (150) NOT NULL, [autorizado_entrega_numero_identificacion] VARCHAR (20) NOT NULL, [autorizado_entrega_nombres] VARCHAR (100) NOT NULL, [requiere_agendamiento] BIT NOT NULL, [requiere_recaudo] BIT NOT NULL, [notas_realizacion] VARCHAR (200) NOT NULL, [fecha_realizacion] DATETIME2 (0) NULL, [usuario_realizacion] VARCHAR (50) NOT NULL, [fecha_creacion] DATETIME2 (0) NOT NULL, [usuario_creacion] VARCHAR (50) NOT NULL, [fecha_actualizacion] DATETIME2 (0) NOT NULL, [usuario_actualizacion] VARCHAR (50) NOT NULL, CONSTRAINT [PK_ordenes_reprogramacion] PRIMARY KEY CLUSTERED ([id_orden] ASC) ON [INDEXES], CONSTRAINT [FK_reprogramaciones_orden_causales_reprogramacion_orden] FOREIGN KEY ([id_causal_reprogramacion]) REFERENCES [oms].[causales_reprogramacion_orden] ([id_causal_reprogramacion]), CONSTRAINT [FK_reprogramaciones_orden_ciudades] FOREIGN KEY ([id_ciudad]) REFERENCES [geo].[ciudades] ([id_ciudad]), CONSTRAINT [FK_reprogramaciones_orden_ordenes] FOREIGN KEY ([id_orden]) REFERENCES [oms].[ordenes] ([id_orden]) );
ALTER TABLE COMM_BATCH_CORRESP_DETAIL DROP CONSTRAINT UQ_COMM_BATCH_CORRESP_ID /
-- -- @(#) dbcreate/cffbpfl/mysql/crsp_delete_secgrp.mysql -- -- net.sourceforge.MssCF.CFFBPfl -- -- Copyright (c) 2018 Mark Stephen Sobkow -- -- Licensed under the Apache License, Version 2.0 (the "License"); -- you may not use this file except in compliance with the License. -- You may obtain a copy of the License at -- -- http://www.apache.org/licenses/LICENSE-2.0 -- -- Unless required by applicable law or agreed to in writing, software -- distributed under the License is distributed on an "AS IS" BASIS, -- WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -- See the License for the specific language governing permissions and -- limitations under the License. -- -- Manufactured by MSS Code Factory 2.10 -- delimiter //// create procedure cffbpf211.sp_delete_secgrp( argAuditClusterId bigint, argAuditUserId varchar(36), argAuditSessionId varchar(36), secClusterId bigint, secTenantId bigint, argClusterId bigint, argSecGroupId integer, argRevision int ) not deterministic modifies sql data begin declare RowsAffected bigint; declare oldClusterId bigint; declare oldSecGroupId integer; declare oldName varchar(64); declare oldIsVisible boolean; declare oldRevision int; declare permissionFlag boolean; declare isSystemUser boolean; declare done int default false; declare delsecgroupformsClusterId bigint; declare delsecgroupformsSecGroupFormId bigint; declare delsecgrpincbygroupClusterId bigint; declare delsecgrpincbygroupSecGrpIncId bigint; declare delsecgrpmembsClusterId bigint; declare delsecgrpmembsSecGrpMembId bigint; declare delsecgrpincsClusterId bigint; declare delsecgrpincsSecGrpIncId bigint; declare cur_delsecgroupforms cursor for select sgfm.clusid, sgfm.secgrpfrmid from cffbpf211.SecGrp as sgrp inner join cffbpf211.SecGrpFrm sgfm on sgrp.clusterid = sgfm.clusid and sgrp.secgroupid = sgfm.secgrpid where sgrp.clusterid = argClusterId and sgrp.secgroupid = argSecGroupId; declare cur_delsecgrpincbygroup cursor for select sgnc.clusid, sgnc.secgrpincid from cffbpf211.SecGrp as sgrp inner join cffbpf211.SecInc sgnc on sgrp.clusterid = sgnc.clusid and sgrp.secgroupid = sgnc.incgrpid where sgrp.clusterid = argClusterId and sgrp.secgroupid = argSecGroupId; declare cur_delsecgrpmembs cursor for select sgmb.clusterid, sgmb.secgrpmembid from cffbpf211.SecGrp as sgrp inner join cffbpf211.SecMemb sgmb on sgrp.clusterid = sgmb.clusterid and sgrp.secgroupid = sgmb.secgroupid where sgrp.clusterid = argClusterId and sgrp.secgroupid = argSecGroupId; declare cur_delsecgrpincs cursor for select sgnc.clusid, sgnc.secgrpincid from cffbpf211.SecGrp as sgrp inner join cffbpf211.SecInc sgnc on sgrp.clusterid = sgnc.clusid and sgrp.secgroupid = sgnc.secgrpid where sgrp.clusterid = argClusterId and sgrp.secgroupid = argSecGroupId; declare continue handler for not found set done = true; select ClusterId, SecGroupId, safe_name, IsVisible, revision into oldClusterId, oldSecGroupId, oldName, oldIsVisible, oldRevision from cffbpf211.SecGrp where ClusterId = argClusterId and SecGroupId = argSecGroupId for update; if( oldClusterId != secClusterId ) then select cffbpf211.sp_is_system_user( argAuditUserId ) into permissionFlag; if( permissionFlag = false ) then signal sqlstate '45001' set message_text = 'sp_delete_secgrp() Permission denied, not identified as system', schema_name = 'cffbpf211', table_name = 'SecGrp'; end if; end if; select cffbpf211.sp_is_cluster_user( oldClusterId, 'DeleteSecGroup', argAuditUserId ), cffbpf211.sp_is_system_user( argAuditUserId ) into permissionFlag, isSystemUser; if( ( permissionFlag = false ) and ( isSystemUser = false ) ) then signal sqlstate '45002' set message_text = 'sp_delete_secgrp() Permission denied, not granted access to DeleteSecGroup for current Cluster', schema_name = 'cffbpf211', table_name = 'SecGrp'; end if; insert into cffbpf211.SecGrp_h ( clusterid, secgroupid, auditclusterid, auditsessionid, auditstamp, safe_name, isvisible, revision, auditaction ) select sgrp.clusterid, sgrp.secgroupid, argAuditClusterId, argAuditSessionId, now(), sgrp.safe_name, sgrp.isvisible, sgrp.revision + 1, 3 from cffbpf211.SecGrp as sgrp where sgrp.clusterid = argClusterId and sgrp.secgroupid = argSecGroupId; set done = false; open cur_delsecgroupforms; read_loop_delsecgroupforms: loop fetch cur_delsecgroupforms into delsecgroupformsClusterId, delsecgroupformsSecGroupFormId; if done then leave read_loop_delsecgroupforms; end if; call cffbpf211.sp_delete_secgrpfrm_by_ididx( argAuditClusterId, argAuditUserId, argAuditSessionId, secClusterId, secTenantId, delsecgroupformsClusterId, delsecgroupformsSecGroupFormId ); end loop; close cur_delsecgroupforms; set done = false; open cur_delsecgrpincbygroup; read_loop_delsecgrpincbygroup: loop fetch cur_delsecgrpincbygroup into delsecgrpincbygroupClusterId, delsecgrpincbygroupSecGrpIncId; if done then leave read_loop_delsecgrpincbygroup; end if; call cffbpf211.sp_delete_secinc_by_ididx( argAuditClusterId, argAuditUserId, argAuditSessionId, secClusterId, secTenantId, delsecgrpincbygroupClusterId, delsecgrpincbygroupSecGrpIncId ); end loop; close cur_delsecgrpincbygroup; set done = false; open cur_delsecgrpmembs; read_loop_delsecgrpmembs: loop fetch cur_delsecgrpmembs into delsecgrpmembsClusterId, delsecgrpmembsSecGrpMembId; if done then leave read_loop_delsecgrpmembs; end if; call cffbpf211.sp_delete_secmemb_by_ididx( argAuditClusterId, argAuditUserId, argAuditSessionId, secClusterId, secTenantId, delsecgrpmembsClusterId, delsecgrpmembsSecGrpMembId ); end loop; close cur_delsecgrpmembs; set done = false; open cur_delsecgrpincs; read_loop_delsecgrpincs: loop fetch cur_delsecgrpincs into delsecgrpincsClusterId, delsecgrpincsSecGrpIncId; if done then leave read_loop_delsecgrpincs; end if; call cffbpf211.sp_delete_secinc_by_ididx( argAuditClusterId, argAuditUserId, argAuditSessionId, secClusterId, secTenantId, delsecgrpincsClusterId, delsecgrpincsSecGrpIncId ); end loop; close cur_delsecgrpincs; delete from cffbpf211.SecGrp where clusterid = argClusterId and secgroupid = argSecGroupId; select row_count() into RowsAffected; if RowsAffected != 1 and RowsAffected != 0 then signal sqlstate '45000' set message_text = 'sp_delete_secgrp() Expected to affect 1 SecGrp', schema_name = 'cffbpf211', table_name = 'SecGrp'; end if; end;////
CREATE PROCEDURE [DW].[usp_Dashboard-ActualVBudgetedExpense] @StartCalendarMonth INT , @StartCalendarYear INT , @NumberOfMonths INT , @EntityCSVList NVARCHAR(20) AS WITH Calendar AS ( SELECT DISTINCT TOP (@NumberOfMonths) CalendarYear , CalendarMonth FROM DW.DimDate WHERE ActualDate >= CONVERT(DATE, CONVERT(VARCHAR(2), @StartCalendarMonth) + '/1/' + CONVERT(VARCHAR(4), @StartCalendarYear) ) ), Actuals AS ( SELECT DimDate.CalendarYear , DimDate.CalendarMonth , DimEntity.Code AS EntityCode , SUM(FactExpense.Amount) AS Amount FROM DW.FactExpense INNER JOIN DW.DimDate ON FactExpense.DateID = DimDate.DateID INNER JOIN DW.DimEntity ON FactExpense.EntityID = DimEntity.EntityID AND FactExpense.TenantID = DimEntity.TenantID INNER JOIN DW.DimFinancialCategory ON FactExpense.FinancialCategoryID = DimFinancialCategory.FinancialCategoryID AND FactExpense.TenantID = DimFinancialCategory.TenantID INNER JOIN Calendar ON DimDate.CalendarYear = Calendar.CalendarYear AND DimDate.CalendarMonth = Calendar.CalendarMonth WHERE ( DimEntity.Code IN ('HCA') OR --HBC only reports fund 025 (DimEntity.Code = 'HBC' AND DimFinancialCategory.FundCode = '025') OR --HBF Is now only fund 025 (DimEntity.Code = 'HBF' AND DimFinancialCategory.FundCode = '025') OR --WITW excludes funds 084 and 088 (DimEntity.Code = 'WITW' AND DimFinancialCategory.FundCode NOT IN ('084','088') ) ) AND DimEntity.Code IN (SELECT Item FROM dbo.fnSplit( @EntityCSVList, ',')) GROUP BY DimDate.CalendarYear , DimDate.CalendarMonth , DimEntity.Code ) , Budgeted AS ( SELECT FactBudgetExpense.BudgetYear AS CalendarYear , FactBudgetExpense.BudgetMonth AS CalendarMonth , DimEntity.Code AS EntityCode , SUM(FactBudgetExpense.Amount) AS Amount FROM DW.FactBudgetExpense INNER JOIN DW.DimEntity ON FactBudgetExpense.EntityID = DimEntity.EntityID AND FactBudgetExpense.TenantID = DimEntity.TenantID INNER JOIN DW.DimFinancialCategory ON FactBudgetExpense.FinancialCategoryID = DimFinancialCategory.FinancialCategoryID AND FactBudgetExpense.TenantID = DimFinancialCategory.TenantID INNER JOIN Calendar ON FactBudgetExpense.BudgetYear = Calendar.CalendarYear AND FactBudgetExpense.BudgetMonth = Calendar.CalendarMonth WHERE ( DimEntity.Code IN ('HCA') OR --HBC only reports fund 025 (DimEntity.Code = 'HBC' AND DimFinancialCategory.FundCode = '025') OR --HBF Is now only fund 025 (DimEntity.Code = 'HBF' AND DimFinancialCategory.FundCode = '025') OR --WITW excludes funds 084 and 088 (DimEntity.Code = 'WITW' AND DimFinancialCategory.FundCode NOT IN ('084','088') ) ) AND DimEntity.Code IN (SELECT Item FROM dbo.fnSplit( @EntityCSVList, ',')) GROUP BY FactBudgetExpense.BudgetYear , FactBudgetExpense.BudgetMonth , DimEntity.Code ) SELECT ROW_NUMBER() OVER (ORDER BY ISNULL(Actuals.EntityCode, Budgeted.EntityCode) , ISNULL(Actuals.CalendarYear, Budgeted.CalendarYear) , ISNULL(Actuals.CalendarMonth, Budgeted.CalendarMonth) ) AS RowNum , ISNULL(Actuals.EntityCode, Budgeted.EntityCode) AS EntityCode , ISNULL(Actuals.CalendarYear, Budgeted.CalendarYear) AS CalendarYear , ISNULL(Actuals.CalendarMonth, Budgeted.CalendarMonth) AS CalendarMonth , SUM(ISNULL(Budgeted.Amount, 0)) AS BudgetAmount , SUM(ISNULL(Actuals.Amount, 0)) AS ActualAmount FROM Actuals FULL OUTER JOIN Budgeted ON Actuals.EntityCode = Budgeted.EntityCode AND Actuals.CalendarMonth = Budgeted.CalendarMonth AND Actuals.CalendarYear = Budgeted.CalendarYear GROUP BY ISNULL(Actuals.EntityCode, Budgeted.EntityCode) , ISNULL(Actuals.CalendarYear, Budgeted.CalendarYear) , ISNULL(Actuals.CalendarMonth, Budgeted.CalendarMonth) ORDER BY 1,2,3 RETURN 0
CREATE TABLE materials ( position VARCHAR(10) NOT NULL CONSTRAINT pk_material PRIMARY KEY, name VARCHAR(255) NOT NULL, price_per_unit DOUBLE PRECISION NOT NULL, is_metal BOOLEAN NOT NULL );
SELECT destination_airport, first_class_rev, coach_rev, (first_class_rev *.008)::integer as flights FROM tutorial.flight_revenue ORDER BY 4 DESC
CREATE TABLE IF NOT EXISTS COUNTRIES ( id INTEGER NULL PRIMARY KEY AUTOINCREMENT, name CHAR(30) NULL); CREATE TABLE IF NOT EXISTS STATES ( id INTEGER NULL PRIMARY KEY AUTOINCREMENT, id_country INTEGER NULL, name CHAR(25) NULL); CREATE TABLE IF NOT EXISTS TOWNS ( id INTEGER NULL PRIMARY KEY AUTOINCREMENT, id_state INTEGER NULL, name CHAR(25) NULL); CREATE TABLE IF NOT EXISTS CLIENTS ( id INTEGER NULL PRIMARY KEY AUTOINCREMENT, id_state INTEGER NULL, name CHAR(25) NULL, phone CHAR(20) NULL, -- | cellphone CHAR(20) NULL, -- | - one of this must be set mail CHAR(50) NULL, -- | street CHAR(50) NULL, house_nro CHAR(4) NULL, post_code CHAR(4) NULL); CREATE TABLE IF NOT EXISTS INVOICES ( id INTEGER NULL PRIMARY KEY AUTOINCREMENT, id_client INTEGER NULL, inv_type CHAR(1) NULL, -- invoice type ( A - B - C ...) inv_date DATE NULL, balance REAL NULL DEFAULT 0.0, sub_total REAL NULL, tax REAL NULL, total REAL NULL); CREATE TABLE IF NOT EXISTS RECEIPT ( id INTEGER NULL PRIMARY KEY AUTOINCREMENT, id_client INTEGER NULL, id_invoice INTEGER NULL, rec_date DATE NULL, total REAL NULL); CREATE TABLE IF NOT EXISTS TRAVELS ( id INTEGER NULL PRIMARY KEY AUTOINCREMENT, id_client INTEGER NULL, sta_date DATE NULL, -- date when the transport begins his journy fin_date DATE NULL, -- date where the burden was delivered ended BOOLEAN NULL DEFAULT FALSE, canceled BOOLEAN NULL DEFAULT FALSE); CREATE TABLE IF NOT EXISTS TRAVELS_DESTINATIONS ( id INTEGER NULL PRIMARY KEY AUTOINCREMENT, id_travel INTEGER NULL, id_destination INTEGER NULL); CREATE TABLE IF NOT EXISTS DESTINATIONS ( id INTEGER NULL PRIMARY KEY AUTOINCREMENT, id_driver INTEGER NULL, id_vehicle INTEGER NULL, id_state INTEGER NULL, arrival_date DATE NULL, street CHAR(50) NULL, house_nro CHAR(4) NULL, post_code CHAR(4) NULL); CREATE TABLE IF NOT EXISTS BURDENS ( id INTEGER NULL PRIMARY KEY AUTOINCREMENT, id_burden_type INTEGER NULL, id_destination INTEGER NULL, amount INT(6) NULL, weight_per_unit REAL NULL, width REAL NULL, bur_length REAL NULL, height REAL NULL); CREATE TABLE IF NOT EXISTS BURDEN_TYPES ( id INTEGER NULL PRIMARY KEY AUTOINCREMENT, name CHAR(20) NULL); CREATE TABLE IF NOT EXISTS DRIVERS ( id INTEGER NULL PRIMARY KEY AUTOINCREMENT, id_state INTEGER NULL, name CHAR(15) NULL, lic_nro CHAR(20) NULL, lic_caducity_date DATE NULL, phone CHAR(20) NULL, -- | cellphone CHAR(20) NULL, -- | - one of this must be set mail CHAR(50) NULL, -- | street CHAR(50) NULL, house_nro CHAR(4) NULL, post_code CHAR(4) NULL, blocked BOOLEAN NULL DEFAULT FALSE, nro_travels INTEGER NULL DEFAULT 0); CREATE TABLE IF NOT EXISTS PAYED_COMMISSIONS ( id INTEGER NULL PRIMARY KEY AUTOINCREMENT, id_driver INTEGER NULL, id_invoice INTEGER NULL, pay_com_date DATE NULL, total REAL NULL); CREATE TABLE IF NOT EXISTS BRANDS ( id INTEGER NULL PRIMARY KEY AUTOINCREMENT, name CHAR(20) NULL); CREATE TABLE IF NOT EXISTS MODELS ( id INTEGER NULL PRIMARY KEY AUTOINCREMENT, id_brand INTEGER NULL, name CHAR(20) NULL); CREATE TABLE IF NOT EXISTS VEHICLES ( id INTEGER NULL PRIMARY KEY AUTOINCREMENT, id_type_vehicle INTEGER NULL, id_model INTEGER NULL, name CHAR(25) NULL, max_weight CHAR(25) NULL, vin CHAR(25) NULL, -- vehicule identification number vin_cad_date DATE NULL, -- vin caducity year CHAR(4) NULL, blocked BOOLEAN NULL DEFAULT FALSE); CREATE TABLE IF NOT EXISTS VEHICLE_TYPES ( id INTEGER NULL PRIMARY KEY AUTOINCREMENT, name CHAR(20) NULL); CREATE TABLE IF NOT EXISTS DRIVERS_VEHICLES ( id INTEGER NULL PRIMARY KEY AUTOINCREMENT, id_driver INTEGER NULL, id_vehicle INTEGER NULL); ---------------------------------------------------------------------- -- Inserts ---------------------------------------------------------------------- -- States ---------------------------------------------------------------------- INSERT INTO states (id, name) VALUES (1, "buenos_aires"); INSERT INTO states (id, name) VALUES (2, "catamarca"); INSERT INTO states (id, name) VALUES (3, "chaco"); INSERT INTO states (id, name) VALUES (4, "chubut"); INSERT INTO states (id, name) VALUES (5, "cordoba"); INSERT INTO states (id, name) VALUES (6, "corrientes"); INSERT INTO states (id, name) VALUES (7, "entre_ríos"); INSERT INTO states (id, name) VALUES (8, "formosa"); INSERT INTO states (id, name) VALUES (9, "jujuy"); INSERT INTO states (id, name) VALUES (10, "la_pampa"); INSERT INTO states (id, name) VALUES (11, "la_rioja"); INSERT INTO states (id, name) VALUES (12, "mendoza"); INSERT INTO states (id, name) VALUES (13, "misiones"); INSERT INTO states (id, name) VALUES (14, "neuquen"); INSERT INTO states (id, name) VALUES (15, "rio_negro"); INSERT INTO states (id, name) VALUES (16, "salta"); INSERT INTO states (id, name) VALUES (17, "san_juan"); INSERT INTO states (id, name) VALUES (18, "san_luis"); INSERT INTO states (id, name) VALUES (19, "santa_cruz"); INSERT INTO states (id, name) VALUES (20, "santa_fe"); INSERT INTO states (id, name) VALUES (21, "santiago_del_estero"); INSERT INTO states (id, name) VALUES (22, "tierra_del_fuego"); INSERT INTO states (id, name) VALUES (23, "tucuman"); -- Clients ---------------------------------------------------------------------- INSERT INTO clients ( id_state, name, phone ,cellphone, mail, street, house_nro , post_code) VALUES (1, "client_1", "11223344", "11111111111111", "client_1@domain.com", "street_1", "0001", "1111"); INSERT INTO clients ( id_state, name, phone ,cellphone, mail, street, house_nro , post_code) VALUES (1, "client_2", "22334455", "22222222222222", "client_2@gmail.com", "street_2", "0002", "2222"); INSERT INTO clients ( id_state, name, phone ,cellphone, mail, street, house_nro , post_code) VALUES (1, "client_3", "33445566", "33333333333333", "client_3@gmail.com", "street_3", "0003", "3333"); -- Drivers ---------------------------------------------------------------------- INSERT INTO drivers ( id_state, name, lic_nro, lic_caducity_date, phone ,cellphone, mail, street, house_nro, post_code) VALUES (1, "driver_1", "1" , strftime('%Y-%m-%dT12:%M:%f', 'now', 'start of month', '-1 month') , "11223344", "11111111111111", "driver_1@domain.com", "street_1", "0001", "1111"); INSERT INTO drivers ( id_state, name, lic_nro, lic_caducity_date, phone ,cellphone, mail, street, house_nro, post_code) VALUES (1, "driver_2", "2" , strftime('%Y-%m-%dT12:%M:%f', 'now', 'start of month') , "22334455", "22222222222222", "driver_2@gmail.com", "street_2", "0002", "2222"); INSERT INTO drivers ( id_state, name, lic_nro, lic_caducity_date, phone ,cellphone, mail, street, house_nro, post_code) VALUES (1, "driver_3", "3" , strftime('%Y-%m-%dT12:%M:%f', 'now', 'start of month', '+1 month') , "33445566", "33333333333333", "driver_3@gmail.com", "street_3", "0003", "3333"); -- Brands ---------------------------------------------------------------------- INSERT INTO brands (name) VALUES ("ford"); INSERT INTO brands (name) VALUES ("fiat"); INSERT INTO brands (name) VALUES ("chevrolet"); INSERT INTO brands (name) VALUES ("renault"); -- Models ---------------------------------------------------------------------- INSERT INTO models (id_brand, name) VALUES (1, "focus"); INSERT INTO models (id_brand, name) VALUES (1, "mondeo"); INSERT INTO models (id_brand, name) VALUES (1, "escort"); INSERT INTO models (id_brand, name) VALUES (1, "mustang"); INSERT INTO models (id_brand, name) VALUES (1, "falcon"); INSERT INTO models (id_brand, name) VALUES (2, "uno"); INSERT INTO models (id_brand, name) VALUES (2, "palio"); INSERT INTO models (id_brand, name) VALUES (2, "ducato"); INSERT INTO models (id_brand, name) VALUES (2, "argo"); INSERT INTO models (id_brand, name) VALUES (2, "doblo"); INSERT INTO models (id_brand, name) VALUES (2, "toro"); INSERT INTO models (id_brand, name) VALUES (3, "camaro"); INSERT INTO models (id_brand, name) VALUES (3, "corsa"); INSERT INTO models (id_brand, name) VALUES (3, "onix"); INSERT INTO models (id_brand, name) VALUES (3, "cruze"); INSERT INTO models (id_brand, name) VALUES (4, "clio"); INSERT INTO models (id_brand, name) VALUES (4, "zandero"); INSERT INTO models (id_brand, name) VALUES (4, "scenic"); INSERT INTO models (id_brand, name) VALUES (4, "laguna"); INSERT INTO models (id_brand, name) VALUES (4, "megane"); INSERT INTO models (id_brand, name) VALUES (4, "logan"); -- Vehicle Types ---------------------------------------------------------------------- INSERT INTO vehicle_types (name) VALUES ("bici"); INSERT INTO vehicle_types (name) VALUES ("moto"); INSERT INTO vehicle_types (name) VALUES ("auto"); INSERT INTO vehicle_types (name) VALUES ("camioneta"); INSERT INTO vehicle_types (name) VALUES ("camion"); INSERT INTO vehicle_types (name) VALUES ("tren"); INSERT INTO vehicle_types (name) VALUES ("barco"); INSERT INTO vehicle_types (name) VALUES ("avion"); -- Vehicles ---------------------------------------------------------------------- INSERT INTO vehicles ( id_type_vehicle, id_model, name, max_weight, vin, vin_cad_date, year) VALUES ( 3, 1, "auto_1", 200, 112233 , strftime('%Y-%m-%dT12:%M:%f', 'now', 'start of month', '+1 month') , strftime('%Y-%m-%dT12:%M:%f', 'now', '-5 years')); INSERT INTO vehicles ( id_type_vehicle, id_model, name, max_weight, vin, vin_cad_date, year) VALUES ( 3, 2, "auto_2", 300, 223344 , strftime('%Y-%m-%dT12:%M:%f', 'now', 'start of month', '+2 month') , strftime('%Y-%m-%dT12:%M:%f', 'now', '-10 years')); INSERT INTO vehicles ( id_type_vehicle, id_model, name, max_weight, vin, vin_cad_date, year) VALUES ( 3, 3, "auto_3", 800, 334455 , strftime('%Y-%m-%dT12:%M:%f', 'now', 'start of month', '+3 month') , strftime('%Y-%m-%dT12:%M:%f', 'now', '-15 years'));
-- 1. За всяка филмова звезда да се изведе името, рождената дата и с кое -- студио е записвала най-много филми. (Ако има две студиа с еднакъв -- брой филми, да се изведе кое да е от тях) use movies select * from MOVIESTAR select * from starsin select * from movie use movies select distinct m.NAME, m.BIRTHDATE, v.STUDIONAME from MOVIESTAR m join starsin s on m.NAME = s.STARNAME join movie v on s.MOVIETITLE = v.TITLE and s.MOVIEYEAR = v.YEAR where v.STUDIONAME = (select min(studioname) from (select l.studioname from (select studioname, count(*) as count from movie m1 join starsin s1 on m1.TITLE = s1.MOVIETITLE and m1.YEAR = s1.MOVIEYEAR where s1.STARNAME = m.NAME group by STUDIONAME) l where l.count = (select max(t.count) from (select studioname, count(*) as count from movie m1 join starsin s1 on m1.TITLE = s1.MOVIETITLE and m1.YEAR = s1.MOVIEYEAR where s1.STARNAME = m.NAME group by STUDIONAME) t)) h) -- 2. Да се изведат всички производители, за които средната цена на -- произведените компютри е по-ниска от средната цена на техните лаптопи. use pc select distinct t.maker from product t where (select avg(l.price) from (select price from pc c join product p on c.model = p.model where p.maker = t.maker) l) < (select avg(l.price) from (select price from laptop c join product p on c.model = p.model where p.maker = t.maker) l) -- 3. Един модел компютри може да се предлага в няколко конфигурации -- с евентуално различна цена. Да се изведат тези модели компютри, -- чиято средна цена (на различните му конфигурации) е по-ниска -- от най-евтиния лаптоп, произвеждан от същия производител. use pc select p.model from pc p group by p.model having avg(price) < (select min(price) as min_price from (select price from laptop l join product d on l.model = d.model where d.maker = (select maker from product where model = p.model)) t) -- 4. Битките, в които са участвали поне 3 кораба на една и съща страна. use ships select o.battle from outcomes o join ships s on o.SHIP = s.NAME join classes c on s.CLASS = c.CLASS group by o.battle, c.COUNTRY having count(distinct o.SHIP) >= 3 use ships select * from outcomes o join ships s on o.SHIP = s.NAME join classes c on s.CLASS = c.CLASS order by o.BATTLE, c.COUNTRY -- 5. За всеки кораб да се изведе броят на битките, в които е бил увреден. -- Ако корабът не е участвал в битки или пък никога не е бил -- увреждан, в резултата да се вписва 0. use ships select s.name, sum(case o.result when 'damaged' then 1 else 0 end) as count_battles_damaged from ships s left join outcomes o on s.NAME = o.SHIP group by s.name use ships select * from outcomes -- 6. За всеки клас да се изведе името, държавата и първата година, в която -- е пуснат кораб от този клас use ships select c.class, c.country, (select min(t.launched) from (select launched from ships where class = c.class) t) as first_launched from classes c select * from classes c join ships s on c.class = s.class order by c.class, s.LAUNCHED -- 7. За всяка държава да се изведе броят на корабите и броят на потъналите -- кораби. Всяка от бройките може да бъде и нула. use ships select country, count(distinct s.name) as count_ships, sum(case o.result when 'sunk' then 1 else 0 end) as count_sunk_ships from classes c left join ships s on c.class = s.class left join outcomes o on s.NAME = o.SHIP group by country -- 8. Намерете за всеки клас с поне 3 кораба броя на корабите от -- този клас, които са с резултат ok. use ships select c.class, sum(case o.result when 'ok' then 1 else 0 end) as count_ok_ships from classes c left join ships s on c.class = s.class left join outcomes o on s.NAME = o.SHIP group by c.class having count(distinct s.name) >= 3 -- 9. За всяка битка да се изведе името на битката, годината на -- битката и броят на потъналите кораби, броят на повредените -- кораби и броят на корабите без промяна. use ships select name, year(b.date) as year, sum(case o.result when 'sunk' then 1 else 0 end) as count_sunk_ships, sum(case o.result when 'damaged' then 1 else 0 end) as count_damaged_ships, sum(case o.result when 'ok' then 1 else 0 end) as count_ok_ships from battles b left join outcomes o on b.NAME = o.BATTLE group by name, date -- 10. Да се изведат имената на корабите, които са участвали в битки -- в продължение поне на 2 години use ships select ship from outcomes o join battles b on o.BATTLE = b.NAME group by ship having max(year(b.DATE)) - min(year(b.DATE)) >= 2 select * from outcomes o join battles b on o.BATTLE = b.NAME order by ship -- 11. За всеки потънал кораб колко години са минали от пускането му на вода -- до потъването. use ships select o.ship, year(b.date) - s.LAUNCHED as years_sailing from outcomes o join ships s on o.SHIP = s.NAME join battles b on o.BATTLE = b.NAME where o.result = 'sunk' select * from ships s join outcomes o on s.NAME = o.SHIP join battles b on o.BATTLE = b.NAME -- 12. Имената на класовете, за които няма кораб, пуснат след 1921г., -- но има пуснат поне един кораб. use ships select class from ships group by class having max(launched) <= 1921 select * from ships order by class
/* The SQL ANY and ALL Operators * The ANY and ALL operators are used with a WHERE or HAVING clause. * The ANY operator returns true if any of the subquery values meet the condition. <--- * The ALL operator returns true if all of the subquery values meet the condition. <--- */ SELECT ProductName FROM Products WHERE ProductID = ANY (SELECT ProductID FROM OrderDetails WHERE Quantity = 10);
/* Formatted on 21/07/2014 18:40:26 (QP5 v5.227.12220.39754) */ CREATE OR REPLACE FORCE VIEW MCRE_OWN.V_MCREI_APP_LISTA_RAPPORTI ( COD_ABI_CARTOLARIZZATO, COD_NDG, COD_RAPPORTO, COD_FORMA_TECNICA, DESC_FORMA_TECNICA, COD_NATURA, DESC_NATURA, VAL_ACCORDATO, VAL_UTILIZZATO, DI_CUI_CAPITALE, DI_CUI_MORA, NUMERO_RATE_IMPAGATE, IMPORTO_TOTALE_RATE_IMPAGATE, DEBITO_RESIDUO, PERIODICITA, COD_TIPO_FIDO, COD_CLASSE_FT, ORIG_COD_RAPPORTO_ATTR, COD_RAPPORTO_ATTR, COD_TIPO_RAPPORTO ) AS SELECT pcr.cod_abi AS cod_abi_cartolarizzato, pcr.cod_ndg, pcr.cod_rapporto, pcr.cod_forma_tecnica, nat.desc_ftecnica AS desc_forma_tecnica, nat.cod_natura, nat.desc_natura, pcr.val_accordato_delib AS val_accordato, pcr.val_imp_utilizzato AS val_utilizzato, TO_NUMBER (pcr.val_imp_utilizzato - NVL (rate.val_imp_mora, 0)) AS di_cui_capitale, TO_NUMBER (NVL (rate.val_imp_mora, 0)) AS di_cui_mora, TRUNC (rate.val_coeff_rate_arretrate) AS numero_rate_impagate, --5 marzo rate.val_imp_arretrato AS importo_totale_rate_impagate, rate.val_imp_debito_residuo AS debito_residuo, rate.cod_periodo AS periodicita, pcr.cod_tipo_fido, pcr.cod_classe_ft, pcr.cod_rapporto_attr AS orig_cod_rapporto_attr, NULL AS cod_rapporto_attr, --19 marzo ripristino null per gestione lato host del recupero da anagrafe nat.cod_tipo_rapporto FROM t_mcrei_app_pcr_rapporti pcr, t_mcre0_app_natura_ftecnica nat, t_mcre0_app_rate_daily rate, -- 5/3 t_mcre0_app_all_data g --6 giu WHERE pcr.cod_forma_tecnica = nat.cod_ftecnica(+) AND pcr.cod_abi = rate.cod_abi_cartolarizzato(+) AND pcr.cod_ndg = rate.cod_ndg(+) AND pcr.cod_rapporto = rate.cod_rapporto(+) AND pcr.cod_classe_ft IN ('CA', 'FI', 'ST') AND g.cod_abi_cartolarizzato = pcr.cod_abi AND g.cod_ndg = pcr.cod_ndg -- SOLO TARGET E OUTSOURCING 7 giu AND g.flg_outsourcing = 'Y' AND g.flg_target = 'Y' AND g.today_flg = 1;
/* SQLyog Ultimate v12.09 (64 bit) MySQL - 10.3.16-MariaDB : Database - mydb ********************************************************************* */ /*!40101 SET NAMES utf8 */; /*!40101 SET SQL_MODE=''*/; /*!40014 SET @OLD_UNIQUE_CHECKS=@@UNIQUE_CHECKS, UNIQUE_CHECKS=0 */; /*!40014 SET @OLD_FOREIGN_KEY_CHECKS=@@FOREIGN_KEY_CHECKS, FOREIGN_KEY_CHECKS=0 */; /*!40101 SET @OLD_SQL_MODE=@@SQL_MODE, SQL_MODE='NO_AUTO_VALUE_ON_ZERO' */; /*!40111 SET @OLD_SQL_NOTES=@@SQL_NOTES, SQL_NOTES=0 */; CREATE DATABASE /*!32312 IF NOT EXISTS*/`mydb` /*!40100 DEFAULT CHARACTER SET latin1 */; USE `mydb`; /*Table structure for table `proj_biding` */ DROP TABLE IF EXISTS `proj_biding`; CREATE TABLE `proj_biding` ( `username` varchar(30) DEFAULT NULL, `worker_name` varchar(30) NOT NULL, `proj_name` varchar(30) NOT NULL, `days` int(10) DEFAULT NULL, `amount` int(10) DEFAULT NULL, PRIMARY KEY (`worker_name`,`proj_name`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*Data for the table `proj_biding` */ insert into `proj_biding`(`username`,`worker_name`,`proj_name`,`days`,`amount`) values ('suresh','nithin','food app',5,1000),('owner','nithin','food delivery app',9,8000),('suresh','worker','food app',6,2000); /*Table structure for table `projects` */ DROP TABLE IF EXISTS `projects`; CREATE TABLE `projects` ( `username` varchar(30) NOT NULL, `proj_cate` varchar(30) NOT NULL, `proj_name` varchar(30) NOT NULL, `proj_desc` varchar(100) NOT NULL, `budget` int(10) NOT NULL, `bdate` date NOT NULL, `file_location` varchar(200) DEFAULT NULL, UNIQUE KEY `proj_name` (`proj_name`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*Data for the table `projects` */ insert into `projects`(`username`,`proj_cate`,`proj_name`,`proj_desc`,`budget`,`bdate`,`file_location`) values ('suresh','mobile_apps','food app','food delivery app',5000,'2020-05-15','uploaded files/d418cc3d08ffe0cfdd6fa394f2b46d05'),('owner','mobile_apps','food delivery app','Food delivery apps are a new rage, from restaurant owners making their own food ordering app for you',10000,'2020-05-17','uploaded files/9be72a97b9402c2044d9b0415cab2e60'),('owner','graphic_design','website design','develop a website with newer tech',5000,'2020-04-14','uploaded files/672aee03865d200e60f58619482626ddWIN_20200117_17_42_34_Pro.jpg'); /*Table structure for table `users` */ DROP TABLE IF EXISTS `users`; CREATE TABLE `users` ( `username` varchar(30) NOT NULL, `pwd` varchar(20) NOT NULL, `utype` varchar(20) NOT NULL, PRIMARY KEY (`username`), UNIQUE KEY `username` (`username`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*Data for the table `users` */ insert into `users`(`username`,`pwd`,`utype`) values ('','',''),('admin','admin','admin'),('nithin','nithin','worker'),('owner','owner','owner'),('pre','pre','worker'),('raj','raj','worker'),('rakesh','rakesh','owner'),('suresh','suresh','owner'),('worker','worker','worker'); /*Table structure for table `worker_freeze` */ DROP TABLE IF EXISTS `worker_freeze`; CREATE TABLE `worker_freeze` ( `username` varchar(30) NOT NULL, `worker_name` varchar(30) NOT NULL, `proj_name` varchar(30) NOT NULL, `to_date` date DEFAULT NULL, `from_date` date DEFAULT NULL, PRIMARY KEY (`worker_name`,`proj_name`,`username`), UNIQUE KEY `proj_name` (`proj_name`) ) ENGINE=InnoDB DEFAULT CHARSET=latin1; /*Data for the table `worker_freeze` */ insert into `worker_freeze`(`username`,`worker_name`,`proj_name`,`to_date`,`from_date`) values ('suresh','nithin','food app','2020-05-20','2020-05-15'),('owner','nithin','food delivery app','2020-05-26','2020-05-17'); /*!40101 SET SQL_MODE=@OLD_SQL_MODE */; /*!40014 SET FOREIGN_KEY_CHECKS=@OLD_FOREIGN_KEY_CHECKS */; /*!40014 SET UNIQUE_CHECKS=@OLD_UNIQUE_CHECKS */; /*!40111 SET SQL_NOTES=@OLD_SQL_NOTES */;
 create table SCD_SIGNERS ( v_fio VARCHAR2(255), id_manager NUMBER ); comment on table SCD_SIGNERS is 'Таблица подписантов'; comment on column SCD_SIGNERS.id_manager is 'Идентификатор пользователя'; comment on column SCD_SIGNERS.v_fio is 'ФИО подписанта'; create table FW_CLIENTS ( id_rec NUMBER not null, id_client_inst NUMBER(10), dt_start TIMESTAMP(0) WITH LOCAL TIME ZONE not null, dt_stop TIMESTAMP(0) WITH LOCAL TIME ZONE not null, v_long_title VARCHAR2(255 CHAR) ); comment on table FW_CLIENTS is 'Таблица клиентов'; comment on column FW_CLIENTS.id_rec is 'Уникальный код записи в рамках всей системы'; comment on column FW_CLIENTS.id_client_inst is 'Идентификатор пользователя'; comment on column FW_CLIENTS.dt_start is 'Дата начала действия записи'; comment on column FW_CLIENTS.dt_stop is 'Дата конца действия записи'; comment on column FW_CLIENTS.v_long_title is 'Идентификатор пользователя'; comment on column FW_CLIENTS.v_long_title is 'Полное наименование контрагента'; create table CI_USERS ( id_user NUMBER(10) not null, v_username VARCHAR2(255) not null, v_description VARCHAR2(255), v_status CHAR(1), dt_created TIMESTAMP(0) WITH LOCAL TIME ZONE not null, dt_modified TIMESTAMP(0) WITH LOCAL TIME ZONE not null, id_client_inst NUMBER(10) ); comment on table CI_USERS is 'Каталог пользователей системы'; -- Add comments to the columns comment on column CI_USERS.id_user is 'Код пользователя'; comment on column CI_USERS.v_username is 'Логин'; comment on column CI_USERS.v_description is 'Описание пользователя (Ф.И.О.)'; comment on column CI_USERS.dt_created is 'Дата создания пользователя'; comment on column CI_USERS.dt_modified is 'Дата последнего изменения данных пользователя'; comment on column CI_USERS.v_status is 'Статус пользователя (активен, заблокирован)'; comment on column CI_USERS.id_client_inst is 'Идентификатор пользователя'; create table SCD_EQUIP_KITS ( id_equip_kits_inst NUMBER not null, id_equip_kits_type NUMBER, v_ext_ident VARCHAR2(32), dt_start TIMESTAMP(0) WITH LOCAL TIME ZONE not null, id_rec NUMBER not null, id_status NUMBER not null, id_contract_inst NUMBER, id_dealer_client NUMBER, dt_stop TIMESTAMP(0) WITH LOCAL TIME ZONE, v_cas_id VARCHAR2(100) ); comment on table SCD_EQUIP_KITS is 'Комплекты оборудования'; -- Add comments to the columns comment on column SCD_EQUIP_KITS.id_equip_kits_inst is 'Идентификатор'; comment on column SCD_EQUIP_KITS.id_equip_kits_type is 'Тип комплекта'; comment on column SCD_EQUIP_KITS.v_ext_ident is 'Серийный номер'; comment on column SCD_EQUIP_KITS.dt_start is 'Дата начала действия записи'; comment on column SCD_EQUIP_KITS.dt_stop is 'Дата конца действия записи'; comment on column SCD_EQUIP_KITS.id_status is 'Статус'; comment on column SCD_EQUIP_KITS.id_contract_inst is 'Дилер'; comment on column SCD_EQUIP_KITS.id_dealer_client is 'Клиент дилера, к которому привязан комплект'; comment on column SCD_EQUIP_KITS.v_cas_id is 'cas id'; create table SCD_CONTRACTS ( id_contract_inst NUMBER not null, b_agency NUMBER ); comment on table SCD_CONTRACTS is 'Подробности по контрактам'; -- Add comments to the columns comment on column SCD_CONTRACTS.id_contract_inst is 'Контракт'; comment on column SCD_CONTRACTS.b_agency is 'Признак отношения к агентской сети. 1 - является агентской сетью, 0 - не является агентской сетью'; create table SCD_EQUIPMENT_STATUS ( id_equipment_status NUMBER(10) not null, v_name VARCHAR2(128), v_descr VARCHAR2(255), b_deleted NUMBER(1) default 0 not null, v_ext_ident VARCHAR2(255) ); comment on table SCD_EQUIPMENT_STATUS is 'Справочник статусов оборудования'; -- Add comments to the columns comment on column SCD_EQUIPMENT_STATUS.id_equipment_status is 'Идентификатор'; comment on column SCD_EQUIPMENT_STATUS.v_name is 'Наименование'; comment on column SCD_EQUIPMENT_STATUS.v_descr is 'Описание'; comment on column SCD_EQUIPMENT_STATUS.b_deleted is 'Признак удаления'; comment on column SCD_EQUIPMENT_STATUS.v_ext_ident is 'Внешний идентификатор'; create table FW_CONTRACTS ( id_contract_inst NUMBER(10) not null, dt_stop TIMESTAMP(0) WITH LOCAL TIME ZONE not null, dt_start TIMESTAMP(0) WITH LOCAL TIME ZONE not null, id_rec NUMBER, id_client_inst NUMBER(10) not null, id_currency NUMBER(10), v_status CHAR(1) default 'A' not null, dt_reg_event TIMESTAMP(0) WITH LOCAL TIME ZONE, v_description VARCHAR2(255), id_department NUMBER(10), id_category NUMBER(10), v_ext_ident VARCHAR2(150) ); -- Add comments to the table comment on table FW_CONTRACTS is 'Контракты'; -- Add comments to the columns comment on column FW_CONTRACTS.id_contract_inst is 'Идентификатор контракта'; comment on column FW_CONTRACTS.dt_stop is 'Дата конца действия записи'; comment on column FW_CONTRACTS.dt_start is 'Дата начала действия записи'; comment on column FW_CONTRACTS.id_rec is 'Идентификатор записи'; comment on column FW_CONTRACTS.id_client_inst is 'Идентификатор клиента'; comment on column FW_CONTRACTS.v_status is 'Статус А активен, B заблокирован, С расторжен, D удален'; comment on column FW_CONTRACTS.dt_reg_event is 'Дата регистрации'; comment on column FW_CONTRACTS.v_description is 'Описание контракта'; comment on column FW_CONTRACTS.id_department is 'Код департамента из миграционной таблицы MIGR_DEPARTMENTS'; comment on column FW_CONTRACTS.id_category is 'Код котегории контракта'; comment on column FW_CONTRACTS.v_ext_ident is 'Внешний идентификатор контракта'; create table SCD_EQUIPMENT_KITS_TYPE ( id_equip_kits_type NUMBER(10) not null, v_name VARCHAR2(255) not null, dt_start TIMESTAMP(0) WITH LOCAL TIME ZONE, dt_stop TIMESTAMP(0) WITH LOCAL TIME ZONE, id_rec NUMBER ); comment on table SCD_EQUIPMENT_KITS_TYPE is 'Типы комплектов оборудования'; -- Add comments to the columns comment on column SCD_EQUIPMENT_KITS_TYPE.id_equip_kits_type is 'Первичный ключ'; comment on column SCD_EQUIPMENT_KITS_TYPE.v_name is 'Наименование'; comment on column SCD_EQUIPMENT_KITS_TYPE.dt_start is 'Дата начала действия записи'; comment on column SCD_EQUIPMENT_KITS_TYPE.dt_stop is 'Дата окончания действия записи'; alter session set NLS_NUMERIC_CHARACTERS='.,'; alter session set NLS_CALENDAR='GREGORIAN'; alter session set NLS_DATE_FORMAT='YYYY-MM-DD'; alter session set NLS_TIME_FORMAT='HH24:MI:SSXFF'; alter session set NLS_TIMESTAMP_FORMAT='YYYY-MM-DD HH24:MI:SSXFF'; alter session set NLS_TIME_TZ_FORMAT='HH24:MI:SSXFF TZR'; alter session set NLS_TIMESTAMP_TZ_FORMAT='YYYY-MM-DD HH24:MI:SSXFF TZR'; insert into SCD_EQUIPMENT_STATUS (ID_EQUIPMENT_STATUS, V_NAME, V_DESCR, B_DELETED, V_EXT_IDENT) values (1, 'Склад', 'На складе оператора', 0, 'STORE'); insert into SCD_EQUIPMENT_STATUS (ID_EQUIPMENT_STATUS, V_NAME, V_DESCR, B_DELETED, V_EXT_IDENT) values (2, 'Дилер', 'Передано дилеру', 0, 'DEALER'); insert into SCD_EQUIPMENT_STATUS (ID_EQUIPMENT_STATUS, V_NAME, V_DESCR, B_DELETED, V_EXT_IDENT) values (3, 'Аренда', 'Выдан в аренду абоненту', 0, 'LEASE'); insert into SCD_EQUIPMENT_STATUS (ID_EQUIPMENT_STATUS, V_NAME, V_DESCR, B_DELETED, V_EXT_IDENT) values (4, 'Резерв', 'Резерв на складе оператора', 0, 'RESERVED'); insert into SCD_EQUIPMENT_STATUS (ID_EQUIPMENT_STATUS, V_NAME, V_DESCR, B_DELETED, V_EXT_IDENT) values (5, 'Неисправно', null, 0, 'BROKEN'); insert into SCD_EQUIPMENT_STATUS (ID_EQUIPMENT_STATUS, V_NAME, V_DESCR, B_DELETED, V_EXT_IDENT) values (6, 'Утеряно', null, 0, 'LOST'); insert into SCD_EQUIPMENT_STATUS (ID_EQUIPMENT_STATUS, V_NAME, V_DESCR, B_DELETED, V_EXT_IDENT) values (22, 'Продано', null, 0, 'REDEEM'); insert into SCD_EQUIPMENT_STATUS (ID_EQUIPMENT_STATUS, V_NAME, V_DESCR, B_DELETED, V_EXT_IDENT) values (21, 'Возврат', null, 0, 'RETURN'); insert into SCD_EQUIPMENT_STATUS (ID_EQUIPMENT_STATUS, V_NAME, V_DESCR, B_DELETED, V_EXT_IDENT) values (41, 'Ожидает возврата', 'Ожидает возврата', 0, 'WAIT_RETURN'); insert into ci_users (ID_USER, V_USERNAME, V_DESCRIPTION, V_STATUS, DT_CREATED, DT_MODIFIED, ID_CLIENT_INST) values (4257, '3713', 'Мобильные Системы, ООО', 'A', '2015-12-07 12:55:43', '2015-12-07 12:55:40', 3713); insert into ci_users (ID_USER, V_USERNAME, V_DESCRIPTION, V_STATUS, DT_CREATED, DT_MODIFIED, ID_CLIENT_INST) values (4943, '4406', 'Петрина Людмила Николаевна, ИП', 'A', '2016-03-03 13:20:47', '2016-03-03 13:20:34', 4406); insert into ci_users (ID_USER, V_USERNAME, V_DESCRIPTION, V_STATUS, DT_CREATED, DT_MODIFIED, ID_CLIENT_INST) values (5166, '4664', 'Мир Цифровых Систем', 'A', '2016-03-25 15:24:44', '2016-03-25 15:24:28', 4664); insert into ci_users (ID_USER, V_USERNAME, V_DESCRIPTION, V_STATUS, DT_CREATED, DT_MODIFIED, ID_CLIENT_INST) values (4772, '4204', 'ИП Исаенко Дмитрий Сергеевич', 'A', '2016-02-24 11:09:42', '2016-02-24 16:55:59', 4204); insert into ci_users (ID_USER, V_USERNAME, V_DESCRIPTION, V_STATUS, DT_CREATED, DT_MODIFIED, ID_CLIENT_INST) values (6159, '5528', 'АПЦ_Бараковских Олег Александрович', 'A', '2016-10-29 09:18:58', '2016-10-29 09:18:05', 5528); insert into ci_users (ID_USER, V_USERNAME, V_DESCRIPTION, V_STATUS, DT_CREATED, DT_MODIFIED, ID_CLIENT_INST) values (6396, '5756', 'АПЦ_Диваев Артур Фаритович', 'A', '2016-12-16 16:28:58', '2016-12-16 16:28:58', 5756); insert into ci_users (ID_USER, V_USERNAME, V_DESCRIPTION, V_STATUS, DT_CREATED, DT_MODIFIED, ID_CLIENT_INST) values (7677, '6920', 'АПЦ_Вершинин Александр Олегович', 'A', '2017-03-10 16:04:15', '2017-03-10 16:04:03', 6920); insert into ci_users (ID_USER, V_USERNAME, V_DESCRIPTION, V_STATUS, DT_CREATED, DT_MODIFIED, ID_CLIENT_INST) values (6737, '6008', 'АПЦ_Байтимиров Ильдар Исмаилович', 'A', '2017-01-25 08:39:46', '2017-01-25 08:39:41', 6008); insert into ci_users (ID_USER, V_USERNAME, V_DESCRIPTION, V_STATUS, DT_CREATED, DT_MODIFIED, ID_CLIENT_INST) values (6738, '6009', 'АПЦ_Бердышев Александр Викторович', 'A', '2017-01-25 09:17:03', '2017-01-25 09:16:58', 6009); insert into ci_users (ID_USER, V_USERNAME, V_DESCRIPTION, V_STATUS, DT_CREATED, DT_MODIFIED, ID_CLIENT_INST) values (7466, '6734', 'АПЦ_Юрасов Денис Евгеньевич', 'A', '2017-02-28 14:39:14', '2017-02-28 14:39:04', 6734); insert into ci_users (ID_USER, V_USERNAME, V_DESCRIPTION, V_STATUS, DT_CREATED, DT_MODIFIED, ID_CLIENT_INST) values (7202, '6471', 'АПЦ_Нурмухаметов Айнур Наилевич', 'A', '2017-02-14 15:02:35', '2017-02-14 15:02:28', 6471); insert into ci_users (ID_USER, V_USERNAME, V_DESCRIPTION, V_STATUS, DT_CREATED, DT_MODIFIED, ID_CLIENT_INST) values (6003, '5363', 'Стручков Алексей Олегович, ИП', 'A', '2016-10-11 06:50:57', '2016-10-11 11:34:20', 5363); insert into ci_users (ID_USER, V_USERNAME, V_DESCRIPTION, V_STATUS, DT_CREATED, DT_MODIFIED, ID_CLIENT_INST) values (6819, '6100', 'АПЦ_Елыжев Дмитрий Станиславович', 'A', '2017-01-30 11:01:42', '2017-01-30 11:01:36', 6100); insert into ci_users (ID_USER, V_USERNAME, V_DESCRIPTION, V_STATUS, DT_CREATED, DT_MODIFIED, ID_CLIENT_INST) values (5252, '4757', 'Березина Валентина Павловна', 'A', '2016-04-11 10:27:07', '2016-04-11 10:26:49', 4757); insert into ci_users (ID_USER, V_USERNAME, V_DESCRIPTION, V_STATUS, DT_CREATED, DT_MODIFIED, ID_CLIENT_INST) values (5840, '5213', 'Гружевский Игорь Рафаилович', 'A', '2016-08-22 13:37:42', '2016-08-22 14:32:37', 5213); insert into ci_users (ID_USER, V_USERNAME, V_DESCRIPTION, V_STATUS, DT_CREATED, DT_MODIFIED, ID_CLIENT_INST) values (4200, '3645', 'Ибрагимов Салим Касымович ИП', 'A', '2015-11-24 15:04:11', '2015-11-24 15:04:09', 3645); insert into ci_users (ID_USER, V_USERNAME, V_DESCRIPTION, V_STATUS, DT_CREATED, DT_MODIFIED, ID_CLIENT_INST) values (5771, '5152', 'Гололобов Андрей Алексеевич ИП', 'A', '2016-07-28 07:56:29', '2016-07-28 11:16:55', 5152); insert into ci_users (ID_USER, V_USERNAME, V_DESCRIPTION, V_STATUS, DT_CREATED, DT_MODIFIED, ID_CLIENT_INST) values (2758, '2405', 'Индивидуальный предприниматель Верховых Александр Александрович', 'A', '2014-11-25 10:16:34', '2014-11-25 10:16:34', 2405); insert into ci_users (ID_USER, V_USERNAME, V_DESCRIPTION, V_STATUS, DT_CREATED, DT_MODIFIED, ID_CLIENT_INST) values (4802, '4239', 'Белоусов Алексей Александрович ИП', 'A', '2016-02-25 11:42:58', '2016-02-25 11:42:45', 4239); insert into ci_users (ID_USER, V_USERNAME, V_DESCRIPTION, V_STATUS, DT_CREATED, DT_MODIFIED, ID_CLIENT_INST) values (4179, '3621', 'Яшкин Вячеслав Дэмбэрэлович, ИП', 'A', '2015-11-19 03:42:58', '2015-11-19 03:42:56', 3621); insert into ci_users (ID_USER, V_USERNAME, V_DESCRIPTION, V_STATUS, DT_CREATED, DT_MODIFIED, ID_CLIENT_INST) values (5384, '4882', 'Рангина Татьяна Валерьевна ИП', 'A', '2016-05-12 06:50:16', '2016-05-12 12:11:06', 4882); insert into ci_users (ID_USER, V_USERNAME, V_DESCRIPTION, V_STATUS, DT_CREATED, DT_MODIFIED, ID_CLIENT_INST) values (5150, '4646', 'Смирнов Василий Александрович ИП', 'A', '2016-03-24 11:38:23', '2016-03-24 11:38:07', 4646); insert into ci_users (ID_USER, V_USERNAME, V_DESCRIPTION, V_STATUS, DT_CREATED, DT_MODIFIED, ID_CLIENT_INST) values (5243, '4749', 'Захаров Алексей Викторович', 'A', '2016-04-08 11:35:48', '2016-04-08 11:35:30', 4749); insert into ci_users (ID_USER, V_USERNAME, V_DESCRIPTION, V_STATUS, DT_CREATED, DT_MODIFIED, ID_CLIENT_INST) values (3847, '3272', 'Цифрогид Регион ООО', 'A', '2015-09-23 15:27:26', '2015-09-23 15:36:55', 3272); insert into ci_users (ID_USER, V_USERNAME, V_DESCRIPTION, V_STATUS, DT_CREATED, DT_MODIFIED, ID_CLIENT_INST) values (4491, '3907', 'Хисаметдинов Ринат Раисович, ИП', 'B', '2016-01-28 15:38:33', '2018-05-16 15:17:40', 3907); insert into ci_users (ID_USER, V_USERNAME, V_DESCRIPTION, V_STATUS, DT_CREATED, DT_MODIFIED, ID_CLIENT_INST) values (8571, '7776', 'АПЦ_Ларин Леонид Леонидович', 'A', '2017-04-27 06:06:28', '2017-04-27 06:06:10', 7776); insert into ci_users (ID_USER, V_USERNAME, V_DESCRIPTION, V_STATUS, DT_CREATED, DT_MODIFIED, ID_CLIENT_INST) values (7175, '6444', 'АПЦ_Чернигов Константин Анатольевич', 'A', '2017-02-14 04:20:08', '2017-02-14 04:20:01', 6444); insert into ci_users (ID_USER, V_USERNAME, V_DESCRIPTION, V_STATUS, DT_CREATED, DT_MODIFIED, ID_CLIENT_INST) values (5596, '5025', 'Юг_МГТС', 'A', '2016-06-15 17:07:38', '2016-06-28 15:36:02', 5025); insert into ci_users (ID_USER, V_USERNAME, V_DESCRIPTION, V_STATUS, DT_CREATED, DT_MODIFIED, ID_CLIENT_INST) values (7237, '6504', 'Аюшеев Александр Валерьевич ИП', 'A', '2017-02-16 03:41:43', '2017-02-16 03:41:35', 6504); insert into ci_users (ID_USER, V_USERNAME, V_DESCRIPTION, V_STATUS, DT_CREATED, DT_MODIFIED, ID_CLIENT_INST) values (4954, '4422', 'Лысенко Ольга Валерьевна, ИП', 'A', '2016-03-04 10:12:22', '2016-03-04 10:12:08', 4422); insert into ci_users (ID_USER, V_USERNAME, V_DESCRIPTION, V_STATUS, DT_CREATED, DT_MODIFIED, ID_CLIENT_INST) values (7079, '6359', 'АПЦ_Бежин Валерий Михпйлович', 'A', '2017-02-09 08:24:37', '2017-02-09 08:24:30', 6359); insert into ci_users (ID_USER, V_USERNAME, V_DESCRIPTION, V_STATUS, DT_CREATED, DT_MODIFIED, ID_CLIENT_INST) values (7536, '6803', 'АПЦ_Минин Степан Васильевич', 'A', '2017-03-03 11:48:56', '2017-03-03 11:48:46', 6803); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (1166416, 3713, '2015-12-07 12:55:43', '2016-05-13 20:00:02', 'Мобильные Системы, ООО'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (1688125, 3713, '2016-05-13 20:00:02', '2016-09-06 13:44:06', 'Мобильные Системы, ООО'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (2578562, 3713, '2016-09-06 13:44:06', '2017-05-24 17:24:28', 'Мобильные Системы ООО (ИНН 2315178457)'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (4292438, 3713, '2017-05-24 17:24:28', '2018-04-04 14:49:38', 'Мобильные Системы ООО (ИНН 2315178457)'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (9495708, 3713, '2018-04-04 14:49:38', '2500-01-01 00:00:00', 'Мобильные Системы ООО (ИНН 2315178457)'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (1398009, 4406, '2016-03-03 13:20:47', '2016-08-25 09:13:52', 'Петрина Людмила Николаевна, ИП'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (2533862, 4406, '2016-08-25 09:13:52', '2017-05-25 14:45:18', 'Петрина Людмила Николаевна ИП'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (4298620, 4406, '2017-05-25 14:45:18', '2018-04-05 09:50:43', 'Петрина Людмила Николаевна ИП'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (9503156, 4406, '2018-04-05 09:50:43', '2500-01-01 00:00:00', 'Петрина Людмила Николаевна ИП'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (1461281, 4664, '2016-03-25 15:24:44', '2016-08-19 11:44:53', 'Мир Цифровых Систем'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (2512435, 4664, '2016-08-19 11:44:53', '2017-05-25 18:09:45', 'Мир Цифровых Систем ООО'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (4313066, 4664, '2017-05-25 18:09:45', '2018-04-05 11:19:57', 'Мир Цифровых Систем ООО'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (9505283, 4664, '2018-04-05 11:19:57', '2500-01-01 00:00:00', 'Мир Цифровых Систем ООО'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (2512807, 4204, '2016-08-19 12:29:07', '2018-04-04 17:39:05', 'Исаенко Дмитрий Сергеевич ИП'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (1446060, 4204, '2016-03-21 15:29:44', '2016-08-19 12:29:07', 'Исаенко Дмитрий Сергеевич'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (1376511, 4204, '2016-02-24 11:09:42', '2016-03-21 15:29:44', 'ИП Исаенко Дмитрий Сергеевич'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (9498338, 4204, '2018-04-04 17:39:05', '2500-01-01 00:00:00', 'Исаенко Дмитрий Сергеевич ИП'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (2835385, 5528, '2016-11-08 11:19:02', '2017-11-24 09:51:36', 'АПЦ_Бараковских Олег Александрович'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (2802030, 5528, '2016-10-29 09:18:58', '2016-11-08 11:19:02', 'АПЦ_Бараковских Олег Александрович'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (6359059, 5528, '2017-11-24 09:51:36', '2018-01-12 15:23:35', 'АПЦ_Бараковских Олег Александрович'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (7791405, 5528, '2018-01-12 15:23:35', '2018-04-23 12:12:37', 'АПЦ_Бараковских Олег Александрович'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (9984206, 5528, '2018-05-04 14:28:13', '2500-01-01 00:00:00', 'АПЦ_Бараковских Олег Александрович'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (9761106, 5528, '2018-04-23 12:12:37', '2018-05-04 14:28:13', 'АПЦ_Бараковских Олег Александрович'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (3109828, 5756, '2016-12-16 16:28:58', '2017-11-28 08:28:11', 'АПЦ_Диваев Артур Фаритович'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (6432230, 5756, '2017-11-28 08:28:11', '2018-01-12 08:31:18', 'АПЦ_Диваев Артур Фаритович'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (8989368, 5756, '2018-03-02 10:57:40', '2018-04-05 15:21:26', 'АПЦ_Диваев Артур Фаритович'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (7769928, 5756, '2018-01-12 08:31:18', '2018-03-02 10:57:40', 'АПЦ_Диваев Артур Фаритович'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (9510323, 5756, '2018-04-05 15:21:26', '2500-01-01 00:00:00', 'АПЦ_Диваев Артур Фаритович'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (3776217, 6920, '2017-03-10 16:04:15', '2018-04-05 16:04:28', 'АПЦ_Вершинин Александр Олегович'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (9511011, 6920, '2018-04-05 16:04:28', '2500-01-01 00:00:00', 'АПЦ_Вершинин Александр Олегович'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (3476336, 6008, '2017-01-25 08:39:46', '2018-04-05 16:36:19', 'АПЦ_Байтимиров Ильдар Исмаилович'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (9511774, 6008, '2018-04-05 16:36:19', '2500-01-01 00:00:00', 'АПЦ_Байтимиров Ильдар Исмаилович'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (3477145, 6009, '2017-01-25 09:17:03', '2018-04-05 16:36:45', 'АПЦ_Бердышев Александр Викторович'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (9511789, 6009, '2018-04-05 16:37:00', '2500-01-01 00:00:00', 'АПЦ_Бердышев Александр Викторович'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (9511784, 6009, '2018-04-05 16:36:45', '2018-04-05 16:37:00', 'АПЦ_Бердышев Александр Викторович'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (3723711, 6734, '2017-02-28 14:39:14', '2017-11-29 08:29:20', 'АПЦ_Юрасов Денис Евгеньевич'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (6464635, 6734, '2017-11-29 08:29:20', '2018-04-05 15:08:17', 'АПЦ_Юрасов Денис Евгеньевич'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (9510048, 6734, '2018-04-05 15:08:17', '2500-01-01 00:00:00', 'АПЦ_Юрасов Денис Евгеньевич'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (3639643, 6471, '2017-02-14 15:02:35', '2018-04-05 16:13:04', 'АПЦ_Нурмухаметов Айнур Наилевич'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (10303252, 6471, '2018-05-18 13:50:01', '2500-01-01 00:00:00', 'АПЦ_Нурмухаметов Айнур Наилевич'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (9511237, 6471, '2018-04-05 16:13:04', '2018-05-18 13:50:01', 'АПЦ_Нурмухаметов Айнур Наилевич'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (2722785, 5363, '2016-10-11 06:50:57', '2017-01-13 15:00:16', 'Стручков Алексей Олегович, ИП'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (3393337, 5363, '2017-01-13 15:00:16', '2017-05-26 15:19:49', 'Стручков Алексей Олегович ИП'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (4319399, 5363, '2017-05-26 15:19:49', '2018-04-05 14:37:11', 'Стручков Алексей Олегович ИП'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (9508959, 5363, '2018-04-05 14:37:11', '2500-01-01 00:00:00', 'Стручков Алексей Олегович ИП'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (3516804, 6100, '2017-01-30 11:01:42', '2017-11-24 10:45:37', 'АПЦ_Елыжев Дмитрий Станиславович'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (6425547, 6100, '2017-11-27 17:34:52', '2018-04-05 14:11:49', 'АПЦ_Елыжев Дмитрий Станиславович'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (6360394, 6100, '2017-11-24 10:45:37', '2017-11-27 17:34:52', 'АПЦ_Елыжев Дмитрий Станиславович'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (9508408, 6100, '2018-04-05 14:11:49', '2500-01-01 00:00:00', 'АПЦ_Елыжев Дмитрий Станиславович'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (1523734, 4757, '2016-04-12 07:07:01', '2016-05-30 13:43:34', 'Березина Валентина Павловна, ИП'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (1520935, 4757, '2016-04-11 10:27:07', '2016-04-12 07:07:01', 'Березина Валентина Павловна'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (1811307, 4757, '2016-05-30 13:43:34', '2016-09-07 08:31:38', 'Березина Валентина Павловна, ИП'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (2580924, 4757, '2016-09-07 08:31:38', '2018-04-05 11:18:26', 'Березина Валентина Павловна ИП'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (9505245, 4757, '2018-04-05 11:18:26', '2500-01-01 00:00:00', 'Березина Валентина Павловна ИП'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (2522501, 5213, '2016-08-22 13:37:42', '2016-09-14 11:43:07', 'Гружевский Игорь Рафаилович'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (2608517, 5213, '2016-09-14 11:43:07', '2017-05-26 15:26:59', 'Гружевский Игорь Рафаилович ИП'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (4319500, 5213, '2017-05-26 15:26:59', '2018-04-05 12:53:35', 'Гружевский Игорь Рафаилович ИП'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (9507407, 5213, '2018-04-05 12:53:35', '2500-01-01 00:00:00', 'Гружевский Игорь Рафаилович ИП'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (1098902, 3645, '2015-11-24 15:04:11', '2015-11-24 15:06:16', 'Ибрагимов Салим Касымович ИП'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (1098912, 3645, '2015-11-24 15:06:16', '2017-05-04 13:58:55', 'Ибрагимов Салим Касымович ИП'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (4091927, 3645, '2017-05-04 13:58:55', '2017-05-04 13:59:16', 'Ибрагимов Салим Касымович ИП'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (4091947, 3645, '2017-05-04 14:02:14', '2017-05-24 17:06:49', 'Ибрагимов Салим Касымович ИП'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (4091929, 3645, '2017-05-04 13:59:16', '2017-05-04 14:02:14', 'Ибрагимов Салим Касымович ИП'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (4292314, 3645, '2017-05-24 17:06:49', '2018-04-04 13:04:35', 'Ибрагимов Салим Касымович ИП'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (9493868, 3645, '2018-04-04 13:04:35', '2500-01-01 00:00:00', 'Ибрагимов Салим Касымович ИП'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (2361583, 5152, '2016-07-28 07:56:29', '2018-04-05 12:29:46', 'Гололобов Андрей Алексеевич ИП'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (9506847, 5152, '2018-04-05 12:29:46', '2500-01-01 00:00:00', 'Гололобов Андрей Алексеевич ИП'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (468117, 2405, '2014-11-25 10:16:34', '2014-12-15 14:32:33', 'Индивидуальный предприниматель Верховых Александр Александрович'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (468673, 2405, '2014-12-15 14:32:33', '2015-06-22 15:45:40', 'ИП Верховых Александр Александрович'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (651819, 2405, '2015-06-22 15:45:40', '2015-06-22 17:47:33', 'Верховых Александр Александрович ИП'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (653416, 2405, '2015-06-22 17:47:33', '2017-05-10 11:34:52', 'Верховых Александр Александрович ИП'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (4117775, 2405, '2017-05-10 11:34:52', '2018-04-03 18:32:46', 'Верховых Александр Александрович ИП'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (9485685, 2405, '2018-04-03 18:32:46', '2500-01-01 00:00:00', 'Верховых Александр Александрович ИП'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (1379811, 4239, '2016-02-25 11:46:01', '2016-03-15 07:32:28', 'Белоусов Алексей Александрович ИП'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (1423462, 4239, '2016-03-15 07:34:26', '2017-03-03 08:29:43', 'Белоусов Алексей Александрович ИП'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (1379795, 4239, '2016-02-25 11:42:58', '2016-02-25 11:46:01', 'Белоусов Алексей Александрович ИП'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (1423458, 4239, '2016-03-15 07:32:28', '2016-03-15 07:34:26', 'Белоусов Алексей Александрович ИП'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (3738481, 4239, '2017-03-03 08:29:43', '2017-10-27 05:51:38', 'Белоусов Алексей Александрович ИП'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (5886219, 4239, '2017-10-27 05:51:38', '2017-12-04 09:31:32', 'Белоусов Алексей Александрович ИП'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (6641946, 4239, '2017-12-04 09:31:32', '2018-04-04 17:56:47', 'Белоусов Алексей Александрович ИП'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (9498773, 4239, '2018-04-04 17:56:47', '2500-01-01 00:00:00', 'Белоусов Алексей Александрович ИП'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (1088758, 3621, '2015-11-19 03:42:58', '2015-11-19 03:47:18', 'Яшкин Вячеслав Дэмбэрэлович, ИП'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (1088766, 3621, '2015-11-19 03:47:18', '2016-09-07 09:03:05', 'Яшкин Вячеслав Дэмбэрэлович, ИП'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (4289597, 3621, '2017-05-24 12:32:34', '2018-04-04 14:45:35', 'Яшкин Вячеслав Дэмбэрэлович ИП'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (3504282, 3621, '2017-01-27 16:33:02', '2017-05-24 12:32:34', 'Яшкин Вячеслав Дэмбэрэлович ИП'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (2581098, 3621, '2016-09-07 09:03:05', '2017-01-27 16:33:02', 'Яшкин Вячеслав Дэмбэрэлович ИП'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (9495670, 3621, '2018-04-04 14:45:35', '2500-01-01 00:00:00', 'Яшкин Вячеслав Дэмбэрэлович ИП'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (1673359, 4882, '2016-05-12 06:50:16', '2017-05-26 15:00:33', 'Рангина Татьяна Валерьевна ИП'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (4319250, 4882, '2017-05-26 15:00:33', '2018-04-05 11:31:20', 'Рангина Татьяна Валерьевна ИП'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (9505623, 4882, '2018-04-05 11:31:20', '2500-01-01 00:00:00', 'Рангина Татьяна Валерьевна ИП'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (1453573, 4646, '2016-03-24 11:38:23', '2018-04-05 11:13:32', 'Смирнов Василий Александрович ИП'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (9505098, 4646, '2018-04-05 11:13:32', '2500-01-01 00:00:00', 'Смирнов Василий Александрович ИП'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (1515232, 4749, '2016-04-08 11:35:48', '2016-08-19 12:15:04', 'Захаров Алексей Викторович'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (2512711, 4749, '2016-08-19 12:15:04', '2017-05-24 14:22:26', 'Захаров Алексей Викторович ИП'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (4290596, 4749, '2017-05-24 14:22:26', '2018-04-05 11:16:02', 'Захаров Алексей Викторович ИП'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (9505167, 4749, '2018-04-05 11:16:02', '2500-01-01 00:00:00', 'Захаров Алексей Викторович ИП'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (982880, 3272, '2015-09-23 15:27:26', '2016-03-22 13:37:08', 'Цифрогид Регион ООО'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (1447971, 3272, '2016-03-22 13:37:08', '2017-07-17 14:42:02', 'Цифрогид Регион ООО'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (4765701, 3272, '2017-07-17 14:42:02', '2018-04-04 12:20:08', 'Цифрогид Регион ООО'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (9492537, 3272, '2018-04-04 12:20:08', '2500-01-01 00:00:00', 'Цифрогид Регион ООО'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (1305094, 3907, '2016-01-28 15:38:33', '2016-01-28 15:42:27', 'Хисаметдинов Ринат Раисович, ИП'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (1305101, 3907, '2016-01-28 15:42:27', '2016-08-25 09:11:33', 'Хисаметдинов Ринат Раисович, ИП'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (2533849, 3907, '2016-08-25 09:11:33', '2018-04-04 14:56:34', 'Хисаметдинов Ринат Раисович ИП'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (9495847, 3907, '2018-04-04 14:56:34', '2500-01-01 00:00:00', 'Хисаметдинов Ринат Раисович ИП'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (4036317, 7776, '2017-04-27 06:06:28', '2018-03-21 12:21:44', 'АПЦ_Ларин Леонид Леонидович'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (9295577, 7776, '2018-03-21 12:21:44', '2500-01-01 00:00:00', 'АПЦ_Ларин Леонид Леонидович'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (3634812, 6444, '2017-02-14 04:20:08', '2018-03-21 12:18:52', 'АПЦ_Чернигов Константин Анатольевич'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (9295530, 6444, '2018-03-21 12:18:52', '2018-05-10 12:57:59', 'АПЦ_Чернигов Константин Анатольевич'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (10116348, 6444, '2018-05-10 12:57:59', '2500-01-01 00:00:00', 'АПЦ_Чернигов Константин Анатольевич'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (1976485, 5025, '2016-06-15 17:07:38', '2017-02-15 13:33:19', 'Юг_МГТС'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (3648608, 5025, '2017-02-15 16:16:36', '2500-01-01 00:00:00', 'Монтажник_Юг_МГТС'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (3646272, 5025, '2017-02-15 13:33:19', '2017-02-15 16:16:36', 'Монтажни_Юг_МГТС'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (3651091, 6504, '2017-02-16 03:41:43', '2018-04-05 14:00:50', 'Аюшеев Александр Валерьевич ИП'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (9508146, 6504, '2018-04-05 14:00:50', '2500-01-01 00:00:00', 'Аюшеев Александр Валерьевич ИП'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (1399787, 4422, '2016-03-04 10:12:22', '2016-03-04 10:32:32', 'Лысенко Ольга Валерьевна, ИП'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (1399918, 4422, '2016-03-04 10:32:32', '2016-09-06 12:43:44', 'Лысенко Ольга Валерьевна, ИП'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (3760519, 4422, '2017-03-07 15:07:37', '2017-05-03 15:31:06', 'Лысенко Ольга Валерьевна ИП'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (4084605, 4422, '2017-05-03 15:31:06', '2017-05-24 12:22:20', 'Лысенко Ольга Валерьевна ИП'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (4289469, 4422, '2017-05-24 12:22:20', '2018-04-05 10:06:28', 'Лысенко Ольга Валерьевна ИП'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (2578094, 4422, '2016-09-06 12:43:44', '2017-03-07 15:07:37', 'Лысенко Ольга Валерьевна ИП'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (9511721, 4422, '2018-04-05 16:32:49', '2500-01-01 00:00:00', 'Лысенко Ольга Валерьевна ИП'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (9503386, 4422, '2018-04-05 10:06:28', '2018-04-05 16:32:49', 'Лысенко Ольга Валерьевна ИП'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (3605625, 6359, '2017-02-09 08:27:17', '2018-04-05 16:01:37', 'АПЦ_Бежин Валерий Михайлович'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (3605229, 6359, '2017-02-09 08:24:37', '2017-02-09 08:27:17', 'АПЦ_Бежин Валерий Михпйлович'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (9510962, 6359, '2018-04-05 16:01:37', '2500-01-01 00:00:00', 'АПЦ_Бежин Валерий Михайлович'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (3740162, 6803, '2017-03-03 11:48:56', '2017-11-24 11:57:17', 'АПЦ_Минин Степан Васильевич'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (6363063, 6803, '2017-11-24 11:57:17', '2018-04-09 13:04:51', 'АПЦ_Минин Степан Васильевич'); insert into fw_clients (ID_REC, ID_CLIENT_INST, DT_START, DT_STOP, V_LONG_TITLE) values (9556331, 6803, '2018-04-09 13:04:51', '2500-01-01 00:00:00', 'АПЦ_Минин Степан Васильевич'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (2343, '2017-08-04 11:29:53', '2017-06-30 07:23:03', 4620165, 2405, null, 'A', '2015-04-06 01:00:00', null, 2343, 2000, 'D150201977-24'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (2343, '2500-01-01 00:00:00', '2017-08-04 11:29:53', 4923100, 2405, null, 'A', '2015-04-06 01:00:00', null, 2343, 2000, 'D150201977-24'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (2343, '2017-06-30 07:23:03', '2017-06-28 17:59:06', 4610114, 2405, null, 'A', '2015-04-06 01:00:00', null, 2343, 2000, 'D150201977-24'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (2343, '2017-06-28 17:59:06', '2017-06-26 12:02:05', 4583293, 2405, null, 'A', '2015-04-06 01:00:00', null, 2343, 2000, 'D150201977-24'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (2343, '2017-06-26 12:02:05', '2015-12-07 09:15:48', 1165248, 2405, null, 'A', '2014-11-10 21:00:00', null, 2343, 2000, 'D140677660-24'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (2343, '2015-12-07 09:15:48', '2015-01-13 10:15:06', 469150, 2405, null, 'A', '2014-11-10 21:00:00', null, 2343, 2000, 'D140677660-24'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (2343, '2015-01-13 10:15:06', '2015-01-13 10:15:02', 469149, 2405, null, 'A', '2014-11-10 21:00:00', null, 2343, 2000, 'D140677660-24'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (2343, '2015-01-13 10:15:02', '2014-11-25 10:21:06', 468119, 2405, 1, 'A', '2014-11-10 21:00:00', null, 2343, 2000, 'D140677660-24'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (3122, '2500-01-01 00:00:00', '2018-01-12 12:57:40', 7787156, 3272, null, 'A', '2015-08-21 01:00:00', null, 3103, 2000, 'D150445310-24'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (3122, '2018-01-12 12:57:40', '2017-07-03 12:33:09', 4656023, 3272, null, 'A', '2015-08-21 01:00:00', null, 3103, 2000, 'D150445310-24'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (3122, '2017-07-03 12:33:09', '2015-09-23 15:29:36', 982896, 3272, null, 'A', '2015-08-20 22:00:00', null, 3103, 2000, 'D150445310-24'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (3387, '2017-06-06 14:50:54', '2017-05-18 07:02:02', 4202957, 3621, null, 'A', '2015-11-09 03:47:21', null, 3368, 2000, 'D150573283-24'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (3387, '2500-01-01 00:00:00', '2017-11-08 04:48:01', 6041768, 3621, null, 'A', '2015-11-09 03:47:21', null, 3368, 2000, 'D150573283-24'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (3387, '2017-11-08 04:48:01', '2017-06-06 14:50:54', 4393274, 3621, null, 'A', '2015-11-09 03:47:21', null, 3368, 2000, 'D150573283-24'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (3387, '2017-05-18 07:02:02', '2016-05-12 07:34:26', 1673498, 3621, null, 'A', '2015-11-09 03:47:21', null, 3368, 2000, 'D150573283-24'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (3387, '2016-05-12 07:34:26', '2015-11-19 03:48:17', 1088768, 3621, null, 'A', '2015-11-09 03:47:21', null, 3368, 2000, 'D150573283-24'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (3407, '2500-01-01 00:00:00', '2017-07-03 11:37:36', 4654865, 3645, null, 'A', '2015-09-01 01:00:00', null, 3387, 2000, 'D150577489-24'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (3407, '2017-07-03 11:37:36', '2016-06-17 11:26:28', 1996504, 3645, null, 'A', '2015-11-24 15:06:51', null, 3387, 2000, 'D150577489-24'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (3407, '2016-06-17 11:26:28', '2016-01-18 12:01:44', 1278588, 3645, null, 'A', '2015-11-24 15:06:51', null, 3387, 2000, 'D150577489-24'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (3407, '2016-01-18 12:01:44', '2015-11-24 15:07:01', 1098917, 3645, null, 'A', '2015-11-24 15:06:51', null, 3387, 2000, 'D150577489-24'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (3468, '2500-01-01 00:00:00', '2016-01-15 16:42:05', 1275599, 3713, null, 'A', '2015-09-01 01:00:00', null, 3441, 2000, 'D150586064-24'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (3468, '2016-01-15 16:42:05', '2015-12-07 13:01:10', 1166458, 3713, null, 'A', '2015-09-01 01:00:00', null, 3441, 2000, 'D150586064-24'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (3632, '2016-02-17 08:21:22', '2016-01-28 15:41:01', 1305097, 3907, null, 'A', '2015-09-01 01:00:00', null, 3598, 2000, 'D150666480-24'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (3632, '2500-01-01 00:00:00', '2016-02-17 08:21:22', 1356972, 3907, null, 'A', '2015-09-01 01:00:00', null, 3598, 2000, 'D150666480-24'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (3876, '2500-01-01 00:00:00', '2016-06-20 11:33:27', 2022128, 4204, null, 'A', '2015-11-24 00:00:00', null, 3828, 2000, 'D150602043-24'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (3876, '2016-06-20 11:33:27', '2016-02-24 12:19:12', 1376808, 4204, null, 'A', '2015-11-24 00:00:00', null, 3828, 2000, 'D150602043-24'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (3905, '2017-11-21 11:16:28', '2017-07-03 12:11:30', 4655498, 4239, null, 'A', '2016-02-10 00:00:00', null, 3857, 2000, 'D160006331-24'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (3905, '2017-06-26 12:08:47', '2017-06-06 13:38:52', 4392436, 4239, null, 'A', '2016-01-13 19:00:00', null, 3857, 2000, 'D160006331-24'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (3905, '2500-01-01 00:00:00', '2017-11-21 11:16:28', 6292154, 4239, null, 'A', '2016-02-10 00:00:00', null, 3857, 2000, 'D160006331-24'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (3905, '2017-07-03 12:11:30', '2017-06-26 12:08:47', 4583412, 4239, null, 'A', '2016-01-14 00:00:00', null, 3857, 2000, 'D160006331-24'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (3905, '2017-06-06 13:38:52', '2016-03-15 07:34:42', 1423464, 4239, null, 'A', '2016-01-13 19:00:00', null, 3857, 2000, 'D160006331-24'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (3905, '2016-03-15 07:34:42', '2016-03-15 07:32:44', 1423460, 4239, null, 'A', '2016-01-13 19:00:00', null, 3857, 2000, 'D160006331-24'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (3905, '2016-03-15 07:32:44', '2016-02-25 13:57:53', 1380322, 4239, null, 'A', '2016-01-13 19:00:00', null, 3857, 2000, 'D160006331-24'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (4037, '2500-01-01 00:00:00', '2016-03-03 13:23:03', 1398014, 4406, null, 'A', '2016-01-25 00:00:00', null, 3994, 2000, 'D160025832-24'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (4047, '2500-01-01 00:00:00', '2017-10-16 12:00:48', 5721419, 4422, null, 'A', '2016-02-04 10:14:47', null, 4004, 2000, 'D160054209-24'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (4047, '2017-10-16 12:00:48', '2016-03-04 10:15:39', 1399825, 4422, null, 'A', '2016-02-04 10:14:47', null, 4004, 2000, 'D160054209-24'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (4224, '2500-01-01 00:00:00', '2017-06-26 10:54:44', 4581979, 4646, null, 'A', '2016-02-12 21:00:00', null, 4184, 2000, 'D160057199-24'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (4224, '2017-06-26 10:54:44', '2016-03-24 11:48:40', 1453609, 4646, null, 'A', '2016-02-11 21:00:00', null, 4184, 2000, 'D160057199-24'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (4239, '2016-06-20 11:19:34', '2016-03-25 15:31:44', 1461652, 4664, null, 'A', '2016-03-15 00:00:00', null, 4200, 2000, 'D160103390-24'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (4239, '2500-01-01 00:00:00', '2016-06-20 11:19:34', 2021684, 4664, null, 'A', '2016-03-15 00:00:00', null, 4200, 2000, 'D160103390-24'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (4310, '2016-06-20 11:26:35', '2016-04-08 11:39:15', 1515238, 4749, null, 'A', '2016-03-21 00:00:00', null, 4272, 2000, 'D160117979-24'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (4310, '2500-01-01 00:00:00', '2016-06-20 11:26:35', 2021982, 4749, null, 'A', '2016-03-21 00:00:00', null, 4272, 2000, 'D160117979-24'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (4320, '2500-01-01 00:00:00', '2017-06-19 05:09:19', 4503302, 4757, null, 'A', '2016-04-04 18:00:00', null, 4280, 2000, 'D160143615-24'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (4320, '2017-06-19 05:09:19', '2017-05-30 15:29:05', 4345448, 4757, null, 'A', '2016-04-04 18:00:00', null, 4280, 2000, 'D160143615-24'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (4320, '2017-05-30 15:29:05', '2016-04-12 07:05:20', 1523731, 4757, null, 'A', '2016-04-03 18:00:00', null, 4280, 2000, 'D160143615-24'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (4412, '2500-01-01 00:00:00', '2017-11-09 11:43:59', 6062049, 4882, null, 'A', '2016-04-05 01:00:00', null, 4380, 2000, 'D160145838-24'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (4412, '2017-06-26 11:40:05', '2017-06-06 15:12:38', 4393406, 4882, null, 'A', '2016-04-03 20:00:00', null, 4380, 2000, 'D160145838-24'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (4412, '2017-11-09 11:43:59', '2017-06-26 11:40:05', 4582817, 4882, null, 'A', '2016-04-05 01:00:00', null, 4380, 2000, 'D160145838-24'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (4412, '2017-06-06 15:12:38', '2016-05-12 07:03:41', 1673395, 4882, null, 'A', '2016-04-03 20:00:00', null, 4380, 2000, 'D160145838-24'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (4412, '2016-05-12 07:03:41', '2016-05-12 06:54:00', 1673363, 4882, null, 'A', '2016-04-03 20:00:00', null, 4380, 2000, 'D160145838-24'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (4505, '2500-01-01 00:00:00', '2018-01-30 09:24:39', 8210995, 5025, null, 'A', '2016-06-15 17:20:23', null, 4489, 2000, 'D000005-24'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (4505, '2018-01-30 09:24:39', '2016-11-23 13:31:59', 2922797, 5025, null, 'A', '2016-06-15 17:20:23', null, 4489, 2000, 'D000005-24'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (4505, '2016-11-23 13:31:59', '2016-06-15 17:18:11', 1976643, 5025, null, 'A', '2016-06-15 17:20:23', null, 4489, 2000, 'D000005-24'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (4616, '2500-01-01 00:00:00', '2017-06-28 09:45:02', 4604254, 5152, null, 'A', '2016-07-07 01:00:00', null, 4608, 2000, 'D160266755-24'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (4616, '2017-06-28 09:45:02', '2017-06-26 12:05:35', 4583356, 5152, null, 'A', '2016-07-07 01:00:00', null, 4608, 2000, 'D160266755-24'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (4616, '2017-06-26 12:05:35', '2017-03-14 12:45:11', 3792555, 5152, null, 'A', '2016-07-28 14:03:56', null, 4608, 2000, 'D160266755-24'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (4616, '2017-03-14 12:45:11', '2016-07-28 08:05:00', 2361607, 5152, null, 'A', '2016-07-28 14:03:56', null, 4608, 2000, 'D160266755-24'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (4668, '2500-01-01 00:00:00', '2017-07-03 10:01:57', 4653097, 5213, null, 'A', '2016-06-21 01:00:00', null, 4661, 2000, 'D160250535-24'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (4668, '2017-07-03 10:01:57', '2016-09-15 08:55:26', 2612595, 5213, null, 'A', '2016-08-22 13:40:15', null, 4661, 2000, 'D160250535-24'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (4668, '2016-09-15 08:55:26', '2016-08-22 13:41:07', 2522530, 5213, null, 'A', '2016-08-22 13:40:15', null, 4661, 2000, 'D160250535-24'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (4773, '2500-01-01 00:00:00', '2017-05-30 11:57:19', 4340928, 5363, null, 'A', '2015-07-03 19:00:00', null, 4766, 2000, 'D150366947-24'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (4773, '2017-05-30 11:57:19', '2017-01-26 19:14:48', 3494407, 5363, null, 'A', '2016-06-25 19:00:00', null, 4766, 2000, 'D150366947-24'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (4773, '2017-01-26 19:14:48', '2017-01-13 15:01:33', 3393348, 5363, null, 'A', '2016-06-25 19:00:00', null, 4766, 2000, '№ D150366947-24'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (4773, '2017-01-13 15:01:33', '2016-10-11 09:14:59', 2723187, 5363, null, 'A', '2016-06-25 19:00:00', null, 4766, 2000, '№ D150366947-24'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (4921, '2500-01-01 00:00:00', '2017-01-12 05:37:21', 3376448, 5528, null, 'A', '2016-10-29 11:26:22', 'АПЦ Михайловск', 4903, 2000, '286916'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (4921, '2017-01-11 09:14:48', '2016-12-08 17:07:56', 3041498, 5528, null, 'A', '2016-10-29 11:26:22', 'АПЦ Михайловск', 4903, 2000, '000011-16-2400/ДП'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (4921, '2017-01-12 05:37:21', '2017-01-11 09:15:33', 3368461, 5528, null, 'A', '2016-10-29 11:26:22', 'АПЦ Михайловск', 4903, 2000, '286916'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (4921, '2017-01-11 09:15:33', '2017-01-11 09:14:48', 3368451, 5528, null, 'A', '2016-10-29 11:26:22', 'АПЦ Михайловск', 4903, 2000, '286916'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (4921, '2016-12-08 17:07:56', '2016-10-29 09:27:06', 2802068, 5528, null, 'A', '2016-10-29 11:26:22', 'АПЦ Михайловск', 4903, 2000, '1'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (5123, '2500-01-01 00:00:00', '2017-01-12 06:03:57', 3376604, 5756, null, 'A', '2016-12-16 18:32:01', 'АПЦ Екатеринбург', 5106, 2000, '291597'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (5123, '2017-01-12 06:03:57', '2016-12-16 16:32:29', 3110155, 5756, null, 'A', '2016-12-16 18:32:01', 'АПЦ Екатеринбург', 5106, 2000, '1'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (5320, '2500-01-01 00:00:00', '2017-03-17 10:21:22', 3809589, 6008, null, 'A', '2017-01-09 00:00:00', null, 5327, 2000, '298620'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (5320, '2017-03-17 10:21:22', '2017-01-25 08:42:37', 3476352, 6008, null, 'A', '2017-01-09 00:00:00', null, 5327, 2000, '5'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (5322, '2500-01-01 00:00:00', '2017-03-17 10:22:19', 3809605, 6009, null, 'A', '2017-01-09 00:00:00', null, 5328, 2000, '298614'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (5322, '2017-03-17 10:22:19', '2017-01-25 09:22:32', 3477190, 6009, null, 'A', '2017-01-09 00:00:00', null, 5328, 2000, '6'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (5382, '2017-06-07 10:19:49', '2017-06-07 10:19:29', 4397306, 6100, null, 'A', '2017-01-09 00:00:00', null, 5406, 2000, '296786'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (5382, '2500-01-01 00:00:00', '2017-06-07 10:19:49', 4397308, 6100, null, 'A', '2017-01-09 00:00:00', null, 5406, 2000, '296786'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (5382, '2017-06-07 10:19:29', '2017-03-03 13:23:56', 3741231, 6100, null, 'A', '2017-01-09 00:00:00', null, 5406, 2000, '296786'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (5382, '2017-03-03 13:23:56', '2017-03-03 13:22:04', 3741207, 6100, null, 'A', '2017-01-09 00:00:00', null, 5406, 2000, '296650'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (5382, '2017-03-03 13:22:04', '2017-01-30 11:09:15', 3516949, 6100, null, 'A', '2017-01-09 00:00:00', null, 5406, 2000, 'ГПД'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (5588, '2500-01-01 00:00:00', '2017-05-16 12:15:35', 4187818, 6359, null, 'A', '2017-04-01 22:00:00', null, 5645, 2000, '302474'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (5588, '2017-05-16 12:15:35', '2017-02-09 08:30:37', 3605639, 6359, null, 'A', '2017-01-31 21:00:00', null, 5645, 2000, '3'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (5656, '2500-01-01 00:00:00', '2017-11-21 12:44:29', 6295208, 6444, null, 'A', '2017-02-14 04:24:32', null, 5720, 2000, '298356'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (5656, '2017-08-01 14:25:15', '2017-05-12 10:01:28', 4156612, 6444, null, 'A', '2017-02-14 04:24:32', null, 5720, 2000, '298356-2'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (5656, '2017-11-21 12:44:29', '2017-08-01 14:25:15', 4900867, 6444, null, 'A', '2017-02-14 04:24:32', null, 5720, 2000, '298356'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (5656, '2017-05-12 10:01:28', '2017-03-15 05:21:00', 3795854, 6444, null, 'A', '2017-02-14 04:24:32', null, 5720, 2000, '298356'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (5656, '2017-03-15 05:21:00', '2017-02-14 04:27:38', 3634849, 6444, null, 'A', '2017-02-14 04:24:32', null, 5720, 2000, '1234567'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (5683, '2500-01-01 00:00:00', '2017-04-11 10:40:50', 3918478, 6471, null, 'A', '2017-02-14 15:04:30', null, 5747, 2000, '298334'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (5683, '2017-04-11 10:40:50', '2017-03-03 19:27:15', 3743576, 6471, null, 'A', '2017-02-14 15:04:30', null, 5747, 2000, '100002'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (5683, '2017-03-03 19:27:15', '2017-03-03 18:59:19', 3743551, 6471, null, 'A', '2017-02-14 15:04:30', null, 5747, 2000, '100002'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (5683, '2017-03-03 18:59:19', '2017-02-14 15:05:02', 3639667, 6471, null, 'A', '2017-02-14 15:04:30', null, 5747, 2000, '100002'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (5709, '2017-06-06 13:56:05', '2017-05-15 17:40:09', 4179051, 6504, null, 'A', '2017-02-01 19:00:00', null, 5778, 2000, 'D170033097-24'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (5709, '2500-01-01 00:00:00', '2017-11-21 11:30:06', 6292573, 6504, null, 'A', '2017-02-01 19:00:00', null, 5778, 2000, 'D170033097-24'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (5709, '2017-05-15 17:40:09', '2017-05-15 16:37:23', 4177246, 6504, null, 'A', '2017-01-31 19:00:00', null, 5778, 2000, 'D170033097-24'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (5709, '2017-11-21 11:30:06', '2017-08-21 05:49:08', 5070658, 6504, null, 'A', '2017-02-01 19:00:00', null, 5778, 2000, 'D170033097-24'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (5709, '2017-08-21 05:49:08', '2017-06-06 13:56:05', 4392648, 6504, null, 'A', '2017-02-01 19:00:00', null, 5778, 2000, 'D170033097-24'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (5709, '2017-05-15 16:37:23', '2017-02-16 03:44:38', 3651096, 6504, null, 'A', '2017-01-31 19:00:00', null, 5778, 2000, 'D-170033097-24'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (5900, '2500-01-01 00:00:00', '2017-03-29 11:02:19', 3858636, 6734, null, 'A', '2017-03-01 00:00:00', null, 5997, 2000, '298316'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (5900, '2017-03-29 11:02:19', '2017-02-28 14:41:50', 3723738, 6734, null, 'A', '2017-03-01 00:00:00', null, 5997, 2000, '555555'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (5968, '2500-01-01 00:00:00', '2017-03-17 14:09:03', 3811833, 6803, null, 'A', '2017-03-03 12:52:49', null, 6064, 2000, '298775'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (5968, '2017-03-17 14:09:03', '2017-03-03 11:53:48', 3740237, 6803, null, 'A', '2017-03-03 12:52:49', null, 6064, 2000, '03'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (6069, '2500-01-01 00:00:00', '2017-04-07 07:27:27', 3903062, 6920, null, 'A', '2017-03-10 16:06:47', null, 6178, 2000, '301192'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (6069, '2017-04-07 07:27:27', '2017-03-10 16:07:18', 3776223, 6920, null, 'A', '2017-03-10 16:06:47', null, 6178, 2000, 'Д130'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (6864, '2017-11-21 12:48:16', '2017-07-04 13:37:25', 4667172, 7776, null, 'A', '2017-04-27 06:11:22', null, 6993, 2000, '307516'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (6864, '2500-01-01 00:00:00', '2017-11-21 12:48:16', 6295397, 7776, null, 'A', '2017-04-27 06:11:22', null, 6993, 2000, '307516'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (6864, '2017-07-04 13:37:25', '2017-05-12 06:45:09', 4155689, 7776, null, 'A', '2017-04-27 06:11:22', null, 6993, 2000, 'АПЦ_ЛаринЛЛ'); insert into fw_contracts (ID_CONTRACT_INST, DT_STOP, DT_START, ID_REC, ID_CLIENT_INST, ID_CURRENCY, V_STATUS, DT_REG_EVENT, V_DESCRIPTION, ID_DEPARTMENT, ID_CATEGORY, V_EXT_IDENT) values (6864, '2017-05-12 06:45:09', '2017-04-27 06:11:42', 4036336, 7776, null, 'A', '2017-04-27 06:11:22', null, 6993, 2000, '123'); insert into scd_contracts (B_AGENCY, ID_CONTRACT_INST) values (0, 3468); insert into scd_contracts (B_AGENCY, ID_CONTRACT_INST) values (0, 4037); insert into scd_contracts (B_AGENCY, ID_CONTRACT_INST) values (1, 4239); insert into scd_contracts (B_AGENCY, ID_CONTRACT_INST) values (1, 3876); insert into scd_contracts (B_AGENCY, ID_CONTRACT_INST) values (1, 4921); insert into scd_contracts (B_AGENCY, ID_CONTRACT_INST) values (0, 5123); insert into scd_contracts (B_AGENCY, ID_CONTRACT_INST) values (1, 6069); insert into scd_contracts (B_AGENCY, ID_CONTRACT_INST) values (1, 5320); insert into scd_contracts (B_AGENCY, ID_CONTRACT_INST) values (0, 5322); insert into scd_contracts (B_AGENCY, ID_CONTRACT_INST) values (1, 5900); insert into scd_contracts (B_AGENCY, ID_CONTRACT_INST) values (1, 5683); insert into scd_contracts (B_AGENCY, ID_CONTRACT_INST) values (0, 4773); insert into scd_contracts (B_AGENCY, ID_CONTRACT_INST) values (0, 5382); insert into scd_contracts (B_AGENCY, ID_CONTRACT_INST) values (0, 4320); insert into scd_contracts (B_AGENCY, ID_CONTRACT_INST) values (1, 4668); insert into scd_contracts (B_AGENCY, ID_CONTRACT_INST) values (1, 3407); insert into scd_contracts (B_AGENCY, ID_CONTRACT_INST) values (0, 4616); insert into scd_contracts (B_AGENCY, ID_CONTRACT_INST) values (0, 2343); insert into scd_contracts (B_AGENCY, ID_CONTRACT_INST) values (1, 3905); insert into scd_contracts (B_AGENCY, ID_CONTRACT_INST) values (1, 3387); insert into scd_contracts (B_AGENCY, ID_CONTRACT_INST) values (0, 4412); insert into scd_contracts (B_AGENCY, ID_CONTRACT_INST) values (1, 4224); insert into scd_contracts (B_AGENCY, ID_CONTRACT_INST) values (0, 4310); insert into scd_contracts (B_AGENCY, ID_CONTRACT_INST) values (1, 3122); insert into scd_contracts (B_AGENCY, ID_CONTRACT_INST) values (0, 3632); insert into scd_contracts (B_AGENCY, ID_CONTRACT_INST) values (0, 6864); insert into scd_contracts (B_AGENCY, ID_CONTRACT_INST) values (1, 5656); insert into scd_contracts (B_AGENCY, ID_CONTRACT_INST) values (1, 4505); insert into scd_contracts (B_AGENCY, ID_CONTRACT_INST) values (0, 5709); insert into scd_contracts (B_AGENCY, ID_CONTRACT_INST) values (1, 4047); insert into scd_contracts (B_AGENCY, ID_CONTRACT_INST) values (0, 5588); insert into scd_contracts (B_AGENCY, ID_CONTRACT_INST) values (1, 5968); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (128329, 2072, '0051411400014923', '2017-03-09 13:27:53', '2017-05-01 08:47:51', 2, 4239, null, 3766977, '2710644747'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (128329, 2072, '0051411400014923', '2017-03-09 13:27:31', '2017-03-09 13:27:53', 4, null, null, 3766955, '2710644747'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (128329, 2072, '0051411400014923', '2017-05-01 08:47:51', '2500-01-01 00:00:00', 6, 4239, 193694, 4060863, '2710644747'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (122227, 2072, '0051411400014568', '2017-02-23 06:07:42', '2017-04-14 11:39:53', 2, 5426, null, 3698604, '2710595587'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (122227, 2072, '0051411400014568', '2017-04-14 11:39:53', '2017-05-01 10:03:08', 2, 6069, null, 3936426, '2710595587'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (122227, 2072, '0051411400014568', '2017-02-09 12:03:45', '2017-02-09 12:04:07', 4, null, null, 3608344, '2710595587'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (122227, 2072, '0051411400014568', '2017-02-09 12:04:07', '2017-02-23 06:07:42', 2, 5426, null, 3608452, '2710595587'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (122227, 2072, '0051411400014568', '2017-05-01 10:03:08', '2500-01-01 00:00:00', 6, 6069, 195138, 4061102, '2710595587'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (143036, 2123, '0055595800002955', '2017-05-01 10:15:21', '2500-01-01 00:00:00', 6, 4616, 195330, 4061157, '2711711109'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (143036, 2123, '0055595800002955', '2017-04-27 10:05:28', '2017-04-27 10:05:46', 4, null, null, 4037075, '2711711109'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (143036, 2123, '0055595800002955', '2017-04-27 10:05:46', '2017-05-01 10:15:21', 2, 4616, null, 4037136, '2711711109'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (110820, 2072, '0051411400005659', '2017-01-18 09:44:07', '2017-05-01 13:13:58', 2, 3387, null, 3423562, '2710581104'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (110820, 2072, '0051411400005659', '2017-01-18 09:43:46', '2017-01-18 09:44:07', 4, null, null, 3423471, '2710581104'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (110820, 2072, '0051411400005659', '2017-05-01 13:13:58', '2500-01-01 00:00:00', 22, 3387, 192509, 4061594, '2710581104'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (140922, 2126, '0055595800001462', '2017-05-01 03:03:28', '2500-01-01 00:00:00', 22, 5322, 195037, 4060586, '2711690359'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (140922, 2126, '0055595800001462', '2017-04-21 13:22:08', '2017-04-24 10:28:55', 2, 5268, null, 4004129, '2711690359'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (140922, 2126, '0055595800001462', '2017-04-24 10:28:55', '2017-05-01 03:03:28', 2, 5322, null, 4014803, '2711690359'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (140922, 2126, '0055595800001462', '2017-04-21 13:21:24', '2017-04-21 13:22:08', 4, null, null, 4004064, '2711690359'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (110809, 2072, '0051411400005612', '2017-01-18 09:44:07', '2017-05-01 10:28:42', 2, 3387, null, 3423529, '2710568915'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (110809, 2072, '0051411400005612', '2017-01-18 09:43:46', '2017-01-18 09:44:07', 4, null, null, 3423438, '2710568915'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (110809, 2072, '0051411400005612', '2017-05-01 10:28:42', '2500-01-01 00:00:00', 22, 3387, 192529, 4061183, '2710568915'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (123290, 2072, '0051411400007545', '2017-02-13 16:41:02', '2017-02-13 16:41:31', 4, null, null, 3633413, '2711278090'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (123290, 2072, '0051411400007545', '2017-02-13 16:41:31', '2017-05-01 17:23:52', 2, 4320, null, 3633434, '2711278090'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (123290, 2072, '0051411400007545', '2017-05-01 17:23:52', '2500-01-01 00:00:00', 22, 4320, 195405, 4062130, '2711278090'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (89915, 2093, '0050614100016322', '2016-11-21 10:27:50', '2016-11-21 10:31:17', 4, null, null, 2908985, '2151839037'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (89915, 2143, '0050614100016322', '2016-11-21 10:31:17', '2017-04-14 09:15:31', 2, 4767, null, 2909273, '2151839037'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (89915, 2143, '0050614100016322', '2017-04-14 09:15:31', '2017-05-01 23:56:42', 2, 5123, null, 3935272, '2151839037'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (89915, 2143, '0050614100016322', '2017-05-01 23:56:42', '2500-01-01 00:00:00', 22, 5123, 195406, 4062490, '2151839037'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (121606, 2052, '0041229400013971', '2017-02-08 10:28:42', '2017-05-01 06:41:14', 2, 4773, null, 3599548, '2711290764'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (121606, 2052, '0041229400013971', '2017-02-08 10:28:21', '2017-02-08 10:28:42', 4, null, null, 3599527, '2711290764'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (121606, 2052, '0041229400013971', '2017-05-01 06:41:14', '2500-01-01 00:00:00', 22, 4773, 195299, 4060704, '2711290764'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (121692, 2068, '0026435200000138', '2017-02-08 10:57:06', '2017-05-01 08:39:30', 2, 4310, null, 3600239, '7700026021'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (121692, 2068, '0026435200000138', '2017-02-08 10:56:50', '2017-02-08 10:57:06', 4, null, null, 3600228, '7700026021'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (121692, 2068, '0026435200000138', '2017-05-01 08:39:30', '2500-01-01 00:00:00', 22, 4310, 193612, 4060821, '7700026021'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (140721, 2123, '0055595800002302', '2017-05-01 10:44:00', '2500-01-01 00:00:00', 22, 3632, 195334, 4061239, '2711711455'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (140721, 2123, '0055595800002302', '2017-04-20 18:31:36', '2017-04-20 18:31:52', 4, null, null, 3999909, '2711711455'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (140721, 2123, '0055595800002302', '2017-04-20 18:31:52', '2017-05-01 10:44:00', 2, 3632, null, 3999939, '2711711455'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (125108, 2118, '0052926800001625', '2017-02-21 09:38:14', '2017-02-21 09:38:35', 4, null, null, 3683323, '7700060969'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (125108, 2118, '0052926800001625', '2017-02-21 09:38:35', '2017-05-01 11:04:59', 2, 4047, null, 3683353, '7700060969'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (125108, 2118, '0052926800001625', '2017-05-01 11:04:59', '2500-01-01 00:00:00', 22, 4047, 195331, 4061307, '7700060969'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (141136, 2123, '0055595800003610', '2017-05-01 12:01:43', '2500-01-01 00:00:00', 22, 3905, 195348, 4061462, '2711712843'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (141136, 2123, '0055595800003610', '2017-04-21 15:25:08', '2017-05-01 12:01:43', 2, 3905, null, 4006147, '2711712843'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (141136, 2123, '0055595800003610', '2017-04-21 15:24:43', '2017-04-21 15:25:08', 4, null, null, 4005995, '2711712843'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (141243, 2133, '0055570700001184', '2017-05-01 21:04:18', '2500-01-01 00:00:00', 22, 5968, 195407, 4062445, '2715729294'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (141243, 2133, '0055570700001184', '2017-04-21 15:46:48', '2017-04-21 15:47:01', 4, null, null, 4006789, '2715729294'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (141243, 2133, '0055570700001184', '2017-04-21 15:47:01', '2017-05-01 21:04:18', 2, 5968, null, 4006843, '2715729294'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (137900, 2123, '0055595500001383', '2017-05-01 08:53:13', '2500-01-01 00:00:00', 22, 5709, 195308, 4060879, '2715740263'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (137900, 2123, '0055595500001383', '2017-04-14 17:42:43', '2017-04-14 17:42:56', 4, null, null, 3943223, '2715740263'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (137900, 2123, '0055595500001383', '2017-04-14 17:42:56', '2017-05-01 08:53:13', 2, 5709, null, 3943253, '2715740263'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (141241, 2133, '0055570700001182', '2017-05-01 09:05:44', '2500-01-01 00:00:00', 22, 5968, 195222, 4060936, '2715711767'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (141241, 2133, '0055570700001182', '2017-04-21 15:46:48', '2017-04-21 15:47:01', 4, null, null, 4006783, '2715711767'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (141241, 2133, '0055570700001182', '2017-04-21 15:47:01', '2017-05-01 09:05:44', 2, 5968, null, 4006837, '2715711767'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (140771, 2124, '0055595800003832', '2017-05-01 09:10:15', '2500-01-01 00:00:00', 22, 3122, 195310, 4060957, '2711713818'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (140771, 2124, '0055595800003832', '2017-04-21 11:19:22', '2017-04-21 11:32:01', 4, null, null, 4002163, '2711713818'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (140771, 2124, '0055595800003832', '2017-04-21 11:32:01', '2017-05-01 09:10:15', 2, 3122, null, 4002291, '2711713818'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (138600, 2071, '0051411400004313', '2017-05-01 09:28:54', '2500-01-01 00:00:00', 22, 4224, 195320, 4061000, '2710573436'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (138600, 2071, '0051411400004313', '2017-04-18 13:26:53', '2017-05-01 09:28:54', 2, 4224, null, 3977791, '2710573436'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (138600, 2071, '0051411400004313', '2017-04-18 13:26:35', '2017-04-18 13:26:53', 4, null, null, 3977776, '2710573436'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (102046, 2072, '0051411400010936', '2016-12-26 13:25:18', '2016-12-29 20:08:43', 2, 4767, null, 3222750, '2711290150'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (102046, 2072, '0051411400010936', '2016-12-26 12:49:06', '2016-12-26 13:25:18', 4, null, null, 3221737, '2711290150'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (102046, 2072, '0051411400010936', '2016-12-29 20:08:43', '2017-05-01 17:42:14', 2, 4921, null, 3275627, '2711290150'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (102046, 2072, '0051411400010936', '2017-05-01 17:42:14', '2500-01-01 00:00:00', 22, 4921, 193796, 4062175, '2711290150'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (136336, 2126, '0055595800001508', '2017-04-12 11:43:25', '2017-04-12 11:43:47', 4, null, null, 3924987, '2711691456'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (136336, 2126, '0055595800001508', '2017-04-12 11:43:47', '2017-05-01 05:08:38', 2, 5683, null, 3925095, '2711691456'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (136336, 2126, '0055595800001508', '2017-05-01 05:08:38', '2500-01-01 00:00:00', 22, 5683, 195295, 4060651, '2711691456'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (143673, 2092, '0050614200001726', '2017-05-01 23:40:35', '2500-01-01 00:00:00', 22, 3407, 193925, 4062481, '2152007814'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (143673, 2092, '0050614200001726', '2017-04-28 09:54:29', '2017-05-01 23:40:35', 2, 3407, null, 4045801, '2152007814'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (143673, 2092, '0050614200001726', '2017-04-28 09:54:14', '2017-04-28 09:54:29', 4, null, null, 4045798, '2152007814'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (110804, 2072, '0051411400005608', '2017-01-18 09:44:07', '2017-05-01 11:08:05', 2, 3387, null, 3423514, '2710581293'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (110804, 2072, '0051411400005608', '2017-01-18 09:43:46', '2017-01-18 09:44:07', 4, null, null, 3423423, '2710581293'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (110804, 2072, '0051411400005608', '2017-05-01 11:08:05', '2500-01-01 00:00:00', 22, 3387, 192555, 4061322, '2710581293'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (77060, 2093, '0037566500001417', '2016-09-20 09:18:00', '2017-05-01 08:41:37', 2, 4668, null, 2632831, '2151296914'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (77060, 2093, '0037566500001417', '2016-09-20 09:17:43', '2016-09-20 09:18:00', 4, null, null, 2632819, '2151296914'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (77060, 2093, '0037566500001417', '2017-05-01 08:41:37', '2500-01-01 00:00:00', 22, 4668, 193974, 4060829, '2151296914'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (110816, 2072, '0051411400005661', '2017-01-18 09:44:07', '2017-05-01 13:37:48', 2, 3387, null, 3423550, '2710581068'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (110816, 2072, '0051411400005661', '2017-01-18 09:43:46', '2017-01-18 09:44:07', 4, null, null, 3423459, '2710581068'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (110816, 2072, '0051411400005661', '2017-05-01 13:37:48', '2500-01-01 00:00:00', 22, 3387, 192508, 4061668, '2710581068'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (128327, 2072, '0051411400014921', '2017-03-09 13:27:53', '2017-05-01 08:46:33', 2, 4239, null, 3766971, '2710644649'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (128327, 2072, '0051411400014921', '2017-03-09 13:27:31', '2017-03-09 13:27:53', 4, null, null, 3766949, '2710644649'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (128327, 2072, '0051411400014921', '2017-05-01 08:46:33', '2500-01-01 00:00:00', 22, 4239, 194303, 4060855, '2710644649'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (141248, 2133, '0055570700001189', '2017-05-01 21:56:15', '2500-01-01 00:00:00', 22, 5968, 195417, 4062457, '2713983934'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (141248, 2133, '0055570700001189', '2017-04-21 15:46:48', '2017-04-21 15:47:01', 4, null, null, 4006804, '2713983934'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (141248, 2133, '0055570700001189', '2017-04-21 15:47:01', '2017-05-01 21:56:15', 2, 5968, null, 4006858, '2713983934'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (135919, 2123, '0055595500000385', '2017-04-11 12:42:17', '2017-04-11 12:42:40', 4, null, null, 3919343, '2711710768'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (135919, 2123, '0055595500000385', '2017-04-11 12:42:40', '2017-05-01 17:40:01', 2, 3468, null, 3919358, '2711710768'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (135919, 2123, '0055595500000385', '2017-05-01 17:40:01', '2500-01-01 00:00:00', 22, 3468, 195391, 4062157, '2711710768'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (136701, 2126, '0055595800001677', '2017-04-13 14:35:15', '2017-04-13 14:35:34', 4, null, null, 3931620, '2711711459'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (136701, 2126, '0055595800001677', '2017-04-13 14:35:34', '2017-05-01 20:40:45', 2, 6864, null, 3931920, '2711711459'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (136701, 2126, '0055595800001677', '2017-05-01 20:40:45', '2500-01-01 00:00:00', 22, 6864, 195403, 4062432, '2711711459'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (140928, 2126, '0055595800001468', '2017-05-01 03:53:26', '2500-01-01 00:00:00', 22, 5320, 195060, 4060619, '2711690310'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (140928, 2126, '0055595800001468', '2017-04-21 13:22:08', '2017-04-24 09:57:54', 2, 5268, null, 4004147, '2711690310'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (140928, 2126, '0055595800001468', '2017-04-21 13:21:24', '2017-04-21 13:22:08', 4, null, null, 4004082, '2711690310'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (140928, 2126, '0055595800001468', '2017-04-24 09:57:54', '2017-05-01 03:53:26', 2, 5320, null, 4014534, '2711690310'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (110812, 2072, '0051411400005672', '2017-01-18 09:44:07', '2017-05-01 13:23:17', 2, 3387, null, 3423538, '2710583458'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (110812, 2072, '0051411400005672', '2017-01-18 09:43:46', '2017-01-18 09:44:07', 4, null, null, 3423447, '2710583458'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (110812, 2072, '0051411400005672', '2017-05-01 13:23:17', '2500-01-01 00:00:00', 22, 3387, 192518, 4061624, '2710583458'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (136395, 2093, '0050614100037403', '2017-04-12 12:57:27', '2017-04-12 12:57:44', 4, null, null, 3925766, '2152078159'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (136395, 2093, '0050614100037403', '2017-04-12 12:57:44', '2017-05-01 06:03:51', 2, 4412, null, 3925781, '2152078159'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (136395, 2093, '0050614100037403', '2017-05-01 06:03:51', '2500-01-01 00:00:00', 22, 4412, 194344, 4060690, '2152078159'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (143125, 2123, '0055595500001060', '2017-05-01 08:38:18', '2500-01-01 00:00:00', 22, 3876, 194349, 4060811, '2715739418'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (143125, 2123, '0055595500001060', '2017-04-27 11:35:42', '2017-05-01 08:38:18', 2, 3876, null, 4038154, '2715739418'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (143125, 2123, '0055595500001060', '2017-04-27 11:35:32', '2017-04-27 11:35:42', 4, null, null, 4038103, '2715739418'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (141246, 2133, '0055570700001187', '2017-05-01 09:34:41', '2500-01-01 00:00:00', 22, 5968, 195042, 4061017, '2715740608'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (141246, 2133, '0055570700001187', '2017-04-21 15:46:48', '2017-04-21 15:47:01', 4, null, null, 4006798, '2715740608'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (141246, 2133, '0055570700001187', '2017-04-21 15:47:01', '2017-05-01 09:34:41', 2, 5968, null, 4006852, '2715740608'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (143043, 2123, '0055595800002962', '2017-05-01 05:38:05', '2500-01-01 00:00:00', 22, 4616, 195294, 4060677, '2711712774'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (143043, 2123, '0055595800002962', '2017-04-27 10:05:28', '2017-04-27 10:05:46', 4, null, null, 4037096, '2711712774'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (143043, 2123, '0055595800002962', '2017-04-27 10:05:46', '2017-05-01 05:38:05', 2, 4616, null, 4037157, '2711712774'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (110807, 2072, '0051411400005609', '2017-01-18 09:44:07', '2017-05-01 11:31:32', 2, 3387, null, 3423523, '2710579313'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (110807, 2072, '0051411400005609', '2017-01-18 09:43:46', '2017-01-18 09:44:07', 4, null, null, 3423432, '2710579313'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (110807, 2072, '0051411400005609', '2017-05-01 11:31:32', '2500-01-01 00:00:00', 22, 3387, 192528, 4061381, '2710579313'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (140719, 2123, '0055595800002300', '2017-05-01 11:39:39', '2500-01-01 00:00:00', 22, 3632, 195345, 4061403, '2711712059'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (140719, 2123, '0055595800002300', '2017-04-20 18:31:36', '2017-04-20 18:31:52', 4, null, null, 3999903, '2711712059'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (140719, 2123, '0055595800002300', '2017-04-20 18:31:52', '2017-05-01 11:39:39', 2, 3632, null, 3999933, '2711712059'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (141134, 2123, '0055595800003608', '2017-05-01 12:06:22', '2500-01-01 00:00:00', 22, 3905, 195353, 4061476, '2711691786'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (141134, 2123, '0055595800003608', '2017-04-21 15:25:08', '2017-05-01 12:06:22', 2, 3905, null, 4006141, '2711691786'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (141134, 2123, '0055595800003608', '2017-04-21 15:24:43', '2017-04-21 15:25:08', 4, null, null, 4005989, '2711691786'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (108943, 2105, '0051097200005402', '2017-01-12 14:46:41', '2017-05-01 08:33:37', 2, 2343, null, 3382501, '2710607184'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (108943, 2105, '0051097200005402', '2017-01-12 14:46:17', '2017-01-12 14:46:41', 4, null, null, 3382449, '2710607184'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (108943, 2105, '0051097200005402', '2017-05-01 08:33:37', '2500-01-01 00:00:00', 22, 2343, 194541, 4060804, '2710607184'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (141247, 2133, '0055570700001188', '2017-05-01 08:45:30', '2500-01-01 00:00:00', 22, 5968, 195199, 4060849, '2715722138'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (141247, 2133, '0055570700001188', '2017-04-21 15:46:48', '2017-04-21 15:47:01', 4, null, null, 4006801, '2715722138'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (141247, 2133, '0055570700001188', '2017-04-21 15:47:01', '2017-05-01 08:45:30', 2, 5968, null, 4006855, '2715722138'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (136861, 2126, '0055595800000445', '2017-04-13 15:23:36', '2017-04-13 15:23:52', 4, null, null, 3932930, '2711690413'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (136861, 2126, '0055595800000445', '2017-04-13 15:23:52', '2017-04-14 11:39:53', 2, 5426, null, 3932972, '2711690413'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (136861, 2126, '0055595800000445', '2017-04-14 11:39:53', '2017-05-01 09:49:32', 2, 6069, null, 3936453, '2711690413'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (136861, 2126, '0055595800000445', '2017-05-01 09:49:32', '2500-01-01 00:00:00', 22, 6069, 195034, 4061047, '2711690413'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (139867, 2123, '0055595800001885', '2017-05-01 16:05:53', '2500-01-01 00:00:00', 22, 4037, 195314, 4061998, '2711691450'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (139867, 2123, '0055595800001885', '2017-04-19 11:27:30', '2017-04-19 11:27:57', 4, null, null, 3988717, '2711691450'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (139867, 2123, '0055595800001885', '2017-04-19 11:27:57', '2017-05-01 16:05:53', 2, 4037, null, 3988734, '2711691450'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (136337, 2126, '0055595800001509', '2017-04-12 11:43:25', '2017-04-12 11:43:47', 4, null, null, 3924990, '2711690820'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (136337, 2126, '0055595800001509', '2017-04-12 11:43:47', '2017-05-01 04:27:51', 2, 5683, null, 3925098, '2711690820'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (136337, 2126, '0055595800001509', '2017-05-01 04:27:51', '2500-01-01 00:00:00', 22, 5683, 195273, 4060629, '2711690820'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (136314, 2111, '0052256500007155', '2017-04-12 11:39:23', '2017-04-12 11:39:40', 4, null, null, 3924832, '7700039426'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (136314, 2111, '0052256500007155', '2017-04-12 11:39:40', '2017-05-01 22:42:27', 2, 5656, null, 3924868, '7700039426'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (136314, 2111, '0052256500007155', '2017-05-01 22:42:27', '2500-01-01 00:00:00', 22, 5656, 193818, 4062463, '7700039426'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (118457, 2093, '0050614100034066', '2017-02-02 17:17:08', '2017-02-02 17:19:12', 4, null, null, 3555633, '2151985496'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (118457, 2143, '0050614100034066', '2017-02-02 17:19:12', '2017-05-01 18:46:04', 2, 5900, null, 3555783, '2151985496'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (118457, 2143, '0050614100034066', '2017-05-01 18:46:04', '2500-01-01 00:00:00', 22, 5900, 191833, 4062236, '2151985496'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (61745, 2054, '0041664200006972', '2016-06-28 13:23:12', '2017-05-01 16:20:02', 2, 4505, null, 2115639, '2701366248'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (61745, 2054, '0041664200006972', '2016-06-23 13:02:50', '2016-06-23 13:03:38', 4, null, null, 2062126, '2701366248'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (61745, 2054, '0041664200006972', '2016-06-23 13:03:38', '2016-06-28 13:23:12', 2, 4505, null, 2062649, '2701366248'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (61745, 2054, '0041664200006972', '2017-05-01 16:20:02', '2500-01-01 00:00:00', 22, 4505, 189614, 4062033, '2701366248'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (140923, 2126, '0055595800001463', '2017-05-01 03:37:43', '2500-01-01 00:00:00', 22, 5320, 195051, 4060612, '2711692624'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (140923, 2126, '0055595800001463', '2017-04-21 13:22:08', '2017-04-24 09:56:31', 2, 5268, null, 4004132, '2711692624'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (140923, 2126, '0055595800001463', '2017-04-21 13:21:24', '2017-04-21 13:22:08', 4, null, null, 4004067, '2711692624'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (140923, 2126, '0055595800001463', '2017-04-24 09:56:31', '2017-05-01 03:37:43', 2, 5320, null, 4014524, '2711692624'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (115698, 2072, '0051411400013125', '2017-01-30 14:24:21', '2017-01-30 14:24:46', 4, null, null, 3520426, '2711291628'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (115698, 2072, '0051411400013125', '2017-01-30 14:24:46', '2017-03-16 10:22:11', 2, 5361, null, 3520473, '2711291628'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (115698, 2072, '0051411400013125', '2017-03-16 10:22:11', '2017-05-01 03:18:08', 2, 5382, null, 3803773, '2711291628'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (115698, 2072, '0051411400013125', '2017-05-01 03:18:08', '2500-01-01 00:00:00', 22, 5382, 194997, 4060605, '2711291628'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (110799, 2072, '0051411400005614', '2017-01-18 09:44:07', '2017-05-01 06:51:32', 2, 3387, null, 3423499, '2710600342'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (110799, 2072, '0051411400005614', '2017-01-18 09:43:46', '2017-01-18 09:44:07', 4, null, null, 3423408, '2710600342'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (110799, 2072, '0051411400005614', '2017-05-01 06:51:32', '2500-01-01 00:00:00', 22, 3387, 192558, 4060710, '2710600342'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (122371, 2072, '0051411400015811', '2017-02-09 13:00:29', '2017-05-01 08:21:14', 2, 5588, null, 3609476, '2711259913'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (122371, 2072, '0051411400015811', '2017-02-09 12:59:54', '2017-02-09 13:00:29', 4, null, null, 3609365, '2711259913'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (122371, 2072, '0051411400015811', '2017-05-01 08:21:14', '2500-01-01 00:00:00', 22, 5588, 191891, 4060778, '2711259913'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (143095, 2093, '0050614100039008', '2017-04-27 11:32:01', '2017-05-01 16:46:07', 2, 4320, null, 4037941, '2152120949'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (143095, 2093, '0050614100039008', '2017-05-01 16:46:07', '2500-01-01 00:00:00', 6, 4320, 195399, 4062075, '2152120949'); insert into scd_equip_kits (ID_EQUIP_KITS_INST, ID_EQUIP_KITS_TYPE, V_EXT_IDENT, DT_START, DT_STOP, ID_STATUS, ID_CONTRACT_INST, ID_DEALER_CLIENT, ID_REC, V_CAS_ID) values (143095, 2093, '0050614100039008', '2017-04-27 11:31:34', '2017-04-27 11:32:01', 4, null, null, 4037917, '2152120949'); insert into scd_equipment_kits_type (ID_EQUIP_KITS_TYPE, V_NAME, DT_START, DT_STOP, ID_REC) values (2052, 'Комплект Спутникового ТВ МТС №16 приемник DVB-S EKT DSD 4404, смарт-карта CAS Irdeto, услуга Спутникового ТВ на 1 год', '2015-07-24 01:00:00', '2015-08-11 01:00:00', 738077); insert into scd_equipment_kits_type (ID_EQUIP_KITS_TYPE, V_NAME, DT_START, DT_STOP, ID_REC) values (2052, 'Комплект Спутникового ТВ МТС №16 приемник DVB-S EKT DSD 4404, смарт-карта CAS Irdeto, услуга Спутникового ТВ на 1 год', '2015-08-11 01:00:00', '2015-09-30 01:00:00', 778743); insert into scd_equipment_kits_type (ID_EQUIP_KITS_TYPE, V_NAME, DT_START, DT_STOP, ID_REC) values (2054, 'Комплект Спутникового ТВ МТС №21 приемник DVB-S EKT DSD 4404, Антенна 0.6 серая, Конвертор, Кабель, смарт-карта CAS Irdeto, услуга Спутникового ТВ на 1 год, Коробка 790х670х140мм', '2015-08-11 01:00:00', '2015-09-30 01:00:00', 778804); insert into scd_equipment_kits_type (ID_EQUIP_KITS_TYPE, V_NAME, DT_START, DT_STOP, ID_REC) values (2052, 'Комплект Спутникового ТВ МТС №16 приемник DVB-S EKT DSD 4404, смарт-карта CAS Irdeto, услуга Спутникового ТВ на 1 год', '2015-09-30 01:00:00', '2016-01-11 00:00:00', 1000563); insert into scd_equipment_kits_type (ID_EQUIP_KITS_TYPE, V_NAME, DT_START, DT_STOP, ID_REC) values (2054, 'Комплект Спутникового ТВ МТС №21 приемник DVB-S EKT DSD 4404, Антенна 0.6 серая, Конвертор, Кабель, смарт-карта CAS Irdeto, услуга Спутникового ТВ на 1 год, Коробка 790х670х140мм', '2015-09-30 01:00:00', '2016-01-11 00:00:00', 1000572); insert into scd_equipment_kits_type (ID_EQUIP_KITS_TYPE, V_NAME, DT_START, DT_STOP, ID_REC) values (2052, 'Комплект Спутникового ТВ МТС №16 приемник DVB-S EKT DSD 4404, смарт-карта CAS Irdeto, услуга Спутникового ТВ на 1 год', '2016-01-11 00:00:00', '2017-05-16 01:00:00', 1264801); insert into scd_equipment_kits_type (ID_EQUIP_KITS_TYPE, V_NAME, DT_START, DT_STOP, ID_REC) values (2054, 'Комплект Спутникового ТВ МТС №21 приемник DVB-S EKT DSD 4404, Антенна 0.6 серая, Конвертор, Кабель, смарт-карта CAS Irdeto, услуга Спутникового ТВ на 1 год, Коробка 790х670х140мм', '2015-08-05 01:00:00', '2015-08-11 01:00:00', 763763); insert into scd_equipment_kits_type (ID_EQUIP_KITS_TYPE, V_NAME, DT_START, DT_STOP, ID_REC) values (2054, 'Комплект Спутникового ТВ МТС №21 приемник DVB-S EKT DSD 4404, Антенна 0.6 серая, Конвертор, Кабель, смарт-карта CAS Irdeto, услуга Спутникового ТВ на 1 год, Коробка 790х670х140мм', '2016-01-11 00:00:00', '2016-04-29 01:00:00', 1264790); insert into scd_equipment_kits_type (ID_EQUIP_KITS_TYPE, V_NAME, DT_START, DT_STOP, ID_REC) values (2068, 'Комплект Спутникового ТВ МТС №40 (Субсидирование) STB Dune HD TV 251-S2 MTS Lite Plus, SIM-карта, услуга Спутникового ТВ на 1 месяц', '2016-04-04 01:00:00', '2017-04-18 01:00:00', 1494428); insert into scd_equipment_kits_type (ID_EQUIP_KITS_TYPE, V_NAME, DT_START, DT_STOP, ID_REC) values (2071, 'Комплект Спутникового ТВ МТС №43 (Субсидирование) приемник DVB-S EKT DSD 4404, антенна 0.6 серая, конвертер, кабель, SMART-карта, услуга Спутникового ТВ на 1 месяц, коробка', '2016-04-14 01:00:00', '2017-03-30 01:00:00', 1532752); insert into scd_equipment_kits_type (ID_EQUIP_KITS_TYPE, V_NAME, DT_START, DT_STOP, ID_REC) values (2054, 'Комплект Спутникового ТВ МТС №21 приемник DVB-S EKT DSD 4404, Антенна 0.6 серая, Конвертор, Кабель, смарт-карта CAS Irdeto, услуга Спутникового ТВ на 1 год, Коробка 790х670х140мм', '2016-04-29 01:00:00', '2017-03-30 01:00:00', 1628741); insert into scd_equipment_kits_type (ID_EQUIP_KITS_TYPE, V_NAME, DT_START, DT_STOP, ID_REC) values (2133, 'Комплект Спутникового ТВ МТС №169 спутниковый приемник, SMART-карта, услуга Спутникового ТВ на 1 месяц', '2017-03-03 00:00:00', '2017-05-16 01:00:00', 3742736); insert into scd_equipment_kits_type (ID_EQUIP_KITS_TYPE, V_NAME, DT_START, DT_STOP, ID_REC) values (2105, 'Комплект Спутникового ТВ МТС №81', '2016-10-19 01:00:00', '2016-11-08 00:00:00', 2759468); insert into scd_equipment_kits_type (ID_EQUIP_KITS_TYPE, V_NAME, DT_START, DT_STOP, ID_REC) values (2054, 'Комплект Спутникового ТВ МТС №21 приемник DVB-S EKT DSD 4404, Антенна 0.6 серая, Конвертор, Кабель, смарт-карта CAS Irdeto, услуга Спутникового ТВ на 1 год, Коробка 790х670х140мм', '2017-03-30 01:00:00', '2017-05-16 01:00:00', 3864402); insert into scd_equipment_kits_type (ID_EQUIP_KITS_TYPE, V_NAME, DT_START, DT_STOP, ID_REC) values (2071, 'Комплект Спутникового ТВ МТС №43 (Субсидирование) приемник DVB-S EKT DSD 4404, антенна 0.6 серая, конвертер, кабель, SMART-карта, услуга Спутникового ТВ на 1 месяц, коробка', '2017-03-30 01:00:00', '2017-04-18 01:00:00', 3864415); insert into scd_equipment_kits_type (ID_EQUIP_KITS_TYPE, V_NAME, DT_START, DT_STOP, ID_REC) values (2124, 'Комплект Спутникового ТВ МТС №174 (Субсидирование) спутниковый приемник, антенна 0.6 серая, конвертер, кабель, SMART-карта, услуга Спутникового ТВ на 1', '2017-03-30 01:00:00', '2017-04-18 01:00:00', 3864395); insert into scd_equipment_kits_type (ID_EQUIP_KITS_TYPE, V_NAME, DT_START, DT_STOP, ID_REC) values (2118, 'Комплект Спутникового ТВ МТС №105 (Субсидирование)', '2017-04-18 01:00:00', '2017-05-16 01:00:00', 3986931); insert into scd_equipment_kits_type (ID_EQUIP_KITS_TYPE, V_NAME, DT_START, DT_STOP, ID_REC) values (2143, 'Комплект Спутникового ТВ МТС №47 (Субсидирование)', '2017-04-17 01:00:00', '2017-04-18 01:00:00', 3952948); insert into scd_equipment_kits_type (ID_EQUIP_KITS_TYPE, V_NAME, DT_START, DT_STOP, ID_REC) values (2123, 'Комплект Спутникового ТВ МТС №173 (Субсидирование) спутниковый приемник, антенна 0.6 красная, конвертер, кабель, SMART-карта, услуга Спутникового ТВ на 1 месяц, коробка', '2017-04-18 01:00:00', '2017-05-16 01:00:00', 3985241); insert into scd_equipment_kits_type (ID_EQUIP_KITS_TYPE, V_NAME, DT_START, DT_STOP, ID_REC) values (2093, 'Комплект Спутникового ТВ МТС №71 (легкий старт) модуль CAM Irdeto, смарт-карта CAS Irdeto, услуга Спутникового ТВ на 1 месяц', '2017-05-15 01:00:00', '2017-05-16 01:00:00', 4177200); insert into scd_equipment_kits_type (ID_EQUIP_KITS_TYPE, V_NAME, DT_START, DT_STOP, ID_REC) values (2092, 'Комплект Спутникового ТВ МТС №72 (лёгкий старт) модуль CAM Irdeto, антенна 0,6м красная, конвертер, смарт-карта CAS Irdeto, услуга Спутникового ТВ на 1 месяц, инт. коробка', '2016-10-10 01:00:00', '2017-05-15 01:00:00', 2722381); insert into scd_equipment_kits_type (ID_EQUIP_KITS_TYPE, V_NAME, DT_START, DT_STOP, ID_REC) values (2123, 'Комплект Спутникового ТВ МТС №173 (Субсидирование) спутниковый приемник, антенна 0.6 красная, конвертер, кабель, SMART-карта, услуга Спутникового ТВ на 1 месяц, коробка', '2017-03-02 00:00:00', '2017-04-18 01:00:00', 3737665); insert into scd_equipment_kits_type (ID_EQUIP_KITS_TYPE, V_NAME, DT_START, DT_STOP, ID_REC) values (2124, 'Комплект Спутникового ТВ МТС №174 (Субсидирование) спутниковый приемник, антенна 0.6 серая, конвертер, кабель, SMART-карта, услуга Спутникового ТВ на 1', '2017-03-02 00:00:00', '2017-03-30 01:00:00', 3737713); insert into scd_equipment_kits_type (ID_EQUIP_KITS_TYPE, V_NAME, DT_START, DT_STOP, ID_REC) values (2111, 'Комплект Спутникового ТВ МТС №94 (Субсидирование) приемник Huawei DS300а, SIM-карта, услуга Спутникового ТВ на 1 месяц', '2016-11-29 00:00:00', '2017-04-18 01:00:00', 2982237); insert into scd_equipment_kits_type (ID_EQUIP_KITS_TYPE, V_NAME, DT_START, DT_STOP, ID_REC) values (2072, 'Комплект Спутникового ТВ МТС №44 (Субсидирование) приемник DVB-S EKT DSD 4404, SMART-карта, услуга Спутникового ТВ на 1 месяц', '2016-04-14 01:00:00', '2017-04-18 01:00:00', 1532754); insert into scd_equipment_kits_type (ID_EQUIP_KITS_TYPE, V_NAME, DT_START, DT_STOP, ID_REC) values (2092, 'Комплект Спутникового ТВ МТС №72 (лёгкий старт) Комплект Спутникового ТВ МТС №72 (лёгкий старт) модуль CAM Irdeto, антенна 0,6м красная, конвертер, смарт-карта CAS Irdeto, услуга Спутникового ТВ на 1 месяц, инт. коробка', '2016-08-19 01:00:00', '2016-10-10 01:00:00', 2514675); insert into scd_equipment_kits_type (ID_EQUIP_KITS_TYPE, V_NAME, DT_START, DT_STOP, ID_REC) values (2126, 'Комплект Спутникового ТВ МТС №176 (Субсидирование) спутниковый приемник, SMART-карта, услуга Спутникового ТВ на 1 месяц', '2017-04-18 01:00:00', '2017-05-16 01:00:00', 3986584); insert into scd_equipment_kits_type (ID_EQUIP_KITS_TYPE, V_NAME, DT_START, DT_STOP, ID_REC) values (2124, 'Комплект Спутникового ТВ МТС №174 (Субсидирование) спутниковый приемник, антенна 0.6 серая, конвертер, кабель, SMART-карта, услуга Спутникового ТВ на 1', '2017-04-18 01:00:00', '2017-05-16 01:00:00', 3986597); insert into scd_equipment_kits_type (ID_EQUIP_KITS_TYPE, V_NAME, DT_START, DT_STOP, ID_REC) values (2068, 'Комплект Спутникового ТВ МТС №40 (Субсидирование)', '2017-04-18 01:00:00', '2017-05-16 01:00:00', 3986897); insert into scd_equipment_kits_type (ID_EQUIP_KITS_TYPE, V_NAME, DT_START, DT_STOP, ID_REC) values (2071, 'Комплект Спутникового ТВ МТС №43 (Субсидирование)', '2017-04-18 01:00:00', '2017-05-16 01:00:00', 3986862); insert into scd_equipment_kits_type (ID_EQUIP_KITS_TYPE, V_NAME, DT_START, DT_STOP, ID_REC) values (2072, 'Комплект Спутникового ТВ МТС №44 (Субсидирование)', '2017-04-18 01:00:00', '2017-05-16 01:00:00', 3986884); insert into scd_equipment_kits_type (ID_EQUIP_KITS_TYPE, V_NAME, DT_START, DT_STOP, ID_REC) values (2143, 'Комплект Спутникового ТВ МТС №47 (Субсидирование)', '2017-04-18 01:00:00', '2017-05-16 01:00:00', 3986892); insert into scd_equipment_kits_type (ID_EQUIP_KITS_TYPE, V_NAME, DT_START, DT_STOP, ID_REC) values (2105, 'Комплект Спутникового ТВ МТС №81', '2016-09-12 01:00:00', '2016-10-19 01:00:00', 2601629); insert into scd_equipment_kits_type (ID_EQUIP_KITS_TYPE, V_NAME, DT_START, DT_STOP, ID_REC) values (2105, 'Комплект Спутникового ТВ МТС №81', '2016-11-08 00:00:00', '2017-03-30 01:00:00', 2835368); insert into scd_equipment_kits_type (ID_EQUIP_KITS_TYPE, V_NAME, DT_START, DT_STOP, ID_REC) values (2118, 'Комплект Спутникового ТВ МТС №105 (Субсидирование) приемник Huawei DS300а, антенна 0.6 красная, конвертер, кабель, SIM-карта, услуга Спутникового ТВ на 1 месяц, коробка', '2017-01-27 00:00:00', '2017-04-18 01:00:00', 3498446); insert into scd_equipment_kits_type (ID_EQUIP_KITS_TYPE, V_NAME, DT_START, DT_STOP, ID_REC) values (2126, 'Комплект Спутникового ТВ МТС №176 (Субсидирование) спутниковый приемник, SMART-карта, услуга Спутникового ТВ на 1 месяц', '2017-03-02 00:00:00', '2017-04-18 01:00:00', 3737748); insert into scd_equipment_kits_type (ID_EQUIP_KITS_TYPE, V_NAME, DT_START, DT_STOP, ID_REC) values (2105, 'Комплект Спутникового ТВ МТС №81 (Субсидирование)', '2017-04-18 01:00:00', '2017-05-16 01:00:00', 3986907); insert into scd_equipment_kits_type (ID_EQUIP_KITS_TYPE, V_NAME, DT_START, DT_STOP, ID_REC) values (2111, 'Комплект Спутникового ТВ МТС №94 (Субсидирование)', '2017-04-18 01:00:00', '2017-05-16 01:00:00', 3986923); insert into scd_equipment_kits_type (ID_EQUIP_KITS_TYPE, V_NAME, DT_START, DT_STOP, ID_REC) values (2093, 'Комплект Спутникового ТВ МТС №71 (лёгкий старт) модуль CAM Irdeto, смарт-карта CAS Irdeto, услуга Спутникового ТВ на 1 месяц', '2016-08-19 01:00:00', '2017-05-15 01:00:00', 2514685); insert into scd_equipment_kits_type (ID_EQUIP_KITS_TYPE, V_NAME, DT_START, DT_STOP, ID_REC) values (2105, 'Комплект Спутникового ТВ МТС №81 (Субсидирование) приемник DVB-S EKT DSD 4404, антенна 0.6 серая, конвертер, смарт-карта CAS IRDETO, услуга Спутникового ТВ на 1 месяц, уст. коробка', '2017-03-30 01:00:00', '2017-04-18 01:00:00', 3864419); insert into scd_equipment_kits_type (ID_EQUIP_KITS_TYPE, V_NAME, DT_START, DT_STOP, ID_REC) values (2092, 'Комплект Спутникового ТВ МТС №72 (легкий старт) модуль CAM Irdeto, антенна 0,6м красная, конвертер, смарт-карта CAS Irdeto, услуга Спутникового ТВ на 1 месяц, инт. коробка', '2017-05-15 01:00:00', '2017-05-16 01:00:00', 4177203); insert into scd_equipment_kits_type (ID_EQUIP_KITS_TYPE, V_NAME, DT_START, DT_STOP, ID_REC) values (2118, 'Комплект Спутникового ТВ МТС №105 (Субсидирование) приемник Huawei DS300а, антенна 0.6 красная, конвертер, кабель, SIM-карта, услуга Спутникового ТВ на 1 месяц, коробка', '2017-05-16 01:00:00', '2017-10-12 01:00:00', 4192710); insert into scd_equipment_kits_type (ID_EQUIP_KITS_TYPE, V_NAME, DT_START, DT_STOP, ID_REC) values (2068, 'Комплект Спутникового ТВ МТС №40 (Субсидирование) STB Dune HD TV 251-S2 MTS Lite Plus, SIM-карта, услуга Спутникового ТВ на 1 месяц', '2017-05-16 01:00:00', '2017-10-12 01:00:00', 4192801); insert into scd_equipment_kits_type (ID_EQUIP_KITS_TYPE, V_NAME, DT_START, DT_STOP, ID_REC) values (2071, 'Комплект Спутникового ТВ МТС №43 (Субсидирование) приемник DVB-S EKT DSD 4404, антенна 0.6 серая, конвертер, кабель, SMART-карта, услуга Спутникового ТВ на 1 месяц, коробка', '2017-05-16 01:00:00', '2017-12-01 00:00:00', 4192807); insert into scd_equipment_kits_type (ID_EQUIP_KITS_TYPE, V_NAME, DT_START, DT_STOP, ID_REC) values (2072, 'Комплект Спутникового ТВ МТС №44 (Субсидирование) приемник DVB-S EKT DSD 4404, SMART-карта, услуга Спутникового ТВ на 1 месяц', '2017-05-16 01:00:00', '2017-12-01 00:00:00', 4192809); insert into scd_equipment_kits_type (ID_EQUIP_KITS_TYPE, V_NAME, DT_START, DT_STOP, ID_REC) values (2093, 'Комплект Спутникового ТВ МТС №71 (легкий старт) модуль CAM Irdeto, смарт-карта CAS Irdeto, услуга Спутникового ТВ на 1 месяц', '2017-05-16 01:00:00', '2017-06-08 01:00:00', 4192866); insert into scd_equipment_kits_type (ID_EQUIP_KITS_TYPE, V_NAME, DT_START, DT_STOP, ID_REC) values (2092, 'Комплект Спутникового ТВ МТС №72 (легкий старт) модуль CAM Irdeto, антенна 0,6м красная, конвертер, смарт-карта CAS Irdeto, услуга Спутникового ТВ на 1 месяц, коробка', '2017-05-16 01:00:00', '2017-12-01 00:00:00', 4192869); insert into scd_equipment_kits_type (ID_EQUIP_KITS_TYPE, V_NAME, DT_START, DT_STOP, ID_REC) values (2111, 'Комплект Спутникового ТВ МТС №94 (Субсидирование) приемник Huawei DS300а, SIM-карта, услуга Спутникового ТВ на 1 месяц', '2017-10-18 01:00:00', '2018-05-04 01:00:00', 5749316); insert into scd_equipment_kits_type (ID_EQUIP_KITS_TYPE, V_NAME, DT_START, DT_STOP, ID_REC) values (2068, 'Комплект Спутникового ТВ МТС №40 (Субсидирование) STB Dune HD TV 251-S2 MTS Lite Plus, SIM-карта, услуга Спутникового ТВ на 1 месяц', '2017-10-19 01:00:00', '2018-05-04 01:00:00', 5765802); insert into scd_equipment_kits_type (ID_EQUIP_KITS_TYPE, V_NAME, DT_START, DT_STOP, ID_REC) values (2143, 'Комплект Спутникового ТВ МТС №47 (Субсидирование) модуль CAM IRDETO, SMART-карта, услуга Спутникового ТВ на 1 месяц', '2017-11-01 00:00:00', '2018-04-28 01:00:00', 5963396); insert into scd_equipment_kits_type (ID_EQUIP_KITS_TYPE, V_NAME, DT_START, DT_STOP, ID_REC) values (2093, 'Комплект Спутникового ТВ МТС №71 (легкий старт) модуль CAM Irdeto, смарт-карта CAS Irdeto, услуга Спутникового ТВ на 1 месяц', '2017-11-02 00:00:00', '2017-12-01 00:00:00', 5974979); insert into scd_equipment_kits_type (ID_EQUIP_KITS_TYPE, V_NAME, DT_START, DT_STOP, ID_REC) values (2133, 'Комплект Спутникового ТВ МТС №169 спутниковый приемник, SMART-карта, услуга Спутникового ТВ на 1 месяц', '2017-05-16 01:00:00', '2017-12-01 00:00:00', 4192755); insert into scd_equipment_kits_type (ID_EQUIP_KITS_TYPE, V_NAME, DT_START, DT_STOP, ID_REC) values (2123, 'Комплект Спутникового ТВ МТС №173 (Субсидирование) спутниковый приемник, антенна 0.6 красная, конвертер, кабель, SMART-карта, услуга Спутникового ТВ на 1 месяц, коробка', '2017-05-16 01:00:00', '2017-12-01 00:00:00', 4192759); insert into scd_equipment_kits_type (ID_EQUIP_KITS_TYPE, V_NAME, DT_START, DT_STOP, ID_REC) values (2124, 'Комплект Спутникового ТВ МТС №174 (Субсидирование) спутниковый приемник, антенна 0.6 серая, конвертер, кабель, SMART-карта, услуга Спутникового ТВ на 1 месяц, коробка', '2017-05-16 01:00:00', '2017-12-01 00:00:00', 4192761); insert into scd_equipment_kits_type (ID_EQUIP_KITS_TYPE, V_NAME, DT_START, DT_STOP, ID_REC) values (2126, 'Комплект Спутникового ТВ МТС №176 (Субсидирование) спутниковый приемник, SMART-карта, услуга Спутникового ТВ на 1 месяц', '2017-05-16 01:00:00', '2017-12-01 00:00:00', 4192765); insert into scd_equipment_kits_type (ID_EQUIP_KITS_TYPE, V_NAME, DT_START, DT_STOP, ID_REC) values (2143, 'Комплект Спутникового ТВ МТС №47 (Субсидирование) модуль CAM IRDETO, SMART-карта, услуга Спутникового ТВ на 1 месяц', '2017-05-16 01:00:00', '2017-06-06 01:00:00', 4248005); insert into scd_equipment_kits_type (ID_EQUIP_KITS_TYPE, V_NAME, DT_START, DT_STOP, ID_REC) values (2111, 'Комплект Спутникового ТВ МТС №94 (Субсидирование) приемник Huawei DS300а, SIM-карта, услуга Спутникового ТВ на 1 месяц', '2017-05-16 01:00:00', '2017-10-12 01:00:00', 4192897); insert into scd_equipment_kits_type (ID_EQUIP_KITS_TYPE, V_NAME, DT_START, DT_STOP, ID_REC) values (2143, 'Комплект Спутникового ТВ МТС №47 (Субсидирование) модуль CAM IRDETO, SMART-карта, услуга Спутникового ТВ на 1 месяц', '2017-06-06 01:00:00', '2017-11-01 00:00:00', 4395298); insert into scd_equipment_kits_type (ID_EQUIP_KITS_TYPE, V_NAME, DT_START, DT_STOP, ID_REC) values (2093, 'Комплект Спутникового ТВ МТС №71 (легкий старт) модуль CAM Irdeto, смарт-карта CAS Irdeto, услуга Спутникового ТВ на 1 месяц', '2017-06-08 01:00:00', '2017-08-14 01:00:00', 4424072); insert into scd_equipment_kits_type (ID_EQUIP_KITS_TYPE, V_NAME, DT_START, DT_STOP, ID_REC) values (2093, 'Комплект Спутникового ТВ МТС №71 (легкий старт) модуль CAM Irdeto, смарт-карта CAS Irdeto, услуга Спутникового ТВ на 1 месяц', '2017-08-14 01:00:00', '2017-11-02 00:00:00', 5005796); insert into scd_equipment_kits_type (ID_EQUIP_KITS_TYPE, V_NAME, DT_START, DT_STOP, ID_REC) values (2118, '(ВЫКУП) Комплект Спутникового ТВ МТС №105 (Субсидирование) приемник Huawei DS300а, антенна 0.6 красная, конвертер, кабель, SIM-карта, услуга Спутникового ТВ на 1 месяц, коробка', '2017-10-12 01:00:00', '2017-10-18 01:00:00', 5679954); insert into scd_equipment_kits_type (ID_EQUIP_KITS_TYPE, V_NAME, DT_START, DT_STOP, ID_REC) values (2068, '(ВЫКУП) Комплект Спутникового ТВ МТС №40 (Субсидирование) STB Dune HD TV 251-S2 MTS Lite Plus, SIM-карта, услуга Спутникового ТВ на 1 месяц', '2017-10-12 01:00:00', '2017-10-19 01:00:00', 5680031); insert into scd_equipment_kits_type (ID_EQUIP_KITS_TYPE, V_NAME, DT_START, DT_STOP, ID_REC) values (2111, '(ВЫКУП) Комплект Спутникового ТВ МТС №94 (Субсидирование) приемник Huawei DS300а, SIM-карта, услуга Спутникового ТВ на 1 месяц', '2017-10-12 01:00:00', '2017-10-18 01:00:00', 5680033); insert into scd_equipment_kits_type (ID_EQUIP_KITS_TYPE, V_NAME, DT_START, DT_STOP, ID_REC) values (2105, 'Комплект Спутникового ТВ МТС №81 (Субсидирование) приемник DVB-S EKT DSD 4404, антенна 0.6 серая, конвертер, смарт-карта CAS IRDETO, услуга Спутникового ТВ на 1 месяц, уст. коробка', '2017-05-16 01:00:00', '2017-12-01 00:00:00', 4192885); insert into scd_equipment_kits_type (ID_EQUIP_KITS_TYPE, V_NAME, DT_START, DT_STOP, ID_REC) values (2118, 'Комплект Спутникового ТВ МТС №105 (Субсидирование) приемник Huawei DS300а, антенна 0.6 красная, конвертер, кабель, SIM-карта, услуга Спутникового ТВ на 1 месяц, коробка', '2017-10-18 01:00:00', '2018-05-04 01:00:00', 5748958); insert into scd_equipment_kits_type (ID_EQUIP_KITS_TYPE, V_NAME, DT_START, DT_STOP, ID_REC) values (2052, 'Комплект Спутникового ТВ МТС №16 приемник DVB-S EKT DSD 4404, смарт-карта CAS Irdeto, услуга Спутникового ТВ на 1 год', '2017-05-16 01:00:00', '2017-12-01 00:00:00', 4192744); insert into scd_equipment_kits_type (ID_EQUIP_KITS_TYPE, V_NAME, DT_START, DT_STOP, ID_REC) values (2054, 'Комплект Спутникового ТВ МТС №21 приемник DVB-S EKT DSD 4404, Антенна 0.6 серая, Конвертор, Кабель, смарт-карта CAS Irdeto, услуга Спутникового ТВ на 1 год, Коробка', '2017-05-16 01:00:00', '2017-12-01 00:00:00', 4192786); insert into scd_equipment_kits_type (ID_EQUIP_KITS_TYPE, V_NAME, DT_START, DT_STOP, ID_REC) values (2052, 'Комплект Спутникового ТВ МТС №16 приемник DVB-S EKT DSD 4404, смарт-карта CAS Irdeto, услуга Спутникового ТВ на 1 год', '2017-12-01 00:00:00', '2018-04-18 01:00:00', 6578843); insert into scd_equipment_kits_type (ID_EQUIP_KITS_TYPE, V_NAME, DT_START, DT_STOP, ID_REC) values (2105, 'Комплект Спутникового ТВ МТС №81 (Субсидирование) приемник DVB-S EKT DSD 4404, антенна 0.6 серая, конвертер, смарт-карта CAS IRDETO, услуга Спутникового ТВ на 1 месяц, уст. коробка', '2017-12-01 00:00:00', '2500-01-01 00:00:00', 6592124); insert into scd_equipment_kits_type (ID_EQUIP_KITS_TYPE, V_NAME, DT_START, DT_STOP, ID_REC) values (2124, 'Комплект Спутникового ТВ МТС №174 (Субсидирование) спутниковый приемник, антенна 0.6 серая, конвертер, кабель, SMART-карта, услуга Спутникового ТВ на 1 месяц, коробка', '2017-12-01 00:00:00', '2500-01-01 00:00:00', 6591623); insert into scd_equipment_kits_type (ID_EQUIP_KITS_TYPE, V_NAME, DT_START, DT_STOP, ID_REC) values (2071, 'Комплект Спутникового ТВ МТС №43 (Субсидирование) приемник DVB-S EKT DSD 4404, антенна 0.6 серая, конвертер, кабель, SMART-карта, услуга Спутникового ТВ на 1 месяц, коробка', '2017-12-01 00:00:00', '2500-01-01 00:00:00', 6591883); insert into scd_equipment_kits_type (ID_EQUIP_KITS_TYPE, V_NAME, DT_START, DT_STOP, ID_REC) values (2123, 'Комплект Спутникового ТВ МТС №173 (Субсидирование) спутниковый приемник, антенна 0.6 красная, конвертер, кабель, SMART-карта, услуга Спутникового ТВ на 1 месяц, коробка', '2017-12-01 00:00:00', '2018-05-04 01:00:00', 6578487); insert into scd_equipment_kits_type (ID_EQUIP_KITS_TYPE, V_NAME, DT_START, DT_STOP, ID_REC) values (2093, 'Комплект Спутникового ТВ МТС №71 (легкий старт) модуль CAM Irdeto, смарт-карта CAS Irdeto, услуга Спутникового ТВ на 1 месяц', '2017-12-01 00:00:00', '2018-04-18 01:00:00', 6592332); insert into scd_equipment_kits_type (ID_EQUIP_KITS_TYPE, V_NAME, DT_START, DT_STOP, ID_REC) values (2126, 'Комплект Спутникового ТВ МТС №176 (Субсидирование) спутниковый приемник, SMART-карта, услуга Спутникового ТВ на 1 месяц', '2017-12-01 00:00:00', '2500-01-01 00:00:00', 6578534); insert into scd_equipment_kits_type (ID_EQUIP_KITS_TYPE, V_NAME, DT_START, DT_STOP, ID_REC) values (2133, 'Комплект Спутникового ТВ МТС №169 спутниковый приемник, SMART-карта, услуга Спутникового ТВ на 1 месяц', '2017-12-01 00:00:00', '2018-04-18 01:00:00', 6578718); insert into scd_equipment_kits_type (ID_EQUIP_KITS_TYPE, V_NAME, DT_START, DT_STOP, ID_REC) values (2092, 'Комплект Спутникового ТВ МТС №72 (легкий старт) модуль CAM Irdeto, антенна 0,6м красная, конвертер, смарт-карта CAS Irdeto, услуга Спутникового ТВ на 1 месяц, коробка', '2017-12-01 00:00:00', '2500-01-01 00:00:00', 6579021); insert into scd_equipment_kits_type (ID_EQUIP_KITS_TYPE, V_NAME, DT_START, DT_STOP, ID_REC) values (2054, 'Комплект Спутникового ТВ МТС №21 приемник DVB-S EKT DSD 4404, Антенна 0.6 серая, Конвертор, Кабель, смарт-карта CAS Irdeto, услуга Спутникового ТВ на 1 год, Коробка', '2017-12-01 00:00:00', '2018-04-18 01:00:00', 6591718); insert into scd_equipment_kits_type (ID_EQUIP_KITS_TYPE, V_NAME, DT_START, DT_STOP, ID_REC) values (2072, 'Комплект Спутникового ТВ МТС №44 (Субсидирование) приемник DVB-S EKT DSD 4404, SMART-карта, услуга Спутникового ТВ на 1 месяц', '2017-12-01 00:00:00', '2500-01-01 00:00:00', 6591892); insert into scd_equipment_kits_type (ID_EQUIP_KITS_TYPE, V_NAME, DT_START, DT_STOP, ID_REC) values (2123, 'Комплект Спутникового ТВ МТС №173 (Субсидирование) спутниковый приемник, антенна 0.6 красная, конвертер, кабель, SMART-карта, услуга Спутникового ТВ на 1 месяц, коробка', '2018-05-04 01:00:00', '2500-01-01 00:00:00', 9981431); insert into scd_equipment_kits_type (ID_EQUIP_KITS_TYPE, V_NAME, DT_START, DT_STOP, ID_REC) values (2133, 'Комплект Спутникового ТВ МТС №169 спутниковый приемник, SMART-карта, услуга Спутникового ТВ на 1 месяц', '2018-04-18 01:00:00', '2500-01-01 00:00:00', 9695443); insert into scd_equipment_kits_type (ID_EQUIP_KITS_TYPE, V_NAME, DT_START, DT_STOP, ID_REC) values (2052, 'Комплект Спутникового ТВ МТС №16 приемник DVB-S EKT DSD 4404, смарт-карта CAS Irdeto, услуга Спутникового ТВ на 1 год', '2018-04-18 01:00:00', '2500-01-01 00:00:00', 9695720); insert into scd_equipment_kits_type (ID_EQUIP_KITS_TYPE, V_NAME, DT_START, DT_STOP, ID_REC) values (2054, 'Комплект Спутникового ТВ МТС №21 приемник DVB-S EKT DSD 4404, Антенна 0.6 серая, Конвертор, Кабель, смарт-карта CAS Irdeto, услуга Спутникового ТВ на 1 год, Коробка', '2018-04-18 01:00:00', '2500-01-01 00:00:00', 9695746); insert into scd_equipment_kits_type (ID_EQUIP_KITS_TYPE, V_NAME, DT_START, DT_STOP, ID_REC) values (2093, 'Комплект Спутникового ТВ МТС №71 (легкий старт) модуль CAM Irdeto, смарт-карта CAS Irdeto, услуга Спутникового ТВ на 1 месяц', '2018-04-18 01:00:00', '2500-01-01 00:00:00', 9696084); insert into scd_equipment_kits_type (ID_EQUIP_KITS_TYPE, V_NAME, DT_START, DT_STOP, ID_REC) values (2143, 'Комплект Спутникового ТВ МТС №47 (Субсидирование) модуль CAM IRDETO, SMART-карта, услуга Спутникового ТВ на 1 месяц', '2018-04-28 01:00:00', '2500-01-01 00:00:00', 9885076); insert into scd_equipment_kits_type (ID_EQUIP_KITS_TYPE, V_NAME, DT_START, DT_STOP, ID_REC) values (2068, 'Комплект Спутникового ТВ МТС №40 (Субсидирование) STB Dune HD TV 251-S2 MTS Lite Plus, SIM-карта, услуга Спутникового ТВ на 1 месяц', '2018-05-04 01:00:00', '2500-01-01 00:00:00', 9981385); insert into scd_equipment_kits_type (ID_EQUIP_KITS_TYPE, V_NAME, DT_START, DT_STOP, ID_REC) values (2118, 'Комплект Спутникового ТВ МТС №105 (Субсидирование) приемник Huawei DS300а, антенна 0.6 красная, конвертер, кабель, SIM-карта, услуга Спутникового ТВ на 1 месяц, коробка', '2018-05-04 01:00:00', '2500-01-01 00:00:00', 9981359); insert into scd_equipment_kits_type (ID_EQUIP_KITS_TYPE, V_NAME, DT_START, DT_STOP, ID_REC) values (2111, 'Комплект Спутникового ТВ МТС №94 (Субсидирование) приемник Huawei DS300а, SIM-карта, услуга Спутникового ТВ на 1 месяц', '2018-05-04 01:00:00', '2500-01-01 00:00:00', 9981370); insert into SCD_EQUIPMENT_STATUS (ID_EQUIPMENT_STATUS, V_NAME, V_DESCR, B_DELETED, V_EXT_IDENT) values (1, 'Склад', 'На складе оператора', 0, 'STORE'); insert into SCD_EQUIPMENT_STATUS (ID_EQUIPMENT_STATUS, V_NAME, V_DESCR, B_DELETED, V_EXT_IDENT) values (2, 'Дилер', 'Передано дилеру', 0, 'DEALER'); insert into SCD_EQUIPMENT_STATUS (ID_EQUIPMENT_STATUS, V_NAME, V_DESCR, B_DELETED, V_EXT_IDENT) values (3, 'Аренда', 'Выдан в аренду абоненту', 0, 'LEASE'); insert into SCD_EQUIPMENT_STATUS (ID_EQUIPMENT_STATUS, V_NAME, V_DESCR, B_DELETED, V_EXT_IDENT) values (4, 'Резерв', 'Резерв на складе оператора', 0, 'RESERVED'); insert into SCD_EQUIPMENT_STATUS (ID_EQUIPMENT_STATUS, V_NAME, V_DESCR, B_DELETED, V_EXT_IDENT) values (5, 'Неисправно', null, 0, 'BROKEN'); insert into SCD_EQUIPMENT_STATUS (ID_EQUIPMENT_STATUS, V_NAME, V_DESCR, B_DELETED, V_EXT_IDENT) values (6, 'Утеряно', null, 0, 'LOST'); insert into SCD_EQUIPMENT_STATUS (ID_EQUIPMENT_STATUS, V_NAME, V_DESCR, B_DELETED, V_EXT_IDENT) values (22, 'Продано', null, 0, 'REDEEM'); insert into SCD_EQUIPMENT_STATUS (ID_EQUIPMENT_STATUS, V_NAME, V_DESCR, B_DELETED, V_EXT_IDENT) values (21, 'Возврат', null, 0, 'RETURN'); insert into SCD_EQUIPMENT_STATUS (ID_EQUIPMENT_STATUS, V_NAME, V_DESCR, B_DELETED, V_EXT_IDENT) values (41, 'Ожидает возврата', 'Ожидает возврата', 0, 'WAIT_RETURN');
/* Navicat MySQL Data Transfer Source Server : bendi Source Server Version : 50713 Source Host : localhost:3306 Source Database : node Target Server Type : MYSQL Target Server Version : 50713 File Encoding : 65001 Date: 2018-03-25 22:13:07 */ SET FOREIGN_KEY_CHECKS=0; -- ---------------------------- -- Table structure for `stuser` -- ---------------------------- DROP TABLE IF EXISTS `stuser`; CREATE TABLE `stuser` ( `id` int(11) NOT NULL AUTO_INCREMENT, `uname` varchar(50) NOT NULL, `upass` varchar(32) NOT NULL, PRIMARY KEY (`id`) ) ENGINE=InnoDB AUTO_INCREMENT=10 DEFAULT CHARSET=utf8; -- ---------------------------- -- Records of stuser -- ---------------------------- INSERT INTO `stuser` VALUES ('6', 'zhangsan', 'e10adc3949ba59abbe56e057f20f883e'); INSERT INTO `stuser` VALUES ('7', 'lisi', '202cb962ac59075b964b07152d234b70'); INSERT INTO `stuser` VALUES ('8', 'wanwu', '202cb962ac59075b964b07152d234b70'); INSERT INTO `stuser` VALUES ('9', 'lll', '202cb962ac59075b964b07152d234b70');
CREATE TABLE folders ( folder_id INTEGER PRIMARY KEY GENERATED BY DEFAULT AS IDENTITY, folder_title TEXT NOT NULL UNIQUE ); CREATE TABLE notes ( note_id INTEGER PRIMARY KEY GENERATED BY DEFAULT AS IDENTITY , note_name TEXT NOT NULL, note_content TEXT NOT NULL, folder_id INTEGER REFERENCES folders(folder_id) NOT NULL );
INSERT INTO tuf_petreg_licence_oper VALUES ('NPDID for TUF', 'NPDID for selskap', 'STATPIPE', 'GASSCO AS', 'STATPIPE', 123940, 1944954, '9999-12-31', '2013-05-08'); INSERT INTO tuf_petreg_licence_oper VALUES ('NPDID for TUF', 'NPDID for selskap', 'NORPIPE OIL AS', 'Phillips Petroleum Company Norway', 'NORPIPE OLJELEDNING', 124133, 694, '9999-12-31', '2013-05-08'); INSERT INTO tuf_petreg_licence_oper VALUES ('NPDID for TUF', 'NPDID for selskap', 'NORPIPE GASSRR', 'GASSCO AS', 'NORPIPE GASSLEDNING', 124165, 1944954, '9999-12-31', '2013-05-08'); INSERT INTO tuf_petreg_licence_oper VALUES ('NPDID for TUF', 'NPDID for selskap', 'OSEBERG GASSTRANSPORT', 'GASSCO AS', 'OSEBERG GASSTRANSPORT', 124170, 1944954, '9999-12-31', '2013-05-08'); INSERT INTO tuf_petreg_licence_oper VALUES ('NPDID for TUF', 'NPDID for selskap', 'FRANPIPE', 'GASSCO AS', 'FRANPIPE', 124202, 1944954, '9999-12-31', '2013-05-08'); INSERT INTO tuf_petreg_licence_oper VALUES ('NPDID for TUF', 'NPDID for selskap', 'SGARD TRANSPORT', 'GASSCO AS', 'SGARD TRANSPORT', 124211, 1944954, '9999-12-31', '2013-05-08'); INSERT INTO tuf_petreg_licence_oper VALUES ('NPDID for TUF', 'NPDID for selskap', 'ZEEPIPE', 'GASSCO AS', 'ZEEPIPE', 124227, 1944954, '9999-12-31', '2013-05-08'); INSERT INTO tuf_petreg_licence_oper VALUES ('NPDID for TUF', 'NPDID for selskap', 'ZEEPIPE FASE II-A', 'GASSCO AS', 'ZEEPIPE IIA', 124244, 1944954, '9999-12-31', '2013-05-08'); INSERT INTO tuf_petreg_licence_oper VALUES ('NPDID for TUF', 'NPDID for selskap', 'ZEEPIPE FASE II-B', 'GASSCO AS', 'ZEEPIPE IIB', 124253, 1944954, '9999-12-31', '2013-05-08'); INSERT INTO tuf_petreg_licence_oper VALUES ('NPDID for TUF', 'NPDID for selskap', 'EUROPIPE', 'GASSCO AS', 'EUROPIPE I', 124262, 1944954, '9999-12-31', '2013-05-08'); INSERT INTO tuf_petreg_licence_oper VALUES ('NPDID for TUF', 'NPDID for selskap', 'VESTERLED', 'GASSCO AS', 'VESTERLED', 124280, 1944954, '9999-12-31', '2013-05-08'); INSERT INTO tuf_petreg_licence_oper VALUES ('NPDID for TUF', 'NPDID for selskap', 'ULA', 'BP Norge AS', 'ULA OLJETRANSPORT', 124285, 2052695, '9999-12-31', '2013-05-08'); INSERT INTO tuf_petreg_licence_oper VALUES ('NPDID for TUF', 'NPDID for selskap', 'HALTENPIPE', 'Statoil ASA', 'HALTENPIPE', 124293, 17237803, '9999-12-31', '2013-05-08'); INSERT INTO tuf_petreg_licence_oper VALUES ('NPDID for TUF', 'NPDID for selskap', 'OSEBERG TRANSPORT SYSTEM (OTS)', 'Statoil Petroleum AS', 'OSEBERG TRANSPORTSYSTEM', 124301, 17237817, '9999-12-31', '2013-05-08'); INSERT INTO tuf_petreg_licence_oper VALUES ('NPDID for TUF', 'NPDID for selskap', 'SLEIPNER ST KONDENSAT', 'Statoil ASA (old)', 'SLEIPNER KONDENSATRR', 124340, 1622484, '9999-12-31', '2013-05-08'); INSERT INTO tuf_petreg_licence_oper VALUES ('NPDID for TUF', 'NPDID for selskap', 'KOLLSNES GASSBEHANDLINGSANLEGG', 'GASSCO AS', 'KOLLSNES GASSANLEGG', 124354, 1944954, '9999-12-31', '2013-05-08'); INSERT INTO tuf_petreg_licence_oper VALUES ('NPDID for TUF', 'NPDID for selskap', 'KVITEBJRN OLJETRANSPORT SYSTEM', 'Statoil Petroleum AS', 'KVITEBJRN OLJERR', 917586, 17237817, '9999-12-31', '2013-05-08'); INSERT INTO tuf_petreg_licence_oper VALUES ('NPDID for TUF', 'NPDID for selskap', 'NORNE GASSTRANSPORTSYSTEM', 'GASSCO AS', 'NORNE GASSTRANSPORT', 1035984, 1944954, '9999-12-31', '2013-05-08'); INSERT INTO tuf_petreg_licence_oper VALUES ('NPDID for TUF', 'NPDID for selskap', 'KVITEBJRN GASSTRANSPORT SYSTEM', 'GASSCO AS', 'KVITEBJRN GASSRR', 2417249, 1944954, '9999-12-31', '2013-05-08'); INSERT INTO tuf_petreg_licence_oper VALUES ('NPDID for TUF', 'NPDID for selskap', 'LANGELED', 'GASSCO AS', 'LANGELED', 2450169, 1944954, '9999-12-31', '2013-05-08'); INSERT INTO tuf_petreg_licence_oper VALUES ('NPDID for TUF', 'NPDID for selskap', 'EUROPIPE II', 'GASSCO AS', 'EUROPIPE II', 2454909, 1944954, '9999-12-31', '2013-05-08'); INSERT INTO tuf_petreg_licence_oper VALUES ('NPDID for TUF', 'NPDID for selskap', 'TAMPEN LINK', 'GASSCO AS', 'TAMPEN LINK', 3113815, 1944954, '9999-12-31', '2013-05-08'); INSERT INTO tuf_petreg_licence_oper VALUES ('NPDID for TUF', 'NPDID for selskap', 'GASSBEHANDLINGSANLEGGENE P KRST', 'GASSCO AS', 'KRST GASSANLEGG', 3471786, 1944954, '9999-12-31', '2013-05-08'); INSERT INTO tuf_petreg_licence_oper VALUES ('NPDID for TUF', 'NPDID for selskap', 'GJA GAS PIPELINE', 'GASSCO AS', 'GJA GASSRR', 4480765, 1944954, '9999-12-31', '2013-05-08');
DROP TABLE IF EXISTS todos; CREATE TABLE todos ( todo_id UUID NOT NULL PRIMARY KEY, title TEXT NOT NULL, comments TEXT NOT NULL, added BIGINT NOT NULL ); INSERT INTO todos (todo_id, title, comments, added) VALUES ('fcad8e94-5f9c-4fdb-a4ba-b72a5b5d6dcf', 'Buy milk', 'Purchase milk on way home tonight', 1440891530595);
-- phpMyAdmin SQL Dump -- version 4.8.5 -- https://www.phpmyadmin.net/ -- -- Host: localhost -- Generation Time: 22-Jul-2021 às 02:17 -- Versão do servidor: 8.0.13-4 -- versão do PHP: 7.2.24-0ubuntu0.18.04.8 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: `1f5i81rhsI` -- -- CREATE DATABASE IF NOT EXISTS `1f5i81rhsI` DEFAULT CHARACTER SET utf8 COLLATE utf8_unicode_ci; -- USE `1f5i81rhsI`; -- -------------------------------------------------------- -- -- Estrutura da tabela `logs` -- CREATE TABLE `logs` ( `id` int(11) NOT NULL, `date` varchar(25) COLLATE utf8_unicode_ci NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -------------------------------------------------------- -- -- Estrutura da tabela `profiles` -- CREATE TABLE `profiles` ( `id` int(11) NOT NULL, `profile` text COLLATE utf8_unicode_ci NOT NULL, `round` int(11) NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_unicode_ci; -- -- Indexes for dumped tables -- -- -- Indexes for table `logs` -- ALTER TABLE `logs` ADD PRIMARY KEY (`id`); -- -- Indexes for table `profiles` -- ALTER TABLE `profiles` ADD PRIMARY KEY (`id`) USING BTREE, ADD KEY `round` (`round`); -- -- AUTO_INCREMENT for dumped tables -- -- -- AUTO_INCREMENT for table `logs` -- ALTER TABLE `logs` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; -- -- AUTO_INCREMENT for table `profiles` -- ALTER TABLE `profiles` MODIFY `id` int(11) NOT NULL AUTO_INCREMENT; -- -- Constraints for dumped tables -- -- -- Limitadores para a tabela `profiles` -- ALTER TABLE `profiles` ADD CONSTRAINT `profiles_ibfk_1` FOREIGN KEY (`round`) REFERENCES `logs` (`id`) ON DELETE RESTRICT ON UPDATE RESTRICT; 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 */;
-- UNIQUE Constraint CREATE TABLE people( id serial PRIMARY KEY, first_name VARCHAR(50), email VARCHAR(100) UNIQUE -- every email has to be unique ); INSERT INTO people(id,first_name,email) VALUES(1,'Peter','Peter@Peter.com'); SELECT * FROM people; -- Fails constraint, email is not unique INSERT INTO people(id,first_name,email) VALUES(2,'Ralph','Peter@Peter.com');
-- phpMyAdmin SQL Dump -- version 5.0.2 -- https://www.phpmyadmin.net/ -- -- Servidor: 127.0.0.1 -- Tiempo de generación: 26-08-2020 a las 22:56:36 -- Versión del servidor: 10.4.14-MariaDB -- Versión de PHP: 7.4.9 SET SQL_MODE = "NO_AUTO_VALUE_ON_ZERO"; START TRANSACTION; SET time_zone = "+00:00"; /*!40101 SET @OLD_CHARACTER_SET_CLIENT=@@CHARACTER_SET_CLIENT */; /*!40101 SET @OLD_CHARACTER_SET_RESULTS=@@CHARACTER_SET_RESULTS */; /*!40101 SET @OLD_COLLATION_CONNECTION=@@COLLATION_CONNECTION */; /*!40101 SET NAMES utf8mb4 */; -- -- Base de datos: `prueba` -- -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `datos` -- CREATE TABLE `datos` ( `nombre` varchar(50) COLLATE utf8_spanish_ci NOT NULL, `correo` varchar(50) COLLATE utf8_spanish_ci NOT NULL, `contraseña` varchar(50) COLLATE utf8_spanish_ci NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_spanish_ci; -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `datos_1` -- CREATE TABLE `datos_1` ( `id` text COLLATE utf8_spanish_ci NOT NULL, `direccion` text COLLATE utf8_spanish_ci NOT NULL, `celular` text COLLATE utf8_spanish_ci NOT NULL, `fecha` varchar(50) COLLATE utf8_spanish_ci NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_spanish_ci; -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `datos_2` -- CREATE TABLE `datos_2` ( `nombre` varchar(50) COLLATE utf8_spanish_ci NOT NULL, `correo` varchar(50) COLLATE utf8_spanish_ci NOT NULL, `contraseña` varchar(50) COLLATE utf8_spanish_ci NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_spanish_ci; -- -------------------------------------------------------- -- -- Estructura de tabla para la tabla `datos_3` -- CREATE TABLE `datos_3` ( `nombre` varchar(50) COLLATE utf8_spanish_ci NOT NULL, `apellido` varchar(50) COLLATE utf8_spanish_ci NOT NULL, `id` varchar(50) COLLATE utf8_spanish_ci NOT NULL ) ENGINE=InnoDB DEFAULT CHARSET=utf8 COLLATE=utf8_spanish_ci; 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 */;
-- General SQL statement examples -- How many payment transactions were > $5? SELECT COUNT(amount) FROM payment WHERE amount > 5; -- How many actors have a first name staring with P? SELECT COUNT(*) FROM actor WHERE first_name LIKE 'P%'; -- How many unique customer districts? SELECT COUNT(DISTINCT district) FROM address; -- Retrieve list of unique district names SELECT DISTINCT district from address; -- How many films are rated R, -- and have replacement cost of $5-15? SELECT COUNT(*) FROM film WHERE rating = 'R' AND replacement_cost BETWEEN 5 AND 15; -- How many film titles contain "Truman"? SELECT COUNT(*) FROM film WHERE title LIKE '%Truman%'
/* Formatted on 17/06/2014 18:06:02 (QP5 v5.227.12220.39754) */ CREATE OR REPLACE FORCE VIEW MCRE_OWN.V_MCRE0_ST_ABI_ELABORATI ( ID_DPER, COD_ABI_ISTITUTO, DTA_ELABORAZIONE, TMS_ULTIMA_ELABORAZIONE ) AS WITH T_MCRE0_FL_ABI_ELABORATI AS (SELECT (SELECT TO_NUMBER ( TO_CHAR ( TO_DATE (TRIM (PERIODO_RIF), 'DDMMYYYY'), 'YYYYMMDD')) FROM TE_MCRE0_ABI_IDT WHERE ROWNUM = 1) AS ID_DPER, LPAD (FA0_ABI_IST, 5, 0) AS COD_ABI_ISTITUTO, TO_DATE (FA0_DAT_ELA, 'DDMMYYYY') AS DTA_ELABORAZIONE, FA0_ULT_TMS AS TMS_ULTIMA_ELABORAZIONE FROM TE_MCRE0_ABI_INC WHERE FND_MCRE0_is_numeric (FA0_ABI_IST) = 1 AND FND_MCRE0_is_date (FA0_DAT_ELA) = 1) SELECT "ID_DPER", "COD_ABI_ISTITUTO", "DTA_ELABORAZIONE", "TMS_ULTIMA_ELABORAZIONE" FROM (SELECT COUNT (1) OVER (PARTITION BY ID_DPER, COD_ABI_ISTITUTO) NUM_RECS, ID_DPER, COD_ABI_ISTITUTO, DTA_ELABORAZIONE, TMS_ULTIMA_ELABORAZIONE FROM T_MCRE0_FL_ABI_ELABORATI) tmp WHERE NUM_RECS = 1 AND TRIM (TO_CHAR (ID_DPER)) IS NOT NULL AND TRIM (TO_CHAR (COD_ABI_ISTITUTO)) IS NOT NULL; GRANT SELECT ON MCRE_OWN.V_MCRE0_ST_ABI_ELABORATI TO MCRE_USR;
CREATE TABLE [ERP].[LetraPagar] ( [ID] INT IDENTITY (1, 1) NOT NULL, [IdProveedor] INT NULL, [IdEmpresa] INT NULL, [FechaEmision] DATETIME NULL, [FechaVencimiento] DATETIME NULL, [Numero] VARCHAR (20) NULL, [DiasVencimiento] INT NULL, [Porcentaje] DECIMAL (14, 5) NULL, [Monto] DECIMAL (14, 5) NULL, [UsuarioRegistro] VARCHAR (250) NULL, [UsuarioModifico] VARCHAR (250) NULL, [FechaRegistro] DATETIME NULL, [FechaModificado] DATETIME NULL, [Serie] VARCHAR (4) NULL, [IdMoneda] INT NULL, PRIMARY KEY CLUSTERED ([ID] ASC), FOREIGN KEY ([IdEmpresa]) REFERENCES [ERP].[Empresa] ([ID]), CONSTRAINT [FK__LetraPaga__IdPro__1AB66418] FOREIGN KEY ([IdProveedor]) REFERENCES [ERP].[Proveedor] ([ID]) );
/*!40101 SET NAMES binary*/; /*!40014 SET FOREIGN_KEY_CHECKS=0*/; CREATE TABLE `TipoInfraccion` ( `idTipoInfraccion` int(11) NOT NULL, `Descripcion` varchar(200) NOT NULL, PRIMARY KEY (`idTipoInfraccion`) ) ENGINE=InnoDB DEFAULT CHARSET=utf8;
ALTER TABLE transactions DROP COLUMN balance;
CREATE TABLE todo ( id serial primary key, completed boolean, created_at timestamp, title varchar(200) ); CREATE TABLE role ( role_id serial PRIMARY KEY, role_name VARCHAR(50) NOT NULL, is_active BOOLEAN NOT NULL ); CREATE TABLE account ( account_id SERIAL PRIMARY KEY, user_name VARCHAR(100) NOT NULL, login VARCHAR(100) UNIQUE, password VARCHAR(100) NOT NULL, creation_date TIMESTAMP NOT NULL, last_login_date TIMESTAMP, is_active boolean NOT NULL, account_external_id INTEGER NOT NULL ); CREATE TABLE account_role ( account_id INTEGER REFERENCES account(account_id), role_id INTEGER REFERENCES role(role_id), PRIMARY KEY(account_id, role_id) ); CREATE TABLE contest ( contest_id serial primary key, name varchar(255) not null, contest_start timestamp not null, contest_end timestamp not null, is_active boolean not null, duration_for_person_in_days integer not null ); CREATE TABLE participation ( participation_id SERIAL PRIMARY KEY, account_id INTEGER NOT NULL REFERENCES account(account_id), contest_id INTEGER NOT NULL REFERENCES contest(contest_id), user_participation_end TIMESTAMP, UNIQUE(account_id, contest_id) ); CREATE TABLE task ( task_id serial PRIMARY KEY, contest_id integer REFERENCES contest(contest_id), task_text text NOT NULL, creation_date timestamp NOT NULL, time_limit integer NOT NULL, memory_limit integer NOT NULL, tries_limit integer NOT NULL, title varchar(100) NOT NULL, is_chat BOOLEAN NOT NULL ); CREATE TABLE test ( test_id serial PRIMARY KEY, task_id integer REFERENCES task(task_id), test_input text NOT NULL, expected_output text NOT NULL, title varchar(100) ); CREATE TABLE smoke_test ( test_id serial PRIMARY KEY, task_id integer REFERENCES task(task_id), test_input text NOT NULL, expected_output text NOT NULL, title varchar(100), author integer REFERENCES account(account_id) ); CREATE TABLE solution ( solution_id serial PRIMARY KEY, task_id integer REFERENCES task(task_id) NOT NULL, solution_text text NOT NULL, language_id varchar(50) NOT NULL, status_id varchar(75) NOT NULL, creation_date timestamp NOT NULL, account_id INTEGER REFERENCES account(account_id) NOT NULL ); CREATE INDEX idx_solution_account_id on solution(account_id); CREATE TABLE message ( message_id SERIAL PRIMARY KEY, message_text VARCHAR(500) NOT NULL, sender_id INTEGER REFERENCES account(account_id), receiver_id INTEGER REFERENCES account(account_id), task_id INTEGER REFERENCES task(task_id), creation_date TIMESTAMP NOT NULL, is_watched BOOLEAN NOT NULL ); CREATE INDEX idx_message_receiver_id on message(receiver_id, sender_id); CREATE TABLE browser_code ( browser_code_id SERIAL PRIMARY KEY, account_id INTEGER NOT NULL REFERENCES account(account_id), task_id INTEGER NOT NULL REFERENCES task(task_id), solution_text text, language_id varchar(50) NOT NULL ); CREATE INDEX idx_browser_code_account_id on browser_code(account_id); CREATE TABLE task_description ( task_description_id serial PRIMARY KEY, task_id integer REFERENCES task(task_id), sample_input text, sample_output text, notes text ); CREATE TABLE test_batch ( test_batch_id serial PRIMARY KEY, account_id INTEGER REFERENCES account(account_id) ); CREATE TABLE browser_test_check ( browser_test_id serial PRIMARY KEY, test_batch_id integer REFERENCES test_batch(test_batch_id), test_id integer REFERENCES smoke_test(test_id), status_id varchar(75) NOT NULL, test_output text );
/*Želimo da sustav onemogući da nekog suca delegiram na više od 10 utakmica nekog natjecanja u jednoj sezoni*/ /*Funkcija vraća broj koliko je utakmica neki sudac odsudio u nekom natjecanju.*/ CREATE OR REPLACE FUNCTION sudacJudgeNUtakmica(new_sudac_id IN NUMBER, new_utakmica_id IN NUMBER) RETURN NUMBER IS broj NUMBER; CURSOR sudbroj IS SELECT COUNT(sudenje.id_sudac) FROM sudenje JOIN utakmica ON sudenje.id_utakmica = utakmica.id JOIN natjecanje ON utakmica.id_natjecanje = natjecanje.id WHERE natjecanje.id = (SELECT utakmica.id_natjecanje FROM utakmica WHERE utakmica.id = new_utakmica_id) AND sudenje.id_sudac = new_sudac_id; BEGIN OPEN sudbroj; FETCH sudbroj INTO broj; CLOSE sudbroj; RETURN broj; END sudacJudgeNUtakmica; / /*Okidač koji će prije unošenja novog retka za suđenje provjeriti je li sudac na određenom natjecanju već odsudio 10 utakmica.*/ CREATE OR REPLACE TRIGGER sudac_deset_trigger BEFORE INSERT ON sudenje FOR EACH ROW DECLARE sudac_odsudio_deset_ex EXCEPTION; BEGIN IF (sudacJudgeNUtakmica(:NEW.id_sudac, :NEW.id_utakmica) >= 10) THEN RAISE sudac_odsudio_deset_ex; END IF; EXCEPTION WHEN sudac_odsudio_deset_ex THEN raise_application_error (-20001,'Sudac je odsudio već 10 utakmica u zadanom natjecanju.'); END; -- Provjera da li okidač ispravno radi: -- provjeru vršimo za sljedeće natjecanje koje se već nalazi u bazi: -- insert into natjecanje values (9, 'Premier League', (TO_DATE('2004/08/24', 'yyyy/mm/dd')), (TO_DATE('2005/05/11', 'yyyy/mm/dd')), '2004/2005', 1); -- moramo najprije unijeti 11 utakmica kako bi mogli unijeti 11 suđenja: /* insert into utakmica (id, datum, id_natjecanje, id_domacini, id_gosti) values (30, (TO_DATE('2004/09/21', 'yyyy/mm/dd')), 9, 1, 2); insert into utakmica (id, datum, id_natjecanje, id_domacini, id_gosti) values (31, (TO_DATE('2004/09/22', 'yyyy/mm/dd')), 9, 3, 2); insert into utakmica (id, datum, id_natjecanje, id_domacini, id_gosti) values (32, (TO_DATE('2004/09/23', 'yyyy/mm/dd')), 9, 4, 2); insert into utakmica (id, datum, id_natjecanje, id_domacini, id_gosti) values (33, (TO_DATE('2004/09/24', 'yyyy/mm/dd')), 9, 1, 2); insert into utakmica (id, datum, id_natjecanje, id_domacini, id_gosti) values (34, (TO_DATE('2004/09/25', 'yyyy/mm/dd')), 9, 1, 3); insert into utakmica (id, datum, id_natjecanje, id_domacini, id_gosti) values (35, (TO_DATE('2004/09/26', 'yyyy/mm/dd')), 9, 1, 4); insert into utakmica (id, datum, id_natjecanje, id_domacini, id_gosti) values (36, (TO_DATE('2004/09/27', 'yyyy/mm/dd')), 9, 3, 2); insert into utakmica (id, datum, id_natjecanje, id_domacini, id_gosti) values (37, (TO_DATE('2004/09/28', 'yyyy/mm/dd')), 9, 4, 2); insert into utakmica (id, datum, id_natjecanje, id_domacini, id_gosti) values (38, (TO_DATE('2004/09/29', 'yyyy/mm/dd')), 9, 1, 2); insert into utakmica (id, datum, id_natjecanje, id_domacini, id_gosti) values (39, (TO_DATE('2004/09/30', 'yyyy/mm/dd')), 9, 1, 3); insert into utakmica (id, datum, id_natjecanje, id_domacini, id_gosti) values (40, (TO_DATE('2004/10/01', 'yyyy/mm/dd')), 9, 1, 4); */ -- sudac mora biti na listi za to natjecanje: -- insert into lista (id_sudac, id_natjecanje) values (1, 9); -- unosimo 11 redaka za suđenje, na 11 unosu bi se trebala dogoditi iznimka: /* insert into sudenje (id_utakmica, id_sudac, id_uloga, ocjena) values (30, 1, 1, 34); insert into sudenje (id_utakmica, id_sudac, id_uloga, ocjena) values (31, 1, 1, 25); insert into sudenje (id_utakmica, id_sudac, id_uloga, ocjena) values (32, 1, 1, 67); insert into sudenje (id_utakmica, id_sudac, id_uloga, ocjena) values (33, 1, 1, 67); insert into sudenje (id_utakmica, id_sudac, id_uloga, ocjena) values (34, 1, 1, 43); insert into sudenje (id_utakmica, id_sudac, id_uloga, ocjena) values (35, 1, 1, 56); insert into sudenje (id_utakmica, id_sudac, id_uloga, ocjena) values (36, 1, 1, 65); insert into sudenje (id_utakmica, id_sudac, id_uloga, ocjena) values (37, 1, 1, 90); insert into sudenje (id_utakmica, id_sudac, id_uloga, ocjena) values (38, 1, 1, 21); insert into sudenje (id_utakmica, id_sudac, id_uloga, ocjena) values (39, 1, 1, 56); insert into sudenje (id_utakmica, id_sudac, id_uloga, ocjena) values (40, 1, 1, 78); */
CREATE TABLE "producttype" ( "nr" NUMBER PRIMARY KEY, "label" VARCHAR2(100), "comment" CLOB, "parent" NUMBER, "publisher" NUMBER, "publishDate" date ); CREATE TABLE "productfeature" ( "nr" int PRIMARY KEY NOT NULL, "label" VARCHAR2(100), "comment" CLOB, "publisher" NUMBER, "publishDate" date ); CREATE TABLE "producer" ( "nr" int PRIMARY KEY NOT NULL, "label" VARCHAR2(100), "comment" CLOB, "homepage" VARCHAR2(100), "country" char(2), "publisher" int, "publishDate" date ); CREATE TABLE "person" ( "nr" int PRIMARY KEY NOT NULL, "name" VARCHAR2(30), "mbox_sha1sum" char(40), "country" char(2), "publisher" int, "publishDate" date ); CREATE TABLE "product" ( "nr" int PRIMARY KEY NOT NULL, "label" VARCHAR2(100), "comment" CLOB, "producer" int, "propertyNum1" int, "propertyNum2" int, "propertyNum3" int, "propertyNum4" int, "propertyNum5" int, "propertyNum6" int, "propertyTex1" VARCHAR2(250), "propertyTex2" VARCHAR2(250), "propertyTex3" VARCHAR2(250), "propertyTex4" VARCHAR2(250), "propertyTex5" VARCHAR2(250), "propertyTex6" VARCHAR2(250), "publisher" int, "publishDate" date ); CREATE TABLE "vendor" ( "nr" int PRIMARY KEY NOT NULL, "label" VARCHAR2(100), "comment" CLOB, "homepage" VARCHAR2(100), "country" char(2), "publisher" int, "publishDate" date ); CREATE TABLE "producttypeproduct" ( "product" int NOT NULL, "productType" int NOT NULL, CONSTRAINT "ptp_pk" PRIMARY KEY ("product", "productType"), CONSTRAINT "ptp_product_nr_fk" FOREIGN KEY ("product") REFERENCES "product" ("nr"), CONSTRAINT "ptp_producttype_nr_fk" FOREIGN KEY ("productType") REFERENCES "producttype" ("nr") ); CREATE TABLE "productfeatureproduct" ( "product" int NOT NULL, "productFeature" int NOT NULL, CONSTRAINT "pfp_pk" PRIMARY KEY ("product", "productFeature"), CONSTRAINT "pfp_product_fk" FOREIGN KEY ("product") REFERENCES "product" ("nr"), CONSTRAINT "pfp_productfeature_nr_fk" FOREIGN KEY ("productFeature") REFERENCES "productfeature" ("nr") ); CREATE TABLE "review" ( "nr" int PRIMARY KEY NOT NULL, "product" int, "producer" int, "person" int, "reviewDate" TIMESTAMP, "title" VARCHAR2(200), "text" CLOB, "language" char(2), "rating1" int, "rating2" int, "rating3" int, "rating4" int, "publisher" int, "publishDate" date, CONSTRAINT "review_product_nr_fk" FOREIGN KEY ("product") REFERENCES "product" ("nr"), CONSTRAINT "review_producer_nr_fk" FOREIGN KEY ("producer") REFERENCES "producer" ("nr"), CONSTRAINT "review_person_nr_fk" FOREIGN KEY ("person") REFERENCES "person" ("nr") ); CREATE TABLE "offer" ( "nr" int PRIMARY KEY NOT NULL, "product" int, "producer" int, "vendor" int, "price" decimal(10,2), "validFrom" timestamp, "validTo" timestamp, "deliveryDays" int, "offerWebpage" VARCHAR2(100), "publisher" int, "publishDate" date, CONSTRAINT "offer_product_nr_fk" FOREIGN KEY ("product") REFERENCES "product" ("nr"), CONSTRAINT "offer_producer_nr_fk" FOREIGN KEY ("producer") REFERENCES "producer" ("nr"), CONSTRAINT "offer_vendor_nr_fk" FOREIGN KEY ("vendor") REFERENCES "vendor" ("nr") );
drop table if exists authors; create table authors( id bigint not null auto_increment, firstname varchar(32) not null, lastname varchar(32) not null, primary key(id)); drop table if exists genres; create table genres(id bigint not null auto_increment, title varchar(32) not null, primary key(id)); drop table if exists books; create table books( id bigint not null auto_increment, title varchar(32) not null, author_id bigint not null, genre_id bigint not null, primary key(id), constraint fk_books_authors foreign key(author_id) references authors(id), constraint fk_books_genres foreign key(genre_id) references genres(id)); create unique index unicNameAuthor on authors(firstname, lastname); create unique index unicTitleBook on books(title); create unique index unicTitleGenre on genres(title); DROP TABLE IF EXISTS Roles; CREATE TABLE IF NOT EXISTS Users ( id BIGINT NOT NULL AUTO_INCREMENT, username VARCHAR(45) NOT NULL, name VARCHAR(45) NOT NULL, surname VARCHAR(45) NOT NULL, email VARCHAR(45) NOT NULL, encoded_password VARCHAR(45) NOT NULL, phone VARCHAR(45) NULL, sent_sms VARCHAR(45) NULL, account_non_expired BIT NULL, account_non_locked BIT NULL, credentials_non_expired BIT NULL, enabled BIT NULL, PRIMARY KEY (id), UNIQUE INDEX email_user_unique_index (email ASC), UNIQUE INDEX username_user_unique_index (username ASC)); DROP TABLE IF EXISTS Roles; CREATE TABLE IF NOT EXISTS Roles(user_id BIGINT NOT NULL, role VARCHAR(45) NULL, CONSTRAINT fk_Roles_User FOREIGN KEY (user_id) REFERENCES Users (id)); DROP TABLE IF EXISTS acl_entry; DROP TABLE IF EXISTS acl_object_identity; DROP TABLE IF EXISTS acl_sid; DROP TABLE IF EXISTS acl_class; CREATE TABLE acl_sid( id BIGINT NOT NULL PRIMARY KEY auto_increment, principal TINYINT(1) NOT NULL, sid VARCHAR(100) NOT NULL, CONSTRAINT unique_uk_1 UNIQUE(sid, principal)); CREATE TABLE acl_class( id BIGINT NOT NULL PRIMARY KEY auto_increment, class VARCHAR(100) NOT NULL, CONSTRAINT unique_uk_2 UNIQUE(class)); CREATE TABLE acl_object_identity( id BIGINT PRIMARY KEY auto_increment, object_id_class BIGINT NOT NULL, object_id_identity BIGINT NOT NULL, parent_object BIGINT, owner_sid BIGINT, entries_inheriting TINYINT(1) NOT NULL, CONSTRAINT unique_uk_3 UNIQUE(object_id_class, object_id_identity), CONSTRAINT foreign_fk_1 FOREIGN KEY(parent_object) REFERENCES acl_object_identity(id), CONSTRAINT foreign_fk_2 FOREIGN KEY(object_id_class) REFERENCES acl_class(id), CONSTRAINT foreign_fk_3 FOREIGN KEY(owner_sid) REFERENCES acl_sid(id)); CREATE TABLE acl_entry( id BIGINT PRIMARY KEY auto_increment, acl_object_identity BIGINT NOT NULL, ace_order INT NOT NULL, sid BIGINT NOT NULL, mask INTEGER NOT NULL, granting TINYINT(1) NOT NULL, audit_success TINYINT(1) NOT NULL, audit_failure TINYINT(1) NOT NULL, CONSTRAINT unique_uk_4 UNIQUE(acl_object_identity, ace_order), CONSTRAINT foreign_fk_4 FOREIGN KEY(acl_object_identity) REFERENCES acl_object_identity(id), CONSTRAINT foreign_fk_5 FOREIGN KEY(sid) REFERENCES acl_sid(id));
/* Navicat Premium Data Transfer Source Server : my_cloud_sql Source Server Type : MySQL Source Server Version : 80021 Source Host : 112.74.99.22:3306 Source Schema : course_center Target Server Type : MySQL Target Server Version : 80021 File Encoding : 65001 Date: 24/09/2020 17:01:53 */ SET NAMES utf8mb4; SET FOREIGN_KEY_CHECKS = 0; -- ---------------------------- -- Table structure for t_course -- ---------------------------- DROP TABLE IF EXISTS `t_course`; CREATE TABLE `t_course` ( `id` int(0) NOT NULL AUTO_INCREMENT, `name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NOT NULL, `teacher_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL, `cover` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL, `class_name` varchar(255) CHARACTER SET utf8mb4 COLLATE utf8mb4_general_ci NULL DEFAULT NULL, `is_enabled` tinyint(0) NULL DEFAULT NULL, `user_id` int(0) NULL DEFAULT NULL, PRIMARY KEY (`id`) USING BTREE ) ENGINE = InnoDB AUTO_INCREMENT = 28 CHARACTER SET = utf8mb4 COLLATE = utf8mb4_general_ci ROW_FORMAT = Dynamic; -- ---------------------------- -- Records of t_course -- ---------------------------- INSERT INTO `t_course` VALUES (1, '微服务技术', '许莫淇', 'https://student-manage-ll.oss-cn-beijing.aliyuncs.com/micro-service/7f41b776db0ef26d6bb4d92c61435bcc.jpg', '软件1851', 0, 1); INSERT INTO `t_course` VALUES (2, '前端框架技术', '许莫淇', 'https://student-manage-ll.oss-cn-beijing.aliyuncs.com/micro-service/qianduankuangjia.jpg', '软件1851', 1, 1); INSERT INTO `t_course` VALUES (3, '工业软件后端架构技术', '许莫淇', 'https://student-manage-ll.oss-cn-beijing.aliyuncs.com/micro-service/houduanruanjianjiagou.jpg', '软件1851', 0, 1); INSERT INTO `t_course` VALUES (4, 'web开发', '许莫淇', 'https://student-manage-ll.oss-cn-beijing.aliyuncs.com/micro-service/web.jpg', '软件1851', 1, 4); INSERT INTO `t_course` VALUES (5, '面向对象高级程序设计', '许莫淇', 'https://student-manage-ll.oss-cn-beijing.aliyuncs.com/micro-service/mianxiangduixianggaoji.jpg', '软件1851', 1, 4); INSERT INTO `t_course` VALUES (6, '面向对象程序设计', '许莫淇', 'https://student-manage-ll.oss-cn-beijing.aliyuncs.com/micro-service/mianxiangduixiang.jpg', '软件1851', 1, 1); INSERT INTO `t_course` VALUES (7, '学习园地', '许莫淇', 'https://student-manage-ll.oss-cn-beijing.aliyuncs.com/micro-service/xuxiyuandi.jpg', '软件1851', 1, 1); INSERT INTO `t_course` VALUES (8, '校企合作开发', '许莫淇', 'https://student-manage-ll.oss-cn-beijing.aliyuncs.com/micro-service/xiaoqihezuokaifa.png', '软件1851', 0, 1); INSERT INTO `t_course` VALUES (9, '微服务技术', '许莫淇', 'https://student-manage-ll.oss-cn-beijing.aliyuncs.com/micro-service/7f41b776db0ef26d6bb4d92c61435bcc.jpg', '软件1851', 0, 2); INSERT INTO `t_course` VALUES (10, '前端框架技术', '许莫淇', 'https://student-manage-ll.oss-cn-beijing.aliyuncs.com/micro-service/qianduankuangjia.jpg', '软件1851', 0, 2); INSERT INTO `t_course` VALUES (11, '工业软件后端技术', '许莫淇', 'https://student-manage-ll.oss-cn-beijing.aliyuncs.com/micro-service/houduanruanjianjiagou.jpg', '软件1851', 1, 2); INSERT INTO `t_course` VALUES (12, 'web开发', '许莫淇', 'https://student-manage-ll.oss-cn-beijing.aliyuncs.com/micro-service/web.jpg', '软件1851', 1, 2); INSERT INTO `t_course` VALUES (13, '面向对象高级程序设计', '许莫淇', 'https://student-manage-ll.oss-cn-beijing.aliyuncs.com/micro-service/mianxiangduixianggaoji.jpg', '软件1851', 1, 2); INSERT INTO `t_course` VALUES (14, '面向对象程序设计', '许莫淇', 'https://student-manage-ll.oss-cn-beijing.aliyuncs.com/micro-service/mianxiangduixiang.jpg', '软件1851', 1, 2); INSERT INTO `t_course` VALUES (15, '学习园地', '许莫淇', 'https://student-manage-ll.oss-cn-beijing.aliyuncs.com/micro-service/xuxiyuandi.jpg', '软件1851', 0, 2); INSERT INTO `t_course` VALUES (16, '校企合作开发', '许莫淇', 'https://student-manage-ll.oss-cn-beijing.aliyuncs.com/micro-service/xiaoqihezuokaifa.png', '软件1851', 0, 2); INSERT INTO `t_course` VALUES (17, '微服务技术', '许莫淇', 'https://student-manage-ll.oss-cn-beijing.aliyuncs.com/micro-service/7f41b776db0ef26d6bb4d92c61435bcc.jpg', '软件1851', 0, 4); INSERT INTO `t_course` VALUES (18, '前端框架技术', '许莫淇', 'https://student-manage-ll.oss-cn-beijing.aliyuncs.com/micro-service/qianduankuangjia.jpg', '软件1851', 1, 3); INSERT INTO `t_course` VALUES (19, '工业软件后端架构', '许莫淇', 'https://student-manage-ll.oss-cn-beijing.aliyuncs.com/micro-service/houduanruanjianjiagou.jpg', '软件1851', 1, 3); INSERT INTO `t_course` VALUES (20, 'web开发', '许莫淇', 'https://student-manage-ll.oss-cn-beijing.aliyuncs.com/micro-service/web.jpg', '软件1851', 1, 3); INSERT INTO `t_course` VALUES (21, '面向对象高级程序设计', '许莫淇', 'https://student-manage-ll.oss-cn-beijing.aliyuncs.com/micro-service/mianxiangduixianggaoji.jpg', '软件1851', 1, 3); INSERT INTO `t_course` VALUES (22, '面向对象设计', '许莫淇', 'https://student-manage-ll.oss-cn-beijing.aliyuncs.com/micro-service/mianxiangduixiang.jpg', '软件1851', 1, 3); INSERT INTO `t_course` VALUES (23, '学习园地', '许莫淇', 'https://student-manage-ll.oss-cn-beijing.aliyuncs.com/micro-service/xuxiyuandi.jpg', '软件1851', 1, 3); INSERT INTO `t_course` VALUES (24, '校企合作开发', '许莫淇', 'https://student-manage-ll.oss-cn-beijing.aliyuncs.com/micro-service/xiaoqihezuokaifa.png', '软件1851', 0, 3); SET FOREIGN_KEY_CHECKS = 1;
交叉聯結 查詢多重資料表是基於 Cartesian Product 的基礎 (交叉聯結),先融合 (交叉聯結) 再篩選 (內部或外部) 傳回兩個來源表格(Sets,集)交叉乘積的結果,兩表欄位數相加(左右合併),兩表筆數相乘 簡單案例 -- ANSI SQL-89 select * from r1, r2; -- ANSI SQL-92 select * from r1 cross join r2; ------------------------------------------------------------------------- 內部聯結 INNER JOIN 最主要用於找出相符的資料,不相符的資料會被排除 簡單案例 (關聯條件 + 篩選條件 /* 僅有關聯條件 */ -- ANSI SQL-89 select * from r1, r2 where r1.a = r2.x; -- ANSI SQL-92 select * from r1 join r2 on r1.a = r2.x; /* 關聯條件 + 篩選條件 */ -- ANSI SQL-89 select * from r1, r2 where r1.a = r2.x and r1.b <> 'b1'; -- ANSI SQL-92 select * from r1 join r2 on r1.a = r2.x where r1.b <> 'b1'; Demonstration:INNER JOIN 試編寫 INNER JOIN ,用在 stats.scores 資料表,在資料行為 testid , 以「國文」取代欄值為「Test ABC」,以「英文」取代欄值為「Test XYZ」 select t.name, s.studentid, s.score from stats.scores s join stats.Tests t on t.testid = s.testid;
-- CreateTable CREATE TABLE "Permission" ( "id" SERIAL NOT NULL, "permissionName" VARCHAR(50) NOT NULL, PRIMARY KEY ("id") ); -- CreateTable CREATE TABLE "Role" ( "id" SERIAL NOT NULL, "roleName" VARCHAR(50) NOT NULL, "roleDescription" VARCHAR(200), PRIMARY KEY ("id") ); -- CreateTable CREATE TABLE "Post" ( "id" SERIAL NOT NULL, "createdAt" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP, "updatedAt" TIMESTAMP(3) NOT NULL, "title" VARCHAR(200) NOT NULL, "content" TEXT, "views" INTEGER NOT NULL DEFAULT 0, "published" BOOLEAN NOT NULL DEFAULT false, "authorId" INTEGER NOT NULL, PRIMARY KEY ("id") ); -- CreateTable CREATE TABLE "User" ( "id" SERIAL NOT NULL, "thirdPartyId" TEXT, "createdAt" TIMESTAMP(3) NOT NULL DEFAULT CURRENT_TIMESTAMP, "updatedAt" TIMESTAMP(3) NOT NULL, "nickname" VARCHAR(50) NOT NULL, "email" VARCHAR(300) NOT NULL, "avatar" TEXT, "password" TEXT, PRIMARY KEY ("id") ); -- CreateTable CREATE TABLE "Profile" ( "id" SERIAL NOT NULL, "bio" VARCHAR(500), "userId" INTEGER NOT NULL, PRIMARY KEY ("id") ); -- CreateTable CREATE TABLE "Session" ( "sid" TEXT NOT NULL, "sess" JSONB NOT NULL, "expire" TIMESTAMP(3) NOT NULL, PRIMARY KEY ("sid") ); -- CreateTable CREATE TABLE "_PermissionToRole" ( "A" INTEGER NOT NULL, "B" INTEGER NOT NULL ); -- CreateTable CREATE TABLE "_RoleToUser" ( "A" INTEGER NOT NULL, "B" INTEGER NOT NULL ); -- CreateIndex CREATE UNIQUE INDEX "Permission.permissionName_unique" ON "Permission"("permissionName"); -- CreateIndex CREATE UNIQUE INDEX "Role.roleName_unique" ON "Role"("roleName"); -- CreateIndex CREATE UNIQUE INDEX "User.email_unique" ON "User"("email"); -- CreateIndex CREATE UNIQUE INDEX "Profile.userId_unique" ON "Profile"("userId"); -- CreateIndex CREATE INDEX "IDX_session_expire" ON "Session"("expire"); -- CreateIndex CREATE UNIQUE INDEX "_PermissionToRole_AB_unique" ON "_PermissionToRole"("A", "B"); -- CreateIndex CREATE INDEX "_PermissionToRole_B_index" ON "_PermissionToRole"("B"); -- CreateIndex CREATE UNIQUE INDEX "_RoleToUser_AB_unique" ON "_RoleToUser"("A", "B"); -- CreateIndex CREATE INDEX "_RoleToUser_B_index" ON "_RoleToUser"("B"); -- AddForeignKey ALTER TABLE "Post" ADD FOREIGN KEY ("authorId") REFERENCES "User"("id") ON DELETE CASCADE ON UPDATE CASCADE; -- AddForeignKey ALTER TABLE "Profile" ADD FOREIGN KEY ("userId") REFERENCES "User"("id") ON DELETE CASCADE ON UPDATE CASCADE; -- AddForeignKey ALTER TABLE "_PermissionToRole" ADD FOREIGN KEY ("A") REFERENCES "Permission"("id") ON DELETE CASCADE ON UPDATE CASCADE; -- AddForeignKey ALTER TABLE "_PermissionToRole" ADD FOREIGN KEY ("B") REFERENCES "Role"("id") ON DELETE CASCADE ON UPDATE CASCADE; -- AddForeignKey ALTER TABLE "_RoleToUser" ADD FOREIGN KEY ("A") REFERENCES "Role"("id") ON DELETE CASCADE ON UPDATE CASCADE; -- AddForeignKey ALTER TABLE "_RoleToUser" ADD FOREIGN KEY ("B") REFERENCES "User"("id") ON DELETE CASCADE ON UPDATE CASCADE;
/* insert one customer*/ SELECT customer_id from Customer WHERE fname = 'aaa' and lname = 'bbb' AND birth_date = '1991-01-01'; /* check if the customer already exists in the database */ /* if yes, store that customer_id */ v_customer_id /*if the customer_id returns null, then insert a new one*/ INSERT INTO Customer(fname, lname, email, phone, other_contact_type, other_contact_number, birth_date, gender, zipcode) VALUES ( 'aaa', 'bbb', 'ccc@ddd.com', '123456789', NULL, NULL, '1993/01/02', 'M', NULL ); /* 取得上面这个刚插入的顾客的id */ SELECT customer_id from Customer WHERE fname = 'aaa' and lanem = 'bbb' AND birth_date = '1993-01-02'; /*store that customer_id */ v_customer_id /* obtain salesperson_id */ SELECT salesperson_id FROM Salesperson WHERE salesperson_code = 'xtrteb' v_salersperson_id INSERT INTO AirticketTour(flight_code, customer_id, salesperson_id, locators, round_trip, ticket_type, adult_number, child_number, infant_number, depart_date, depart_location, arrival_date, arrival_location, note) VALUES ( 'aa', v_customer_id, v_salersperson_id, 'aaa', 'Y', 'group', 2,1,0, '2018/05/01 01:01:01', 'SM', '2018/05/02 02:02:02', 'JYP', NULL ); /* check if the coupon code has expired */ SELECT cc_id, discount, exipred FROM CouponCode WHERE code = 'whatever' /* if not exipred, store the cc_id and discount into variables */ v_cc_id, v_discount /* if an amount of money is input as coupon, set v_cc_id as NULL*/ v_discount INSERT INTO Transactions( type, airticket_tour_id, salesperson_id, cc_id, coupon, expense, received, received2, payment_type, total_profit, create_time, source_id, currency, lock_status, clear_status ) VALUES ( 'airticket', (SELECT airticket_tour_id FROM AirticketTour WHERE salesperson_id = v_salersperson_id AND customer_id = v_customer_id ORDER BY airticket_tour_id DESC LIMIT 1), v_cc_id, v_discount, 10, 20, 1, 'cash', received+received2-expense-v_discount, current_timestamps, (SELECT source_id FROM CustomerSource WHERE source_name = 'Icvaxibvc'), 'USD', 'N', 'N' )
INSERT INTO COMMENTS (BODY, DATE_INSERTED) VALUES ('Trying out kube, its cool', '2017-12-26 19:12:25'), ('Hello World', '2017-12-26 19:10:25');
CREATE VIEW v_special_location_context_object AS /* Get the (special_location_id (sl), context_object_id (co)) pairs where: 1) sl is owned by co (account/client) 2) sl is part of an account's campaign for which co is the client 3) all sl when co is the superuser. */ SELECT sl.id AS special_location_id, co.id AS context_object_id FROM ((context_object co JOIN special_location sl) JOIN context_level cl) WHERE (co.context_level_id = cl.id) AND (sl.context_object_id = co.id) UNION SELECT sl.id AS special_location_id, co.context_object_id AS context_object_id FROM ((context_object co JOIN special_location sl) JOIN context_level cl) WHERE (co.context_level_id = cl.id) AND (sl.context_object_id = co.id) UNION SELECT sl.id AS special_location_id, co.id AS context_object_id FROM ((context_object co JOIN special_location sl) JOIN context_level cl) WHERE (co.context_level_id = cl.id) AND (cl.name = 'global');
CREATE USER technobabble WITH PASSWORD 'testdb'; CREATE DATABASE technobabble_dev WITH OWNER technobabble; CREATE DATABASE technobabble_test WITH OWNER technobabble; \c technobabble_dev CREATE EXTENSION "uuid-ossp"; \c technobabble_test CREATE EXTENSION "uuid-ossp";
/* Formatted on 17/06/2014 18:13:21 (QP5 v5.227.12220.39754) */ CREATE OR REPLACE FORCE VIEW MCRE_OWN.V_MCRES_ULTIMA_ACQ_FILE ( COD_FILE, COD_ABI, COD_FLUSSO, ID_FLUSSO, DTA_DPER, ID_DPER, VAL_ANNOMESE, VAL_ANNO ) AS SELECT -- V1 07/02/2012 VG: CREATED -- V1.1 16/03/2012 AG: to_number COD_FILE, W.COD_ABI, W.COD_FLUSSO, ID_FLUSSO ID_FLUSSO, ID_DPER DTA_DPER, TO_CHAR (ID_DPER, 'YYYYMMDD') ID_DPER, TO_CHAR (ID_DPER, 'YYYYMM') VAL_ANNOMESE, TO_CHAR (ID_DPER, 'YYYY') VAL_ANNO FROM MCRE_OWN.T_MCRES_WRK_last_ACQUISIZIONE W WHERE COD_STATO IN ('CARICATO', 'CARICATO_APP'); GRANT DELETE, INSERT, REFERENCES, SELECT, UPDATE, ON COMMIT REFRESH, QUERY REWRITE, DEBUG, FLASHBACK, MERGE VIEW ON MCRE_OWN.V_MCRES_ULTIMA_ACQ_FILE TO MCRE_USR;