I_BankAcctRevEmailTemplate

DDL: I_BANKACCTREVEMAILTEMPLATE SQL: IBANKACCREVEMAIL Type: view COMPOSITE Package: FCLM_BAM

Email Template for Bank Account Revision

I_BankAcctRevEmailTemplate (Composite)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Public Edition with built-in and side-by-side extension capabilities.

Financial Operations

I_BankAcctRevEmailTemplate is a Composite CDS View that provides data about "Email Template for Bank Account Revision" in SAP S/4HANA. It reads from 1 data source (I_BankAccountWithRevision) and exposes 13 fields with key fields BankAccountInternalID, BankAccountRevision. Part of development package FCLM_BAM.

SAP Help Documentation

CategoryCDS Views for Cash and Liquidity Management
StatusReleased
Purpose
This CDS view retrieves the data for a bank account revision. The CDS view is used in email template FCLM_BAM_REV_ACTIVATED_EMAIL to notify the revision submitter that the bank account revision was activated. This CDS view provides the prerequisites for answering the following business questions: For which bank account was a revision activated?

Structure
Measures and attributes Some important measures and attributes are: Bank Account Technical ID Bank Account Revision Number Bank Account Number Bank Country/Region Key Bank Key Bank Account Type Currency Profit Center Segment Business Area Creation Date of Bank Account Revision Activator of Bank Account Revision URL Link to the Bank Account

View on SAP Help Portal →

SAP API Hub

CategoryComposite
StateC1
Line of BusinessFinancial Operations
Application ComponentFIN-FSCM-CLM-BAM-2CL
CapabilitiesData Source in SQL Select,Data Source for Defining CDS Entities,Association Target for Defining CDS Entities
Extensible (Key User)No
Extensible (Developer)No
Release State (Key User)Released
Release State (Developer)Released
PackageFinancial Operations for SAP S/4HANA Cloud Public Edition
Description <p>This CDS view retrieves the data for a bank account revision. The CDS view is used in email template FCLM_BAM_REV_ACTIVATED_EMAIL to notify the revision submitter that the bank account revision was activated.</p> <p>This CDS view provides the prerequisites for answering the following business questions:</p> <ul> <li> <p>For which bank account was a revision activated?</p> </li> </ul>

Documentation

Data Sources (1)

SourceAliasJoin Type
I_BankAccountWithRevision I_BankAccountWithRevision from

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName IBANKACCREVEMAIL view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Email Template for Bank Account Revision view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.serviceQuality #C view
AccessControl.personalData.blocking #REQUIRED view
Metadata.ignorePropagatedAnnotations true view
VDM.viewType #COMPOSITE view
ClientHandling.algorithm #SESSION_VARIABLE view
ClientHandling.type #INHERITED view

Fields (13)

KeyFieldSource TableSource FieldDescription
KEY BankAccountInternalID BankAccountInternalID Bank Account Technical ID
KEY BankAccountRevision BankAccountRevision Revision Number
BankCountry BankCountry Bank Country/Region Key
Bank Bank Bank Number
BankAccountNumber BankAccountNumber Bank Account Number
BankAccountCurrency BankAccountCurrency Currency Key
CompanyCode CompanyCode Receiver Company Code
ProfitCenter ProfitCenter Profit Center
BusinessArea BusinessArea Business Area
Segment Segment Segment for Segmental Reporting
BankAccountType BankAccountType Bank Account Type ID
BankAccountRevActivatedByUser BankAccountRevActivatedByUser Bank Account: Activated By
BankAccountURL Bank Account URL

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_BankAcctRevEmailTemplate.
-- 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: IBANKACCREVEMAIL

CREATE VIEW I_BankAcctRevEmailTemplate AS
SELECT
  BankAccountInternalID,
  BankAccountRevision,
  BankCountry,
  Bank,
  BankAccountNumber,
  BankAccountCurrency,
  CompanyCode,
  ProfitCenter,
  BusinessArea,
  Segment,
  BankAccountType,
  BankAccountRevActivatedByUser,
  cast( ' ' as fclm_bam_acc_url) AS BankAccountURL
FROM I_BankAccountWithRevision
;