DBA Data[Home] [Help]

APPS.FND_UMS_ANALYSIS_ENGINE dependencies on AD_PATCH

Line 12: -- Global APPL_TOP Id. Should be replaced with AD_PATCH.GLOBAL_APPL_TOP_ID

8: -- initial engine mode
9:
10: MODE_NOT_CALLED constant varchar2(30) := 'ENGINE_NOT_CALLED';
11:
12: -- Global APPL_TOP Id. Should be replaced with AD_PATCH.GLOBAL_APPL_TOP_ID
13:
14: GLOBAL_APPL_TOP_ID constant number := -1;
15:
16: -- bugfix release statuses:

Line 787: l_bugfix.ad_application_status := ad_patch.NOT_APPLIED;

783: begin
784: if (l_bugfix.patch_type in (PATCH_TYPE_NLS_PATCH,
785: PATCH_TYPE_NLS_BUGFIX)) then
786:
787: l_bugfix.ad_application_status := ad_patch.NOT_APPLIED;
788: else
789: -- a 'US' bugfix
790: -- get bugfix application status from AD
791:

Line 793: l_bugfix.ad_application_status := ad_patch.is_patch_applied(

789: -- a 'US' bugfix
790: -- get bugfix application status from AD
791:
792: begin
793: l_bugfix.ad_application_status := ad_patch.is_patch_applied(
794: p_appl_top_id => g_globals.appl_top_id,
795: p_release_name => l_bugfix.release_name,
796: p_bug_number => l_bugfix.bug_number);
797: exception

Line 800: get_formatted_error('Error in AD_PATCH',

796: p_bug_number => l_bugfix.bug_number);
797: exception
798: when others then
799: raise_formatted_error(ERROR_AD_IS_PATCH_APPLIED,
800: get_formatted_error('Error in AD_PATCH',
801: 'ad_patch.is_patch_applied(p_appl_top_id => ' ||
802: g_globals.appl_top_id || ',',
803: ' p_release_name => ''' ||
804: l_bugfix.release_name || ''',',

Line 801: 'ad_patch.is_patch_applied(p_appl_top_id => ' ||

797: exception
798: when others then
799: raise_formatted_error(ERROR_AD_IS_PATCH_APPLIED,
800: get_formatted_error('Error in AD_PATCH',
801: 'ad_patch.is_patch_applied(p_appl_top_id => ' ||
802: g_globals.appl_top_id || ',',
803: ' p_release_name => ''' ||
804: l_bugfix.release_name || ''',',
805: ' p_bug_number => ' ||

Line 811: if (l_bugfix.ad_application_status = ad_patch.EXPLICITLY_APPLIED) then

807: end;
808: end if;
809: end;
810:
811: if (l_bugfix.ad_application_status = ad_patch.EXPLICITLY_APPLIED) then
812: l_bugfix.application_status := APP_STATUS_EXPLICITLY_APPLIED;
813:
814: elsif (l_bugfix.ad_application_status = ad_patch.IMPLICITLY_APPLIED) then
815: l_bugfix.application_status := APP_STATUS_IMPLICITLY_APPLIED;

Line 814: elsif (l_bugfix.ad_application_status = ad_patch.IMPLICITLY_APPLIED) then

810:
811: if (l_bugfix.ad_application_status = ad_patch.EXPLICITLY_APPLIED) then
812: l_bugfix.application_status := APP_STATUS_EXPLICITLY_APPLIED;
813:
814: elsif (l_bugfix.ad_application_status = ad_patch.IMPLICITLY_APPLIED) then
815: l_bugfix.application_status := APP_STATUS_IMPLICITLY_APPLIED;
816:
817: else
818: l_bugfix.application_status := APP_STATUS_NOT_APPLIED;