DBA Data[Home] [Help]

APPS.IEC_G_CAL_CALENDARS_PKG dependencies on APP_EXCEPTION

Line 114: app_exception.raise_exception;

110: fetch c into recinfo;
111: if (c%notfound) then
112: close c;
113: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
114: app_exception.raise_exception;
115: end if;
116: close c;
117: if ( (recinfo.CALENDAR_TYPE_CODE = X_CALENDAR_TYPE_CODE)
118: AND ((recinfo.TERRITORY_CODE = X_TERRITORY_CODE)

Line 126: app_exception.raise_exception;

122: ) then
123: null;
124: else
125: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
126: app_exception.raise_exception;
127: end if;
128:
129: for tlinfo in c1 loop
130: if (tlinfo.BASELANG = 'Y') then

Line 137: app_exception.raise_exception;

133: ) then
134: null;
135: else
136: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
137: app_exception.raise_exception;
138: end if;
139: end if;
140: end loop;
141: return;