I_CTSAttributes
CTS: Request Attributes
I_CTSAttributes is a CDS View that provides data about "CTS: Request Attributes" in SAP S/4HANA. It reads from 2 data sources (wboattr, wboattrt) and exposes 2 fields with key field TransportRequestAttribute. Part of development package SCTS_REQ_APP.
Annotations (5)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ICTS_ATTRIBUTES | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | CTS: Request Attributes | view |
@AbapCatalog.sqlViewName: 'ICTS_ATTRIBUTES'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'CTS: Request Attributes'
define view I_CTSAttributes
as select from wboattr
left outer join wboattrt on wboattr.attr = wboattrt.attr
and wboattrt.langu = $session.system_language
{
key wboattr.attr as TransportRequestAttribute,
wboattrt.text as TransportRequestAttributeText
}
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