/IBX/I_Valuation
Bewertung
/IBX/I_Valuation is a CDS View that provides data about "Bewertung" in SAP S/4HANA. It reads from 1 data source (/ibx/t_valua2) and exposes 29 fields with key field ValuationId. It has 7 associations to related views.
Data Sources (1)
| Source | Alias | Join Type |
|---|---|---|
| /ibx/t_valua2 | /ibx/t_valua2 | from |
Associations (7)
| Cardinality | Target | Alias | Condition |
|---|---|---|---|
| [0..*] | /IBX/I_Status | _Status | $projection.StatusId = _Status.StatusId |
| [1..*] | /IBX/I_HighBal | _HighestBalance | $projection.ValuationId = _HighestBalance.ValuationId |
| [1..*] | /IBX/I_HighBalWSlice | _HighestBalanceWSlice | $projection.ValuationId = _HighestBalanceWSlice.ValuationId |
| [1..1] | /IBX/I_HighICAssign | _HighestICAssignment | $projection.ValuationId = _HighestICAssignment.ValuationId |
| [1..*] | /IBX/I_IC_Assign | _ImpairmentCategoryAssignment | |
| [1..*] | /IBX/I_Balance | _Balance | |
| [1..*] | /IBX/I_Flow | _Flow | |
Annotations (5)
| Name | Value | Level | Field |
|---|---|---|---|
| AccessControl.authorizationCheck | #CHECK | view | |
| ObjectModel.usageType.serviceQuality | #C | view | |
| ObjectModel.usageType.sizeCategory | #L | view | |
| ObjectModel.usageType.dataClass | #TRANSACTIONAL | view | |
| EndUserText.label | Bewertung | view |
Fields (29)
| Key | Field | Source Table | Source Field | Description |
|---|---|---|---|---|
| KEY | ValuationId | val_id | Valuation ID | |
| ContractId | contract_id | Contract ID | ||
| ValuationDate | val_date | Value Date | ||
| ScenarioId | scenario_id | Workflow definition | ||
| ValuationCounter | val_count | Counter for Val. | ||
| RbdClass | rbdkl | RBD Class | ||
| ProfitCenter | prctr | Profit Centers | ||
| CostCenter | kostl | Substitute CC | ||
| StatusId | status_id | Trans Doc Status | ||
| IsSimulated | is_simulated | Simulated | ||
| LastValuationId | last_val_id | Valuation ID | ||
| NotTransferable | not_transferable | Not Transferrable | ||
| IsNotPostedCalc | is_not_posted_calc | Calcul. Performed | ||
| RevertIndicator | revert_indicator | Reversal Indicator | ||
| TransferType | transfer_typ | Transfer Category | ||
| RecallIndicator | recall_indicator | Recall Indicator | ||
| DoNovation | do_novation | Novation | ||
| IsPociAsset | is_poci_asset | Is POCI Instrument | ||
| IsDeparture | is_departure | Contract Is Dep. | ||
| PostingDate | dbudat | Posting Date | ||
| UnwindingFromDate | unwinding_ik_from | Unwinding Date From | ||
| _Contract | _Contract | |||
| _ImpairmentCategoryAssignment | _ImpairmentCategoryAssignment | |||
| _Balance | _Balance | |||
| _Flow | _Flow | |||
| _Status | _Status | |||
| _HighestBalance | _HighestBalance | |||
| _HighestBalanceWSlice | _HighestBalanceWSlice | |||
| _HighestICAssignment | _HighestICAssignment |
Derived SQL interpretation, reconstructed from the parsed view metadata (data sources, associations, and field mappings). SAP annotations are omitted and the structure is reformulated as SQL — this is a functional approximation, not the verbatim SAP source.
-- Derived SQL interpretation of CDS view /IBX/I_Valuation.
-- Reconstructed from parsed metadata (data sources, associations, fields).
-- SAP annotations are omitted and the structure is reformulated as SQL;
-- this is a functional approximation, not the verbatim SAP source. Some join
-- conditions may be unavailable and a few CDS constructs are kept as-is.
CREATE VIEW /IBX/I_Valuation AS
SELECT
val_id AS ValuationId,
contract_id AS ContractId,
val_date AS ValuationDate,
scenario_id AS ScenarioId,
val_count AS ValuationCounter,
rbdkl AS RbdClass,
prctr AS ProfitCenter,
kostl AS CostCenter,
status_id AS StatusId,
is_simulated AS IsSimulated,
last_val_id AS LastValuationId,
not_transferable AS NotTransferable,
is_not_posted_calc AS IsNotPostedCalc,
revert_indicator AS RevertIndicator,
transfer_typ AS TransferType,
recall_indicator AS RecallIndicator,
do_novation AS DoNovation,
is_poci_asset AS IsPociAsset,
is_departure AS IsDeparture,
dbudat AS PostingDate,
unwinding_ik_from AS UnwindingFromDate
FROM /ibx/t_valua2
LEFT OUTER JOIN /IBX/I_Status AS _Status ON StatusId = _Status.StatusId -- association [0..*]
LEFT OUTER JOIN /IBX/I_HighBal AS _HighestBalance ON ValuationId = _HighestBalance.ValuationId -- association [1..*]
LEFT OUTER JOIN /IBX/I_HighBalWSlice AS _HighestBalanceWSlice ON ValuationId = _HighestBalanceWSlice.ValuationId -- association [1..*]
LEFT OUTER JOIN /IBX/I_HighICAssign AS _HighestICAssignment ON ValuationId = _HighestICAssignment.ValuationId -- association [1..1]
LEFT OUTER JOIN /IBX/I_IC_Assign AS _ImpairmentCategoryAssignment ON /* condition not available in parsed metadata */ -- association [1..*]
LEFT OUTER JOIN /IBX/I_Balance AS _Balance ON /* condition not available in parsed metadata */ -- association [1..*]
LEFT OUTER JOIN /IBX/I_Flow AS _Flow ON /* condition not available in parsed metadata */ -- association [1..*]
;
Learn More
- CDS View Annotations — A Complete Guide
- 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 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
- BSEG to ACDOCA: The Universal Journal Migration
- Business Partner Migration: KNA1/LFA1 to BUT000
- Material Document Migration: MSEG/MKPF to MATDOC
- How to Find the Right CDS View for an SAP Table
- BW Extractor to CDS View Migration Guide
- S/4HANA CDS View Deprecation: What You Need to Know
- ABAP CDS View Tutorial — From Basics to Real-World Examples
- RAP and CDS Views — Building Transactional Apps in SAP S/4HANA
- Sales Document Status Migration: VBUP/VBUK Removal in S/4HANA
- CO Tables in S/4HANA: COEP, COBK, COSS, COSP to ACDOCA