DBA Data[Home] [Help]

APPS.WF_DIRECTORY_PARTITIONS_PKG dependencies on WF_CORE

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 86: wf_core.raise('WF_RECORD_DELETED');

82: open c;
83: fetch c into recinfo;
84: if (c%notfound) then
85: close c;
86: wf_core.raise('WF_RECORD_DELETED');
87: end if;
88: close c;
89: if ( ((recinfo.PARTITION_ID = X_PARTITION_ID)
90: OR ((recinfo.PARTITION_ID is null) AND (X_PARTITION_ID is null)))

Line 94: wf_core.raise('WF_RECORD_CHANGED');

90: OR ((recinfo.PARTITION_ID is null) AND (X_PARTITION_ID is null)))
91: ) then
92: null;
93: else
94: wf_core.raise('WF_RECORD_CHANGED');
95: end if;
96:
97: for tlinfo in c1 loop
98: if (tlinfo.BASELANG = 'Y') then

Line 103: wf_core.raise('WF_RECORD_CHANGED');

99: if ( (tlinfo.DISPLAY_NAME = X_DISPLAY_NAME)
100: ) then
101: null;
102: else
103: wf_core.raise('WF_RECORD_CHANGED');
104: end if;
105: end if;
106: end loop;
107: return;

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 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: