DBA Data[Home] [Help]

APPS.WF_MESSAGES_PKG dependencies on WF_CORE

Line 84: wf_core.context('Wf_Messages_Pkg', 'Insert_Row', x_type, x_name);

80: close c;
81:
82: exception
83: when others then
84: wf_core.context('Wf_Messages_Pkg', 'Insert_Row', x_type, x_name);
85: raise;
86: end INSERT_ROW;
87:
88: procedure LOCK_ROW (

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

128: open c;
129: fetch c into recinfo;
130: if (c%notfound) then
131: close c;
132: wf_core.raise('WF_RECORD_DELETED');
133: end if;
134: close c;
135: if ( (recinfo.PROTECT_LEVEL = X_PROTECT_LEVEL)
136: AND (recinfo.CUSTOM_LEVEL = X_CUSTOM_LEVEL)

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

142: OR ((recinfo.WRITE_ROLE is null) AND (X_WRITE_ROLE is null)))
143: ) then
144: null;
145: else
146: wf_core.raise('WF_RECORD_CHANGED');
147: end if;
148:
149: open c1;
150: fetch c1 into tlinfo;

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

164: OR ((tlinfo.HTML_BODY is null) AND (X_HTML_BODY is null)))
165: ) then
166: null;
167: else
168: wf_core.raise('WF_RECORD_CHANGED');
169: end if;
170: return;
171:
172: exception

Line 174: wf_core.context('Wf_Messages_Pkg', 'Lock_Row', x_type, x_name);

170: return;
171:
172: exception
173: when others then
174: wf_core.context('Wf_Messages_Pkg', 'Lock_Row', x_type, x_name);
175: raise;
176: end LOCK_ROW;
177:
178: procedure UPDATE_ROW (

Line 223: wf_core.context('Wf_Messages_Pkg', 'Update_Row', x_type, x_name);

219: end if;
220:
221: exception
222: when others then
223: wf_core.context('Wf_Messages_Pkg', 'Update_Row', x_type, x_name);
224: raise;
225: end UPDATE_ROW;
226:
227: procedure DELETE_ROW (

Line 250: wf_core.context('Wf_Messages_Pkg', 'Delete_Row', x_type, x_name);

246: end if;
247:
248: exception
249: when others then
250: wf_core.context('Wf_Messages_Pkg', 'Delete_Row', x_type, x_name);
251: raise;
252: end DELETE_ROW;
253:
254: procedure ADD_LANGUAGE