DBA Data[Home] [Help]

APPS.PER_PREV_JOB_INFO_TYPES_PKG dependencies on APP_EXCEPTION

Line 114: app_exception.raise_exception;

110: fetch c into recinfo;
111: if (c%notfound) then
112: close c;
113: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
114: app_exception.raise_exception;
115: end if;
116: close c;
117: if ( (recinfo.ACTIVE_INACTIVE_FLAG = X_ACTIVE_INACTIVE_FLAG)
118: AND (recinfo.MULTIPLE_OCCURANCES_FLAG = X_MULTIPLE_OCCURANCES_FLAG)

Line 127: app_exception.raise_exception;

123: ) then
124: null;
125: else
126: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
127: app_exception.raise_exception;
128: end if;
129:
130: return;
131: end LOCK_ROW;