I_DraftAdminDataUserAuthExc

DDL: I_DRAFTADMINDATAUSERAUTHEXC Type: view_entity Package: SBOI_RAP_SERVICES_DSP_ADMIN

Excl. Draft User Authority

I_DraftAdminDataUserAuthExc is a CDS View that provides data about "Excl. Draft User Authority" in SAP S/4HANA. It reads from 1 data source (sdraft_admin) and exposes 2 fields with key fields DraftUUID, DraftEntityType. Part of development package SBOI_RAP_SERVICES_DSP_ADMIN.

Data Sources (1)

SourceAliasJoin Type
sdraft_admin DraftAdminData from

Annotations (2)

NameValueLevelField
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
EndUserText.label Excl. Draft User Authority view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY DraftUUID sdraft_admin draft_key
KEY DraftEntityType sdraft_admin draft_entity
@AccessControl.authorizationCheck: #PRIVILEGED_ONLY

@EndUserText.label: 'Excl. Draft User Authority'
define view entity I_DraftAdminDataUserAuthExc
  as select from sdraft_admin 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
    )
  );