DBA Data[Home] [Help]

APPS.IEX_DUNNING_PLANS_PKG dependencies on APP_EXCEPTION

Line 155: app_exception.raise_exception;

151: fetch c into recinfo;
152: if (c%notfound) then
153: close c;
154: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
155: app_exception.raise_exception;
156: end if;
157: close c;
158:
159: if ( ((recinfo.start_date = x_start_date)

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

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