DBA Data[Home] [Help]

APPS.XNP_DEF_JEOPARDY_LOGIC dependencies on WF_ENGINE

Line 39: wf_engine.createprocess(l_item_type,

35: 'ORDER_JEOPARDY_NOTIFICATION',
36: l_item_type,
37: l_item_key);
38:
39: wf_engine.createprocess(l_item_type,
40: l_item_key,
41: 'ORDER_JEOPARDY_NOTIFICATION');
42:
43: -- BUG 1621513

Line 56: -- wf_engine.SetItemParent(

52: -- l_parent_item_key := rec.WF_ITEM_KEY;
53: -- exit;
54: -- END LOOP;
55:
56: -- wf_engine.SetItemParent(
57: -- itemType => l_item_type,
58: -- itemKey => l_item_key,
59: -- parent_itemType => l_parent_item_type,
60: -- parent_itemKey => l_parent_item_key,

Line 63: wf_engine.SetItemAttrNumber(

59: -- parent_itemType => l_parent_item_type,
60: -- parent_itemKey => l_parent_item_key,
61: -- parent_context => NULL);
62:
63: wf_engine.SetItemAttrNumber(
64: itemType => l_item_type,
65: itemKey => l_item_key,
66: aname => 'ORDER_ID',
67: avalue => p_msg_header.order_id);

Line 69: wf_engine.startprocess(l_item_type,

65: itemKey => l_item_key,
66: aname => 'ORDER_ID',
67: avalue => p_msg_header.order_id);
68:
69: wf_engine.startprocess(l_item_type,
70: l_item_key);
71:
72: END notify_fmc;
73: