Sdraft_Proc_Not

DDL: SDRAFT_PROC_NOT SQL: VDRAFT_PROC_NOT Type: view

DraftLifeCycle: Processing Notification Access

Sdraft_Proc_Not is a CDS View that provides data about "DraftLifeCycle: Processing Notification Access" in SAP S/4HANA. It reads from 1 data source (SDraft_Configuration) and exposes 7 fields.

Data Sources (1)

SourceAliasJoin Type
SDraft_Configuration SDraft_Configuration from

Parameters (3)

NameTypeDefault
p_expiry_event sdraft_expiry_event
p_current_time timestampl
p_global_token sdraft_entity_name

Annotations (5)

NameValueLevelField
AbapCatalog.sqlViewName VDRAFT_PROC_NOT view
AbapCatalog.compiler.compareFilter true view
ClientDependent false view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
EndUserText.label DraftLifeCycle: Processing Notification Access view

Fields (7)

KeyFieldSource TableSource FieldDescription
client Admin client Workflow definition: Client
draft_entity Admin draft_entity Entity Name
draft_key Admin draft_key UUID
access_type Admin access_type Draft Access Type
created_at Admin created_at Uploaded On
created_by Admin created_by Version Created By
kept_by_user Admin kept_by_user Draft Is Kept By User

Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.

-- Derived SQL interpretation of CDS view Sdraft_Proc_Not.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.
-- SQL view name: VDRAFT_PROC_NOT
-- Parameters: p_expiry_event : sdraft_expiry_event, p_current_time : timestampl, p_global_token : sdraft_entity_name

CREATE VIEW Sdraft_Proc_Not AS
SELECT
  Admin.client AS client,
  Admin.draft_entity AS draft_entity,
  Admin.draft_key AS draft_key,
  Admin.access_type AS access_type,
  Admin.created_at AS created_at,
  Admin.created_by AS created_by,
  Admin.kept_by_user AS kept_by_user
FROM SDraft_Configuration
;