Application Development 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: 

How to remove an icon and text description from PF STATUS

Former Member
0 Kudos

Hello, I have a dynpro, in this dynpro  I have a control table, in this control table I added the event double click by F2 Key function, when I add this, SAP asks for an icon description text, I want to have this functionality without icon, because my function is with double click not with a button. Could anyone tell me how can I remove the icon and text?

10 REPLIES 10

former_member215542
Active Participant
0 Kudos

Just double click the function and it show you a popup where you can maintain the text/ icon/ short cut etc.

Former Member
0 Kudos

Put a cursor on F2 text, and click on the "remove row" button from application toolbar.

Former Member
0 Kudos

Hi Luis,

You can remove icon by double clicking function attribute and can remove that icon & text.

please see my screen shot below.

Thanks,

Marimuthu.K

0 Kudos

Boys, My problem is the function text is obligatory:

Former Member
0 Kudos

I haven't tried this, but you might just remove the icon and PF STATUS entirely (assuming this is an ALV report). Make sure you have a form coded for I_CALLBACK_USER_COMMAND.

Rob

Former Member
0 Kudos

Hi Luis,

As per my understanding you want to double click table control without any button i assume.

I suggest you the following solution

you need to enable <b>respond to double click</b> option.

and you should set the PF-status goto function keys and set F2 function code as PICK. ,. in the PAI of the screen you need to check the ok code.

case sy-ucomm.

when '&IC1'. "double click.

"do some thing,

endcase.

Thanks,

Marimuthu.K

0 Kudos

I removed the icon, but now I want to remove the text how can I do this?

former_member182873
Participant
0 Kudos

Hi,

If you are using Double click , make use of Comments no need for PF Status.


Manju

0 Kudos

I need PF status because I need get the okcode: CASE ok_code200. WHEN 'DBCLICK'.         clear: OK_CODE200.         data: ws_field type string,               ws_line type string.       GET CURSOR FIELD ws_field LINE ws_line.

0 Kudos

Are you sure? Remove the function code from status (*) and try.

(You could also add pushbutton in the dynpro with some function code not defined in status)

Regards,

Raymond


(*) As was already suggested by Chinmay Rob and now by Manjunatha.