I_IPUTSScopeDurationDelLog

DDL: I_IPUTSSCOPEDURATIONDELLOG Type: view_entity BASIC

IPUTS Scope Duration Deletion Log

I_IPUTSScopeDurationDelLog is a Basic CDS View that provides data about "IPUTS Scope Duration Deletion Log" in SAP S/4HANA. It reads from 1 data source (iputs_a_scdr_log) and exposes 12 fields with key field IPUTSScopeDurationLogUUID.

Data Sources (1)

SourceAliasJoin Type
iputs_a_scdr_log iputs_a_scdr_log from

Annotations (7)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label IPUTS Scope Duration Deletion Log view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view
VDM.viewType #BASIC view

Fields (12)

KeyFieldSource TableSource FieldDescription
KEY IPUTSScopeDurationLogUUID scdr_log_uuid SCDR Log ID
IPUTSCloudRelease cloud_release Cloud Release
IPUTSFromDate from_date Valid from Date
IPUTSToDate to_date Valid to Date
IPUTSActivityType activity_type Inward/Outward Acty
IPUTSCreatedBy created_by Version Created By
IPUTSCreatedDateTime created_at Uploaded On
IPUTSDeletedBy deleted_by User Name
IPUTSDeletedDateTime deleted_at Time Stamp
IPUTSChangedBy changed_by User Name
IPUTSChangedDateTime changed_at Timestamp
IPUTSLogRemark remark Status Description

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 I_IPUTSScopeDurationDelLog.
-- 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.

CREATE VIEW I_IPUTSScopeDurationDelLog AS
SELECT
  scdr_log_uuid AS IPUTSScopeDurationLogUUID,
  cloud_release AS IPUTSCloudRelease,
  from_date AS IPUTSFromDate,
  to_date AS IPUTSToDate,
  activity_type AS IPUTSActivityType,
  created_by AS IPUTSCreatedBy,
  created_at AS IPUTSCreatedDateTime,
  deleted_by AS IPUTSDeletedBy,
  deleted_at AS IPUTSDeletedDateTime,
  changed_by AS IPUTSChangedBy,
  changed_at AS IPUTSChangedDateTime,
  remark AS IPUTSLogRemark
FROM iputs_a_scdr_log
;