Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

where are built-in functions for string processing kept?

Former Member
0 Likes
440

I am wondering where all these buil-in functions or methods for string processing are stored?

We genrally use many of the ABAP functions like lines( <itab> ) to get the number of lines present in internal table or say any mathematical function like ABS, ROUND etc.

We are calling these functions as we call private functional methods in public methods of any object.

So my question is what are these inbuilt funtions? Are they some Function module or is there any object which is global and available to all the development objects in ABAP and these static methods or public methods of this object?

1 ACCEPTED SOLUTION
Read only

amy_king
Active Contributor
0 Likes
397

Hi Mohammed,

These are called predefined functions and are part of the syntax of the ABAP language just as predefined data types are part of the language. You can read more about predefined functions in the ABAP keyword documentation.

Cheers,

Amy

2 REPLIES 2
Read only

amy_king
Active Contributor
0 Likes
398

Hi Mohammed,

These are called predefined functions and are part of the syntax of the ABAP language just as predefined data types are part of the language. You can read more about predefined functions in the ABAP keyword documentation.

Cheers,

Amy

Read only

Former Member
0 Likes
397

Thanks very much Amy.
But i was woundering where these predefined functions are kept like in the form of a library?

Like there are SAP Components library there should be some library of functions where we can add our own funtions to it or enhance the existing ones. Like we have BREAK and CONTINUE statements which are stored as Macros in table TRMAC.

http://www.geekface.in/2013/01/what-is-break-and-continue-in-abap.html explains more about it.