I_PublicSectorFormStatus

DDL: I_PUBLICSECTORFORMSTATUS Type: view BASIC

Public Sector Form Status

I_PublicSectorFormStatus (Basic)

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

Cross Applications

I_PublicSectorFormStatus is a Basic CDS View that provides data about "Public Sector Form Status" in SAP S/4HANA. It reads from 1 data source (dd07l) and exposes 2 fields with key field PublicSectorFormStatus. It has 1 association to related views.

SAP Help Documentation

CategoryCDS Views for Taxpayer Identification and Returns Processing
Purpose
This CDS view is designed to provide a structured representation of form statuses within the public sector domain. It extracts and casts specific values from the domain FORM_STATUS_PS in the table dd07l , associating them with descriptive text to facilitate understanding and usage in business processes. This CDS view provides the data to answer the following business questions: What are the different statuses available for forms in the public sector? How can these form statuses be categorized or represented in a structured format? What descriptive text is associated with each form status to aid in interpretation and decision-making? This view provides supported values for PublicSectorFormStatus . The values and their meanings are: Value Meaning Active 2 Void 1 Obsolete 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 don't need any special authorization.

View on SAP Help Portal →

SAP API Hub

StateC1
Line of BusinessCross Applications
Application ComponentIS-PS-CA
CapabilitiesAssociation Target for Defining CDS Entities, Data Source in SQL Select, Data Source for Defining CDS Entities
PackageCross Applications for SAP S/4HANA Cloud Private Edition
Description <p>This CDS view is designed to provide a structured representation of form statuses within the public sector domain. It extracts and casts specific values from the domain FORM_STATUS_PS in the table dd07l, associating them with descriptive text to facilitate understanding and usage in business processes. </p> <p>This CDS view provides the data to answer the following business questions:</p> <ul> <li><p>What are the different statuses available for forms in the public sector?</p></li> <li><p>How can these form statuses be categorized or represented in a structured format?</p></li> <li><p>What descriptive text is associated with each form status to aid in interpretation and decision-making?</p></li> </ul> <p>This view provides supported values for PublicSectorFormStatus.</p> <p>The values and their meanings are:</p> <p>Value</p> <p>Meaning</p> &nbsp; <p>Active</p> <p>2</p> <p>Void</p> <p>1</p> <p>Obsolete</p> <p>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.</p>

Documentation

Data Sources (1)

SourceAliasJoin Type
dd07l dd07l from

Associations (1)

CardinalityTargetAliasCondition
[0..*] I_PublicSectorFormStatusText _Text $projection.PublicSectorFormStatus = _Text.PublicSectorFormStatus

Annotations (13)

NameValueLevelField
EndUserText.label Public Sector Form Status view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
AbapCatalog.sqlViewName IPSFORMSTATUS view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey PublicSectorFormStatus view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.modelingPattern #NONE view
Metadata.ignorePropagatedAnnotations true view

Fields (2)

KeyFieldSource TableSource FieldDescription
KEY PublicSectorFormStatus Form Status
_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_PublicSectorFormStatus.
-- 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_PublicSectorFormStatus AS
SELECT
  cast( substring( dd07l.domvalue_l, 1, 1 ) as ps_form_status preserving type ) AS PublicSectorFormStatus
FROM dd07l
LEFT OUTER JOIN I_PublicSectorFormStatusText AS _Text ON PublicSectorFormStatus = _Text.PublicSectorFormStatus  -- association [0..*]
;