DBA Data[Home] [Help]

APPS.INV_RCV_STD_INSPECT_APIS dependencies on INV_RCV_COMMON_APIS

Line 1211: IF inv_rcv_common_apis.g_po_startup_value.sob_id IS NULL

1207: end if;
1208:
1209: --First check if the transaction date satisfies the validation.
1210: --If the transaction date is invalid then error out the transaction
1211: IF inv_rcv_common_apis.g_po_startup_value.sob_id IS NULL
1212: THEN
1213: --BUG 3444196: Used the HR view instead for performance reasons
1214: SELECT TO_NUMBER (hoi.org_information1)
1215: INTO inv_rcv_common_apis.g_po_startup_value.sob_id

Line 1215: INTO inv_rcv_common_apis.g_po_startup_value.sob_id

1211: IF inv_rcv_common_apis.g_po_startup_value.sob_id IS NULL
1212: THEN
1213: --BUG 3444196: Used the HR view instead for performance reasons
1214: SELECT TO_NUMBER (hoi.org_information1)
1215: INTO inv_rcv_common_apis.g_po_startup_value.sob_id
1216: FROM hr_organization_information hoi
1217: WHERE hoi.organization_id = p_organization_id
1218: AND (hoi.org_information_context || '') = 'Accounting Information';
1219: END IF;

Line 1221: inv_rcv_common_apis.validate_trx_date

