I_CreditMemoRequestType

DDL: I_CREDITMEMOREQUESTTYPE SQL: ISDCRDTMEMOREQTP Type: view BASIC Package: VDM_SD_SLS_CMR

Credit Memo Request Types

I_CreditMemoRequestType (Basic)

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

Credit Memo Request Type · Sales

I_CreditMemoRequestType is a Basic CDS View (Dimension) that provides data about "Credit Memo Request Types" in SAP S/4HANA. It reads from 1 data source (I_SalesDocumentType) and exposes 3 fields with key field CreditMemoRequestType. It is exposed through 2 OData services (ASQL_F7061, UI_CREDITMEMOREQUESTMANAGE). Part of development package VDM_SD_SLS_CMR.

SAP Help Documentation

CategoryCredit Memo Requests
Data CategoryDimension
StatusReleased
Purpose
This CDS view retrieves the type of a credit memo request.

Structure
Object types This view relates to the SAP object type CreditMemoRequest . Main CDS parameters and filters The CDS view has no parameters or filters. Measures and attributes This CDS view has no measures. The important attribute is credit memo request type ( CreditMemoRequestType ).

View on SAP Help Portal →

SAP API Hub

CategoryBasic
StateC1
Line of BusinessSales
Application ComponentSD-SLS-CMR-2CL
CapabilitiesData Source for Data Extraction,Data Source in SQL Select,Analytical Dimension,Association Target for Defining CDS Entities,Data Source for Defining CDS Entities
Extensible (Key User)No
Extensible (Developer)No
Release State (Key User)Released
Release State (Developer)Released
PackageSales for SAP S/4HANA Cloud Public Edition
Description <p>This CDS view retrieves the type of a credit memo request.</p>

Documentation

Data Sources (1)

SourceAliasJoin Type
I_SalesDocumentType I_SalesDocumentType from

Annotations (14)

NameValueLevelField
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey CreditMemoRequestType view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.sapObjectNodeType.name CreditMemoRequestType view
EndUserText.label Credit Memo Request Types view
Analytics.dataCategory #DIMENSION view
Analytics.dataExtraction.enabled true view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.sqlViewName ISDCRDTMEMOREQTP view
Metadata.allowExtensions true view
Metadata.ignorePropagatedAnnotations true view

OData Services (2)

ServiceBindingVersionContractRelease
ASQL_F7061 ASQL_F7061 C2 NOT_RELEASED
UI_CREDITMEMOREQUESTMANAGE UI_CREDITMEMOREQUESTMANAGE V4 C1 NOT_RELEASED

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY CreditMemoRequestType Credit Memo Request Type
CreditMemoRequestProcgType SalesDocumentProcessingType Sales document indicator (for display in TVAK only)
_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_CreditMemoRequestType.
-- 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: ISDCRDTMEMOREQTP

CREATE VIEW I_CreditMemoRequestType AS
SELECT
  cast ( SalesDocumentType as credit_memo_request_type preserving type ) AS CreditMemoRequestType,
  SalesDocumentProcessingType AS CreditMemoRequestProcgType
FROM I_SalesDocumentType
;