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 in Modulepool

Former Member
0 Likes
579

Hi all,

How to set title in Dialog Programming

Thanks & regards,

Sinha.

1 ACCEPTED SOLUTION
Read only

Former Member
0 Likes
547

Hi,

In the PBO event, Give like this.

SET TITLEBAR 'MYTITLE'.

save your program and make double click on 'MYTITLE'. You get a popup message indicating that the object does not exist. Press yes.

In the next screen that shows up, you enter the title you want. Save and activate.

Reward if useful.

Regards,

Swetha.

3 REPLIES 3
Read only

Former Member
0 Likes
548

Hi,

In the PBO event, Give like this.

SET TITLEBAR 'MYTITLE'.

save your program and make double click on 'MYTITLE'. You get a popup message indicating that the object does not exist. Press yes.

In the next screen that shows up, you enter the title you want. Save and activate.

Reward if useful.

Regards,

Swetha.

Read only

venkat_o
Active Contributor
0 Likes
547

Hi Sinha Rao, In the flow logic of screen .

process before output.
 module status_0200.

process after input.
  module user_command_0200.
Double click on status_0200. Then u will see.
*&---------------------------------------------------------------------*
*       text
*----------------------------------------------------------------------*
module STATUS_0200 output.
   SET PF-STATUS 'X_STATUS'. "Set your status
   SET TITLEBAR 'TITLE'.           "Module pool program title 
   "Double click on X_STATUS and PF status like BACK , CANCEL buttons 
"Double click on TITLE,  write titel and save .Title of the program is displayed.

endmodule.                 " STATUS_0200  OUTPUT
I hope that it helps u . Regards, Venkat.O

Read only

Former Member
0 Likes
547

Hi,

In PBO Event

MODULE STATUS_0100 OUTPUT.------double click -


it will take to your driver program there

MODULE STATUS_0100 OUTPUT.

SET PF-STATUS 'MENUBAR'. " here you can set PF-status(DOUBLE CLICK --- and set the menu bar)

SET TITLEBAR 'TIT'.(DOUBLE CLICK --- and set the Title) " here you can set title , wht you want and ACTIVATE

Or

If you want to set the srandard Pf-status and title , you just copy the satus(source) to target and dont forget to ACTIVATE

Reward Points if usefull,

Regards

Fareedas