DBA Data[Home] [Help]

APPS.IEB_SVC_PLANS_PKG dependencies on APP_EXCEPTION

Line 146: app_exception.raise_exception;

142: fetch c into recinfo;
143: if (c%notfound) then
144: close c;
145: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
146: app_exception.raise_exception;
147: end if;
148: close c;
149: if ( (recinfo.SERVICE_PLAN_NAME = P_SERVICE_PLAN_NAME)
150: AND (recinfo.DIRECTION = P_DIRECTION)

Line 160: app_exception.raise_exception;

156: then
157: null;
158: else
159: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
160: app_exception.raise_exception;
161: end if;
162:
163: for tlinfo in c1 loop
164: if (tlinfo.BASELANG = 'Y') then

Line 171: app_exception.raise_exception;

167: ) then
168: null;
169: else
170: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
171: app_exception.raise_exception;
172: end if;
173: end if;
174: end loop;
175: return;