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

F4 help disable

0 Likes
465

Hi experts

i m new abaper,is it possible can i disable f4 help in zreport field output..

thanks in advance

kamal

3 REPLIES 3
Read only

madhu_vadlamani
Active Contributor
0 Likes
441

Hi,

Can you elaborate more.

Regads,

Madhu.

Read only

Former Member
0 Likes
441

Hi,

Click on below link, it might be helpful.

[;

BR

Dep

Read only

Former Member
0 Likes
441

Hi,

In selection screen output event, just set the particular field 'Value Help' screen attribute as '0'.

check the below code.

parameters : p_ver type /sapapo/vrsioex.

AT SELECTION-SCREEN OUTPUT.

LOOP AT SCREEN.

IF screen-name = 'P_VER'.

screen-value_help = '0'.

MODIFY SCREEN.

ENDIF.

ENDLOOP.