Simplifying a report selection screen: When simplifying an ABAP report selection screen I realized that I need to use absolute offsets for the icons, e.g.

  pos #[10,31]  (2,31)

which makes my script dependent on the sequence of the select options in the ABAP report. Is there a better way?

You can use relative positioning, e.g

pos F[Handling Unit]+(0,20)  (2,31)

so that your script becomes independent of the number and ordering of the select options in the ABAP report.

An additional hint: In order to delete particular select option lines, delete the whole line and use "Compress" at the end of your script. Example:

del F[Handling Unit]   F[Handling Unit]+(0,200)

...

Compress