DBA Data[Home] [Help]

APPS.IGW_INSTITUTE_RATES_PKG dependencies on APP_EXCEPTION

Line 40: app_exception.raise_exception;

36: X_LAST_UPDATE_LOGIN := -1;
37: end if;
38: else
39: FND_MESSAGE.SET_NAME( 'FND', 'SYSTEM-INVALID ARGS');
40: app_exception.raise_exception;
41: end if;
42: insert into IGW_INSTITUTE_RATES (
43: RATE_CLASS_ID,
44: RATE_TYPE_ID,

Line 101: app_exception.raise_exception;

97: open c1;
98: fetch c1 into tlinfo;
99: if (c1%notfound) then
100: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
101: app_exception.raise_exception;
102: close c1;
103: return;
104: end if;
105: close c1;

Line 119: app_exception.raise_exception;

115: ) then
116: null;
117: else
118: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
119: app_exception.raise_exception;
120: end if;
121: return;
122: end LOCK_ROW;
123:

Line 154: app_exception.raise_exception;

150: X_LAST_UPDATE_LOGIN := -1;
151: end if;
152: else
153: FND_MESSAGE.SET_NAME('FND', 'SYSTEM-INVALID ARGS');
154: app_exception.raise_exception;
155: end if;
156: update IGW_INSTITUTE_RATES set
157: RATE_CLASS_ID = X_RATE_CLASS_ID,
158: RATE_TYPE_ID = X_RATE_TYPE_ID,