A_ServiceQuotationItemText

DDL: A_SERVICEQUOTATIONITEMTEXT Type: view_entity COMPOSITE Package: ODATA_CRMS4_SERVICEQUOTATION

Text of Service Quotation Item

A_ServiceQuotationItemText is a Composite CDS View that provides data about "Text of Service Quotation Item" in SAP S/4HANA. It reads from 2 data sources (I_ServiceDocumentItem, I_ServiceDocumentLongText) and exposes 6 fields with key fields ServiceQuotation, ServiceQuotationItem, Language, LongTextID. It has 1 association to related views. Part of development package ODATA_CRMS4_SERVICEQUOTATION.

Data Sources (2)

SourceAliasJoin Type
I_ServiceDocumentItem ServiceQuotationItem inner
I_ServiceDocumentLongText ServiceQuotationItemText from

Associations (1)

CardinalityTargetAliasCondition
[1] A_ServiceQuotation _ServiceQuotation $projection.ServiceQuotation = _ServiceQuotation.ServiceQuotation

Annotations (11)

NameValueLevelField
EndUserText.label Text of Service Quotation Item view
VDM.viewType #COMPOSITE view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
AccessControl.authorizationCheck #CHECK view
ObjectModel.createEnabled true view
ObjectModel.updateEnabled true view
ObjectModel.deleteEnabled true view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
Metadata.ignorePropagatedAnnotations true view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY ServiceQuotation I_ServiceDocumentLongText ServiceDocument Transaction ID
KEY ServiceQuotationItem I_ServiceDocumentLongText ServiceDocumentItem Service Document
KEY Language I_ServiceDocumentLongText Language Report Text Language
KEY LongTextID I_ServiceDocumentLongText TextObjectType Text ID
LongText I_ServiceDocumentLongText ServiceDocumentLongText Text Content
_ServiceQuotation _ServiceQuotation

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 A_ServiceQuotationItemText.
-- 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 A_ServiceQuotationItemText AS
SELECT
  ServiceQuotationItemText.ServiceDocument AS ServiceQuotation,
  ServiceQuotationItemText.ServiceDocumentItem AS ServiceQuotationItem,
  ServiceQuotationItemText.Language AS Language,
  ServiceQuotationItemText.TextObjectType AS LongTextID,
  ServiceQuotationItemText.ServiceDocumentLongText AS LongText
FROM I_ServiceDocumentLongText AS ServiceQuotationItemText
INNER JOIN I_ServiceDocumentItem AS ServiceQuotationItem ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN A_ServiceQuotation AS _ServiceQuotation ON ServiceQuotation = _ServiceQuotation.ServiceQuotation  -- association [1]
;