DBA Data[Home] [Help]

APPS.PSP_EFFORT_REPORT_DETAILS_PKG dependencies on APP_EXCEPTION

Line 42: app_exception.raise_exception;

38: X_LAST_UPDATE_LOGIN := -1;
39: end if;
40: else
41: FND_MESSAGE.SET_NAME( 'FND', 'SYSTEM-INVALID ARGS');
42: app_exception.raise_exception;
43: end if;
44: insert into PSP_EFFORT_REPORT_DETAILS (
45: EFFORT_REPORT_ID,
46: VERSION_NUM,

Line 128: app_exception.raise_exception;

124: open c1;
125: fetch c1 into tlinfo;
126: if (c1%notfound) then
127: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
128: app_exception.raise_exception;
129: close c1;
130: return;
131: end if;
132: close c1;

Line 159: app_exception.raise_exception;

155: ) then
156: null;
157: else
158: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
159: app_exception.raise_exception;
160: end if;
161: return;
162: end LOCK_ROW;
163:

Line 198: app_exception.raise_exception;

194: X_LAST_UPDATE_LOGIN := -1;
195: end if;
196: else
197: FND_MESSAGE.SET_NAME('FND', 'SYSTEM-INVALID ARGS');
198: app_exception.raise_exception;
199: end if;
200: update PSP_EFFORT_REPORT_DETAILS set
201: ASSIGNMENT_ID = X_ASSIGNMENT_ID,
202: ELEMENT_TYPE_ID = X_ELEMENT_TYPE_ID,