I_SupplierEvalRspPartyAddress
Supplier Evaluation Response Party Address
I_SupplierEvalRspPartyAddress is a Basic CDS View that provides data about "Supplier Evaluation Response Party Address" in SAP S/4HANA. It reads from 1 data source (/srmsmc/d_srs_pa) and exposes 8 fields with key field SuplrEvalRspPartyAddressUUID. It has 2 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| /srmsmc/d_srs_pa | /srmsmc/d_srs_pa | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [1..1] | I_SupplierEvalResponseParty | _SupplierEvalResponseParty | $projection.SuplrEvalRspPartyUUID = _SupplierEvalResponseParty.SuplrEvalRspPartyUUID |
| [1..1] | I_SupplierEvalResponse | _SupplierEvalResponse | $projection.SuplrEvalRspUUID = _SupplierEvalResponse.SuplrEvalRspUUID |
Annotations (9)
| Name | Value | Level | Field |
|---|---|---|---|
| EndUserText.label | Supplier Evaluation Response Party Address | view | |
| VDM.viewType | #BASIC | view | |
| VDM.lifecycle.contract.type | #SAP_INTERNAL_API | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #M | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| AbapCatalog.sqlViewName | ISUPEVALRSPPTYAD | view |
Fields (8)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | SuplrEvalRspPartyAddressUUID | |||
| SuplrEvalRspUUID | ||||
| SuplrEvalRspPartyUUID | ||||
| FullName | person_name | |||
| Department | person_departmnt | |||
| PhoneNumber | person_phone | |||
| _SupplierEvalResponseParty | _SupplierEvalResponseParty | |||
| _SupplierEvalResponse | _SupplierEvalResponse |
@EndUserText.label: 'Supplier Evaluation Response Party Address'
@VDM.viewType: #BASIC
@VDM.lifecycle.contract.type: #SAP_INTERNAL_API
@AccessControl.authorizationCheck: #CHECK
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #M
@ClientHandling.algorithm: #SESSION_VARIABLE
@AbapCatalog.sqlViewName: 'ISUPEVALRSPPTYAD'
define view I_SupplierEvalRspPartyAddress as select from /srmsmc/d_srs_pa
association [1..1] to I_SupplierEvalResponseParty as _SupplierEvalResponseParty on $projection.SuplrEvalRspPartyUUID = _SupplierEvalResponseParty.SuplrEvalRspPartyUUID
association [1..1] to I_SupplierEvalResponse as _SupplierEvalResponse on $projection.SuplrEvalRspUUID = _SupplierEvalResponse.SuplrEvalRspUUID
{
key cast(db_key as /srmsmc/srs_party_addr_uuid preserving type) as SuplrEvalRspPartyAddressUUID,
cast(root_key as /srmsmc/srs_uuid preserving type) as SuplrEvalRspUUID,
cast(parent_key as /srmsmc/srs_party_uuid preserving type) as SuplrEvalRspPartyUUID,
person_name as FullName,
person_departmnt as Department,
person_phone as PhoneNumber,
@ObjectModel.association.type: #TO_COMPOSITION_PARENT
_SupplierEvalResponseParty,
@ObjectModel.association.type: #TO_COMPOSITION_ROOT
_SupplierEvalResponse
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"/SRMSMC/D_SRS_PA"
],
"ASSOCIATED":
[
"I_SUPPLIEREVALRESPONSE",
"I_SUPPLIEREVALRESPONSEPARTY"
],
"BASE":
[],
"ANNO_REF":
[],
"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