I_DebitMemoRequestStdVH

DDL: I_DEBITMEMOREQUESTSTDVH SQL: ISDDEBITMEMOVH Type: view COMPOSITE

Debit Memo Request

I_DebitMemoRequestStdVH is a Composite CDS View that provides data about "Debit Memo Request" in SAP S/4HANA. It reads from 1 data source (I_DebitMemoRequest) and exposes 5 fields with key field DebitMemoRequest.

Data Sources (1)

SourceAliasJoin Type
I_DebitMemoRequest I_DebitMemoRequest from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName ISDDEBITMEMOVH view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #COMPOSITE view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey DebitMemoRequest view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #M view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
EndUserText.label Debit Memo Request view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY DebitMemoRequest DebitMemoRequest
DebitMemoRequestType DebitMemoRequestType
DistributionChannel DistributionChannel RefDistCh-Cust/Mat.
OrganizationDivision OrganizationDivision Org. Division
SalesOrganization SalesOrganization Sales Organization

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_DebitMemoRequestStdVH.
-- 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: ISDDEBITMEMOVH

CREATE VIEW I_DebitMemoRequestStdVH AS
SELECT
  DebitMemoRequest,
  DebitMemoRequestType,
  DistributionChannel,
  OrganizationDivision,
  SalesOrganization
FROM I_DebitMemoRequest
;