DBA Data[Home] [Help]

APPS.JTF_UM_USERTYPES_PKG dependencies on APP_EXCEPTION

Line 143: app_exception.raise_exception;

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

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;