DBA Data[Home] [Help]

APPS.XDP_SERVICE_WI_MAP_PKG dependencies on APP_EXCEPTION

Line 114: app_exception.raise_exception;

110: fetch c into recinfo;
111: if (c%notfound) then
112: close c;
113: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
114: app_exception.raise_exception;
115: end if;
116: close c;
117: if ( (recinfo.SERVICE_VAL_ACT_ID = X_SERVICE_VAL_ACT_ID)
118: AND (recinfo.WORKITEM_ID = X_WORKITEM_ID)

Line 125: app_exception.raise_exception;

121: ) then
122: null;
123: else
124: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
125: app_exception.raise_exception;
126: end if;
127:
128: for tlinfo in c1 loop
129: if (tlinfo.BASELANG = 'Y') then

Line 136: app_exception.raise_exception;

132: ) then
133: null;
134: else
135: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
136: app_exception.raise_exception;
137: end if;
138: end if;
139: end loop;
140: return;