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

long text information

Former Member
0 Likes
1,627

Hi gurus ,

plz tell me how can i find long text information for below function for a transaction QP03.

CALL FUNCTION 'READ_TEXT'

EXPORTING

id = ?

name = ?

object = ?

Points will be rewarded.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
1,328

Hi

Double click on the long text or goto change Text editor

from Menu GOTO-> HEADER

you will see the 4 parameters OBJECT,ID,OBJECTNAME and LANGUAGE

use them in the fun module READ_TEXT and fetch the long text

Regards

Anji

Hi gurus ,

plz tell me how can i find long text information for below function for a transaction QP03.

CALL FUNCTION 'READ_TEXT'

EXPORTING

id = ?

name = ?

object = ?

Points will be rewarded.

7 REPLIES 7
Read only

Former Member
0 Likes
1,328

Go to the table STXL

Ull get da info in the same table

Hope dis helps..reward if it does

Read only

Former Member
0 Likes
1,329

Hi

Double click on the long text or goto change Text editor

from Menu GOTO-> HEADER

you will see the 4 parameters OBJECT,ID,OBJECTNAME and LANGUAGE

use them in the fun module READ_TEXT and fetch the long text

Regards

Anji

Read only

0 Likes
1,328

Hi,

I am facing the same problem, Can you please let me know what is the object name. Is it a combination of some field.

Thanks

Sanjaya

Read only

Former Member
0 Likes
1,328

hi,

when you run that particular transaction,

in the menu goto....GOTO->HEADER.

here you will get the details of parameters we need to pass to the FM READ_TEXT.

Read only

Former Member
0 Likes
1,328

Hi,

Double click on the long text.

from Menu bar GOTO-> HEADER

you will see the 4 parameters OBJECT , ID, OBJECTNAME and LANGUAGE

use them in the fun module READ_TEXT and fetch the long text.

CALL FUNCTION 'READ_TEXT'

EXPORTING

  • CLIENT = SY-MANDT

id = object-id

language = 'EN'

name = object-name

object = object

  • ARCHIVE_HANDLE = 0

  • LOCAL_CAT = ' '

  • IMPORTING

  • HEADER =

tables

lines = tline

  • EXCEPTIONS

  • ID = 1

  • LANGUAGE = 2

  • NAME = 3

  • NOT_FOUND = 4

  • OBJECT = 5

  • REFERENCE_CHECK = 6

  • WRONG_ACCESS_TO_ARCHIVE = 7

  • OTHERS = 8

.

IF sy-subrc <> 0.

  • MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO

  • WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.

ENDIF.

Reward pots if usefull

Srimanta

Read only

Former Member
0 Likes
1,328

Hi

Go to ur transaction , Goto Text editor and from GOTO Menu Select Header . There u can see

OBJECT,ID,OBJECTNAME and LANGUAGE. only OBJECTNAME varies for a particular transaction remaining all will be consatnt .Then u can use this in ur program.

Thanks,

Shafivullah Mohammad

Read only

Former Member
0 Likes
1,328

Hi Rajesh,

For the TCode : QP03

select the Items

Navigate thru -> GOTO-> LONG TEXT

this shld take you to the Texts and from there you can navigate to the script editor

There naviagate thru GOTO->HEADER

u can find the details for the values to be passed to the READ_TEXT FM.

Also tables TTXID and STXH.

Regards

Usha