DBA Data[Home] [Help]

APPS.JTF_IH_REASONS_SEED_PVT dependencies on APP_EXCEPTION

Line 136: app_exception.raise_exception;

132: fetch c into recinfo;
133: if (c%notfound) then
134: close c;
135: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
136: app_exception.raise_exception;
137: end if;
138: close c;
139: if ( ((recinfo.GENERATE_PRIVATE_CALLBACK = X_GENERATE_PRIVATE_CALLBACK)
140: OR ((recinfo.GENERATE_PRIVATE_CALLBACK is null) AND (X_GENERATE_PRIVATE_CALLBACK is null)))

Line 153: app_exception.raise_exception;

149: ) then
150: null;
151: else
152: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
153: app_exception.raise_exception;
154: end if;
155:
156: for tlinfo in c1 loop
157: if (tlinfo.BASELANG = 'Y') then

Line 170: app_exception.raise_exception;

166: ) then
167: null;
168: else
169: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
170: app_exception.raise_exception;
171: end if;
172: end if;
173: end loop;
174: return;