I_TrsyPosCustomDiffntnTerm5Txt

DDL: I_TRSYPOSCUSTOMDIFFNTNTERM5TXT Type: view_entity BASIC Package: FTR_GENERAL_CORE

Custom Defined Diff Term 5 - Text

I_TrsyPosCustomDiffntnTerm5Txt is a Basic CDS View that provides data about "Custom Defined Diff Term 5 - Text" in SAP S/4HANA. It reads from 1 data source (difc_custterm_vt) and exposes 5 fields with key fields TrsyPosCustomDiffntnTerm5, Language. It has 2 associations to related views. It is exposed through 4 OData services (ASQL_F1754, ASQL_F1755, ASQL_F1867, ...). Part of development package FTR_GENERAL_CORE.

Data Sources (1)

SourceAliasJoin Type
difc_custterm_vt custterm_value_text_db from

Associations (2)

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

Annotations (15)

NameValueLevelField
AbapCatalog.entityBuffer.definitionAllowed false view
AbapCatalog.dataMaintenance #NOT_ALLOWED view
AccessControl.authorizationCheck #NOT_REQUIRED view
Analytics.dataExtraction.enabled true view
Analytics.internalName #LOCAL view
EndUserText.label Custom Defined Diff Term 5 - Text view
ObjectModel.dataCategory #TEXT view
Analytics.technicalName ITRSYPOSCDIFF5T view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
ObjectModel.representativeKey TrsyPosCustomDiffntnTerm5 view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #M view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #BASIC view

OData Services (4)

ServiceBindingVersionContractRelease
ASQL_F1754 ASQL_F1754 C2 NOT_RELEASED
ASQL_F1755 ASQL_F1755 C2 NOT_RELEASED
ASQL_F1867 ASQL_F1867 C2 NOT_RELEASED
ASQL_F3966 ASQL_F3966 C2 NOT_RELEASED

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY TrsyPosCustomDiffntnTerm5 difc_custterm_vt value Value from table
KEY Language difc_custterm_vt langu Primary lang.
TrsyPosCustomDiffntnTerm5Name
_TrsyPosCustomDiffntnTerm5 _TrsyPosCustomDiffntnTerm5
_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_TrsyPosCustomDiffntnTerm5Txt.
-- 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_TrsyPosCustomDiffntnTerm5Txt AS
SELECT
  custterm_value_text_db.value AS TrsyPosCustomDiffntnTerm5,
  custterm_value_text_db.langu AS Language,
  cast( custterm_value_text_db.text as tpm_cust_diff_term_5_name preserving type ) AS TrsyPosCustomDiffntnTerm5Name
FROM difc_custterm_vt AS custterm_value_text_db
LEFT OUTER JOIN I_TrsyPosCustomDiffntnTerm5 AS _TrsyPosCustomDiffntnTerm5 ON TrsyPosCustomDiffntnTerm5 = _TrsyPosCustomDiffntnTerm5.TrsyPosCustomDiffntnTerm5  -- association [0..1]
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;