DBA Data[Home] [Help]

APPS.SY_REAS_CDS_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.REASON_DESC2 = X_REASON_DESC2)
133: OR ((recinfo.REASON_DESC2 is null) AND (X_REASON_DESC2 is null)))

Line 147: app_exception.raise_exception;

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

Line 157: app_exception.raise_exception;

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