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 push out a URL favourite to end users?

Former Member
0 Kudos

Guys, not sure if this is the right place for this question or not - but it's the closest I could think of, since I'm not a tech guru.

I would like to know how to push out a URL favourite to end users. Is it particularly difficult, and if not, can someone please advise how to do so?

Thanks

Harrrry

1 ACCEPTED SOLUTION

JerryWang
Advisor
Advisor
0 Kudos

Hello Friend,

use the following function module:

CALL FUNCTION 'GUI_ADD_TCODE_TO_FAVORITES'

EXPORTING

TRANSACTION_TO_ADD = '/SF0A0001/FT' -


>favorite tcode to be added

USER_NAME = 'LINGIA'. -


> end user's SAP name

Best Regards,

Jerry

Edited by: Jerry Wang on Sep 11, 2010 6:02 AM

5 REPLIES 5

Former Member
0 Kudos

what kind of favorites are you taling about? you mean the favorites in your SAP menu?

Former Member
0 Kudos

Yes

brad_bohn
Active Contributor
0 Kudos

You'll need a developer for that - favorites are stored in tables such as SMEN_BUFFI for URLs but you need to hit several tables to get it right by using function favos_event_add_to_user_shelf. Obviously, each user probably has existing favorites, so you've got to append it without affecting the rest of the list.

JerryWang
Advisor
Advisor
0 Kudos

Hello Friend,

use the following function module:

CALL FUNCTION 'GUI_ADD_TCODE_TO_FAVORITES'

EXPORTING

TRANSACTION_TO_ADD = '/SF0A0001/FT' -


>favorite tcode to be added

USER_NAME = 'LINGIA'. -


> end user's SAP name

Best Regards,

Jerry

Edited by: Jerry Wang on Sep 11, 2010 6:02 AM

Former Member
0 Kudos

Thank you Jerry, however I think you misunderstood my initial request, which was to add a URL, not a TCode.