C_Pricefixingcattexttemp
Price fixing category text
C_Pricefixingcattexttemp is a Consumption CDS View that provides data about "Price fixing category text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 4 fields with key fields PriceFixingCategory, Language.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| dd07t | dd07t | from |
Annotations (11)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | CPRCFIXINGCATTXT | view | |
| ObjectModel.dataCategory | #TEXT | view | |
| VDM.viewType | #CONSUMPTION | view | |
| VDM.lifecycle.status | #DEPRECATED | view | |
| VDM.lifecycle.successor | I_PriceFixingCategoryText | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ObjectModel.representativeKey | PriceFixingCategory | view | |
| ObjectModel.usageType.serviceQuality | #A | view | |
| ObjectModel.usageType.sizeCategory | #S | view | |
| ObjectModel.usageType.dataClass | #MASTER | view | |
| EndUserText.label | Price fixing category text | view |
Fields (4)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| domname | ||||
| KEY | PriceFixingCategory | |||
| KEY | Language | |||
| Name |
@AbapCatalog.sqlViewName: 'CPRCFIXINGCATTXT'
@ObjectModel.dataCategory: #TEXT
//@Analytics: { datacategory: #TEXT }
@VDM:{
viewType: #CONSUMPTION,
lifecycle: {
status: #DEPRECATED,
successor: 'I_PriceFixingCategoryText'
}
}
//@ClientDependent: true
//@AbapCatalog.compiler.compareFilter: true
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ObjectModel.representativeKey: 'PriceFixingCategory'
@ObjectModel.usageType.serviceQuality: #A
@ObjectModel.usageType.sizeCategory : #S
@ObjectModel.usageType.dataClass: #MASTER
@EndUserText.label: 'Price fixing category text'
define view C_Pricefixingcattexttemp
as select from dd07t
{
--key dd07t.domname,
key cast(cast ( substring( domvalue_l, 1, 1 ) as abap.char( 1 ) ) as pricefixingcategory) as PriceFixingCategory,
// @Search.defaultSearchElement: true
// @Search.fuzzinessThreshold: 0.8
// @Search.ranking: #HIGH
@Semantics.language:true
key cast( ddlanguage as spras ) as Language,
// @Search.defaultSearchElement: true
// @Search.fuzzinessThreshold: 0.8
// @Search.ranking: #HIGH
@Semantics.text: true
cast ( substring ( ddtext, 1, 60 ) as val_text ) as Name
}
where
domname = 'PBIND'
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"DD07T"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0
}
}*/
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