DBA Data[Home] [Help]

APPS.ZX_TCM_COMPOUND_PKG SQL Statements

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

Line: 8

  INSERT ALL
  -- branch
  -- check for same regime, it could be two diff intos
  -- check if both are branches
  WHEN (same_branch='Y') THEN
  INTO zx_tax_relations_t
   (parent_tax_code_id ,
    parent_tax_code ,
    parent_regime_code ,
    parent_precedence ,
    child_tax_code_id  ,
    child_tax_code,
    child_regime_code ,
    child_precedence ,
    branch_flag           ,
    tax_group_id,
    tax_group_code,
    parent_taxable_basis,
    child_taxable_basis,
    content_owner_id,
    parent_tax,
	child_tax,
    org_id,
    created_by,
    creation_date,
    last_updated_by,
    last_update_date
	)
 VALUES (
   parent_tax_code_id,
   parent_tax_code,
   parent_regime_code,
   parent_precedence,
   child_tax_code_id,
   child_tax_code,
   child_regime_code,
   child_precedence,
   branch_flag,
   rel_tax_group_id,
   tax_group_code,
   parent_taxable_basis,
   child_taxable_basis,
   content_owner_id,
   parent_tax,
   child_tax,
   org_id,
   created_by,
   creation_date,
   last_updated_by,
   last_update_date
   )
  -- no branch but compunded
  -- group with no tax decimal precedence
  WHEN (same_branch='N' AND
  NOT EXISTS ( SELECT 'Y'
             FROM ar_tax_group_codes_all group_compound
			 WHERE group_compound.tax_group_id = rel_tax_group_id
			 AND trunc (group_compound.compounding_precedence) <> group_compound.compounding_precedence
            )
      ) THEN
  INTO zx_tax_relations_t
   (parent_tax_code_id ,
    parent_tax_code ,
    parent_regime_code ,
    parent_precedence ,
    child_tax_code_id  ,
    child_tax_code,
    child_regime_code ,
    child_precedence ,
    branch_flag           ,
    tax_group_id,
    tax_group_code,
    parent_taxable_basis,
	child_taxable_basis,
    content_owner_id,
    parent_tax,
	child_tax,
    org_id,
    created_by,
    creation_date,
    last_updated_by,
    last_update_date
	 )
   VALUES (
    parent_tax_code_id,
    parent_tax_code,
    parent_regime_code,
    parent_precedence,
    child_tax_code_id,
    child_tax_code,
    child_regime_code,
    child_precedence,
    branch_flag,
    rel_tax_group_id,
    tax_group_code,
    parent_taxable_basis,
    child_taxable_basis,
    content_owner_id,
    parent_tax,
    child_tax,
    org_id,
    created_by,
    creation_date,
    last_updated_by,
    last_update_date)
  SELECT a.tax_group_code_id group_code_id,
       a.tax_group_id rel_tax_group_id,
       grp.tax_code tax_group_code,
       a.tax_code_id parent_tax_code_id,
       b.tax_group_code_id child_group_code,
	   b.tax_code_id child_tax_code_id,
     CASE WHEN (b.compounding_precedence <> trunc(b.compounding_precedence) ) THEN 'Y'
          WHEN (a.compounding_precedence <> trunc(a.compounding_precedence) ) THEN 'Y'
     ELSE 'N'
	 END branch_flag,
	  CASE WHEN b.compounding_precedence <> trunc(b.compounding_precedence) THEN
	        CASE WHEN (trunc(a.compounding_precedence) <> trunc(b.compounding_precedence)) THEN
	             'N'
	            ELSE 'Y'
	        END

	        WHEN a.compounding_precedence <> trunc(a.compounding_precedence) THEN
	        CASE WHEN (trunc(a.compounding_precedence) <> trunc(b.compounding_precedence)) THEN
	             'N'
	             ELSE 'Y'
	        END
	       ELSE 'N'
	  END same_branch,
     a.compounding_precedence parent_precedence,
     b.compounding_precedence child_precedence,
     CASE WHEN (b.compounding_precedence > a.compounding_precedence) THEN
	        a.tax_code_id
     END parent_code_id,
     bb.tax_code child_tax_code,
     aa.tax_code parent_tax_code,
     --rega.tax_type parent_regime_code,
     rega.tax_regime_code parent_regime_code, --Bug 5691957

     --regb.tax_type child_regime_code,
     regb.tax_regime_code child_regime_code, --Bug 5691957

     aa.taxable_basis parent_taxable_basis,
     bb.taxable_basis child_taxable_basis,
     ptp.party_tax_profile_id content_owner_id,
     aa.tax_code parent_tax,
 	 bb.tax_code child_tax,
     decode(l_multi_org_flag,'N',l_org_id,a.org_id) org_id,
     fnd_global.user_id created_by,
     sysdate creation_date ,
     fnd_global.user_id last_updated_by,
     sysdate last_update_date
    FROM  ar_tax_group_codes_all a,
        ar_tax_group_codes_all b,
        ar_vat_tax_all_b aa,
        ar_vat_tax_all_b bb,
       zx_tax_priorities_t rega,
       zx_tax_priorities_t regb,
       zx_party_tax_profile ptp,
        ar_vat_tax_all_b grp
     WHERE decode(l_multi_org_flag,'N',l_org_id,a.org_id) = decode(l_multi_org_flag,'N',l_org_id,b.org_id)
       AND decode(l_multi_org_flag,'N',l_org_id,a.org_id) = decode(l_multi_org_flag,'N',l_org_id,aa.org_id)
       AND  decode(l_multi_org_flag,'N',l_org_id,b.org_id) = decode(l_multi_org_flag,'N',l_org_id,bb.org_id)
       AND a.tax_group_id=b.tax_group_id
       AND (b.compounding_precedence > a.compounding_precedence)
       AND ptp.party_type_code ='OU'
       AND ptp.party_id=decode(l_multi_org_flag,'N',l_org_id,aa.org_id)
