I_ChgRecdCntctPersnStdVH

DDL: I_CHGRECDCNTCTPERSNSTDVH SQL: ICHGRCDCNTCTSVH Type: view COMPOSITE

Change Responsible

I_ChgRecdCntctPersnStdVH is a Composite CDS View that provides data about "Change Responsible" in SAP S/4HANA. It reads from 1 data source (I_ChangeRecordContactPerson) and exposes 19 fields with key field Partner.

Data Sources (1)

SourceAliasJoin Type
I_ChangeRecordContactPerson I_ChangeRecordContactPerson from

Annotations (15)

NameValueLevelField
AbapCatalog.sqlViewName ICHGRCDCNTCTSVH view
AbapCatalog.compiler.compareFilter true view
VDM.viewType #COMPOSITE view
ObjectModel.dataCategory #VALUE_HELP view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Change Responsible view
Search.searchable true view
ObjectModel.representativeKey Partner view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.dataClass #MASTER view
ObjectModel.usageType.sizeCategory #L view
AccessControl.personalData.blocking #NOT_REQUIRED view
ClientHandling.algorithm #SESSION_VARIABLE view
Metadata.ignorePropagatedAnnotations true view
Consumption.ranked true view

Fields (19)

KeyFieldSource TableSource FieldDescription
KEY Partner Partner With Partner
PersonFullName PersonFullName Full Name
AuthorizationGroup AuthorizationGroup AuthorizGroup
BusinessPartnerIsBlocked BusinessPartnerIsBlocked Central Block
IsBusinessPurposeCompleted IsBusinessPurposeCompleted Purpose Completed
PartnerFirstName PartnerFirstName First Name
PartnerLastName PartnerLastName Last Name
UserID UserID User Name
DataControllerSet I_ChangeRecordContactPerson DataControllerSet Data Ctrlr. Set
DataController1 I_ChangeRecordContactPerson DataController1 Data Controller
DataController2 I_ChangeRecordContactPerson DataController2 Data Controller
DataController3 I_ChangeRecordContactPerson DataController3 Data Controller
DataController4 I_ChangeRecordContactPerson DataController4 Data Controller
DataController5 I_ChangeRecordContactPerson DataController5 Data Controller
DataController6 I_ChangeRecordContactPerson DataController6 Data Controller
DataController7 I_ChangeRecordContactPerson DataController7 Data Controller
DataController8 I_ChangeRecordContactPerson DataController8 Data Controller
DataController9 I_ChangeRecordContactPerson DataController9 Data Controller
DataController10 I_ChangeRecordContactPerson DataController10 Data Controller

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_ChgRecdCntctPersnStdVH.
-- 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: ICHGRCDCNTCTSVH

CREATE VIEW I_ChgRecdCntctPersnStdVH AS
SELECT
  Partner,
  PersonFullName,
  AuthorizationGroup,
  BusinessPartnerIsBlocked,
  IsBusinessPurposeCompleted,
  PartnerFirstName,
  PartnerLastName,
  UserID,
  I_ChangeRecordContactPerson.DataControllerSet AS DataControllerSet,
  I_ChangeRecordContactPerson.DataController1 AS DataController1,
  I_ChangeRecordContactPerson.DataController2 AS DataController2,
  I_ChangeRecordContactPerson.DataController3 AS DataController3,
  I_ChangeRecordContactPerson.DataController4 AS DataController4,
  I_ChangeRecordContactPerson.DataController5 AS DataController5,
  I_ChangeRecordContactPerson.DataController6 AS DataController6,
  I_ChangeRecordContactPerson.DataController7 AS DataController7,
  I_ChangeRecordContactPerson.DataController8 AS DataController8,
  I_ChangeRecordContactPerson.DataController9 AS DataController9,
  I_ChangeRecordContactPerson.DataController10 AS DataController10
FROM I_ChangeRecordContactPerson
;