Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How can I edit report texts with the ADT for Eclipse?

Tags:

abap

abap-adt

I am developing a classic ABAP report in Eclipse using the SAP ABAP development tools Eclipse extension.

Is there a way to edit report text elements (text symbols, selection texts and list headings) in Eclipse directly or do I still need to open the program in SAP GUI to do that?

like image 294
Philipp Avatar asked Mar 08 '23 18:03

Philipp


1 Answers

Yes, you can create text-symbols directly in ADT since SAP NetWeaver 7.31 SP14 or 7.40 SP08.

For creating a text-symbol you should utilize Quick-Assist Eclipse functionality:

  1. Write text-XXX piece in any valid statement, e.g.

    WRITE: text-009.
    
  2. Place cursor on it and press Ctrl-1 or select Quick-Fix in context menu, and you will be suggested to create text in text pool.

enter image description here

What concerns selection texts and list headings, no, they are still to be edited via GUI.

However, SAP implemented small menu entry for quick access to this function. Just hit context menu on any place of the source and select Open others->Text element.

enter image description here

like image 81
Suncatcher Avatar answered Mar 31 '23 21:03

Suncatcher