DBA Data[Home] [Help]

APPS.BSC_DBI_CALENDAR dependencies on FND_API

Line 65: p_commit => FND_API.G_FALSE

61: return true;
62: end if;
63: BSC_BIS_DIM_OBJ_PUB.Create_Dim_Object
64: (
65: p_commit => FND_API.G_FALSE
66: , p_dim_obj_short_name => p_dim_obj
67: , p_display_name => p_dim_obj
68: , p_application_id => BSC_PERIODS_UTILITY_PKG.C_BSC_APPLICATION_ID
69: , p_description => p_dim_obj

Line 88: if (x_return_status= FND_API.G_RET_STS_SUCCESS) then

84: , x_return_status => x_return_status
85: , x_msg_count => x_msg_count
86: , x_msg_data => x_msg_data
87: );
88: if (x_return_status= FND_API.G_RET_STS_SUCCESS) then
89: return true;
90: else
91: p_error_msg := x_msg_data;
92: return false;

Line 108: ( p_commit => FND_API.G_FALSE

104: if (dimension_exists(p_dim)) then
105: return true;
106: end if;
107: BSC_BIS_DIMENSION_PUB.Create_Dimension
108: ( p_commit => FND_API.G_FALSE
109: , p_dim_short_name => p_dim
110: , p_display_name => p_dim
111: , p_description => p_dim
112: , p_dim_obj_short_names => NULL

Line 119: if (x_return_status= FND_API.G_RET_STS_SUCCESS) then

115: , x_return_status => x_Return_Status
116: , x_msg_count => x_Msg_Count
117: , x_msg_data => x_Msg_Data
118: );
119: if (x_return_status= FND_API.G_RET_STS_SUCCESS) then
120: return true;
121: else
122: p_error_msg:= x_msg_data;
123: return false;