I_SuplrActyTskCommText

DDL: I_SUPLRACTYTSKCOMMTEXT SQL: ISUPLRACTYTSKCN Type: view BASIC

Supplier Activity Task Text Type Collaboration Note

I_SuplrActyTskCommText is a Basic CDS View that provides data about "Supplier Activity Task Text Type Collaboration Note" in SAP S/4HANA. It reads from 1 data source (P_SLCTextCollection) and exposes 5 fields with key field TextCollectionUUID. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
P_SLCTextCollection P_SLCTextCollection from

Associations (1)

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

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName ISUPLRACTYTSKCN view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
AccessControl.authorizationCheck #CHECK view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #M view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Supplier Activity Task Text Type Collaboration Note view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY TextCollectionUUID TextCollectionUUID UUID
SuplrActyTaskUUID UUID
Language Language Report Text Language
SuplrActyTskCommunicationText TextCollectionText Communication
_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_SuplrActyTskCommText.
-- 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: ISUPLRACTYTSKCN

CREATE VIEW I_SuplrActyTskCommText AS
SELECT
  TextCollectionUUID,
  cast(HostUUID as /srmsmc/task_uuid preserving type) AS SuplrActyTaskUUID,
  Language,
  TextCollectionText AS SuplrActyTskCommunicationText
FROM P_SLCTextCollection
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;