cancel
Showing results for 
Search instead for 
Did you mean: 

Restrict F4 (Search Button) of ship to party in Delivery

former_member358181
Active Participant
0 Kudos

Hi,

At present if the users press the F4 button in ship to party, it is shown to customers list.

My requirement is, Display customers list in Delivery transactions (VL01N,VL02N,VL03N) by pressing F4 in ship to party, system should not show the list.

We are using the ECC 5.

How to restrict the F4 (Search button) of ship to party in delivery?

Regards,

Devendra

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi Devendra,

Recently we faced the same situation and isolved trhe issue in other way by giving popup if we click on customer list(F4).

Goto Collective search help of DEBI(Search help for customers) and in that select the Included search help DEBIA and add new search help exit ZF4IF_SHLP_EXIT_CUSTOMER by creationg new one(se37) refer F4IF_SHLP_EXIT_CUSTOMER .

Based on the call control step.write the code as required with a pop up dispalying text with the help of abaper.

If it is to be restricted to few users create authorization object with the kunnr.

Hope this helps you to solve the issue.

Answers (2)

Answers (2)

Former Member
0 Kudos

This message was moderated.

od_manikandan
Active Contributor
0 Kudos

Hai Devendrap,

In case your requirement is, user should not enter data in he ship to party then make then greyed out using SHDO screen variant transaction.

Since you mentioned VL03N also user should not check list of customers.

Ask you abaper, to check the Main program

Program (screen) SAPMV50A

SAPLSHL2 / LSHL2U01

FUNCTION / HELP_START

write a code before

if sy_tcode ne 'vl01n or vl02n or vl03n

then use

  • Alle F4-Hilfe Aufrufe werden hier abgehandelt

All F4 Call helps

if help_infos-call = 'T' or "Alle Arten von Prüftabellen

help_infos-call = 'M' or "Matchcode-Hilfe

help_infos-call = 'V'. "Festwerte (Domäne oder VALUES)

"+ alle anderen

::::::

::::::

::::::

endif

So other t codes f 4 help wlil come and these three it will not come.

Regards,

Mani