‎2009 Apr 16 12:45 PM
Dear all,
I want to extract the Item text in transaction ME53N.
for that I'm using function module READ_TEXT.
for the above function module we have to provide 7 inputs...
I want to know
Name = ?
object = ?
Archive_handle = ?
Local_cat = ?
were can we get above variables....?
Regards
Nagaraju.B
‎2009 Apr 16 1:01 PM
Hi,
ID = 'B01'
NAME = '001002150700010' this is combination of PReq + item.
here reqno = 0010021507
item no = 00010
OBJECT = 'EBAN'.
Thanks,
Hari
‎2009 Apr 16 12:50 PM
‎2009 Apr 16 12:55 PM
Hi,
Try This code
CALL FUNCTION 'READ_TEXT' EXPORTING client = sy-mandt id = 'B01' language = sy-langu name = w_zht_tdname " PR Number object = 'EBANH' TABLES lines = t_zht_lines EXCEPTIONS id = 1 language = 2 name = 3 not_found = 4 object = 5 reference_check = 6 wrong_access_to_archive = 7 OTHERS = 8.
Regards
Krishna
‎2009 Apr 16 12:58 PM
Do a where used list on the FM in your system and look for the parameters UR interested.
This will easily solve your problem.
‎2009 Apr 16 1:01 PM
Hi,
ID = 'B01'
NAME = '001002150700010' this is combination of PReq + item.
here reqno = 0010021507
item no = 00010
OBJECT = 'EBAN'.
Thanks,
Hari
‎2009 Apr 16 1:11 PM
Hi,
Display item long text in Sapscript editor mode then do : Goto-->Header in the menu. The displayed popup contains the keys that are required by READ_TEXT FM.
Hope this will help.
Issa