I_ServiceQuotationStatus

DDL: I_SERVICEQUOTATIONSTATUS Type: view BASIC

Service Quotation Status

I_ServiceQuotationStatus is a Basic CDS View that provides data about "Service Quotation Status" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 3 fields with key field ServiceQuotationStatus. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[1..*] I_ServiceQuotationStatusText _ServiceQuotationStatusText $projection.ServiceQuotationStatus = _ServiceQuotationStatusText.ServiceQuotationStatus

Annotations (18)

NameValueLevelField
EndUserText.label Service Quotation Status view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.sqlViewName ISERVQTANSTATUS view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey ServiceQuotationStatus view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.compositionRoot true view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.resultSet.sizeCategory #XS view
Metadata.ignorePropagatedAnnotations true view
Search.searchable true view
Analytics.internalName #LOCAL view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY ServiceQuotationStatus Lower Value
DomainValue domvalue_l Lower Value
_ServiceQuotationStatusText _ServiceQuotationStatusText

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 I_ServiceQuotationStatus.
-- 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 I_ServiceQuotationStatus AS
SELECT
  cast(domvalue_l as crms4_qtan_stat_lc) AS ServiceQuotationStatus,
  domvalue_l AS DomainValue
FROM dd07l
LEFT OUTER JOIN I_ServiceQuotationStatusText AS _ServiceQuotationStatusText ON ServiceQuotationStatus = _ServiceQuotationStatusText.ServiceQuotationStatus  -- association [1..*]
;