I_PaytReceiptCompanyCodeVH
Payment Receipt Company Code
I_PaytReceiptCompanyCodeVH is a Composite CDS View that provides data about "Payment Receipt Company Code" in SAP S/4HANA. It reads from 1 data source (I_CompanyCode) and exposes 8 fields with key field CompanyCode. It has 1 association to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_CompanyCode | I_CompanyCode | from |
Associations (1)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..1] | I_CompanyCode | _CompanyCode | _CompanyCode.CompanyCode = $projection.CompanyCode |
Annotations (13)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IPAYTRECPTCCVH | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| ObjectModel.dataCategory | #VALUE_HELP | view | |
| AbapCatalog.preserveKey | true | view | |
| VDM.viewType | #COMPOSITE | view | |
| Search.searchable | true | view | |
| Consumption.ranked | true | view | |
| EndUserText.label | Payment Receipt Company Code | view |
Fields (8)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | CompanyCode | CompanyCode | ||
| CompanyCodeName | CompanyCodeName | |||
| CityName | CityName | |||
| Country | Country | |||
| Currency | Currency | |||
| _Country | _Country | |||
| _Currency | _Currency | |||
| _CompanyCode | _CompanyCode |
@AbapCatalog.sqlViewName: 'IPAYTRECPTCCVH'
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.dataClass: #MIXED
@ObjectModel.semanticKey: [ 'CompanyCode' ]
@ObjectModel.dataCategory: #VALUE_HELP
@AbapCatalog.preserveKey:true
@VDM.viewType: #COMPOSITE
@Search.searchable: true
@Consumption.ranked: true
@EndUserText.label: 'Payment Receipt Company Code'
define view I_PaytReceiptCompanyCodeVH
as select from I_CompanyCode
association [0..1] to I_CompanyCode as _CompanyCode on _CompanyCode.CompanyCode = $projection.CompanyCode
{
@Search: {
defaultSearchElement: true,
ranking: #HIGH,
fuzzinessThreshold: 0.8
}
@ObjectModel.text.element: ['CompanyCodeName']
key CompanyCode,
@Search: {
defaultSearchElement: true,
ranking: #LOW,
fuzzinessThreshold: 0.8
}
@Semantics.text:true
CompanyCodeName,
@Search: {
ranking: #LOW,
fuzzinessThreshold: 0.8
}
CityName,
@Search: {
ranking: #LOW,
fuzzinessThreshold: 0.8
}
Country,
@Search: {
ranking: #LOW,
fuzzinessThreshold: 0.8
}
Currency,
_Country,
_Currency,
_CompanyCode
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_COMPANYCODE"
],
"ASSOCIATED":
[
"I_COMPANYCODE",
"I_COUNTRY",
"I_CURRENCY"
],
"BASE":
[
"I_COMPANYCODE"
],
"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