I_JVACtbckWBSMappgIntraBsc

DDL: I_JVACTBCKWBSMAPPGINTRABSC Type: view_entity BASIC Package: GJVA

Cutback WBS Mapping Intra Basic

I_JVACtbckWBSMappgIntraBsc is a Basic CDS View that provides data about "Cutback WBS Mapping Intra Basic" in SAP S/4HANA. It reads from 1 data source (t8j1e) and exposes 7 fields with key fields CompanyCode, JVAFromProject. It has 1 association to related views. Part of development package GJVA.

Data Sources (1)

SourceAliasJoin Type
t8j1e t8j1e from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_WBSElementBasicData _CutbackWBSElement _CutbackWBSElement.WBSElementInternalID = $projection.JVACutbackWBS

Annotations (8)

NameValueLevelField
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.entityBuffer.definitionAllowed true view
EndUserText.label Cutback WBS Mapping Intra Basic view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #ORGANIZATIONAL view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode t8j1e bukrs Value
KEY JVAFromProject
JVAToProject
JVACutbackCostCenter t8j1e cccut CostCntr Cut
JVACutbackOrder t8j1e ordercut Cutback Order
JVACutbackWBS
_CutbackWBSElement _CutbackWBSElement

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_JVACtbckWBSMappgIntraBsc.
-- 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_JVACtbckWBSMappgIntraBsc AS
SELECT
  t8j1e.bukrs AS CompanyCode,
  cast ( t8j1e.projfrom as ps_s4_posid preserving type ) AS JVAFromProject,
  cast ( t8j1e.projto as ps_s4_posid preserving type ) AS JVAToProject,
  t8j1e.cccut AS JVACutbackCostCenter,
  t8j1e.ordercut AS JVACutbackOrder,
  cast ( t8j1e.projcutb as ps_s4_pspnr preserving type) AS JVACutbackWBS
FROM t8j1e
LEFT OUTER JOIN I_WBSElementBasicData AS _CutbackWBSElement ON _CutbackWBSElement.WBSElementInternalID = JVACutbackWBS  -- association [0..1]
;