CRMS4_SERV_UUID_CHAR

DDL: CRMS4_SERV_UUID_CHAR Type: view_entity

Srv Trans Item and Header GUID Character

CRMS4_SERV_UUID_CHAR is a CDS View that provides data about "Srv Trans Item and Header GUID Character" in SAP S/4HANA. It reads from 1 data source (crms4d_serv_i) and exposes 3 fields with key fields objtype_h, object_id. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
crms4d_serv_i _servi from

Associations (1)

CardinalityTargetAliasCondition
[0..1] crms4d_serv_h _servh _servi.header_guid = _servh.header_guid

Annotations (5)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Srv Trans Item and Header GUID Character view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY objtype_h objtype_h Trans. Cat.
KEY object_id object_id Transaction ID
header_guid header_guid Unique Identifier

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 CRMS4_SERV_UUID_CHAR.
-- 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 CRMS4_SERV_UUID_CHAR AS
SELECT
  objtype_h,
  object_id,
  header_guid
FROM crms4d_serv_i AS _servi
LEFT OUTER JOIN crms4d_serv_h AS _servh ON _servi.header_guid = _servh.header_guid  -- association [0..1]
;