C_NoClrgCustomerSupplier
No Clearing with Customer Supplier
C_NoClrgCustomerSupplier is a Consumption CDS View that provides data about "No Clearing with Customer Supplier" in SAP S/4HANA. It reads from 1 data source (I_SupplierCompany) and exposes 19 fields with key fields Supplier, CompanyCode.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_SupplierCompany | I_SupplierCompany | from |
Annotations (15)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | CGRCNOCLRGCUSSUP | view | |
| EndUserText.label | No Clearing with Customer Supplier | view | |
| VDM.viewType | #CONSUMPTION | view | |
| OData.publish | true | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AbapCatalog.buffering.status | #NOT_ALLOWED | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| AccessControl.personalData.blocking | #REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| Metadata.ignorePropagatedAnnotations | true | view | |
| Metadata.allowExtensions | true | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #XXL | view | |
| ObjectModel.usageType.dataClass | #MASTER | view |
Fields (19)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | Supplier | Supplier | ||
| KEY | CompanyCode | CompanyCode | ||
| CompanyCodeName | CompanyCodeName | |||
| SupplierName | _Supplier | SupplierName | ||
| SupplierAccountGroup | _Supplier | SupplierAccountGroup | ||
| Customer | _Supplier | Customer | ||
| CreatedByUser | _Supplier | CreatedByUser | ||
| CreationDate | _Supplier | CreationDate | ||
| ReconciliationAccount | ReconciliationAccount | |||
| IsOneTimeAccount | _Supplier | IsOneTimeAccount | ||
| SupplierIsBlockedForPosting | SupplierIsBlockedForPosting | |||
| IsBusinessPurposeCompleted | IsBusinessPurposeCompleted | |||
| CityName | _Supplier | CityName | ||
| Country | _Supplier | Country | ||
| DeletionIndicator | DeletionIndicator | |||
| AuthorizationGroup | AuthorizationGroup | |||
| ClearCustomerSupplier | ClearCustomerSupplier | |||
| _Supplier | _Supplier | |||
| _CompanyCode | _CompanyCode |
@AbapCatalog.sqlViewName: 'CGRCNOCLRGCUSSUP'
@EndUserText.label: 'No Clearing with Customer Supplier'
@VDM.viewType: #CONSUMPTION
@OData.publish: true
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AbapCatalog.buffering.status: #NOT_ALLOWED
@AccessControl.authorizationCheck: #CHECK
@AccessControl.personalData.blocking: #REQUIRED
@AccessControl.personalData.blockingIndicator: ['IsBusinessPurposeCompleted']
@ClientHandling.algorithm: #SESSION_VARIABLE
@Metadata.ignorePropagatedAnnotations: true
@Metadata.allowExtensions:true
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #XXL
@ObjectModel.usageType.dataClass: #MASTER
define view C_NoClrgCustomerSupplier as select from I_SupplierCompany
{
@Consumption.valueHelpDefinition: [{ entity:{ name: 'I_Supplier_VH', element: 'Supplier' } }]
@ObjectModel.foreignKey.association: '_Supplier'
key Supplier,
@Consumption.valueHelpDefinition: [{ entity:{ name: 'I_CompanyCodeVH', element:'CompanyCode' } }]
@ObjectModel.foreignKey.association: '_CompanyCode'
key CompanyCode,
@Semantics.text: true
CompanyCodeName,
@Semantics.text: true
_Supplier.SupplierName as SupplierName,
_Supplier.SupplierAccountGroup as SupplierAccountGroup,
_Supplier.Customer,
@Semantics.user.createdBy: true
_Supplier.CreatedByUser as CreatedByUser,
@Semantics.systemDate.createdAt: true
_Supplier.CreationDate as CreationDate,
ReconciliationAccount,
@Semantics.booleanIndicator: true
_Supplier.IsOneTimeAccount,
@Semantics.booleanIndicator: true
SupplierIsBlockedForPosting,
@Semantics.booleanIndicator: true
IsBusinessPurposeCompleted,
_Supplier.CityName as CityName,
_Supplier.Country as Country,
DeletionIndicator,
AuthorizationGroup,
ClearCustomerSupplier,
_Supplier,
_CompanyCode
}
where DeletionIndicator = ''
and _Supplier.Customer <> ''
and ClearCustomerSupplier = ''
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_SUPPLIER",
"I_SUPPLIERCOMPANY"
],
"ASSOCIATED":
[
"I_COMPANYCODE",
"I_SUPPLIER"
],
"BASE":
[
"I_SUPPLIERCOMPANY"
],
"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