R_WorkforcePersonEntrySourceVH
Workforce Person Entry Source
R_WorkforcePersonEntrySourceVH is a Transactional CDS View that provides data about "Workforce Person Entry Source" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field WorkforcePersonEntrySource. Part of development package ODATA_CA_BUM_WF.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07l | FixedValue | from |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| ObjectModel.resultSet.sizeCategory | #XS | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Workforce Person Entry Source | view | |
| ObjectModel.representativeKey | WorkforcePersonEntrySource | view | |
| Consumption.ranked | true | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| VDM.viewType | #TRANSACTIONAL | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view | |
| Search.searchable | true | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| ObjectModel.usageType.dataClass | #MASTER | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | WorkforcePersonEntrySource | |||
| ddtextasWorkforcePersonDataSourceText |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@ObjectModel.dataCategory:#VALUE_HELP
@ObjectModel : { resultSet.sizeCategory: #XS }
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Workforce Person Entry Source'
@ObjectModel.representativeKey:'WorkforcePersonEntrySource'
@Consumption.ranked:true
@Metadata.ignorePropagatedAnnotations: true
@VDM: {
viewType: #TRANSACTIONAL,
lifecycle.contract.type: #SAP_INTERNAL_API
}
@Search.searchable: true
@ObjectModel.usageType:{
serviceQuality: #C,
sizeCategory: #XL,
dataClass: #MASTER
}
define view entity R_WorkforcePersonEntrySourceVH
as select from dd07l as FixedValue
left outer to one join dd07t as ValueText on FixedValue.domname = ValueText.domname
and FixedValue.domvalue_l = ValueText.domvalue_l
and FixedValue.as4local = ValueText.as4local
{
@ObjectModel.text.element: ['WorkforcePersonDataSourceText']
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking:#HIGH
key cast (FixedValue.domvalue_l as bpu_entry_source ) as WorkforcePersonEntrySource,
@Semantics.text: true -- identifies the text field
@Search.ranking:#HIGH
@Search.defaultSearchElement: true
ValueText.ddtext as WorkforcePersonDataSourceText
}
where
FixedValue.as4local = 'A' --Active
and FixedValue.domname = 'BPU_ENTRY_SOURCE'
and ValueText.ddlanguage = $session.system_language
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