I_ReturnsRefundExtent

DDL: I_RETURNSREFUNDEXTENT SQL: IRMRFNDEXTNT Type: view BASIC

Returns Refund Extent

I_ReturnsRefundExtent (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.

ReturnsRefundExtent · Manufacturing

I_ReturnsRefundExtent is a Basic CDS View (Dimension) that provides data about "Returns Refund Extent" in SAP S/4HANA. It reads from 1 data source (msr_c_ret_refund) and exposes 2 fields with key field ReturnsRefundExtent. It has 1 association to related views. It is exposed through 1 OData service (UI_CUSTOMERRETURNMANAGE).

SAP Help Documentation

CategoryCDS Views for Customer Returns Delivery Documents
StatusReleased
Purpose
This CDS view provides the prerequisites for answering the following business questions: What are the names of my returns refund codes?

Prerequisites
This CDS view does not require any authorization.

Structure
Main input parameters This view does not have any input parameters. Measures and attributes This view contains the following measures and attributes: Returns refund code

View on SAP Help Portal →

SAP API Hub

StateC1
Line of BusinessManufacturing
Application ComponentLO-ARM
CapabilitiesData Source for Defining CDS Entities, Data Source in SQL Select, Association Target for Defining CDS Entities, Data Source for Data Extraction, Analytical Dimension
PackageManufacturing for SAP S/4HANA Cloud Private Edition
Description <p>This CDS view provides the prerequisites for answering the following business questions:</p> <ul> <li><p>What are the names of my returns refund codes?</p></li> </ul>

Documentation

Data Sources (1)

SourceAliasJoin Type
msr_c_ret_refund msr_c_ret_refund from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_ReturnsRefundExtentText _Text $projection.ReturnsRefundExtent = _Text.ReturnsRefundExtent

Annotations (15)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey ReturnsRefundExtent view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.sapObjectNodeType.name ReturnsRefundExtent view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
VDM.viewType #BASIC view
EndUserText.label Returns Refund Extent view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.sqlViewName IRMRFNDEXTNT view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #FULL view
Metadata.ignorePropagatedAnnotations true view

OData Services (1)

ServiceBindingVersionContractRelease
UI_CUSTOMERRETURNMANAGE UI_CUSTOMERRETURNMANAGE V4 C1 NOT_RELEASED

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY ReturnsRefundExtent Extent of Monetary Refund for a Return
_Text _Text

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_ReturnsRefundExtent.
-- 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: IRMRFNDEXTNT

CREATE VIEW I_ReturnsRefundExtent AS
SELECT
  cast (returns_refund as returns_refund_extent) AS ReturnsRefundExtent
FROM msr_c_ret_refund
LEFT OUTER JOIN I_ReturnsRefundExtentText AS _Text ON ReturnsRefundExtent = _Text.ReturnsRefundExtent  -- association [0..*]
;