I_DraftAdminDataUserAuthExc_cc
Excl. Draft User Authority x-client
I_DraftAdminDataUserAuthExc_cc is a CDS View that provides data about "Excl. Draft User Authority x-client" in SAP S/4HANA. It reads from 1 data source (sdraft_admin_cc) and exposes 2 fields with key fields DraftUUID, DraftEntityType.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| sdraft_admin_cc | DraftAdminData | from |
Annotations (2)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #PRIVILEGED_ONLY | view | |
| EndUserText.label | Excl. Draft User Authority x-client | view |
Fields (2)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | DraftUUID | sdraft_admin_cc | draft_key | |
| KEY | DraftEntityType | sdraft_admin_cc | draft_entity |
@AccessControl.authorizationCheck: #PRIVILEGED_ONLY
@EndUserText.label: 'Excl. Draft User Authority x-client'
define view entity I_DraftAdminDataUserAuthExc_cc
as select from sdraft_admin_cc as DraftAdminData
{
key DraftAdminData.draft_key as DraftUUID,
key DraftAdminData.draft_entity as DraftEntityType
}
where
(
(
(
DraftAdminData.created_by = $session.user
and DraftAdminData.in_process_by = ''
)
or DraftAdminData.in_process_by = $session.user
)
);
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