DBA Data[Home] [Help]

APPS.WSH_CC_PARAMETER_SETUPS_PKG dependencies on APP_EXCEPTION

Line 340: app_exception.raise_exception;

336: fetch c into recinfo;
337: if (c%notfound) then
338: close c;
339: fnd_message.set_name('FND', 'FORM_RECORD_DELETED');
340: app_exception.raise_exception;
341: end if;
342: close c;
343: if ( ((recinfo.PARAMETER_NAME = p_PARAMETER_NAME)
344: OR ((recinfo.PARAMETER_NAME is null) AND (p_PARAMETER_NAME is null)))

Line 356: app_exception.raise_exception;

352: x_return_status := FND_API.G_RET_STS_SUCCESS;
353: else
354: x_return_status := FND_API.G_RET_STS_ERROR;
355: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
356: app_exception.raise_exception;
357: end if;
358:
359: for tlinfo in c1 loop
360: if (tlinfo.BASELANG = 'Y') then

Line 370: app_exception.raise_exception;

366: x_return_status := FND_API.G_RET_STS_SUCCESS;
367: else
368: x_return_status := FND_API.G_RET_STS_ERROR;
369: fnd_message.set_name('FND', 'FORM_RECORD_CHANGED');
370: app_exception.raise_exception;
371: end if;
372: end if;
373: end loop;
374: EXCEPTION