A_ServiceQuotationItemText

DDL: A_SERVICEQUOTATIONITEMTEXT Type: view COMPOSITE

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 1 data source (P_ServiceDocumentItemText) and exposes 6 fields with key fields ServiceQuotation, ServiceQuotationItem, Language, LongTextID. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
P_ServiceDocumentItemText P_ServiceDocumentItemText from

Associations (1)

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

Annotations (15)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Text of Service Quotation Item view
VDM.viewType #COMPOSITE view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
AbapCatalog.sqlViewName ASRVQTANITMTEXT view
AbapCatalog.compiler.compareFilter true 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
AbapCatalog.preserveKey true view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY ServiceQuotation ServiceQuotationItemText ServiceDocument Transaction ID
KEY ServiceQuotationItem ServiceQuotationItemText ServiceDocumentItem Service Document
KEY Language Language Report Text Language
KEY LongTextID LongTextID Text ID
LongText LongText Text Name
_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,
  Language,
  LongTextID,
  LongText
FROM P_ServiceDocumentItemText
LEFT OUTER JOIN A_ServiceQuotation AS _ServiceQuotation ON ServiceQuotation = _ServiceQuotation.ServiceQuotation  -- association [1]
;