DBA Data[Home] [Help]

APPS.XDP_FULFILL_ACTIONS_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.FULFILLMENT_ACTION = X_FULFILLMENT_ACTION)
133: AND (recinfo.VERSION = X_VERSION)

Line 146: app_exception.raise_exception;

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

Line 158: app_exception.raise_exception;

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