I_AcctAssignmentCategoryText

DDL: I_ACCTASSIGNMENTCATEGORYTEXT SQL: IMMACCTASSCATT Type: view BASIC Package: VDM_MM_GF

Account Assignment Category - Text

I_AcctAssignmentCategoryText (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Public Edition with built-in and side-by-side extension capabilities.

Database & Data Management

I_AcctAssignmentCategoryText is a Basic CDS View that provides data about "Account Assignment Category - Text" in SAP S/4HANA. It reads from 1 data source (t163i) and exposes 5 fields with key fields AccountAssignmentCategory, Language. It has 1 association to related views. It is exposed through 2 OData services (ASQL_F3302, ASQL_F3303). Part of development package VDM_MM_GF.

SAP API Hub

CategoryBasic
StateC1
Line of BusinessDatabase & Data Management
Application ComponentMM
CapabilitiesData Source in SQL Select,Association Target for Defining CDS Entities,Data Source for Defining CDS Entities,Language-Dependent Text,Data Source for Search
Extensible (Key User)No
Extensible (Developer)No
Release State (Key User)Released
Release State (Developer)Released
PackageDatabase and Data Management for SAP S/4HANA Cloud Public Edition
Description <p>This CDS view retrieves all the possible account assignment categories that can be assigned to a purchasing document item. The account assignment category indicates whether an item is to be assigned to an auxiliary account such as a cost center. It also determines which account assignment details are required for the item, for example, cost center or account number.</p> This CDS view provides the data to answer the following business questions:<ul> <li> <p>What are the possible account assignment categories that can be assigned to a purchase requisitions item?</p> </li> </ul> <p>To help you decide which CDS view to use for your purposes, SAP has introduced the annotation ObjectModel.supportedCapabilities that indicates the most appropriate use cases for each CDS view. To find out what use cases are best supported by this CDS view, access the entry of the CDS view in the View Browser app and find the values for this annotation under the Annotation tab. For more information, see Supported Capabilities for CDS Views.</p>

Documentation

Data Sources (1)

SourceAliasJoin Type
t163i t163i from

Associations (1)

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

Annotations (15)

NameValueLevelField
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
ObjectModel.dataCategory #TEXT view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey AccountAssignmentCategory view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view
EndUserText.label Account Assignment Category - Text view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
Metadata.ignorePropagatedAnnotations true view
AccessControl.authorizationCheck #NOT_REQUIRED view
AbapCatalog.sqlViewName IMMACCTASSCATT view
Search.searchable true view

OData Services (2)

ServiceBindingVersionContractRelease
ASQL_F3302 ASQL_F3302 C2 NOT_RELEASED
ASQL_F3303 ASQL_F3303 C2 NOT_RELEASED

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY AccountAssignmentCategory knttp Account Assignment Category
KEY Language spras Off. Language
AcctAssignmentCategoryName t163i knttx Account Assignment Category Description
_AccountAssignmentCat _AccountAssignmentCat
_Language _Language

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_AcctAssignmentCategoryText.
-- 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: IMMACCTASSCATT

CREATE VIEW I_AcctAssignmentCategoryText AS
SELECT
  knttp AS AccountAssignmentCategory,
  spras AS Language,
  t163i.knttx AS AcctAssignmentCategoryName
FROM t163i
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;