I_SALESDOCUMENTTYPETEXT
Sales Document Type - Text
I_SALESDOCUMENTTYPETEXT is a CDS View in S/4HANA. Sales Document Type - Text. It contains 3 fields. 13 CDS views read from this table.
CDS Views using this table (13)
| View | Type | Join | VDM | Description |
|---|---|---|---|---|
| A_SalesOrderTypeText | view | from | BASIC | Sales Order type text |
| I_ARunOvwSDItem | view | left_outer | BASIC | Basic View for Sales Document Item |
| I_CreditMemoRequestTypeText | view_entity | from | BASIC | Credit Memo Request Type - Text |
| I_CustomerReturnTypeText | view_entity | from | BASIC | Returns Order Type - Text |
| I_DebitMemoRequestTypeText | view_entity | from | BASIC | Debit Memo Request Type - Text |
| I_SalesContractTypeText | view_entity | from | BASIC | Sales Contract Type - Text |
| I_SalesInquiryTypeText | view_entity | from | BASIC | Sales Inquiry Type - Text |
| I_SalesOrderTypeText | view_entity | from | BASIC | Sales Order Type - Text |
| I_SalesQuotationTypeText | view_entity | from | BASIC | Sales Quotation Type - Text |
| I_SalesSchedgAgrmtTypeText | view_entity | from | BASIC | Sales Scheduling Agreement Type - Text |
| I_SlsOrdWithoutChargeTypeTxt | view_entity | from | BASIC | Sales Order Without Charge Type - Text |
| I_SupDmndOvwSD | view | left_outer | COMPOSITE | Basic View for Sales Document |
| P_RFDYRelevantDocumentTypeText | view | from | COMPOSITE | Release for Delivery Relevant Document Type Text |
Fields (3)
| Key | Field | CDS Fields | Used in Views |
|---|---|---|---|
| KEY | Language | Language | 10 |
| _Language | _Language | 9 | |
| SalesDocumentTypeName | OrderTypeName,SalesDocumentTypeName | 3 |
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.dataCategory: #TEXT
@ObjectModel.representativeKey: 'SalesDocumentType'
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.supportedCapabilities: [ #LANGUAGE_DEPENDENT_TEXT, #CDS_MODELING_ASSOCIATION_TARGET, #SQL_DATA_SOURCE,
#CDS_MODELING_DATA_SOURCE, #EXTRACTION_DATA_SOURCE, #SEARCHABLE_ENTITY]
@ObjectModel.modelingPattern: [ #LANGUAGE_DEPENDENT_TEXT ]
@EndUserText.label: 'Sales Document Type - Text'
@VDM.viewType: #BASIC
@Search.searchable: true
@Analytics.dataExtraction.enabled: true
@AccessControl.authorizationCheck:#NOT_REQUIRED
@AbapCatalog.sqlViewName: 'ISDSALESDOCTYPET'
@AbapCatalog.preserveKey: true
@AbapCatalog.buffering.status: #ACTIVE
@AbapCatalog.buffering.type: #FULL
@Metadata.ignorePropagatedAnnotations:true
define view I_SalesDocumentTypeText
as select from
tvakt
association[0..1] to I_SalesDocumentType as _SalesDocumentType on $projection.SalesDocumentType = _SalesDocumentType.SalesDocumentType
association[0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
@ObjectModel.foreignKey.association: '_SalesDocumentType'
key auart as SalesDocumentType,
@Semantics.language: true
@ObjectModel.foreignKey.association: '_Language'
key spras as Language,
@Search: {
defaultSearchElement: true,
fuzzinessThreshold: 0.9,
ranking: #LOW }
@Semantics.text: true
--cast(bezei as salesdocumenttypename) as SalesDocumentTypeName, --AT03.04.19 label Sales Document Type Description
bezei as SalesDocumentTypeName, --AT03.04.19 as it was before...
_SalesDocumentType,
_Language
};