DBA Data[Home] [Help]

APPS.CS_SR_STATUS_GROUPS_PKG dependencies on APP_EXCEPTION

Line 154: app_exception.raise_exception;

150: fetch c into recinfo;
151: if (c%notfound) then
152: close c;
153: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
154: app_exception.raise_exception;
155: end if;
156: close c;
157: if ( ((recinfo.SECURITY_GROUP_ID = X_SECURITY_GROUP_ID)
158: OR ((recinfo.SECURITY_GROUP_ID is null) AND (X_SECURITY_GROUP_ID is null)))

Line 175: app_exception.raise_exception;

171: ) then
172: null;
173: else
174: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
175: app_exception.raise_exception;
176: end if;
177:
178: for tlinfo in c1 loop
179: if (tlinfo.BASELANG = 'Y') then

Line 189: app_exception.raise_exception;

185: ) then
186: null;
187: else
188: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
189: app_exception.raise_exception;
190: end if;
191: end if;
192: end loop;
193: return;