I_OrdFlfllmntRespyAssgdUserVH

DDL: I_ORDFLFLLMNTRESPYASSGDUSERVH SQL: IATPRESPNUSRVH Type: view COMPOSITE

Order Fulfillment Responsibility Assigned User Value Help

I_OrdFlfllmntRespyAssgdUserVH is a Composite CDS View that provides data about "Order Fulfillment Responsibility Assigned User Value Help" in SAP S/4HANA. It reads from 1 data source (I_BusinessUserBasic) and exposes 5 fields with key field UserID.

Data Sources (1)

SourceAliasJoin Type
I_BusinessUserBasic I_BusinessUserBasic from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName IATPRESPNUSRVH view
AbapCatalog.compiler.compareFilter true view
ClientHandling.algorithm #SESSION_VARIABLE view
AccessControl.authorizationCheck #CHECK view
AccessControl.personalData.blocking #REQUIRED view
VDM.viewType #COMPOSITE view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #ORGANIZATIONAL view
EndUserText.label Order Fulfillment Responsibility Assigned User Value Help view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY UserID UserID User Name
FirstName FirstName First Name
LastName LastName Last Name
FullName PersonFullName Full Name
IsBusinessPurposeCompleted IsBusinessPurposeCompleted Purpose Completed

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_OrdFlfllmntRespyAssgdUserVH.
-- 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: IATPRESPNUSRVH

CREATE VIEW I_OrdFlfllmntRespyAssgdUserVH AS
SELECT
  UserID,
  FirstName,
  LastName,
  PersonFullName AS FullName,
  IsBusinessPurposeCompleted
FROM I_BusinessUserBasic
;