DBA Data[Home] [Help]

APPS.INL_CHARGE_PVT SQL Statements

The following lines contain the word 'select', 'insert', 'update' or 'delete':

Line: 40

PROCEDURE Insert_Association(
    p_ship_header_id          IN NUMBER,
    p_from_parent_table_name  IN VARCHAR2,
    p_from_parent_table_id    IN NUMBER,
    p_to_parent_table_name    IN VARCHAR2,
    p_to_parent_table_id      IN NUMBER,
    x_return_status           OUT NOCOPY VARCHAR2
) IS

    l_proc_name  CONSTANT VARCHAR2(30) := 'Insert_Association';
Line: 66

    SELECT icv.allocation_basis,
           ab.base_uom_code
      INTO l_allocation_basis,
           l_allocation_uom_code
      FROM inl_allocation_basis_vl ab,
           inl_charge_line_types_vl icv,
           inl_charge_lines icl
     WHERE ab.allocation_basis_code (+) = icv.allocation_basis
       AND icv.charge_line_type_id (+) = icl.charge_line_type_id
       AND icl.charge_line_id = p_from_parent_table_id;
Line: 77

    l_debug_info := 'Insert into INL Associations table';
Line: 82

    INSERT INTO inl_associations(
        association_id,
        ship_header_id,
        from_parent_table_name,
        from_parent_table_id,
        to_parent_table_name,
        to_parent_table_id,
        allocation_basis,
        allocation_uom_code,
        created_by,
        creation_date,
        last_updated_by,
        last_update_date,
        last_update_login)
    VALUES (
        inl_associations_s.NEXTVAL,
        p_ship_header_id,
        p_from_parent_table_name,
        p_from_parent_table_id,
        p_to_parent_table_name,
        p_to_parent_table_id,
        l_allocation_basis,
        l_allocation_uom_code,
        L_FND_USER_ID,
        SYSDATE,
        L_FND_USER_ID,
        SYSDATE,
        L_FND_LOGIN_ID
    );
Line: 126

END Insert_Association;
Line: 174

PROCEDURE Insert_ChargeLines(
    p_ship_header_id           IN NUMBER,
    p_charge_line_type_id      IN NUMBER,
    p_landed_cost_flag         IN VARCHAR2,
    p_update_allowed           IN VARCHAR2,
    p_source_code              IN VARCHAR2,
    p_charge_amt               IN NUMBER,
    p_currency_code            IN VARCHAR2,
    p_currency_conversion_type IN VARCHAR2,
    p_currency_conversion_date IN DATE,
    p_currency_conversion_rate IN NUMBER,
    p_party_id                 IN NUMBER,
    p_party_site_id            IN NUMBER,
    p_trx_business_category    IN VARCHAR2,
    p_intended_use             IN VARCHAR2,
    p_product_fiscal_class     IN VARCHAR2,
    p_product_category         IN VARCHAR2,
    p_product_type             IN VARCHAR2,
    p_user_def_fiscal_class    IN VARCHAR2,
    p_tax_classification_code  IN VARCHAR2,
    p_assessable_value         IN NUMBER,
    p_ship_from_party_id       IN NUMBER,
    p_ship_from_party_site_id  IN NUMBER,
    p_ship_to_organization_id  IN NUMBER,
    p_ship_to_location_id      IN NUMBER,
    p_bill_from_party_id       IN NUMBER,
    p_bill_from_party_site_id  IN NUMBER,
    p_bill_to_organization_id  IN NUMBER,
    p_bill_to_location_id      IN NUMBER,
    p_poa_party_id             IN NUMBER,
    p_poa_party_site_id        IN NUMBER,
    p_poo_organization_id      IN NUMBER,
    p_poo_location_id          IN NUMBER,
    p_to_parent_table_name     IN VARCHAR2,
    p_to_parent_table_id       IN NUMBER,
    x_return_status            OUT NOCOPY VARCHAR2
) IS

    l_proc_name        CONSTANT VARCHAR2(30) := 'Insert_ChargeLines';
