TRAC_ADTL_SE_MISC

DDL: TRAC_ADTL_SE_MISC SQL: TRACADTLSEMISC Type: view

Miscellaneous Data

TRAC_ADTL_SE_MISC is a CDS View that provides data about "Miscellaneous Data" in SAP S/4HANA. It reads from 1 data source (I_Currency) and exposes 4 fields.

Data Sources (1)

SourceAliasJoin Type
I_Currency I_Currency from

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName TRACADTLSEMISC view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Miscellaneous Data view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #S view
ClientHandling.algorithm #SESSION_VARIABLE view

Fields (4)

KeyFieldSource TableSource FieldDescription
SecurityAccountGroup
SecurityAccountType
TreasuryPositionLongShortCode
SecuritiesAccountCategory

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 TRAC_ADTL_SE_MISC.
-- 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: TRACADTLSEMISC

CREATE VIEW TRAC_ADTL_SE_MISC AS
SELECT
  cast( 'ZDEPOTGRP1' as ftr_gen_sec_account_group preserving type) AS SecurityAccountGroup,
  cast( 'XYZ' as ftr_gen_security_account_type preserving type ) AS SecurityAccountType,
  cast( 'L' as ftr_gen_long_short_code preserving type ) AS TreasuryPositionLongShortCode,
  cast( 'X' as tpm_secacc_cat preserving type ) AS SecuritiesAccountCategory
FROM I_Currency
;