SQL1_LANG_VRS_OBJ_EDIT_SQL1
SQL Service: Language Version (Edited)
SQL1_LANG_VRS_OBJ_EDIT_SQL1 is a CDS View that provides data about "SQL Service: Language Version (Edited)" in SAP S/4HANA. It reads from 1 data source (sql1_head) and exposes 3 fields with key fields object_type, object_name, object_state. Part of development package SABP_DBC2ABAP_API_RELEASE.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| sql1_head | sql1_head | from |
Annotations (6)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #NOT_ALLOWED | view | |
| EndUserText.label | SQL Service: Language Version (Edited) | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #META | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | object_type | |||
| KEY | object_name | |||
| KEY | object_state | state |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_ALLOWED
@EndUserText.label: 'SQL Service: Language Version (Edited)'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
serviceQuality: #B,
sizeCategory: #S,
dataClass: #META
}
/*+[hideWarning] { "IDS" : [ "KEY_CHECK" ] }*/
define view entity SQL1_LANG_VRS_OBJ_EDIT_SQL1
as select from sql1_head
{
key cast('SQL1' as trobjtype preserving type ) as object_type,
key cast(sql1_name as sobj_name) as object_name,
key state as object_state, // allowed values: 'A' = active, 'I' = inactive; see constant if_abap_language_version=>gc_object_state
abap_language_version as abap_language_version // see constant if_abap_language_version=>gc_version
}
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