DBA Data[Home] [Help]

APPS.JTF_R_RULES_PKG 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.START_DATE = X_START_DATE)
140: OR ((recinfo.START_DATE is null) AND (X_START_DATE 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 167: app_exception.raise_exception;

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