Line: 235

    SELECT inl_charge_lines_s.NEXTVAL
      INTO l_charge_line_id
      FROM dual;
Line: 246

    SELECT NVL(MAX(icl.charge_line_num),0) + 1
      INTO l_charge_line_num
      FROM inl_charge_lines icl,
           inl_associations ias
     WHERE ias.from_parent_table_name = 'INL_CHARGE_LINES'
       AND ias.from_parent_table_id = icl.charge_line_id
       AND ias.ship_header_id = p_ship_header_id;
Line: 254

    l_debug_info := 'Insert into INL Charge Line table.';
Line: 259

    INSERT INTO inl_charge_lines(
        charge_line_id,
        charge_line_num,
        charge_line_type_id,
        landed_cost_flag,
        update_allowed,
        source_code,
        adjustment_num,
        charge_amt,
        currency_code,
        currency_conversion_type,
        currency_conversion_date,
        currency_conversion_rate,
        party_id,
        party_site_id,
        trx_business_category,
        intended_use,
        product_fiscal_class,
        product_category,
        product_type,
        user_def_fiscal_class,
        tax_classification_code,
        assessable_value,
        tax_already_calculated_flag,
        ship_from_party_id,
        ship_from_party_site_id,
        ship_to_organization_id,
        ship_to_location_id,
        bill_from_party_id,
        bill_from_party_site_id,
        bill_to_organization_id,
        bill_to_location_id,
        poa_party_id,
        poa_party_site_id,
        poo_organization_id,
        poo_location_id,
        created_by,
        creation_date,
        last_updated_by,
        last_update_date,
        last_update_login)
    VALUES(
        l_charge_line_id,
        l_charge_line_num,
        p_charge_line_type_id,
        p_landed_cost_flag,
        p_update_allowed,
        p_source_code,
        0, -- adjustment_num
        p_charge_amt,
        p_currency_code,
        p_currency_conversion_type,
        p_currency_conversion_date,
        p_currency_conversion_rate,
        p_party_id,
        p_party_site_id,
        p_trx_business_category,
        p_intended_use,
        p_product_fiscal_class,
        p_product_category,
        p_product_type,
        p_user_def_fiscal_class,
        p_tax_classification_code,
        p_assessable_value,
        'N', -- tax_already_calculated_flag
        p_ship_from_party_id,
        p_ship_from_party_site_id,
        p_ship_to_organization_id,
        p_ship_to_location_id,
        p_bill_from_party_id,
        p_bill_from_party_site_id,
        p_bill_to_organization_id,
        p_bill_to_location_id,
        p_poa_party_id,
        p_poa_party_site_id,
        p_poo_organization_id,
        p_poo_location_id,
        L_FND_USER_ID,
        SYSDATE,
        L_FND_USER_ID,
        SYSDATE,
        L_FND_LOGIN_ID
    );
Line: 343

    l_debug_info := 'Call Insert_Association(...)';
Line: 350

    Insert_Association(
        p_ship_header_id         => p_ship_header_id,
        p_from_parent_table_name => 'INL_CHARGE_LINES', -- from_parent_table_name
        p_from_parent_table_id   => l_charge_line_id, -- from_parent_table_id
        p_to_parent_table_name   => p_to_parent_table_name,
        p_to_parent_table_id     => p_to_parent_table_id,
        x_return_status          => l_return_status
    );
Line: 380

END Insert_ChargeLines;
Line: 1172

    l_debug_info := 'Call QP_PREQ_GRP.INSERT_LINES2 to insert into qp_preq_lines_tmp table';
