DBA Data[Home] [Help]

APPS.OE_ERROR_WF dependencies on WF_CORE

Line 255: WF_CORE.Context('OE_ERROR_WF', 'Initialize_Errors',

251: result := wf_engine.eng_completed;
252: END IF;
253: EXCEPTION
254: WHEN OTHERS THEN
255: WF_CORE.Context('OE_ERROR_WF', 'Initialize_Errors',
256: itemtype, itemkey, actid, funcmode);
257: RAISE;
258: END Initialize_Errors;
259:

Line 854: Wf_Core.Context('OE_STANDARD_WF', 'STANDARD_BLOCK', itemtype,

850: end if;
851:
852: exception
853: when others then
854: Wf_Core.Context('OE_STANDARD_WF', 'STANDARD_BLOCK', itemtype,
855: itemkey, to_char(actid), funcmode);
856: raise;
857: end Set_entity_Descriptor;
858:

Line 924: WF_CORE.Context('OE_STANDARD_WF', 'Check_Error_Active',

920: END IF;
921:
922: EXCEPTION
923: WHEN OTHERS THEN
924: WF_CORE.Context('OE_STANDARD_WF', 'Check_Error_Active',
925: itemtype, itemkey, actid, funcmode);
926: RAISE;
927: END Check_Error_Active;
928:

Line 969: Wf_Core.Token('OPERATION', 'Wf_Standard.ResetError');

965: end if;
966:
967: -- SYNCHMODE: Not allowed
968: if (itemkey = wf_engine.eng_synch) then
969: Wf_Core.Token('OPERATION', 'Wf_Standard.ResetError');
970: Wf_Core.Raise('WFENG_SYNCH_DISABLED');
971: end if;
972:
973: -- Get RETRY or SKIP command

Line 970: Wf_Core.Raise('WFENG_SYNCH_DISABLED');

966:
967: -- SYNCHMODE: Not allowed
968: if (itemkey = wf_engine.eng_synch) then
969: Wf_Core.Token('OPERATION', 'Wf_Standard.ResetError');
970: Wf_Core.Raise('WFENG_SYNCH_DISABLED');
971: end if;
972:
973: -- Get RETRY or SKIP command
974: cmd := Wf_Engine.GetActivityAttrText(itemtype, itemkey, actid, 'COMMAND');

Line 1061: Wf_Core.Context('OE_STANDARD_WF', 'Reset_Error', itemtype,

1057:
1058: resultout := wf_engine.eng_null;
1059: exception
1060: when wf_invalid_command then
1061: Wf_Core.Context('OE_STANDARD_WF', 'Reset_Error', itemtype,
1062: itemkey, to_char(actid), funcmode);
1063: Wf_Core.Token('COMMAND', cmd);
1064: Wf_Core.Raise('WFSQL_COMMAND');
1065: when others then

Line 1063: Wf_Core.Token('COMMAND', cmd);

1059: exception
1060: when wf_invalid_command then
1061: Wf_Core.Context('OE_STANDARD_WF', 'Reset_Error', itemtype,
1062: itemkey, to_char(actid), funcmode);
1063: Wf_Core.Token('COMMAND', cmd);
1064: Wf_Core.Raise('WFSQL_COMMAND');
1065: when others then
1066: Wf_Core.Context('OE_STANDARD_WF', 'Reset_Error', itemtype,
1067: itemkey, to_char(actid), funcmode);

Line 1064: Wf_Core.Raise('WFSQL_COMMAND');

1060: when wf_invalid_command then
1061: Wf_Core.Context('OE_STANDARD_WF', 'Reset_Error', itemtype,
1062: itemkey, to_char(actid), funcmode);
1063: Wf_Core.Token('COMMAND', cmd);
1064: Wf_Core.Raise('WFSQL_COMMAND');
1065: when others then
1066: Wf_Core.Context('OE_STANDARD_WF', 'Reset_Error', itemtype,
1067: itemkey, to_char(actid), funcmode);
1068: raise;

Line 1066: Wf_Core.Context('OE_STANDARD_WF', 'Reset_Error', itemtype,

1062: itemkey, to_char(actid), funcmode);
1063: Wf_Core.Token('COMMAND', cmd);
1064: Wf_Core.Raise('WFSQL_COMMAND');
1065: when others then
1066: Wf_Core.Context('OE_STANDARD_WF', 'Reset_Error', itemtype,
1067: itemkey, to_char(actid), funcmode);
1068: raise;
1069: end Reset_Error;
1070: