I_EWM_AccountAssgmtCatText

DDL: I_EWM_ACCOUNTASSGMTCATTEXT Type: view_entity BASIC Package: VDM_EWM_CORE

Account Assgnmt Category - Text

I_EWM_AccountAssgmtCatText is a Basic CDS View that provides data about "Account Assgnmt Category - Text" in SAP S/4HANA. It reads from 1 data source (/scwm/tacc_catt) and exposes 5 fields with key fields Language, EWMAccountAssignmentCategory. It has 2 associations to related views. It is exposed through 2 OData services (ASQL_F5340, ASQL_F5341). Part of development package VDM_EWM_CORE.

Data Sources (1)

SourceAliasJoin Type
/scwm/tacc_catt /scwm/tacc_catt from

Associations (2)

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

Annotations (10)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Account Assgnmt Category - Text view
VDM.viewType #BASIC view
ObjectModel.representativeKey EWMAccountAssignmentCategory view
ObjectModel.dataCategory #TEXT view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view
Search.searchable true view

OData Services (2)

ServiceBindingVersionContractRelease
ASQL_F5340 ASQL_F5340 C2 NOT_RELEASED
ASQL_F5341 ASQL_F5341 C2 NOT_RELEASED

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Language langu Primary lang.
KEY EWMAccountAssignmentCategory acc_cat Acct.Assig.Cat.
EWMAccountAssignmentCatName acc_cat_text Acc.A.Cat. Name
_Language _Language
_AccountAssgmtCat _AccountAssgmtCat

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_EWM_AccountAssgmtCatText.
-- 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_EWM_AccountAssgmtCatText AS
SELECT
  langu AS Language,
  acc_cat AS EWMAccountAssignmentCategory,
  acc_cat_text AS EWMAccountAssignmentCatName
FROM /scwm/tacc_catt
LEFT OUTER JOIN I_EWM_AccountAssgmtCat AS _AccountAssgmtCat ON EWMAccountAssignmentCategory = _AccountAssgmtCat.EWMAccountAssignmentCategory  -- association [1..1]
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;