C_JITCustomerOverviewBySts

DDL: C_JITCUSTOMEROVERVIEWBYSTS Type: view_entity CONSUMPTION

JIT Customer Overview By Status

C_JITCustomerOverviewBySts is a Consumption CDS View that provides data about "JIT Customer Overview By Status" in SAP S/4HANA. It reads from 1 data source (I_JITCustomer) and exposes 6 fields with key field CustomerUUID.

Data Sources (1)

SourceAliasJoin Type
I_JITCustomer I_JITCustomer from

Annotations (11)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #REQUIRED view
EndUserText.label JIT Customer Overview By Status view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
UI.headerInfo.typeName JIT Customer Overview By Status view
UI.headerInfo.typeNamePlural JIT Customer Overview By Status view
UI.headerInfo.title.value JITCustomerStatusText view
UI.headerInfo.title.label JIT Customer Status view
VDM.viewType #CONSUMPTION view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY CustomerUUID CustomerUUID NodeID
ShipToParty ShipToParty Ship-To Party (obsolete)
JITCustomerStatus JITCustomerStatus Customer Status
JITCustomerStatusText
NumberOfItems Number of JIT Customers
_Customer _Customer

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 C_JITCustomerOverviewBySts.
-- 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 C_JITCustomerOverviewBySts AS
SELECT
  CustomerUUID,
  ShipToParty,
  JITCustomerStatus,
  _JITCustomerStatus._Text[1: Language=$session.system_language].JITCustomerStatusText AS JITCustomerStatusText,
  cast(1 as abap.int4) AS NumberOfItems
FROM I_JITCustomer
;