DBA Data[Home] [Help]

APPS.FEM_BUSINESS_RULE_PVT dependencies on FEM_PL_PKG

Line 495: FEM_PL_PKG.can_delete_object (

491: ,p_msg_text => 'IsObjectEmpty');
492:
493: -- Check to see if we can delete the Object (this will also check to see
494: -- if the last Object Definition can be deleted).
495: FEM_PL_PKG.can_delete_object (
496: p_api_version => 1.0
497: ,p_init_msg_list => FND_API.G_FALSE
498: ,x_return_status => l_return_status
499: ,x_msg_count => l_msg_count

Line 518: FEM_PL_PKG.can_delete_object_def (

514: ,p_module => G_BLOCK||'.'||l_api_name
515: ,p_msg_text => 'NOT IsObjectEmpty');
516:
517: -- Check to see if we can delete the Object Definition
518: FEM_PL_PKG.can_delete_object_def (
519: p_api_version => 1.0
520: ,p_init_msg_list => FND_API.G_FALSE
521: ,x_return_status => l_return_status
522: ,x_msg_count => l_msg_count

Line 535: -- We can ignore l_can_delete as these FEM_PL_PKG API's now have the

531: ,p_module => G_BLOCK||'.'||l_api_name
532: ,p_msg_text => 'NOT IsObjectEmpty 1');
533: end if;
534:
535: -- We can ignore l_can_delete as these FEM_PL_PKG API's now have the
536: -- x_return_status out param.
537: if (l_return_status = FND_API.G_RET_STS_ERROR) then
538: raise FND_API.G_EXC_ERROR;
539: elsif (l_return_status = FND_API.G_RET_STS_UNEXP_ERROR) then

Line 1171: FEM_PL_PKG.obj_def_data_edit_lock_exists(

1167: raise FND_API.G_EXC_ERROR;
1168: end if;
1169:
1170: -- Check for any Data Locks
1171: FEM_PL_PKG.obj_def_data_edit_lock_exists(
1172: p_object_definition_id => p_obj_def_id
1173: ,x_data_edit_lock_exists => l_data_edit_lock_exists
1174: );
1175:

Line 1370: FEM_PL_PKG.can_delete_object (

1366:
1367: ------------------------------------------------------------------------------
1368: -- STEP 1: Check to see if we can delete object
1369: ------------------------------------------------------------------------------
1370: FEM_PL_PKG.can_delete_object (
1371: p_api_version => 1.0
1372: ,p_init_msg_list => FND_API.G_FALSE
1373: ,x_return_status => l_return_status
1374: ,x_msg_count => l_msg_count

Line 1384: ,p_msg_text => 'After call FEM_PL_PKG.can_delete_object'

1380:
1381: FEM_ENGINES_PKG.Tech_Message (
1382: p_severity => G_LOG_LEVEL_3
1383: ,p_module => G_BLOCK||'.'|| l_api_name
1384: ,p_msg_text => 'After call FEM_PL_PKG.can_delete_object'
1385: );
1386: -- We can ignore l_can_delete_obj as this FEM_PL_PKG API now has the
1387: -- x_return_status out param.
1388: if (l_return_status = FND_API.G_RET_STS_ERROR) then

Line 1386: -- We can ignore l_can_delete_obj as this FEM_PL_PKG API now has the

1382: p_severity => G_LOG_LEVEL_3
1383: ,p_module => G_BLOCK||'.'|| l_api_name
1384: ,p_msg_text => 'After call FEM_PL_PKG.can_delete_object'
1385: );
1386: -- We can ignore l_can_delete_obj as this FEM_PL_PKG API now has the
1387: -- x_return_status out param.
1388: if (l_return_status = FND_API.G_RET_STS_ERROR) then
1389: raise FND_API.G_EXC_ERROR;
1390: elsif (l_return_status = FND_API.G_RET_STS_UNEXP_ERROR) then

Line 2443: FEM_PL_PKG.obj_def_data_edit_lock_exists (

2439: l_lock_exists varchar2(1);
2440:
2441: BEGIN
2442:
2443: FEM_PL_PKG.obj_def_data_edit_lock_exists (
2444: p_object_definition_id => p_obj_def_id
2445: ,x_data_edit_lock_exists => l_lock_exists
2446: );
2447: