DBA Data[Home] [Help]

APPS.BNE_CONTENTS_PKG dependencies on APP_EXCEPTION

Line 140: app_exception.raise_exception;

136: fetch c into recinfo;
137: if (c%notfound) then
138: close c;
139: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
140: app_exception.raise_exception;
141: end if;
142: close c;
143: if ( (recinfo.OBJECT_VERSION_NUMBER = X_OBJECT_VERSION_NUMBER)
144: AND (recinfo.INTEGRATOR_APP_ID = X_INTEGRATOR_APP_ID)

Line 158: app_exception.raise_exception;

154: ) then
155: null;
156: else
157: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
158: app_exception.raise_exception;
159: end if;
160:
161: for tlinfo in c1 loop
162: if (tlinfo.BASELANG = 'Y') then

Line 168: app_exception.raise_exception;

164: ) then
165: null;
166: else
167: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
168: app_exception.raise_exception;
169: end if;
170: end if;
171: end loop;
172: return;