FINS_TRR_ACC_ASS_OBJ_PROJ

DDL: FINS_TRR_ACC_ASS_OBJ_PROJ SQL: TRR_AAO_PD Type: view

Account Assignment Object

FINS_TRR_ACC_ASS_OBJ_PROJ is a CDS View that provides data about "Account Assignment Object" in SAP S/4HANA. It reads from 4 data sources (I_EntProjProjectRespPersn, P_Projwipdetpernr, proj, tkkaa).

Data Sources (4)

SourceAliasJoin Type
I_EntProjProjectRespPersn _EntProjProjectRespPersn left_outer
P_Projwipdetpernr P_Projwipdetpernr left_outer
proj proj inner
tkkaa tkkaa inner

Annotations (9)

NameValueLevelField
AbapCatalog.sqlViewName TRR_AAO_PD view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Account Assignment Object view
AccessControl.personalData.blocking #BLOCKED_DATA_EXCLUDED view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #XXL view
ObjectModel.usageType.dataClass #MIXED view

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 FINS_TRR_ACC_ASS_OBJ_PROJ.
-- 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: TRR_AAO_PD

CREATE VIEW FINS_TRR_ACC_ASS_OBJ_PROJ AS
SELECT *  -- field list not available in parsed metadata
LEFT OUTER JOIN I_EntProjProjectRespPersn AS _EntProjProjectRespPersn ON /* join condition not captured in parsed metadata */
INNER JOIN proj ON /* join condition not captured in parsed metadata */
INNER JOIN tkkaa ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN P_Projwipdetpernr ON /* join condition not captured in parsed metadata */
;