ATOV_BUSINESS_USER

DDL: ATOV_BUSINESS_USER SQL: ATOV_BUS_USER Type: view

ATO: Business User

ATOV_BUSINESS_USER is a CDS View that provides data about "ATO: Business User" in SAP S/4HANA. It reads from 3 data sources (ATOV_USER_ASSIGNMENT, I_BusinessUserVH, usrefus) and exposes 6 fields with key field user_id.

Data Sources (3)

SourceAliasJoin Type
ATOV_USER_ASSIGNMENT assigned_namespace left_outer
I_BusinessUserVH business_user from
usrefus useralias inner

Annotations (5)

NameValueLevelField
AbapCatalog.sqlViewName ATOV_BUS_USER view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #NOT_ALLOWED view
EndUserText.label ATO: Business User view

Fields (6)

KeyFieldSource TableSource FieldDescription
KEY user_id UserID User Name
person_id BusinessPartner Issuing Authority
last_name LastName Last Name
first_name FirstName First Name
full_name PersonFullName Full Name
user_alias usrefus useralias Alias

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 ATOV_BUSINESS_USER.
-- 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: ATOV_BUS_USER

CREATE VIEW ATOV_BUSINESS_USER AS
SELECT
  UserID AS user_id,
  BusinessPartner AS person_id,
  LastName AS last_name,
  FirstName AS first_name,
  PersonFullName AS full_name,
  useralias.useralias AS user_alias
FROM I_BusinessUserVH AS business_user
INNER JOIN usrefus AS useralias ON /* join condition not captured in parsed metadata */
LEFT OUTER JOIN ATOV_USER_ASSIGNMENT AS assigned_namespace ON /* join condition not captured in parsed metadata */
;