c_rsau_params

DDL: C_RSAU_PARAMS SQL: RSAU_PARAMS_UI Type: view

C-View for SAL related parameters

c_rsau_params is a CDS View that provides data about "C-View for SAL related parameters" in SAP S/4HANA. It reads from 1 data source (rsauprof) and exposes 7 fields with key fields profile, param_no.

Data Sources (1)

SourceAliasJoin Type
rsauprof rsauprof from

Annotations (4)

NameValueLevelField
AbapCatalog.sqlViewName RSAU_PARAMS_UI view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label C-View for SAL related parameters view

Fields (7)

KeyFieldSource TableSource FieldDescription
KEY profile profname Profile name
KEY param_no slotno Audit log: Number of the recording parameter (slot)
param_name currprof Parameter
param_value severity Value
Status status Status
user_changed cuname Last Changed by
date_changed cdate Last Changed on

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_rsau_params.
-- 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: RSAU_PARAMS_UI

CREATE VIEW c_rsau_params AS
SELECT
  profname AS profile,
  slotno AS param_no,
  currprof AS param_name,
  severity AS param_value,
  Status,
  cuname AS user_changed,
  cdate AS date_changed
FROM rsauprof
;