DBA Data[Home] [Help]

APPS.QPR_PR_SEGMENTS_PKG dependencies on APP_EXCEPTION

Line 137: app_exception.raise_exception;

133: fetch c into recinfo;
134: if (c%notfound) then
135: close c;
136: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
137: app_exception.raise_exception;
138: end if;
139: close c;
140: if ( (recinfo.INSTANCE_ID = X_INSTANCE_ID)
141: AND ((recinfo.DEFAULT_POLICY_ID = X_DEFAULT_POLICY_ID)

Line 155: app_exception.raise_exception;

151: ) then
152: null;
153: else
154: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
155: app_exception.raise_exception;
156: end if;
157:
158: for tlinfo in c1 loop
159: 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;