DBA Data[Home] [Help]

APPS.MIGRATE_BATCH dependencies on MIGRATE_BATCH

Line 1: PACKAGE BODY migrate_batch AS

1: PACKAGE BODY migrate_batch AS
2: /* $Header: GMEMIGBB.pls 120.1 2005/06/09 08:25:43 appldev $ */
3:
4: /***********************************************************/
5: -- Oracle Process Manufacturing Process Execution APIs

Line 30: -- The main package to call is migrate_batch.run. If it is called with no parameters,

26: -- 0 qty pending transaction is inserted. insert_batch_step_dtls performs
27: -- batch by batch processing in order to normalize pm_oprn_dtl
28: -- into gme_batch_step_activities and gme_batch_step_resources.
29: --
30: -- The main package to call is migrate_batch.run. If it is called with no parameters,
31: -- or as migrate_batch.run(p_commit => FALSE) a rollback is performed at the end of the
32: -- migration. This is for purposes of validation, so that the user can find all data
33: -- conditions that exist without changing data. Call migrate_batch.run(p_commit => TRUE)
34: -- and this will migrate data with a commit at each phase of migration.

Line 31: -- or as migrate_batch.run(p_commit => FALSE) a rollback is performed at the end of the

27: -- batch by batch processing in order to normalize pm_oprn_dtl
28: -- into gme_batch_step_activities and gme_batch_step_resources.
29: --
30: -- The main package to call is migrate_batch.run. If it is called with no parameters,
31: -- or as migrate_batch.run(p_commit => FALSE) a rollback is performed at the end of the
32: -- migration. This is for purposes of validation, so that the user can find all data
33: -- conditions that exist without changing data. Call migrate_batch.run(p_commit => TRUE)
34: -- and this will migrate data with a commit at each phase of migration.
35: --

Line 33: -- conditions that exist without changing data. Call migrate_batch.run(p_commit => TRUE)

29: --
30: -- The main package to call is migrate_batch.run. If it is called with no parameters,
31: -- or as migrate_batch.run(p_commit => FALSE) a rollback is performed at the end of the
32: -- migration. This is for purposes of validation, so that the user can find all data
33: -- conditions that exist without changing data. Call migrate_batch.run(p_commit => TRUE)
34: -- and this will migrate data with a commit at each phase of migration.
35: --
36: -- Messages are logged to gme_temp_exceptions.
37: -- Message types are: 'P' for progress, 'I' for information, 'E' for error, and 'D' for

Line 2480: ' Note: migrate_batch.run was called with commit on so any commits prior to pos = '

2476: RAISE;
2477: WHEN OTHERS THEN
2478: IF p_commit THEN
2479: l_message :=
2480: ' Note: migrate_batch.run was called with commit on so any commits prior to pos = '
2481: || l_pos
2482: || ' has occurred';
2483: END IF;
2484:

Line 5208: END migrate_batch;

5204: p_error_type => 'D'
5205: );
5206: END renumber_blank_line_no;
5207:
5208: END migrate_batch;