I_AccountAssignmentType

DDL: I_ACCOUNTASSIGNMENTTYPE SQL: IFIACTASSGNM Type: view BASIC

Account Assignment Type

I_AccountAssignmentType (Basic)

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

Account Assignment Type · 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.

SAP API Hub

StateC1
Line of BusinessAccounting and Financial Close
Application ComponentFI-FIO-GL-IS
CapabilitiesData Source for Data Extraction, Data Source for Defining CDS Entities, Association Target for Defining CDS Entities
PackageAccounting and Financial Close for SAP S/4HANA Cloud Private 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..*]
;