DBA Data[Home] [Help]

APPS.FND_FLEX_WORKFLOW dependencies on WF_CORE

Line 91: 'ERROR_NAME : ' || wf_core.error_name || g_chr_newline ||

87: BEGIN
88: IF (g_debug_fnd_flex_workflow) THEN
89: debug('Account Generator failed in ' || p_func_name ||
90: ' with following error.' || g_chr_newline ||
91: 'ERROR_NAME : ' || wf_core.error_name || g_chr_newline ||
92: 'ERROR_MESSAGE : ' || wf_core.error_message || g_chr_newline ||
93: 'ERROR_STACK : ' || wf_core.error_stack || g_chr_newline ||
94: 'SQLERRM : ' || Sqlerrm || g_chr_newline ||
95: 'DBMS_ERROR_STACK:' || g_chr_newline ||

Line 92: 'ERROR_MESSAGE : ' || wf_core.error_message || g_chr_newline ||

88: IF (g_debug_fnd_flex_workflow) THEN
89: debug('Account Generator failed in ' || p_func_name ||
90: ' with following error.' || g_chr_newline ||
91: 'ERROR_NAME : ' || wf_core.error_name || g_chr_newline ||
92: 'ERROR_MESSAGE : ' || wf_core.error_message || g_chr_newline ||
93: 'ERROR_STACK : ' || wf_core.error_stack || g_chr_newline ||
94: 'SQLERRM : ' || Sqlerrm || g_chr_newline ||
95: 'DBMS_ERROR_STACK:' || g_chr_newline ||
96: dbms_utility.format_error_stack() || g_chr_newline ||

Line 93: 'ERROR_STACK : ' || wf_core.error_stack || g_chr_newline ||

89: debug('Account Generator failed in ' || p_func_name ||
90: ' with following error.' || g_chr_newline ||
91: 'ERROR_NAME : ' || wf_core.error_name || g_chr_newline ||
92: 'ERROR_MESSAGE : ' || wf_core.error_message || g_chr_newline ||
93: 'ERROR_STACK : ' || wf_core.error_stack || g_chr_newline ||
94: 'SQLERRM : ' || Sqlerrm || g_chr_newline ||
95: 'DBMS_ERROR_STACK:' || g_chr_newline ||
96: dbms_utility.format_error_stack() || g_chr_newline ||
97: 'DBMS_CALL_STACK:' || g_chr_newline ||

Line 479: wf_core.context('FND_FLEX_WORKFLOW', 'INITIALIZE',

475: RETURN l_itemkey;
476:
477: EXCEPTION
478: WHEN OTHERS THEN
479: wf_core.context('FND_FLEX_WORKFLOW', 'INITIALIZE',
480: itemtype, l_itemkey);
481: report_wf_error('FND_FLEX_WORKFLOW.INITIALIZE');
482: RAISE;
483: END initialize;

Line 706: wf_core.context('FND_FLEX_WORKFLOW', 'GENERATE',

702: END IF;
703:
704: EXCEPTION
705: WHEN OTHERS THEN
706: wf_core.context('FND_FLEX_WORKFLOW', 'GENERATE',
707: itemtype, itemkey);
708: report_wf_error('FND_FLEX_WORKFLOW.GENERATE');
709:
710: IF (error_message IS NULL) THEN

Line 971: wf_core.context('FND_FLEX_WORKFLOW', 'GENERATE_PARTIAL',

967: END IF;
968:
969: EXCEPTION
970: WHEN OTHERS THEN
971: wf_core.context('FND_FLEX_WORKFLOW', 'GENERATE_PARTIAL',
972: itemtype, itemkey);
973: report_wf_error('FND_FLEX_WORKFLOW.GENERATE_PARTIAL');
974:
975: IF (error_message IS NULL) THEN

Line 1074: wf_core.context('FND_FLEX_WORKFLOW', 'PURGE',

1070: -- END IF;
1071: --
1072: EXCEPTION
1073: WHEN OTHERS THEN
1074: wf_core.context('FND_FLEX_WORKFLOW', 'PURGE',
1075: itemtype, itemkey);
1076: report_wf_error('FND_FLEX_WORKFLOW.PURGE');
1077: RAISE;
1078: END purge;