DBA Data[Home] [Help]

APPS.FND_SVC_COMP_PARAMS_PKG dependencies on WF_CORE

Line 98: wf_core.context('FND_SVC_COMP_PARAMS_PKG', 'Insert_Row', X_PARAMETER_ID, X_PARAMETER_NAME);

94: close c;
95:
96: exception
97: when others then
98: wf_core.context('FND_SVC_COMP_PARAMS_PKG', 'Insert_Row', X_PARAMETER_ID, X_PARAMETER_NAME);
99: raise;
100: end INSERT_ROW;
101:
102: procedure LOCK_ROW (

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

138: open c;
139: fetch c into recinfo;
140: if (c%notfound) then
141: close c;
142: wf_core.raise('WF_RECORD_DELETED');
143: end if;
144: close c;
145: if ( (recinfo.OBJECT_VERSION_NUMBER = X_OBJECT_VERSION_NUMBER)
146: AND (recinfo.PARAMETER_NAME = X_PARAMETER_NAME)

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

153: AND (recinfo.CUSTOMIZATION_LEVEL = X_CUSTOMIZATION_LEVEL)
154: ) then
155: null;
156: else
157: wf_core.raise('WF_RECORD_CHANGED');
158: end if;
159:
160: for tlinfo in c1 loop
161: if (tlinfo.BASELANG = 'Y') then

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

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

Line 176: wf_core.context('FND_SVC_COMP_PARAMS_PKG', 'Lock_Row', X_PARAMETER_ID, X_PARAMETER_NAME);

172: return;
173:
174: exception
175: when others then
176: wf_core.context('FND_SVC_COMP_PARAMS_PKG', 'Lock_Row', X_PARAMETER_ID, X_PARAMETER_NAME);
177: raise;
178: end LOCK_ROW;
179:
180: procedure UPDATE_ROW (

Line 237: wf_core.translate('SVC_RECORD_ALREADY_UPDATED'));

233: l_object_version_number := l_object_version_number + 1;
234: else
235:
236: raise_application_error(-20002,
237: wf_core.translate('SVC_RECORD_ALREADY_UPDATED'));
238:
239: end if;
240:
241: end if;

Line 277: wf_core.context('FND_SVC_COMP_PARAMS_PKG', 'Update_Row', X_PARAMETER_ID, X_PARAMETER_NAME);

273: end if;
274:
275: exception
276: when others then
277: wf_core.context('FND_SVC_COMP_PARAMS_PKG', 'Update_Row', X_PARAMETER_ID, X_PARAMETER_NAME);
278: raise;
279: end UPDATE_ROW;
280:
281: procedure DELETE_ROW (

Line 301: wf_core.context('FND_SVC_COMP_PARAMS_PKG', 'Delete_Row', X_PARAMETER_ID);

297: end if;
298:
299: exception
300: when others then
301: wf_core.context('FND_SVC_COMP_PARAMS_PKG', 'Delete_Row', X_PARAMETER_ID);
302: raise;
303: end DELETE_ROW;
304:
305: procedure ADD_LANGUAGE