I_INVOICELISTTYPE
Invoice List Type
I_INVOICELISTTYPE is a CDS View in S/4HANA. Invoice List Type. It contains 1 fields. 2 CDS views read from this table.
CDS Views using this table (2)
| View | Type | Join | VDM | Description |
|---|---|---|---|---|
| I_InvoiceListTypeStdVH | view_entity | from | COMPOSITE | Invoice List Type |
| I_InvoiceListTypeText | view_entity | inner | BASIC | Invoice List Type - Text |
Fields (1)
| Key | Field | CDS Fields | Used in Views |
|---|---|---|---|
| KEY | InvoiceListType | InvoiceListType | 1 |
@AbapCatalog.entityBuffer.definitionAllowed: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@Analytics.dataCategory: #DIMENSION
@Analytics.dataExtraction.enabled: true
@Analytics.internalName: #LOCAL
@Consumption.ranked: true
@EndUserText.label: 'Invoice List Type'
@Metadata.ignorePropagatedAnnotations: true
@ObjectModel.modelingPattern: #ANALYTICAL_DIMENSION
@ObjectModel.representativeKey: 'InvoiceListType'
@ObjectModel.sapObjectNodeType.name: 'InvoiceListType'
@ObjectModel.supportedCapabilities: [ #ANALYTICAL_DIMENSION,
#CDS_MODELING_DATA_SOURCE,
#CDS_MODELING_ASSOCIATION_TARGET,
#SQL_DATA_SOURCE,
#SEARCHABLE_ENTITY,
#EXTRACTION_DATA_SOURCE ]
@ObjectModel.usageType: { dataClass: #CUSTOMIZING, serviceQuality: #A, sizeCategory: #S }
@Search.searchable: true
@VDM.lifecycle.contract.type: #PUBLIC_LOCAL_API
@VDM.viewType: #BASIC
define root view entity I_InvoiceListType
as select from I_BillingProcessDocumentType
composition of exact one to many I_InvoiceListTypeText as _Text
{
@ObjectModel.text.association: '_Text'
@Search.defaultSearchElement: true
@Search.ranking: #HIGH
key cast(BillingProcessDocumentType as invoicelisttype preserving type) as InvoiceListType,
@ObjectModel.foreignKey.association: '_SDDocumentCategory'
SDDocumentCategory,
IncrementItemNumber,
@ObjectModel.foreignKey.association: '_BillingDocumentCategory'
BillingDocumentCategory,
_Text,
_SDDocumentCategory,
_BillingDocumentCategory
}
where SDDocumentCategory = '3'
or SDDocumentCategory = '4'