GitHub
LibrariesOpen source libraries used to build this documentation site.
LibraryRoleVersionLicense
AstroastroSite framework6.3.1MIT
Astro React@astrojs/reactReact integration5.0.4MIT
Astro Sitemap@astrojs/sitemapSitemap generation3.7.2MIT
UI5 Web Components@ui5/webcomponentsUI primitives2.22.0Apache-2.0
UI5 Web Components Fiori@ui5/webcomponents-fioriFiori shell components2.22.0Apache-2.0
UI5 Web Components Icons@ui5/webcomponents-iconsIcon set2.22.0Apache-2.0
UI5 Web Components React@ui5/webcomponents-reactReact wrappers2.22.0Apache-2.0
ReactreactUI runtime19.2.6MIT
React DOMreact-domDOM renderer19.2.6MIT
ShikishikiSyntax highlighting4.0.2MIT
Docs/ORK/SINGLETON/ORK/IF_SI_ABAP_STRING_IS
Interface/ORK/IF_SI_ABAP_STRING_IS
ABAP String Functions (Singleton)
InterfaceABAP String Functions (Singleton)
Package
/ORK/SINGLETON
Members
3
Description

Provides boolean helper methods for testing strings and string tables.

3 items
Methods
empty
Method

Checks if a string is empty.

Parameters

NameDescriptionstrInput string to checkresultabap_true if the string is empty, abap_false otherwise

Signature

METHODS empty IMPORTING str TYPE string
                RETURNING VALUE(result) TYPE abap_bool.
whitespace_or_empty
Method

Checks if a string is empty or consists only of whitespace characters.

Parameters

NameDescriptionstrInput string to checkresultabap_true if the string is empty or all characters are whitespace, abap_false otherwise

Signature

METHODS whitespace_or_empty IMPORTING str TYPE string
                              RETURNING VALUE(result) TYPE abap_bool.
whitespace_or_empty_tab
Method

Checks if all strings in a table are empty or consist only of whitespace characters.

Parameters

NameDescriptiontextsTable of strings to checkresultabap_true if all strings are empty or whitespace, abap_false otherwise

Signature

METHODS whitespace_or_empty_tab IMPORTING texts TYPE string_table
                                  RETURNING VALUE(result) TYPE abap_bool.
Repository11 packages · 112 objects
123 items