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

Module Pool Text field should be display Bold

ashish_shah5
Participant
0 Likes
2,759

Hi Freinds,

I have created Module Pool.

1. My requirement is Text Field display Bold & I want to Change of Text Size.

2. After executing Menu bar option are Disable mode, I want in Enable mode.

Thx in Advance.

1 ACCEPTED SOLUTION
Read only

I355602
Product and Topic Expert
Product and Topic Expert
0 Likes
1,831

Hi,

>

> Hi Freinds,

>

> I have created Module Pool.

> 1. My requirement is Text Field display Bold & I want to Change of Text Size.

> 2. After executing Menu bar option are Disable mode, I want in Enable mode.

>

> Thx in Advance.

1. You cant change the seize n font of text, but you can use property INTENSIFIED inside loop at screen to highlight text.

2. To enable menu bar you need to create a pf-status with reqd menu bar options.

Hope this helps you.

Regards,

Tarun

Hi Freinds,

I have created Module Pool.

1. My requirement is Text Field display Bold & I want to Change of Text Size.

2. After executing Menu bar option are Disable mode, I want in Enable mode.

Thx in Advance.

7 REPLIES 7
Read only

Former Member
0 Likes
1,831

Hi,

For 1) I dont think its not possible to change the appearance of the text in dialog programming.

2) which one you want to enable?

Regards,

~Satya

Read only

I355602
Product and Topic Expert
Product and Topic Expert
0 Likes
1,832

Hi,

>

> Hi Freinds,

>

> I have created Module Pool.

> 1. My requirement is Text Field display Bold & I want to Change of Text Size.

> 2. After executing Menu bar option are Disable mode, I want in Enable mode.

>

> Thx in Advance.

1. You cant change the seize n font of text, but you can use property INTENSIFIED inside loop at screen to highlight text.

2. To enable menu bar you need to create a pf-status with reqd menu bar options.

Hope this helps you.

Regards,

Tarun

Read only

0 Likes
1,831

How to Create PF-STATUS?

Regards,

Read only

Former Member
0 Likes
1,831

1) By default in PBO you can see 'MODULE status_0001 OUTPUT'

2) if you double click on that it will take you to enable the PF-STATUS (please check the below code).

3) If you double click on PF_0001 then menu painter will be opened to create status.

4) For more information[ click here.|http://help.sap.com/saphelp_nw04s/helpdata/en/d1/801ce8454211d189710000e8322d00/frameset.htm]

*&---------------------------------------------------------------------*
*&      Module  STATUS_0001  OUTPUT
*&---------------------------------------------------------------------*
*       text
*----------------------------------------------------------------------*
MODULE status_0001 OUTPUT.
  SET PF-STATUS 'PF_0001'.
  SET TITLEBAR  'TB_0001'.
ENDMODULE.                 " STATUS_0001  OUTPUT

regards,

~Satya

Read only

0 Likes
1,831

Dear Satya,

How to create 'PF_0001' and 'TB_0001'.

I have writtern code which u have provided but while executing it is giving me msg:

Status PF001 of the user interface SAPMZJOBWORKERS missing

Regards,

Read only

Former Member
0 Likes
1,831

Hi,

As i told you just double click on that it will take you to Menu painter screen, there you can perform the below actions.

    * Create the status

    * Create the menu bar (or create a reference to an existing menu bar)

    * Add menu entries

    * Define new function key settings
    * Define the standard toolbar (or create a reference to an existing one)

    * Define the application toolbar (or create a reference to an existing one)

    * Test the status

    * Activate the status 

Since i dont have access to SAP, i could not able to explain step by step.

[Check this link|http://help.sap.com/saphelp_nw04s/helpdata/en/d1/801d43454211d189710000e8322d00/frameset.htm]

Read only

0 Likes
1,831

Thx satya,