I_CN_TaxInvoiceRiskLevel

DDL: I_CN_TAXINVOICERISKLEVEL Type: view_entity BASIC Package: GLO_FIN_TAX_INVC_MGMT_COMM_CN

China Tax Invoice Risk Level

I_CN_TaxInvoiceRiskLevel is a Basic CDS View that provides data about "China Tax Invoice Risk Level" in SAP S/4HANA. It reads from 1 data source (txi_rsk_lvl) and exposes 2 fields with key field CN_GoldenTaxSystemRiskLevel. It has 1 association to related views. Part of development package GLO_FIN_TAX_INVC_MGMT_COMM_CN.

Data Sources (1)

SourceAliasJoin Type
txi_rsk_lvl rsk from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_CN_TaxInvoiceRiskLevelText _Text $projection.CN_GoldenTaxSystemRiskLevel = _Text.CN_GoldenTaxSystemRiskLevel

Annotations (10)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
AccessControl.personalData.blocking #NOT_REQUIRED view
EndUserText.label China Tax Invoice Risk Level view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #BASIC view
ObjectModel.representativeKey CN_GoldenTaxSystemRiskLevel view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view
Search.searchable true view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY CN_GoldenTaxSystemRiskLevel txi_rsk_lvl gts_rsk_lvl
_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_TaxInvoiceRiskLevel.
-- 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_TaxInvoiceRiskLevel AS
SELECT
  rsk.gts_rsk_lvl AS CN_GoldenTaxSystemRiskLevel
FROM txi_rsk_lvl AS rsk
LEFT OUTER JOIN I_CN_TaxInvoiceRiskLevelText AS _Text ON CN_GoldenTaxSystemRiskLevel = _Text.CN_GoldenTaxSystemRiskLevel  -- association [0..*]
;