C_DuplicateSalesDocGroup
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)
| Source | Alias | Join Type |
|---|---|---|
| P_DuplicateSalesDocumentGrpg | P_DuplicateSalesDocumentGrpg | from |
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| 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)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| 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":""
}
}*/
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