I_AccAssgnmtCategory

DDL: I_ACCASSGNMTCATEGORY SQL: IACCASSGNMTCTGRY Type: view BASIC

Account Assignment Category

I_AccAssgnmtCategory is a Basic CDS View that provides data about "Account Assignment Category" in SAP S/4HANA. It reads from 1 data source (t163k) and exposes 5 fields with key field AccountAssignmentCategory. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
t163k t163k from

Associations (1)

CardinalityTargetAliasCondition
[1..*] t163i _t163i $projection.AccountAssignmentCategory = _t163i.knttp

Annotations (12)

NameValueLevelField
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
ClientHandling.algorithm #SESSION_VARIABLE view
AbapCatalog.sqlViewName IACCASSGNMTCTGRY view
EndUserText.label Account Assignment Category view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
Search.searchable true view
ObjectModel.representativeKey AccountAssignmentCategory view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY AccountAssignmentCategory t163k knttp AcctAssgnCat:CC
Language
AcctAssignmentCategoryName Acct Assgnt. Cat. Desc.
ConsumptionPosting t163k kzvbr Consumption
InventorySpecialStockType t163k sobkz Special Stock

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_AccAssgnmtCategory.
-- 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: IACCASSGNMTCTGRY

CREATE VIEW I_AccAssgnmtCategory AS
SELECT
  t163k.knttp AS AccountAssignmentCategory,
  _t163i[1: spras = $session.system_language].spras AS Language,
  _t163i[1: spras = $session.system_language].knttx AS AcctAssignmentCategoryName,
  t163k.kzvbr AS ConsumptionPosting,
  t163k.sobkz AS InventorySpecialStockType
FROM t163k
LEFT OUTER JOIN t163i AS _t163i ON AccountAssignmentCategory = _t163i.knttp  -- association [1..*]
;