Line: 1178

    QP_PREQ_GRP.INSERT_LINES2(
        p_line_index               => l_line_index_tbl,
        p_line_type_code           => l_line_type_code_tbl,
        p_pricing_effective_date   => l_pricinl_effective_date_tbl,
        p_active_date_first        => l_active_date_first_tbl,
        p_active_date_first_type   => l_active_date_first_type_tbl,
        p_active_date_second       => l_active_date_second_tbl,
        p_active_date_second_type  => l_active_date_second_type_tbl,
        p_line_quantity            => l_line_quantity_tbl,
        p_line_uom_code            => l_line_uom_code_tbl,
        p_request_type_code        => l_request_type_code_tbl,
        p_priced_quantity          => l_priced_quantity_tbl,
        p_priced_uom_code          => l_priced_uom_code_tbl,
        p_currency_code            => l_currency_code_tbl,
        p_unit_price               => l_unit_price_tbl,
        p_percent_price            => l_percent_price_tbl,
        p_uom_quantity             => l_uom_quantity_tbl,
        p_adjusted_unit_price      => l_adjusted_unit_price_tbl,
        p_upd_adjusted_unit_price  => l_upd_adjusted_unit_price_tbl,
        p_processed_flag           => l_processed_flag_tbl,
        p_price_flag               => l_price_flag_tbl,
        p_line_id                  => l_line_id_tbl,
        p_processing_order         => l_processing_order_tbl,
        p_pricing_status_code      => l_pricing_status_code_tbl,
        p_pricing_status_text      => l_pricing_status_text_tbl,
        p_rounding_flag            => l_rounding_flag_tbl,
        p_rounding_factor          => l_rounding_factor_tbl,
        p_qualifiers_exist_flag    => l_qualifiers_exist_flag_tbl,
        p_pricing_attrs_exist_flag => l_pricing_attrs_exist_flag_tbl,
        p_price_list_id            => l_price_list_id_tbl,
        p_validated_flag           => l_pl_validated_flag_tbl,
        p_price_request_code       => l_price_request_code_tbl,
        p_usage_pricing_type       => l_usage_pricing_type_tbl,
        p_line_category            => l_line_category_tbl,
        p_line_unit_price          => l_line_unit_price_tbl,
        p_list_price_override_flag => l_list_price_overide_flag_tbl,
        x_status_code              => x_return_status,
        x_status_text              => l_return_status_text);
Line: 1237

    l_control_rec.temp_table_insert_flag := 'N';
Line: 1280

        SELECT charge_type_code,
               order_qty_adj_amt freight_charge,
               pricing_status_code,
               pricing_status_text,
               modifier_level_code,
               override_flag,
               operand_calculation_code --Bug#8928845
        BULK COLLECT INTO l_freight_charge_rec_tbl
        FROM  qp_ldets_v
        WHERE line_index = k
        AND   list_line_type_code = 'FREIGHT_CHARGE'
        AND   applied_flag = 'Y';
Line: 1305

        SELECT pricing_status_code,
               pricing_status_text
          INTO l_qp_cost_table(k).pricing_status_code,
               l_qp_cost_table(k).pricing_status_text
          FROM qp_preq_lines_tmp
         WHERE line_index = k;
Line: 1371

                SELECT COUNT(1)
                INTO  l_qp_charge_lookup
                FROM  qp_charge_lookup qcl
                WHERE qcl.lookup_code = l_freight_charge_tbl(n).charge_type_code
                AND   qcl.lookup_type = 'FREIGHT_CHARGES_TYPE';
Line: 1378

                    SELECT COUNT(1)
                    INTO  l_qp_charge_lookup
                    FROM  qp_charge_lookup qcl
                    WHERE qcl.lookup_code = l_freight_charge_tbl(n).charge_type_code
                    AND   qcl.lookup_type = 'FREIGHT_COST_TYPE';
Line: 1541

                        x_charge_ln_tbl(l_charge_ln_index).update_allowed := l_freight_charge_tbl(n).override_flag;
