I_UtilsBillgDocSimulationRsn

DDL: I_UTILSBILLGDOCSIMULATIONRSN SQL: IEBILLGSIMURSN Type: view BASIC

Billing Document Simulation Reason

I_UtilsBillgDocSimulationRsn (Basic)

Package: Explore, extend and adapt the SAP S/4HANA Cloud Private Edition with built-in and side-by-side extension capabilities.

UtilsBillingDocSimulationRsn · Utilities

I_UtilsBillgDocSimulationRsn is a Basic CDS View (Dimension) that provides data about "Billing Document Simulation Reason" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field UtilsBillgSimulationReason. It has 1 association to related views.

SAP Help Documentation

CategoryBilling
Data CategoryDimension
StatusC1
Purpose
This CDS view retrieves data for the field SIMULATION (Indicator: Billing Simulation). Admissible values are: - No simulation 1 - Simulation of billing for budget billing calculation 2 - Simulation of billing for extrapolation for unbilled revenue reporting 3 - Simulation of billing without billing order 4 - Simulation of billing with billing order 5 - Simulation of billing for overall check 6 - Simulation of billing without billing order from billing 7 - Simulation by extrapolation of previous document 8 - Customer-specific simulation 8 - Internal simulation without order for backbilling 10 - Simulation with alternative rate categories

Prerequisites
Authorizations Not applicable.

Structure
Important fields in this view include the following: Field Name Description UtilsBillgSimulationReason Indicator for Billing Simulation

View on SAP Help Portal →

SAP API Hub

StateC1
Line of BusinessUtilities
Application ComponentIS-U-BI
CapabilitiesData Source in SQL Select, Analytical Dimension, Association Target for Defining CDS Entities, Data Source for Defining CDS Entities, Data Source for Data Extraction
PackageUtilities for SAP S/4HANA
Description <p>This CDS view retrieves data for the field SIMULATION (Indicator: Billing Simulation).</p> <p>Admissible values are:</p> <ul> <li><p> - No simulation</p></li> <li><p>1 - Simulation of billing for budget billing calculation</p></li> <li><p>2 - Simulation of billing for extrapolation for unbilled revenue reporting</p></li> <li><p>3 - Simulation of billing without billing order</p></li> <li><p>4 - Simulation of billing with billing order</p></li> <li><p>5 - Simulation of billing for overall check</p></li> <li><p>6 - Simulation of billing without billing order from billing</p></li> <li><p>7 - Simulation by extrapolation of previous document</p></li> <li><p>8 - Customer-specific simulation</p></li> <li><p>8 - Internal simulation without order for backbilling </p></li> <li><p>10 - Simulation with alternative rate categories</p></li> </ul>

Documentation

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_UtilsBillgDocSimulationRsnT _Text $projection.UtilsBillgSimulationReason = _Text.UtilsBillgSimulationReason

Annotations (15)

NameValueLevelField
EndUserText.label Billing Document Simulation Reason view
Analytics.dataCategory #DIMENSION view
VDM.viewType #BASIC view
AbapCatalog.sqlViewName IEBILLGSIMURSN view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.serviceQuality #B view
ObjectModel.usageType.sizeCategory #L view
ClientHandling.algorithm #SESSION_VARIABLE view
ObjectModel.representativeKey UtilsBillgSimulationReason view
AbapCatalog.compiler.compareFilter true view
Metadata.ignorePropagatedAnnotations true view
ObjectModel.modelingPattern #ANALYTICAL_DIMENSION view
Analytics.dataExtraction.enabled true view
ObjectModel.sapObjectNodeType.name UtilsBillingDocSimulationRsn view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY UtilsBillgSimulationReason Indicator: billing simulation
_Text _Text

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 I_UtilsBillgDocSimulationRsn.
-- 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.
-- SQL view name: IEBILLGSIMURSN

CREATE VIEW I_UtilsBillgDocSimulationRsn AS
SELECT
  cast(substring(dd07l.domvalue_l, 1, 2) as simulation preserving type) AS UtilsBillgSimulationReason
FROM dd07l
LEFT OUTER JOIN I_UtilsBillgDocSimulationRsnT AS _Text ON UtilsBillgSimulationReason = _Text.UtilsBillgSimulationReason  -- association [0..*]
;