I_CUSTOMERPROJECTEXPENSETYPET
Customer Project Expense Type Text
I_CUSTOMERPROJECTEXPENSETYPET is a CDS View in S/4HANA. Customer Project Expense Type Text. It contains 2 fields. 1 CDS views read from this table.
CDS Views using this table (1)
| View | Type | Join | VDM | Description |
|---|---|---|---|---|
| I_CustProjResourceText | view | from | BASIC | Customer Project Resource Text |
Fields (2)
| Key | Field | CDS Fields | Used in Views |
|---|---|---|---|
| KEY | CustomerProjectExpenseType | CustomerProjectResource | 1 |
| KEY | Language | Language | 1 |
@AbapCatalog.sqlViewName: 'ICUSTPROJEXPTYPT'
@EndUserText.label: 'Customer Project Expense Type Text'
@VDM.viewType:#BASIC
@ClientHandling.algorithm: #SESSION_VARIABLE
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory: #S
@ObjectModel.usageType.dataClass: #CUSTOMIZING
@AbapCatalog.buffering.status: #ACTIVE
@AbapCatalog.buffering.type: #FULL
@AbapCatalog.buffering.numberOfKeyFields: 000
define view I_CustomerProjectExpenseTypeT
as select from /cpd/fc_res_t as ResourceText
association [0..1] to I_CustomerProjectExpenseType as _CustomerProjectExpenseType on $projection.CustomerProjectExpenseType = _CustomerProjectExpenseType.CustomerProjectExpenseType
association [0..1] to I_Language as _Language on $projection.Language = _Language.Language
{
key ResourceText.resource_id as CustomerProjectExpenseType,
@Semantics.language : true
key ResourceText.spras as Language,
@Semantics.text : true
ResourceText.description as CustomerProjectExpenseTypeText,
_Language,
_CustomerProjectExpenseType
}