2006 Aug 31 1:51 PM
Hi to all,
in tcode me13
i have to retrive the text from two lines.
i.e in script window the first line text
and second line text.
can any one help me
with regards
satish
Hi to all,
in tcode me13
i have to retrive the text from two lines.
i.e in script window the first line text
and second line text.
can any one help me
with regards
satish
2006 Aug 31 2:18 PM
Hello,
For getting this texts pass these parameters to Read_text
1. Info record text,
Name: Info rec number
Language = sy-langu
Text id = 'AT'
Text object = 'EINA'
2.Purchase order text
Name : Info rec number + Purchasing org + 0 + Plant
Language = sy-langu
Text id = 'BT'
Text object = 'EINE'
Regards,
Naimesh
2006 Aug 31 4:52 PM
hi naimesh,
thanks for your answer.
but my requirement is in Info record text window
eg:first line contains manufacurer name
second line contains supplier name.
i have to retrieve the texts .
2006 Aug 31 2:30 PM
Hi,
use table stxh,stxl and FM read_text
to know text id
me13->header-text->goto->header
Regards
amole
2006 Aug 31 3:24 PM
HI
GOOD
CHECK WITH THESE PROGRAMS
MM06IFTE_TEXT_LESEN
MM06IFTE_TEXT_UEBERNAHME_INFO
THANKS
MRUTYUN
2006 Aug 31 5:07 PM
Hi satish,
Use below code
CALL FUNCTION 'READ_TEXT'
EXPORTING
CLIENT = SY-MANDT
ID = 'AT'
LANGUAGE = SY-LANGU
<b> NAME = EINA-INFNR</b> OBJECT = 'EINA'
TABLES
LINES = LINES
EXCEPTIONS
ID = 1
LANGUAGE = 2
NAME = 3
NOT_FOUND = 4
OBJECT = 5
REFERENCE_CHECK = 6
it_lines internal table contains all lines
of info record
Regards
amole<b></b><b></b><b></b>