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: 

Standard text in script

Former Member
0 Kudos

Hi,

This is a statement in script. How can I find concerned text which is to be displayed?

"INCLUDE &VBDPR-TDNAME& OBJECT VBBP ID 9100 LANGUAGE &NAST-SPRAS& PARAGRAPH IT"

Regards,

Subbu

3 REPLIES 3

Former Member
0 Kudos

use fm read_text

for ex:

CALL FUNCTION 'READ_TEXT'

EXPORTING

client = sy-mandt

id = 'BEST'

language = sy-langu

name = thread-tdname

object = 'MATERIAL'

TABLES

lines = it_tlines

EXCEPTIONS

id = 1

language = 2

name = 3

not_found = 4

object = 5

reference_check = 6

wrong_access_to_archive = 7

OTHERS = 8.

regards

Former Member
0 Kudos

Hi Subba,

Go to SO10.Just click on Tab - Text Name, it will take u to another screen.

Put Text Name , Text ID and Language.

VBDPR is a structure in debug mode see the value getting populated in VBDPR-TDNAME. This is the text name.

Object = VBBP

text Id = 9100

Langu = Language

IT = Para format.

Regards'

Avi...

Former Member
0 Kudos

hi,

Goto Standard text screen: SO10.

Enter the text name, text id and language and display..

You will find the details of your standard text.

Hope this helps