Rv_I_Rsds_RequtypeT
Rv_I_Rsds_RequtypeT is a CDS View in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 3 fields with key fields langu, type.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Annotations (6)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | RVIDATASRCTPT | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| ObjectModel.representativeKey | type | view | |
| ClientDependent | false | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| AbapCatalog.compiler.compareFilter | true | view |
Fields (3)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | langu | ddlanguage | ||
| KEY | type | |||
| text | ddtext |
//@RV.viewType: #RANGE
@AbapCatalog.sqlViewName: 'RVIDATASRCTPT' // 13
@ObjectModel.dataCategory: #TEXT
@Analytics.dataExtraction.enabled
@ObjectModel.representativeKey: 'type'
@ClientDependent: false
@AccessControl.authorizationCheck: #NOT_REQUIRED
@AbapCatalog.compiler.compareFilter: true
define view Rv_I_Rsds_RequtypeT
(
langu,
type,
text
)
as
select from dd07t
{
@Semantics.language
key ddlanguage as langu,
key cast( domvalue_l as rsds_requtype ) as type,
@Semantics.text
ddtext as text
} where domname = 'RSDS_REQUTYPE' and as4local = 'A'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[],
"BASE":
[],
"VERSION":0
}
}*/
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