C_MM_AccountAssignCatValueHelp

DDL: C_MM_ACCOUNTASSIGNCATVALUEHELP SQL: CMMACACAT_VH Type: view CONSUMPTION

Account Assignment Category Value Help

C_MM_AccountAssignCatValueHelp is a Consumption CDS View that provides data about "Account Assignment Category Value Help" in SAP S/4HANA. It reads from 1 data source (I_AccountAssignmentCategory) and exposes 2 fields with key field AccountAssignmentCategory.

Data Sources (1)

SourceAliasJoin Type
I_AccountAssignmentCategory I_AccountAssignmentCategory from

Annotations (12)

NameValueLevelField
AbapCatalog.sqlViewName CMMACACAT_VH view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #CONSUMPTION view
Search.searchable true view
ObjectModel.semanticKey AccountAssignmentCategory view
ObjectModel.representativeKey AccountAssignmentCategory view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #S view
EndUserText.label Account Assignment Category Value Help view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY AccountAssignmentCategory AccountAssignmentCategory Account Assignment Category
AcctAssignmentCategoryName Account Assignment Category 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 C_MM_AccountAssignCatValueHelp.
-- 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: CMMACACAT_VH

CREATE VIEW C_MM_AccountAssignCatValueHelp AS
SELECT
  AccountAssignmentCategory,
  _Text[1: Language = $session.system_language].AcctAssignmentCategoryName AS AcctAssignmentCategoryName
FROM I_AccountAssignmentCategory
;