C_CN_TaxInvcInptProcgSts

DDL: C_CN_TAXINVCINPTPROCGSTS SQL: CCNTXIIPTSTS Type: view CONSUMPTION

China Tax Invoice Incoming Processing Sts

C_CN_TaxInvcInptProcgSts is a Consumption CDS View that provides data about "China Tax Invoice Incoming Processing Sts" in SAP S/4HANA. It reads from 1 data source (I_CN_TaxInvcInptProcgSts) and exposes 5 fields with key field CN_TaxInvcInptProcgSts. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_CN_TaxInvcInptProcgSts I_CN_TaxInvcInptProcgSts from

Associations (1)

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

Annotations (12)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.sqlViewName CCNTXIIPTSTS view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #CONSUMPTION view
VDM.private false view
ObjectModel.representativeKey CN_TaxInvcInptProcgSts view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #META view
AccessControl.authorizationCheck #NOT_REQUIRED view
AccessControl.personalData.blocking #NOT_REQUIRED view
EndUserText.label China Tax Invoice Incoming Processing Sts view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY CN_TaxInvcInptProcgSts CN_TaxInvcInptProcgSts
Language Report Text Language
Language Report Text Language
DocumentStatusDesc Short text
_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 C_CN_TaxInvcInptProcgSts.
-- 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: CCNTXIIPTSTS

CREATE VIEW C_CN_TaxInvcInptProcgSts AS
SELECT
  CN_TaxInvcInptProcgSts,
  cast (Language as spras) AS Language,
  cast (DocumentStatusDesc as ficntaxinvc_status_text) AS DocumentStatusDesc
FROM I_CN_TaxInvcInptProcgSts
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;