DBA Data[Home] [Help]

APPS.QPR_REPORT_TYPE_HDRS_PKG dependencies on APP_EXCEPTION

Line 124: app_exception.raise_exception;

120: fetch c into recinfo;
121: if (c%notfound) then
122: close c;
123: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
124: app_exception.raise_exception;
125: end if;
126: close c;
127: if ( ((recinfo.REPORT_DOMAIN_CODE = X_REPORT_DOMAIN_CODE)
128: OR ((recinfo.REPORT_DOMAIN_CODE is null) AND (X_REPORT_DOMAIN_CODE is null)))

Line 141: app_exception.raise_exception;

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

Line 154: app_exception.raise_exception;

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