A_ServiceOrdUserStatus

DDL: A_SERVICEORDUSERSTATUS Type: view COMPOSITE

Service Order User Status

A_ServiceOrdUserStatus is a Composite CDS View that provides data about "Service Order User Status" in SAP S/4HANA. It reads from 3 data sources (I_ServiceDocument, I_SrvcMgmtObjectStatus, P_StatusObjectWithGUID) and exposes 3 fields with key fields ServiceOrder, SrvcOrdUserStatus. It has 1 association to related views.

Data Sources (3)

SourceAliasJoin Type
I_ServiceDocument ServiceOrder inner
I_SrvcMgmtObjectStatus ServiceOrderStatus from
P_StatusObjectWithGUID StatusObject inner

Associations (1)

CardinalityTargetAliasCondition
[1] A_ServiceOrder _ServiceOrder $projection.ServiceOrder = _ServiceOrder.ServiceOrder

Annotations (14)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label Service Order User Status view
VDM.viewType #COMPOSITE view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
AbapCatalog.sqlViewName ASRVORDUSRSTS view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
ObjectModel.createEnabled true view
ObjectModel.deleteEnabled true view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view
Metadata.ignorePropagatedAnnotations true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY ServiceOrder I_ServiceDocument ServiceDocument Transaction ID
KEY SrvcOrdUserStatus I_SrvcMgmtObjectStatus SrvcMgmtObjectStatus Status of Time-Dependent Document Linkage
_ServiceOrder _ServiceOrder

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_ServiceOrdUserStatus.
-- 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_ServiceOrdUserStatus AS
SELECT
  ServiceOrder.ServiceDocument AS ServiceOrder,
  ServiceOrderStatus.SrvcMgmtObjectStatus AS SrvcOrdUserStatus
FROM I_SrvcMgmtObjectStatus AS ServiceOrderStatus
INNER JOIN P_StatusObjectWithGUID AS StatusObject ON /* join condition not captured in parsed metadata */
INNER JOIN I_ServiceDocument AS ServiceOrder ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN A_ServiceOrder AS _ServiceOrder ON ServiceOrder = _ServiceOrder.ServiceOrder  -- association [1]
;