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

Functionality similar to the Performance assistant box.

Former Member
0 Likes
763

Hello All,

I am searching for a functionality similar to the Performance assistant box , with the links to go to other pages /transactions/ websites etc. I have to give a popup wit information when the user clicks on a button. This box should be similar to the performance assistant which we get on pressing F1 on any field.

Do we have any such functionality ?

Thanks,

Ketan Joglekar

Hello All,

I am searching for a functionality similar to the Performance assistant box , with the links to go to other pages /transactions/ websites etc. I have to give a popup wit information when the user clicks on a button. This box should be similar to the performance assistant which we get on pressing F1 on any field.

Do we have any such functionality ?

Thanks,

Ketan Joglekar

1 REPLY 1
Read only

Former Member
0 Likes
400

Hi Ketan,

If you are creating a module pool,

U can use the Process On-Help event of Screens.

Like Proces on-Value is process on F4, Process on-Help is prrocess on F1.

U can code a module which will display a document created in SE61 which is same as the one u look at in Performance assistant.

Within the module, u can call a function module that displays this document.

So ur code will look similar to this:

PROCESS ON HELP-REQUEST.

field <field-name> module <module-name>.

within the module call FM 'HELP_OBJECT_SHOW'.

Pass DOKCLASS as TX (General Text)

DOKLANGU as sy-langu (logon language)

DOKNAME -> the name of document u created in SE61.

When u hit F1 on the field <field-name>, the document will be displayed

Regards,

Mahesh.