DBA Data[Home] [Help]

APPS.JTF_R_RULESETS_PKG dependencies on APP_EXCEPTION

Line 146: app_exception.raise_exception;

142: fetch c into recinfo;
143: if (c%notfound) then
144: close c;
145: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
146: app_exception.raise_exception;
147: end if;
148: close c;
149: if ( (recinfo.APPLICATION_ID = X_APPLICATION_ID)
150: AND (recinfo.STATUS = X_STATUS)

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:
174: for tlinfo in c1 loop
175: if (tlinfo.BASELANG = 'Y') then

Line 183: app_exception.raise_exception;

179: ) then
180: null;
181: else
182: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
183: app_exception.raise_exception;
184: end if;
185: end if;
186: end loop;
187: return;