I_PrepaymentAgrmtUserNameVH

DDL: I_PREPAYMENTAGRMTUSERNAMEVH SQL: IPPMGUSRVH Type: view BASIC

Prepayment Agrmt User Name VH

I_PrepaymentAgrmtUserNameVH is a Basic CDS View that provides data about "Prepayment Agrmt User Name VH" in SAP S/4HANA. It reads from 2 data sources (I_User, usr02) and exposes 3 fields with key field UserName.

Data Sources (2)

SourceAliasJoin Type
I_User I_User inner
usr02 usr02 from

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName IPPMGUSRVH view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #REQUIRED view
EndUserText.label Prepayment Agrmt User Name VH view
VDM.viewType #BASIC view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.dataCategory #VALUE_HELP view
ObjectModel.representativeKey UserName view
ClientHandling.type #CLIENT_DEPENDENT view
ClientHandling.algorithm #SESSION_VARIABLE view
Search.searchable true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY UserName bname User Name
UserID accnt UserID
UserDescription UserDescription Created By

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 I_PrepaymentAgrmtUserNameVH.
-- 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: IPPMGUSRVH

CREATE VIEW I_PrepaymentAgrmtUserNameVH AS
SELECT
  bname AS UserName,
  accnt AS UserID,
  UserDescription
FROM usr02
INNER JOIN I_User ON /* join condition not captured in parsed metadata */
;