Line: 1682

        SELECT gl.currency_code
        INTO l_ship_ln_group_rec.currency_code
        FROM gl_sets_of_books gl,
            financials_system_parameters fsp
        WHERE gl.set_of_books_id = fsp.set_of_books_id
        AND fsp.org_id = p_ship_header_rec.org_id;
Line: 1811

                    SELECT
                        ph.po_header_id,  -- Bug#13092165
                        NVL(s.vendor_id, ph.vendor_id) as vendor_id,
                        NVL(s.vendor_site_id, ph.vendor_site_id) as vendor_site_id,
                        ph.creation_date,
                        ph.org_id,
                        pll.shipment_num,
                        NVL(pll.need_by_date,SYSDATE) need_by_date, --Bug#9570880
                        pl.item_revision,
                        pl.item_id
                    INTO
                        l_ship_ln_group_rec.po_header_id, -- Bug#13092165
                        l_ship_ln_group_rec.supplier_id,
                        l_ship_ln_group_rec.supplier_site_id,
                        l_ship_ln_group_rec.creation_date,
                        l_ship_ln_group_rec.source_org_id,
                        l_ship_ln_group_rec.shipment_num,
                        l_ship_ln_tbl(l - ln_index + 1).need_by_date,
                        l_ship_ln_tbl(l - ln_index + 1).item_revision,
                        l_ship_ln_tbl(l - ln_index + 1).item_id
                    FROM
                        po_lines_all pl,
                        po_headers_all ph,
                        po_line_locations_all pll,
                        inl_simulations s
                    WHERE
                        ph.po_header_id = pll.po_header_id
                        AND pll.line_location_id = p_ship_ln_tbl(l).ship_line_source_id
                        AND pl.po_line_id = pll.po_line_id
                        AND s.parent_table_name(+) = 'PO_HEADERS'
                        AND s.parent_table_id  (+) = ph.po_header_id --for the use of outer join
                        AND s.simulation_id    (+) = p_ship_header_rec.simulation_id;
Line: 1846

                    SELECT
                        NVL(pll.need_by_date,SYSDATE) need_by_date, --Bug#9570880
                        pl.item_revision,
                        pl.item_id
                    INTO
                        l_ship_ln_tbl(l - ln_index + 1).need_by_date,
                        l_ship_ln_tbl(l - ln_index + 1).item_revision,
                        l_ship_ln_tbl(l - ln_index + 1).item_id
                    FROM po_lines_all pl,
                         po_line_locations_all pll
                    WHERE pl.po_line_id = pll.po_line_id
                    AND pll.line_location_id = p_ship_ln_tbl(l).ship_line_source_id;
Line: 1883

                            SELECT
                                rsh.hazard_class,
                                rsh.hazard_code,
                                rsh.shipped_date,
                                rsh.carrier_method,
                                rsh.packaging_code,
                                DECODE(p_ship_header_rec.simulation_id, NULL,
                                rsh.freight_carrier_code,
                                (SELECT s.freight_code
                                 FROM inl_simulations s
                                 WHERE s.simulation_id = p_ship_header_rec.simulation_id)) AS freight_code, -- Bug# 9279355
                                rsh.freight_terms,
                                rsh.expected_receipt_date,
                                rsl.vendor_item_num
                            INTO
                                l_ship_ln_group_rec.hazard_class           ,
                                l_ship_ln_group_rec.hazard_code            ,
                                l_ship_ln_group_rec.shipped_date           ,
                                l_ship_ln_group_rec.carrier_method         ,
                                l_ship_ln_group_rec.packaging_code         ,
                                l_ship_ln_group_rec.freight_code           ,
                                l_ship_ln_group_rec.freight_terms          ,
                                l_ship_ln_group_rec.expected_receipt_date  ,
                                l_ship_ln_tbl(l - ln_index + 1).supplier_item_num
                            FROM rcv_transactions rtr,
                                 rcv_shipment_headers rsh,
                                 rcv_shipment_lines rsl
                            WHERE rsh.shipment_header_id = rtr.shipment_header_id
                            AND rsl.shipment_line_id = rtr.shipment_line_id
                            AND rtr.lcm_shipment_line_id = p_ship_ln_tbl(l).ship_line_id
                            AND rtr.po_line_location_id = p_ship_ln_tbl(l).ship_line_source_id;
