I_SlsOrdReqCmpltnsSituation

DDL: I_SLSORDREQCMPLTNSSITUATION SQL: ISORCMPLTNSTI Type: view COMPOSITE

Sales Order Req Completeness Situation

I_SlsOrdReqCmpltnsSituation is a Composite CDS View that provides data about "Sales Order Req Completeness Situation" in SAP S/4HANA. It reads from 1 data source (I_SalesOrderRequest) and exposes 4 fields with key field SalesOrderRequest.

Data Sources (1)

SourceAliasJoin Type
I_SalesOrderRequest SalesOrderRequest from

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName ISORCMPLTNSTI view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #NOT_REQUIRED view
AbapCatalog.compiler.compareFilter true view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.sizeCategory #XL view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #COMPOSITE view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
EndUserText.label Sales Order Req Completeness Situation view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY SalesOrderRequest Sales Order Request
CompanyCode CompanyCode Receiver Company Code
CreatedByUser CreatedByUser User Name
CreationDateTime CreationDateTime Timestamp

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_SlsOrdReqCmpltnsSituation.
-- 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.
-- SQL view name: ISORCMPLTNSTI

CREATE VIEW I_SlsOrdReqCmpltnsSituation AS
SELECT
  LTRIM( SalesOrderRequest, '0') AS SalesOrderRequest,
  CompanyCode,
  CreatedByUser,
  CreationDateTime
FROM I_SalesOrderRequest AS SalesOrderRequest
;