P_RepetitiveCode

DDL: P_REPETITIVECODE SQL: PREPETITIVECODE Type: view BASIC

P_RepetitiveCode is a Basic CDS View in SAP S/4HANA. It reads from 1 data source (fibl_rpcode) and exposes 7 fields with key fields PayingCompanyCode, HouseBank, RepetitiveCode.

Data Sources (1)

SourceAliasJoin Type
fibl_rpcode fibl_rpcode from

Annotations (7)

NameValueLevelField
VDM.private true view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.sqlViewName PREPETITIVECODE view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropogatedAnnotations true view
AbapCatalog.preserveKey true view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY PayingCompanyCode bukrs Value
KEY HouseBank hbkid House Bank
KEY RepetitiveCode rpcode Repetitive Code
HouseBankAccount hktid House Bank Account
TargetCompanyCode pbukr Target Company Code
Partner partn Ptr/cus
PartnerAccount parta Bank Details

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 P_RepetitiveCode.
-- 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: PREPETITIVECODE

CREATE VIEW P_RepetitiveCode AS
SELECT
  bukrs AS PayingCompanyCode,
  hbkid AS HouseBank,
  rpcode AS RepetitiveCode,
  hktid AS HouseBankAccount,
  pbukr AS TargetCompanyCode,
  partn AS Partner,
  parta AS PartnerAccount
FROM fibl_rpcode
;