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 disable the F4 help icon froma field ?

Former Member
0 Kudos
1,201

Hello,

In customizing ( simgh ) can i disable the F4 help icon associated to the field where i can set default values .

I have a added a new feature called bank key for my product . I have enabled default values to this feature.

But i donot want F4 help to the field where i set default values.

Check table is not specified for this field ( bank key field in DB ) and hence if i secelt the F4 icon it returns no value.

And it is expected that the F4 icon itself be removed from the default field. Is this possible to achieve ?

Regards

Supritha Rao

8 REPLIES 8

Former Member
0 Kudos
326

which field are you talking about?

0 Kudos
326

Hello Soumyaprakash

I am taking about the field default for bank key in product customizing.

Regards

Supritha Rao

0 Kudos
326

Hi,

F4 help icon will appear only if there is a check table attached OR if there are domain values assigned.

To remove F4 help, remove the check table as well as the domain values.

Regards,

Danish.

nabheetscn
Active Contributor
0 Kudos
326

Which tcode..

Nabheet

Former Member
0 Kudos
326

Hi,

Check with the function module 'F4IF_INT_TABLE_VALUE_REQUEST'.

Thanks,

Renuka.

0 Kudos
326

Hi,

Thank you for the solutions.

@ Danish : the field in table does not have any check table associated with it neither does domain have any values or search help linked. I have even set a break point in report : LSDSDF05 ( f4proz - line 55 ). This gives the name of search help being called in shlp_tab .

But when i select F4 icon it does not call this program . Works for all other search helps in system.

@ Renuka : i tried using the module. confused.

Regards

Supritha Rao

0 Kudos
326

Supritha,

the include is for FM DD_SHLP_CALL_FROM_DYNP. can yo utell us from where this FM is being called from? (give me the call stack)

0 Kudos
326

Hi Supritha,

you pass the value to the field in your program. mention the modif id in your parameters and pass that below 'xxx' place.

And u write the below code in at selection screen output.

loop at screen.

if screen-group1 = 'XXX'.

SCREEN-INPUT = 0 or 1. " i am confuse this try 0 or 1.

modify screen.

endif.

endloop.

check the above code its have the F4 help. But that field is disabled.

Regards,

S.C.K