I_IPUTSScopeDurationLogVH

DDL: I_IPUTSSCOPEDURATIONLOGVH Type: view_entity BASIC

Scope Duration Log

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

Data Sources (1)

SourceAliasJoin Type
iputs_a_scdr_log iputs_a_scdr_log from

Annotations (9)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Scope Duration Log view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey IPUTSScopeDurationLogUUID view
VDM.viewType #BASIC view

Fields (6)

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
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_IPUTSScopeDurationLogVH.
-- 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_IPUTSScopeDurationLogVH AS
SELECT
  scdr_log_uuid AS IPUTSScopeDurationLogUUID,
  cloud_release AS IPUTSCloudRelease,
  from_date AS IPUTSFromDate,
  to_date AS IPUTSToDate,
  activity_type AS IPUTSActivityType,
  remark AS IPUTSLogRemark
FROM iputs_a_scdr_log
;