I_LegalRegulationText
Legal Regulation Text
I_LegalRegulationText is a Basic CDS View that provides data about "Legal Regulation Text" in SAP S/4HANA. It reads from 1 data source (/sapsll/t606gt) and exposes 5 fields with key fields Language, LegalRegulation. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| /sapsll/t606gt | /sapsll/t606gt | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_Language | _Language | _Language.Language = $projection.Language |
| [0..1] | I_LegalRegulation | _LegalRegulation | _LegalRegulation.LegalRegulation = $projection.LegalRegulation |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Legal Regulation Text | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| AbapCatalog.sqlViewName | ILEGRGLNT | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.representativeKey | LegalRegulation | view | |
| Search.searchable | false | view | |
| AbapCatalog.buffering.status | #ACTIVE | view | |
| AbapCatalog.buffering.type | #SINGLE | view | |
| ObjectModel.usageType.sizeCategory | M | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.dataClass | #MASTER | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Language | langu | ||
| KEY | LegalRegulation | lgreg | ||
| LegalRegulationName | text1 | |||
| _Language | _Language | |||
| _LegalRegulation | _LegalRegulation |
@EndUserText.label: 'Legal Regulation Text'
@VDM.viewType: #BASIC
@ObjectModel.dataCategory: #TEXT
@AbapCatalog.sqlViewName: 'ILEGRGLNT'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.representativeKey: 'LegalRegulation'
@Search.searchable: false
@AbapCatalog.buffering.status: #ACTIVE
@AbapCatalog.buffering.type: #SINGLE
@ObjectModel.usageType.sizeCategory: 'M'
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.dataClass: #MASTER
define view I_LegalRegulationText
as select from /sapsll/t606gt
association [0..1] to I_Language as _Language on _Language.Language = $projection.Language
association [0..1] to I_LegalRegulation as _LegalRegulation on _LegalRegulation.LegalRegulation = $projection.LegalRegulation
{
@Semantics.language: true
@ObjectModel.foreignKey.association: '_Language'
key langu as Language,
@ObjectModel.foreignKey.association: '_LegalRegulation'
key lgreg as LegalRegulation,
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
@Search.ranking: #HIGH
@Semantics.text: true
text1 as LegalRegulationName,
_Language,
_LegalRegulation
}
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