I_JITCustExtStatusData

DDL: I_JITCUSTEXTSTATUSDATA SQL: IJITCUSTEXSTDATA Type: view COMPOSITE

Composite View for Customer ExtStatus

I_JITCustExtStatusData is a Composite CDS View that provides data about "Composite View for Customer ExtStatus" in SAP S/4HANA. It reads from 1 data source (I_JITCustomerExternalStatus) and exposes 11 fields with key field ExternalStatusMappingUUID. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_JITCustomerExternalStatus I_JITCustomerExternalStatus from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_JITCustData _JITCustData $projection.CustomerUUID = _JITCustData.CustomerUUID

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IJITCUSTEXSTDATA view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #REQUIRED view
EndUserText.label Composite View for Customer ExtStatus view
VDM.viewType #COMPOSITE view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ClientHandling.type #INHERITED view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (11)

KeyFieldSource TableSource FieldDescription
KEY ExternalStatusMappingUUID ExternalStatusMappingUUID NodeID
CustomerUUID CustomerUUID NodeID
ShipToParty ShipToParty Ship-To Party (obsolete)
TransmittedExtStatusByMfr TransmittedExtStatusByMfr Transmitted Status
JITExtStatusAtSupplier JITExtStatusAtSupplier External Status
JITExternalStatusText
IsActiveEntity
_JITCustData _JITCustData
_SupplierExtStatus _SupplierExtStatus
_Customer _Customer
_JITCustomer _JITCustomer

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_JITCustExtStatusData.
-- 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: IJITCUSTEXSTDATA

CREATE VIEW I_JITCustExtStatusData AS
SELECT
  ExternalStatusMappingUUID,
  CustomerUUID,
  ShipToParty,
  TransmittedExtStatusByMfr,
  JITExtStatusAtSupplier,
  _SupplierExtStatus._JITExternalStatusText[1: Language = $session.system_language ].JITExternalStatusText AS JITExternalStatusText,
  cast ('X' as sdraft_is_active preserving type ) AS IsActiveEntity
FROM I_JITCustomerExternalStatus
LEFT OUTER JOIN I_JITCustData AS _JITCustData ON CustomerUUID = _JITCustData.CustomerUUID  -- association [1..1]
;