DBA Data[Home] [Help]

APPS.JMF_SHIKYU_RECONCILIAITON_PVT dependencies on FND_API

Line 442: , p_init_msg_list => FND_API.G_TRUE

438:
439:
440: OE_Order_PVT.Process_order
441: ( p_api_version_number => 1.0
442: , p_init_msg_list => FND_API.G_TRUE
443: , x_return_status => l_return_status
444: , x_msg_count => x_msg_count
445: , x_msg_data => x_msg_data
446: , p_control_rec => l_control_rec

Line 447: -- , p_validation_level => FND_API.G_VALID_LEVEL_NONE

443: , x_return_status => l_return_status
444: , x_msg_count => x_msg_count
445: , x_msg_data => x_msg_data
446: , p_control_rec => l_control_rec
447: -- , p_validation_level => FND_API.G_VALID_LEVEL_NONE
448: , p_x_header_Rec => l_hdr_rec
449: , p_x_line_tbl => l_line_tbl
450: -- , p_line_adj_tbl => l_line_adj_tbl
451: , p_x_action_request_tbl => l_action_request_tbl

Line 1273: -- p_init_msg_list REQUIRED. FND_API.G_TRUE to reset the message list

1269: -- Interlock has been run
1270:
1271: -- PARAMETERS :
1272: -- p_api_version REQUIRED. API version
1273: -- p_init_msg_list REQUIRED. FND_API.G_TRUE to reset the message list
1274: -- FND_API.G_FALSE to not reset it.
1275: -- If pass NULL, it means FND_API.G_FALSE.
1276: -- p_commit OPTIONAL. FND_API.G_TRUE to have API commit the change
1277: -- FND_API.G_FALSE to not commit the change.

Line 1274: -- FND_API.G_FALSE to not reset it.

1270:
1271: -- PARAMETERS :
1272: -- p_api_version REQUIRED. API version
1273: -- p_init_msg_list REQUIRED. FND_API.G_TRUE to reset the message list
1274: -- FND_API.G_FALSE to not reset it.
1275: -- If pass NULL, it means FND_API.G_FALSE.
1276: -- p_commit OPTIONAL. FND_API.G_TRUE to have API commit the change
1277: -- FND_API.G_FALSE to not commit the change.
1278: -- Include this if API does DML.

Line 1275: -- If pass NULL, it means FND_API.G_FALSE.

1271: -- PARAMETERS :
1272: -- p_api_version REQUIRED. API version
1273: -- p_init_msg_list REQUIRED. FND_API.G_TRUE to reset the message list
1274: -- FND_API.G_FALSE to not reset it.
1275: -- If pass NULL, it means FND_API.G_FALSE.
1276: -- p_commit OPTIONAL. FND_API.G_TRUE to have API commit the change
1277: -- FND_API.G_FALSE to not commit the change.
1278: -- Include this if API does DML.
1279: -- If pass NULL, it means FND_API.G_FALSE.

Line 1276: -- p_commit OPTIONAL. FND_API.G_TRUE to have API commit the change

1272: -- p_api_version REQUIRED. API version
1273: -- p_init_msg_list REQUIRED. FND_API.G_TRUE to reset the message list
1274: -- FND_API.G_FALSE to not reset it.
1275: -- If pass NULL, it means FND_API.G_FALSE.
1276: -- p_commit OPTIONAL. FND_API.G_TRUE to have API commit the change
1277: -- FND_API.G_FALSE to not commit the change.
1278: -- Include this if API does DML.
1279: -- If pass NULL, it means FND_API.G_FALSE.
1280: -- p_validation_level OPTIONAL. value between 0 and 100.

Line 1277: -- FND_API.G_FALSE to not commit the change.

1273: -- p_init_msg_list REQUIRED. FND_API.G_TRUE to reset the message list
1274: -- FND_API.G_FALSE to not reset it.
1275: -- If pass NULL, it means FND_API.G_FALSE.
1276: -- p_commit OPTIONAL. FND_API.G_TRUE to have API commit the change
1277: -- FND_API.G_FALSE to not commit the change.
1278: -- Include this if API does DML.
1279: -- If pass NULL, it means FND_API.G_FALSE.
1280: -- p_validation_level OPTIONAL. value between 0 and 100.
1281: -- FND_API.G_VALID_LEVEL_NONE -> 0

Line 1279: -- If pass NULL, it means FND_API.G_FALSE.

1275: -- If pass NULL, it means FND_API.G_FALSE.
1276: -- p_commit OPTIONAL. FND_API.G_TRUE to have API commit the change
1277: -- FND_API.G_FALSE to not commit the change.
1278: -- Include this if API does DML.
1279: -- If pass NULL, it means FND_API.G_FALSE.
1280: -- p_validation_level OPTIONAL. value between 0 and 100.
1281: -- FND_API.G_VALID_LEVEL_NONE -> 0
1282: -- FND_API.G_VALID_LEVEL_FULL -> 100
1283: -- Public APIs should not have this parameter

Line 1281: -- FND_API.G_VALID_LEVEL_NONE -> 0

1277: -- FND_API.G_FALSE to not commit the change.
1278: -- Include this if API does DML.
1279: -- If pass NULL, it means FND_API.G_FALSE.
1280: -- p_validation_level OPTIONAL. value between 0 and 100.
1281: -- FND_API.G_VALID_LEVEL_NONE -> 0
1282: -- FND_API.G_VALID_LEVEL_FULL -> 100
1283: -- Public APIs should not have this parameter
1284: -- since it should always be FULL validation.
1285: -- If API perform some level not required by

Line 1282: -- FND_API.G_VALID_LEVEL_FULL -> 100

1278: -- Include this if API does DML.
1279: -- If pass NULL, it means FND_API.G_FALSE.
1280: -- p_validation_level OPTIONAL. value between 0 and 100.
1281: -- FND_API.G_VALID_LEVEL_NONE -> 0
1282: -- FND_API.G_VALID_LEVEL_FULL -> 100
1283: -- Public APIs should not have this parameter
1284: -- since it should always be FULL validation.
1285: -- If API perform some level not required by
1286: -- some API caller, this parameter should be

Line 1291: -- FND_API.G_VALID_LEVEL_FULL

1287: -- included.
1288: -- Product group can define intermediate
1289: -- validation levels.
1290: -- If pass NULL, it means i
1291: -- FND_API.G_VALID_LEVEL_FULL
1292: --
1293: -- x_return_status REQUIRED. Value can be
1294: -- FND_API.G_RET_STS_SUCCESS
1295: -- FND_API.G_RET_STS_ERROR

Line 1294: -- FND_API.G_RET_STS_SUCCESS

1290: -- If pass NULL, it means i
1291: -- FND_API.G_VALID_LEVEL_FULL
1292: --
1293: -- x_return_status REQUIRED. Value can be
1294: -- FND_API.G_RET_STS_SUCCESS
1295: -- FND_API.G_RET_STS_ERROR
1296: -- FND_API.G_RET_STS_UNEXP_ERROR
1297: -- x_msg_count REQUIRED. Number of messages on the message list
1298: -- x_msg_data REQUIRED. Return message data if message count is 1

Line 1295: -- FND_API.G_RET_STS_ERROR

1291: -- FND_API.G_VALID_LEVEL_FULL
1292: --
1293: -- x_return_status REQUIRED. Value can be
1294: -- FND_API.G_RET_STS_SUCCESS
1295: -- FND_API.G_RET_STS_ERROR
1296: -- FND_API.G_RET_STS_UNEXP_ERROR
1297: -- x_msg_count REQUIRED. Number of messages on the message list
1298: -- x_msg_data REQUIRED. Return message data if message count is 1
1299: -- p_card_id REQUIRED. Card ID to be deleted.

Line 1296: -- FND_API.G_RET_STS_UNEXP_ERROR

1292: --
1293: -- x_return_status REQUIRED. Value can be
1294: -- FND_API.G_RET_STS_SUCCESS
1295: -- FND_API.G_RET_STS_ERROR
1296: -- FND_API.G_RET_STS_UNEXP_ERROR
1297: -- x_msg_count REQUIRED. Number of messages on the message list
1298: -- x_msg_data REQUIRED. Return message data if message count is 1
1299: -- p_card_id REQUIRED. Card ID to be deleted.
1300: -- EXCEPTIONS :

Line 1414: x_return_status := FND_API.G_RET_STS_SUCCESS;

1410:
1411: -- Start API initialization
1412: FND_MSG_PUB.initialize;
1413:
1414: x_return_status := FND_API.G_RET_STS_SUCCESS;
1415: -- End API initialization
1416:
1417: -- Select the eligible data for Reconciliation
1418:

Line 1454: IF l_return_status <> FND_API.G_RET_STS_SUCCESS

1450: , p_from_organization => p_from_organization
1451: , p_to_organization => p_to_organization
1452: );
1453:
1454: IF l_return_status <> FND_API.G_RET_STS_SUCCESS
1455: THEN
1456: IF (FND_LOG.LEVEL_PROCEDURE >= FND_LOG.G_CURRENT_RUNTIME_LEVEL) THEN
1457: FND_LOG.string(FND_LOG.LEVEL_PROCEDURE
1458: , G_MODULE_PREFIX || l_api_name

Line 1501: IF l_return_status <> FND_API.G_RET_STS_SUCCESS

1497: , x_msg_count => l_msg_count
1498: , x_msg_data => l_msg_data
1499: );
1500:
1501: IF l_return_status <> FND_API.G_RET_STS_SUCCESS
1502: THEN
1503: IF (FND_LOG.LEVEL_PROCEDURE >= FND_LOG.G_CURRENT_RUNTIME_LEVEL) THEN
1504: FND_LOG.string(FND_LOG.LEVEL_PROCEDURE
1505: , G_MODULE_PREFIX || l_api_name

Line 1941: IF l_return_status <> FND_API.G_RET_STS_SUCCESS

1937: END IF;
1938:
1939: JMF_SHIKYU_ALLOCATION_PVT.reconcile_rso_date_changes(x_return_status => l_return_status);
1940:
1941: IF l_return_status <> FND_API.G_RET_STS_SUCCESS
1942: THEN
1943: IF FND_LOG.LEVEL_PROCEDURE >= FND_LOG.G_CURRENT_RUNTIME_LEVEL
1944: THEN
1945: FND_LOG.string(FND_LOG.LEVEL_PROCEDURE

Line 1971: WHEN FND_API.G_EXC_ERROR THEN

1967: , 'End');
1968: END IF;
1969: --dbms_output.put_line(' OUT of Process_SHIKYU_Reconciliation. ');
1970: EXCEPTION
1971: WHEN FND_API.G_EXC_ERROR THEN
1972: -- dbms_output.put_line(' EXCEPTION: FND_API.G_EXC_ERROR ');
1973: -- dbms_output.put_line(' SQLERRM : '|| SQLERRM );
1974:
1975: IF (FND_LOG.LEVEL_PROCEDURE >= FND_LOG.G_CURRENT_RUNTIME_LEVEL) THEN

Line 1972: -- dbms_output.put_line(' EXCEPTION: FND_API.G_EXC_ERROR ');

1968: END IF;
1969: --dbms_output.put_line(' OUT of Process_SHIKYU_Reconciliation. ');
1970: EXCEPTION
1971: WHEN FND_API.G_EXC_ERROR THEN
1972: -- dbms_output.put_line(' EXCEPTION: FND_API.G_EXC_ERROR ');
1973: -- dbms_output.put_line(' SQLERRM : '|| SQLERRM );
1974:
1975: IF (FND_LOG.LEVEL_PROCEDURE >= FND_LOG.G_CURRENT_RUNTIME_LEVEL) THEN
1976: FND_LOG.string(FND_LOG.LEVEL_PROCEDURE

Line 1986: x_return_status := FND_API.g_ret_sts_error;

1982: FND_MSG_PUB.Count_And_Get
1983: ( p_count => x_msg_count
1984: , p_data => x_msg_data
1985: );
1986: x_return_status := FND_API.g_ret_sts_error;
1987:
1988: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
1989: -- dbms_output.put_line(' EXCEPTION: FND_API.G_EXC_UNEXPECTED_ERROR ');
1990: -- dbms_output.put_line(' SQLERRM : '|| SQLERRM );

Line 1988: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN

1984: , p_data => x_msg_data
1985: );
1986: x_return_status := FND_API.g_ret_sts_error;
1987:
1988: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
1989: -- dbms_output.put_line(' EXCEPTION: FND_API.G_EXC_UNEXPECTED_ERROR ');
1990: -- dbms_output.put_line(' SQLERRM : '|| SQLERRM );
1991:
1992: IF (FND_LOG.LEVEL_PROCEDURE >= FND_LOG.G_CURRENT_RUNTIME_LEVEL) THEN

Line 1989: -- dbms_output.put_line(' EXCEPTION: FND_API.G_EXC_UNEXPECTED_ERROR ');

1985: );
1986: x_return_status := FND_API.g_ret_sts_error;
1987:
1988: WHEN FND_API.G_EXC_UNEXPECTED_ERROR THEN
1989: -- dbms_output.put_line(' EXCEPTION: FND_API.G_EXC_UNEXPECTED_ERROR ');
1990: -- dbms_output.put_line(' SQLERRM : '|| SQLERRM );
1991:
1992: IF (FND_LOG.LEVEL_PROCEDURE >= FND_LOG.G_CURRENT_RUNTIME_LEVEL) THEN
1993: FND_LOG.string(FND_LOG.LEVEL_PROCEDURE

Line 2004: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

2000: ( p_count => x_msg_count
2001: , p_data => x_msg_data
2002: );
2003:
2004: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
2005:
2006: WHEN OTHERS THEN
2007:
2008: IF (FND_LOG.LEVEL_PROCEDURE >= FND_LOG.G_CURRENT_RUNTIME_LEVEL) THEN

Line 2020: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;

2016: ( p_count => x_msg_count
2017: , p_data => x_msg_data
2018: );
2019:
2020: x_return_status := FND_API.G_RET_STS_UNEXP_ERROR;
2021:
2022: END Process_SHIKYU_Reconciliation ;
2023:
2024: END JMF_SHIKYU_RECONCILIAITON_PVT ;