DBA Data[Home] [Help]

APPS.IEC_G_CAL_DAYS_PKG dependencies on APP_EXCEPTION

Line 135: app_exception.raise_exception;

131: fetch c into recinfo;
132: if (c%notfound) then
133: close c;
134: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
135: app_exception.raise_exception;
136: end if;
137: close c;
138: if ( (recinfo.CALENDAR_ID = X_CALENDAR_ID)
139: AND (recinfo.DAY_CODE = X_DAY_CODE)

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:
157: for tlinfo in c1 loop
158: 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;