A_WBSElementByInternalKey

DDL: A_WBSELEMENTBYINTERNALKEY SQL: AWBSELEBYINTKEY Type: view BASIC

API WBS Element Details by Internal ID(OBSOLETE)

A_WBSElementByInternalKey is a Basic CDS View that provides data about "API WBS Element Details by Internal ID(OBSOLETE)" in SAP S/4HANA. It reads from 1 data source (I_WBSElementByInternalKey) and exposes 10 fields with key field WBSElementInternalID.

Data Sources (1)

SourceAliasJoin Type
I_WBSElementByInternalKey I_WBSElementByInternalKey from

Annotations (11)

NameValueLevelField
EndUserText.label API WBS Element Details by Internal ID(OBSOLETE) view
VDM.viewType #BASIC view
AbapCatalog.sqlViewName AWBSELEBYINTKEY view
AbapCatalog.compiler.compareFilter true view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #CHECK view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MIXED view
Metadata.ignorePropagatedAnnotations true view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY WBSElementInternalID WBS Internal ID
WBSElement WBSElement WBS Internal ID
WBSDescription WBSDescription WBS Element Name
CompanyCode CompanyCode Receiver Company Code
ControllingArea ControllingArea Controlling Area
FunctionalArea FunctionalArea Sendr Fctl Area
ProfitCenter ProfitCenter Profit Center
ProjectInternalID Project Def.
WBSElementIsBillingElement WBSElementIsBillingElement Billing elem.
WBSElementObject WBSElementObject Object number

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 A_WBSElementByInternalKey.
-- 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: AWBSELEBYINTKEY

CREATE VIEW A_WBSElementByInternalKey AS
SELECT
  cast ( WBSElementInternalID as ps_posnr1 ) AS WBSElementInternalID,
  WBSElement,
  WBSDescription,
  CompanyCode,
  ControllingArea,
  FunctionalArea,
  ProfitCenter,
  cast ( ProjectInternalID as abap.numc( 8 ) ) AS ProjectInternalID,
  WBSElementIsBillingElement,
  WBSElementObject
FROM I_WBSElementByInternalKey
;