I_RO_SAFTMvtTypeGLAccount

DDL: I_RO_SAFTMVTTYPEGLACCOUNT Type: view_entity BASIC

RO SAFT Movement Type for GL Accounts

I_RO_SAFTMvtTypeGLAccount is a Basic CDS View (Dimension) that provides data about "RO SAFT Movement Type for GL Accounts" in SAP S/4HANA. It reads from 1 data source (/ceecv/rocmvtgla) and exposes 6 fields with key fields CompanyCode, RO_SAFTMovementType, ValuationGroupingCode, ValuationClass.

Data Sources (1)

SourceAliasJoin Type
/ceecv/rocmvtgla /ceecv/rocmvtgla from

Annotations (11)

NameValueLevelField
VDM.viewType #BASIC view
AccessControl.personalData.blocking #NOT_REQUIRED view
AccessControl.authorizationCheck #MANDATORY view
EndUserText.label RO SAFT Movement Type for GL Accounts view
Metadata.ignorePropagatedAnnotations true view
Metadata.allowExtensions true view
Analytics.dataCategory #DIMENSION view
Analytics.internalName #LOCAL view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #CUSTOMIZING view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY CompanyCode bukrs Value
KEY RO_SAFTMovementType mov_type Movement Type
KEY ValuationGroupingCode bwmod Val.Grpg Code
KEY ValuationClass bklas Valuation Class
GLAccount account_id G/L Account
AlternativeGLAccount alt_gl_account Altern. Account

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_RO_SAFTMvtTypeGLAccount.
-- 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.

CREATE VIEW I_RO_SAFTMvtTypeGLAccount AS
SELECT
  bukrs AS CompanyCode,
  mov_type AS RO_SAFTMovementType,
  bwmod AS ValuationGroupingCode,
  bklas AS ValuationClass,
  account_id AS GLAccount,
  alt_gl_account AS AlternativeGLAccount
FROM /ceecv/rocmvtgla
;