DBA Data[Home] [Help]

APPS.RCV_CORE_S dependencies on RCV_CORE_S

Line 1: PACKAGE BODY rcv_core_s AS

1: PACKAGE BODY rcv_core_s AS
2: /* $Header: RCVCOCOB.pls 120.2 2006/05/18 05:21:59 amony noship $*/
3:
4: -- Read the profile option that enables/disables the debug log
5: g_asn_debug VARCHAR2(1) := NVL(fnd_profile.VALUE('RCV_DEBUG_MODE'), 'N');

Line 6: g_log_head CONSTANT VARCHAR2(30) := 'po.plsql.RCV_CORE_S.'; --

2: /* $Header: RCVCOCOB.pls 120.2 2006/05/18 05:21:59 amony noship $*/
3:
4: -- Read the profile option that enables/disables the debug log
5: g_asn_debug VARCHAR2(1) := NVL(fnd_profile.VALUE('RCV_DEBUG_MODE'), 'N');
6: g_log_head CONSTANT VARCHAR2(30) := 'po.plsql.RCV_CORE_S.'; --
7: e_validation_error EXCEPTION;
8:
9: /*===========================================================================
10:

Line 253: rcv_core_s.get_receiving_controls(p_order_type_lookup_code => NULL,

249: l_routing_name rcv_routing_headers.routing_name%TYPE; --
250: BEGIN
251: --
252: --
253: rcv_core_s.get_receiving_controls(p_order_type_lookup_code => NULL,
254: p_purchase_basis => NULL,
255: p_line_location_id => x_line_loc_id,
256: p_item_id => x_item_id,
257: p_org_id => x_org_id,

Line 947: rcv_core_s.out_op_info(x_wip_entity_id,

943: );
944: x_po_operation_seq_num := x_wip_operation_seq_num;
945: x_po_resource_seq_num := x_wip_resource_seq_num;
946: x_progress := 20;
947: rcv_core_s.out_op_info(x_wip_entity_id,
948: x_organization_id,
949: x_wip_repetitive_schedule_id,
950: x_wip_operation_seq_num,
951: x_wip_resource_seq_num,

Line 959: rcv_core_s.wip_line_info(x_wip_line_id,

955: );
956: x_progress := 30;
957:
958: IF NVL(x_wip_line_id, 0) <> 0 THEN
959: rcv_core_s.wip_line_info(x_wip_line_id,
960: x_organization_id,
961: x_wip_line
962: );
963: END IF;

Line 1734: END rcv_core_s;

1730: rcv_error_pkg.set_sql_error_message('validate_shipment_number', '000');
1731: x_header_record.error_record.error_status := rcv_error_pkg.g_ret_sts_unexp_error;
1732: x_header_record.error_record.error_message := rcv_error_pkg.get_last_message;
1733: END validate_shipment_number;
1734: END rcv_core_s;