DBA Data[Home] [Help]

APPS.AZ_SELECTION_SETS_PKG dependencies on APP_EXCEPTION

Line 133: app_exception.raise_exception;

129: fetch c into recinfo;
130: if (c%notfound) then
131: close c;
132: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
133: app_exception.raise_exception;
134: end if;
135: close c;
136: if ( (recinfo.STRUCTURE_CODE = X_STRUCTURE_CODE)
137: AND ((recinfo.SOURCE_INSTANCE = X_SOURCE_INSTANCE)

Line 144: app_exception.raise_exception;

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

Line 156: app_exception.raise_exception;

152: ) then
153: null;
154: else
155: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
156: app_exception.raise_exception;
157: end if;
158: end if;
159: end loop;
160: return;