I_BankAccountTypeVH
Account Type
I_BankAccountTypeVH is a Basic CDS View that provides data about "Account Type" in SAP S/4HANA. It reads from 1 data source (fclm_bam_ac_type) and exposes 4 fields with key field BankAccountType. It has 2 associations to related views. It is exposed through 1 OData service (UI_BANKPOWEROFATTORNEY_MNG). It is used in 1 Fiori application: Manage Powers of Attorney for Banking Transactions.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| fclm_bam_ac_type | fclm_bam_ac_type | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_BankAccountType | _Text | $projection.BankAccountType = _Text.BankAccountType and _Text.Language = $session.system_language |
| [0..1] | I_BankAcctContrTypeVH | _ContractType | $projection.BankAccountType = _ContractType.BankAccountType |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IBANKACCTYPEVH | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Search.searchable | true | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.serviceQuality | #B | view | |
| EndUserText.label | Account Type | view | |
| Consumption.ranked | true | view |
OData Services (1)
| Service | Binding | Version | Contract | Release |
|---|---|---|---|---|
| UI_BANKPOWEROFATTORNEY_MNG | UI_BANKPOWEROFATTORNEY_MNG | V2 | C1 | NOT_RELEASED |
Fiori Apps (1)
| App ID | App Name | Type | Description |
|---|---|---|---|
| F5742 | Manage Powers of Attorney for Banking Transactions | Transactional | With this app, you can represent and manage the powers of attorney for banking transactions for your company codes. A power of attorney for banking transactions represents the legal power of attorney that a company has granted to one or more persons to carry out banking transactions on behalf of the company. In the power of attorney, you assign the principals, the authorized representatives, the bank accounts, and the permitted activities. |
Manage Powers of Attorney for Banking Transactions
Business Role: Cash Manager
With is feature, you can represent and manage the powers of attorney for banking transactions for your company codes. A power of attorney for banking transactions represents the legal power of attorney that a company has granted to one or more persons to carry out banking transactions on behalf of the company. In the power of attorney, you assign the principals, the authorized representatives, the bank accounts, and the permitted activities.
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | BankAccountType | acc_type_id | ||
| BankAccountTypeText | _Text | BankAccountTypeText | ||
| BankAccountContractType | _ContractType | BankAccountContractType | ||
| BankAccountContractTypeNameassociation |
@AbapCatalog.sqlViewName: 'IBANKACCTYPEVH'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@Search.searchable: true
@VDM.viewType: #BASIC
@ObjectModel.dataCategory: #VALUE_HELP
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.serviceQuality: #B
@EndUserText.label: 'Account Type'
@Consumption.ranked: true
define view I_BankAccountTypeVH
as select from fclm_bam_ac_type
association [0..1] to I_BankAccountType as _Text on $projection.BankAccountType = _Text.BankAccountType
and _Text.Language = $session.system_language
association [0..1] to I_BankAcctContrTypeVH as _ContractType on $projection.BankAccountType = _ContractType.BankAccountType
{
// @ObjectModel.text.association: '_Text'
@Search.defaultSearchElement: true
@Search.ranking: #HIGH
@Search.fuzzinessThreshold: 0.8
@ObjectModel.text.element: ['BankAccountTypeText']
key acc_type_id as BankAccountType,
@Search.ranking: #LOW
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
_Text.BankAccountTypeText,
@Search.defaultSearchElement: true
@Search.ranking: #LOW
@Search.fuzzinessThreshold: 0.8
@ObjectModel.text.element: ['BankAccountContractTypeName']
@UI.hidden: true
_ContractType.BankAccountContractType,
@Search.ranking: #LOW
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.8
_ContractType.BankAccountContractTypeName
-- association
// _Text
}
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA