I_BankAcctContrTypeVH

DDL: I_BANKACCTCONTRTYPEVH SQL: ICONTRTYPEVH Type: view BASIC

Bank Account Contract Type

I_BankAcctContrTypeVH is a Basic CDS View that provides data about "Bank Account Contract Type" in SAP S/4HANA. It reads from 1 data source (fclm_bam_ac_type) and exposes 3 fields with key field BankAccountType. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
fclm_bam_ac_type fclm_bam_ac_type from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_BankAcctContrTypeText _Text $projection.BankAccountContractType = _Text.BankAccountContractType and _Text.Language = $session.system_language

Annotations (13)

NameValueLevelField
AbapCatalog.sqlViewName ICONTRTYPEVH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Bank Account Contract Type view
Search.searchable true view
VDM.viewType #BASIC 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
Consumption.ranked true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY BankAccountType acc_type_id Account Type
BankAccountContractType contract_type Document Type
BankAccountContractTypeName _Text BankAccountContractTypeName

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_BankAcctContrTypeVH.
-- 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: ICONTRTYPEVH

CREATE VIEW I_BankAcctContrTypeVH AS
SELECT
  acc_type_id AS BankAccountType,
  contract_type AS BankAccountContractType,
  _Text.BankAccountContractTypeName AS BankAccountContractTypeName
FROM fclm_bam_ac_type
LEFT OUTER JOIN I_BankAcctContrTypeText AS _Text ON BankAccountContractType = _Text.BankAccountContractType AND _Text.Language = $session.system_language  -- association [0..1]
;