I_WBSElementBasicDataStdVH

DDL: I_WBSELEMENTBASICDATASTDVH SQL: IWBSELEBSCDTVH Type: view BASIC

Basic data for WBS Element

I_WBSElementBasicDataStdVH is a Basic CDS View that provides data about "Basic data for WBS Element" in SAP S/4HANA. It reads from 1 data source (I_WBSElementBasicData) and exposes 12 fields with key field WBSElementInternalID. It is exposed through 1 OData service (UI_MANUALACCRS_MNG). It is used in 1 Fiori application: Manage Manual Accruals.

Data Sources (1)

SourceAliasJoin Type
I_WBSElementBasicData I_WBSElementBasicData from

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName IWBSELEBSCDTVH view
AbapCatalog.compiler.compareFilter true view
EndUserText.label Basic data for WBS Element view
VDM.viewType #BASIC view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey WBSElementInternalID view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MIXED view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
Search.searchable true view
Consumption.ranked true view

OData Services (1)

ServiceBindingVersionContractRelease
UI_MANUALACCRS_MNG UI_MANUALACCRS_MNG V2 C1 NOT_RELEASED

Fiori Apps (1)

App IDApp NameTypeDescription
F5423 Manage Manual Accruals Transactional With this app, you can create, import, edit, and copy accrual objects as well as change their status. You can use this app to: - Display and edit accrual objects. - Create new accrual objects. - Copy accrual objects. - Import accrual objects from a spreadsheet file. - Change the status of an accrual object by pausing, suspending, or resuming its accrual subobjects. - Prematurely finish accrual subobjects by terminating them or undo premature termination. - View the parameters assigned to an accrual object. - View a detailed summary of changes made to the accrual object, comparing the old and new values of the accrual object fields.

Manage Manual Accruals

Business Role: General Ledger Accountant

With this app, you can create, import, edit, and copy accrual objects as well as change their status.

Fields (12)

KeyFieldSource TableSource FieldDescription
KEY WBSElementInternalID WBSElementInternalID
WBSElementExternalID WBSElementExternalID
WBSDescription WBSDescription
ControllingArea ControllingArea
ProfitCenter ProfitCenter
CompanyCode CompanyCode
ResponsibleCostCenter ResponsibleCostCenter
Plant Plant
ProjectType ProjectType
FunctionalArea FunctionalArea
ProjectInternalID
_Project _Project
@AbapCatalog.sqlViewName: 'IWBSELEBSCDTVH'
@AbapCatalog.compiler.compareFilter: true

@EndUserText.label: 'Basic data for WBS Element'

@VDM.viewType: #BASIC

@ObjectModel.dataCategory: #VALUE_HELP
@ObjectModel.representativeKey: 'WBSElementInternalID'

@ObjectModel.usageType.serviceQuality: #B
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.dataClass: #MIXED
@ObjectModel.supportedCapabilities: [#VALUE_HELP_PROVIDER]
@AccessControl.authorizationCheck: #CHECK

@ClientHandling.algorithm: #SESSION_VARIABLE

@Metadata.ignorePropagatedAnnotations: true

@Search.searchable: true
@Consumption.ranked: true
//@VDM.lifecycle.contract.type:  #SAP_INTERNAL_API

define view I_WBSElementBasicDataStdVH as select from I_WBSElementBasicData {
  @UI.hidden: true
  key WBSElementInternalID,
  @ObjectModel.text.element: 'WBSDescription'
   @Search: {
          defaultSearchElement: true,
          fuzzinessThreshold: 0.8,
          ranking: #HIGH
         }
  WBSElementExternalID,
   @Search: {
          defaultSearchElement: true,
          fuzzinessThreshold: 0.8,
          ranking: #LOW
         }
  @Semantics.text: true
  WBSDescription,
  @Consumption.hidden: true
  ControllingArea,
  @Consumption.hidden: true
  ProfitCenter,
  @Consumption.hidden: true
  CompanyCode, 
  @Consumption.hidden: true
  ResponsibleCostCenter, 
  @Consumption.hidden: true
  Plant, 
  @Consumption.hidden: true
  ProjectType, 
  @Consumption.hidden: true
  FunctionalArea,
  @UI.hidden: true      
  cast( ProjectInternalID as ps_s4_proj_pspnr preserving type ) as ProjectInternalID,
  @Consumption.hidden: true
  _Project 
  
}