DBA Data[Home] [Help]

APPS.PSP_SCHEDULE_HIERARCHY_PKG dependencies on APP_EXCEPTION

Line 37: app_exception.raise_exception;

33: X_LAST_UPDATE_LOGIN := -1;
34: end if;
35: else
36: FND_MESSAGE.SET_NAME( 'FND', 'SYSTEM-INVALID ARGS');
37: app_exception.raise_exception;
38: end if;
39: insert into PSP_SCHEDULE_HIERARCHY (
40: SCHEDULE_HIERARCHY_ID,
41: ASSIGNMENT_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_CHANGED');
101: app_exception.raise_exception;
102: close c1;
103: return;
104: end if;
105: close c1;

Line 121: app_exception.raise_exception;

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

Line 155: app_exception.raise_exception;

151: X_LAST_UPDATE_LOGIN := -1;
152: end if;
153: else
154: FND_MESSAGE.SET_NAME('FND', 'SYSTEM-INVALID ARGS');
155: app_exception.raise_exception;
156: end if;
157: update PSP_SCHEDULE_HIERARCHY set
158: ASSIGNMENT_ID = X_ASSIGNMENT_ID,
159: SCHEDULING_TYPES_CODE = X_SCHEDULING_TYPES_CODE,