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_INT4
Interface/ORK/IF_SI_ABAP_INT4
ABAP Integer (Singleton)
InterfaceABAP Integer (Singleton)
Package
/ORK/SINGLETON
Members
13
2 items
Methods
max
Method

Returns the maximum value from a table of integers.

Parameters

NameDescriptionvaluesTable of integer values to evaluatefallbackFallback value if table is emptyresultMaximum integer found or fallback

Signature

METHODS max IMPORTING !values TYPE ty_tt
                        fallback TYPE i DEFAULT 0
              RETURNING VALUE(result) TYPE i.
min
Method

Returns the minimum value from a table of integers.

Parameters

NameDescriptionvaluesTable of integer values to evaluatefallbackFallback value if table is emptyresultMinimum integer found or fallback

Signature

METHODS min IMPORTING !values TYPE ty_tt
                        fallback TYPE i DEFAULT 0
              RETURNING VALUE(result) TYPE i.
11 items
Types
ty_unit
Type

32-bit integer type.

Signature

TYPES ty_unit TYPE i.
ty_tt
Type

Table types for integer collections.

Signature

TYPES ty_tt TYPE STANDARD TABLE OF ty_unit WITH EMPTY KEY.
ty_td
Type

Signature

TYPES ty_td TYPE STANDARD TABLE OF ty_unit WITH DEFAULT KEY.
ty_ts
Type

Signature

TYPES ty_ts TYPE SORTED TABLE OF ty_unit WITH NON-UNIQUE KEY table_line.
ty_tq
Type

Signature

TYPES ty_tq TYPE SORTED TABLE OF ty_unit WITH UNIQUE KEY table_line.
ty_th
Type

Signature

TYPES ty_th TYPE HASHED TABLE OF ty_unit WITH UNIQUE KEY table_line.
ty_tr
Type

Range types for integer values.

Signature

TYPES ty_tr TYPE RANGE OF ty_unit.
ty_sr
Type

Signature

TYPES ty_sr TYPE LINE OF ty_tr.
ty_tts
Type

Additional typed table variants with keys.

Signature

TYPES ty_tts TYPE STANDARD TABLE OF ty_unit WITH EMPTY KEY WITH NON-UNIQUE SORTED KEY ks COMPONENTS table_line.
ty_ttq
Type

Signature

TYPES ty_ttq TYPE STANDARD TABLE OF ty_unit WITH EMPTY KEY WITH UNIQUE SORTED KEY kq COMPONENTS table_line.
ty_tth
Type

Signature

TYPES ty_tth TYPE STANDARD TABLE OF ty_unit WITH EMPTY KEY WITH UNIQUE HASHED KEY kh COMPONENTS table_line.
Repository11 packages · 112 objects
123 items