C_JntVntrWBSElementValHelp
Joint Venture WBS Element Value Help
C_JntVntrWBSElementValHelp is a Consumption CDS View that provides data about "Joint Venture WBS Element Value Help" in SAP S/4HANA. It reads from 2 data sources (I_JntVntrAcctgCoCode, I_WBSElement) and exposes 12 fields with key fields CompanyCode, WBSElement.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| I_JntVntrAcctgCoCode | JntVntrAcctgCoCode | inner |
| I_WBSElement | WBSElement | from |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | CJVAWBSEHLP | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | Joint Venture WBS Element Value Help | view | |
| VDM.viewType | #CONSUMPTION | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view |
Fields (12)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | CompanyCode | I_JntVntrAcctgCoCode | CompanyCode | |
| KEY | WBSElement | I_WBSElement | WBSElement | |
| WBSDescription | I_WBSElement | WBSDescription | ||
| Project | I_WBSElement | Project | ||
| ProjectType | I_WBSElement | ProjectType | ||
| ControllingArea | I_WBSElement | ControllingArea | ||
| JointVenture | I_WBSElement | JointVenture | ||
| JointVentureRecoveryCode | I_WBSElement | JointVentureRecoveryCode | ||
| JointVentureEquityType | I_WBSElement | JointVentureEquityType | ||
| JointVentureObjectType | I_WBSElement | JointVentureObjectType | ||
| JointVentureClass | I_WBSElement | JointVentureClass | ||
| JointVentureSubClass | I_WBSElement | JointVentureSubClass |
@AbapCatalog.sqlViewName: 'CJVAWBSEHLP'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Joint Venture WBS Element Value Help'
@VDM.viewType: #CONSUMPTION
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.dataClass: #MASTER
@ObjectModel.usageType.serviceQuality: #C
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.dataCategory: #VALUE_HELP
define view C_JntVntrWBSElementValHelp
as select from I_WBSElement as WBSElement
inner join I_JntVntrAcctgCoCode as JntVntrAcctgCoCode on WBSElement.CompanyCode = JntVntrAcctgCoCode.CompanyCode
{
key JntVntrAcctgCoCode.CompanyCode,
key WBSElement.WBSElement,
WBSElement.WBSDescription,
WBSElement.Project,
WBSElement.ProjectType,
WBSElement.ControllingArea,
WBSElement.JointVenture,
WBSElement.JointVentureRecoveryCode,
WBSElement.JointVentureEquityType,
WBSElement.JointVentureObjectType,
WBSElement.JointVentureClass,
WBSElement.JointVentureSubClass
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_JNTVNTRACCTGCOCODE",
"I_WBSELEMENT"
],
"ASSOCIATED":
[],
"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