I_SrvcMgmtObjectStatus

DDL: I_SRVCMGMTOBJECTSTATUS Type: view BASIC

CDS View for CRM Jest

I_SrvcMgmtObjectStatus is a Basic CDS View that provides data about "CDS View for CRM Jest" in SAP S/4HANA. It reads from 1 data source (crm_jest) and exposes 3 fields with key fields SrvcMgmtObjectUUID, SrvcMgmtObjectStatus.

Data Sources (1)

SourceAliasJoin Type
crm_jest crm_jest from

Annotations (12)

NameValueLevelField
EndUserText.label CDS View for CRM Jest view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
Metadata.ignorePropagatedAnnotations true view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.sqlViewName ISRVCMGMTOBJSTAT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY SrvcMgmtObjectUUID objnr Val. Obj. No.
KEY SrvcMgmtObjectStatus stat Status of Time-Dependent Document Linkage
SrvcMgmtObjectStatusIsInactive inact TRUE

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_SrvcMgmtObjectStatus.
-- 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_SrvcMgmtObjectStatus AS
SELECT
  objnr AS SrvcMgmtObjectUUID,
  stat AS SrvcMgmtObjectStatus,
  inact AS SrvcMgmtObjectStatusIsInactive
FROM crm_jest
;