C_PurOrdMaintainSuplrValHelp
PO Maintenance: Value Help for Supplier
C_PurOrdMaintainSuplrValHelp is a Consumption CDS View that provides data about "PO Maintenance: Value Help for Supplier" in SAP S/4HANA. It reads from 1 data source (I_Supplier) and exposes 22 fields with key fields Supplier, CompanyCode. It has 3 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_Supplier | _Supplier | from |
Associations (3)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_SupplierCompany | _SupplierMaster | $projection.Supplier = _SupplierMaster.Supplier and _SupplierMaster.CompanyCode != '' |
| [0..*] | I_CountryText | _CountryText | $projection.Country = _CountryText.Country |
| [0..*] | I_RegionText | _RegionText | $projection.Country = _RegionText.Country and $projection.Region = _RegionText.Region |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| VDM.viewType | #CONSUMPTION | view | |
| AbapCatalog.sqlViewName | CPOMAINTVHSUPLR | view | |
| EndUserText.label | PO Maintenance: Value Help for Supplier | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| AccessControl.personalData.blocking | #REQUIRED | view |
Fields (22)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Supplier | I_Supplier | Supplier | |
| KEY | CompanyCode | _SupplierMaster | CompanyCode | |
| SupplierName | ||||
| Country | ||||
| CityName | ||||
| PostalCode | ||||
| Region | ||||
| SupplierAccountGroup | I_Supplier | SupplierAccountGroup | ||
| AuthorizationGroup | I_Supplier | AuthorizationGroup | ||
| DataControllerSet | I_Supplier | DataControllerSet | ||
| DataController1 | I_Supplier | DataController1 | ||
| DataController2 | I_Supplier | DataController2 | ||
| DataController3 | I_Supplier | DataController3 | ||
| DataController4 | I_Supplier | DataController4 | ||
| DataController5 | I_Supplier | DataController5 | ||
| DataController6 | I_Supplier | DataController6 | ||
| DataController7 | I_Supplier | DataController7 | ||
| DataController8 | I_Supplier | DataController8 | ||
| DataController9 | I_Supplier | DataController9 | ||
| DataController10 | I_Supplier | DataController10 | ||
| _CountryText | _CountryText | |||
| _RegionText | _RegionText |
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #L
@VDM.viewType: #CONSUMPTION
@AbapCatalog.sqlViewName: 'CPOMAINTVHSUPLR'
@EndUserText.label: 'PO Maintenance: Value Help for Supplier'
@AccessControl.authorizationCheck: #CHECK
@AccessControl.personalData.blocking: #REQUIRED
define view C_PurOrdMaintainSuplrValHelp
as select from I_Supplier as _Supplier
association [0..*] to I_SupplierCompany as _SupplierMaster on $projection.Supplier = _SupplierMaster.Supplier
and _SupplierMaster.CompanyCode != ''
association [0..*] to I_CountryText as _CountryText on $projection.Country = _CountryText.Country
association [0..*] to I_RegionText as _RegionText on $projection.Country = _RegionText.Country
and $projection.Region = _RegionText.Region
{
key _Supplier.Supplier as Supplier,
key _SupplierMaster.CompanyCode as CompanyCode, //prerequisition: this field always has to be used in a filter
cast(_Supplier.SupplierName as abap.char(35)) as SupplierName,
_Supplier._StandardAddress.Country as Country,
cast(_Supplier._StandardAddress.CityName as abap.char(35)) as CityName,
_Supplier._StandardAddress.PostalCode as PostalCode,
_Supplier._StandardAddress.Region as Region,
_Supplier.SupplierAccountGroup as SupplierAccountGroup,
_Supplier.AuthorizationGroup as AuthorizationGroup,
@Consumption.hidden:true
@UI.hidden:true
_Supplier.DataControllerSet,
@Consumption.hidden:true
@UI.hidden:true
_Supplier.DataController1,
@Consumption.hidden:true
@UI.hidden:true
_Supplier.DataController2,
@Consumption.hidden:true
@UI.hidden:true
_Supplier.DataController3,
@Consumption.hidden:true
@UI.hidden:true
_Supplier.DataController4,
@Consumption.hidden:true
@UI.hidden:true
_Supplier.DataController5,
@Consumption.hidden:true
@UI.hidden:true
_Supplier.DataController6,
@Consumption.hidden:true
@UI.hidden:true
_Supplier.DataController7,
@Consumption.hidden:true
@UI.hidden:true
_Supplier.DataController8,
@Consumption.hidden:true
@UI.hidden:true
_Supplier.DataController9,
@Consumption.hidden:true
@UI.hidden:true
_Supplier.DataController10,
_CountryText,
_RegionText
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_ADDRESS",
"I_SUPPLIER",
"I_SUPPLIERCOMPANY"
],
"ASSOCIATED":
[
"I_COUNTRYTEXT",
"I_REGIONTEXT",
"I_SUPPLIERCOMPANY"
],
"BASE":
[],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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