DBA Data[Home] [Help]

APPS.INV_RCV_STD_INSPECT_APIS dependencies on INV_RCV_COMMON_APIS

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

500: END IF;
501:
502: --First check if the transaction date satisfies the validation.
503: --If the transaction date is invalid then error out the transaction
504: IF inv_rcv_common_apis.g_po_startup_value.sob_id IS NULL THEN
505: --BUG 3444196: Used the HR view instead for performance reasons
506: SELECT TO_NUMBER(hoi.org_information1)
507: INTO inv_rcv_common_apis.g_po_startup_value.sob_id
508: FROM hr_organization_information hoi

Line 507: INTO inv_rcv_common_apis.g_po_startup_value.sob_id

503: --If the transaction date is invalid then error out the transaction
504: IF inv_rcv_common_apis.g_po_startup_value.sob_id IS NULL THEN
505: --BUG 3444196: Used the HR view instead for performance reasons
506: SELECT TO_NUMBER(hoi.org_information1)
507: INTO inv_rcv_common_apis.g_po_startup_value.sob_id
508: FROM hr_organization_information hoi
509: WHERE hoi.organization_id = p_organization_id
510: AND (hoi.org_information_context || '') = 'Accounting Information' ;
511: END IF;

Line 513: inv_rcv_common_apis.validate_trx_date(

509: WHERE hoi.organization_id = p_organization_id
510: AND (hoi.org_information_context || '') = 'Accounting Information' ;
511: END IF;
512:
513: inv_rcv_common_apis.validate_trx_date(
514: p_trx_date => SYSDATE
515: , p_organization_id => p_organization_id
516: , p_sob_id => inv_rcv_common_apis.g_po_startup_value.sob_id
517: , x_return_status => x_return_status

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

512:
513: inv_rcv_common_apis.validate_trx_date(
514: p_trx_date => SYSDATE
515: , p_organization_id => p_organization_id
516: , p_sob_id => inv_rcv_common_apis.g_po_startup_value.sob_id
517: , x_return_status => x_return_status
518: , x_error_code => x_msg_data
519: );
520:

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

1615: -- dbms_output.put_line('main_process_po: Just entering main_process_po');
1616:
1617: --First check if the transaction date satisfies the validation.
1618: --If the transaction date is invalid then error out the transaction
1619: IF inv_rcv_common_apis.g_po_startup_value.sob_id IS NULL THEN
1620: --BUG 3444196: Used the HR view instead for performance reasons
1621: SELECT TO_NUMBER(hoi.org_information1)
1622: INTO inv_rcv_common_apis.g_po_startup_value.sob_id
1623: FROM hr_organization_information hoi

Line 1622: INTO inv_rcv_common_apis.g_po_startup_value.sob_id

1618: --If the transaction date is invalid then error out the transaction
1619: IF inv_rcv_common_apis.g_po_startup_value.sob_id IS NULL THEN
1620: --BUG 3444196: Used the HR view instead for performance reasons
1621: SELECT TO_NUMBER(hoi.org_information1)
1622: INTO inv_rcv_common_apis.g_po_startup_value.sob_id
1623: FROM hr_organization_information hoi
1624: WHERE hoi.organization_id = p_organization_id
1625: AND (hoi.org_information_context || '') = 'Accounting Information' ;
1626: END IF;

Line 1628: inv_rcv_common_apis.validate_trx_date(

1624: WHERE hoi.organization_id = p_organization_id
1625: AND (hoi.org_information_context || '') = 'Accounting Information' ;
1626: END IF;
1627:
1628: inv_rcv_common_apis.validate_trx_date(
1629: p_trx_date => SYSDATE
1630: , p_organization_id => p_organization_id
1631: , p_sob_id => inv_rcv_common_apis.g_po_startup_value.sob_id
1632: , x_return_status => x_return_status

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

1627:
1628: inv_rcv_common_apis.validate_trx_date(
1629: p_trx_date => SYSDATE
1630: , p_organization_id => p_organization_id
1631: , p_sob_id => inv_rcv_common_apis.g_po_startup_value.sob_id
1632: , x_return_status => x_return_status
1633: , x_error_code => x_msg_data
1634: );
1635:

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

2030: -- dbms_output.put_line('main_process_intransit: Just entering main_process_intransit');
2031:
2032: --First check if the transaction date satisfies the validation.
2033: --If the transaction date is invalid then error out the transaction
2034: IF inv_rcv_common_apis.g_po_startup_value.sob_id IS NULL THEN
2035: --BUG 3444196: Used the HR view instead for performance reasons
2036: SELECT TO_NUMBER(hoi.org_information1)
2037: INTO inv_rcv_common_apis.g_po_startup_value.sob_id
2038: FROM hr_organization_information hoi

Line 2037: INTO inv_rcv_common_apis.g_po_startup_value.sob_id

2033: --If the transaction date is invalid then error out the transaction
2034: IF inv_rcv_common_apis.g_po_startup_value.sob_id IS NULL THEN
2035: --BUG 3444196: Used the HR view instead for performance reasons
2036: SELECT TO_NUMBER(hoi.org_information1)
2037: INTO inv_rcv_common_apis.g_po_startup_value.sob_id
2038: FROM hr_organization_information hoi
2039: WHERE hoi.organization_id = p_organization_id
2040: AND (hoi.org_information_context || '') = 'Accounting Information' ;
2041: END IF;

Line 2043: inv_rcv_common_apis.validate_trx_date(

2039: WHERE hoi.organization_id = p_organization_id
2040: AND (hoi.org_information_context || '') = 'Accounting Information' ;
2041: END IF;
2042:
2043: inv_rcv_common_apis.validate_trx_date(
2044: p_trx_date => SYSDATE
2045: , p_organization_id => p_organization_id
2046: , p_sob_id => inv_rcv_common_apis.g_po_startup_value.sob_id
2047: , x_return_status => x_return_status

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

2042:
2043: inv_rcv_common_apis.validate_trx_date(
2044: p_trx_date => SYSDATE
2045: , p_organization_id => p_organization_id
2046: , p_sob_id => inv_rcv_common_apis.g_po_startup_value.sob_id
2047: , x_return_status => x_return_status
2048: , x_error_code => x_msg_data
2049: );
2050:

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

2444:
2445: -- dbms_output.put_line('main_process_rma: Just entering main_process_rma');
2446: --First check if the transaction date satisfies the validation.
2447: --If the transaction date is invalid then error out the transaction
2448: IF inv_rcv_common_apis.g_po_startup_value.sob_id IS NULL THEN
2449: --BUG 3444196: Used the HR view instead for performance reasons
2450: SELECT TO_NUMBER(hoi.org_information1)
2451: INTO inv_rcv_common_apis.g_po_startup_value.sob_id
2452: FROM hr_organization_information hoi

Line 2451: INTO inv_rcv_common_apis.g_po_startup_value.sob_id

2447: --If the transaction date is invalid then error out the transaction
2448: IF inv_rcv_common_apis.g_po_startup_value.sob_id IS NULL THEN
2449: --BUG 3444196: Used the HR view instead for performance reasons
2450: SELECT TO_NUMBER(hoi.org_information1)
2451: INTO inv_rcv_common_apis.g_po_startup_value.sob_id
2452: FROM hr_organization_information hoi
2453: WHERE hoi.organization_id = p_organization_id
2454: AND (hoi.org_information_context || '') = 'Accounting Information' ;
2455: END IF;

Line 2457: inv_rcv_common_apis.validate_trx_date(

2453: WHERE hoi.organization_id = p_organization_id
2454: AND (hoi.org_information_context || '') = 'Accounting Information' ;
2455: END IF;
2456:
2457: inv_rcv_common_apis.validate_trx_date(
2458: p_trx_date => SYSDATE
2459: , p_organization_id => p_organization_id
2460: , p_sob_id => inv_rcv_common_apis.g_po_startup_value.sob_id
2461: , x_return_status => x_return_status

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

2456:
2457: inv_rcv_common_apis.validate_trx_date(
2458: p_trx_date => SYSDATE
2459: , p_organization_id => p_organization_id
2460: , p_sob_id => inv_rcv_common_apis.g_po_startup_value.sob_id
2461: , x_return_status => x_return_status
2462: , x_error_code => x_msg_data
2463: );
2464:

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

2852:
2853: -- dbms_output.put_line('main_process_receipt: Just entering main_process_receipt');
2854: --First check if the transaction date satisfies the validation.
2855: --If the transaction date is invalid then error out the transaction
2856: IF inv_rcv_common_apis.g_po_startup_value.sob_id IS NULL THEN
2857: --BUG 3444196: Used the HR view instead for performance reasons
2858: SELECT TO_NUMBER(hoi.org_information1)
2859: INTO inv_rcv_common_apis.g_po_startup_value.sob_id
2860: FROM hr_organization_information hoi

Line 2859: INTO inv_rcv_common_apis.g_po_startup_value.sob_id

2855: --If the transaction date is invalid then error out the transaction
2856: IF inv_rcv_common_apis.g_po_startup_value.sob_id IS NULL THEN
2857: --BUG 3444196: Used the HR view instead for performance reasons
2858: SELECT TO_NUMBER(hoi.org_information1)
2859: INTO inv_rcv_common_apis.g_po_startup_value.sob_id
2860: FROM hr_organization_information hoi
2861: WHERE hoi.organization_id = p_organization_id
2862: AND (hoi.org_information_context || '') = 'Accounting Information' ;
2863: END IF;

Line 2865: inv_rcv_common_apis.validate_trx_date(

2861: WHERE hoi.organization_id = p_organization_id
2862: AND (hoi.org_information_context || '') = 'Accounting Information' ;
2863: END IF;
2864:
2865: inv_rcv_common_apis.validate_trx_date(
2866: p_trx_date => SYSDATE
2867: , p_organization_id => p_organization_id
2868: , p_sob_id => inv_rcv_common_apis.g_po_startup_value.sob_id
2869: , x_return_status => x_return_status

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

2864:
2865: inv_rcv_common_apis.validate_trx_date(
2866: p_trx_date => SYSDATE
2867: , p_organization_id => p_organization_id
2868: , p_sob_id => inv_rcv_common_apis.g_po_startup_value.sob_id
2869: , x_return_status => x_return_status
2870: , x_error_code => x_msg_data
2871: );
2872:

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

3426: FROM rcv_shipment_headers
3427: WHERE shipment_header_id = l_shipment_hdr_id
3428: AND ship_to_org_id = p_organization_id;
3429:
3430: inv_rcv_common_apis.g_rcv_global_var.receipt_num := l_receipt_num;
3431: IF (l_debug = 1) THEN
3432: print_debug('create_intship_rcpt_intf_rec: 10.1 '|| inv_rcv_common_apis.g_rcv_global_var.receipt_num, 9);
3433: END IF;
3434: EXCEPTION

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

3428: AND ship_to_org_id = p_organization_id;
3429:
3430: inv_rcv_common_apis.g_rcv_global_var.receipt_num := l_receipt_num;
3431: IF (l_debug = 1) THEN
3432: print_debug('create_intship_rcpt_intf_rec: 10.1 '|| inv_rcv_common_apis.g_rcv_global_var.receipt_num, 9);
3433: END IF;
3434: EXCEPTION
3435: WHEN NO_DATA_FOUND THEN
3436: l_receipt_num := NULL;

Line 3445: INV_RCV_COMMON_APIS.init_startup_values(l_organization_id);

3441: dbms_output.put_line('insinsprecrti: poid ' || l_po_hdr_id);
3442: dbms_output.put_line('insinsprecrti: polineid ' || l_po_line_id);
3443: dbms_output.put_line('insinsprecrti: polinelocid ' || l_po_line_location_id);
3444: */
3445: INV_RCV_COMMON_APIS.init_startup_values(l_organization_id);
3446:
3447: l_user_id := INV_RCV_COMMON_APIS.g_po_startup_value.user_id;
3448: l_logon_id := INV_RCV_COMMON_APIS.g_po_startup_value.logon_id;
3449: l_employee_id := INV_RCV_COMMON_APIS.g_po_startup_value.employee_id;

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

3443: dbms_output.put_line('insinsprecrti: polinelocid ' || l_po_line_location_id);
3444: */
3445: INV_RCV_COMMON_APIS.init_startup_values(l_organization_id);
3446:
3447: l_user_id := INV_RCV_COMMON_APIS.g_po_startup_value.user_id;
3448: l_logon_id := INV_RCV_COMMON_APIS.g_po_startup_value.logon_id;
3449: l_employee_id := INV_RCV_COMMON_APIS.g_po_startup_value.employee_id;
3450: l_processor_value := INV_RCV_COMMON_APIS.g_po_startup_value.transaction_mode;
3451:

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

3444: */
3445: INV_RCV_COMMON_APIS.init_startup_values(l_organization_id);
3446:
3447: l_user_id := INV_RCV_COMMON_APIS.g_po_startup_value.user_id;
3448: l_logon_id := INV_RCV_COMMON_APIS.g_po_startup_value.logon_id;
3449: l_employee_id := INV_RCV_COMMON_APIS.g_po_startup_value.employee_id;
3450: l_processor_value := INV_RCV_COMMON_APIS.g_po_startup_value.transaction_mode;
3451:
3452: IF inv_rcv_common_apis.g_rcv_global_var.interface_group_id is NULL THEN

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

3445: INV_RCV_COMMON_APIS.init_startup_values(l_organization_id);
3446:
3447: l_user_id := INV_RCV_COMMON_APIS.g_po_startup_value.user_id;
3448: l_logon_id := INV_RCV_COMMON_APIS.g_po_startup_value.logon_id;
3449: l_employee_id := INV_RCV_COMMON_APIS.g_po_startup_value.employee_id;
3450: l_processor_value := INV_RCV_COMMON_APIS.g_po_startup_value.transaction_mode;
3451:
3452: IF inv_rcv_common_apis.g_rcv_global_var.interface_group_id is NULL THEN
3453: SELECT rcv_interface_groups_s.nextval

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

3446:
3447: l_user_id := INV_RCV_COMMON_APIS.g_po_startup_value.user_id;
3448: l_logon_id := INV_RCV_COMMON_APIS.g_po_startup_value.logon_id;
3449: l_employee_id := INV_RCV_COMMON_APIS.g_po_startup_value.employee_id;
3450: l_processor_value := INV_RCV_COMMON_APIS.g_po_startup_value.transaction_mode;
3451:
3452: IF inv_rcv_common_apis.g_rcv_global_var.interface_group_id is NULL THEN
3453: SELECT rcv_interface_groups_s.nextval
3454: INTO l_group_id FROM dual;

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

3448: l_logon_id := INV_RCV_COMMON_APIS.g_po_startup_value.logon_id;
3449: l_employee_id := INV_RCV_COMMON_APIS.g_po_startup_value.employee_id;
3450: l_processor_value := INV_RCV_COMMON_APIS.g_po_startup_value.transaction_mode;
3451:
3452: IF inv_rcv_common_apis.g_rcv_global_var.interface_group_id is NULL THEN
3453: SELECT rcv_interface_groups_s.nextval
3454: INTO l_group_id FROM dual;
3455:
3456: inv_rcv_common_apis.g_rcv_global_var.interface_group_id := l_group_id;

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

3452: IF inv_rcv_common_apis.g_rcv_global_var.interface_group_id is NULL THEN
3453: SELECT rcv_interface_groups_s.nextval
3454: INTO l_group_id FROM dual;
3455:
3456: inv_rcv_common_apis.g_rcv_global_var.interface_group_id := l_group_id;
3457: ELSE
3458: l_group_id := inv_rcv_common_apis.g_rcv_global_var.interface_group_id;
3459: END IF;
3460:

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

3454: INTO l_group_id FROM dual;
3455:
3456: inv_rcv_common_apis.g_rcv_global_var.interface_group_id := l_group_id;
3457: ELSE
3458: l_group_id := inv_rcv_common_apis.g_rcv_global_var.interface_group_id;
3459: END IF;
3460:
3461: select rcv_transactions_interface_s.nextval
3462: into l_interface_transaction_id from dual;

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

3473: FROM RCV_TRANSACTIONS RT
3474: WHERE RT.TRANSACTION_ID = l_rcv_transaction_id;
3475:
3476: --
3477: l_operating_unit_id := inv_rcv_common_apis.get_operating_unit_id( l_receipt_source_code,
3478: l_po_hdr_id,
3479: l_req_line_id,
3480: l_oe_order_header_id );
3481:

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

3491: /* FP-J Enhancement
3492: * Populate the LPN_GROUP_ID, validation_flag columns, subinventory
3493: * and locator_id columns in RTI if WMS and PO patch levels are J or higher
3494: */
3495: IF ((inv_rcv_common_apis.g_wms_patch_level >= inv_rcv_common_apis.g_patchset_j) AND
3496: (inv_rcv_common_apis.g_po_patch_level >= inv_rcv_common_apis.g_patchset_j_po)) THEN
3497: l_validation_flag := 'Y';
3498: l_lpn_group_id := l_group_id;
3499:

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

3492: * Populate the LPN_GROUP_ID, validation_flag columns, subinventory
3493: * and locator_id columns in RTI if WMS and PO patch levels are J or higher
3494: */
3495: IF ((inv_rcv_common_apis.g_wms_patch_level >= inv_rcv_common_apis.g_patchset_j) AND
3496: (inv_rcv_common_apis.g_po_patch_level >= inv_rcv_common_apis.g_patchset_j_po)) THEN
3497: l_validation_flag := 'Y';
3498: l_lpn_group_id := l_group_id;
3499:
3500: /* If the current transaction is LPN-based (for a WMS org), then we need to

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

3595: print_debug('insert_inspect_rec_rti: subinventory : ' || l_rti_sub_code || ', locator_id: ' || l_rti_loc_id, 4);
3596: END IF;
3597:
3598: -- bug 3452845
3599: IF ((inv_rcv_common_apis.g_inv_patch_level >= inv_rcv_common_apis.g_patchset_j) AND
3600: (inv_rcv_common_apis.g_po_patch_level >= inv_rcv_common_apis.g_patchset_j_po)) THEN
3601: l_transaction_date := Sysdate;
3602: ELSE
3603: l_transaction_date := Trunc(Sysdate);

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

3596: END IF;
3597:
3598: -- bug 3452845
3599: IF ((inv_rcv_common_apis.g_inv_patch_level >= inv_rcv_common_apis.g_patchset_j) AND
3600: (inv_rcv_common_apis.g_po_patch_level >= inv_rcv_common_apis.g_patchset_j_po)) THEN
3601: l_transaction_date := Sysdate;
3602: ELSE
3603: l_transaction_date := Trunc(Sysdate);
3604: END IF;

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

3910: x_return_status := fnd_api.g_ret_sts_success;
3911:
3912: /*
3913: dbms_output.put_line('rcv_mgr_rpc_call: group_id '
3914: || inv_RCV_COMMON_APIS.g_rcv_global_var.interface_group_id);
3915: */
3916: --bug 5169107
3917: l_timeout := fnd_profile.value('INV_RPC_TIMEOUT');
3918: if l_timeout is null then

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

3921: --bug 5169107
3922:
3923: rc := fnd_transaction.synchronous (
3924: l_timeout, l_outcome, l_message, 'PO', 'RCVTPO',
3925: 'ONLINE', inv_RCV_COMMON_APIS.g_rcv_global_var.interface_group_id,
3926: NULL, NULL, NULL, NULL, NULL, NULL,
3927: NULL, NULL, NULL, NULL, NULL, NULL,
3928: NULL, NULL, NULL, NULL, NULL, NULL);
3929:

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

3971:
3972: END IF;
3973:
3974: -- reset group id
3975: inv_RCV_COMMON_APIS.g_rcv_global_var.interface_group_id := '';
3976: end rcv_manager_rpc_call;
3977:
3978:
3979:

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

3996: -- LPN lables are not getting printed for rejected LPNS
3997: --SELECT MIN(rti.interface_transaction_id)
3998: SELECT rti.interface_transaction_id
3999: FROM rcv_transactions_interface rti
4000: WHERE rti.GROUP_ID = inv_rcv_common_apis.g_rcv_global_var.interface_group_id;
4001: -- GROUP BY rti.lpn_id;
4002: l_debug NUMBER := NVL(fnd_profile.VALUE('INV_DEBUG_TRACE'), 0);
4003: BEGIN
4004:

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

4011: * If WMS and PO patch levels are J or higher then the label printing calls
4012: * would be done from the receiving TM and should NOT be done here.
4013: * If either of these are lower than J, then retain the original processing
4014: */
4015: IF ((inv_rcv_common_apis.g_wms_patch_level < inv_rcv_common_apis.g_patchset_j) OR
4016: (inv_rcv_common_apis.g_po_patch_level < inv_rcv_common_apis.g_patchset_j_po)) THEN
4017: IF (l_debug = 1) THEN
4018: print_debug('create_std_rcpt_intf_rec: 8.1 before inv_label.print_label ', 4);
4019: END IF;

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

4012: * would be done from the receiving TM and should NOT be done here.
4013: * If either of these are lower than J, then retain the original processing
4014: */
4015: IF ((inv_rcv_common_apis.g_wms_patch_level < inv_rcv_common_apis.g_patchset_j) OR
4016: (inv_rcv_common_apis.g_po_patch_level < inv_rcv_common_apis.g_patchset_j_po)) THEN
4017: IF (l_debug = 1) THEN
4018: print_debug('create_std_rcpt_intf_rec: 8.1 before inv_label.print_label ', 4);
4019: END IF;
4020:

Line 4070: INV_RCV_COMMON_APIS.g_po_startup_value.transaction_mode

4066:
4067:
4068: IF (l_debug =1 ) THEN
4069: print_debug('********* PROCESSING_MODE IS :' ||
4070: INV_RCV_COMMON_APIS.g_po_startup_value.transaction_mode
4071: || ' ************',4);
4072: END IF;
4073:
4074: INV_RCV_MOBILE_PROCESS_TXN.rcv_process_receive_txn(

Line 4131: inv_RCV_COMMON_APIS.g_rcv_global_var.interface_group_id,

4127: null,
4128: null,
4129: false,
4130: 'IMMEDIATE',
4131: inv_RCV_COMMON_APIS.g_rcv_global_var.interface_group_id,
4132: '0', --fnd_char.local_chr(0), ?
4133: NULL,
4134: NULL,
4135: NULL,

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

4163: NULL;
4164: end if;
4165:
4166: -- reset group id
4167: inv_RCV_COMMON_APIS.g_rcv_global_var.interface_group_id := '';
4168:
4169: end rcv_manager_conc_call;
4170:
4171: procedure launch_rcv_manager_conc