I_ChangeRecordPartner
Change Responsible
I_ChangeRecordPartner is a Basic CDS View that provides data about "Change Responsible" in SAP S/4HANA. It reads from 1 data source (but000) and exposes 15 fields with key field Partner. Part of development package VDM_PLMB_CR.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| but000 | bp | from |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #MANDATORY | view | |
| AccessControl.personalData.blocking | #BLOCKED_DATA_EXCLUDED | view | |
| EndUserText.label | Change Responsible | view | |
| Search.searchable | true | view | |
| ObjectModel.representativeKey | Partner | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| ObjectModel.usageType.sizeCategory | #XL | view |
Fields (15)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Partner | but000 | partner | |
| PersonFullName | but000 | name1_text | ||
| AuthorizationGroup | but000 | augrp | ||
| DataControllerSet | but000 | xdcset | ||
| DataController1 | but000 | data_ctrlr1 | ||
| DataController2 | but000 | data_ctrlr2 | ||
| DataController3 | but000 | data_ctrlr3 | ||
| DataController4 | but000 | data_ctrlr4 | ||
| DataController5 | but000 | data_ctrlr5 | ||
| DataController6 | but000 | data_ctrlr6 | ||
| DataController7 | but000 | data_ctrlr7 | ||
| DataController8 | but000 | data_ctrlr8 | ||
| DataController9 | but000 | data_ctrlr9 | ||
| DataController10 | but000 | data_ctrlr10 | ||
| IsBusinessPurposeCompleted | but000 | xpcpt |
@AccessControl.authorizationCheck:#MANDATORY
@AccessControl.personalData.blocking: #BLOCKED_DATA_EXCLUDED
@EndUserText.label: 'Change Responsible'
@Search.searchable: true
@ObjectModel.representativeKey: 'Partner'
@VDM.viewType: #BASIC
@ObjectModel.usageType: {serviceQuality: #A,
dataClass: #MASTER,
sizeCategory: #XL}
@Consumption.dbHints: ['USE_HEX_PLAN']
define view entity I_ChangeRecordPartner
as select from but000 as bp
{
key bp.partner as Partner,
@Semantics.name.fullName: true
@Search.defaultSearchElement: true
bp.name1_text as PersonFullName,
@Consumption.hidden:true
bp.augrp as AuthorizationGroup,
@Consumption.hidden:true
@UI.hidden:true
bp.xdcset as DataControllerSet,
@Consumption.hidden:true
@UI.hidden:true
bp.data_ctrlr1 as DataController1,
@Consumption.hidden:true
@UI.hidden:true
bp.data_ctrlr2 as DataController2,
@Consumption.hidden:true
@UI.hidden:true
bp.data_ctrlr3 as DataController3,
@Consumption.hidden:true
@UI.hidden:true
bp.data_ctrlr4 as DataController4,
@Consumption.hidden:true
@UI.hidden:true
bp.data_ctrlr5 as DataController5,
@Consumption.hidden:true
@UI.hidden:true
bp.data_ctrlr6 as DataController6,
@Consumption.hidden:true
@UI.hidden:true
bp.data_ctrlr7 as DataController7,
@Consumption.hidden:true
@UI.hidden:true
bp.data_ctrlr8 as DataController8,
@Consumption.hidden:true
@UI.hidden:true
bp.data_ctrlr9 as DataController9,
@Consumption.hidden:true
@UI.hidden:true
bp.data_ctrlr10 as DataController10,
@Consumption.hidden:true
@UI.hidden:true
bp.xpcpt as IsBusinessPurposeCompleted
}
where
bp.type = '1'
Learn More
- What Is a CDS View in SAP S/4HANA?
- Types of CDS Views: Basic, Composite, Consumption, and Transactional
- SAP Tables vs CDS Views — Key Differences
- Understanding Data Lineage in SAP S/4HANA
- VDM (Virtual Data Model) in SAP S/4HANA Explained
- CDS View Annotations — A Complete Guide
- CDS View Field Mapping and Associations
- Understanding the SAP S/4HANA Data Model
- CDS View Extensions and Custom Fields in SAP S/4HANA
- Released APIs and Stability Contracts in SAP S/4HANA