DBA Data[Home] [Help]

APPS.AHL_MC_RULE_PVT dependencies on AHL_MC_RULE_STMT_PVT

Line 909: AHL_MC_RULE_STMT_PVT.Insert_Rule_Stmt (

905: X_LAST_UPDATE_LOGIN => Fnd_Global.LOGIN_ID);
906:
907: --Insert the Rule statement Records
908: FOR i IN l_rule_stmt_tbl.FIRST..l_rule_stmt_tbl.LAST LOOP
909: AHL_MC_RULE_STMT_PVT.Insert_Rule_Stmt (
910: p_api_version => 1.0,
911: p_commit => FND_API.G_FALSE,
912: p_module => p_module,
913: p_x_rule_stmt_rec => l_rule_stmt_tbl(i),

Line 1313: AHL_MC_RULE_STMT_PVT.Insert_Rule_Stmt (

1309:
1310: --Now insert or update all the existing rule statements
1311: FOR i IN l_rule_stmt_tbl.FIRST..l_rule_stmt_tbl.LAST LOOP
1312: IF (l_rule_stmt_tbl(i).operation_flag = 'I') THEN
1313: AHL_MC_RULE_STMT_PVT.Insert_Rule_Stmt (
1314: p_api_version => 1.0,
1315: p_commit => FND_API.G_FALSE,
1316: p_x_rule_stmt_rec => l_rule_stmt_tbl(i),
1317: x_return_status => x_return_status,

Line 1322: AHL_MC_RULE_STMT_PVT.Update_Rule_Stmt (

1318: x_msg_count => x_msg_count,
1319: x_msg_data => x_msg_data);
1320:
1321: ELSIF (l_rule_stmt_tbl(i).operation_flag = 'U') THEN
1322: AHL_MC_RULE_STMT_PVT.Update_Rule_Stmt (
1323: p_api_version => 1.0,
1324: p_commit => FND_API.G_FALSE,
1325: p_rule_stmt_rec => l_rule_stmt_tbl(i),
1326: x_return_status => x_return_status,

Line 1471: AHL_MC_RULE_STMT_PVT.Delete_Rule_Stmts (

1467: END IF;
1468: CLOSE check_mc_status_csr;
1469:
1470: --Delete the rule statements first.
1471: AHL_MC_RULE_STMT_PVT.Delete_Rule_Stmts (
1472: p_api_version => 1.0,
1473: p_commit => FND_API.G_FALSE,
1474: p_rule_id => p_rule_rec.rule_id,
1475: x_return_status => x_return_status,

Line 1644: AHL_MC_RULE_STMT_PVT.Copy_Rule_Stmt (

1640: CLOSE get_rule_stmt_id_csr;
1641:
1642: --Calls copy rule statement with top stmt, which will recursively
1643: -- copy the rule statements.
1644: AHL_MC_RULE_STMT_PVT.Copy_Rule_Stmt (
1645: p_api_version => 1.0,
1646: p_commit => FND_API.G_FALSE,
1647: p_rule_stmt_id => l_stmt_id,
1648: p_to_rule_id => l_new_rule_id,