DBA Data[Home] [Help]

APPS.AME_CONDITIONS_API dependencies on AME_CONDITIONS_API

Line 1: PACKAGE BODY AME_CONDITIONS_API AS

1: PACKAGE BODY AME_CONDITIONS_API AS
2: /* $Header: amecoapi.pkb 120.3 2006/03/15 01:23 pvelugul noship $ */
3:
4: X_AME_INSTALLATION_LEVEL varchar2(255);
5: procedure OWNER_TO_WHO (

Line 215: ame_util.runtimeException(packageNameIn => 'ame_conditions_api',

211: when invalidConditionTypeException then
212: errorMessage :=
213: 'OAM is attempting to upload an invalid condition type.';
214: errorCode := -20001;
215: ame_util.runtimeException(packageNameIn => 'ame_conditions_api',
216: routineNameIn => 'validate_condition',
217: exceptionNumberIn => errorCode,
218: exceptionStringIn => errorMessage);
219: raise_application_error(errorCode,

Line 223: ame_util.runtimeException(packageNameIn => 'ame_conditions_api',

219: raise_application_error(errorCode,
220: errorMessage);
221: when invalidCondAttrTypeException then
222: errorCode := -20001;
223: ame_util.runtimeException(packageNameIn => 'ame_conditions_api',
224: routineNameIn => 'validate_condition',
225: exceptionNumberIn => errorCode,
226: exceptionStringIn => errorMessage);
227: raise_application_error(errorCode,

Line 233: ame_util.runtimeException(packageNameIn => 'ame_conditions_api',

229: when invalid_number then
230: errorMessage :=
231: 'OAM is attempting to upload an invalid number or currency attribute condition.';
232: errorCode := -20001;
233: ame_util.runtimeException(packageNameIn => 'ame_conditions_api',
234: routineNameIn => 'validate_condition',
235: exceptionNumberIn => errorCode,
236: exceptionStringIn => errorMessage);
237: raise_application_error(errorCode,

Line 241: ame_util.runtimeException('ame_conditions_api',

237: raise_application_error(errorCode,
238: errorMessage);
239:
240: when others then
241: ame_util.runtimeException('ame_conditions_api',
242: 'validate_condition',
243: sqlcode,
244: sqlerrm);
245: raise;

Line 370: ame_util.runtimeException('ame_conditions_api',

366: end loop;
367: return(X_NEW_CONDITION_KEY);
368: exception
369: when others then
370: ame_util.runtimeException('ame_conditions_api',
371: 'create_condition_key',
372: sqlcode,
373: sqlerrm);
374: raise;

Line 451: ame_util.runtimeException('ame_conditions_api',

447: -- do not update or insert.
448: end;
449: exception
450: when others then
451: ame_util.runtimeException('ame_conditions_api',
452: 'load_row',
453: sqlcode,
454: sqlerrm);
455: raise;

Line 458: END AME_CONDITIONS_API;

454: sqlerrm);
455: raise;
456: end LOAD_ROW;
457: --
458: END AME_CONDITIONS_API;