N_SCBO2_STANDARD_OPERATION_TXT
Standard Operation
N_SCBO2_STANDARD_OPERATION_TXT is a CDS View that provides data about "Standard Operation" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 3 fields with key fields StandardOperation, Language. Part of development package S_CBO2_TRANSLATED_CONTENT.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Annotations (5)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Standard Operation | view | |
| Metadata.allowExtensions | true | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.resultSet.sizeCategory | #XXS | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | StandardOperation | |||
| KEY | Language | ddlanguage | ||
| Description |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Standard Operation'
@Metadata: {
allowExtensions: true,
ignorePropagatedAnnotations: true
}
@ObjectModel: {
resultSet: {
sizeCategory: #XXS
}
}
define view entity N_SCBO2_STANDARD_OPERATION_TXT
as select from dd07t
{
@EndUserText: {
label: 'Standard Operation'
}
key max( domvalue_l ) as StandardOperation,
@Semantics: {
language: true
}
key ddlanguage as Language,
@EndUserText: {
label: 'Description'
}
@Semantics: {
text: true
}
max( ddtext ) as Description
}
where
domname = 'SCBO2_STANDARD_OPERATION'
and as4local = 'A'
and as4vers = '0000'
group by
valpos,
ddlanguage
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