SHSM_GLACCOUNTHIERARCHYVH_42

DDL: SHSM_GLACCOUNTHIERARCHYVH_42 Type: view_entity Package: FINS_GEN_UTILS

GL Account Hierarchy Value Help

SHSM_GLACCOUNTHIERARCHYVH_42 is a CDS View that provides data about "GL Account Hierarchy Value Help" in SAP S/4HANA. It reads from 2 data sources (hrrp_dir_n, hrrp_dirt_n) and exposes 5 fields with key fields GLAccountHierarchy, ValidityEndDate, Language. Part of development package FINS_GEN_UTILS.

Data Sources (2)

SourceAliasJoin Type
hrrp_dir_n hrrp_dir_n from
hrrp_dirt_n hrrp_dirt_n left_outer

Annotations (7)

NameValueLevelField
EndUserText.label GL Account Hierarchy Value Help view
ObjectModel.representativeKey GLAccountHierarchy view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #XL view
AccessControl.authorizationCheck #NOT_REQUIRED view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY GLAccountHierarchy
KEY ValidityEndDate hrrp_dir_n hryvalto Valid To
KEY Language hrrp_dirt_n spras Off. Language
ValidityStartDate hrrp_dir_n hryvalfrom Valid From
GLAccountHierarchyName hrrp_dirt_n hrytxt Description

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_GLACCOUNTHIERARCHYVH_42.
-- 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 SHSM_GLACCOUNTHIERARCHYVH_42 AS
SELECT
  cast( hrrp_dir_n.hryid_42 as fis_glaccthier preserving type ) AS GLAccountHierarchy,
  hrrp_dir_n.hryvalto AS ValidityEndDate,
  hrrp_dirt_n.spras AS Language,
  hrrp_dir_n.hryvalfrom AS ValidityStartDate,
  hrrp_dirt_n.hrytxt AS GLAccountHierarchyName
FROM hrrp_dir_n
LEFT OUTER JOIN hrrp_dirt_n ON /* join condition not captured in parsed metadata */
;