Application Development and Automation Discussions
Join the discussions or start your own on all things application development, including tools and APIs, programming models, and keeping your skills sharp.
cancel
Showing results for 
Search instead for 
Did you mean: 
Read only

Title + subtitle on selection screen?

Former Member
0 Likes
2,121

On executing the report that I am creating,

the selection screen should show a title and a subtitle below the title.

I put the title in the attributes of the report.

How should I define the subtitle to appear below this title?

ThX!

1 ACCEPTED SOLUTION
Read only

Clemenss
Active Contributor
0 Likes
1,689

Hi Christophe,

not provided in standard. But if you create a full screen ALV then you can put anything in the TOP-OF-PAGE area, search forum for REUSE_ALV_COMMENTARY_WRITE.

You can also create a splitter container, dock at top and create any kind of html viewer in it to display as you prefer. Just little HTML knowledge required.

The reason SAP standard does not provide the like is that they want to keep a unified layout.

Regards,

Clemens

Hi Christophe,

not provided in standard. But if you create a full screen ALV then you can put anything in the TOP-OF-PAGE area, search forum for REUSE_ALV_COMMENTARY_WRITE.

You can also create a splitter container, dock at top and create any kind of html viewer in it to display as you prefer. Just little HTML knowledge required.

The reason SAP standard does not provide the like is that they want to keep a unified layout.

Regards,

Clemens

8 REPLIES 8
Read only

Former Member
0 Likes
1,689

Use top-of-page.

Read only

0 Likes
1,689

doesn't seem possible to me.

Writing in top-of-page is only triggered after executing the report.

It wouldn't show up on the selection screen.

Read only

Former Member
0 Likes
1,689

Hi,

Try below code and let me know if this is what you actually want.

SELECTION-SCREEN BEGIN OF BLOCK b1 WITH FRAME TITLE text-001.

SELECTION-SCREEN BEGIN OF BLOCK b2 WITH FRAME TITLE text-002.

SELECT-OPTIONS: matnr FOR mara-matnr.

SELECTION-SCREEN END OF BLOCK b2.

SELECTION-SCREEN END OF BLOCK b1.

Fill in text-001 and text-002 in the attributes as required.

Thanks,

Venkatesh.

Read only

0 Likes
1,689

No, that's not exactly what I want. Well, what the client wants.

Take a look at his link, and check out the titles 'Inverntory report' and 'Stock status RFTC010'.

The two titles should show up as in the picture.

[http://img845.imageshack.us/img845/6885/lesw.jpg]

Read only

0 Likes
1,689

The SAPGUI that I know does not provide for this, only one title line available between the two button rows.

Thomas

Read only

0 Likes
1,689

Hi,

As Thomas said, it's not possible. In your "simulated screen capture", above the application toolbar (it contains the buttons execute + info), you have 2 titles, but only the title bar area is available in the SAP GUI. I think the most probable is that the person who asked you to develop that selection screen has made an error. Note: I tried to use the GOS toolbox container which is located in the left of the title bar, by inserting an HTML control with 2 lines (small title + even smaller subtitle, as the height of the title bar can't be changed), and that gives something very ugly 😄

Sandra

Read only

0 Likes
1,689

Ok, thank you very much everyone.

Read only

Clemenss
Active Contributor
0 Likes
1,690

Hi Christophe,

not provided in standard. But if you create a full screen ALV then you can put anything in the TOP-OF-PAGE area, search forum for REUSE_ALV_COMMENTARY_WRITE.

You can also create a splitter container, dock at top and create any kind of html viewer in it to display as you prefer. Just little HTML knowledge required.

The reason SAP standard does not provide the like is that they want to keep a unified layout.

Regards,

Clemens