C_DuplicateSalesDocGroup

DDL: C_DUPLICATESALESDOCGROUP SQL: CDPLSLSDOCGRP Type: view CONSUMPTION

Group of Duplicate Sales Documents

C_DuplicateSalesDocGroup is a Consumption CDS View that provides data about "Group of Duplicate Sales Documents" in SAP S/4HANA. It reads from 1 data source (P_DuplicateSalesDocumentGrpg) and exposes 19 fields with key field DuplicateSalesDocumentGroup.

Data Sources (1)

SourceAliasJoin Type
P_DuplicateSalesDocumentGrpg P_DuplicateSalesDocumentGrpg from

Annotations (10)

NameValueLevelField
AbapCatalog.sqlViewName CDPLSLSDOCGRP view
AbapCatalog.preserveKey true view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #CHECK view
EndUserText.label Group of Duplicate Sales Documents view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #CONSUMPTION view
ObjectModel.usageType.dataClass #TRANSACTIONAL view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #M view

Fields (19)

KeyFieldSource TableSource FieldDescription
KEY DuplicateSalesDocumentGroup DuplicateSalesDocumentGroup
NumberOfDuplicateSlsDocuments NumberOfDuplicateSlsDocuments
SDDocumentCategory SDDocumentCategory
_SDDocumentCategory _SDDocumentCategory
SalesDocumentType SalesDocumentType
_SalesDocumentType _SalesDocumentType
SoldToParty SoldToParty
_SoldToParty _SoldToParty
CreationDate CreationDate
TotalNetAmount TotalNetAmount
TransactionCurrency TransactionCurrency
_TransactionCurrency _TransactionCurrency
SalesOrganization SalesOrganization
_SalesOrganization _SalesOrganization
DistributionChannel DistributionChannel
_DistributionChannel _DistributionChannel
OrganizationDivision OrganizationDivision
_OrganizationDivision _OrganizationDivision
PurchaseOrderByCustomer PurchaseOrderByCustomer
@AbapCatalog.sqlViewName: 'CDPLSLSDOCGRP'
@AbapCatalog.preserveKey: true
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@EndUserText.label: 'Group of Duplicate Sales Documents'

@ClientHandling.algorithm: #SESSION_VARIABLE

@VDM.viewType: #CONSUMPTION
@ObjectModel.usageType.dataClass: #TRANSACTIONAL
@ObjectModel.usageType.serviceQuality: #C
@ObjectModel.usageType.sizeCategory: #M

define view C_DuplicateSalesDocGroup
  as select from P_DuplicateSalesDocumentGrpg( P_DateFunction: 'MONTHTODATE' )

{
  key DuplicateSalesDocumentGroup,

      NumberOfDuplicateSlsDocuments,

      SDDocumentCategory,
      _SDDocumentCategory,

      SalesDocumentType,
      _SalesDocumentType,

      SoldToParty,
      _SoldToParty,

      CreationDate,

      TotalNetAmount,

      TransactionCurrency,
      _TransactionCurrency,

      SalesOrganization,
      _SalesOrganization,

      DistributionChannel,
      _DistributionChannel,

      OrganizationDivision,
      _OrganizationDivision,

      PurchaseOrderByCustomer

}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"P_DUPLICATESALESDOCUMENTGRPG"
],
"ASSOCIATED":
[
"I_CURRENCY",
"I_CUSTOMER",
"I_DISTRIBUTIONCHANNEL",
"I_DIVISION",
"I_SALESDOCUMENTTYPE",
"I_SALESORGANIZATION",
"I_SDDOCUMENTCATEGORY"
],
"BASE":
[
"P_DUPLICATESALESDOCUMENTGRPG"
],
"ANNO_REF":
[],
"SCALAR_FUNCTION":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/