Line: 1916

                            SELECT
                                rsh.hazard_class,
                                rsh.hazard_code,
                                rsh.shipped_date,
                                rsh.carrier_method,
                                rsh.packaging_code,
                                rsh.freight_carrier_code,
                                rsh.freight_terms,
                                rsh.expected_receipt_date,
                                rsl.vendor_item_num
                            INTO
                                l_ship_ln_group_rec.hazard_class           ,
                                l_ship_ln_group_rec.hazard_code            ,
                                l_ship_ln_group_rec.shipped_date           ,
                                l_ship_ln_group_rec.carrier_method         ,
                                l_ship_ln_group_rec.packaging_code         ,
                                l_ship_ln_group_rec.freight_code   ,
                                l_ship_ln_group_rec.freight_terms          ,
                                l_ship_ln_group_rec.expected_receipt_date  ,
                                l_ship_ln_tbl(l - ln_index + 1).supplier_item_num
                            FROM rcv_transactions rtr,
                                 rcv_shipment_headers rsh,
                                 rcv_shipment_lines rsl
                            WHERE rsh.shipment_header_id = rtr.shipment_header_id
                            AND rsl.shipment_line_id = rtr.shipment_line_id
                            AND rtr.lcm_shipment_line_id = p_ship_ln_tbl(l).ship_line_id
                            AND rtr.shipment_line_id = p_ship_ln_tbl(l).ship_line_source_id;
Line: 1944

                            SELECT
                                rsh.hazard_class,
                                rsh.hazard_code,
                                rsh.shipped_date,
                                rsh.carrier_method,
                                rsh.packaging_code,
                                rsh.freight_carrier_code,
                                rsh.freight_terms,
                                rsh.expected_receipt_date,
                                rsl.vendor_item_num
                            INTO
                                l_ship_ln_group_rec.hazard_class           ,
                                l_ship_ln_group_rec.hazard_code            ,
                                l_ship_ln_group_rec.shipped_date           ,
                                l_ship_ln_group_rec.carrier_method         ,
                                l_ship_ln_group_rec.packaging_code         ,
                                l_ship_ln_group_rec.freight_code   ,
                                l_ship_ln_group_rec.freight_terms          ,
                                l_ship_ln_group_rec.expected_receipt_date  ,
                                l_ship_ln_tbl(l - ln_index + 1).supplier_item_num
                            FROM rcv_transactions rtr,
                                 rcv_shipment_headers rsh,
                                 rcv_shipment_lines rsl
                            WHERE rsh.shipment_header_id = rtr.shipment_header_id
                            AND rsl.shipment_line_id = rtr.shipment_line_id
                            AND rtr.lcm_shipment_line_id = p_ship_ln_tbl(l).ship_line_id;
Line: 1977

                            SELECT rsl.vendor_item_num
                            INTO l_ship_ln_tbl(l - ln_index + 1).supplier_item_num
                            FROM rcv_transactions rtr,
                                 rcv_shipment_lines rsl
                            WHERE rsl.shipment_line_id   = rtr.shipment_line_id
                            AND rtr.lcm_shipment_line_id = p_ship_ln_tbl(l).ship_line_id
                            AND rtr.po_line_location_id  = p_ship_ln_tbl(l).ship_line_source_id;
Line: 1985

                            SELECT
                                rsl.vendor_item_num
                            INTO
                                l_ship_ln_tbl(l - ln_index + 1).supplier_item_num
                            FROM rcv_transactions rtr,
                                 rcv_shipment_lines rsl
                            WHERE rsl.shipment_line_id   = rtr.shipment_line_id
                            AND rtr.lcm_shipment_line_id = p_ship_ln_tbl(l).ship_line_id;
