DBA Data[Home] [Help]

APPS.AP_INTERFACE_WORKFLOW_PKG dependencies on WF_ENGINE

Line 21: l_invoice_id := WF_ENGINE.GetItemAttrNumber(p_item_type,

17:
18: ------------------------------------------------
19: l_debug_info := 'Get INVOICE_ID Item Attribute';
20: ------------------------------------------------
21: l_invoice_id := WF_ENGINE.GetItemAttrNumber(p_item_type,
22: p_item_key,
23: 'INVOICE_ID');
24:
25: --------------------------------------------

Line 51: WF_ENGINE.SetItemAttrText(p_item_type,

47: ELSE
48: ---------------------------------------------------
49: l_debug_info := 'Set ERROR_MESSAGE Item Attribute';
50: ---------------------------------------------------
51: WF_ENGINE.SetItemAttrText(p_item_type,
52: p_item_key,
53: 'ERROR_MESSAGE',
54: l_return_error_message);
55:

Line 113: WF_ENGINE.CreateProcess(l_item_type,

109:
110: -----------------------------------------------
111: l_debug_info := 'Create Workflow Process';
112: -----------------------------------------------
113: WF_ENGINE.CreateProcess(l_item_type,
114: l_item_key,
115: 'CUSTOM_VALIDATION_PROCESS');
116:
117: ------------------------------------------------

Line 120: WF_ENGINE.SetItemAttrNumber(l_item_type,

116:
117: ------------------------------------------------
118: l_debug_info := 'Set INVOICE_ID Item Attribute';
119: ------------------------------------------------
120: WF_ENGINE.SetItemAttrNumber(l_item_type,
121: l_item_key,
122: 'INVOICE_ID',
123: p_invoice_id);
124:

Line 140: WF_ENGINE.StartProcess(l_item_type,

136:
137: -----------------------------------------
138: l_debug_info := 'Start Workflow Process';
139: -----------------------------------------
140: WF_ENGINE.StartProcess(l_item_type,
141: l_item_key);
142:
143: EXCEPTION
144: WHEN OTHERS THEN