DBA Data[Home] [Help]

APPS.OKC_UDA_TEMPLATES_ALL_PKG dependencies on APP_EXCEPTION

Line 120: app_exception.raise_exception;

116: fetch c into recinfo;
117: if (c%notfound) then
118: close c;
119: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
120: app_exception.raise_exception;
121: end if;
122: close c;
123: if ( ((recinfo.END_DATE = X_END_DATE)
124: OR ((recinfo.END_DATE is null) AND (X_END_DATE is null)))

Line 131: app_exception.raise_exception;

127: ) then
128: null;
129: else
130: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
131: app_exception.raise_exception;
132: end if;
133:
134: for tlinfo in c1 loop
135: if (tlinfo.BASELANG = 'Y') then

Line 143: app_exception.raise_exception;

139: ) then
140: null;
141: else
142: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
143: app_exception.raise_exception;
144: end if;
145: end if;
146: end loop;
147: return;