I_JITComponentIsReordered
JIT Call Reorder
I_JITComponentIsReordered is a Basic CDS View that provides data about "JIT Call Reorder" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field JITComponentIsReordered. It has 1 association to related views. It is exposed through 1 OData service (NJIT_UI_JITINBOUNDCALLTP). It is used in 1 Fiori application: Manage Customer JIT Calls - Create, Manage.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07l | dd07l | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_JITComponentIsReorderedText | _Text | $projection.JITComponentIsReordered = _Text.JITComponentIsReordered |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| Analytics.technicalName | IJITCOMPREORD | view | |
| EndUserText.label | JIT Call Reorder | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.representativeKey | JITComponentIsReordered | view | |
| ObjectModel.resultSet.sizeCategory | #XS | view | |
| VDM.viewType | #BASIC | view |
OData Services (1)
| Service | Binding | Version | Contract | Release |
|---|---|---|---|---|
| NJIT_UI_JITINBOUNDCALLTP | NJIT_UI_JITINBOUNDCALLTP | V2 | C1 | NOT_RELEASED |
Fiori Apps (1)
| App ID | App Name | Type | Description |
|---|---|---|---|
| F6078 | Manage Customer JIT Calls - Create, Manage | Transactional | An application to manage and monitor Customer JIT calls |
Manage Customer JIT Calls - Create, Manage
Business Role: Material Planner - Just-In-Time Supply
With this app you can create, modify, and view JIT calls received in the system. Customers request components from suppliers by triggering JIT calls with all relevant component information. They do this by transmitting IDocs that get routed via SAP Cloud Platform Integration and get mapped to the JIT Call SOAP service, which then sends it to your system. The architecture guidelines of SAP S/4HANA Cloud recommend SOAP messages for Electronic Data Interchange (EDI) communication; for more information, refer to the integration documentation for Just-In-Time (JIT) Supply to Customer from Stock. Therefore, a SOAP message is defined for processing incoming customer JIT calls. A customer message can contain many individual JIT calls, among which there could be new ones or existing ones to be changed.
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | JITComponentIsReordered | |||
| _Text | _Text |
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Analytics.technicalName: 'IJITCOMPREORD'
@EndUserText.label: 'JIT Call Reorder'
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.representativeKey: 'JITComponentIsReordered'
@ObjectModel.resultSet.sizeCategory: #XS
@VDM.viewType: #BASIC
/*+[hideWarning] { "IDS" : [ "KEY_CHECK" ] }*/
/*+[hideWarning] { "IDS" : [ "KEY_CHECK/code>*/
define view entity I_JITComponentIsReordered
as select from dd07l
association [0..*] to I_JITComponentIsReorderedText as _Text on $projection.JITComponentIsReordered = _Text.JITComponentIsReordered
{
/*==========================================================================================*/
// Technical Keys
/*------------------------------------------------------------------------------------------*/
@ObjectModel.text.association: '_Text'
key cast(substring( dd07l.domvalue_l, 1, 1) as njit_reorder_indicator preserving type ) as JITComponentIsReordered,
/*==========================================================================================*/
/*==========================================================================================*/
// Associations
/*------------------------------------------------------------------------------------------*/
_Text
}
where
dd07l.domname = 'NJIT_REORDER_INDICATOR'
and dd07l.as4local = 'A'
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA