I_CARepaymentRequestVH

DDL: I_CAREPAYMENTREQUESTVH SQL: ICAREPAYMREQVH Type: view COMPOSITE

Repayment Request

I_CARepaymentRequestVH is a Composite CDS View that provides data about "Repayment Request" in SAP S/4HANA. It reads from 1 data source (I_CARepaymentRequest) and exposes 10 fields with key field CARepaymentRequest.

Data Sources (1)

SourceAliasJoin Type
I_CARepaymentRequest I_CARepaymentRequest from

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName ICAREPAYMREQVH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
VDM.viewType #COMPOSITE view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Repayment Request view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey CARepaymentRequest view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.dataCategory #VALUE_HELP view
Search.searchable true view
AccessControl.personalData.blocking #NOT_REQUIRED view

Fields (10)

KeyFieldSource TableSource FieldDescription
KEY CARepaymentRequest CARepaymentRequest Repaymt Request
CANetDueDate CANetDueDate Net Due Date
CAPaymentMethod CAPaymentMethod Payment Method
CAPaymentMethodName
CreatedByUser CreatedByUser User Name
CompanyCodeCountry CompanyCodeCountry Reporting Ctry/Reg.
_PaymentMethod _PaymentMethod
CompanyCode CompanyCode Receiver Company Code
BusinessArea BusinessArea Business Area
Segment Segment Segment number

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_CARepaymentRequestVH.
-- 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: ICAREPAYMREQVH

CREATE VIEW I_CARepaymentRequestVH AS
SELECT
  CARepaymentRequest,
  CANetDueDate,
  CAPaymentMethod,
  _PaymentMethod._Text[1: Language=$session.system_language].CAPaymentMethodName AS CAPaymentMethodName,
  CreatedByUser,
  CompanyCodeCountry,
  CompanyCode,
  BusinessArea,
  Segment
FROM I_CARepaymentRequest
;