DBA Data[Home] [Help]

APPS.AP_WEB_INFRASTRUCTURE_PKG dependencies on WF_ENGINE

Line 148: l_org_id := WF_ENGINE.GetItemAttrNumber(l_item_type,

144: ---------------------------------
145: l_debug_info := 'Getting ORG_ID';
146: ---------------------------------
147: begin
148: l_org_id := WF_ENGINE.GetItemAttrNumber(l_item_type,
149: p_id,
150: 'ORG_ID');
151:
152: exception

Line 156: WF_ENGINE.AddItemAttr(l_item_type, p_id, 'ORG_ID');

152: exception
153: when others then
154: if (wf_core.error_name = 'WFENG_ITEM_ATTR') then
155: -- ORG_ID item attribute doesn't exist, need to add it
156: WF_ENGINE.AddItemAttr(l_item_type, p_id, 'ORG_ID');
157: IF (AP_WEB_DB_EXPRPT_PKG.GetOrgIdByReportHeaderId(
158: p_id,
159: l_org_id) <> TRUE ) THEN
160: l_org_id := NULL;

Line 163: WF_ENGINE.SetItemAttrNumber(l_item_type,

159: l_org_id) <> TRUE ) THEN
160: l_org_id := NULL;
161: END IF;
162:
163: WF_ENGINE.SetItemAttrNumber(l_item_type,
164: p_id,
165: 'ORG_ID',
166: l_org_ID);
167: else

Line 177: l_submit_from_oie := WF_ENGINE.GetItemAttrText(l_item_type,

173: ---------------------------------
174: l_debug_info := 'Getting SUBMIT_FROM_OIE';
175: ---------------------------------
176: begin
177: l_submit_from_oie := WF_ENGINE.GetItemAttrText(l_item_type,
178: p_id,
179: 'SUBMIT_FROM_OIE');
180: exception
181: when others then

Line 184: WF_ENGINE.AddItemAttr(l_item_type, p_id, 'SUBMIT_FROM_OIE');

180: exception
181: when others then
182: if (wf_core.error_name = 'WFENG_ITEM_ATTR') then
183: -- SUBMIT_FROM_OIE item attribute doesn't exist, need to add it
184: WF_ENGINE.AddItemAttr(l_item_type, p_id, 'SUBMIT_FROM_OIE');
185: else
186: raise;
187: end if;
188: