Change home page for mobile user

Is it possible to change safari home page for mobile user via script or locally? We have OD profile which is set to delete all data after logout.
Also is it possible do automatic login for mobile user?
thank you...

Hi,
From your description, my understanding is that you want to customize home page for different user.
There are two methods to accomplish your requirement. You could
create a webpart with code or a control the page that redirect to a new page based on the users or groups.
Please refer to this article:
https://social.msdn.microsoft.com/Forums/office/en-US/08a2b1fd-6951-4e70-ba03-7f546a337fbe/set-different-home-page-for-each-user?forum=sharepointgeneralprevious.
Best Regards,
Vincent Han
TechNet Community Support
Please remember to mark the replies as answers if they help, and unmark the answers if they provide no help. If you have feedback for TechNet Support, contact
[email protected]

Similar Messages

  • How can I manage new Firefox for Mac on my network. Control users Home Pages for Mobile User Accounts.

    I am running Mac Computers in a School. Current Mountain Lions OS and current Firefox Browser. We log in using mobile accounts. How can we manage Firefox so all users get the same home page and settings.
    If I can do locally or through a profile, that would be great

    hello, you could use the mozilla.cfg file in the firefox program folder in order to lock or set certain preferences - here is some general information on how to set that up: http://kb.mozillazine.org/Locking_preferences
    and specific guide to set the homepage can be found here: http://mike.kaply.com/2012/08/29/setting-the-default-firefox-homepage-with-autoconfig/ (this blog also contains may other helpful resources for deploying firefox)

  • Personalize the home page for every user.

    Dear CRM guru's,
       I would like to personalize the home page for all users by hiding some of the sections(My open tasks and Alerts). I don't want the users to enable these 2 sections when they try to personalize the page. Can you please suggest me how I can achieve this.
    Thanks!
    Surya.

    Surya,
    This is very easy.  The homepage is another view in an application component.
    For the sales home page, you would go to application WCC_SLS_HOME and configure the view WCC_SLS_HOME/SalesHome.
    You can then restrict what applications show up on that home page.
    You just need to find out what "home" application your role is using and configure that one accordingly.  Most follow the WCC_*_HOME pattern.
    Take care,
    Stephen

  • Can't change home directory for standard users (admin is OK)

    I'm can't relocate home directories for standard users.  Relocating works fine for admin users.
    When a standard user logs in, they get a message (paraphased) saying "the home directory is not available.  If it is located on a server, the server might not be online".  If I change the standard user to admin, this message goes away, and everything is fine.
    I created a standard user
    moved the home directory using the terminal as root: mv UserName  /otherlocation/UserName
    I then went into users and groups, other options and changed the home directory location.
    Rebooted, then tried to log in as the standard users.
    Next try - Deleted the standard user and created the same user with admin rights.  Followed the above steps and everything works fine.
    I don't want this user to have admin rights on my system.  Any ideas

    Hi,
    the AFP is has always been switched on. As for the path I believe this to be correct. The path I am using is:
    afp://musicserver/Users
    I'm not at the server right now so I mat have got the afp and : and / in the wrong order here but they are correct on the server.
    This however does not seem to put the a folder in the Users folder. Could it be something to do with my external hard drive? I am using a Mac Mini as our server (not ideal but fine for us, or at least was) this is booted from our external hard drive. This is the main system drive which is where the Users data is also stored. I have tried all possible paths I can thing of from replacing the 'musicserver' with the IP address. I have also tried adding the name of the drive to the path (System) but all does not work.
    Are you able to suggest anything I have missed? Perhaps I'm doing the path wrong?
    Thanks again
    Chris

  • Variable or conditional home page for different users

    Lets say I have 2 groups of users, some from GROUP_MGR and others from GROUP_EMPLOYEE. I want each user to see a different home page. Lets say, when a user who belongs to GROUP_MGR logs in they should see page #1, but when a user from GROUP_EMPLOYEE logs in they should see page #2.
    OK, so I have a plan and please let me know if this is off base.
    STEP 1:
    =====
    To to my login page 101 and modify the "login" process which currently reads:
    {color:#0000ff}wwv_flow_custom_auth_std.login(
    P_UNAME => :P101_USERNAME,
    P_PASSWORD => :P101_PASSWORD,
    P_SESSION_ID => v('APP_SESSION'),
    P_FLOW_PAGE => :APP_ID||':1'
    );{color}
    I will change this process to look like this (new code in red, existing code in blue)-----
    {color:#ff0000}declare home_page varchar2(30);
    begin
    IF ( APEX_UTIL.CURRENT_USER_IN_GROUP(p_group_name=>'GROUP_MGR') )THEN
    home_page := '1';
    else
    home_page := '2';
    end if;
    {color}
    {color:#0000ff}wwv_flow_custom_auth_std.login(
    P_UNAME => :P101_USERNAME,
    P_PASSWORD => :P101_PASSWORD,
    P_SESSION_ID => v('APP_SESSION'),
    P_FLOW_PAGE => :APP_ID||':'|| home_page;
    end;-----
    {color}
    Do you think my plan will work? Are there any other "hidden" settings I need to be aware of, or will I have any unintentional effects by trying this?
    Thank you
    Al
    Edited by: user720285 on Mar 12, 2009 10:34 AM
    Edited by: user720285 on Mar 12, 2009 10:35 AM
    Edited by: user720285 on Mar 12, 2009 10:35 AM
    Edited by: user720285 on Mar 12, 2009 10:35 AM
    Edited by: user720285 on Mar 12, 2009 10:36 AM
    Edited by: user720285 on Mar 12, 2009 10:37 AM

    Hi Scott,
    I'm not sure if Al was able to figure that out or not, but I have been fiddling with this also.
    I am not sure if it will work.
    Here's what I have so far:
    declare
      p_app_id varchar2(32) := to_char(nvl(:G_APP_ID,:APP_ID));
      p_page_id varchar2(32) := to_char(nvl(:G_PAGE_ID,1));
    begin
    wwv_flow_custom_auth_std.login(
        P_UNAME       => :P101_USERNAME,
        P_PASSWORD    => :P101_PASSWORD,
        P_SESSION_ID  => v('APP_SESSION'),
        P_FLOW_PAGE   => p_app_id || ':' || p_page_id
    end;Similar to what Al is trying to achieve, I am trying to take it one step further.
    I am working in a single sign on model, so if I am coming from Application A, I will be redirected to Application B to authenticate first. At that time, I pass in App A's App ID and Page ID if it's provided. They are parsed out of the URL and stored in a global variable.
    The nvl checks to see if an App ID exists and if not, then use the default :APP_ID. Same thing with Page ID.
    When I try to log in after compiling the script, APEX spits the following error back:
    Error ERR-10700 Unable to run custom pre-auth process.I am guessing we aren't allowed to mess with the custom auth package like that. Either that, or the syntax is wrong... I'm not sure which one it is either :(

  • How to get the home page for a user using  Pl/sql code ?

    Hi,
    I have a pl/sql procedure which runs after a form submission on a dynamic page. At end of completion of the procedure I want to send user to his/her home page. I am trying to write at the end of procedure to redirect the user to the home page. How do I do that ? What is way to redirect to a page using pl/sql and how do I know the user home page url ?
    thanks,
    Mainak

    Hi,
    Try <portalschema>.wwv_redirect.url('<portalschema>.home');
    Please replace portalschema with the name of your portal schema.
    Thanks,
    Sharmila

  • How to set a common page for all users after loging on?

    hi all,
    Now "My Dashboard" is the default page after logon.
    i want to set a default home page for all users. users can see the home page after loging on.
    how to change the default dashboard from "My Dashboard" to "Home page" for all users?
    thanks,
    dan

    Hi,
    Steps:
    Tried to set default dashboard for all the users.
    1. Created a session init block
    2. Used data source as select '/shared/SH Test/_portal/Test1' from dual
    3. Assigned this value to PORTALPATH session variable
    4. In Presentation services > Administration > My account > Default dashboard should be set to 'default'. Then only the dashboard specified in init block will be displayed otherwise My account will override the init block.
    5. Save the changes made to rpd.
    5. Logout and relogin to see if it is working fine. it is working perfectly fine.
    For details please refer the GSC replication document. But it is for all the users.
    if customer would like to have user/group based home page.
    1. They may need to have 2 separate tables.
    i. Group_path_tab with 2 columns. Group_id, portal_path
    Have group wise portal path for all the groups
    ii. User-group map table
    Group_id, Group_name, user_id
    User should be part of some group.
    2. Then in the init block write the sql should be something like this
    select A.portal_path from Group_path_tab A, User_group_map B
    where B.user_id = :USER
    and B.Group_id = A.Group_id
    SO based on USER session variable, it will try to identify the group and then the portal_path.
    Finally assign this value to PORTALPATH session variable.
    ref:
    http://total-bi.com/2011/01/obiee-11g-change-default-dashboard/
    Thanks!

  • How do I set the default welcome page for PUBLIC user

    gurus,
    i'm using -
    Oracle 9i Database
    Oracle 9ias Portal Release 2
    QUESTION => how do I set the default welcome page for the PUBLIC user.
    i did the following to achieve this -
    1. logged into portal
    2. clicked on builder
    3. clicked on administer tab
    4. selected PUBLIC user in the Portal User Profile portlet
    5. went to the preferences tab
    6. in the default home page selected a custom page group
    7. logged out of portal
    8. open a new browsere session
    9. type the portal URL and i get the login page ....??
    i'm unable to understand this behavior ... shouldn't i be getting the page group that i set for the PUBLIC user in step 6 above ....
    the second QUESTION is => when the user logs out he/she should see the PUBLIC page set in step 6 above ... but, instead the user sees a page that is as follows -
    Partner Application Name Logout Status [Logout Status]
    Oracle Portal (portal) logout status
    The SSO Server (orasso) checkmark
    buzz.resva.trw.com:7778 checkmark
    infrastructure.happy.resva.trw.com checkmark
    portal1.buzz.resva.trw.com checkmark
    portal2.sylvester.resva.trw.com checkmark
    sylvester.resva.trw.com:7778 checkmark
    so, how can i set the default page for the PUBLIC user and also a page when he user logs out.
    ideas anyone ....?
    thanx a bunch.
    hero

    Hi,
    The sequence of operation you are doing to set the home page for public users is correct. You are getting the login screen as the "custom page group" selected as "home page" has not been granted to public.
    Also, while logging-out, it is normal behaviour to get the screen where it shows the list of partner applications from where user has been logged-out. When you click on "Return" button, you will get to the "home page" set above.
    Hope it clarifies the things.
    Regards,
    Ved

  • How can I set the default home page for all new users in Firefox 4

    I'm trying to deploy FF 4.0rc1 in a corporate environment but I can't find a way to set the default home page or any other settings for that matter.
    Is there a way to set the default home page for all new users and lock it so that the users can't change home page?
    Best regards
    Jonas

    In Firefox 4 the template folder for new profiles (C:\Program Files\Mozilla Firefox\defaults\profile\
    ) doesn't exist. You can create that \defaults\profile\ folder and place a file user.js in it with the prefs that you want to initialize.
    See:
    *http://www-archive.mozilla.org/catalog/end-user/customizing/briefprefs.html
    You can also use a mozilla.cfg file to set the default value for prefs.<br />
    See: http://kb.mozillazine.org/Locking_preferences
    defaultPref(); // set new default value
    pref(); // set pref, but allow changes
    lockPref(); // lock pref, disallow changes

  • Changing Default Portlets on My Pages for All Users

    Hello,
    I want to add the Collaboration My Projects Portlet on the default My Pages that comes out of box during a portal install.
    I did trying going to Default Profiles - Edit Profile Layout - went to the My Pages as the default profile and added My Projects.
    Then finished up.
    However, when logging in as a user (via Active Directory which was previously synced) - nothing had changes.
    Suggestions how to add My Projects on a My Page for all users?
    Thanks,
    V

    Vivekvp wrote:
    Great...I added a new one, and it dropped it to the bottom of the page, in the middle column.
    Any idea on how to move it to the top left by default?
    Help...again?
    VRandom thought, but you might want to try changing the "Mandatory Portlet Priority". I know the portlet isn't mandatory, so it SHOULDN"T work, but I've seen whackier things:)
    Good luck!

  • To set page home page for user

    hello everybody,
    i want to set home page to the user when user sings in from SSO.
    from where i can set the home page.
    thank u
    sachin khare.

    From where i have to change the profile.
    in OID???
    thankx
    sachin

  • Home Page for EP6.0 SP9

    Hi,
    We are in process of designing the Home Page for our EP version 6.0 SP 9.
    Our design of Default Page looks like the Home page of the http://service.sap.com
    When we use the MIME Objects and the Links on this page, it has to route to the corresponding Iview/Page (URL derived from the User ROle).
    Is there any weblog / Guide avilable for developing the Page which has the links to the IViews as the URLS derived dynamically.
    Thanks & Regards
    Sumanth

    Hi Akhilesh
    In EP6 SP2, if you remember, we used method like
    <i>private ILogger defaultLogger = null;
    defaultLogger = PortalRuntime.getLogger();
    //defaultLogger.severe(this,"something");</i>
    And this message <u>something</u> used to get printed in the Portal_Logger in the Loggin Console in Monitoring in System Admin.
    <b>Now can you please exaplin in detail</b>, like what happens now in SP11/SP9 in would write the same statement. Where will this message get printed?
    Atually our problem is that we have migrated from SP2 to SP11. We used the above code for debugging if any error occured in whole of the PAR file. I have also heard that these are some new loggin/tracing API's but we now cannot change the whole code for this reason. So i would like to know where will the above code write and how to see that easily.
    You have mentioned abt the .trc files but they are too many in number. Can i have the logs in only one file?How?
    Also can you please explain in detail, what is the best & fast (java developer's viewpoint) method to use logger with SP11. I read about the Online Logger, the Standalone logger etc etc from the following link http://help.sap.com/saphelp_nw04/helpdata/en/57/5f1140d72dc442e10000000a1550b0/frameset.htm but which one is easy and fast for new developement.
    And i would also highly appreciate if you explain the new logger methods with some simple sample code and steps for configuration.
    If you want i will open a new thread for this query!
    This is very imp and i want some quick solution.
    If somebody else also wanna explain in details, they are welcome.
    Regards
    Gaurav Gandhi

  • I want to create home page for my application with short URL

    I want to create home page for my application with short URL
    as when I want user to use my application user must go to URL like this
    http://127.0.0.1:7101/My-Project/faces/app/empModule/allEmployees/viewMyEmployees.jspxI want the user to use short URL , How can I use shorter URL not all this one.
    I want shorter URL for my application not to write full path .
    thanks in advance.
    Edited by: user611775 on Oct 31, 2010 10:21 PM

    Well,
    it's up to you. The first part (Mcit-Project-ViewController-context-root) is the context root which you define in the view controller project. 'faces' is the name the servlet filter reacts on. You can't omit it but shorten it in web.xml. The rest is your directory structure. I'm not sure how to shorten this other as to move the jspx files back into the web root folder.
    By the way an ADF faces app never uses the .jspx at the end of the url. If you specify '.jspx', you only render the page but don't start the work flow.
    Timo

  • How can I change the password for the USER in SAP.

    How can I change the password for the USER in SAP?
    also I want to change the Language and  date Format b/c it's displaying in German language..

    Hi,
    Assuming that User has already his/her user-id and password, and now he/ she wants to change it.
    select the client and provide Log-in credentials. Now, instead of 'ENTER' there is one Tab: 'New Password' (up, left hand). Click it.
    Now, system will ask for new password to change.
    If you are asking from Basis point of view, then T.code: SU01 - User Maintenance.
    Enter User's id and Click Change icon.
    It will lead to Page: Maintain User.
    Here, Select tab: Logon Data
    There is a Sub-Tab: Password.
    Here, key-in change password and SAVE.
    For Language and Date format, contact your Basis-Personnel.
    Best regards,
    Amit

  • OS X Server 4.0.3 Profile Manager Settings for Mobile Users problems

    OS X Yosemite 10.10.2 with Server 4.0.3
    We are using Profile Manager to control Settings for Mobile Users, and give homeSync to the users. Our problem is that the exclude / Skip items (Items matching any of the following will not sync" This setting is not working an example. I have put this folder to Skip Items ~/Downloads but the home Sync still Syncing items in the Downloads folder.
    I have this problem on all the 3 users/machines on that server. Every client is using os x 10.10.1 og 10.10.2 I have check that the profile from the server is on the client.
    Has any a solution to that?
    Regards
    Brian

    I have no solution but have experienced failing sync settings (quite often) in both 10.6 Server and 10.9 + Server 3 (upgraded from 10.6 Server) in the same way as you described, it syncs too much. We have given up on synched home folders and will cut them and use other backup methods since we’re not so dependant on switching between different devices. Our users usually have one computer, one iPhone, one iPad and stay with those until it’s time to exchange them.

Maybe you are looking for

  • Need help getting my podcast up

    I have a website (nunu.com) and I have created a video for which I need to create a podcast for. I am an idiot and can't figure this process out. Here is what I did so far (1) uploaded my movie to my server http://www.nunu.com/PODCASTS/BRASSICACEAE.m

  • ABAP Runtime Error at the time of saving of Document Through CV01N tcode

    Dear Experts We have install seprate DMS Server for storing various documents of different module. While saving of Document through Transaction CV01N one small screen gets pop up.Which is as follows Check in Document:KPro Storage Category   Descripti

  • Resource File in Teststand

    I had defined some Custom Steps for some Tests in TypePalette and defined some strings as Module names.When I install Teststand in another PC,I had got my Custom Steps and StationGlobals back by transferring the corresponding ini files,but for certai

  • How does a G4 iBook with Tiger run with 512 megs ram?

    Hi, I am thinking about getting a G4 iBook that will have 512 megs of ram. How well does Tiger run with 512 meg of ram? I know that OSX loves ram. For word processing will I notice much difference if I expand it to the 1 1/2 gigs it will hold? Thank

  • Dj having problems with feedback from soundcard to mi

    here is a description of my setupX=turntableM=mixerL=Laptop (audigy 2 zs card in line in jack)A=Amp technics/or \ =connectionL A\ /M/ \X Xso this is the setup. I just bought a new audio card theAudigy 2 ZS notebook card. Everything seems to be workin