DBA Data[Home] [Help]

APPS.ZX_GLOBAL_STRUCTURES_PKG dependencies on HZ_CUST_ACCOUNTS

Line 836: -- This structure caches the tax information assoicated with hz_cust_accounts table

832: TAX_CLASSIFICATION hz_cust_site_uses_all.Tax_Classification%TYPE);
833:
834: TYPE cust_site_use_info_tbl_type is TABLE of cust_site_use_info_rec_type index by BINARY_INTEGER;
835:
836: -- This structure caches the tax information assoicated with hz_cust_accounts table
837: -- it is referenced in zxccontrolb.pls/zxdiroundtaxpkgb.pls. The information in this structure is valid
838: -- throughout the session
839:
840: TYPE cust_acct_info_rec_type is RECORD

Line 841: (CUST_ACCOUNT_ID hz_cust_accounts.cust_account_id%TYPE,

837: -- it is referenced in zxccontrolb.pls/zxdiroundtaxpkgb.pls. The information in this structure is valid
838: -- throughout the session
839:
840: TYPE cust_acct_info_rec_type is RECORD
841: (CUST_ACCOUNT_ID hz_cust_accounts.cust_account_id%TYPE,
842: TAX_CODE hz_cust_accounts.tax_code%TYPE,
843: TAX_ROUNDING_RULE hz_cust_accounts.tax_rounding_rule%TYPE,
844: TAX_HEADER_LEVEL_FLAG hz_cust_accounts.tax_header_level_flag%TYPE);
845:

Line 842: TAX_CODE hz_cust_accounts.tax_code%TYPE,

838: -- throughout the session
839:
840: TYPE cust_acct_info_rec_type is RECORD
841: (CUST_ACCOUNT_ID hz_cust_accounts.cust_account_id%TYPE,
842: TAX_CODE hz_cust_accounts.tax_code%TYPE,
843: TAX_ROUNDING_RULE hz_cust_accounts.tax_rounding_rule%TYPE,
844: TAX_HEADER_LEVEL_FLAG hz_cust_accounts.tax_header_level_flag%TYPE);
845:
846: TYPE cust_acct_info_tbl_type is TABLE of cust_acct_info_rec_type index by BINARY_INTEGER;

Line 843: TAX_ROUNDING_RULE hz_cust_accounts.tax_rounding_rule%TYPE,

839:
840: TYPE cust_acct_info_rec_type is RECORD
841: (CUST_ACCOUNT_ID hz_cust_accounts.cust_account_id%TYPE,
842: TAX_CODE hz_cust_accounts.tax_code%TYPE,
843: TAX_ROUNDING_RULE hz_cust_accounts.tax_rounding_rule%TYPE,
844: TAX_HEADER_LEVEL_FLAG hz_cust_accounts.tax_header_level_flag%TYPE);
845:
846: TYPE cust_acct_info_tbl_type is TABLE of cust_acct_info_rec_type index by BINARY_INTEGER;
847:

Line 844: TAX_HEADER_LEVEL_FLAG hz_cust_accounts.tax_header_level_flag%TYPE);

840: TYPE cust_acct_info_rec_type is RECORD
841: (CUST_ACCOUNT_ID hz_cust_accounts.cust_account_id%TYPE,
842: TAX_CODE hz_cust_accounts.tax_code%TYPE,
843: TAX_ROUNDING_RULE hz_cust_accounts.tax_rounding_rule%TYPE,
844: TAX_HEADER_LEVEL_FLAG hz_cust_accounts.tax_header_level_flag%TYPE);
845:
846: TYPE cust_acct_info_tbl_type is TABLE of cust_acct_info_rec_type index by BINARY_INTEGER;
847:
848: -- This structure caches the tax information assoicated with ap_supplier_sites table