I_PL_SAFTBillingDocTypeMap
SAF-T PL: Billing Document Type Mapping
I_PL_SAFTBillingDocTypeMap is a Basic CDS View that provides data about "SAF-T PL: Billing Document Type Mapping" in SAP S/4HANA. It reads from 2 data sources (snc_pl_sd, tvfk) and exposes 6 fields with key fields BillingDocumentType, BillingSDDocumentCategory, EndDate.
Annotations (10)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | IPLSAFTBILLTPMAP | view | |
| AbapCatalog.compiler.compareFilter | true | view | |
| AbapCatalog.preserveKey | true | view | |
| AccessControl.authorizationCheck | #CHECK | view | |
| VDM.viewType | #BASIC | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #CUSTOMIZING | view | |
| ObjectModel.usageType.serviceQuality | #D | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| EndUserText.label | SAF-T PL: Billing Document Type Mapping | view |
@AbapCatalog.sqlViewName: 'IPLSAFTBILLTPMAP'
@AbapCatalog.compiler.compareFilter: true
@AbapCatalog.preserveKey: true
@AccessControl.authorizationCheck: #CHECK
@VDM.viewType: #BASIC
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #D
@ClientHandling.algorithm: #SESSION_VARIABLE
@EndUserText.label : 'SAF-T PL: Billing Document Type Mapping'
define view I_PL_SAFTBillingDocTypeMap
as select from snc_pl_sd as a
inner join tvfk as b on a.vbtyp = b.vbtyp
{
key b.fkart as BillingDocumentType,
key a.vbtyp as BillingSDDocumentCategory,
key a.endda as EndDate,
a.begda as StartDate,
a.inv_type as PL_SAFTInvoiceType,
b.trvog as TransactionGroup
}
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