Line: 2110

    SELECT sl.ship_line_src_type_code,
           sl.ship_line_source_id
    INTO l_ship_line_src_type_code,
         l_ship_line_source_id
    FROM inl_ship_lines sl
    WHERE sl.ship_line_id = p_ship_line_id;
Line: 2136

        SELECT sl.ship_line_id
        INTO l_simul_ship_line_id
        FROM   inl_simulations s,
               inl_ship_headers_all sh,
               inl_ship_lines_all sl
        WHERE  -- s.parent_table_name = DECODE(sh.interface_source_code,'PO','PO_HEADERS','-1')
               sh.interface_source_code = DECODE(s.parent_table_name,'PO_HEADERS','PO',
                                          DECODE(s.parent_table_name, 'PO_RELEASES', 'PO', '-1')) -- Bug 14280113
        -- AND    s.parent_table_id = sh.interface_source_line_id
        AND sh.interface_source_line_id = DECODE(s.parent_table_name,'PO_HEADERS', s.parent_table_id,
                                                  DECODE(s.parent_table_name,'PO_RELEASES',(SELECT po_header_id
                                                                                            FROM po_releases_all
                                                                                            WHERE po_release_id = s.parent_table_id), -1)) -- Bug 14280113
        AND    s.simulation_id = sh.simulation_id
        AND    s.firmed_flag = 'Y'
        AND    sh.ship_header_id = sl.ship_header_id
        AND    sl.ship_line_src_type_code = l_ship_line_src_type_code
        AND    sl.ship_line_source_id = l_ship_line_source_id
        AND    s.parent_table_revision_num = (
                   SELECT MAX(s1.parent_table_revision_num)
                   FROM   inl_simulations s1
                   WHERE  -- s1.parent_table_name = DECODE(sh.interface_source_code,'PO','PO_HEADERS','-1')
                          sh.interface_source_code = DECODE(s1.parent_table_name,'PO_HEADERS','PO',
                                                     DECODE(s1.parent_table_name, 'PO_RELEASES', 'PO', '-1')) -- Bug 14280113
                   -- AND    s1.parent_table_id = sh.interface_source_line_id
                   AND    sh.interface_source_line_id = DECODE(s1.parent_table_name,'PO_HEADERS', s1.parent_table_id,
                                                               DECODE(s1.parent_table_name,'PO_RELEASES',(SELECT pr.po_header_id
                                                                                                          FROM po_releases_all pr,
                                                                                                               po_line_locations_all pl
                                                                                                          WHERE pr.po_release_id = s1.parent_table_id
                                                                                                          AND pr.po_release_id = pl.po_release_id
                                                                                                          AND pl.line_location_id = l_ship_line_source_id), -1))-- Bug 14280113
                   AND    s1.firmed_flag = 'Y');
Line: 2238

        SELECT sl.ship_line_id,
               sl.primary_qty,
               sl.org_id
        FROM inl_ship_lines_all sl
        WHERE sl.ship_header_id = p_ship_header_id;
Line: 2248

        SELECT cl.charge_line_type_id,
               a.allocation_amt/sl.primary_qty unit_charge_amt,
               cl.update_allowed,
               cl.source_code,
               cl.party_id,
               cl.party_site_id,
               cl.trx_business_category,
               cl.intended_use,
               cl.product_fiscal_class,
               cl.product_category,
               cl.product_type,
               cl.user_def_fiscal_class,
               cl.tax_classification_code,
               cl.assessable_value,
               cl.ship_from_party_id,
               cl.ship_from_party_site_id,
               cl.ship_to_organization_id,
               cl.ship_to_location_id,
               cl.bill_from_party_id,
               cl.bill_from_party_site_id,
               cl.bill_to_organization_id,
               cl.bill_to_location_id,
               cl.poa_party_id,
               cl.poa_party_site_id,
               cl.poo_organization_id,
               cl.poo_location_id
        FROM inl_charge_lines cl,
             inl_ship_lines_all sl,
             inl_allocations a
        WHERE cl.charge_line_id = a.from_parent_table_id
        AND sl.ship_line_id = a.ship_line_id
        AND from_parent_table_name = 'INL_CHARGE_LINES'
        AND a.ship_line_id = p_simul_ship_line_id;
