I_JITInbCallBySemKey

DDL: I_JITINBCALLBYSEMKEY Type: view_entity BASIC

JIT Inbound Call by Semantic Key

I_JITInbCallBySemKey is a Basic CDS View that provides data about "JIT Inbound Call by Semantic Key" in SAP S/4HANA. It reads from 1 data source (njit_call_d_hdr) and exposes 37 fields with key field InternalJITCallNumber. It has 14 associations to related views.

Data Sources (1)

SourceAliasJoin Type
njit_call_d_hdr njit_call_d_hdr from

Associations (14)

CardinalityTargetAliasCondition
[1..1] I_Customer_to_BusinessPartner _CustomerToBusinessPartner $projection.ShipToParty = _CustomerToBusinessPartner.Customer
[0..1] I_JITLifecycleStatus _JITLifecycleStatus $projection.JITLifecycleStatus = _JITLifecycleStatus.JITLifecycleStatus
[0..1] I_JITCallType _JITCallType $projection.JITCallType = _JITCallType.JITCallType
[1..1] I_JITCustomer _JITCustomer $projection.ShipToParty = _JITCustomer.ShipToParty and $projection.CustomerUUID = _JITCustomer.CustomerUUID
[0..1] I_MatlUsageIndicator _MatlUsageIndicator $projection.MatlUsageIndicator = _MatlUsageIndicator.MatlUsageIndicator
[0..1] I_UserContactCard _CreatedByUser $projection.CreatedByUser = _CreatedByUser.ContactCardID
[0..1] I_UserContactCard _LastChangedByUser $projection.LastChangedByUser = _LastChangedByUser.ContactCardID
[0..1] I_Customer _Customer $projection.ShipToParty = _Customer.Customer
[0..1] I_SalesOrganization _SalesOrganization $projection.SalesOrganization = _SalesOrganization.SalesOrganization
[0..1] I_DistributionChannel _DistributionChannel $projection.DistributionChannel = _DistributionChannel.DistributionChannel
[0..1] I_Division _Division $projection.Division = _Division.Division
[0..1] I_JITComponentIsReordered _JITComponentIsReordered $projection.JITComponentIsReordered = _JITComponentIsReordered.JITComponentIsReordered
[0..*] I_JITInbCallCompGrpBySemKey _JITInbCallCompGrpBySemKey $projection.InternalJITCallNumber = _JITInbCallCompGrpBySemKey.InternalJITCallNumber
[0..*] I_JITInbCallCompMatlBySemKey _JITInbCallCompMatlBySemKey $projection.InternalJITCallNumber = _JITInbCallCompMatlBySemKey.InternalJITCallNumber

Annotations (6)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
EndUserText.label JIT Inbound Call by Semantic Key view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
VDM.viewType #BASIC view

Fields (37)

