I_IN_SubcontractorStdVH
Value Help for Subcontractor
I_IN_SubcontractorStdVH is a Composite CDS View that provides data about "Value Help for Subcontractor" in SAP S/4HANA. It reads from 1 data source (I_Supplier) and exposes 11 fields with key fields Supplier, CompanyCode. It has 2 associations to related views. Part of development package J1I_GST_LOG_APP.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_Supplier | I_Supplier | from |
Associations (2)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | I_BusinessPartnerSuplrCo | _BusinessPartnerSuplrCo | $projection.Supplier = _BusinessPartnerSuplrCo.Supplier |
| [0..*] | I_CountryText | _CountryText | $projection.Country = _CountryText.Country |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | ISUBCONTRACTORVH | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| EndUserText.label | Value Help for Subcontractor | view | |
| Search.searchable | true | view | |
| VDM.viewType | #COMPOSITE | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| AccessControl.personalData.blocking | #REQUIRED | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #XL | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view |
Fields (11)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Supplier | Supplier | ||
| KEY | CompanyCode | _BusinessPartnerSuplrCo | CompanyCode | |
| SupplierName | SupplierName | |||
| BPSupplierName | BPSupplierName | |||
| Country | ||||
| CityName | ||||
| PostalCode | ||||
| Region | ||||
| AuthorizationGroup | I_Supplier | AuthorizationGroup | ||
| SupplierAccountGroup | I_Supplier | SupplierAccountGroup | ||
| _CountryText | _CountryText |
@AbapCatalog.sqlViewName: 'ISUBCONTRACTORVH'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@EndUserText.label: 'Value Help for Subcontractor'
@Search.searchable: true
@VDM.viewType: #COMPOSITE
@AccessControl.authorizationCheck: #CHECK
@AccessControl.personalData.blocking : #REQUIRED
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory : #XL
@ObjectModel.usageType.dataClass: #MASTER
@Metadata.ignorePropagatedAnnotations: true
@ClientHandling.algorithm: #SESSION_VARIABLE
define view I_IN_SubcontractorStdVH as select from I_Supplier
association [0..*] to I_BusinessPartnerSuplrCo as _BusinessPartnerSuplrCo on $projection.Supplier = _BusinessPartnerSuplrCo.Supplier
association [0..*] to I_CountryText as _CountryText on $projection.Country = _CountryText.Country{
//I_Supplier
@ObjectModel.text.element: [ 'SupplierName' ]
@Search: { defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.8 }
key Supplier,
@Search: { defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.7 }
key _BusinessPartnerSuplrCo.CompanyCode as CompanyCode,
@Semantics.text: true
SupplierName,
@Semantics.text: true
BPSupplierName,
@Search: { defaultSearchElement: true, ranking: #HIGH, fuzzinessThreshold: 0.8 }
@Semantics.address.country: true
@UI.textArrangement: #TEXT_ONLY
I_Supplier._AddressRepresentation.Country as Country,
I_Supplier._AddressRepresentation.CityName as CityName,
I_Supplier._AddressRepresentation.PostalCode as PostalCode,
I_Supplier._AddressRepresentation.Region as Region,
//for DCL
@Consumption.hidden: true
I_Supplier.AuthorizationGroup,
@Consumption.hidden: true
I_Supplier.SupplierAccountGroup,
_CountryText
}where I_Supplier.Country = 'IN'
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