I_SrvcMgmtDocRejectionStatus

DDL: I_SRVCMGMTDOCREJECTIONSTATUS Type: view BASIC

Rejection Status of Service Transaction

I_SrvcMgmtDocRejectionStatus is a Basic CDS View that provides data about "Rejection Status of Service Transaction" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 3 fields with key field SrvcDocRejectionStatus.

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName ISRVCDOCRJCNSTAT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
VDM.viewType #BASIC view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey SrvcDocRejectionStatus view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #X view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.resultSet.sizeCategory #XS view
ObjectModel.dataCategory #VALUE_HELP view
Search.searchable true view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label Rejection Status of Service Transaction view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY SrvcDocRejectionStatus Lower Value
DomainValue domvalue_l Lower Value
_SrvcMgmtDocRjcnStatusText _SrvcMgmtDocRjcnStatusText

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_SrvcMgmtDocRejectionStatus.
-- 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_SrvcMgmtDocRejectionStatus AS
SELECT
  cast( domvalue_l as abap.char( 1 )) AS SrvcDocRejectionStatus,
  domvalue_l AS DomainValue
FROM dd07l
;