KeyFieldSource TableSource FieldDescription
KEY InternalJITCallNumber int_call_num JIT Call Number
JITHeaderUUID db_key UUID
ExternalJITCallNumber ext_call_num Ext. JIT Call Number
JITScenario njit_scenario JIT Scenario
CustomerUUID customeruuid NodeID
ShipToParty kunnr Stock customer
SoldToParty kunag Sold-to Party
JITLifecycleStatus lifecycle_stat Life Cycle Status
JITCallType call_type Call Type
VehicleIdentificationNumber vhvin VIN
SalesOrganization vkorg SD Sales Org.
DistributionChannel vtweg RefDistCh-Cust/Mat.
Division spart Source supplier
UnloadingPointName ablad Unloading Point
CustomerPartnerDescription knref Partner Desc.
MatlUsageIndicator abrvw Usage
ActiveSupplier Vendor no.
JITExtSequenceNumber ext_sequence_num Ext.Seq. Number
CreationDateTime crea_date_time Time Stamp
CreatedByUser crea_uname User Name
LastChangeDateTime lchg_date_time Time Stamp
LastChangedByUser lchg_uname User Name
JITComponentIsReordered jitcomponentisreordered Usage Type
_CustomerToBusinessPartner _CustomerToBusinessPartner
_JITLifecycleStatus _JITLifecycleStatus
_JITCallType _JITCallType
_JITCustomer _JITCustomer
_MatlUsageIndicator _MatlUsageIndicator
_CreatedByUser _CreatedByUser
_LastChangedByUser _LastChangedByUser
_Customer _Customer
_SalesOrganization _SalesOrganization
_Division _Division
_DistributionChannel _DistributionChannel
_JITComponentIsReordered _JITComponentIsReordered
_JITInbCallCompGrpBySemKey _JITInbCallCompGrpBySemKey
_JITInbCallCompMatlBySemKey _JITInbCallCompMatlBySemKey

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_JITInbCallBySemKey.
-- 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_JITInbCallBySemKey AS
SELECT
  int_call_num AS InternalJITCallNumber,
  db_key AS JITHeaderUUID,
  ext_call_num AS ExternalJITCallNumber,
  njit_scenario AS JITScenario,
  CustomerUUID,
  kunnr AS ShipToParty,
  kunag AS SoldToParty,
  lifecycle_stat AS JITLifecycleStatus,
  call_type AS JITCallType,
  vhvin AS VehicleIdentificationNumber,
  vkorg AS SalesOrganization,
  vtweg AS DistributionChannel,
  spart AS Division,
  ablad AS UnloadingPointName,
  knref AS CustomerPartnerDescription,
  abrvw AS MatlUsageIndicator,
  cast( lifnr as abap.char( 10 ) ) AS ActiveSupplier,
  ext_sequence_num AS JITExtSequenceNumber,
  crea_date_time AS CreationDateTime,
  crea_uname AS CreatedByUser,
  lchg_date_time AS LastChangeDateTime,
  lchg_uname AS LastChangedByUser,
  JITComponentIsReordered
FROM njit_call_d_hdr
LEFT OUTER JOIN I_Customer_to_BusinessPartner AS _CustomerToBusinessPartner ON ShipToParty = _CustomerToBusinessPartner.Customer  -- association [1..1]
LEFT OUTER JOIN I_JITLifecycleStatus AS _JITLifecycleStatus ON JITLifecycleStatus = _JITLifecycleStatus.JITLifecycleStatus  -- association [0..1]
LEFT OUTER JOIN I_JITCallType AS _JITCallType ON JITCallType = _JITCallType.JITCallType  -- association [0..1]
LEFT OUTER JOIN I_JITCustomer AS _JITCustomer ON ShipToParty = _JITCustomer.ShipToParty AND CustomerUUID = _JITCustomer.CustomerUUID  -- association [1..1]
LEFT OUTER JOIN I_MatlUsageIndicator AS _MatlUsageIndicator ON MatlUsageIndicator = _MatlUsageIndicator.MatlUsageIndicator  -- association [0..1]
LEFT OUTER JOIN I_UserContactCard AS _CreatedByUser ON CreatedByUser = _CreatedByUser.ContactCardID  -- association [0..1]
LEFT OUTER JOIN I_UserContactCard AS _LastChangedByUser ON LastChangedByUser = _LastChangedByUser.ContactCardID  -- association [0..1]
LEFT OUTER JOIN I_Customer AS _Customer ON ShipToParty = _Customer.Customer  -- association [0..1]
LEFT OUTER JOIN I_SalesOrganization AS _SalesOrganization ON SalesOrganization = _SalesOrganization.SalesOrganization  -- association [0..1]
LEFT OUTER JOIN I_DistributionChannel AS _DistributionChannel ON DistributionChannel = _DistributionChannel.DistributionChannel  -- association [0..1]
LEFT OUTER JOIN I_Division AS _Division ON Division = _Division.Division  -- association [0..1]
LEFT OUTER JOIN I_JITComponentIsReordered AS _JITComponentIsReordered ON JITComponentIsReordered = _JITComponentIsReordered.JITComponentIsReordered  -- association [0..1]
LEFT OUTER JOIN I_JITInbCallCompGrpBySemKey AS _JITInbCallCompGrpBySemKey ON InternalJITCallNumber = _JITInbCallCompGrpBySemKey.InternalJITCallNumber  -- association [0..*]
LEFT OUTER JOIN I_JITInbCallCompMatlBySemKey AS _JITInbCallCompMatlBySemKey ON InternalJITCallNumber = _JITInbCallCompMatlBySemKey.InternalJITCallNumber  -- association [0..*]
;