Line: 2331

                    SELECT gl.currency_code
                    INTO l_func_currency_code
                    FROM gl_sets_of_books gl,
                         financials_system_parameters fsp
                    WHERE gl.set_of_books_id = fsp.set_of_books_id
                    AND fsp.org_id = ship_ln_list(i).org_id;
Line: 2357

                    l_debug_info := 'Collect data to be passed to Insert_ChargeLines' ;
Line: 2379

                    x_charge_ln_tbl(l_charge_ln_index).update_allowed := charge_ln_list(j).update_allowed;
Line: 2586

    SELECT COUNT(*)
    INTO l_count_dual_assoc
    FROM inl_associations ias,
         inl_charge_lines icl
    WHERE ias.from_parent_table_id = icl.charge_line_id
      AND ias.from_parent_table_name = 'INL_CHARGE_LINES'
      AND ias.ship_header_id = p_ship_header_id
      AND EXISTS (SELECT 1
                  FROM inl_associations ia2
                  WHERE ia2.from_parent_table_name = 'INL_CHARGE_LINES'
                  AND ia2.from_parent_table_id = ias.from_parent_table_id
                  AND ia2.ship_header_id <> p_ship_header_id);
Line: 2623

    DELETE
    FROM inl_charge_lines icl
    WHERE icl.charge_line_id
       IN (SELECT ias.from_parent_table_id
           FROM inl_associations ias
           WHERE  ias.from_parent_table_name = 'INL_CHARGE_LINES'
           AND ias.ship_header_id = p_ship_header_id);
Line: 2632

    DELETE
    FROM inl_charge_lines icl
    WHERE
       EXISTS ( SELECT 1
                FROM  inl_associations ias
                WHERE ias.from_parent_table_name   = 'INL_CHARGE_LINES'
                AND   ias.ship_header_id              = p_ship_header_id
                AND   ias.from_parent_table_id        = icl.charge_line_id );
Line: 2642

    l_debug_info := 'Deleted '|| SQL%ROWCOUNT||' CHARGE LINES.';
Line: 2648

    DELETE
    FROM inl_associations ias
    WHERE  ias.from_parent_table_name = 'INL_CHARGE_LINES'
    AND ias.ship_header_id = p_ship_header_id;
Line: 2653

    l_debug_info := 'Deleted '|| SQL%ROWCOUNT||' ASSOCIATION LINES.';
Line: 2660

    SELECT *
    INTO l_ship_header_rec
    FROM inl_ship_headers sh
    WHERE sh.ship_header_id = p_ship_header_id;
Line: 2665

    SELECT *
    BULK COLLECT INTO l_ship_ln_group_tbl
    FROM inl_ship_line_groups lg
    WHERE lg.ship_header_id = p_ship_header_id
    ORDER BY ship_line_group_id; -- line in the same order
Line: 2677

    SELECT *
    BULK COLLECT INTO l_ship_ln_tbl
    FROM inl_adj_ship_lines_v sl
    WHERE sl.ship_header_id = p_ship_header_id
    ORDER BY ship_line_group_id, ship_line_num;
