cancel
Showing results for 
Search instead for 
Did you mean: 

Custom Button on the RF screen

Former Member
0 Kudos

Hi Sdn,

I got a new requirement of adding a button on the RF Menu screen.

Right now we copied all the standard buttons like F1,F2,F3 and F4.

And we want to add one more button on the screen Change Password.

Once the user clicks on the chnage password button we want to call an URL in the same screen where user can change the password.

Can any one tel me if i want to add an button on the RF Menu screen what is the procedure.

The screen code is in HTML java script language.

Thanks

Naresh

Accepted Solutions (1)

Accepted Solutions (1)

Former Member
0 Kudos

Hi Naresh,

Please describe me exactly what you are looking for.

Want to add a custom button on any RF/Custom RF screen? or want to call a url on any associated button to allow change passowrd?

I think both have different impact on application.

Sinec RF is totally based on ECC system(Module Pool Screen) so you can easily add a custom button to wherever you want by calling subscreen/add new screen/User Exit etc.

But for calling a URL would be visible to your RF gun or not ...it is depend on the device not an application.Again you have to configure Service Request for ITS for the URL being generated in Backend as well as RF devices.And then after you can call that URL under the code for that custom button.

Regards

Rick

former_member206439
Contributor
0 Kudos

Hi Rick,

Thanks for the reply.

It is Custom RF Menu Screen.

Password generation will be taken care by different system where we were given by a URL link when they click that button we should call that link.

Right now the custom RF menu is already there the code is written in HTML.

When i am trying to add another button it's not showing on the screen.

Can you please let me know is there any settings we need to do for adding a button on the screen or let me know the steps to do it.

Thanks

Naresh

Former Member
0 Kudos

Hi Naresh,

Please correct me if I am worng...

You have the button code in HTML which call the URL for Password Changes.If it is so then you have to check

1)Service Request(ITS-URL) would be re-generated or not.

2)HTML code would be incoprate to meet the new button requirment or not

Regards

Ricky

former_member206439
Contributor
0 Kudos

I am new to this HTML

I can see there that already code is written for F1 , F2 , F3 and F4 in HTML tag code in SAP in RLMENU 2888 screen ( custom RFID)

I tried to put one button on the screen with the HTML code but it's not showing me on the RF menu screen , in the same place if i put F1 Button again then its showing me on the screen if i am adding any other button other than F1 F2 F3 and F4 its not showing on the screen.

Is there any settings are config needs to do to add any button on the screen

In SE80 i can see the RLMENU screen under HTML.

Thanks

Naresh

Edited by: Naresh Nelapatla on Aug 10, 2010 12:30 PM

Former Member
0 Kudos

Hi Naresh,

I am not getting the menu RLMENU in HTML...

Can you please provide me Program/Screen/Menu in ECC 6.0.............so I can check the further configuration....

Regards,

Ricky

former_member206439
Contributor
0 Kudos

go to SE51 - RLMENU - screen num 2888

Former Member
0 Kudos

Hi,

In the screen 2888..................Code were written in ABAP for Function code like F1,F2,F3 etc.

I am not getting HTML code there.........

You have to assign a Button on custom RF screen if you have else you have to assign through User Exit.

and check GUI Status...Lmob_Group8....here you can F Keys

and u can use screen 01888 for custom purpose

-Ricky

former_member206439
Contributor
0 Kudos

Yes your correct the code behind the RLMENU is in module pool but in my system.

in SE80 -> Internet Service -> ZBARCODE object is created

in that under HTML template tree RLMENU - 2888 is used here again and whn i double click on this it's taking me to a HTML code page in SAP

Can you please let me know if i want to add a custom button on the RLMENU screen.

what is the procedure.

Edited by: Naresh Nelapatla on Aug 10, 2010 6:07 PM

Former Member
0 Kudos

Hi Naresh,

You have to assign and code for a custom button in RF screen in ABAP only.Once you have done those changes just go Services created for ITS ZBARCODE and regenerated it.If rquired checked it and activated it.You will get the new button on your screen.

Note- To add a button on the RF screen you have to follow one of the way.

1) User Exit

2)Custome Screen and configuration

3) Enhancment

Regards

Ricky

former_member206439
Contributor
0 Kudos

Thanks for your reply.

Do you have any Idea about XLRF function group

I am trying to copy the RLMENU 2888 screen to XLRF function group

Former Member
0 Kudos

Hi,

Use below customer specific subscreen to show one more button

CALL CUSTOMER-SUBSCREEN EXIT0101.

you can find in screen 1888

PROCESS BEFORE OUTPUT.

MODULE STATUS_MAINMENU.

MODULE DYNAMIC_MENU_BUTTONS_TEXT.

MODULE DATA_TO_EXIT0888.

CALL CUSTOMER-SUBSCREEN EXIT0101

INCLUDING 'SAPLXLRF' SCRN_DATA-SCRND_USCRN.

*

PROCESS AFTER INPUT.

CALL CUSTOMER-SUBSCREEN EXIT0101.

MODULE DATA_FROM_EXIT0888.

MODULE EXIT_MENU AT EXIT-COMMAND.

FIELD OK_CODE MODULE USER_COMMAND_MAINMENU.

Regards-

Ricky

Answers (0)