DBA Data[Home] [Help]

APPS.ENG_CHANGE_MGMT_TYPES_PKG dependencies on APP_EXCEPTION

Line 130: app_exception.raise_exception;

126: fetch c into recinfo;
127: if (c%notfound) then
128: close c;
129: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
130: app_exception.raise_exception;
131: end if;
132: close c;
133: if ( ((recinfo.ENABLE_REV_ITEMS_FLAG = X_ENABLE_REV_ITEMS_FLAG)
134: OR ((recinfo.ENABLE_REV_ITEMS_FLAG is null) AND (X_ENABLE_REV_ITEMS_FLAG is null)))

Line 147: app_exception.raise_exception;

143: ) then
144: null;
145: else
146: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
147: app_exception.raise_exception;
148: end if;
149:
150: for tlinfo in c1 loop
151: if (tlinfo.BASELANG = 'Y') then

Line 162: app_exception.raise_exception;

158: ) then
159: null;
160: else
161: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
162: app_exception.raise_exception;
163: end if;
164: end if;
165: end loop;
166: return;