Sdraft_Proc_Exp

DDL: SDRAFT_PROC_EXP SQL: VDRAFT_PROC_EXP Type: view

DraftLifeCycle: Processing Expiration Access

Sdraft_Proc_Exp is a CDS View that provides data about "DraftLifeCycle: Processing Expiration 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_EXP view
AbapCatalog.compiler.compareFilter true view
ClientDependent false view
AccessControl.authorizationCheck #PRIVILEGED_ONLY view
EndUserText.label DraftLifeCycle: Processing Expiration 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_Exp.
-- 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_EXP
-- Parameters: p_expiry_event : sdraft_expiry_event, p_current_time : timestampl, p_global_token : sdraft_entity_name

CREATE VIEW Sdraft_Proc_Exp 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
;