Convert STRING to table ABAP with using function module SO_STRING_TO_TAB useful when you need to create email in ABAP program. Because for creating HTML document with using, for example cl_document_bcs=>create_document you need to send internal table with table type ABAP SOLI_TAB (rows for this type table SOLI).
Continue reading Convert String to Table ABAP in SAPTag Archives: String ABAP
Working with ABAP strings is an important part of development for SAP systems. Split, concatenate, replace, length strings ABAP and other actions with SAP strings.
New syntax ABAP errors! | ERRORS ABAP 7.4 and 7.5 SAP
Check your knowledge in new syntax ABAP! Spend 5 minutes on your ABAP!
New syntax ABAP errors in ABAP 7.4 and ABAP 7.5 with examples. I will show how I fixed ABAP error in SAP with debugger ABAP. In ABAP code I used: Inline declaration ABAP, ABAP SELECT, ABAP STRING and other new ABAP construction in SAP.
Continue reading New syntax ABAP errors! | ERRORS ABAP 7.4 and 7.5 SAPConcatenate ABAP SAP
Concatenate SAP construct in ABAP is used to combine multiple strings into one. There are several options for using this design in SAP systems. In this article I will tell you how to use the old version of string concatenation ABAP and what possibilities of using this construct have appeared in the new syntax ABAP 7.4.
Continue reading Concatenate ABAP SAPREPLACE ABAP SAP. Replacing character in string.
Often when developing ABAP programs, it becomes necessary to replace a substring with another or find string length ABAP. For example, replace a comma with a dot or insert a space instead of a separator and many other options. The ABAP REPLACE character replacement function will help. This function replaces a substring of text with a string of characters and returns the modified text as a result. There are two call options, we will look at each of them in more detail:
Continue reading REPLACE ABAP SAP. Replacing character in string.How find length string ABAP? ABAP string length | STRLEN SAP
ABAP string length. The ABAP language has several expressions for dealing with the length of ABAP strings. Let’s analyze these features in more detail. All string manipulation functions have one unnamed argument and are used by ABAP developers. Using examples, I will analyze how to get the length of a string in various ways.
Continue reading How find length string ABAP? ABAP string length | STRLEN SAP