DBA Data[Home] [Help]

APPS.BIS_DIMENSION_LEVEL_PVT dependencies on APP_EXCEPTION

Line 2471: -- for the table handler , app_exception is needed. Otherwise it does not throws up in

2467: WHEN OTHERS THEN
2468: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR ;
2469: END validate_disabling;
2470:
2471: -- for the table handler , app_exception is needed. Otherwise it does not throws up in
2472: -- customization APIs
2473:
2474: PROCEDURE validate_disabling (p_dim_level_id IN NUMBER) IS
2475: BEGIN

Line 2481: app_exception.raise_exception;

2477: IF ( isPMFDimensionLevel( p_dim_level_id => p_dim_level_id )) THEN
2478: -- check if this dimension level is used to set target
2479: IF ( IS_TARGET_DEFINED(p_dim_level_id => p_dim_level_id) ) THEN
2480: fnd_message.set_name('BIS','BIS_PMF_DIM_LVL_USED_IN_TARGET');
2481: app_exception.raise_exception;
2482: END IF;
2483:
2484: -- check if this dimension level is assigned to a KPI
2485: IF ( IS_ASSIGNED_TO_KPI(p_dim_level_id => p_dim_level_id) ) THEN

Line 2487: app_exception.raise_exception;

2483:
2484: -- check if this dimension level is assigned to a KPI
2485: IF ( IS_ASSIGNED_TO_KPI(p_dim_level_id => p_dim_level_id) ) THEN
2486: fnd_message.set_name('BIS', 'BIS_BSC_DIM_LVL_KPI_ASSIGNED');
2487: app_exception.raise_exception;
2488: END IF;
2489: END IF;
2490: END validate_disabling;
2491: