I_CAContractType

DDL: I_CACONTRACTTYPE Type: view_entity COMPOSITE

Contract Type

I_CAContractType is a Composite CDS View that provides data about "Contract Type" in SAP S/4HANA. It reads from 1 data source (P_CASubApplicationContractType) and exposes 5 fields with key field CAContractType. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
P_CASubApplicationContractType P_CASubApplicationContractType from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_CAContractTypeText _Text $projection.CAContractType = _Text.CAContractType

Annotations (10)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Contract Type view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.modelingPattern #NONE view
ObjectModel.representativeKey CAContractType view
ObjectModel.sapObjectNodeType.name ContrAcctgSubapplication view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
VDM.viewType #COMPOSITE view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY CAContractType CAContractType
CASubApplication CASubApplication Subapplication
_Text _Text
_SubapplicationText _SubapplicationText
_ApplicationArea _ApplicationArea

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_CAContractType.
-- 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_CAContractType AS
SELECT
  CAContractType,
  CASubApplication
FROM P_CASubApplicationContractType
LEFT OUTER JOIN I_CAContractTypeText AS _Text ON CAContractType = _Text.CAContractType  -- association [0..*]
;