I_CN_TaxInvoiceDeclnType

DDL: I_CN_TAXINVOICEDECLNTYPE SQL: ICNTXIDECLNTYP Type: view BASIC Package: GLO_FIN_TAX_INVC_MGMT_COMM_CN

China Tax Invoice Declaration Type

I_CN_TaxInvoiceDeclnType is a Basic CDS View that provides data about "China Tax Invoice Declaration Type" in SAP S/4HANA. It reads from 1 data source (dd07v) and exposes 4 fields with key field TaxInvoiceDeclarationTypeCode. It has 1 association to related views. Part of development package GLO_FIN_TAX_INVC_MGMT_COMM_CN.

Data Sources (1)

SourceAliasJoin Type
dd07v dd07v from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_Language _Language $projection.Language = _Language.Language

Annotations (12)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.sqlViewName ICNTXIDECLNTYP view
AbapCatalog.compiler.compareFilter true view
ObjectModel.representativeKey TaxInvoiceDeclarationTypeCode view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.serviceQuality #A view
VDM.viewType #BASIC view
VDM.private false view
AccessControl.authorizationCheck #NOT_REQUIRED view
AccessControl.personalData.blocking #NOT_REQUIRED view
EndUserText.label China Tax Invoice Declaration Type view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY TaxInvoiceDeclarationTypeCode
Language ddlanguage Lang.
TaxInvoiceDeclnTypeDescription
_Language _Language

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_TaxInvoiceDeclnType.
-- 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.
-- SQL view name: ICNTXIDECLNTYP

CREATE VIEW I_CN_TaxInvoiceDeclnType AS
SELECT
  cast(dd07v.domvalue_l as ficntaxinvc_decln_type) AS TaxInvoiceDeclarationTypeCode,
  ddlanguage AS Language,
  cast(dd07v.ddtext as ficntaxinvc_decln_desc) AS TaxInvoiceDeclnTypeDescription
FROM dd07v
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [1..1]
;