DBA Data[Home] [Help]

APPS.QPR_POLICIES_PKG dependencies on APP_EXCEPTION

Line 120: app_exception.raise_exception;

116: fetch c into recinfo;
117: if (c%notfound) then
118: close c;
119: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
120: app_exception.raise_exception;
121: end if;
122: close c;
123: if ( ((recinfo.ACTIVE_FLAG = X_ACTIVE_FLAG)
124: OR ((recinfo.ACTIVE_FLAG is null) AND (X_ACTIVE_FLAG is null)))

Line 133: app_exception.raise_exception;

129: ) then
130: null;
131: else
132: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
133: app_exception.raise_exception;
134: end if;
135:
136: for tlinfo in c1 loop
137: if (tlinfo.BASELANG = 'Y') then

Line 143: app_exception.raise_exception;

139: ) then
140: null;
141: else
142: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
143: app_exception.raise_exception;
144: end if;
145: end if;
146: end loop;
147: return;