C_NoClrgCustomerSupplier

DDL: C_NOCLRGCUSTOMERSUPPLIER SQL: CGRCNOCLRGCUSSUP Type: view CONSUMPTION

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)

SourceAliasJoin Type
I_SupplierCompany I_SupplierCompany from

Annotations (15)

NameValueLevelField
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)

KeyFieldSource TableSource FieldDescription
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":""
}
}*/