cancel
Showing results for 
Search instead for 
Did you mean: 

How to create F4 Help of R/3 in BSP Application

Former Member
0 Kudos

Hi

I am trying to make a BSP Page on which i have a field which should support F4 search help of R/3.

When a user presses F4 on that field a popup should open up as it does in R/3 Search help.

How can i do this in BSP?

Please reply asap.

Thankyou.

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi,

I like to suggest an alternative, instead of going for pressing F4, provide a button adjacent to the input field. Upon clicking that button the help page will pop up. For that you need to use Java Script. Write the code for that in onClientClick of that button:


onClientClick = "window.open('material_help.htm','Material','width=400,height=500')"

Now in the material_help page you can show a table which shows help data and the user can select from that. To pass the data from that page to your original page you need to use java script once again.

Hope this helps..

Regards,

Ravikiran.

Former Member
0 Kudos

Hi Ravikiran

can you tell me javascript to pass data from new window to another one ? New window is used for help values.

Answers (1)

Answers (1)

maximilian_schaufler
Active Contributor
0 Kudos

Hi,

I suggest you read this weblog from Thomas Jung:

<a href="/people/thomas.jung3/blog/2005/08/22/bsp-value-input-help-popups-version-30 Value Input Help Popups Version 3.0</a>

It should give you all the information to your question.

For further questions you have:

maybe a simple search in the forums and weblogs can get you the answer yourself, without having to ask - consider it.

Also, asking for a "asap" reply is also not helpful - SDN is no support center, but a place were developers help other developers - so you have to show some patience.

Best regards,

Max

eddy_declercq
Active Contributor
0 Kudos

Hi,

Additional info:

In internet explorer you will have some troubles using F4 since F4 is used by MIE to display the Address bar history.

Eddy

eddy_declercq
Active Contributor
0 Kudos

Hi,

Pls don't forget to reward points if you find the answers usefull.

Eddy