Application Development 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: 

Usage of s010

warcsi
Participant
0 Kudos

Hi,

I dont know a lot about ABAP long text objects but I would like to learn about them.

I am working on a programm where I think I need them.

One of the questions is can I create multipple of these objects during programm runtime and uniquely identify them and call them for later use?

Thank you for the answer in advance.

1 ACCEPTED SOLUTION

xiswanto
Active Participant

Sure, you could use the long text object for custom development. These objects are mostly used in standard tcode too, you could also find the usage of them for example on PO / PR tcode in header 'Texts' tab.

In case that you might want to do so in your custom program, you could use the function 'READ_TEXT' to get the data of the long text object or 'SAVE_TEXT' to insert / update the long text as saving and reading the data from table directly is a bit complicated.

2 REPLIES 2

xiswanto
Active Participant

Sure, you could use the long text object for custom development. These objects are mostly used in standard tcode too, you could also find the usage of them for example on PO / PR tcode in header 'Texts' tab.

In case that you might want to do so in your custom program, you could use the function 'READ_TEXT' to get the data of the long text object or 'SAVE_TEXT' to insert / update the long text as saving and reading the data from table directly is a bit complicated.

0 Kudos

Thank you for your answer!