R_SrvcOrdTmplLongTextTP

DDL: R_SRVCORDTMPLLONGTEXTTP Type: view_entity TRANSACTIONAL

Service Order Template Long Text - TP

R_SrvcOrdTmplLongTextTP is a Transactional CDS View that provides data about "Service Order Template Long Text - TP" in SAP S/4HANA. It reads from 2 data sources (I_ServiceDocument, I_ServiceDocumentLongText) and exposes 18 fields with key fields ServiceOrderTemplate, TextObjectType, Language, SrvcDocLogTextIdentifier.

Data Sources (2)

SourceAliasJoin Type
I_ServiceDocument ServiceOrderTemplate inner
I_ServiceDocumentLongText ServiceText from

Annotations (8)

NameValueLevelField
EndUserText.label Service Order Template Long Text - TP view
VDM.viewType #TRANSACTIONAL view
VDM.lifecycle.contract.type #SAP_INTERNAL_API view
AccessControl.authorizationCheck #MANDATORY view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view

Fields (18)

KeyFieldSource TableSource FieldDescription
KEY ServiceOrderTemplate 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
ServiceDocumentLongTextUUID I_ServiceDocumentLongText ServiceDocumentLongTextUUID UUID
ServiceObjectType I_ServiceDocumentLongText ServiceObjectType Object Type
ServiceOrderTemplateUUID _ServiceOrderTemplateTP ServiceOrderTemplateUUID
SrvcDocLongTextMimeType I_ServiceDocumentLongText SrvcDocLongTextMimeType MIMETYPE
SrvcOrdTmplLongText 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
SrvcDocLongTxtCreationDateTime I_ServiceDocumentLongText SrvcDocLongTxtCreationDateTime Uploaded On
SrvcDocLongTextCreatedByUser I_ServiceDocumentLongText SrvcDocLongTextCreatedByUser Version Created By
SrvcDocLongTextChangedDateTime I_ServiceDocumentLongText SrvcDocLongTextChangedDateTime Timestamp
SrvcDocLongTextChangedByUser I_ServiceDocumentLongText SrvcDocLongTextChangedByUser User Name
_ServiceOrderTemplateTP _ServiceOrderTemplateTP

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_SrvcOrdTmplLongTextTP.
-- 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_SrvcOrdTmplLongTextTP AS
SELECT
  ServiceText.ServiceDocument AS ServiceOrderTemplate,
  ServiceText.TextObjectType AS TextObjectType,
  ServiceText.Language AS Language,
  ServiceText.SrvcDocLogTextIdentifier AS SrvcDocLogTextIdentifier,
  ServiceText.TextObjectCategory AS TextObjectCategory,
  ServiceText.ServiceDocumentLongTextUUID AS ServiceDocumentLongTextUUID,
  ServiceText.ServiceObjectType AS ServiceObjectType,
  _ServiceOrderTemplateTP.ServiceOrderTemplateUUID AS ServiceOrderTemplateUUID,
  ServiceText.SrvcDocLongTextMimeType AS SrvcDocLongTextMimeType,
  ServiceText.ServiceDocumentLongText AS SrvcOrdTmplLongText,
  ServiceText.ReferenceTextObjectCategory AS ReferenceTextObjectCategory,
  ServiceText.ReferenceTextObjectType AS ReferenceTextObjectType,
  ServiceText.ReferenceLongTextKey AS ReferenceLongTextKey,
  ServiceText.SrvcDocLongTxtCreationDateTime AS SrvcDocLongTxtCreationDateTime,
  ServiceText.SrvcDocLongTextCreatedByUser AS SrvcDocLongTextCreatedByUser,
  ServiceText.SrvcDocLongTextChangedDateTime AS SrvcDocLongTextChangedDateTime,
  ServiceText.SrvcDocLongTextChangedByUser AS SrvcDocLongTextChangedByUser
FROM I_ServiceDocumentLongText AS ServiceText
INNER JOIN I_ServiceDocument AS ServiceOrderTemplate ON /* join condition not captured in parsed metadata */
;