DBA Data[Home] [Help]

APPS.WF_AGENTS_PKG dependencies on WF_CORE

Line 66: wf_core.context('Wf_Agents_Pkg', 'Insert_Row', x_guid,

62: close c;
63:
64: exception
65: when others then
66: wf_core.context('Wf_Agents_Pkg', 'Insert_Row', x_guid,
67: x_protocol );
68: raise;
69: end INSERT_ROW;
70: -----------------------------------------------------------------------------

Line 126: wf_core.context('Wf_Agents_Pkg', 'Update_Row', x_guid,

122: end if;
123:
124: exception
125: when others then
126: wf_core.context('Wf_Agents_Pkg', 'Update_Row', x_guid,
127: x_protocol );
128: raise;
129: end UPDATE_ROW;
130: -----------------------------------------------------------------------------

Line 186: wf_core.clear;

182: -- Invalidate cache
183: wf_bes_cache.SetMetaDataUploaded();
184: exception
185: when no_data_found then
186: wf_core.clear;
187: if (x_type is null) then
188: WF_AGENTS_PKG.INSERT_ROW(
189: X_ROWID => row_id,
190: X_GUID => X_GUID,

Line 225: wf_core.context('Wf_Agents_Pkg', 'Load_Row', x_guid,

221: end;
222:
223: exception
224: when others then
225: wf_core.context('Wf_Agents_Pkg', 'Load_Row', x_guid,
226: x_protocol );
227: raise;
228: end LOAD_ROW;
229: -----------------------------------------------------------------------------

Line 246: wf_core.context('Wf_Agents_Pkg', 'Delete_Row', x_guid);

242: -- Invalidate cache
243: wf_bes_cache.SetMetaDataUploaded();
244: exception
245: when others then
246: wf_core.context('Wf_Agents_Pkg', 'Delete_Row', x_guid);
247: raise;
248: end DELETE_ROW;
249: -----------------------------------------------------------------------------
250: function GENERATE (

Line 325: wf_core.context('Wf_Agents_Pkg', 'Generate', x_guid);

321:
322: return buf;
323: exception
324: when others then
325: wf_core.context('Wf_Agents_Pkg', 'Generate', x_guid);
326: raise;
327: end GENERATE;
328: -----------------------------------------------------------------------------
329: procedure RECEIVE (

Line 419: Wf_Core.Token('REASON', 'Invalid column name found:' ||

415: l_type := l_value;
416: elsif(l_node_name = wf_event_xml.versionTagName) then
417: l_version := l_value;
418: else
419: Wf_Core.Token('REASON', 'Invalid column name found:' ||
420: l_node_name || ' with value:'||l_value);
421: Wf_Core.Raise('WFSQL_INTERNAL');
422: end if;
423: end loop;

Line 421: Wf_Core.Raise('WFSQL_INTERNAL');

417: l_version := l_value;
418: else
419: Wf_Core.Token('REASON', 'Invalid column name found:' ||
420: l_node_name || ' with value:'||l_value);
421: Wf_Core.Raise('WFSQL_INTERNAL');
422: end if;
423: end loop;
424:
425: if l_agent_guid = '#NEW' then

Line 454: wf_core.context('Wf_Agents_Pkg', 'Receive', x_message);

450: X_JAVA_QUEUE_HANDLER => l_javaqhandler);
451:
452: exception
453: when others then
454: wf_core.context('Wf_Agents_Pkg', 'Receive', x_message);
455: raise;
456: end RECEIVE;
457: -------------------------------------------------------------------------
458: end WF_AGENTS_PKG;