I_FinancialServicesBranchT

DDL: I_FINANCIALSERVICESBRANCHT Type: view_entity BASIC Package: FIN_FS_ACCDIM_DB

Financial Services Branch - Text

I_FinancialServicesBranchT (Basic)

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

Financial Services

I_FinancialServicesBranchT is a Basic CDS View that provides data about "Financial Services Branch - Text" in SAP S/4HANA. It reads from 1 data source (ffs_d_branch_t) and exposes 6 fields with key fields Language, FinancialServicesBranch. It has 1 association to related views. Part of development package FIN_FS_ACCDIM_DB.

SAP API Hub

CategoryBasic
StateC1
Line of BusinessFinancial Services
Application ComponentFIN-IE-FS-2CL
CapabilitiesData Source for Defining CDS Entities,Data Source in SQL Select,Language-Dependent Text,Association Target for Defining CDS Entities,Data Source for Search
Extensible (Key User)No
Extensible (Developer)No
Release State (Key User)Released
Release State (Developer)Released
PackageFinancial Services for SAP S/4HANA Cloud Public Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
ffs_d_branch_t ffs_d_branch_t from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (12)

NameValueLevelField
EndUserText.label Financial Services Branch - Text view
ObjectModel.representativeKey FinancialServicesBranch view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
Search.searchable true view
AccessControl.authorizationCheck #MANDATORY view
Metadata.ignorePropagatedAnnotations true view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY Language langu Primary lang.
KEY FinancialServicesBranch branch_id Branch (Financial Services)
FinancialServicesBranchName Description of Branch (Financial Services)
LanguageName Name of Language
_FinancialServicesBranch _FinancialServicesBranch
_Language _Language

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_FinancialServicesBranchT.
-- 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.

CREATE VIEW I_FinancialServicesBranchT AS
SELECT
  langu AS Language,
  branch_id AS FinancialServicesBranch,
  cast(branch_tt as ffs_vdm_branch_tt preserving type ) AS FinancialServicesBranchName,
  _Language._Text[Language = $session.system_language].LanguageName AS LanguageName
FROM ffs_d_branch_t
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;