I_JITCustExternalStatusTP

DDL: I_JITCUSTEXTERNALSTATUSTP SQL: IJITCUSTEXSTTP Type: view TRANSACTIONAL

JIT External Status Using Draft

I_JITCustExternalStatusTP is a Transactional CDS View that provides data about "JIT External Status Using Draft" in SAP S/4HANA. It reads from 1 data source (I_JITCustExtStatusData) and exposes 9 fields with key field ExternalStatusMappingUUID. It has 3 associations to related views.

Data Sources (1)

SourceAliasJoin Type
I_JITCustExtStatusData I_JITCustExtStatusData from

Associations (3)

CardinalityTargetAliasCondition
[1..1] I_JITCustHeaderTP _JITCustHeaderTP $projection.CustomerUUID = _JITCustHeaderTP.CustomerUUID
[1..1] E_JITExtStatus _JITExtStatusExtension $projection.ExternalStatusMappingUUID = _JITExtStatusExtension.ExternalStatusMappingUUID
[1..1] E_JITExtStatus _JITExtStatusDraftExtension $projection.ExternalStatusMappingUUID = _JITExtStatusDraftExtension.ExternalStatusMappingUUID

Annotations (16)

NameValueLevelField
AbapCatalog.sqlViewName IJITCUSTEXSTTP view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #REQUIRED view
EndUserText.label JIT External Status Using Draft view
VDM.viewType #TRANSACTIONAL 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
ObjectModel.writeDraftPersistence NJIT_CUST_EXST_D view
ObjectModel.writeActivePersistence NJIT_D_CUST_EXST view
ObjectModel.createEnabled true view
ObjectModel.updateEnabled true view
ObjectModel.deleteEnabled true view

Fields (9)

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 JITExternalStatusText Status Description
_JITCustHeaderTP _JITCustHeaderTP
_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_JITCustExternalStatusTP.
-- 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: IJITCUSTEXSTTP

CREATE VIEW I_JITCustExternalStatusTP AS
SELECT
  ExternalStatusMappingUUID,
  CustomerUUID,
  ShipToParty,
  TransmittedExtStatusByMfr,
  JITExtStatusAtSupplier,
  JITExternalStatusText
FROM I_JITCustExtStatusData
LEFT OUTER JOIN I_JITCustHeaderTP AS _JITCustHeaderTP ON CustomerUUID = _JITCustHeaderTP.CustomerUUID  -- association [1..1]
LEFT OUTER JOIN E_JITExtStatus AS _JITExtStatusExtension ON ExternalStatusMappingUUID = _JITExtStatusExtension.ExternalStatusMappingUUID  -- association [1..1]
LEFT OUTER JOIN E_JITExtStatus AS _JITExtStatusDraftExtension ON ExternalStatusMappingUUID = _JITExtStatusDraftExtension.ExternalStatusMappingUUID  -- association [1..1]
;