C_SlsDocFlfmtPurOrderContacts
Sales Doc Fulfillment: Purchase Order Contacts
C_SlsDocFlfmtPurOrderContacts is a Consumption CDS View that provides data about "Sales Doc Fulfillment: Purchase Order Contacts" in SAP S/4HANA. It reads from 1 data source (I_PurchasingDocument) and exposes 5 fields with key fields PurchasingDocument, PurchasingGroup.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| I_PurchasingDocument | I_PurchasingDocument | from |
Annotations (12)
| Name | Value | Level | Field |
|---|---|---|---|
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.dataClass | #MIXED | view | |
| ObjectModel.usageType.serviceQuality | #D | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| EndUserText.label | Sales Doc Fulfillment: Purchase Order Contacts | view | |
| VDM.viewType | #CONSUMPTION | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| AccessControl.personalData.blocking | #BLOCKED_DATA_EXCLUDED | view | |
| Metadata.allowExtensions | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AbapCatalog.sqlViewName | CSOFPURORDERCON | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | PurchasingDocument | PurchasingDocument | ||
| KEY | PurchasingGroup | PurchasingGroup | ||
| EmailAddressasad_smtpadrasEmailAddress | ||||
| PurchasingDocumentType | PurchasingDocumentType | |||
| PurchasingOrganization | PurchasingOrganization |
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.dataClass: #MIXED
@ObjectModel.usageType.serviceQuality: #D
@ObjectModel.usageType.sizeCategory: #S
@EndUserText.label: 'Sales Doc Fulfillment: Purchase Order Contacts'
@VDM.viewType: #CONSUMPTION
@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #CHECK
@AccessControl.personalData.blocking: #BLOCKED_DATA_EXCLUDED
@Metadata.allowExtensions: true
@AbapCatalog.preserveKey: true
@AbapCatalog.sqlViewName: 'CSOFPURORDERCON'
define view C_SlsDocFlfmtPurOrderContacts
as select from I_PurchasingDocument // Purchasing Group
{
key PurchasingDocument,
key PurchasingGroup,
cast( _PurchasingGroup.PurchasingGroupName
as ad_namtext ) as FullName,
cast ( _PurchasingGroup.PurchasingGroupPhoneNumber
as ad_tlnmbr ) as PhoneNumber,
cast ( _PurchasingGroup.PhoneNumberExtension
as ad_tlxtns ) as PhoneNumberExtension,
cast( _PurchasingGroup.EmailAddress
as ad_smtpadr ) as EmailAddress,
PurchasingDocumentType,
PurchasingOrganization
}
where
_PurchasingGroup.PurchasingGroup <> ' '
and IsEndOfPurposeBlocked = ''
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"I_PURCHASINGDOCUMENT",
"I_PURCHASINGGROUP"
],
"ASSOCIATED":
[],
"BASE":
[],
"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