I_SupplierExtStatus

DDL: I_SUPPLIEREXTSTATUS Type: view_entity BASIC

JIT External Status

I_SupplierExtStatus is a Basic CDS View (Dimension) that provides data about "JIT External Status" in SAP S/4HANA. It reads from 1 data source (njit_c_exstat) and exposes 2 fields with key field JITExtStatusAtSupplier. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
njit_c_exstat njit_c_exstat from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_JITCustomerExtStatusDesc _JITExternalStatusText $projection.JITExtStatusAtSupplier = _JITExternalStatusText.JITExtStatusAtSupplier

Annotations (12)

NameValueLevelField
AbapCatalog.entityBuffer.definitionAllowed true view
AccessControl.authorizationCheck #NOT_REQUIRED view
Analytics.dataCategory #DIMENSION view
Analytics.technicalName ISUPEXTSTAT_VH view
EndUserText.label JIT External Status view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
ObjectModel.representativeKey JITExtStatusAtSupplier view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.serviceQuality #A view
VDM.viewType #BASIC view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY JITExtStatusAtSupplier ext_stat External Status
_JITExternalStatusText _JITExternalStatusText

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_SupplierExtStatus.
-- 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_SupplierExtStatus AS
SELECT
  ext_stat AS JITExtStatusAtSupplier
FROM njit_c_exstat
LEFT OUTER JOIN I_JITCustomerExtStatusDesc AS _JITExternalStatusText ON JITExtStatusAtSupplier = _JITExternalStatusText.JITExtStatusAtSupplier  -- association [0..*]
;