1217: WHERE hoi.organization_id = p_organization_id
1218: AND (hoi.org_information_context || '') = 'Accounting Information';
1219: END IF;
1220:
1221: inv_rcv_common_apis.validate_trx_date
1222: (p_trx_date => SYSDATE,
1223: p_organization_id => p_organization_id,
1224: p_sob_id => inv_rcv_common_apis.g_po_startup_value.sob_id,
1225: x_return_status => x_return_status,

Line 1224: p_sob_id => inv_rcv_common_apis.g_po_startup_value.sob_id,

1220:
1221: inv_rcv_common_apis.validate_trx_date
1222: (p_trx_date => SYSDATE,
1223: p_organization_id => p_organization_id,
1224: p_sob_id => inv_rcv_common_apis.g_po_startup_value.sob_id,
1225: x_return_status => x_return_status,
1226: x_error_code => x_msg_data
1227: );
1228:

Line 2355: IF inv_rcv_common_apis.g_po_startup_value.sob_id IS NULL THEN

2351: END IF;
2352:
2353: --First check if the transaction date satisfies the validation.
2354: --If the transaction date is invalid then error out the transaction
2355: IF inv_rcv_common_apis.g_po_startup_value.sob_id IS NULL THEN
2356: --BUG 3444196: Used the HR view instead for performance reasons
2357: SELECT TO_NUMBER(hoi.org_information1)
2358: INTO inv_rcv_common_apis.g_po_startup_value.sob_id
2359: FROM hr_organization_information hoi

Line 2358: INTO inv_rcv_common_apis.g_po_startup_value.sob_id

2354: --If the transaction date is invalid then error out the transaction
2355: IF inv_rcv_common_apis.g_po_startup_value.sob_id IS NULL THEN
2356: --BUG 3444196: Used the HR view instead for performance reasons
2357: SELECT TO_NUMBER(hoi.org_information1)
2358: INTO inv_rcv_common_apis.g_po_startup_value.sob_id
2359: FROM hr_organization_information hoi
2360: WHERE hoi.organization_id = p_organization_id
2361: AND (hoi.org_information_context || '') = 'Accounting Information' ;
2362: END IF;

Line 2364: inv_rcv_common_apis.validate_trx_date(

2360: WHERE hoi.organization_id = p_organization_id
2361: AND (hoi.org_information_context || '') = 'Accounting Information' ;
2362: END IF;
2363:
2364: inv_rcv_common_apis.validate_trx_date(
2365: p_trx_date => SYSDATE
2366: , p_organization_id => p_organization_id
2367: , p_sob_id => inv_rcv_common_apis.g_po_startup_value.sob_id
2368: , x_return_status => x_return_status

Line 2367: , p_sob_id => inv_rcv_common_apis.g_po_startup_value.sob_id

2363:
2364: inv_rcv_common_apis.validate_trx_date(
2365: p_trx_date => SYSDATE
2366: , p_organization_id => p_organization_id
2367: , p_sob_id => inv_rcv_common_apis.g_po_startup_value.sob_id
2368: , x_return_status => x_return_status
2369: , x_error_code => x_msg_data
2370: );
2371:

Line 3511: IF inv_rcv_common_apis.g_po_startup_value.sob_id IS NULL THEN

3507: -- dbms_output.put_line('main_process_po: Just entering main_process_po');
3508:
3509: --First check if the transaction date satisfies the validation.
3510: --If the transaction date is invalid then error out the transaction
3511: IF inv_rcv_common_apis.g_po_startup_value.sob_id IS NULL THEN
3512: --BUG 3444196: Used the HR view instead for performance reasons
3513: SELECT TO_NUMBER(hoi.org_information1)
3514: INTO inv_rcv_common_apis.g_po_startup_value.sob_id
3515: FROM hr_organization_information hoi

Line 3514: INTO inv_rcv_common_apis.g_po_startup_value.sob_id

3510: --If the transaction date is invalid then error out the transaction
3511: IF inv_rcv_common_apis.g_po_startup_value.sob_id IS NULL THEN
3512: --BUG 3444196: Used the HR view instead for performance reasons
3513: SELECT TO_NUMBER(hoi.org_information1)
3514: INTO inv_rcv_common_apis.g_po_startup_value.sob_id
3515: FROM hr_organization_information hoi
3516: WHERE hoi.organization_id = p_organization_id
3517: AND (hoi.org_information_context || '') = 'Accounting Information' ;
3518: END IF;

Line 3520: inv_rcv_common_apis.validate_trx_date(

3516: WHERE hoi.organization_id = p_organization_id
3517: AND (hoi.org_information_context || '') = 'Accounting Information' ;
3518: END IF;
3519:
3520: inv_rcv_common_apis.validate_trx_date(
3521: p_trx_date => SYSDATE
3522: , p_organization_id => p_organization_id
3523: , p_sob_id => inv_rcv_common_apis.g_po_startup_value.sob_id
3524: , x_return_status => x_return_status

Line 3523: , p_sob_id => inv_rcv_common_apis.g_po_startup_value.sob_id

3519:
3520: inv_rcv_common_apis.validate_trx_date(
3521: p_trx_date => SYSDATE
3522: , p_organization_id => p_organization_id
3523: , p_sob_id => inv_rcv_common_apis.g_po_startup_value.sob_id
3524: , x_return_status => x_return_status
3525: , x_error_code => x_msg_data
3526: );
3527:

Line 3926: IF inv_rcv_common_apis.g_po_startup_value.sob_id IS NULL THEN

3922: -- dbms_output.put_line('main_process_intransit: Just entering main_process_intransit');
3923:
3924: --First check if the transaction date satisfies the validation.
3925: --If the transaction date is invalid then error out the transaction
3926: IF inv_rcv_common_apis.g_po_startup_value.sob_id IS NULL THEN
3927: --BUG 3444196: Used the HR view instead for performance reasons
3928: SELECT TO_NUMBER(hoi.org_information1)
3929: INTO inv_rcv_common_apis.g_po_startup_value.sob_id
3930: FROM hr_organization_information hoi

Line 3929: INTO inv_rcv_common_apis.g_po_startup_value.sob_id

3925: --If the transaction date is invalid then error out the transaction
3926: IF inv_rcv_common_apis.g_po_startup_value.sob_id IS NULL THEN
3927: --BUG 3444196: Used the HR view instead for performance reasons
3928: SELECT TO_NUMBER(hoi.org_information1)
3929: INTO inv_rcv_common_apis.g_po_startup_value.sob_id
3930: FROM hr_organization_information hoi
3931: WHERE hoi.organization_id = p_organization_id
3932: AND (hoi.org_information_context || '') = 'Accounting Information' ;
3933: END IF;

Line 3935: inv_rcv_common_apis.validate_trx_date(

3931: WHERE hoi.organization_id = p_organization_id
3932: AND (hoi.org_information_context || '') = 'Accounting Information' ;
3933: END IF;
3934:
3935: inv_rcv_common_apis.validate_trx_date(
3936: p_trx_date => SYSDATE
3937: , p_organization_id => p_organization_id
3938: , p_sob_id => inv_rcv_common_apis.g_po_startup_value.sob_id
3939: , x_return_status => x_return_status

Line 3938: , p_sob_id => inv_rcv_common_apis.g_po_startup_value.sob_id

3934:
3935: inv_rcv_common_apis.validate_trx_date(
3936: p_trx_date => SYSDATE
3937: , p_organization_id => p_organization_id
3938: , p_sob_id => inv_rcv_common_apis.g_po_startup_value.sob_id
3939: , x_return_status => x_return_status
3940: , x_error_code => x_msg_data
3941: );
3942:

Line 4342: IF inv_rcv_common_apis.g_po_startup_value.sob_id IS NULL THEN

4338:
4339: -- dbms_output.put_line('main_process_rma: Just entering main_process_rma');
4340: --First check if the transaction date satisfies the validation.
4341: --If the transaction date is invalid then error out the transaction
4342: IF inv_rcv_common_apis.g_po_startup_value.sob_id IS NULL THEN
4343: --BUG 3444196: Used the HR view instead for performance reasons
4344: SELECT TO_NUMBER(hoi.org_information1)
4345: INTO inv_rcv_common_apis.g_po_startup_value.sob_id
4346: FROM hr_organization_information hoi

Line 4345: INTO inv_rcv_common_apis.g_po_startup_value.sob_id

4341: --If the transaction date is invalid then error out the transaction
4342: IF inv_rcv_common_apis.g_po_startup_value.sob_id IS NULL THEN
4343: --BUG 3444196: Used the HR view instead for performance reasons
4344: SELECT TO_NUMBER(hoi.org_information1)
4345: INTO inv_rcv_common_apis.g_po_startup_value.sob_id
4346: FROM hr_organization_information hoi
4347: WHERE hoi.organization_id = p_organization_id
4348: AND (hoi.org_information_context || '') = 'Accounting Information' ;
4349: END IF;

Line 4351: inv_rcv_common_apis.validate_trx_date(

4347: WHERE hoi.organization_id = p_organization_id
4348: AND (hoi.org_information_context || '') = 'Accounting Information' ;
4349: END IF;
4350:
4351: inv_rcv_common_apis.validate_trx_date(
4352: p_trx_date => SYSDATE
4353: , p_organization_id => p_organization_id
4354: , p_sob_id => inv_rcv_common_apis.g_po_startup_value.sob_id
4355: , x_return_status => x_return_status

Line 4354: , p_sob_id => inv_rcv_common_apis.g_po_startup_value.sob_id

4350:
4351: inv_rcv_common_apis.validate_trx_date(
4352: p_trx_date => SYSDATE
4353: , p_organization_id => p_organization_id
4354: , p_sob_id => inv_rcv_common_apis.g_po_startup_value.sob_id
4355: , x_return_status => x_return_status
4356: , x_error_code => x_msg_data
4357: );
4358:

Line 4755: IF inv_rcv_common_apis.g_po_startup_value.sob_id IS NULL THEN

4751:
4752: -- dbms_output.put_line('main_process_receipt: Just entering main_process_receipt');
4753: --First check if the transaction date satisfies the validation.
4754: --If the transaction date is invalid then error out the transaction
4755: IF inv_rcv_common_apis.g_po_startup_value.sob_id IS NULL THEN
4756: --BUG 3444196: Used the HR view instead for performance reasons
4757: SELECT TO_NUMBER(hoi.org_information1)
4758: INTO inv_rcv_common_apis.g_po_startup_value.sob_id
4759: FROM hr_organization_information hoi

Line 4758: INTO inv_rcv_common_apis.g_po_startup_value.sob_id

4754: --If the transaction date is invalid then error out the transaction
4755: IF inv_rcv_common_apis.g_po_startup_value.sob_id IS NULL THEN
4756: --BUG 3444196: Used the HR view instead for performance reasons
4757: SELECT TO_NUMBER(hoi.org_information1)
4758: INTO inv_rcv_common_apis.g_po_startup_value.sob_id
4759: FROM hr_organization_information hoi
4760: WHERE hoi.organization_id = p_organization_id
4761: AND (hoi.org_information_context || '') = 'Accounting Information' ;
4762: END IF;

Line 4764: inv_rcv_common_apis.validate_trx_date(

4760: WHERE hoi.organization_id = p_organization_id
4761: AND (hoi.org_information_context || '') = 'Accounting Information' ;
4762: END IF;
4763:
4764: inv_rcv_common_apis.validate_trx_date(
4765: p_trx_date => SYSDATE
4766: , p_organization_id => p_organization_id
4767: , p_sob_id => inv_rcv_common_apis.g_po_startup_value.sob_id
4768: , x_return_status => x_return_status

Line 4767: , p_sob_id => inv_rcv_common_apis.g_po_startup_value.sob_id

4763:
4764: inv_rcv_common_apis.validate_trx_date(
4765: p_trx_date => SYSDATE
4766: , p_organization_id => p_organization_id
4767: , p_sob_id => inv_rcv_common_apis.g_po_startup_value.sob_id
4768: , x_return_status => x_return_status
4769: , x_error_code => x_msg_data
4770: );
4771:

Line 5330: inv_rcv_common_apis.g_rcv_global_var.receipt_num := l_receipt_num;

5326: FROM rcv_shipment_headers
5327: WHERE shipment_header_id = l_shipment_hdr_id
5328: AND ship_to_org_id = p_organization_id;
5329:
5330: inv_rcv_common_apis.g_rcv_global_var.receipt_num := l_receipt_num;
5331: IF (l_debug = 1) THEN
5332: print_debug('create_intship_rcpt_intf_rec: 10.1 '|| inv_rcv_common_apis.g_rcv_global_var.receipt_num, 9);
5333: END IF;
5334: EXCEPTION

Line 5332: print_debug('create_intship_rcpt_intf_rec: 10.1 '|| inv_rcv_common_apis.g_rcv_global_var.receipt_num, 9);

5328: AND ship_to_org_id = p_organization_id;
5329:
5330: inv_rcv_common_apis.g_rcv_global_var.receipt_num := l_receipt_num;
5331: IF (l_debug = 1) THEN
5332: print_debug('create_intship_rcpt_intf_rec: 10.1 '|| inv_rcv_common_apis.g_rcv_global_var.receipt_num, 9);
5333: END IF;
5334: EXCEPTION
5335: WHEN NO_DATA_FOUND THEN
5336: l_receipt_num := NULL;

Line 5345: INV_RCV_COMMON_APIS.init_startup_values(l_organization_id);

5341: dbms_output.put_line('insinsprecrti: poid ' || l_po_hdr_id);
5342: dbms_output.put_line('insinsprecrti: polineid ' || l_po_line_id);
5343: dbms_output.put_line('insinsprecrti: polinelocid ' || l_po_line_location_id);
5344: */
5345: INV_RCV_COMMON_APIS.init_startup_values(l_organization_id);
5346:
5347: l_user_id := INV_RCV_COMMON_APIS.g_po_startup_value.user_id;
5348: l_logon_id := INV_RCV_COMMON_APIS.g_po_startup_value.logon_id;
5349: l_employee_id := INV_RCV_COMMON_APIS.g_po_startup_value.employee_id;

Line 5347: l_user_id := INV_RCV_COMMON_APIS.g_po_startup_value.user_id;

5343: dbms_output.put_line('insinsprecrti: polinelocid ' || l_po_line_location_id);
5344: */
5345: INV_RCV_COMMON_APIS.init_startup_values(l_organization_id);
5346:
5347: l_user_id := INV_RCV_COMMON_APIS.g_po_startup_value.user_id;
5348: l_logon_id := INV_RCV_COMMON_APIS.g_po_startup_value.logon_id;
5349: l_employee_id := INV_RCV_COMMON_APIS.g_po_startup_value.employee_id;
5350: l_processor_value := INV_RCV_COMMON_APIS.g_po_startup_value.transaction_mode;
5351:

Line 5348: l_logon_id := INV_RCV_COMMON_APIS.g_po_startup_value.logon_id;

5344: */
5345: INV_RCV_COMMON_APIS.init_startup_values(l_organization_id);
5346:
5347: l_user_id := INV_RCV_COMMON_APIS.g_po_startup_value.user_id;
5348: l_logon_id := INV_RCV_COMMON_APIS.g_po_startup_value.logon_id;
5349: l_employee_id := INV_RCV_COMMON_APIS.g_po_startup_value.employee_id;
5350: l_processor_value := INV_RCV_COMMON_APIS.g_po_startup_value.transaction_mode;
5351:
5352: IF inv_rcv_common_apis.g_rcv_global_var.interface_group_id is NULL THEN

Line 5349: l_employee_id := INV_RCV_COMMON_APIS.g_po_startup_value.employee_id;

5345: INV_RCV_COMMON_APIS.init_startup_values(l_organization_id);
5346:
5347: l_user_id := INV_RCV_COMMON_APIS.g_po_startup_value.user_id;
5348: l_logon_id := INV_RCV_COMMON_APIS.g_po_startup_value.logon_id;
5349: l_employee_id := INV_RCV_COMMON_APIS.g_po_startup_value.employee_id;
5350: l_processor_value := INV_RCV_COMMON_APIS.g_po_startup_value.transaction_mode;
5351:
5352: IF inv_rcv_common_apis.g_rcv_global_var.interface_group_id is NULL THEN
5353: SELECT rcv_interface_groups_s.nextval

Line 5350: l_processor_value := INV_RCV_COMMON_APIS.g_po_startup_value.transaction_mode;

5346:
5347: l_user_id := INV_RCV_COMMON_APIS.g_po_startup_value.user_id;
5348: l_logon_id := INV_RCV_COMMON_APIS.g_po_startup_value.logon_id;
5349: l_employee_id := INV_RCV_COMMON_APIS.g_po_startup_value.employee_id;
5350: l_processor_value := INV_RCV_COMMON_APIS.g_po_startup_value.transaction_mode;
5351:
5352: IF inv_rcv_common_apis.g_rcv_global_var.interface_group_id is NULL THEN
5353: SELECT rcv_interface_groups_s.nextval
5354: INTO l_group_id FROM dual;

Line 5352: IF inv_rcv_common_apis.g_rcv_global_var.interface_group_id is NULL THEN

5348: l_logon_id := INV_RCV_COMMON_APIS.g_po_startup_value.logon_id;
5349: l_employee_id := INV_RCV_COMMON_APIS.g_po_startup_value.employee_id;
5350: l_processor_value := INV_RCV_COMMON_APIS.g_po_startup_value.transaction_mode;
5351:
5352: IF inv_rcv_common_apis.g_rcv_global_var.interface_group_id is NULL THEN
5353: SELECT rcv_interface_groups_s.nextval
5354: INTO l_group_id FROM dual;
5355:
5356: inv_rcv_common_apis.g_rcv_global_var.interface_group_id := l_group_id;

Line 5356: inv_rcv_common_apis.g_rcv_global_var.interface_group_id := l_group_id;

5352: IF inv_rcv_common_apis.g_rcv_global_var.interface_group_id is NULL THEN
5353: SELECT rcv_interface_groups_s.nextval
5354: INTO l_group_id FROM dual;
5355:
5356: inv_rcv_common_apis.g_rcv_global_var.interface_group_id := l_group_id;
5357: ELSE
5358: l_group_id := inv_rcv_common_apis.g_rcv_global_var.interface_group_id;
5359: END IF;
5360:

Line 5358: l_group_id := inv_rcv_common_apis.g_rcv_global_var.interface_group_id;

5354: INTO l_group_id FROM dual;
5355:
5356: inv_rcv_common_apis.g_rcv_global_var.interface_group_id := l_group_id;
5357: ELSE
5358: l_group_id := inv_rcv_common_apis.g_rcv_global_var.interface_group_id;
5359: END IF;
5360:
5361: select rcv_transactions_interface_s.nextval
5362: into l_interface_transaction_id from dual;

Line 5377: l_operating_unit_id := inv_rcv_common_apis.get_operating_unit_id( l_receipt_source_code,

5373: FROM RCV_TRANSACTIONS RT
5374: WHERE RT.TRANSACTION_ID = l_rcv_transaction_id;
5375:
5376: --
5377: l_operating_unit_id := inv_rcv_common_apis.get_operating_unit_id( l_receipt_source_code,
5378: l_po_hdr_id,
5379: l_req_line_id,
5380: l_oe_order_header_id );
5381:

Line 5395: IF ((inv_rcv_common_apis.g_wms_patch_level >= inv_rcv_common_apis.g_patchset_j) AND

5391: /* FP-J Enhancement
5392: * Populate the LPN_GROUP_ID, validation_flag columns, subinventory
5393: * and locator_id columns in RTI if WMS and PO patch levels are J or higher
5394: */
5395: IF ((inv_rcv_common_apis.g_wms_patch_level >= inv_rcv_common_apis.g_patchset_j) AND
5396: (inv_rcv_common_apis.g_po_patch_level >= inv_rcv_common_apis.g_patchset_j_po)) THEN
5397: l_validation_flag := 'Y';
5398: l_lpn_group_id := l_group_id;
5399:

Line 5396: (inv_rcv_common_apis.g_po_patch_level >= inv_rcv_common_apis.g_patchset_j_po)) THEN

5392: * Populate the LPN_GROUP_ID, validation_flag columns, subinventory
5393: * and locator_id columns in RTI if WMS and PO patch levels are J or higher
5394: */
5395: IF ((inv_rcv_common_apis.g_wms_patch_level >= inv_rcv_common_apis.g_patchset_j) AND
5396: (inv_rcv_common_apis.g_po_patch_level >= inv_rcv_common_apis.g_patchset_j_po)) THEN
5397: l_validation_flag := 'Y';
5398: l_lpn_group_id := l_group_id;
5399:
5400: /* If the current transaction is LPN-based (for a WMS org), then we need to

Line 5499: IF ((inv_rcv_common_apis.g_inv_patch_level >= inv_rcv_common_apis.g_patchset_j) AND

5495: print_debug('insert_inspect_rec_rti: subinventory : ' || l_rti_sub_code || ', locator_id: ' || l_rti_loc_id, 4);
5496: END IF;
5497:
5498: -- bug 3452845
5499: IF ((inv_rcv_common_apis.g_inv_patch_level >= inv_rcv_common_apis.g_patchset_j) AND
5500: (inv_rcv_common_apis.g_po_patch_level >= inv_rcv_common_apis.g_patchset_j_po)) THEN
5501: l_transaction_date := Sysdate;
5502: ELSE
5503: l_transaction_date := Trunc(Sysdate);

Line 5500: (inv_rcv_common_apis.g_po_patch_level >= inv_rcv_common_apis.g_patchset_j_po)) THEN

5496: END IF;
5497:
5498: -- bug 3452845
5499: IF ((inv_rcv_common_apis.g_inv_patch_level >= inv_rcv_common_apis.g_patchset_j) AND
5500: (inv_rcv_common_apis.g_po_patch_level >= inv_rcv_common_apis.g_patchset_j_po)) THEN
5501: l_transaction_date := Sysdate;
5502: ELSE
5503: l_transaction_date := Trunc(Sysdate);
5504: END IF;

Line 5814: || inv_RCV_COMMON_APIS.g_rcv_global_var.interface_group_id);

5810: x_return_status := fnd_api.g_ret_sts_success;
5811:
5812: /*
5813: dbms_output.put_line('rcv_mgr_rpc_call: group_id '
5814: || inv_RCV_COMMON_APIS.g_rcv_global_var.interface_group_id);
5815: */
5816: --bug 5169107
5817: l_timeout := fnd_profile.value('INV_RPC_TIMEOUT');
5818: if l_timeout is null then

Line 5825: 'ONLINE', inv_RCV_COMMON_APIS.g_rcv_global_var.interface_group_id,

5821: --bug 5169107
5822:
5823: rc := fnd_transaction.synchronous (
5824: l_timeout, l_outcome, l_message, 'PO', 'RCVTPO',
5825: 'ONLINE', inv_RCV_COMMON_APIS.g_rcv_global_var.interface_group_id,
5826: NULL, NULL, NULL, NULL, NULL, NULL,
5827: NULL, NULL, NULL, NULL, NULL, NULL,
5828: NULL, NULL, NULL, NULL, NULL, NULL);
5829:

Line 5875: inv_RCV_COMMON_APIS.g_rcv_global_var.interface_group_id := '';

5871:
5872: END IF;
5873:
5874: -- reset group id
5875: inv_RCV_COMMON_APIS.g_rcv_global_var.interface_group_id := '';
5876: end rcv_manager_rpc_call;
5877:
5878:
5879:

Line 5900: WHERE rti.GROUP_ID = inv_rcv_common_apis.g_rcv_global_var.interface_group_id;

5896: -- LPN lables are not getting printed for rejected LPNS
5897: --SELECT MIN(rti.interface_transaction_id)
5898: SELECT rti.interface_transaction_id
5899: FROM rcv_transactions_interface rti
5900: WHERE rti.GROUP_ID = inv_rcv_common_apis.g_rcv_global_var.interface_group_id;
5901: -- GROUP BY rti.lpn_id;
5902: l_debug NUMBER := NVL(fnd_profile.VALUE('INV_DEBUG_TRACE'), 0);
5903: BEGIN
5904:

Line 5915: IF ((inv_rcv_common_apis.g_wms_patch_level < inv_rcv_common_apis.g_patchset_j) OR

5911: * If WMS and PO patch levels are J or higher then the label printing calls
5912: * would be done from the receiving TM and should NOT be done here.
5913: * If either of these are lower than J, then retain the original processing
5914: */
5915: IF ((inv_rcv_common_apis.g_wms_patch_level < inv_rcv_common_apis.g_patchset_j) OR
5916: (inv_rcv_common_apis.g_po_patch_level < inv_rcv_common_apis.g_patchset_j_po)) THEN
5917: IF (l_debug = 1) THEN
5918: print_debug('create_std_rcpt_intf_rec: 8.1 before inv_label.print_label ', 4);
5919: END IF;

Line 5916: (inv_rcv_common_apis.g_po_patch_level < inv_rcv_common_apis.g_patchset_j_po)) THEN

5912: * would be done from the receiving TM and should NOT be done here.
5913: * If either of these are lower than J, then retain the original processing
5914: */
5915: IF ((inv_rcv_common_apis.g_wms_patch_level < inv_rcv_common_apis.g_patchset_j) OR
5916: (inv_rcv_common_apis.g_po_patch_level < inv_rcv_common_apis.g_patchset_j_po)) THEN
5917: IF (l_debug = 1) THEN
5918: print_debug('create_std_rcpt_intf_rec: 8.1 before inv_label.print_label ', 4);
5919: END IF;
5920:

Line 5970: INV_RCV_COMMON_APIS.g_po_startup_value.transaction_mode

5966:
5967:
5968: IF (l_debug =1 ) THEN
5969: print_debug('********* PROCESSING_MODE IS :' ||
5970: INV_RCV_COMMON_APIS.g_po_startup_value.transaction_mode
5971: || ' ************',4);
5972: END IF;
5973:
5974: INV_RCV_MOBILE_PROCESS_TXN.rcv_process_receive_txn(

Line 6031: inv_RCV_COMMON_APIS.g_rcv_global_var.interface_group_id,

6027: null,
6028: null,
6029: false,
6030: 'IMMEDIATE',
6031: inv_RCV_COMMON_APIS.g_rcv_global_var.interface_group_id,
6032: '0', --fnd_char.local_chr(0), ?
6033: NULL,
6034: NULL,
6035: NULL,

Line 6067: inv_RCV_COMMON_APIS.g_rcv_global_var.interface_group_id := '';

6063: NULL;
6064: end if;
6065:
6066: -- reset group id
6067: inv_RCV_COMMON_APIS.g_rcv_global_var.interface_group_id := '';
6068:
6069: end rcv_manager_conc_call;
6070:
6071: procedure launch_rcv_manager_conc