C_JntVntrWBSElementValHelp

DDL: C_JNTVNTRWBSELEMENTVALHELP SQL: CJVAWBSEHLP Type: view CONSUMPTION

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)

SourceAliasJoin Type
I_JntVntrAcctgCoCode JntVntrAcctgCoCode inner
I_WBSElement WBSElement from

Annotations (11)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode I_JntVntrAcctgCoCode CompanyCode Receiver Company Code
KEY WBSElement I_WBSElement WBSElement WBS Internal ID
WBSDescription I_WBSElement WBSDescription WBS Element Name
Project I_WBSElement Project WBS Element
ProjectType I_WBSElement ProjectType Project Type
ControllingArea I_WBSElement ControllingArea Controlling Area
JointVenture I_WBSElement JointVenture Joint venture
JointVentureRecoveryCode I_WBSElement JointVentureRecoveryCode Recovery Ind.
JointVentureEquityType I_WBSElement JointVentureEquityType Joint Venture Equity Type
JointVentureObjectType I_WBSElement JointVentureObjectType JV Object Type
JointVentureClass I_WBSElement JointVentureClass JIB/JIBE Class
JointVentureSubClass I_WBSElement JointVentureSubClass JIB/JIBE SbClsA

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 C_JntVntrWBSElementValHelp.
-- 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: CJVAWBSEHLP

CREATE VIEW C_JntVntrWBSElementValHelp AS
SELECT
  JntVntrAcctgCoCode.CompanyCode AS CompanyCode,
  WBSElement.WBSElement AS WBSElement,
  WBSElement.WBSDescription AS WBSDescription,
  WBSElement.Project AS Project,
  WBSElement.ProjectType AS ProjectType,
  WBSElement.ControllingArea AS ControllingArea,
  WBSElement.JointVenture AS JointVenture,
  WBSElement.JointVentureRecoveryCode AS JointVentureRecoveryCode,
  WBSElement.JointVentureEquityType AS JointVentureEquityType,
  WBSElement.JointVentureObjectType AS JointVentureObjectType,
  WBSElement.JointVentureClass AS JointVentureClass,
  WBSElement.JointVentureSubClass AS JointVentureSubClass
FROM I_WBSElement AS WBSElement
INNER JOIN I_JntVntrAcctgCoCode AS JntVntrAcctgCoCode ON /* join condition not captured in parsed metadata */
;