DBA Data[Home] [Help]

APPS.WF_MESSAGE_ATTRIBUTES_PKG dependencies on WF_CORE

Line 100: wf_core.context('Wf_Message_Attributes_Pkg', 'Insert_Row',

96: close c;
97:
98: exception
99: when others then
100: wf_core.context('Wf_Message_Attributes_Pkg', 'Insert_Row',
101: x_message_name, x_message_type, x_name);
102: raise;
103: end INSERT_ROW;
104:

Line 156: wf_core.raise('WF_RECORD_DELETED');

152: open c;
153: fetch c into recinfo;
154: if (c%notfound) then
155: close c;
156: wf_core.raise('WF_RECORD_DELETED');
157: end if;
158: close c;
159: if ( (recinfo.SEQUENCE = X_SEQUENCE)
160: AND (recinfo.TYPE = X_TYPE)

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

172: OR ((recinfo.DATE_DEFAULT is null) AND (X_DATE_DEFAULT is null)))
173: ) then
174: null;
175: else
176: wf_core.raise('WF_RECORD_CHANGED');
177: end if;
178:
179: open c1;
180: fetch c1 into tlinfo;

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

189: OR ((tlinfo.DESCRIPTION is null) AND (X_DESCRIPTION is null)))
190: ) then
191: null;
192: else
193: wf_core.raise('WF_RECORD_CHANGED');
194: end if;
195: return;
196:
197: exception

Line 199: wf_core.context('Wf_Message_Attributes_Pkg', 'Lock_Row',

195: return;
196:
197: exception
198: when others then
199: wf_core.context('Wf_Message_Attributes_Pkg', 'Lock_Row',
200: x_message_name, x_message_type, x_name);
201: raise;
202: end LOCK_ROW;
203:

Line 258: wf_core.context('Wf_Message_Attributes_Pkg', 'Update_Row',

254: end if;
255:
256: exception
257: when others then
258: wf_core.context('Wf_Message_Attributes_Pkg', 'Update_Row',
259: x_message_name, x_message_type, x_name);
260: raise;
261: end UPDATE_ROW;
262:

Line 289: wf_core.context('Wf_Message_Attributes_Pkg', 'Delete_Row',

285: end if;
286:
287: exception
288: when others then
289: wf_core.context('Wf_Message_Attributes_Pkg', 'Delete_Row',
290: x_message_name, x_message_type, x_name);
291: raise;
292: end DELETE_ROW;
293: