I_AccrObjResponsiblePerson

DDL: I_ACCROBJRESPONSIBLEPERSON Type: view_entity COMPOSITE

Responsible User

I_AccrObjResponsiblePerson is a Composite CDS View that provides data about "Responsible User" in SAP S/4HANA. It reads from 3 data sources (I_ManualAccrualObject, I_AddressPersonName, I_User) and exposes 4 fields with key field UserID.

Data Sources (3)

SourceAliasJoin Type
I_ManualAccrualObject acesobj from
I_AddressPersonName adrp inner
I_User usr21 inner

Annotations (11)

NameValueLevelField
Search.searchable true view
Consumption.ranked true view
EndUserText.label Responsible User view
Metadata.ignorePropagatedAnnotations true view
AccessControl.authorizationCheck #MANDATORY view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.usageType.sizeCategory #XL view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.representativeKey UserID view
VDM.viewType #COMPOSITE view
AccessControl.personalData.blocking #NOT_REQUIRED view

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY UserID I_ManualAccrualObject PersonResponsibleName Person Resp.
AccrObjPersonResponsibleName I_AddressPersonName PersonFullName Full Name
CompanyCode I_ManualAccrualObject CompanyCode Receiver Company Code
ManualAccrualsAccrObjectType I_ManualAccrualObject ManualAccrualsAccrObjectType Accr Object Cat

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_AccrObjResponsiblePerson.
-- 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.

CREATE VIEW I_AccrObjResponsiblePerson AS
SELECT
  acesobj.PersonResponsibleName AS UserID,
  adrp.PersonFullName AS AccrObjPersonResponsibleName,
  acesobj.CompanyCode AS CompanyCode,
  acesobj.ManualAccrualsAccrObjectType AS ManualAccrualsAccrObjectType
FROM I_ManualAccrualObject AS acesobj
INNER JOIN I_User AS usr21 ON /* join condition not captured in parsed metadata */
INNER JOIN I_AddressPersonName AS adrp ON /* join condition not captured in parsed metadata */
;