I_PrepaymentAgrmtUserNameText

DDL: I_PREPAYMENTAGRMTUSERNAMETEXT SQL: IPPMGUSRTXT Type: view BASIC

Prepayment Agreement User Name Text

I_PrepaymentAgrmtUserNameText is a Basic CDS View that provides data about "Prepayment Agreement User Name Text" 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 (13)

NameValueLevelField
AbapCatalog.sqlViewName IPPMGUSRTXT view
AbapCatalog.compiler.compareFilter true view
AbapCatalog.preserveKey true view
AccessControl.authorizationCheck #MANDATORY view
AccessControl.personalData.blocking #REQUIRED view
EndUserText.label Prepayment Agreement User Name Text view
VDM.viewType #BASIC view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.serviceQuality #A view
ClientHandling.type #CLIENT_DEPENDENT view
ClientHandling.algorithm #SESSION_VARIABLE view
Search.searchable true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY UserName bname {@i18n>UserName}
UserID accnt {@i18n>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_PrepaymentAgrmtUserNameText.
-- 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: IPPMGUSRTXT

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