I_RASndgCompDocumentItemType

DDL: I_RASNDGCOMPDOCUMENTITEMTYPE Type: view_entity BASIC

Revenue Accounting Source Document Type

I_RASndgCompDocumentItemType is a Basic CDS View (Dimension) that provides data about "Revenue Accounting Source Document Type" in SAP S/4HANA. It reads from 1 data source (farr_c_srcty) and exposes 2 fields with key field RASndgCompDocumentItemType. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
farr_c_srcty farr_c_srcty from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_RASndgCompDocItemTypeText _Text $projection.RASndgCompDocumentItemType = _Text.RASndgCompDocumentItemType

Annotations (11)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
Analytics.dataCategory #DIMENSION view
Analytics.internalName #LOCAL view
Analytics.technicalName IRASRCDOCTYPE view
EndUserText.label Revenue Accounting Source Document Type view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.representativeKey RASndgCompDocumentItemType view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #META view
VDM.viewType #BASIC view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY RASndgCompDocumentItemType srcdoc_type SrcItemType
_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_RASndgCompDocumentItemType.
-- 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_RASndgCompDocumentItemType AS
SELECT
  srcdoc_type AS RASndgCompDocumentItemType
FROM farr_c_srcty
LEFT OUTER JOIN I_RASndgCompDocItemTypeText AS _Text ON RASndgCompDocumentItemType = _Text.RASndgCompDocumentItemType  -- association [0..*]
;