UPOV_WCDPS_MEAS_VALUE
WCDPS - Choke Size and Tubing Pressure
UPOV_WCDPS_MEAS_VALUE is a CDS View that provides data about "WCDPS - Choke Size and Tubing Pressure" in SAP S/4HANA. It reads from 6 data sources and exposes 5 fields.
Data Sources (6)
| Source | Alias | Join Type |
|---|---|---|
| gho_imrg_item | ChokeSize | left_outer |
| gho_imrg_std_h | MeasStdHeader | from |
| UPOV_WCDPS_MEATYPE_FLD | MeasTypChokSz | inner |
| UPOV_WCDPS_MEATYPE_FLD | MeasTypTubPr | inner |
| gho_imrg_item | TubingPressure | left_outer |
| gho_iflot_ext | WLfLoc | inner |
Annotations (7)
| Name | Value | Level | Field |
|---|---|---|---|
| AbapCatalog.sqlViewName | UPOS_WCDPMEAVAL | view | |
| AccessControl.authorizationCheck | #NOT_REQUIRED | view | |
| ClientHandling.algorithm | #SESSION_VARIABLE | view | |
| ObjectModel.usageType.serviceQuality | #X | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| EndUserText.label | WCDPS - Choke Size and Tubing Pressure | view |
Fields (5)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| mdocm | gho_imrg_std_h | mdocm | ||
| quan133asChokeSize | ||||
| ChokeSizeUnit | gho_imrg_item | recdu | ||
| quan133asTubingPressure | ||||
| TubingPressureUnit | gho_imrg_item | recdu |
@AbapCatalog.sqlViewName: 'UPOS_WCDPMEAVAL'
@AccessControl.authorizationCheck: #NOT_REQUIRED
@ClientHandling.algorithm: #SESSION_VARIABLE
@ObjectModel.usageType.serviceQuality: #X
@ObjectModel.usageType.sizeCategory: #L
@ObjectModel.usageType.dataClass:#TRANSACTIONAL
@EndUserText.label: 'WCDPS - Choke Size and Tubing Pressure'
define view UPOV_WCDPS_MEAS_VALUE
as select from gho_imrg_std_h as MeasStdHeader
inner join gho_iflot_ext as WLfLoc on WLfLoc.tplnr = MeasStdHeader.netobj
and WLfLoc.gho_netobj_type = 'GHO_WELL'
left outer join gho_imrg_item as ChokeSize on ChokeSize.mdocm = MeasStdHeader.mdocm
inner join UPOV_WCDPS_MEATYPE_FLD as MeasTypChokSz on MeasTypChokSz.measmnt = ChokeSize.measmnt
and MeasTypChokSz.fldnm_r = 'CHO_SZ'
and MeasTypChokSz.fldnm_u = 'CHO_SZ_U'
left outer join gho_imrg_item as TubingPressure on TubingPressure.mdocm = MeasStdHeader.mdocm
inner join UPOV_WCDPS_MEATYPE_FLD as MeasTypTubPr on MeasTypTubPr.measmnt = TubingPressure.measmnt
and MeasTypTubPr.fldnm_r = 'TUB_PS'
and MeasTypTubPr.fldnm_u = 'TUB_PS_U'
{
MeasStdHeader.mdocm,
cast(cast(
case
when (ChokeSize.mdocm is null) then '0'
when (ChokeSize.mdocm is not null and ChokeSize.recdv = '') then '0'
else replace(ChokeSize.recdv,',','.')
end
as abap.numc( 22 ) ) as abap.quan( 13, 3 ))
as ChokeSize,
ChokeSize.recdu as ChokeSizeUnit,
cast(cast(
case
when TubingPressure.mdocm is null then '0'
when (TubingPressure.mdocm is not null and TubingPressure.recdv = '') then '0'
else replace(TubingPressure.recdv,',','.')
end
as abap.numc(22))as abap.quan( 13, 3 ))
as TubingPressure,
TubingPressure.recdu as TubingPressureUnit
}
/*+[internal] {
"BASEINFO":
{
"FROM":
[
"UPOV_WCDPS_MEATYPE_FLD",
"GHO_IFLOT_EXT",
"GHO_IMRG_ITEM",
"GHO_IMRG_STD_H"
],
"ASSOCIATED":
[],
"BASE":
[],
"ANNO_REF":
[],
"VERSION":0,
"ANNOREF_EVALUATION_ERROR":""
}
}*/
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