I_ProjectBillingRequestStatus

DDL: I_PROJECTBILLINGREQUESTSTATUS Type: view_entity BASIC

Project Billing Request Status

I_ProjectBillingRequestStatus (Basic)

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

Project Billing Request Status · R&D Engineering

I_ProjectBillingRequestStatus is a Basic CDS View (Dimension) that provides data about "Project Billing Request Status" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 3 fields with key field ProjectBillingRequestStatus. It has 1 association to related views.

SAP Help Documentation

CategoryCDS Views for Project Billing
StatusStatus of the project billing request
Purpose
This CDS view provides supported values for the ProjectBillingRequestStatus field. This view should be used for value help purposes only. The values and their meanings are as follows: Value Meaning A Project billing request is approved via workflow B Billing document request has been created for the project billing request C Temporary project billing request has been created D Project billing request has been rejected via workflow I Invoice has been created for the project billing request P Project billing request has been created and is sent for approval R Billing document request for the project billing request is rejected X Project billing request has been canceled To help you decide which CDS view to use for your purposes, SAP has introduced the annotation ObjectModel.supportedCapabilities that indicates the most appropriate use cases for each CDS view. To find out what use cases are best supported by this CDS view, access the entry of the CDS view in the View Browser app and find the values for this annotation under the Annotation tab. For more information, see Supported Capabilities for CDS Views .

Prerequisites
Authorizations Users who want to use this CDS view must have one of the following business catalogs assigned: SAP_PS_BC_PROJ_BLNG_PC

Structure
Important fields in this view include the following: Field Name Description ProjectBillingRequestStatus Status of the project billing request

View on SAP Help Portal →

SAP API Hub

StateC1
Line of BusinessR&D Engineering
Application ComponentPPM-SCL-BIL
CapabilitiesAnalytical Dimension, Association Target for Defining CDS Entities, Data Source for Defining CDS Entities, Data Source for Search, Data Source in SQL Select, Data Provider for Value Help
PackageR&D Engineering for SAP S/4HANA Cloud Private Edition

Documentation

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_ProjectBillingReqStatusText _ProjectBillingReqStatusText

Annotations (16)

NameValueLevelField
AccessControl.authorizationCheck #NOT_REQUIRED view
EndUserText.label Project Billing Request Status view
Search.searchable true view
Analytics.technicalName IPBRSTATUS view
Analytics.dataCategory #DIMENSION view
Analytics.internalName #LOCAL view
ObjectModel.sapObjectNodeType.name ProjectBillingRequestStatus view
ObjectModel.representativeKey ProjectBillingRequestStatus view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.usageType.dataClass #META view
ObjectModel.resultSet.sizeCategory #XS view
ObjectModel.dataCategory #VALUE_HELP view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
VDM.viewType #BASIC view
Metadata.ignorePropagatedAnnotations true view

Fields (3)

KeyFieldSource TableSource FieldDescription
KEY ProjectBillingRequestStatus Project Billing Request Status
DomainValue dd07l domvalue_l Values for Domains: Single Value/Lower Limit
_ProjectBillingReqStatusText _ProjectBillingReqStatusText

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_ProjectBillingRequestStatus.
-- 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 I_ProjectBillingRequestStatus AS
SELECT
  cast( substring( domvalue_l, 1, 1 ) as pbr_doc_status preserving type ) AS ProjectBillingRequestStatus,
  dd07l.domvalue_l AS DomainValue
FROM dd07l
LEFT OUTER JOIN I_ProjectBillingReqStatusText AS _ProjectBillingReqStatusText ON /* condition not available in parsed metadata */  -- association [0..*]
;