DBA Data[Home] [Help]

APPS.WIP_EXP_NOTIF_WF_PKG dependencies on WF_ENGINE

Line 53: wf_engine.createProcess ( ItemType => l_ItemType,

49: into l_seq from sys.dual;
50:
51: l_itemkey := to_char (p_exception_id)|| '-' || l_seq;
52:
53: wf_engine.createProcess ( ItemType => l_ItemType,
54: ItemKey => l_ItemKey,
55: Process => 'WIP_EXCEPTION_REPORT');
56:
57: wf_engine.SetItemAttrNumber ( itemtype => l_itemtype,

Line 57: wf_engine.SetItemAttrNumber ( itemtype => l_itemtype,

53: wf_engine.createProcess ( ItemType => l_ItemType,
54: ItemKey => l_ItemKey,
55: Process => 'WIP_EXCEPTION_REPORT');
56:
57: wf_engine.SetItemAttrNumber ( itemtype => l_itemtype,
58: itemkey => l_itemkey,
59: aname => 'EXCEPTION_ID',
60: avalue => p_exception_id);
61:

Line 62: wf_engine.SetItemAttrText ( itemtype => l_itemtype,

58: itemkey => l_itemkey,
59: aname => 'EXCEPTION_ID',
60: avalue => p_exception_id);
61:
62: wf_engine.SetItemAttrText ( itemtype => l_itemtype,
63: itemkey => l_itemkey,
64: aname => 'TO_RESPONSIBILITY',
65: avalue => 'FND_RESP|WIP|WIP_WS_SUPERVISOR|STANDARD');
66:

Line 67: wf_engine.SetItemAttrText ( itemtype => l_itemtype,

63: itemkey => l_itemkey,
64: aname => 'TO_RESPONSIBILITY',
65: avalue => 'FND_RESP|WIP|WIP_WS_SUPERVISOR|STANDARD');
66:
67: wf_engine.SetItemAttrText ( itemtype => l_itemtype,
68: itemkey => l_itemkey,
69: aname => 'FROM_RESPONSIBILITY',
70: avalue => 'FND_RESP|WIP|WIP_WS_OPERATOR|STANDARD');
71:

Line 72: wf_engine.SetItemAttrText ( itemtype => l_itemtype,

68: itemkey => l_itemkey,
69: aname => 'FROM_RESPONSIBILITY',
70: avalue => 'FND_RESP|WIP|WIP_WS_OPERATOR|STANDARD');
71:
72: wf_engine.SetItemAttrText ( itemtype => l_itemtype,
73: itemkey => l_itemkey,
74: aname => 'JOB_NAME',
75: avalue => l_job_name);
76:

Line 77: wf_engine.SetItemAttrText ( itemtype => l_itemtype,

73: itemkey => l_itemkey,
74: aname => 'JOB_NAME',
75: avalue => l_job_name);
76:
77: wf_engine.SetItemAttrText ( itemtype => l_itemtype,
78: itemkey => l_itemkey,
79: aname => 'OP_SEQ_NUM',
80: avalue => l_op_seq_num);
81:

Line 82: wf_engine.SetItemAttrText ( itemtype => l_itemtype,

78: itemkey => l_itemkey,
79: aname => 'OP_SEQ_NUM',
80: avalue => l_op_seq_num);
81:
82: wf_engine.SetItemAttrText ( itemtype => l_itemtype,
83: itemkey => l_itemkey,
84: aname => 'RESOURCE_NAME',
85: avalue => l_res_name);
86:

Line 87: wf_engine.SetItemAttrText ( itemtype => l_itemtype,

83: itemkey => l_itemkey,
84: aname => 'RESOURCE_NAME',
85: avalue => l_res_name);
86:
87: wf_engine.SetItemAttrText ( itemtype => l_itemtype,
88: itemkey => l_itemkey,
89: aname => 'COMPONENT_NAME',
90: avalue => l_comp_name);
91:

Line 92: wf_engine.StartProcess ( ItemType => l_ItemType,

88: itemkey => l_itemkey,
89: aname => 'COMPONENT_NAME',
90: avalue => l_comp_name);
91:
92: wf_engine.StartProcess ( ItemType => l_ItemType,
93: ItemKey => l_ItemKey );
94:
95: EXCEPTION
96:

Line 128: l_exception_id := wf_engine.GetItemAttrNumber (itemtype => itemtype,

124: begin
125:
126: x_progress := '001';
127:
128: l_exception_id := wf_engine.GetItemAttrNumber (itemtype => itemtype,
129: itemkey => itemkey,
130: aname => 'EXCEPTION_ID');
131: x_progress := '2';
132: