DBA Data[Home] [Help]

APPS.QP_PARAMETERS_PKG dependencies on APP_EXCEPTION

Line 129: app_exception.raise_exception;

125: fetch c into recinfo;
126: if (c%notfound) then
127: close c;
128: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
129: app_exception.raise_exception;
130: end if;
131: close c;
132: if ( ((recinfo.VALUE_SET_ID = X_VALUE_SET_ID)
133: OR ((recinfo.VALUE_SET_ID is null) AND (X_VALUE_SET_ID is null)))

Line 144: app_exception.raise_exception;

140: ) then
141: null;
142: else
143: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
144: app_exception.raise_exception;
145: end if;
146:
147: for tlinfo in c1 loop
148: if (tlinfo.BASELANG = 'Y') then

Line 156: app_exception.raise_exception;

152: ) then
153: null;
154: else
155: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
156: app_exception.raise_exception;
157: end if;
158: end if;
159: end loop;
160: return;