I_JointVentureOrderInSuspense
Joint Venture Order In Suspense
I_JointVentureOrderInSuspense is a Basic CDS View that provides data about "Joint Venture Order In Suspense" in SAP S/4HANA. It reads from 1 data source (t8j_sus_ord) and exposes 10 fields with key fields CompanyCode, InternalOrder. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| t8j_sus_ord | t8j_sus_ord | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_CompanyCode | _CompanyCode | $projection.CompanyCode = _CompanyCode.CompanyCode |
| [0..1] | I_InternalOrder | _InternalOrder | $projection.InternalOrder = _InternalOrder.InternalOrder |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IJVORDINSUSP | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| EndUserText.label | Joint Venture Order In Suspense | view |
Fields (10)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | CompanyCode | bukrs | ||
| KEY | InternalOrder | ordnr | ||
| JointVentureOrdIsSuspended | ord_susflag | |||
| JointVentureOrdSuspensePerd | ord_susper | |||
| JointVentureOrdSuspenseYear | ord_susyear | |||
| JointVentureOrdIsNotSuspended | ord_ususflag | |||
| JointVentureOrdNotSuspensePerd | ord_ususper | |||
| JointVentureOrdNotSuspenseYear | ord_ususyer | |||
| _CompanyCode | _CompanyCode | |||
| _InternalOrder | _InternalOrder |
@AbapCatalog.sqlViewName: 'IJVORDINSUSP'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #BASIC
@ObjectModel:{
usageType.serviceQuality: #A,
usageType.sizeCategory: #M,
usageType.dataClass: #MASTER
}
@EndUserText.label: 'Joint Venture Order In Suspense'
define view I_JointVentureOrderInSuspense
as select from t8j_sus_ord
association [0..1] to I_CompanyCode as _CompanyCode on $projection.CompanyCode = _CompanyCode.CompanyCode
association [0..1] to I_InternalOrder as _InternalOrder on $projection.InternalOrder = _InternalOrder.InternalOrder
{
@ObjectModel.foreignKey.association: '_CompanyCode'
key bukrs as CompanyCode,
@ObjectModel.foreignKey.association: '_InternalOrder'
key ordnr as InternalOrder,
ord_susflag as JointVentureOrdIsSuspended,
ord_susper as JointVentureOrdSuspensePerd,
ord_susyear as JointVentureOrdSuspenseYear,
ord_ususflag as JointVentureOrdIsNotSuspended,
ord_ususper as JointVentureOrdNotSuspensePerd,
ord_ususyer as JointVentureOrdNotSuspenseYear,
_CompanyCode,
_InternalOrder
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"T8J_SUS_ORD"
],
"ASSOCIATED":
[
"I_COMPANYCODE",
"I_INTERNALORDER"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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