-- lookup condition to get tax info
       AND aa.vat_tax_id = a.tax_code_id
       AND bb.vat_tax_id = b.tax_code_id
       AND aa.tax_type = rega.tax_type
       AND decode(l_multi_org_flag,'N',l_org_id,aa.org_id)  =  rega.org_id
       AND bb.tax_type = regb.tax_type
       AND decode(l_multi_org_flag,'N',l_org_id,bb.org_id)  =  regb.org_id
       AND rega.regime_or_tax_flag ='R'
       AND regb.regime_or_tax_flag ='R'
       AND decode(l_multi_org_flag,'N',l_org_id,grp.org_id)= decode(l_multi_org_flag,'N',l_org_id,b.org_id)
       AND grp.vat_tax_id = b.tax_group_id
       ORDER BY 3,4,6,7;
Line: 190

  DELETE FROM zx_tax_relations_t d
  WHERE d.ROWID IN
   ( SELECT min(a.ROWID)
     FROM zx_tax_relations_t a,
	      zx_tax_relations_t b
     WHERE a.org_id = b.org_id
	 AND a.parent_tax_code = b.child_tax_code
     AND b.parent_tax_code = a.child_tax_code
     GROUP BY a.parent_tax_code_id + a.child_tax_code_id, a.tax_group_id+b.tax_group_id);
Line: 202

      INSERT INTO zx_compound_errors_t(
      tax_group_id ,
      tax_group_code,
	  error_number,
      error_message)
      SELECT  tax_group_id, grp.tax_code group_code,
	           ROWNUM, 'Conflicting priority group '
      FROM  ar_vat_tax_all grp,
           (SELECT min(a.tax_group_id) tax_group_id
            FROM zx_tax_relations_t a
                , zx_tax_relations_t b
            WHERE a.org_id = b.org_id
		AND a.parent_tax_code = b.child_tax_code
            AND b.parent_tax_code = a.child_tax_code
            GROUP BY a.tax_group_id+b.tax_group_id )
      WHERE tax_group_id = grp.vat_tax_id;
Line: 219

    DELETE FROM zx_tax_relations_t d
    WHERE d.tax_group_id IN
    ( SELECT min(a.tax_group_id)
      FROM zx_tax_relations_t a, zx_tax_relations_t b
      WHERE a.org_id = b.org_id
	  AND a.parent_tax_code = b.child_tax_code
      AND b.parent_tax_code = a.child_tax_code
      GROUP BY a.tax_group_id+b.tax_group_id);
Line: 228

    DELETE FROM zx_tax_relations_t a1
    WHERE EXISTS (SELECT 1 FROM zx_tax_relations_t a2
              WHERE a1.CHILD_TAX_CODE_ID = a2.CHILD_TAX_CODE_ID
              AND a2.CHILD_PRECEDENCE = a1.CHILD_PRECEDENCE
              AND a2.PARENT_TAX_CODE_ID <> a1.PARENT_TAX_CODE_ID
              AND a2.PARENT_PRECEDENCE > a1.PARENT_PRECEDENCE
              AND a2.tax_group_id = a1.tax_group_id);
Line: 243

   SELECT ALL THE posible tax TYPES AND THE ar organizations that can be used TO DEFINE taxes
   these regimes will be used IN THE load tax procees TO provide THE regime FOR THE taxes.
   also initialize regime precedence.
 */

  INSERT ALL INTO
  zx_tax_priorities_t (
    regime_or_tax_flag ,
    tax_regime_code ,
    regime_precedence,
    org_id,
    tax_type,
    created_by,
    creation_date,
    last_updated_by,
    last_update_date )
  VALUES (
    tax_regime_flag,
    tax_regime_code ,
    precedence,
    org_id,
    tax_type,
    created_by,
    creation_date,
    last_updated_by,
    last_update_date )
    SELECT 'R' tax_regime_flag,
      --zx_migrate_util.get_country(temp_regime.org_id) || '_' || temp_regime.tax_type tax_regime_code,
     CASE WHEN temp_regime.tax_type <> 'SALES_TAX' then  --Bug 5691957
	  	      Zx_Migrate_Util.Get_Country(temp_regime.Org_Id)||'-Tax'
     ELSE

               Zx_Migrate_Util.GET_TAX_REGIME(
  		  temp_regime.tax_type,
  		  temp_regime.org_id)
      END   tax_regime_code ,
      ROWNUM precedence,
      decode(l_multi_org_flag,'N',l_org_id,temp_regime.org_id)  org_id,
      temp_regime.tax_type tax_type,
      fnd_global.user_id created_by,
      sysdate creation_date ,
      fnd_global.user_id last_updated_by,
      sysdate last_update_date
   FROM
    (SELECT UNIQUE DECODE(l_multi_org_flag,'N',l_org_id,org_id) org_id , tax_type
     FROM ar_vat_tax_all_b ) temp_regime;
Line: 300

  INSERT ALL INTO
  zx_tax_priorities_t (
    regime_or_tax_flag ,
    tax_id   ,
    tax_code  ,
    tax_precedence ,
    tax_regime_code ,
    regime_precedence,
    tax_type,
    group_flag,
    org_id,
    created_by,
    creation_date,
    last_updated_by,
    last_update_date)
  VALUES (
    tax_regime_flag,
    parent_tax  ,
    parent_tax_code ,
    precedence,
    tax_regime_code,
    NULL,
    tax_type,
	group_flag,
	org_id,
	fnd_global.user_id,
    sysdate ,
    fnd_global.user_id ,
    sysdate )
 -- select taxes (in a group) that have a precedence and give an initial of 1
 SELECT UNIQUE 'T' tax_regime_flag,
       reg.tax_regime_code tax_regime_code,
       a.tax_code_id parent_tax,
       aa.tax_code parent_tax_code,
       decode (a.compounding_precedence,NULL,0,1) precedence,
       aa.tax_type tax_type,
       'Y' group_flag,
       decode(l_multi_org_flag,'N',l_org_id,aa.org_id) org_id
    FROM  ar_tax_group_codes_all a,
          ar_vat_tax_all_b aa,
         zx_tax_priorities_t reg
       WHERE  aa.vat_tax_id = a.tax_code_id
       AND aa.tax_type = reg.tax_type
       AND decode(l_multi_org_flag,'N',l_org_id,aa.org_id)  =  reg.org_id
       AND decode(l_multi_org_flag,'N',l_org_id,aa.org_id)  =  decode(l_multi_org_flag,'N',l_org_id,a.org_id)
       AND NOT EXISTS (
       SELECT 'Y', tax_code_id
       FROM ar_tax_group_codes_all dup_tax
       WHERE dup_tax.tax_code_id = a.tax_code_id
       AND  dup_tax.compounding_precedence IS NULL)
       UNION ALL
