Posted: Wed Sep 05, 2007 6:47 pm Post subject: Download Text Symbols, Selection Text, List Headings
Author: Darshan Patel
Description: ABAP- Program to Down load all Text Symbols, Selection Text and List Headings of Particular Program
Code:
DATA: it_pool LIKE TABLE OF textpool.DATA: BEGIN OF it_fname OCCURS 0 ,
name(80),
END OF it_fname.DATA: BEGIN OF wa_out,
id TYPE textpoolid,
key TYPE textpoolky,
entry TYPE textpooltx,
entry2 TYPE textpooltx,
END OF wa_out.
START-OF-SELECTION.
READ TEXTPOOL p_prog INTO it_pool LANGUAGE sy-langu.
LOOP AT it_pool.
wa_out-id = it_pool-id.
wa_out-key = it_pool-key.
wa_out-entry = it_pool-entry.
APPEND wa_out TO it_out.
ENDLOOP. it_fname-name = 'ID'.
APPEND it_fname.
it_fname-name = 'KEY'.
APPEND it_fname.
it_fname-name = 'ENTRY IN ENGLISH'.
APPEND it_fname.
it_fname-name = 'ENTRY IN OTHER LANGUAGE'.
APPEND it_fname.
* CONCATENATE: p_fpath p_prog '.XLS' INTO p_fpath.
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum You cannot attach files in this forum You can download files in this forum
All product names are trademarks of their respective companies. SAPNET.RU websites are in no way affiliated with SAP AG. SAP, SAP R/3, R/3 software, mySAP, ABAP, BAPI, xApps, SAP NetWeaver and any other are registered trademarks of SAP AG. Every effort is made to ensure content integrity. Use information on this site at your own risk.