I_CN_TaxInvcDeductionType

DDL: I_CN_TAXINVCDEDUCTIONTYPE Type: view BASIC Package: GLO_FIN_TAX_INVC_MGMT_ACCT_CN

China Tax Invoice Deduction Type

I_CN_TaxInvcDeductionType is a Basic CDS View (Dimension) that provides data about "China Tax Invoice Deduction Type" in SAP S/4HANA. It reads from 1 data source (P_CN_TaxInvcDeductionType) and exposes 3 fields with key field CN_TaxInvcDeductionType. It has 1 association to related views. Part of development package GLO_FIN_TAX_INVC_MGMT_ACCT_CN.

SAP Help Documentation

CategoryTax
Data CategoryDimension
StatusChina Tax Invoice Deduction Type Activated
Purpose
This CDS view is designed to provide a structured representation of the China Tax Invoice Deduction Types. It serves as a master data view that can be used for analytical purposes, data extraction, and as a value help for other applications or views. The view includes associations to text descriptions for better understanding and usability.. This CDS view provides the data to answer the following business questions: What are the different types of tax invoice deductions available in China? Which tax invoice deduction types are currently active or enabled? How can I access detailed descriptions or text associated with each tax invoice deduction type? To help you decide which CDS view to use for your purposes, SAP has introduced the annotation ObjectModel.supportedCapabilities that indicates the most appropriate use cases for each CDS view. To find out what use cases are best supported by this CDS view, access the entry of the CDS view in the View Browser app and find the values for this annotation under the Annotation tab. For more information, see Supported Capabilities for CDS Views .

Structure
Important Fields Important fields in this view include the following: Field Name Description CN_TaxInvcDeductionType China Tax Invoice Deduction Type StatusIsActive China Tax Invoice Deduction Type Activated

View on SAP Help Portal →

Data Sources (1)

SourceAliasJoin Type
P_CN_TaxInvcDeductionType ded from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_CN_TaxInvcDeductionTypeT _Text $projection.CN_TaxInvcDeductionType = _Text.CN_TaxInvcDeductionType

Annotations (17)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.sqlViewName ICNTXIDEDU view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label China Tax Invoice Deduction Type view
ObjectModel.representativeKey CN_TaxInvcDeductionType view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
Search.searchable true view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.sapObjectNodeType.name CN_ValueAddedTaxDeductionType view
ObjectModel.dataCategory #VALUE_HELP view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY CN_TaxInvcDeductionType P_CN_TaxInvcDeductionType CN_TaxInvcDeductionType Deduction Type
StatusIsActive P_CN_TaxInvcDeductionType IsEnabled Transf Itm Activated
_Text _Text

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view I_CN_TaxInvcDeductionType.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.

CREATE VIEW I_CN_TaxInvcDeductionType AS
SELECT
  ded.CN_TaxInvcDeductionType AS CN_TaxInvcDeductionType,
  ded.IsEnabled AS StatusIsActive
FROM P_CN_TaxInvcDeductionType AS ded
LEFT OUTER JOIN I_CN_TaxInvcDeductionTypeT AS _Text ON CN_TaxInvcDeductionType = _Text.CN_TaxInvcDeductionType  -- association [0..*]
;