DBA Data[Home] [Help]

APPS.GMD_CUSTOMER_TESTS_PVT dependencies on APP_EXCEPTION

Line 144: app_exception.raise_exception;

140: fetch c into recinfo;
141: if (c%notfound) then
142: close c;
143: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
144: app_exception.raise_exception;
145: end if;
146: close c;
147: if ( ((recinfo.REPORT_PRECISION = X_REPORT_PRECISION)
148: OR ((recinfo.REPORT_PRECISION is null) AND (X_REPORT_PRECISION is null)))

Line 155: app_exception.raise_exception;

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

Line 165: app_exception.raise_exception;

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