I_RepetitiveCodeVH

DDL: I_REPETITIVECODEVH SQL: IMKBTTMPLVH Type: view COMPOSITE

Repetitive Code Value Help

I_RepetitiveCodeVH is a Composite CDS View that provides data about "Repetitive Code Value Help" in SAP S/4HANA. It reads from 3 data sources (P_RepetitiveCodeBasic, I_BankAcctIdVH, I_BankAcctIdVH) and exposes 8 fields with key fields RepetitiveCode, PayingCompanyCode, PayingBankAccount, PayingBankAccountInternalID.

Data Sources (3)

SourceAliasJoin Type
P_RepetitiveCodeBasic a from
I_BankAcctIdVH b inner
I_BankAcctIdVH c inner

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName IMKBTTMPLVH view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Repetitive Code Value Help view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.serviceQuality #C view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #COMPOSITE view
Search.searchable true view
Consumption.ranked true view

Fields (8)

KeyFieldSource TableSource FieldDescription
KEY RepetitiveCode P_RepetitiveCodeBasic RepetitiveCode Repetitive Code
KEY PayingCompanyCode P_RepetitiveCodeBasic PayingCompanyCode Paying Company Code
KEY PayingBankAccount I_BankAcctIdVH BankAccountNumber Bank Account
KEY PayingBankAccountInternalID I_BankAcctIdVH BankAccountInternalID Technical ID
PayeeCompanyCode P_RepetitiveCodeBasic PayeeCompanyCode Target Company Code
PayeeBankAccount I_BankAcctIdVH BankAccountNumber Bank Account
PayeeBankAccountInternalID I_BankAcctIdVH BankAccountInternalID Technical ID
PaymentMethod P_RepetitiveCodeBasic PaymentMethod Pymt Meth.

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_RepetitiveCodeVH.
-- 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: IMKBTTMPLVH

CREATE VIEW I_RepetitiveCodeVH AS
SELECT
  a.RepetitiveCode AS RepetitiveCode,
  a.PayingCompanyCode AS PayingCompanyCode,
  b.BankAccountNumber AS PayingBankAccount,
  b.BankAccountInternalID AS PayingBankAccountInternalID,
  a.PayeeCompanyCode AS PayeeCompanyCode,
  c.BankAccountNumber AS PayeeBankAccount,
  c.BankAccountInternalID AS PayeeBankAccountInternalID,
  a.PaymentMethod AS PaymentMethod
FROM P_RepetitiveCodeBasic AS a
INNER JOIN I_BankAcctIdVH AS b ON /* join condition not captured in parsed metadata */
INNER JOIN I_BankAcctIdVH AS c ON /* join condition not captured in parsed metadata */
;