C_CAInvcgClrfctnIsAdmin

DDL: C_CAINVCGCLRFCTNISADMIN SQL: CCAINVCFCISADMIN Type: view CONSUMPTION

Administratorrechte Klärungsfall Fakt.

C_CAInvcgClrfctnIsAdmin is a Consumption CDS View that provides data about "Administratorrechte Klärungsfall Fakt." in SAP S/4HANA. It reads from 1 data source (I_User) and exposes 4 fields with key field CurrentProcessor. It has 1 association to related views.

Data Sources (1)

SourceAliasJoin Type
I_User I_User from

Associations (1)

CardinalityTargetAliasCondition
[1..1] I_User _User $projection.CurrentProcessor = _User.UserID

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName CCAINVCFCISADMIN view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Administratorrechte Klärungsfall Fakt. view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #CONSUMPTION view
ObjectModel.compositionRoot true view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MIXED view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY CurrentProcessor
CAClrfctnIsAdmin
CAClrfctnApplicationObject
_User _User

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 C_CAInvcgClrfctnIsAdmin.
-- 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: CCAINVCFCISADMIN

CREATE VIEW C_CAInvcgClrfctnIsAdmin AS
SELECT
  $session.user AS CurrentProcessor,
  ' ' AS CAClrfctnIsAdmin,
  'FINV' AS CAClrfctnApplicationObject
FROM I_User
LEFT OUTER JOIN I_User AS _User ON CurrentProcessor = _User.UserID  -- association [1..1]
;