Line: 2751

                SELECT COUNT(*)
                INTO l_firm_simulation
                FROM inl_simulations s,
                     inl_ship_headers_all sh,
                     inl_ship_lines_all sl2, -- Simulated Shipment Line
                     inl_ship_lines_all sl1  -- ELC Shipment Line
                WHERE s.simulation_id = sh.simulation_id
                AND s.firmed_flag = 'Y'
                AND sh.ship_header_id = sl2.ship_header_id
                -- AND sl2.ship_line_src_type_code = DECODE(s.parent_table_name,'PO_HEADERS','PO','-1') -- Bug 14280113
                AND sl2.ship_line_src_type_code = DECODE(s.parent_table_name,'PO_HEADERS','PO',
                                                         DECODE(s.parent_table_name,'PO_RELEASES','PO', '-1'))-- Bug 14280113
                AND sl2.ship_line_source_id = sl1.ship_line_source_id
                AND sl2.ship_header_id <> sl1.ship_header_id
                AND sl1.ship_header_id = p_ship_header_id;
Line: 2885

              l_debug_info := 'Call Insert_ChargeLines(...)';
Line: 2896

              Insert_ChargeLines(
                p_ship_header_id           => p_ship_header_id,
                p_charge_line_type_id      => l_charge_ln_tbl(j).charge_line_type_id,
                p_landed_cost_flag         => l_charge_ln_tbl(j).landed_cost_flag,
                p_update_allowed           => l_charge_ln_tbl(j).update_allowed,
                p_source_code              => l_charge_ln_tbl(j).source_code,
                p_charge_amt               => l_charge_ln_tbl(j).charge_amt,
                p_currency_code            => l_charge_ln_tbl(j).currency_code,
                p_currency_conversion_type => l_charge_ln_tbl(j).currency_conversion_type,
                p_currency_conversion_date => l_charge_ln_tbl(j).currency_conversion_date,
                p_currency_conversion_rate => l_charge_ln_tbl(j).currency_conversion_rate,
                p_party_id                 => l_charge_ln_tbl(j).party_id,
                p_party_site_id            => l_charge_ln_tbl(j).party_site_id,
                p_trx_business_category    => l_charge_ln_tbl(j).trx_business_category,
                p_intended_use             => l_charge_ln_tbl(j).intended_use,
                p_product_fiscal_class     => l_charge_ln_tbl(j).product_fiscal_class,
                p_product_category         => l_charge_ln_tbl(j).product_category,
                p_product_type             => l_charge_ln_tbl(j).product_type,
                p_user_def_fiscal_class    => l_charge_ln_tbl(j).user_def_fiscal_class,
                p_tax_classification_code  => l_charge_ln_tbl(j).tax_classification_code,
                p_assessable_value         => l_charge_ln_tbl(j).assessable_value,
                p_ship_from_party_id       => l_charge_ln_tbl(j).ship_from_party_id,
                p_ship_from_party_site_id  => l_charge_ln_tbl(j).ship_from_party_site_id,
                p_ship_to_organization_id  => l_charge_ln_tbl(j).ship_to_organization_id,
                p_ship_to_location_id      => l_charge_ln_tbl(j).ship_to_location_id,
                p_bill_from_party_id       => l_charge_ln_tbl(j).bill_from_party_id,
                p_bill_from_party_site_id  => l_charge_ln_tbl(j).bill_from_party_site_id,
                p_bill_to_organization_id  => l_charge_ln_tbl(j).bill_to_organization_id,
                p_bill_to_location_id      => l_charge_ln_tbl(j).bill_to_location_id,
                p_poa_party_id             => l_charge_ln_tbl(j).poa_party_id,
                p_poa_party_site_id        => l_charge_ln_tbl(j).poa_party_site_id,
                p_poo_organization_id      => l_charge_ln_tbl(j).poo_organization_id,
                p_poo_location_id          => l_charge_ln_tbl(j).poo_location_id,
                p_to_parent_table_name     => l_charge_ln_tbl(j).to_parent_table_name,
                p_to_parent_table_id       => l_charge_ln_tbl(j).to_parent_table_id,
                x_return_status            => l_return_status);