DBA Data[Home] [Help]

APPS.WF_EVENTS_PKG dependencies on WF_EVENTS_PKG

Line 1: package body WF_EVENTS_PKG as

1: package body WF_EVENTS_PKG as
2: /* $Header: WFEVEVTB.pls 120.11 2008/02/15 09:35:21 sstomar ship $ */
3: m_table_name varchar2(255) := 'WF_EVENTS';
4: m_package_version varchar2(30) := '1.0';
5:

Line 87: wf_core.context('Wf_Events_Pkg', 'Insert_Row', x_guid, x_name, x_type);

83: end if;
84: close c;
85: exception
86: when others then
87: wf_core.context('Wf_Events_Pkg', 'Insert_Row', x_guid, x_name, x_type);
88: raise;
89: end INSERT_ROW;
90: ----------------------------------------------------------------------------
91: procedure UPDATE_ROW (

Line 164: wf_core.context('WF_EVENTS_PKG','UPDATE_ROW',

160: l_update_allowed := is_update_allowed(X_CUSTOMIZATION_LEVEL, l_custom_level);
161:
162: if l_update_allowed = 'N' then
163: -- Set up the Error Stack
164: wf_core.context('WF_EVENTS_PKG','UPDATE_ROW',
165: x_name,
166: l_custom_level,
167: X_CUSTOMIZATION_LEVEL);
168: return;

Line 286: wf_core.context('Wf_Events_Pkg', 'Update_Row', l_guid, x_name, x_type);

282: exception
283: when no_data_found then
284: raise;
285: when others then
286: wf_core.context('Wf_Events_Pkg', 'Update_Row', l_guid, x_name, x_type);
287: raise;
288: end UPDATE_ROW;
289: ----------------------------------------------------------------------------
290: procedure DELETE_ROW (

Line 314: wf_core.context('Wf_Events_Pkg', 'Delete_Row', x_guid);

310: -- Invalidate cache
311: wf_bes_cache.SetMetaDataUploaded();
312: exception
313: when others then
314: wf_core.context('Wf_Events_Pkg', 'Delete_Row', x_guid);
315: raise;
316: end DELETE_ROW;
317: ----------------------------------------------------------------------------
318: procedure LOAD_ROW (

Line 336: WF_EVENTS_PKG.UPDATE_ROW (

332: ) is
333: row_id varchar2(64);
334: begin
335: begin
336: WF_EVENTS_PKG.UPDATE_ROW (
337: X_GUID => X_GUID,
338: X_NAME => X_NAME,
339: X_TYPE => X_TYPE,
340: X_STATUS => X_STATUS,

Line 357: WF_EVENTS_PKG.INSERT_ROW(

353: wf_bes_cache.SetMetaDataUploaded();
354: exception
355: when no_data_found then
356: begin
357: WF_EVENTS_PKG.INSERT_ROW(
358: X_ROWID => row_id,
359: X_GUID => X_GUID,
360: X_NAME => X_NAME,
361: X_TYPE => X_TYPE,

Line 382: wf_core.context('Wf_Events_Pkg', 'Load_Row', x_guid, x_name, x_type);

378: end;
379:
380: exception
381: when others then
382: wf_core.context('Wf_Events_Pkg', 'Load_Row', x_guid, x_name, x_type);
383: raise;
384: end LOAD_ROW;
385: ----------------------------------------------------------------------------
386: procedure ADD_LANGUAGE

Line 436: wf_core.context('Wf_Events_Pkg', 'Add_language');

432: t.guid ,T.LANGUAGE
433: from wf_events_tl T) ;
434: exception
435: when others then
436: wf_core.context('Wf_Events_Pkg', 'Add_language');
437: raise;
438: end ADD_LANGUAGE;
439: ----------------------------------------------------------------------------
440: function GENERATE (

Line 533: wf_core.context('Wf_Events_Pkg', 'Generate', x_guid);

529:
530: return buf;
531: exception
532: when others then
533: wf_core.context('Wf_Events_Pkg', 'Generate', x_guid);
534: raise;
535: end GENERATE;
536: ----------------------------------------------------------------------------
537: procedure RECEIVE (

Line 627: if WF_EVENTS_PKG.g_Mode <> 'UPGRADE' then

623: end loop;
624:
625: if (L_OWNER_NAME is null)
626: or (L_OWNER_TAG is null) then
627: if WF_EVENTS_PKG.g_Mode <> 'UPGRADE' then
628: Wf_Core.Token('REASON','Event Owner Name and Owner Tag cannot be null');
629: Wf_Core.Raise('WFSQL_INTERNAL');
630: else
631: wf_core.context('Wf_Events_Pkg', 'Receive',

Line 631: wf_core.context('Wf_Events_Pkg', 'Receive',

627: if WF_EVENTS_PKG.g_Mode <> 'UPGRADE' then
628: Wf_Core.Token('REASON','Event Owner Name and Owner Tag cannot be null');
629: Wf_Core.Raise('WFSQL_INTERNAL');
630: else
631: wf_core.context('Wf_Events_Pkg', 'Receive',
632: 'WARNING! WARNING! Event OWNER_NAME/OWNER_TAG cannot be null for Event ' || l_name);
633: end if;
634: end if;
635:

Line 641: wf_core.context('Wf_Events_Pkg', 'Receive', x_message);

637: L_OWNER_NAME, L_OWNER_TAG, L_DISPLAY_NAME, l_DESCRIPTION,
638: l_CUSTOMIZATION_LEVEL, l_LICENSED_FLAG ,l_javagenerate, l_irep_annotation);
639: exception
640: when others then
641: wf_core.context('Wf_Events_Pkg', 'Receive', x_message);
642: raise;
643: end RECEIVE;
644:
645:

Line 805: end WF_EVENTS_PKG;

801: g_Mode := x_mode;
802: end LoadersetMode;
803: ----------------------------------------------------------------------------
804:
805: end WF_EVENTS_PKG;