DBA Data[Home] [Help]

APPS.JTF_IH_RESULTS_SEED_PVT dependencies on APP_EXCEPTION

Line 141: app_exception.raise_exception;

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

Line 159: app_exception.raise_exception;

155: ) then
156: null;
157: else
158: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
159: app_exception.raise_exception;
160: end if;
161:
162: for tlinfo in c1 loop
163: if (tlinfo.BASELANG = 'Y') then

Line 176: app_exception.raise_exception;

172: ) then
173: null;
174: else
175: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
176: app_exception.raise_exception;
177: end if;
178: end if;
179: end loop;
180: return;