DBA Data[Home] [Help]

APPS.MSD_AW_RENAME dependencies on DBMS_AW

Line 58: dbms_aw.aw_detach(patch_edition_name);

54: ad_zd_log.message('ODP','INFORMATION','Executing RENAME_AW as "'||current_user_name||'" user.');
55:
56: -- Detach PATCH EDITION AW
57: begin
58: dbms_aw.aw_detach(patch_edition_name);
59: exception
60: when others then
61: --null;
62: if SQLCODE <> -34344 then

Line 70: dbms_aw.aw_detach(aw_name);

66: end;
67:
68: -- Detach RUN EDITION AW
69: begin
70: dbms_aw.aw_detach(aw_name);
71: exception
72: when others then
73: --null;
74: if SQLCODE <> -34344 then

Line 82: dbms_aw.aw_delete(backup_name);

78: end;
79:
80: -- Delete the old backup of the AW
81: begin
82: dbms_aw.aw_delete(backup_name);
83: exception
84: when others then
85: --null;
86: if SQLCODE = -33262

Line 123: dbms_aw.aw_rename(aw_name,backup_name); -- Keep a backup of the RUN EDITION

119: end;
120:
121: -- Rename the AWs
122: begin
123: dbms_aw.aw_rename(aw_name,backup_name); -- Keep a backup of the RUN EDITION
124: ad_zd_log.message('ODP','EVENT','Backup Created - '||backup_name);
125: dbms_aw.aw_rename(patch_edition_name,aw_name); -- Rename the patch edition to RUN edition
126: ad_zd_log.message('ODP','EVENT','Executed rename for AW - '||aw_name);
127: exception

Line 125: dbms_aw.aw_rename(patch_edition_name,aw_name); -- Rename the patch edition to RUN edition

121: -- Rename the AWs
122: begin
123: dbms_aw.aw_rename(aw_name,backup_name); -- Keep a backup of the RUN EDITION
124: ad_zd_log.message('ODP','EVENT','Backup Created - '||backup_name);
125: dbms_aw.aw_rename(patch_edition_name,aw_name); -- Rename the patch edition to RUN edition
126: ad_zd_log.message('ODP','EVENT','Executed rename for AW - '||aw_name);
127: exception
128: when others then
129: --null;