I_InspectItemCompanyCodeVH
Inspect Item Company Code Value Help
I_InspectItemCompanyCodeVH is a Basic CDS View that provides data about "Inspect Item Company Code Value Help" in SAP S/4HANA. It reads from 1 data source (I_CompanyCode) and exposes 4 fields with key field CompanyCode.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_CompanyCode | I_CompanyCode | from |
Annotations (14)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IINITCOMPCODEVH | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| EndUserText.label | Inspect Item Company Code Value Help | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| ObjectModel.representativeKey | CompanyCode | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| VDM.viewType | #BASIC | view | |
| VDM.private | false | view | |
| Consumption.ranked | true | view | |
| Search.searchable | true | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | CompanyCode | CompanyCode | ||
| CompanyCodeName | CompanyCodeName | |||
| CityName | CityName | |||
| Country |
@AbapCatalog: {
sqlViewName: 'IINITCOMPCODEVH',
compiler.compareFilter: true
}
@AccessControl: {
authorizationCheck: #CHECK
}
@EndUserText.label: 'Inspect Item Company Code Value Help'
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel: {
dataCategory: #VALUE_HELP,
representativeKey: 'CompanyCode',
usageType: {
serviceQuality: #C,
sizeCategory: #S,
dataClass: #MASTER }
}
@VDM: {
viewType: #BASIC,
private: false
}
@Consumption.ranked: true
@Search.searchable: true
define view I_InspectItemCompanyCodeVH as select from I_CompanyCode
{
@Search.defaultSearchElement: true
@ObjectModel.text.element: ['CompanyCodeName' ]
key CompanyCode,
@Search.defaultSearchElement: true
@Search.fuzzinessThreshold: 0.9
@Search.ranking: #HIGH
CompanyCodeName,
@Search.ranking: #LOW
@Search.defaultSearchElement: false
CityName,
@Search.ranking: #LOW
@Search.defaultSearchElement: false
cast (Country as farp_inspect_item_country_name preserving type ) as Country
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_COMPANYCODE"
],
"ASSOCIATED":
[],
"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