I_MakeBankTransferLog

DDL: I_MAKEBANKTRANSFERLOG SQL: IMBTPQLGFT Type: view BASIC

make bank transfer log

I_MakeBankTransferLog is a Basic CDS View that provides data about "make bank transfer log" in SAP S/4HANA. It reads from 2 data sources (P_MBTPAYMENTLOGINFO, payrq) and exposes 3 fields with key field PaymentRequest.

Data Sources (2)

SourceAliasJoin Type
P_MBTPAYMENTLOGINFO _PaymentLogInfo inner
payrq payrq from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IMBTPQLGFT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
ClientHandling.algorithm #SESSION_VARIABLE view
EndUserText.label make bank transfer log view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MIXED view
VDM.viewType #BASIC view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY PaymentRequest payrq keyno Key Number
LogNumber P_MBTPAYMENTLOGINFO ApplicationLogNumber UUID
LogHandle

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_MakeBankTransferLog.
-- 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: IMBTPQLGFT

CREATE VIEW I_MakeBankTransferLog AS
SELECT
  payrq.keyno AS PaymentRequest,
  _PaymentLogInfo.ApplicationLogNumber AS LogNumber,
  cast( _PaymentLogInfo.ApplicationLogHandle as char22 ) AS LogHandle
FROM payrq
INNER JOIN P_MBTPAYMENTLOGINFO AS _PaymentLogInfo ON /* join condition not captured in parsed metadata */
;