DBA Data[Home] [Help]

APPS.JTF_EVT_HANDLERS_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.JTF_EVT_TYPES_ID = X_JTF_EVT_TYPES_ID)
124: AND (recinfo.JTF_EVT_HANDLERS_NAME = X_JTF_EVT_HANDLERS_NAME)

Line 135: app_exception.raise_exception;

131: ) then
132: null;
133: else
134: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
135: app_exception.raise_exception;
136: end if;
137:
138: for tlinfo in c1 loop
139: if (tlinfo.BASELANG = 'Y') then

Line 146: app_exception.raise_exception;

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