DBA Data[Home] [Help]

APPS.CAC_SR_EXCEPTIONS_PKG dependencies on APP_EXCEPTION

Line 139: app_exception.raise_exception;

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

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 170: app_exception.raise_exception;

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