I_PublicSectorFormClassText

DDL: I_PUBLICSECTORFORMCLASSTEXT Type: view BASIC

Public Sector Form Class - Text

I_PublicSectorFormClassText (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_PublicSectorFormClassText is a Basic CDS View that provides data about "Public Sector Form Class - Text" in SAP S/4HANA. It reads from 1 data source (dd07t) and exposes 5 fields with key fields Language, PublicSectorFormClass. 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 public sector forms, including their metadata, status, and associations with related entities such as form bundles, form classes, and form statuses. It serves as a foundational data model for transactional operations related to public sector forms, ensuring that the necessary data is available for processing and analysis. </p> <p>This CDS view provides the data to answer the following business questions:</p> <ul> <li><p>What are the details of a specific public sector form, including its name, number, and unique identifiers?</p></li> <li><p>When was the last change made to a particular public sector form?</p></li> <li><p>What is the current status of a public sector form, and what are its associated class and bundle?</p></li> <li><p>Has a public sector form been amended, and if so, what are the identifiers of the superseding and superseded forms?</p></li> <li><p>What is the storage location and batch information for document management services related to a public sector form?</p></li> <li><p>What is the template version of a public sector form?</p></li> <li><p>How can associations with form bundles, classes, and statuses be utilized for further analysis or processing?</p></li> </ul> <p>This view provides supported values for PublicSectorFormClass.</p> <p>The values and their meanings are:</p> <p>Value</p> <p>Meaning</p> &nbsp; <p>ISR Form</p> <p>TF</p> <p>Table Form</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
dd07t dd07t from

Associations (2)

CardinalityTargetAliasCondition
[0..1] I_PublicSectorFormClass _FormClass $projection.PublicSectorFormClass = _FormClass.PublicSectorFormClass
[0..1] I_Language _Language $projection.Language = _Language.Language

Annotations (14)

NameValueLevelField
EndUserText.label Public Sector Form Class - Text view
ClientHandling.algorithm #SESSION_VARIABLE view
VDM.viewType #BASIC view
VDM.lifecycle.contract.type #PUBLIC_LOCAL_API view
AbapCatalog.sqlViewName IPSFORMCLASSTEXT view
AbapCatalog.compiler.compareFilter true view
AccessControl.authorizationCheck #NOT_REQUIRED view
ObjectModel.representativeKey PublicSectorFormClass view
ObjectModel.dataCategory #TEXT view
ObjectModel.usageType.serviceQuality #A view
ObjectModel.usageType.dataClass #META view
ObjectModel.usageType.sizeCategory #S view
ObjectModel.modelingPattern #LANGUAGE_DEPENDENT_TEXT view
Metadata.ignorePropagatedAnnotations true view

Fields (5)

KeyFieldSource TableSource FieldDescription
KEY Language Language Key
KEY PublicSectorFormClass Form Class
PublicSectorFormClassName ddtext Short Text for Fixed Values
_FormClass _FormClass
_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_PublicSectorFormClassText.
-- 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_PublicSectorFormClassText AS
SELECT
  cast( ddlanguage as spras preserving type ) AS Language,
  cast( substring( domvalue_l, 1, 2) as form_class_ps preserving type ) AS PublicSectorFormClass,
  ddtext AS PublicSectorFormClassName
FROM dd07t
LEFT OUTER JOIN I_PublicSectorFormClass AS _FormClass ON PublicSectorFormClass = _FormClass.PublicSectorFormClass  -- association [0..1]
LEFT OUTER JOIN I_Language AS _Language ON Language = _Language.Language  -- association [0..1]
;