DBA Data[Home] [Help]

APPS.WF_DIRECTORY_PARTITIONS_PKG dependencies on WF_DIRECTORY_PARTITIONS_PKG

Line 1: package body WF_DIRECTORY_PARTITIONS_PKG as

1: package body WF_DIRECTORY_PARTITIONS_PKG as
2: /* $Header: wfdpb.pls 120.2 2005/09/01 08:19:36 hgandiko noship $ */
3:
4: procedure INSERT_ROW (
5: X_ROWID in out nocopy VARCHAR2,

Line 57: wf_core.context('Wf_Directory_Partitions_Pkg','Insert_Row',x_orig_system);

53: close c;
54:
55: exception
56: when others then
57: wf_core.context('Wf_Directory_Partitions_Pkg','Insert_Row',x_orig_system);
58: raise;
59: end INSERT_ROW;
60:
61: procedure LOCK_ROW (

Line 111: wf_core.context('Wf_Directory_Partitions_Pkg', 'Lock_Row', x_orig_system);

107: return;
108:
109: exception
110: when others then
111: wf_core.context('Wf_Directory_Partitions_Pkg', 'Lock_Row', x_orig_system);
112: raise;
113: end LOCK_ROW;
114:
115: procedure UPDATE_ROW (

Line 141: wf_core.context('Wf_Directory_Partitions_Pkg','Update_Row',x_orig_system);

137: end if;
138:
139: exception
140: when others then
141: wf_core.context('Wf_Directory_Partitions_Pkg','Update_Row',x_orig_system);
142: raise;
143: end UPDATE_ROW;
144:
145: procedure DELETE_ROW (

Line 165: wf_core.context('Wf_Directory_Partitions_Pkg','Delete_Row',x_orig_system);

161: end if;
162:
163: exception
164: when others then
165: wf_core.context('Wf_Directory_Partitions_Pkg','Delete_Row',x_orig_system);
166: raise;
167: end DELETE_ROW;
168:
169: procedure ADD_LANGUAGE

Line 219: wf_core.context('Wf_Directory_Partitions_Pkg', 'Add_Language');

215: and T.LANGUAGE = L.CODE);
216:
217: exception
218: when others then
219: wf_core.context('Wf_Directory_Partitions_Pkg', 'Add_Language');
220: raise;
221: end ADD_LANGUAGE;
222:
223: procedure LOAD_ROW (

Line 233: wf_directory_partitions_pkg.Update_row(

229: l_rowid varchar2(30);
230: l_orig_system varchar2(30);
231: begin
232: begin
233: wf_directory_partitions_pkg.Update_row(
234: X_ORIG_SYSTEM => l_orig_system,
235: X_PARTITION_ID => X_PARTITION_ID,
236: X_DISPLAY_NAME => X_DISPLAY_NAME);
237: exception

Line 239: wf_directory_partitions_pkg.Insert_Row(

235: X_PARTITION_ID => X_PARTITION_ID,
236: X_DISPLAY_NAME => X_DISPLAY_NAME);
237: exception
238: when NO_DATA_FOUND then
239: wf_directory_partitions_pkg.Insert_Row(
240: X_ROWID => l_rowid,
241: X_ORIG_SYSTEM => X_ORIG_SYSTEM,
242: X_PARTITION_ID => X_PARTITION_ID,
243: X_DISPLAY_NAME => X_DISPLAY_NAME);

Line 247: wf_core.context('Wf_Directory_Partitions_Pkg','Load_Row',x_orig_system);

243: X_DISPLAY_NAME => X_DISPLAY_NAME);
244: end;
245: exception
246: when others then
247: wf_core.context('Wf_Directory_Partitions_Pkg','Load_Row',x_orig_system);
248: raise;
249: end LOAD_ROW;
250:
251: procedure TRANSLATE_ROW (

Line 264: wf_core.context('Wf_Directory_Partitions_Pkg','Translate_Row',x_orig_system);

260: where ORIG_SYSTEM = X_ORIG_SYSTEM
261: and userenv('LANG') in (language, source_lang);
262: exception
263: when others then
264: wf_core.context('Wf_Directory_Partitions_Pkg','Translate_Row',x_orig_system);
265: raise;
266: end TRANSLATE_ROW;
267:
268: --

Line 293: wf_core.context('Wf_Directory_Partitions_Pkg','Update_View_Names',

289: end if;
290:
291: exception
292: when others then
293: wf_core.context('Wf_Directory_Partitions_Pkg','Update_View_Names',
294: x_orig_system);
295: raise;
296: end UPDATE_VIEW_NAMES;
297:

Line 298: end WF_DIRECTORY_PARTITIONS_PKG;

294: x_orig_system);
295: raise;
296: end UPDATE_VIEW_NAMES;
297:
298: end WF_DIRECTORY_PARTITIONS_PKG;