DBA Data[Home] [Help]

APPS.FRM_DELIVERY_OPTIONS_PKG dependencies on APP_EXCEPTION

Line 119: app_exception.raise_exception;

115: fetch c into recinfo;
116: if (c%notfound) then
117: close c;
118: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
119: app_exception.raise_exception;
120: end if;
121: close c;
122: if ( (recinfo.CONFIGURATION_ID = X_CONFIGURATION_ID)
123: AND (recinfo.DELIVERY_TYPE = X_DELIVERY_TYPE)

Line 132: app_exception.raise_exception;

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

Line 142: app_exception.raise_exception;

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