Alternative To READ - TEXT Function Module (No More FM Needed) - SAP Blogs
Alternative To READ - TEXT Function Module (No More FM Needed) - SAP Blogs
Community
Former Member
February 25, 2014 3 minute read
Hello everyone!
This one is for all of those and me too. Most of the posts I have seen on SDN where people asking for alternative READ_TEXT alternative fuvtion
module for read_text | SCN or mass usage of READ_TEXT. Some good or better developers – I must say – are worried about performance issues. Few
newbies are still looking for the usage of READ_TEXT. Lol. FM – READ_TEXT issue with data declaration | SCN
I was also looking for some alternate solution but all in vain. I found one good wiki about the usage of the FM: Function Example READ_TEXT ABAP
wrapper function – Enterprise Information Management – SCN Wiki. This one is great but obviously I have two main concerns. 1. Performance, 2.
https://blogs.sap.com/2014/02/25/alternative-to-readtext-function-module/ 1/32
4/15/2021 Alternative to READ_TEXT Function Module (No more FM needed) | SAP Blogs
Mass usage of reading long text of any object. There is another way to achieve mass read of long text by looping the READ_TEXT (lol, that’s funny), I
don’t need this either because I need performance. I don’t want Basis guys cursing me! 😉
So, what I came with was to avoid READ_TEXT, now the question is HOW? You might think of a big NO! Not possible! But remember
Let me assure you one thing I have done this and it is ready working like a charm.
All you need to do is just fetch the data, rst from STXH then from the line item table STXL. Only question left is how to decompress the long text?
Well, that’s pretty easy and not a big deal all you need is the use of IMPORT statement.
Now let’s see what we have to and how to do it? Below is the code that’s is working 4 to 5 times faster than READ_TEXT performance and is as simple
as anything!
*&---------------------------------------------------------------------*
*& Report ZMA_READ_TEXT
*&
*&---------------------------------------------------------------------*
*&
*&
*&---------------------------------------------------------------------*
REPORT ZMA_READ_TEXT.
TYPES: BEGIN OF TY_STXL,
https://blogs.sap.com/2014/02/25/alternative-to-readtext-function-module/ 2/32
4/15/2021 Alternative to READ_TEXT Function Module (No more FM needed) | SAP Blogs
https://blogs.sap.com/2014/02/25/alternative-to-readtext-function-module/ 3/32
4/15/2021 Alternative to READ_TEXT Function Module (No more FM needed) | SAP Blogs
Here is the output: I have not restricted it to any object (obviously you can do it for your need) and boy it pulls more then 1300 records within a nano
second!
Boom!!
https://blogs.sap.com/2014/02/25/alternative-to-readtext-function-module/ 4/32
4/15/2021 Alternative to READ_TEXT Function Module (No more FM needed) | SAP Blogs
There is another Function Module to fetch multiple texts: RETRIEVAL_MULTIPLE_TEXTS but I haven’t used it. 🙂
Now the last thing, I want to thank Mr. Julian Phillips and Mr. Thomas Zloch. Thankful to Julian because he posted and Thomas gave the solution.
Same solution I implemented with some additions. Here is the post I referred to: Mass reading standard texts (STXH, STXL)
Alert Moderator
I hope you will reuse this code to fetch multiple long text and your comments, suggestions and complaints are welcome! 😀
Assigned tags
Note:Development
ABAP Sourcecode attached!
| abap | abap unit | beginner | code |
View more...
https://blogs.sap.com/2014/02/25/alternative-to-readtext-function-module/ 5/32
4/15/2021 Alternative to READ_TEXT Function Module (No more FM needed) | SAP Blogs
Send E-mail in HTML format with dynamic e-mail body content
By Former Member , Jul 23, 2012
Custom program to Call Standard IDOC without MASTER_IDOC_DISTRIBUTE
By Former Member , Aug 23, 2016
CALL FUNCTION and catch errors without exceptions
By Jörgen Lindqvist , Dec 28, 2020
Related Questions
Debugging in VF31
By Former Member , Sep 18, 2014
How to retrieve the particulars/ long text of a held document.
By KARLVIN CA , Mar 11, 2018
Call Function in Smartform
By Former Member , Jan 08, 2010
53 Comments
Praveen Nenawa
Hi Mansoor ,
https://blogs.sap.com/2014/02/25/alternative-to-readtext-function-module/ 6/32
4/15/2021 Alternative to READ_TEXT Function Module (No more FM needed) | SAP Blogs
Praveen .
Like(0)
Thanks for the appreciation. Do let me know when you use it. You can also add some lters to the WHERE clause to restrict your query.
Like(0)
YUNUS KALDIRIM
Hi Mansoor,
Like(0)
Bikas Tarway
https://blogs.sap.com/2014/02/25/alternative-to-readtext-function-module/ 7/32
4/15/2021 Alternative to READ_TEXT Function Module (No more FM needed) | SAP Blogs
Hi Mansoor,
Bikas
Like(0)
Thanks for the comment. Yes, it does give performance issues when you need to pull millions of texts at once. Obviosuly, you won't loop READ_TEXT.
Hope this makes sense! 🙂
Like(0)
Former Member
Mansoor, very nice explanation. I had read the post you mention Mass reading standard texts (STXH, STXL) and had success implementing this as
well. Now I have another question that some more skilled ABAP'ers may be able to help with.
With regard to the IMPORT statement, does this work directly on the elds provided to it and convert this into the text
OR
Does this actually retrieve something else from the database based on the binary types that are provided, like a mapping technique?
For example, if I have the values in CLUSTR and CLUSTD in any given ABAP system, can I get the values or do I need to execute this in the source
where the STXH/STXL table exists?
https://blogs.sap.com/2014/02/25/alternative-to-readtext-function-module/ 8/32
4/15/2021 Alternative to READ_TEXT Function Module (No more FM needed) | SAP Blogs
My requirement is related to SLT replication, whereas I am trying to convert the values that are extracted from ECC into SLT with the IMPORT
statement. My assumption is that the IMPORT is able to convert the CLUSTR and CLUSTD values outside of the source system, but now I am not
sure. Maybe the IMPORT statement is just converting the binary location in CLUSTR/CLUSTD and retrieving from some other location in the system?
Regards,
Justin
Like(0)
As far as I know, if import is speci ed in parameter_list from a data cluster, the data is automatically converted to the current byte sequence (Endian)
and character representation. You can make use of conversion_options to make adaptations to the current platform.
Like(0)
Former Member
Not sure I understood you correctly there, you went over my head a bit with the rst comment.
If I have one single row of STXL, and extract that to another netweaver system, can I perform the IMPORT there or is there some link that needs to be
maintained?
Regards,
Justin
Like(0)
https://blogs.sap.com/2014/02/25/alternative-to-readtext-function-module/ 9/32
4/15/2021 Alternative to READ_TEXT Function Module (No more FM needed) | SAP Blogs
You can have an addition of Conversion type with import statement. That should work.
Like(0)
Adrián Mejido
Hi Mansoor,
Only one question, don't you think that use INNER-JOIN instead of FAE in the select would be better for performance?
Cheers,
Adrián
Like(0)
Hi Adrian,
There has been a never ending debate to use or not to use FAE. But you can use it and track it via Performance Analysis tool and check which one
gives you better performance. Thanks. 🙂
Like(0)
https://blogs.sap.com/2014/02/25/alternative-to-readtext-function-module/ 10/32
4/15/2021 Alternative to READ_TEXT Function Module (No more FM needed) | SAP Blogs
Former Member
And I'm pretty sure in almost all cases, you'll nd a join is better than FAE. Have you tried to make your code even better by changing it to use a join?
😉
Like(0)
Yeah absolutely! That's it! I was just telling Adrián Mejido to check it and come back to me 😉
Like(0)
Thomas Zloch
Most of the code was taken from my original post, so please allow me to explain.
In my approach the list of single values for the TDNAME selection does not come from an STXH selection, but rather from a selection of application
data like BKPF/BSEG, to name an example. Long texts for FI document items have TDNAME values concatenated from BUKRS, BELNR, GJAHR and
BUZEI. You need to build these TDNAMEs in an intermediate step before accessing STXL, that's why a direct join is not possible, and FAE is the next
best option.
Thomas
Like(1)
Former Member
Hi Thomas,
https://blogs.sap.com/2014/02/25/alternative-to-readtext-function-module/ 11/32
4/15/2021 Alternative to READ_TEXT Function Module (No more FM needed) | SAP Blogs
I have used your logic to read long texts. But sometimes texts I get have non-english characters(French characters in my case). When I have them the
program dumps at import statement. Do you have any suggestion for it.
Naveen
Like(0)
Thomas Zloch
No practical experience with other languages. Please specify the dump: title, what happened, error analysis.
Thomas
Like(0)
Former Member
Error:
What happened?
Bold is the line where is it is going to dump. I analyzed the text it is going to dump. I think special characters in words like Montréal, Québec are causing it.
Other texts are loading fine.
As the text would be in hexadecimal, is there anyway I could check for those special characters before passing it to Import statement.
Like(0)
abilash n
Like(0)
Like(0)
Sandra Rossi
https://blogs.sap.com/2014/02/25/alternative-to-readtext-function-module/ 13/32
4/15/2021 Alternative to READ_TEXT Function Module (No more FM needed) | SAP Blogs
Hello,
EDIT March 1st, 2019: here is a new version of the code at https://gist.github.com/sandraros/8b54e98166809fdb7ae39b1c11a846fe. It’s made as a
local interface and classes, which should make it more easy to process each long text with your own implementation. It also includes the JOIN on
STXH and STXL instead of FOR ALL ENTRIES as proposed by Kenneth’s comment, and the corrections proposed by Former member and Jacques.
Also, you have the newest function modules READ_MULTIPLE_TEXTS and READ_TEXT_TABLE, as explained in note 2261311 – Function module for
reading multiple SAPscript texts
I think the code is not entirely correct. It may dump in case a standard text is very long. As you can see, T_STXL_RAW is always one line before
IMPORT … FROM INTERNAL TABLE, but theorically there should be more lines if the original text is very long. I found the standard text
ADRS_HEADER_LOGO_PRES provided by SAP, which is very long, and it should demonstrate the bug.
The correction is not obvious as the loading is done by PACKAGE; consequently the last line of the package may not be the last line of a text. So we
need to wait for the next package to complete the text and be able to use IMPORT. That requires both a sorted read (ORDER BY) and a bu er table.
The following code should always work. Please feel free to ask me any question if it’s unclear.
IMPORTANT: please use the NEW code in the GIST mentioned ABOVE (in the EDIT at the top of the comment).
REPORT.
TYPES: BEGIN OF ty_stxl,
relid TYPE stxl-relid,
tdobject TYPE stxl-tdobject,
tdname TYPE stxl-tdname,
tdid TYPE stxl-tdid,
tdspras TYPE stxl-tdspras,
srtf2 TYPE stxl-srtf2,
clustr TYPE stxl-clustr,
clustd TYPE stxl-clustd,
https://blogs.sap.com/2014/02/25/alternative-to-readtext-function-module/ 14/32
4/15/2021 Alternative to READ_TEXT Function Module (No more FM needed) | SAP Blogs
END OF ty_stxl.
DATA: t_stxl TYPE STANDARD TABLE OF ty_stxl,
t_stxl_buffer TYPE STANDARD TABLE OF ty_stxl.
FIELD-SYMBOLS: <stxl> TYPE ty_stxl.
* compressed text data without text name
TYPES: BEGIN OF ty_stxl_raw,
clustr TYPE stxl-clustr,
clustd TYPE stxl-clustd,
END OF ty_stxl_raw.
DATA: t_stxl_raw TYPE STANDARD TABLE OF ty_stxl_raw.
DATA: w_stxl_raw TYPE ty_stxl_raw.
* decompressed text
DATA: t_tline TYPE STANDARD TABLE OF tline.
FIELD-SYMBOLS: <tline> TYPE tline.
DATA: t_stxh TYPE STANDARD TABLE OF stxh,
w_stxh TYPE stxh.
TABLES stxh.
SELECT-OPTIONS s_object FOR stxh-tdobject.
SELECT-OPTIONS s_name FOR stxh-tdname.
SELECT-OPTIONS s_id FOR stxh-tdid.
SELECT-OPTIONS s_langu FOR stxh-tdspras.
https://blogs.sap.com/2014/02/25/alternative-to-readtext-function-module/ 15/32
4/15/2021 Alternative to READ_TEXT Function Module (No more FM needed) | SAP Blogs
DO.
FETCH NEXT CURSOR cursor
APPENDING TABLE t_stxl
PACKAGE SIZE package_size.
subrc = sy-subrc.
IF subrc = 4.
IF lines( t_stxl ) > 0.
process = abap_true.
ELSE.
process = abap_false.
ENDIF.
ELSEIF subrc = 0.
IF lines( t_stxl ) < package_size.
process = abap_true.
ELSE.
" put lines of last key aside, as there may be other lines for the same key
DESCRIBE TABLE t_stxl LINES l_last_tabix.
https://blogs.sap.com/2014/02/25/alternative-to-readtext-function-module/ 16/32
4/15/2021 Alternative to READ_TEXT Function Module (No more FM needed) | SAP Blogs
IF <stxl>-relid = s_stxl-relid
AND <stxl>-tdobject = s_stxl-tdobject
AND <stxl>-tdname = s_stxl-tdname
AND <stxl>-tdid = s_stxl-tdid
AND <stxl>-tdspras = s_stxl-tdspras.
" The whole package has same key -> load next lines
process = abap_false.
ELSE.
process = abap_true.
l_first_tabix = l_last_tabix.
l_first_tabix = l_last_tabix.
DO.
SUBTRACT 1 FROM l_first_tabix.
READ TABLE t_stxl INDEX l_first_tabix ASSIGNING <stxl>.
IF sy-subrc <> 0.
EXIT.
ENDIF.
IF NOT ( <stxl>-relid = s_stxl-relid
AND <stxl>-tdobject = s_stxl-tdobject
AND <stxl>-tdname = s_stxl-tdname
AND <stxl>-tdid = s_stxl-tdid
AND <stxl>-tdspras = s_stxl-tdspras ).
EXIT.
ENDIF.
ENDDO.
ADD 1 TO l_first_tabix.
https://blogs.sap.com/2014/02/25/alternative-to-readtext-function-module/ 17/32
4/15/2021 Alternative to READ_TEXT Function Module (No more FM needed) | SAP Blogs
ENDIF.
ENDIF.
ELSE.
" can’t happen
ASSERT 0 = 1.
ENDIF.
IF process = abap_true.
LOOP AT t_stxl ASSIGNING <stxl>.
AT NEW tdspras.
REFRESH t_stxl_raw.
ENDAT.
AT END OF tdspras.
IMPORT tline = t_tline FROM INTERNAL TABLE t_stxl_raw.
DESCRIBE TABLE t_stxl_raw.
FORMAT COLOR 5.
WRITE: / 'AA', sy-tfill LEFT-JUSTIFIED, <stxl>-tdobject, <stxl>-tdname, <stxl>-tdid, <stxl>-tdspras.
FORMAT RESET.
LOOP AT t_tline ASSIGNING <tline>.
WRITE: / <tline>-tdline.
ENDLOOP.
REFRESH t_stxl_raw.
ENDAT.
https://blogs.sap.com/2014/02/25/alternative-to-readtext-function-module/ 18/32
4/15/2021 Alternative to READ_TEXT Function Module (No more FM needed) | SAP Blogs
ENDLOOP.
ENDIF.
t_stxl = t_stxl_buffer.
CLEAR t_stxl_buffer.
IF subrc <> 0.
EXIT.
ENDIF.
ENDDO.
Like(0)
Thomas Zloch
Nice catch, and thanks for enhancing the logic. It seems that the threshold of STXL-CLUSTR is 7902 (bytes?), then a new line is started.
My use cases so far were far below this threshold, so it never occurred to me.
Cheers
Thomas
Like(0)
abilash n
https://blogs.sap.com/2014/02/25/alternative-to-readtext-function-module/ 19/32
4/15/2021 Alternative to READ_TEXT Function Module (No more FM needed) | SAP Blogs
Like(0)
Thomas Zloch
Like(0)
abilash n
Former Member
Thanks Sandra. I ran into the same issue you discussed. Some of the texts I had to deal with were more than 7902 bytes (about 8 page word
document). I used your code to x it. Couple of small misses. One is close cursor statement and checking for internal table not being initial before
using FAE.
Like(2)
https://blogs.sap.com/2014/02/25/alternative-to-readtext-function-module/ 20/32
4/15/2021 Alternative to READ_TEXT Function Module (No more FM needed) | SAP Blogs
Jacques Nomssi
Like(1)
Kenneth Eriksen
I know this is an old post, but just in case anyone is interested: This code is just what I needed for a prototype I am working on! I've been playing
around with the code and I had problems getting it to run on our HANA system. The select on STXL would take a long time and then short dump.
I think this is caused by using "FOR ALL ENTRIES IN" statement. I therefore decided to replace the two SELECTs on STXH and STXL with one, like so
(the where clause is a bit di erent than the original as I have di erent requirements):
l~tdspras
l~srtf2.
Change this:
t_stxl = t_stxl_bu er.
to this:
t_stxl = t_stxl_bu er.
REFRESH t_stxl_bu er.
Like(1)
Sandra Rossi
Thanks Kenneth. I have added a GIST in my post, in which I included the JOIN and correction, and a better and object-oriented logic.
Like(0)
Sudhakar Devaraya
Hi,
https://help.sap.com/doc/abapdocu_751_index_htm/7.51/en-US/abapopen_cursor.htm
I am not able to use it. Please suggest!
Like(0)
Sandra Rossi
https://blogs.sap.com/2014/02/25/alternative-to-readtext-function-module/ 22/32
4/15/2021 Alternative to READ_TEXT Function Module (No more FM needed) | SAP Blogs
January 27, 2021 at 12:50 pm
Your question is not related to my post, please ask it in the SAP forum (and please explain in that question why you let so many cursors open).
Like(0)
Former Member
Hi Mansor,
Thanks for your e ort. In Lot of cases many Abapers are using READ_TEXT fm. Now onwards we will follow above code what you have mentioned.
Thanks,
Gurunath D
Like(0)
Thomas Zloch
It's ne to use READ_TEXT. The approach described here is meant for performance-critical mass processing.
Thomas
Like(0)
You might also want to add IF t_stxh[] IS NOT INITIAL check before 'FOR ALL ENTRIES'. Or a program could display some kind of 'No data found'
message and just exit in such case, I guess...
https://blogs.sap.com/2014/02/25/alternative-to-readtext-function-module/ 23/32
4/15/2021 Alternative to READ_TEXT Function Module (No more FM needed) | SAP Blogs
Like(0)
Rüdiger Plantiko
Hi Mansoor,
the STXL storage mechanism that you proudly found out and exposed here (congratulations), is only a small part of the function module
READ_TEXT. There is
Regards,
Rüdiger
Like(0)
Darshak Kathiriya
Hi Mansoor,
Good post, I have tried RETRIEVAL_MULTIPLE_TEXTS that you mentioned to read batch short text and It is working ne !
https://blogs.sap.com/2014/02/25/alternative-to-readtext-function-module/ 24/32
4/15/2021 Alternative to READ_TEXT Function Module (No more FM needed) | SAP Blogs
Thanks,
Darshak
Like(0)
Former Member
Like(0)
Former Member
🙂🙂
Like(0)
SOMENDRA SHUKLA
Nice Alternative to Read_Text & Excellent use of eld symbol and Import statement
Like(0)
https://blogs.sap.com/2014/02/25/alternative-to-readtext-function-module/ 25/32
4/15/2021 Alternative to READ_TEXT Function Module (No more FM needed) | SAP Blogs
Mike Mathieson
I'm using this technique (without Sandra's extra code) but getting a dump when the text is very long. I'm going to implement her code, but before I do, I
would really like to understand....
Why does the long text dump? I think my problem is - I don't understand the IMPORT statement. I read HELP, but it still doesn't seem like this should cause
a dump. Can someone please explain?
Thanks in advance,
Mike
Like(0)
Sandra's comment already explains the issue. Not sure what sort of short dump long text is causing exactly, but you won't always nd this kind of
information in Help. It could be a generic dump, like conversion or out of memory. It is not necessarily speci c to the IMPORT command.
IMPORT converts data cluster into the "human readable" format. If you look at an STXL record in SE16 you'll see some kind of gibberish in the
CLUSTD eld. It's the "raw" data that needs to be converted to be readable.
Like(0)
Mike Mathieson
https://blogs.sap.com/2014/02/25/alternative-to-readtext-function-module/ 26/32
4/15/2021 Alternative to READ_TEXT Function Module (No more FM needed) | SAP Blogs
2513
2517
2520
2521 * read the 1st decompressed text line and ll the short text of
And it is occurring when processing long text (> 7902 bytes). So, while I haven't duplicated the error yet, I'm fairly certain/hopeful this is the problem
Sandra solves with her code.
My problem is - I don't see what she has done to prevent the dump, and in fact I don't see why the dump happens in the rst place. Keep in mind, I'm
not doubting the solution, I just want to understand why it occurs. I could possibly see why the dump would occur on the IMPORT statement, but not
the READ. Sandra's IMPORT-READ(LOOP) looks identical to me, so I don't understand how this solves the problem?
Mike
Like(0)
https://blogs.sap.com/2014/02/25/alternative-to-readtext-function-module/ 27/32
4/15/2021 Alternative to READ_TEXT Function Module (No more FM needed) | SAP Blogs
Former Member
Mike
Are you using Select or Cursor statement to get data from STXL table?
Like(0)
Mike Mathieson
I'm using a SELECT. But, I've gured it out. In case anyone needs more explanation of something most readers of this blog may already know (unless
you're new to the IMPORT statement like me), from the code above....
1. T_STXL_RAW must contain all the STXL entries for the text you are trying to read. Most of the time that is only one entry but if the text is over 7902 bytes, you will have multiple
entries. If you don't have all the entries, the IMPORT will dump.
2. T_STXL_RAW must have its entries in the same order as they are listed in STXL. If not, the program will dump.
Mike
Like(1)
Bob Ackerman
Thanks Mike, I was just reading this blog because I was performance tuning a program that uses READ_TEXT in a couple places. Using the tip from
the original poster, I was able to get faster results. But then in testing I got dumps. Your post about how T_STXL_RAW needs to be processed for the
IMPORT to work properly was a huge help. Thanks again
Bob
Like(0)
https://blogs.sap.com/2014/02/25/alternative-to-readtext-function-module/ 28/32
4/15/2021 Alternative to READ_TEXT Function Module (No more FM needed) | SAP Blogs
Dennis Keßler
Hi,
I just read your post concerning the alternative to the function module read_text.
I have an issue concerning read and save text and bring it to an adobe form.
I have to store texts with more than 132 characters in one row. Do you have any idea how to achieve this?
Thanks in advance
Like(0)
Richard Harper
Like(0)
Former Member
Mansoor,
https://blogs.sap.com/2014/02/25/alternative-to-readtext-function-module/ 29/32
4/15/2021 Alternative to READ_TEXT Function Module (No more FM needed) | SAP Blogs
Like(0)
Naimesh Patel
Also the logic doesn't handle the TDREF like Rüdiger Plantiko mentioned in his comment
The Reference Text is a critical part of the logic and it is widely used for many standard transaction where Text just ows from one "Object" to another
object. Like Shipping text for customer goes to Sales order to Delivery. If you use the same logic on Delivery, it will not work as the text is being used
as reference (STXH-TDREF).
By reading the STXH and STXL directly, you should know that it may not give you the correct output for certain scenarios.
Thanks,
Naimesh Patel
Like(0)
Simone Cattozzi
Now you can read faster removing the FOR ALL ENTRIES, see blog
Like(0)
Hammad Sharif
https://blogs.sap.com/2014/02/25/alternative-to-readtext-function-module/ 30/32
4/15/2021 Alternative to READ_TEXT Function Module (No more FM needed) | SAP Blogs
Like(0)
With the advantage of the SAP Note below(From 2016), 2 new FM are created to solve this performance issue:
READ_MULTIPLE_TEXTS
READ_TEXT_TABLE
Like(2)
Adnan Dodmani
what changes should i do to fetch the long text related to Q-info record ?
Like(0)
https://blogs.sap.com/2014/02/25/alternative-to-readtext-function-module/ 31/32
4/15/2021 Alternative to READ_TEXT Function Module (No more FM needed) | SAP Blogs
Find us on
Newsletter Support
https://blogs.sap.com/2014/02/25/alternative-to-readtext-function-module/ 32/32