I_PublicSectorFormStatusText

DDL: I_PUBLICSECTORFORMSTATUSTEXT SQL: IPSFORMSTATUSTXT Type: view BASIC

Public Sector Form Status Text

Public Sector Form Status - Text

I_PublicSectorFormStatusText (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_PublicSectorFormStatusText is a Basic CDS View that provides data about "Public Sector Form Status Text" in SAP S/4HANA. It reads from 1 data source (I_DomainFixedValueText) and exposes 5 fields with key fields PublicSectorFormStatus, Language. It has 2 associations to related views.

SAP API Hub

StateC1
Line of BusinessCross Applications
Application ComponentIS-PS-CA
CapabilitiesLanguage-Dependent Text
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
I_DomainFixedValueText I_DomainFixedValueText from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_PublicSectorFormStatus _FormStatus $projection.PublicSectorFormStatus = _FormStatus.PublicSectorFormStatus
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (11)

NameValueLevelField
AbapCatalog.sqlViewName IPSFORMSTATUSTXT view
AbapCatalog.compiler.compareFilter true view
ObjectModel.usageType.dataClass #CUSTOMIZING view
ObjectModel.usageType.serviceQuality #C view
ObjectModel.usageType.sizeCategory #L view
ObjectModel.dataCategory #TEXT view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey PublicSectorFormStatus view
EndUserText.label Public Sector Form Status Text view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY PublicSectorFormStatus Form Status
KEY Language Language Report Text Language
PublicSectorFormStatusName DomainText Short Text for Fixed Values
_FormStatus _FormStatus
_Language _Language

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_PublicSectorFormStatusText.
-- 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: IPSFORMSTATUSTXT

CREATE VIEW I_PublicSectorFormStatusText AS
SELECT
  cast(substring(DomainValue, 1, 1) as form_status_ps preserving type) AS PublicSectorFormStatus,
  Language,
  DomainText AS PublicSectorFormStatusName
FROM I_DomainFixedValueText
LEFT OUTER JOIN I_PublicSectorFormStatus AS _FormStatus ON PublicSectorFormStatus = _FormStatus.PublicSectorFormStatus  -- association [0..1]
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;