A_DebitMemoReqCreditSimulation

DDL: A_DEBITMEMOREQCREDITSIMULATION Type: view_entity COMPOSITE

Debit Memo Request Credit Simulation

A_DebitMemoReqCreditSimulation is a Composite CDS View that provides data about "Debit Memo Request Credit Simulation" in SAP S/4HANA. It reads from 1 data source (I_DebitMemoRequest) and exposes 7 fields with key field DebitMemoRequest. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_DebitMemoRequest DebitMemoRequest from

Associations (1)

CardinalityTargetAliasCondition
[1..1] A_DebitMemoRequestSimulation _DebitMemoRequest _DebitMemoRequest.DebitMemoRequest = $projection.DebitMemoRequest

Annotations (8)

NameValueLevelField
EndUserText.label Debit Memo Request Credit Simulation view
VDM.viewType #COMPOSITE view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
AccessControl.authorizationCheck #MANDATORY view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view
Metadata.ignorePropagatedAnnotations true view

Fields (7)

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

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 A_DebitMemoReqCreditSimulation.
-- 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 A_DebitMemoReqCreditSimulation AS
SELECT
  DebitMemoRequest.DebitMemoRequest AS DebitMemoRequest,
  DebitMemoRequest.TotalCreditCheckStatus AS TotalCreditCheckStatus,
  DebitMemoRequest.DebitMemoRequestType AS DebitMemoRequestType,
  DebitMemoRequest.OrganizationDivision AS OrganizationDivision,
  DebitMemoRequest.SalesOrganization AS SalesOrganization,
  DebitMemoRequest.DistributionChannel AS DistributionChannel
FROM I_DebitMemoRequest AS DebitMemoRequest
LEFT OUTER JOIN A_DebitMemoRequestSimulation AS _DebitMemoRequest ON _DebitMemoRequest.DebitMemoRequest = DebitMemoRequest  -- association [1..1]
;