SQL1_LANG_VRS_OBJ_ACTIVE_SQL1
SQL Service: Language Version (Active)
SQL1_LANG_VRS_OBJ_ACTIVE_SQL1 is a CDS View that provides data about "SQL Service: Language Version (Active)" in SAP S/4HANA. It reads from 1 data source (sql1_head) and exposes 2 fields with key fields object_type, object_name. 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 (Active) | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #META | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | object_type | |||
| KEY | object_name |
@AbapCatalog.viewEnhancementCategory: [#NONE]
@AccessControl.authorizationCheck: #NOT_ALLOWED
@EndUserText.label: 'SQL Service: Language Version (Active)'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.usageType:{
serviceQuality: #A,
sizeCategory: #S,
dataClass: #META
}
/*+[hideWarning] { "IDS" : [ "KEY_CHECK" ] }*/
define view entity SQL1_LANG_VRS_OBJ_ACTIVE_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,
abap_language_version as abap_language_version
}
where
state = 'A'
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