-- select taxes with no precedence and give and initial of zero
-- those are taxes with no relations to other taxes
-- those should be the first taxes selected.
 SELECT UNIQUE 'T' tax_regime_flag,
       reg.tax_regime_code tax_regime_code,
       a.tax_code_id parent_tax,
 	   aa.tax_code parent_tax_code,
 	   0 precedence,
       aa.tax_type tax_type,
       'N' group_flag,
       decode(l_multi_org_flag,'N',l_org_id,aa.org_id) org_id
  FROM  ar_tax_group_codes_all a,
          ar_vat_tax_all_b aa,
         zx_tax_priorities_t reg
       WHERE aa.vat_tax_id = a.tax_code_id
       AND  a.compounding_precedence IS NULL
       AND aa.tax_type = reg.tax_type
       AND decode(l_multi_org_flag,'N',l_org_id,aa.org_id)  =  reg.org_id
	   AND decode(l_multi_org_flag,'N',l_org_id,aa.org_id)  =  decode(l_multi_org_flag,'N',l_org_id,a.org_id);
Line: 412

    SELECT org_id, tax_regime_code
    FROM zx_tax_priorities_t
    WHERE regime_or_tax_flag ='T'
    FOR UPDATE OF tax_precedence
    ORDER BY tax_regime_code,org_id,tax_precedence; --Bug 4524324
Line: 419

    SELECT org_id, tax_precedence, tax_id, ROWID
    FROM zx_tax_priorities_t
    WHERE regime_or_tax_flag ='T'
    ORDER BY tax_regime_code,tax_precedence;
Line: 426

    SELECT org_id, parent_regime_code, parent_precedence, parent_tax_code_id,
	       child_regime_code, child_precedence
    FROM zx_tax_relations_t
    WHERE child_tax_code_id = v_child_tax
	AND   org_id = v_child_org;
Line: 434

    SELECT tax_precedence, ROWID
    FROM zx_tax_priorities_t
    WHERE tax_id = v_parent_tax
    AND   org_id = v_parent_org;
Line: 442

    SELECT tax_precedence, ROWID
    FROM zx_tax_priorities_t
    WHERE regime_or_tax_flag ='R'
    AND tax_regime_code = v_parent_regime;
Line: 448

    SELECT tax_precedence, ROWID
    FROM zx_tax_priorities_t
    WHERE regime_or_tax_flag ='R'
    AND tax_regime_code = v_child_regime;
Line: 471

      UPDATE zx_tax_priorities_t
      SET tax_precedence = precedence_count
      WHERE CURRENT OF c_set_priorities;
Line: 508

           UPDATE zx_tax_priorities_t
           SET tax_precedence = v_parent_precedence
           WHERE ROWID = v_parent_tax_rowid;
Line: 512

           UPDATE zx_tax_priorities_t
           SET tax_precedence = v_child_precedence
           WHERE ROWID = v_child_tax_rowid;
Line: 536

           UPDATE zx_tax_priorities_t
           SET tax_precedence = v_parent_reg_precedence
           WHERE ROWID = v_parent_reg_rowid;
Line: 540

           UPDATE zx_tax_priorities_t
           SET tax_precedence = v_child_reg_precedence
           WHERE ROWID = v_child_reg_rowid;
Line: 568

    DELETE zx_tax_relations_t;
Line: 569

    DELETE zx_tax_priorities_t;
Line: 570

    DELETE zx_compound_errors_t;
Line: 585

   SELECT NVL(MULTI_ORG_FLAG,'N')  INTO L_MULTI_ORG_FLAG FROM
    FND_PRODUCT_GROUPS;