DBA Data[Home] [Help]

APPS.INV_RCV_INTEGRATION_APIS dependencies on INV_RCV_INTEGRATION_PVT

Line 96: inv_rcv_integration_pvt.insert_wlpni

92: BEGIN
93: x_return_status := g_ret_sts_success;
94:
95: IF (p_lpn_id IS NOT NULL OR p_license_plate_number IS NOT NULL) THEN
96: inv_rcv_integration_pvt.insert_wlpni
97: (x_return_status => x_return_status
98: , x_msg_count => x_msg_count
99: , x_msg_data => x_msg_data
100: , p_LPN_ID => p_LPN_ID

Line 2486: inv_rcv_integration_pvt.validate_lot_serial_info(P_RTI_ID => P_RTI_ID,

2482: -- removed the check to error out in case of OPM transaction.
2483:
2484: --call the lot/serial validation procedure
2485:
2486: inv_rcv_integration_pvt.validate_lot_serial_info(P_RTI_ID => P_RTI_ID,
2487: X_RETURN_STATUS => X_RETURN_STATUS,
2488: X_MSG_COUNT => X_MSG_COUNT,
2489: X_MSG_DATA => X_MSG_DATA);
2490:

Line 2710: inv_rcv_integration_pvt.validate_lpn_info for validating discrete transactions

2706:
2707: --l_progress := '20';
2708:
2709: /*INVCONV , This currently restricts OPM transaction and calls
2710: inv_rcv_integration_pvt.validate_lpn_info for validating discrete transactions
2711: Remove process specific checks.Remove restriction for OPM transaction.
2712: Punit Kumar.
2713: */
2714:

Line 2766: inv_rcv_integration_pvt.validate_lpn_info(p_lpn_group_id => p_lpn_group_id,

2762: END IF;
2763:
2764: l_progress := '60';
2765:
2766: inv_rcv_integration_pvt.validate_lpn_info(p_lpn_group_id => p_lpn_group_id,
2767: x_return_status => x_return_status,
2768: x_msg_count => x_msg_count,
2769: x_msg_data => x_msg_data);
2770:

Line 2892: inv_rcv_integration_pvt.explode_lpn(p_request_id,p_group_id);

2888: return ;
2889: END IF;
2890:
2891: -- Call the Private API
2892: inv_rcv_integration_pvt.explode_lpn(p_request_id,p_group_id);
2893:
2894: END explode_lpn;
2895:
2896: /** validates subinventory and locator type called from TM for ROI trxns

Line 3207: inv_rcv_integration_pvt.split_lot_serial(p_rti_tb => p_new_rti_info,

3203: IF fnd_api.to_boolean(p_init_msg_lst) THEN
3204: fnd_msg_pub.initialize;
3205: END IF;
3206:
3207: inv_rcv_integration_pvt.split_lot_serial(p_rti_tb => p_new_rti_info,
3208: x_return_status => x_return_status,
3209: x_msg_count => x_msg_count,
3210: x_msg_data => x_msg_data);
3211: IF (x_return_status <> g_ret_sts_success) THEN

Line 3219: print_debug('inv_rcv_integration_pvt.split_lot_serial returned success',4);

3215: RETURN FALSE;
3216: END IF;
3217:
3218: IF (l_debug = 1) THEN
3219: print_debug('inv_rcv_integration_pvt.split_lot_serial returned success',4);
3220: END IF;
3221:
3222: RETURN TRUE;
3223: END split_lot_serial;

Line 3291: inv_rcv_integration_pvt.process_txn(p_txn_id => p_rti_id,

3287: END IF;
3288: /*end , INVCONV */
3289: --call the process_txn to process the receiving transaction
3290:
3291: inv_rcv_integration_pvt.process_txn(p_txn_id => p_rti_id,
3292: x_return_status => x_return_status,
3293: x_msg_count => x_msg_count,
3294: x_msg_data => x_msg_data
3295: );

Line 3494: IF p_lpn_group_id IS NOT NULL AND inv_rcv_integration_pvt.g_lpn_tbl.COUNT>0 THEN

3490: print_debug('COMPLETE_LPN_GROUP - Done calling label print api...',1);
3491: print_debug('COMPLETE_LPN_GROUP - Return Status:'||x_return_status,1);
3492: END IF;
3493: --14408061
3494: IF p_lpn_group_id IS NOT NULL AND inv_rcv_integration_pvt.g_lpn_tbl.COUNT>0 THEN
3495: IF (l_debug = 1) THEN
3496: print_debug('Deleting the LPN plsql table...g_lpn_tbl ',1);
3497: END IF;
3498: inv_rcv_integration_pvt.g_lpn_tbl.DELETE();

Line 3498: inv_rcv_integration_pvt.g_lpn_tbl.DELETE();

3494: IF p_lpn_group_id IS NOT NULL AND inv_rcv_integration_pvt.g_lpn_tbl.COUNT>0 THEN
3495: IF (l_debug = 1) THEN
3496: print_debug('Deleting the LPN plsql table...g_lpn_tbl ',1);
3497: END IF;
3498: inv_rcv_integration_pvt.g_lpn_tbl.DELETE();
3499: END IF;
3500: --14408061
3501: RETURN TRUE;
3502: END complete_lpn_group;