DBA Data[Home] [Help]

APPS.ENG_CHANGE_CLASSIFICATIONS_PKG dependencies on APP_EXCEPTION

Line 104: app_exception.raise_exception;

100: fetch c into recinfo;
101: if (c%notfound) then
102: close c;
103: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
104: app_exception.raise_exception;
105: end if;
106: close c;
107: if ( ((recinfo.START_DATE = X_START_DATE)
108: OR ((recinfo.START_DATE is null) AND (X_START_DATE is null)))

Line 115: app_exception.raise_exception;

111: ) then
112: null;
113: else
114: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
115: app_exception.raise_exception;
116: end if;
117: for tlinfo in c1 loop
118: if (tlinfo.BASELANG = 'Y') then
119: if ( ((tlinfo.DESCRIPTION = X_DESCRIPTION)

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: end if;
130: end loop;
131: return;