I_TrsyPosCustomDiffntnTerm1Txt

DDL: I_TRSYPOSCUSTOMDIFFNTNTERM1TXT Type: view_entity BASIC Package: FTR_GENERAL_CORE

Custom Defined Diff Term 1 - Text

I_TrsyPosCustomDiffntnTerm1Txt is a Basic CDS View that provides data about "Custom Defined Diff Term 1 - Text" in SAP S/4HANA. It reads from 1 data source (difc_custterm_vt) and exposes 5 fields with key fields TrsyPosCustomDiffntnTerm1, 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_TrsyPosCustomDiffntnTerm1 _TrsyPosCustomDiffntnTerm1 $projection.TrsyPosCustomDiffntnTerm1 = _TrsyPosCustomDiffntnTerm1.TrsyPosCustomDiffntnTerm1
[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 1 - Text view
ObjectModel.dataCategory #TEXT view
Analytics.technicalName ITRSYPOSCDIFF1T view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
ObjectModel.representativeKey TrsyPosCustomDiffntnTerm1 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 TrsyPosCustomDiffntnTerm1 difc_custterm_vt value Value from table
KEY Language difc_custterm_vt langu Primary lang.
TrsyPosCustomDiffntnTerm1Name
_TrsyPosCustomDiffntnTerm1 _TrsyPosCustomDiffntnTerm1
_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_TrsyPosCustomDiffntnTerm1Txt.
-- 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_TrsyPosCustomDiffntnTerm1Txt AS
SELECT
  custterm_value_text_db.value AS TrsyPosCustomDiffntnTerm1,
  custterm_value_text_db.langu AS Language,
  cast( custterm_value_text_db.text as tpm_cust_diff_term_1_name preserving type ) AS TrsyPosCustomDiffntnTerm1Name
FROM difc_custterm_vt AS custterm_value_text_db
LEFT OUTER JOIN I_TrsyPosCustomDiffntnTerm1 AS _TrsyPosCustomDiffntnTerm1 ON TrsyPosCustomDiffntnTerm1 = _TrsyPosCustomDiffntnTerm1.TrsyPosCustomDiffntnTerm1  -- association [0..1]
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;