STCCONT_ConfigEntityOperation
Configuration Entity Operation
STCCONT_ConfigEntityOperation is a CDS View that provides data about "Configuration Entity Operation" in SAP S/4HANA. It reads from 2 data sources (stccont_ceo, dd07t) and exposes 3 fields with key fields Entity, Operation.
Data Sources (2)
| Source | Alias | Join Type |
|---|---|---|
| stccont_ceo | A | from |
| dd07t | B | left_outer |
Annotations (4)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | V_STCCONT_CEO | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | Configuration Entity Operation | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Entity | stccont_ceo | entity | |
| KEY | Operation | stccont_ceo | operation | |
| Description | dd07t | ddtext |
@AbapCatalog.sqlViewName: 'V_STCCONT_CEO'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Configuration Entity Operation'
define view STCCONT_ConfigEntityOperation
// with parameters
// @Consumption.hidden: true
// @Environment.systemField: #SYSTEM_LANGUAGE
// language : sylangu
as select from stccont_ceo as A
left outer join dd07t as B on B.domname = 'STCCONT_CEO_NAME'
and B.domvalue_l = A.operation
and B.ddlanguage = 'E' //:language
{
key A.entity as Entity,
key A.operation as Operation,
B.ddtext as Description
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T",
"STCCONT_CEO"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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