I_WBSElementShortText
WBS Element Language based description
I_WBSElementShortText is a Basic CDS View that provides data about "WBS Element Language based description" in SAP S/4HANA. It reads from 1 data source (cnldst_shorttx) and exposes 3 fields with key fields WBSElementObject, Language.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| cnldst_shorttx | cnldst_shorttx | from |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IWBSSHORTTEXT | view | |
| AbapCatalog.preserveKey | true | view | |
| EndUserText.label | WBS Element Language based description | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| ObjectModel.representativeKey | WBSElementObject | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | WBSElementObject | objnr | WBS Element Object | |
| KEY | Language | language | Language | |
| WBSElementLangBsdDescription | shorttext | WBS Element Description |
@AbapCatalog.sqlViewName: 'IWBSSHORTTEXT'
@AbapCatalog.preserveKey: true
@EndUserText.label: 'WBS Element Language based description'
@AbapCatalog.compiler.compareFilter: true
@ObjectModel.representativeKey: 'WBSElementObject'
@ClientHandling.algorithm: #SESSION_VARIABLE
@VDM.viewType: #BASIC
@ObjectModel.dataCategory: #TEXT
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory : #M
@ObjectModel.usageType.dataClass: #MASTER
@AccessControl.authorizationCheck: #NOT_REQUIRED
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
define view I_WBSElementShortText as select from cnldst_shorttx
{
@EndUserText.label: 'WBS Element Object'
key objnr as WBSElementObject,
@EndUserText.label: 'Language'
@Semantics.language: true
key language as Language,
@EndUserText.label: 'WBS Element Description'
@Semantics.text: true
shorttext as WBSElementLangBsdDescription
}
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