SHSM_VIRTACCT

DDL: SHSM_VIRTACCT SQL: SHSMVIRTACCT Type: view

SHSM_VIRTACCT is a CDS View in SAP S/4HANA. It reads from 1 data source (isjpvirtacct) and exposes 4 fields with key fields bankl, banks, virtacctnr.

Data Sources (1)

SourceAliasJoin Type
isjpvirtacct isjpvirtacct from

Annotations (11)

NameValueLevelField
AbapCatalog.compiler.compareFilter true view
AbapCatalog.sqlViewName SHSMVIRTACCT view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey virtacctnr view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY bankl
KEY banks
KEY virtacctnr
bukrs

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 SHSM_VIRTACCT.
-- 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: SHSMVIRTACCT

CREATE VIEW SHSM_VIRTACCT AS
SELECT
  cast( isjpvirtacct.bankl as bankk preserving type ) AS bankl,
  cast( isjpvirtacct.banks as banks preserving type ) AS banks,
  cast( isjpvirtacct.virtacctnr as isjpvirtacctnr preserving type ) AS virtacctnr,
  cast( isjpvirtacct.bukrs as bukrs preserving type ) AS bukrs
FROM isjpvirtacct
;