DBA Data[Home] [Help]

APPS.INL_SHIPMENT_PVT dependencies on RCV_PARAMETERS

Line 429: FROM rcv_parameters

425: -- Check which scenario is setup in RCV
426: -- Parameters for the current Inventory Organization
427: SELECT pre_receive
428: INTO l_pre_receive
429: FROM rcv_parameters
430: WHERE organization_id = p_organization_id;
431: -- Pre-Receive scenario
432: IF (NVL (l_pre_receive, 'N') = 'Y') THEN
433: l_debug_info := 'Call INL_INTEGRATION_GRP.Export_toRCV';

Line 1317: FROM rcv_parameters

1313: -- Just validate PO Available Qty for Pre-Receiving
1314: -- Organizations. In Blackbox, RCV handles this validation.
1315: SELECT pre_receive
1316: INTO l_pre_receive
1317: FROM rcv_parameters
1318: WHERE organization_id = p_inv_org_id;
1319:
1320: IF (NVL(l_pre_receive, 'N') = 'N') THEN
1321: RETURN;

Line 3005: FROM rcv_parameters

3001: -- Bug 15956572
3002: -- Just validate Third Party Allowed for Pre-Receiving Organizations
3003: SELECT pre_receive
3004: INTO l_pre_receive
3005: FROM rcv_parameters
3006: WHERE organization_id = p_inv_org_id;
3007: -- /Bug 15956572
3008:
3009: INL_LOGGING_PVT.Log_Variable (

Line 3639: l_debug_info := 'Getting which scenartio is setup in RCV Parameters. Pre_Receive or BlackBox';

3635: ELSIF l_return_status = L_FND_RET_STS_UNEXP_ERROR THEN
3636: x_return_status := l_return_status;
3637: RAISE L_FND_EXC_UNEXPECTED_ERROR;
3638: END IF;
3639: l_debug_info := 'Getting which scenartio is setup in RCV Parameters. Pre_Receive or BlackBox';
3640: INL_LOGGING_PVT.Log_Statement (
3641: p_module_name => g_module_name,
3642: p_procedure_name => l_program_name,
3643: p_debug_info => l_debug_info) ;

Line 3646: FROM rcv_parameters

3642: p_procedure_name => l_program_name,
3643: p_debug_info => l_debug_info) ;
3644: SELECT pre_receive
3645: INTO l_pre_receive
3646: FROM rcv_parameters
3647: WHERE organization_id = p_organization_id;
3648:
3649: -- Bug 13401780 starts here - Added code to validate if the PO line is CLOSED FOR RECEIVING or NOT
3650: