DBA Data[Home] [Help]

APPS.CZ_MIGRATE dependencies on CZ_PB_MGR

Line 149: 'CZ_PB_MGR',

145: --Check for other running migration/setup sessions.
146:
147: FOR c_running IN (SELECT action FROM v$session WHERE module IN (
148: 'CZMIGRATION',
149: 'CZ_PB_MGR',
150: 'CZ_MODEL_MIGRATION',
151: 'CZIMPORT',
152: CZ_PUBL_SYNC_CRASH.pbSourceClone,
153: CZ_PUBL_SYNC_CRASH.pbTargetClone,

Line 336: 'CZ_PB_MGR',

332: --Check for other running migration/setup sessions.
333:
334: FOR c_running IN (SELECT action FROM v$session WHERE module IN (
335: 'CZMIGRATION',
336: 'CZ_PB_MGR',
337: 'CZ_MODEL_MIGRATION',
338: 'CZIMPORT',
339: CZ_PUBL_SYNC_CRASH.pbSourceClone,
340: CZ_PUBL_SYNC_CRASH.pbTargetClone,

Line 2023: --- Bug#13781204 : We have made a change in cz_pb_mgr.insert_jrad_docs where we are

2019:
2020: ----------------------------------------------------------------------
2021: -----This procedure imports the JRAD docs
2022: -----of a UI from the source to the target instance
2023: --- Bug#13781204 : We have made a change in cz_pb_mgr.insert_jrad_docs where we are
2024: --passing an additional parameter publication_id to isolate the jrad chunks
2025: --specific to a publication. But this is not required for schema migration.
2026: --Since we are using the existing code from publication we are just passing 0 as
2027: --publication id during jrad chunk population and passing the same 0 during

Line 2071: cz_pb_mgr.insert_jrad_docs(0);

2067: COMMIT;
2068: CLOSE l_ref_cursor;
2069:
2070: -----upload the XML to the jrad repository
2071: cz_pb_mgr.insert_jrad_docs(0);
2072:
2073: ----delete from temp table on target and source
2074: EXECUTE IMMEDIATE
2075: ' begin delete from cz_jrad_chunks'||l_link_name||'; commit; end; ';

Line 2088: fnd_message.set_token('PKG_NAME', 'CZ_PB_MGR');

2084: x_msg_count := 1;
2085:
2086: fnd_message.set_name('FND', 'FND_AS_UNEXPECTED_ERROR');
2087: fnd_message.set_token('ERROR_TEXT', SQLERRM);
2088: fnd_message.set_token('PKG_NAME', 'CZ_PB_MGR');
2089: fnd_message.set_token('PROCEDURE_NAME', 'INSERT_JRAD_DOCS');
2090:
2091: x_msg_data := fnd_message.get;
2092: WHEN OTHERS THEN

Line 2159: cz_pb_mgr.insert_jrad_docs(0);

2155: COMMIT;
2156: CLOSE l_ref_cursor;
2157:
2158: -----upload the XML to the jrad repository
2159: cz_pb_mgr.insert_jrad_docs(0);
2160:
2161: ----delete from temp table on target and source
2162: EXECUTE IMMEDIATE
2163: ' begin delete from cz_jrad_chunks'||l_link_name||'; commit; end; ';

Line 2176: fnd_message.set_token('PKG_NAME', 'CZ_PB_MGR');

2172: x_msg_count := 1;
2173:
2174: fnd_message.set_name('FND', 'FND_AS_UNEXPECTED_ERROR');
2175: fnd_message.set_token('ERROR_TEXT', SQLERRM);
2176: fnd_message.set_token('PKG_NAME', 'CZ_PB_MGR');
2177: fnd_message.set_token('PROCEDURE_NAME', 'INSERT_JRAD_DOCS');
2178:
2179: x_msg_data := fnd_message.get;
2180: WHEN OTHERS THEN