I_LoanContractStdVH

DDL: I_LOANCONTRACTSTDVH SQL: IFTRLC__VH Type: view COMPOSITE

Loan Contract

I_LoanContractStdVH is a Composite CDS View that provides data about "Loan Contract" in SAP S/4HANA. It reads from 1 data source (I_LoanContract) and exposes 6 fields with key fields CompanyCode, LoanContract.

Data Sources (1)

SourceAliasJoin Type
I_LoanContract I_LoanContract from

Annotations (14)

NameValueLevelField
AbapCatalog.sqlViewName IFTRLC__VH view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #COMPOSITE view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey LoanContract view
ObjectModel.usageType.dataClass #MASTER 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 Loan Contract view
Search.searchable true view
Consumption.ranked true view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode CompanyCode Receiver Company Code
KEY LoanContract LoanContract
LoanContractName LoanContractName
FinancialInstrumentProductType FinancialInstrumentProductType Product Type
TreasuryContractStatus TreasuryContractStatus Status
_CompanyCode _CompanyCode

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_LoanContractStdVH.
-- 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: IFTRLC__VH

CREATE VIEW I_LoanContractStdVH AS
SELECT
  CompanyCode,
  LoanContract,
  LoanContractName,
  FinancialInstrumentProductType,
  TreasuryContractStatus
FROM I_LoanContract
;