I_CustomCDSViewAuthCheck
Custom CDS View Authorization Check
I_CustomCDSViewAuthCheck is a Basic CDS View that provides data about "Custom CDS View Authorization Check" in SAP S/4HANA. It reads from 2 data sources (dd07l, dd07t) and exposes 2 fields with key field AuthorizationCheck.
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | APS_CCV_I_AC | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| ObjectModel.representativeKey | AuthorizationCheck | view | |
| ObjectModel.resultSet.sizeCategory | #XS | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| EndUserText.label | Custom CDS View Authorization Check | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| Search.searchable | true | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | AuthorizationCheck | |||
| AuthorizationCheckText | dd07t | ddtext |
@AbapCatalog.sqlViewName: 'APS_CCV_I_AC'
@AbapCatalog.compiler.compareFilter: true
@ObjectModel: {
representativeKey: 'AuthorizationCheck',
resultSet.sizeCategory: #XS
}
@AccessControl.authorizationCheck: #NOT_REQUIRED
@EndUserText.label: 'Custom CDS View Authorization Check'
@Metadata.ignorePropagatedAnnotations:true
@VDM.viewType: #BASIC
@ObjectModel.dataCategory: #VALUE_HELP
@Search.searchable: true
define view I_CustomCDSViewAuthCheck
as select from dd07l
left outer join dd07t as text on text.domname = dd07l.domname
and text.as4local = dd07l.as4local
and text.as4vers = dd07l.as4vers
and text.valpos = dd07l.valpos
and text.ddlanguage = $session.system_language
{
@ObjectModel.text.element: ['AuthorizationCheckText']
key substring(dd07l.domvalue_l, 1, 1) as AuthorizationCheck,
@Semantics.text:true
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
text.ddtext as AuthorizationCheckText
}
where
dd07l.domname = 'APS_CCV_AUTHORIZATION_CHECK'
and dd07l.as4local = '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