I_ThirdPartyOrderProcessingT

DDL: I_THIRDPARTYORDERPROCESSINGT SQL: ISPTHRDPRTORDPT Type: view BASIC

Third Party Order Processing Text

I_ThirdPartyOrderProcessingT is a Basic CDS View that provides data about "Third Party Order Processing Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 6 fields with key fields Language, ThirdPartyOrderProcessing. It has 2 associations to related views.

Data Sources (1)

SourceAliasJoin Type
dd07t dd07t from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_ThirdPartyOrderProcessing _ThirdPartyOrderProcessing $projection.ThirdPartyOrderProcessing = _ThirdPartyOrderProcessing.ThirdPartyOrderProcessing
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (14)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.dataCategory #TEXT view
ObjectModel.representativeKey ThirdPartyOrderProcessing view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
EndUserText.label Third Party Order Processing Text view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.sqlViewName ISPTHRDPRTORDPT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
Metadata.ignorePropagatedAnnotations true view
Search.searchable true view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY Language ddlanguage Lang.
KEY ThirdPartyOrderProcessing
DomainValue dd07t domvalue_l Lower Value
ThirdPartyOrderProcessingName ddtext Short text
_ThirdPartyOrderProcessing _ThirdPartyOrderProcessing
_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_ThirdPartyOrderProcessingT.
-- 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.
-- SQL view name: ISPTHRDPRTORDPT

CREATE VIEW I_ThirdPartyOrderProcessingT AS
SELECT
  ddlanguage AS Language,
  cast( dd07t.domvalue_l as /sapapo/tpop ) AS ThirdPartyOrderProcessing,
  dd07t.domvalue_l AS DomainValue,
  ddtext AS ThirdPartyOrderProcessingName
FROM dd07t
LEFT OUTER JOIN I_ThirdPartyOrderProcessing AS _ThirdPartyOrderProcessing ON ThirdPartyOrderProcessing = _ThirdPartyOrderProcessing.ThirdPartyOrderProcessing  -- association [0..1]
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;