A_ServiceOrderPaymentPlan

DDL: A_SERVICEORDERPAYMENTPLAN Type: view_entity CONSUMPTION

Service Order Payment Plan

A_ServiceOrderPaymentPlan is a Consumption CDS View that provides data about "Service Order Payment Plan" in SAP S/4HANA. It reads from 1 data source (R_ServiceOrderPaymentPlanTP) and exposes 7 fields with key fields ServiceOrder, SrvcDocDigitalPaymentPlanLine.

Data Sources (1)

SourceAliasJoin Type
R_ServiceOrderPaymentPlanTP R_ServiceOrderPaymentPlanTP projection

Annotations (9)

NameValueLevelField
EndUserText.label Service Order Payment Plan view
VDM.viewType #CONSUMPTION view
VDM.lifecycle.contract.type #PUBLIC_REMOTE_API view
AccessControl.authorizationCheck #MANDATORY view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
Metadata.ignorePropagatedAnnotations true view
OData.entityType.name ServiceOrderPaymentPlan_Type view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY ServiceOrder ServiceOrder Transaction ID
KEY SrvcDocDigitalPaymentPlanLine SrvcDocDigitalPaymentPlanLine
SrvcDocDigitalPaymentCardToken SrvcDocDigitalPaymentCardToken
AuthorizedAmountInAuthznCrcy AuthorizedAmountInAuthznCrcy
PaymentCurrency PaymentCurrency Payment Currency
AuthorizationByDigitalPaytSrvc AuthorizationByDigitalPaytSrvc
ServiceDocumentType ServiceDocumentType Transaction Type

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_ServiceOrderPaymentPlan.
-- 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_ServiceOrderPaymentPlan AS
SELECT
  ServiceOrder,
  SrvcDocDigitalPaymentPlanLine,
  SrvcDocDigitalPaymentCardToken,
  AuthorizedAmountInAuthznCrcy,
  PaymentCurrency,
  AuthorizationByDigitalPaytSrvc,
  ServiceDocumentType
FROM R_ServiceOrderPaymentPlanTP
;