C_GRIRPurgDocRespUserVH

DDL: C_GRIRPURGDOCRESPUSERVH Type: view_entity CONSUMPTION Package: FINS_FIS_FICO_APPS

Value help for GRIR Responsible Person

C_GRIRPurgDocRespUserVH is a Consumption CDS View that provides data about "Value help for GRIR Responsible Person" in SAP S/4HANA. It reads from 1 data source (P_GRIRPurgDocRespUserVH) and exposes 4 fields with key fields PurchasingDocument, PurchasingDocumentItem, ResponsiblePerson. It has 1 association to related views. It is exposed through 1 OData service (ASQL_F3302). Part of development package FINS_FIS_FICO_APPS.

Data Sources (1)

SourceAliasJoin Type
P_GRIRPurgDocRespUserVH P_GRIRPurgDocRespUserVH from

Associations (1)

CardinalityTargetAliasCondition
[0..1] I_UserContactCard _ResponsiblePerson P_GRIRPurgDocRespUserVH.ResponsiblePerson = _ResponsiblePerson.ContactCardID

Annotations (10)

NameValueLevelField
AccessControl.authorizationCheck #CHECK view
EndUserText.label Value help for GRIR Responsible Person view
AccessControl.personalData.blocking #BLOCKED_DATA_EXCLUDED view
VDM.viewType #CONSUMPTION view
ObjectModel.representativeKey ResponsiblePerson view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.usageType.dataClass #MIXED view
ObjectModel.usageType.serviceQuality #D view
ObjectModel.dataCategory #VALUE_HELP view
Analytics.technicalName CFIGRIRRESPUSRVH view

OData Services (1)

ServiceBindingVersionContractRelease
ASQL_F3302 ASQL_F3302 C2 NOT_RELEASED

Fields (4)

KeyFieldSource TableSource FieldDescription
KEY PurchasingDocument P_GRIRPurgDocRespUserVH PurchasingDocument Purchasing Document
KEY PurchasingDocumentItem P_GRIRPurgDocRespUserVH PurchasingDocumentItem Purchasing Doc. Item
KEY ResponsiblePerson P_GRIRPurgDocRespUserVH ResponsiblePerson Processor
FullName _ResponsiblePerson FullName Name

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 C_GRIRPurgDocRespUserVH.
-- 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 C_GRIRPurgDocRespUserVH AS
SELECT
  P_GRIRPurgDocRespUserVH.PurchasingDocument AS PurchasingDocument,
  P_GRIRPurgDocRespUserVH.PurchasingDocumentItem AS PurchasingDocumentItem,
  P_GRIRPurgDocRespUserVH.ResponsiblePerson AS ResponsiblePerson,
  _ResponsiblePerson.FullName AS FullName
FROM P_GRIRPurgDocRespUserVH
LEFT OUTER JOIN I_UserContactCard AS _ResponsiblePerson ON P_GRIRPurgDocRespUserVH.ResponsiblePerson = _ResponsiblePerson.ContactCardID  -- association [0..1]
;