I_AccountAssignmentType

DDL: I_ACCOUNTASSIGNMENTTYPE SQL: IFIACTASSGNM Type: view BASIC Package: FINS_FIS_FICO

Account Assignment Type

I_AccountAssignmentType (Basic)

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

AccountAssignmentType · Accounting and Financial Close

I_AccountAssignmentType is a Basic CDS View that provides data about "Account Assignment Type" in SAP S/4HANA. It reads from 1 data source (tbo00) and exposes 2 fields with key field AccountAssignmentType. It has 1 association to related views. Part of development package FINS_FIS_FICO.

SAP API Hub

CategoryBasic
StateC1
Line of BusinessAccounting and Financial Close
Application ComponentFI-GL-IS-2CL
CapabilitiesData Source for Data Extraction,Data Source for Defining CDS Entities,Association Target for Defining CDS Entities
Extensible (Key User)No
Extensible (Developer)No
Release State (Key User)Released
Release State (Developer)Released
PackageAccounting and Financial Close for SAP S/4HANA Cloud Public Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
tbo00 tbo00 from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_AccountAssignmentTypeT _Text $projection.AccountAssignmentType = _Text.AccountAssignmentType

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName IFIACTASSGNM view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
VDM.viewType #BASIC view
EndUserText.label Account Assignment Type view
AbapCatalog.buffering.status #ACTIVE view
AbapCatalog.buffering.type #FULL view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.representativeKey AccountAssignmentType view
ObjectModel.sapObjectNodeType.name AccountAssignmentType view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #M view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY AccountAssignmentType Account Assignment Type
_Text _Text

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_AccountAssignmentType.
-- 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: IFIACTASSGNM

CREATE VIEW I_AccountAssignmentType AS
SELECT
  cast(obart as fis_obart preserving type ) AS AccountAssignmentType
FROM tbo00
LEFT OUTER JOIN I_AccountAssignmentTypeT AS _Text ON AccountAssignmentType = _Text.AccountAssignmentType  -- association [0..*]
;