DBA Data[Home] [Help]

APPS.EDW_FLEX_SEG_MAPPING_LINES_PKG dependencies on APP_EXCEPTION

Line 115: app_exception.raise_exception;

111: fetch c into recinfo;
112: if (c%notfound) then
113: close c;
114: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
115: app_exception.raise_exception;
116: end if;
117: close c;
118: if ( (nvl(recinfo.INSTANCE_CODE, 'AA') = nvl(X_INSTANCE_CODE, 'AA'))
119: AND (nvl(recinfo.STRUCTURE_NUM, 1) = nvl(X_STRUCTURE_NUM, 1))

Line 132: app_exception.raise_exception;

128: ) then
129: null;
130: else
131: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
132: app_exception.raise_exception;
133: end if;
134:
135: return;
136: end LOCK_ROW;