DBA Data[Home] [Help]

APPS.AZ_SELECTION_SET_ENTITIES_PKG dependencies on APP_EXCEPTION

Line 161: app_exception.raise_exception;

157: fetch c into recinfo;
158: if (c%notfound) then
159: close c;
160: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
161: app_exception.raise_exception;
162: end if;
163: close c;
164: if ( ((recinfo.REF_ENTITY_OCCURANCE_CODE = X_REF_ENTITY_OCCURANCE_CODE)
165: OR ((recinfo.REF_ENTITY_OCCURANCE_CODE is null) AND (X_REF_ENTITY_OCCURANCE_CODE is null)))

Line 183: app_exception.raise_exception;

179: ) then
180: null;
181: else
182: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
183: app_exception.raise_exception;
184: end if;
185:
186: for tlinfo in c1 loop
187: if (tlinfo.BASELANG = 'Y') then

Line 194: app_exception.raise_exception;

190: ) then
191: null;
192: else
193: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
194: app_exception.raise_exception;
195: end if;
196: end if;
197: end loop;
198: return;