R_SrvcTransMstrAgrmtLongTextTP

DDL: R_SRVCTRANSMSTRAGRMTLONGTEXTTP Type: view_entity TRANSACTIONAL

Master Agreement Long Text

R_SrvcTransMstrAgrmtLongTextTP is a Transactional CDS View that provides data about "Master Agreement Long Text" in SAP S/4HANA. It reads from 2 data sources (I_SrvcTransMasterAgreement, I_ServiceDocumentLongText) and exposes 21 fields with key fields SrvcTransMstrAgrmtID, TextObjectType, Language, SrvcDocLogTextIdentifier.

Data Sources (2)

SourceAliasJoin Type
I_SrvcTransMasterAgreement MasterAgrmt inner
I_ServiceDocumentLongText ServiceText from

Annotations (9)

NameValueLevelField
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label Master Agreement Long Text view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.dataCategory #TEXT view
VDM.viewType #TRANSACTIONAL view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view

Fields (21)

KeyFieldSource TableSource FieldDescription
KEY SrvcTransMstrAgrmtID I_ServiceDocumentLongText ServiceDocument Transaction ID
KEY TextObjectType I_ServiceDocumentLongText TextObjectType Text ID
KEY Language I_ServiceDocumentLongText Language Report Text Language
KEY SrvcDocLogTextIdentifier I_ServiceDocumentLongText SrvcDocLogTextIdentifier Time Stamp
TextObjectCategory I_ServiceDocumentLongText TextObjectCategory Text object
SrvcTransMstrAgrmtUUID _MasterAgrmt SrvcTransMstrAgrmtUUID Unique Identifier
ServiceDocumentLongTextUUID I_ServiceDocumentLongText ServiceDocumentLongTextUUID UUID
ServiceDocumentItem I_ServiceDocumentLongText ServiceDocumentItem Service Document
SrvcDocLongTextMimeType I_ServiceDocumentLongText SrvcDocLongTextMimeType MIMETYPE
SrvcTransMstrAgrmtLongText I_ServiceDocumentLongText ServiceDocumentLongText Text Content
ReferenceTextObjectCategory I_ServiceDocumentLongText ReferenceTextObjectCategory Reference text object
ReferenceTextObjectType I_ServiceDocumentLongText ReferenceTextObjectType Reference text ID
ReferenceLongTextKey I_ServiceDocumentLongText ReferenceLongTextKey Reference text name
ReferenceServiceObjectType I_ServiceDocumentLongText ReferenceServiceObjectType Trans. Cat.
ReferenceServiceDocument I_ServiceDocumentLongText ReferenceServiceDocument Transaction ID
ReferenceServiceDocumentItem I_ServiceDocumentLongText ReferenceServiceDocumentItem Item Number in Doc.
SrvcDocLongTxtCreationDateTime I_ServiceDocumentLongText SrvcDocLongTxtCreationDateTime Uploaded On
SrvcDocLongTextCreatedByUser I_ServiceDocumentLongText SrvcDocLongTextCreatedByUser Version Created By
SrvcDocLongTextChangedDateTime I_ServiceDocumentLongText SrvcDocLongTextChangedDateTime Timestamp
SrvcDocLongTextChangedByUser I_ServiceDocumentLongText SrvcDocLongTextChangedByUser User Name
_MasterAgrmt _MasterAgrmt

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 R_SrvcTransMstrAgrmtLongTextTP.
-- 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 R_SrvcTransMstrAgrmtLongTextTP AS
SELECT
  ServiceText.ServiceDocument AS SrvcTransMstrAgrmtID,
  ServiceText.TextObjectType AS TextObjectType,
  ServiceText.Language AS Language,
  ServiceText.SrvcDocLogTextIdentifier AS SrvcDocLogTextIdentifier,
  ServiceText.TextObjectCategory AS TextObjectCategory,
  _MasterAgrmt.SrvcTransMstrAgrmtUUID AS SrvcTransMstrAgrmtUUID,
  ServiceText.ServiceDocumentLongTextUUID AS ServiceDocumentLongTextUUID,
  ServiceText.ServiceDocumentItem AS ServiceDocumentItem,
  ServiceText.SrvcDocLongTextMimeType AS SrvcDocLongTextMimeType,
  ServiceText.ServiceDocumentLongText AS SrvcTransMstrAgrmtLongText,
  ServiceText.ReferenceTextObjectCategory AS ReferenceTextObjectCategory,
  ServiceText.ReferenceTextObjectType AS ReferenceTextObjectType,
  ServiceText.ReferenceLongTextKey AS ReferenceLongTextKey,
  ServiceText.ReferenceServiceObjectType AS ReferenceServiceObjectType,
  ServiceText.ReferenceServiceDocument AS ReferenceServiceDocument,
  ServiceText.ReferenceServiceDocumentItem AS ReferenceServiceDocumentItem,
  ServiceText.SrvcDocLongTxtCreationDateTime AS SrvcDocLongTxtCreationDateTime,
  ServiceText.SrvcDocLongTextCreatedByUser AS SrvcDocLongTextCreatedByUser,
  ServiceText.SrvcDocLongTextChangedDateTime AS SrvcDocLongTextChangedDateTime,
  ServiceText.SrvcDocLongTextChangedByUser AS SrvcDocLongTextChangedByUser
FROM I_ServiceDocumentLongText AS ServiceText
INNER JOIN I_SrvcTransMasterAgreement AS MasterAgrmt ON /* join condition not captured in parsed metadata */
;