I_CndnContrTypeText

DDL: I_CNDNCONTRTYPETEXT Type: view_entity BASIC Package: WCB_API_A2A_CONFIG_VDM

Condition Contract Type - Text

I_CndnContrTypeText (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Public Edition with built-in and side-by-side extension capabilities.

ConditionContractTypeText · Sales

I_CndnContrTypeText is a Basic CDS View that provides data about "Condition Contract Type - Text" in SAP S/4HANA. It reads from 1 data source (R_CndnContrTypeText) and exposes 5 fields with key fields CndnContrType, Language. It has 2 associations to related views. Part of development package WCB_API_A2A_CONFIG_VDM.

SAP API Hub

CategoryBasic
StateC1
Line of BusinessSales
Application ComponentLO-GT-CHB
CapabilitiesData Source for Data Extraction,Language-Dependent Text,Association Target for Defining CDS Entities,Data Source in SQL Select,Data Source for Defining CDS Entities,Data Source for Search
Extensible (Key User)No
Extensible (Developer)No
Release State (Key User)Released
Release State (Developer)Released
PackageSales for SAP S/4HANA Cloud Public Edition
Description <p>This CDS view provides the prerequisites for answering the following business question:</p> <ul> <li><p>What are the descriptions of condition contract types in different languages?</p></li> </ul>

Documentation

Data Sources (1)

SourceAliasJoin Type
R_CndnContrTypeText R_CndnContrTypeText from

Associations (2)

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

Annotations (15)

NameValueLevelField
EndUserText.label Condition Contract Type - Text view
AccessControl.authorizationCheck #MANDATORY view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey CndnContrType view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
Analytics.technicalName IWLFCOCOTYPETEXT view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
Search.searchable true view
Analytics.dataExtraction.enabled true view
Analytics.internalName #LOCAL view
Metadata.ignorePropagatedAnnotations true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY CndnContrType CndnContrType Condition Contract Type
KEY Language Language Report Text Language
CndnContrTypeDesc CndnContrTypeDesc Condition Contract Type Description
_CndnContrType _CndnContrType
_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_CndnContrTypeText.
-- 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_CndnContrTypeText AS
SELECT
  CndnContrType,
  Language,
  CndnContrTypeDesc
FROM R_CndnContrTypeText
LEFT OUTER JOIN I_CndnContrType AS _CndnContrType ON CndnContrType = _CndnContrType.CndnContrType  -- association [0..1]
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;