Hi
Does anybody know if it is possible to copy one users homepage settings (shortcuts , quick links etc) to another users account?
*This post is locked for comments
Hi
Does anybody know if it is possible to copy one users homepage settings (shortcuts , quick links etc) to another users account?
*This post is locked for comments
Hi Rubal
Thanks for that. I was actually thinking more of the shortcuts on the navigation bar rather than the quick links.
I managed to get it resolved by creating a Class ID, entering the shortcuts and then assigning the class to the new users.
Thanks all the same
Quick links are stored in SY08140. You can write SQL query to copy the quick links from user to another.
We are copying 'Invoicing Batches', 'Invoice Entry', 'Transaction by Customer', 'Transaction by Document', 'Customer' in Quick links. Similarly, you can all the links from one users
--Query Copy quick links of user sa to DYNSA
Declare @userID varchar(15)
set @userID='DYNSA'
insert into SY08140
(
USERID,SEQNUMBR,TYPEID,CmdID,CmdFormID,CmdDictID,DSPLNAME,ScbTargetStringOne,ScbTargetStringTwo,ScbTargetStringThree,ScbTargetLongOne,ScbTargetLongTwo,ScbTargetLongThree,ScbTargetLongFour,ScbTargetLongFive
)
Select @userID,((SELECT max(SEQNUMBR) FROM SY08140 where USERID=@userID)+ ROW_NUMBER() OVER (ORDER BY SEQNUMBR)),TYPEID,CmdID,CmdFormID,CmdDictID,DSPLNAME,ScbTargetStringOne,ScbTargetStringTwo,ScbTargetStringThree,ScbTargetLongOne,ScbTargetLongTwo,ScbTargetLongThree,ScbTargetLongFour,ScbTargetLongFive
from SY08140 where USERID='sa'
and DSPLNAME in ('Invoicing Batches',
'Invoice Entry', 'Transaction by Customer',
'Transaction by Document',
'Customer')
Table for my report is SY70700. Other tables store home page data are
SY08000
SY08100
SY08120
SY08130
SY08140
Stay up to date on forum activity by subscribing. You can also customize your in-app and email Notification settings across all subscriptions.
André Arnaud de Cal... 291,280 Super User 2024 Season 2
Martin Dráb 230,214 Most Valuable Professional
nmaenpaa 101,156