FAC_CDS_UH_HD_ATTR_VAL_JSON

DDL: FAC_CDS_UH_HD_ATTR_VAL_JSON SQL: FACV_UH_HATTRVAL Type: view

Header Attribute Value

FAC_CDS_UH_HD_ATTR_VAL_JSON is a CDS View that provides data about "Header Attribute Value" in SAP S/4HANA. It reads from 10 data sources and exposes 11 fields. It has 1 association to related views.

Data Sources (10)

SourceAliasJoin Type
uhdt_hatr atrdef inner
uhdt_hatr atrdef inner
uhdt_hattrvals atrval from
uhdt_hattrvals atrval union
uhdt_havt ftxt left_outer
uhdt_havt ftxt left_outer
uhdt_hattrvalst text left_outer
uhdt_hattrvalst text left_outer
uhdt_vrsn ver inner
uhdt_vrsn ver inner

Associations (1)

CardinalityTargetAliasCondition
[1..1] fac_cds_uh_category to_category $projection.hier_catg = to_category.CategoryKey

Annotations (8)

NameValueLevelField
AbapCatalog.sqlViewName FACV_UH_HATTRVAL view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Header Attribute Value view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view

Fields (11)

KeyFieldSource TableSource FieldDescription
client uhdt_hattrvals client Workflow definition: Client
hier_catg uhdt_hattrvals hier_catg Type
ver_id uhdt_hattrvals ver_id Version ID
attr_name uhdt_hattrvals attr_name Attribute Name
hval_txtATTR_UXFCendendasattr_val
client Workflow definition: Client
hier_catg uhdt_hattrvals hier_catg Type
ver_id uhdt_vrsn ver_id Version ID
attr_name uhdt_hattrvals attr_name Attribute Name
hval_txtATTR_UXFCendendasattr_val
to_category to_category

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 FAC_CDS_UH_HD_ATTR_VAL_JSON.
-- 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: FACV_UH_HATTRVAL

CREATE VIEW FAC_CDS_UH_HD_ATTR_VAL_JSON AS
SELECT
  atrval.client AS client,
  atrval.hier_catg AS hier_catg,
  atrval.ver_id AS ver_id,
  atrval.attr_name AS attr_name,
  to_category
FROM uhdt_hattrvals AS atrval
INNER JOIN uhdt_hatr AS atrdef ON /* join condition not captured in parsed metadata */
INNER JOIN uhdt_vrsn AS ver ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN uhdt_hattrvalst AS text ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN uhdt_havt AS ftxt ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN fac_cds_uh_category AS to_category ON hier_catg = to_category.CategoryKey  -- association [1..1]
-- UNION with additional select branch(es): uhdt_hattrvals
;