Auto forward specifig user / group to an url

Hello,
is it possible to forward a user after login to a url that is specific to the user / group / role?
Thanks, Vanessa

Hi Vanessa,
You can write a Desktop rule that forwards a user, group or role member to a specific desktop.  The rules are created in System Administration > Portal Display > Portal Administrators > Super Administrators > Main rules.
Best regards,
Duncan

Similar Messages

  • Problem with auto forward in nested groups of 3-levels deep (Struts/UIX)

    Hi all,
    In my time registration applications I use master-detail relations of 3 levels deep: Weeks - Days - Hours.
    For user convenience I forward directly from the Weeks table page to the DaysHours master-detail page, skipping the Weeks detail page.
    Therefore I replaced the forward-on-success-path to the WeeksPage with the WeeksDaysRouter, as if the user selected it manually in the WeeksPage.
    This works well, including getting the propper dataobjects and dataobjectsets of all levels.
    However when I browse to the next Day in the DaysHours master-detail page using the '>'-button, the server responds with the next week in a WeeksPage.
    It seems that the application turns into another state when a user action is simulated in the struts config.
    It is unclear to me how to configure the controller to exactly simulate the user action. Who else is in control here? According to MVC I would not expect controlling behaviour in the UIX views.
    Can somebody help?
    kind regards,
         Martijn

    Martijn,
    In formPage.uit, the template used by your page that includes the brow2sebuttons, you can find the following line:
    <formValue name="targetGroup" data:value="jhsPreviousForward@jheadstart:sessionData"/>
    The problem is that jhsPreviousForward still points to the weeks group. You can do two things to solve this:
    1. put a custom Struts action in between that changes the value of jhsPreviousForward to "DaysHours" (assuming that is the name of your group.
    The code to do this in your Struts action:
    sessionData.setAttribute(JHS_PREVIOUS_FORWARD,"DaysHours",SessionData.SESSION_SCOPE);
    See chapter 2 of the Dev Guide for more info on writing custom Struts actions.
    2. Make a copy of formPage.uit, rename it and change the targetGroup formValue to
    <formValue name="targetGroup" value="DaysHours"/>
    and have your page use your custom template instead of formPage.uit.
    I would favor the first option, you could even make this action generic by passing in the targetGroup name using set-property in the struts-config, rather than hardcoding it in the action.
    Steven Davelaar,
    JHeadstart Team.

  • Incorrect User Group contact info

    Hi, it was brought to my attention that your site has incomplete/incorrect contact information for the Nebraska Oracle Users Group. The URL is http://otn.oracle.com/collaboration/user_group/htdocs/central.html.
    The correct info is:
    Steven Givens
    President - Nebraska Oracle Users Group
    Database Manager
    Technical Services
    Enterprise Systems
    First Data Corporate (FDC)
    10910 Mill Valley Rd.
    Mailstop P10T
    Omaha, NE 68154
    Phone:      (402) 222-7967
    Fax:          (402) 222-8370
    Email:     [email protected]
    Thanks,
    Steve

    This change has been made.
    Regards, OTN

  • How to set different urls for logoff button for different user groups

    HI All,
    We have two different set of users in our company .when one user group clicks on the logoff button in masthead we want to redirect them to for example www.google.com and for the other group we want to redirect to www.gmail.com.
    How can we acheive this particular requirement
    Thanks
    Bala Duvvuri

    hi bala,
    For the  two user groups maintain two different desktops, two/same themes and frame work.change the headeriview jsp in masthead par file to Google and save it as masthead1 and another one with gmail as masthead2 then create iviews with that par file and assign them to different groups and make invisible the default masthead iview.then the users get the logoff based on group you can get some wikis on changing log off or redirecting log off, check these threads
    Portal logoff : Redirection or Close the Entire Window
    Portal Logoff redirection URL
    Regards
    Mahesh

  • Display the auto forward address for all users

    Is there a transaction I can execute in ERP that will display the Auto Forward address for all users? I know that SO36 can be used to create an auto forward address for an individual user, however, I would like to list the auto forward address for all users

    According to the 2nd article - I've created an empty Company_Phone_Number_Normalization_Rules.txt file and placed it in the Lync file share, in order to avoid any suspicion that the built-in file might be used. I've updated the address book but unfortunately
    can't restart the FE services at this time. There's no still no change in the client.
    Yet - the problem here is the numbers shown aren't present in the files making up the Lync address book inside the local user's sip profile folder.

  • Pulling user/group field data from SharePoint list using REST, jQuery, Knockout.js Sharepoint 2013

    I'm trying to make an interactive task board based on the task list app in SharePoint 2013. The task lisk includes fields like "Title","Description","Status","% Complete","Due Date","Assigned To",
    etc. I used knockout.js to bind "Title","Description", and "Status" to my HTML controls. Here is some of the code:
    var ViewModal = function(items, listname){
    var self = this;
    self.sortBy = ko.observableArray(sortBy);
    self.tasks = ko.observableArray(items);
    self.listname = ko.observable(listname);
    self.auto = ko.observable(false);
    self.getTasks = function() {
    clearTimeout(self.getTasks);
    // server relative url to REST service endpoint
    var ajaxurl = _spPageContextInfo.webServerRelativeUrl + "/_vti_bin/listdata.svc/" + self.listname() + "?$orderby=PriorityValue";
    $.ajax({
    type: "GET",
    url: ajaxurl,
    contentType: "application/json; charset=utf-8",
    dataType: "json",
    cache: false,
    processData: true,
    success: function (data, status, xhr) {
    if (status == "success" && data) {
    ko.mapping.fromJS(data.d.results, mapping, self.tasks)
    $(".task-item").draggable();
    error: alert
    if (self.auto()) {
    setTimeout(self.getTasks, 10000);
    <div class="tasks-column">
    <div class="column-header">Not Started</div>
    <!-- ko foreach: tasksNotStarted -->
    <div class="task-item">
    <div class="view" data-bind="visible: !IsEditing()">
    <button class="edit" data-bind="click: $root.editTask">edit</button>
    <h2><span data-bind="text: Title"></span></h2>
    <div data-bind="html: Description"></div>
    <span data-bind="text: PriorityValue"></span>
    </div>
    <div class="edit" data-bind="visible: IsEditing">
    <button class="save" data-bind="click: $root.saveTask">save</button>
    <input type="text" data-bind="value: Title"></input>
    </div>
    </div>
    I'm having trouble displaying the data from the "Assigned To" user/group field. I tried:
    <span data-bind="text: AssignedTo"></span>
    But it displays the field as [object Object]
    I tried using $select/$expand
    ?$select=Title,AssignedTo/Id,Assignedto/Title&$expand=AssignedTo/Id,AssignedTo/T‌​itle";
    But it still returns the [object Object]

    Hi,
    Please use the REST URI below:
    /_api/lists/getbytitle('ListName')/items?$select=Title,AssignedTo/ID,AssignedTo/Title&$expand=AssignedTo/ID,AssignedTo/Title
    More information for your reference:
    How to get User Details and User Group Details in SharePoint 2013 REST API with Knockout for SharePoint Js (KoSpJs)
    http://www.ashokraja.me/post/How-to-get-User-Details-and-User-Group-Details-in-SharePoint-2013-REST-API-with-Knockout-for-SharePoint-Js-(KoSpJs).aspx
    How to Get Login Name and Display Name using SharePoint 2013 REST API
    https://www.nothingbutsharepoint.com/sites/devwiki/articles/pages/how-to-get-login-name-and-display-name-using-sharepoint-2013-rest-api.aspx
    Best Regards
    Dennis Guo
    TechNet Community Support

  • Welcome to the new Oracle User Group Community

    Welcome to the new Oracle User Group Community. Whether you landed here via the redirect from the previous community site - IOUC.org - or navigated here directly, welcome. This new platform brings new community features to enhance the way you connect with user group peers and with Oracle, as well as make it easier for you to find information through a more intuitive interface. We invite you to provide your feedback on the new site. Log in using your OTN Forum credentials and join the discussion here. If you do not yet have OTN Forum log in credentials, navigate to http://community.oracle.com/community, click on the "Register" link in the upper right corner of the page and create your account.
    We look forward to hearing from you.

    Hi Kashif,
    Glad you like the new Community. Communication among user group leaders works a little differently on this site than on the previous site. Rather than having communication focus around e-mail distribution lists, communication now is focused within the site itself. The intent is that this will provide users the one place to come for information, rather than having to sort through lots of e-mail threads. That doesn't mean that e-mail is completely out of the picture though. Users can opt-in to receive e-mail notifications when an individual piece of content is changed, or when content is posted to a space. Look for the "Receive email notifications" link under "Actions" to start receiving notices. To stop receiving notices, go back to the same content/space and click "Stop email notifications".
    Your Relationship Manager will be talking with you and the other leaders in your region over the next few days and weeks regarding how you and your group of leaders want to communicate.
    Best regards,
    Oracle User Group Team

  • OSMF Online-only User Group Meeting -- Edwin van Rijkom  |  TODAY Wed, Jan 20 @ 12:00 NOON PST

    TODAY Wed, Jan 20 @ 12:00 NOON PST we are having the third meeting of the online-only OSMF User Group ( http://www.adobe.com/go/osmf_usergroup ).
    The online-only OSMF User Group is pleased to have a live presentation on OSMF's new features by a developer from the OSMF Team, Edwin van Rijkom, Sr. Computer Scientist at Adobe.  This meeting is open to all who are interested.  Please forward notice about this meeting to all who you think may be interested.
    The link for the online meeting room can be found in the meeting announcement link here:
    http://groups.adobe.com/posts/3e8fddb492
    Edwin will be reviewing changes and new features in OSMF delivered in Sprint 8 (released December), as well as providing an overview of new features in Sprint 9 (releasing next week).
    Topics to be covered include:
    API Refactoring Changes
    Subclip Support
    Live Streaming Support
    Flash Media Manifest File Format (F4M) Support
    Multi-BitRate (MBR) Streaming;
    Digital Rights Management (DRM) via Flash Access,
    Closed Captioning Plug-in
    Pre-Assigned Durations
    Edwin previously presented at the Adobe MAX 2009 conference as a co-presenter on the session entitled "Introduction to Adobe's Open Source Media Framework".  Following is a link for a recording of Edwin's MAX Session (Edwin's portion starting at 24:00 in the recording timecode):
    http://max.adobe.com/online/session/332
    OSMF is an open source ActionScript 3 framework for building video and media players supporting cutting edge Flash Platform features for media delivery.  If you have any curiosity about media players in Flash or Flex, this is a great forum for exploring and getting questions answered.
    If you have an ongoing interest in this area, please join this group by logging in at groups.adobe.com/groups/7af970e6e4 and selecting the "JOIN THIS GROUP" link (red graphic on right side).
    This online-only OSMF User Group meets regularly at this time and day of every month.  That is the 3rd Wednesday of every month @ 12:00 NOON PST time.  All meetings are recorded.  Links for prior meeting recordings are on the group site in various places including on the group home page under the heading "Previous Connect Sessions".
    Following are a few time zone conversions:
    London:  8:00 PM to 9:30 PM GMT
    Rome/Paris/Berlin:  9:00 PM to 10:30 PM CET
    New York:  3:00 PM to 4:30 PM EST
    Los Angeles:  12:00 NOON to 1:30 PM PST
    Sydney:  7:00 AM to 8:30 AM EDT ** THURSDAY January 21 **

    The presentation by Will Law was recorded and can be viewed online, on-demand from the following link:
    http://experts.na3.acrobat.com/p47054887/ 
    Will's presentation is an excellent introduction to HTTP Dynamic Streaming.
    This presentation is a supersized version of a presentation that Will also will be delivering at Adobe MAX 2010.  MAX session description here:
    http://bit.ly/bh77Gz 
    Supersized in that in the recording above Will spent a bit more time in ActionScript for the OSMF developers in attendance than he will with more general audiences.  Plus supersized in that Will took 1 hour 15 minutes (plus 15 minutes more on Q&A), whereas MAX sessions are 60 minutes, less a few minutes for the Q&A.,
    hth,
    g

  • How to only synchronize one specific LDAP user group with SAP?

    Hi,
    Hopefully this is the correct forum to post this in. I want to have continuous one-way synchronization of users from my LDAP server to my SAP central system. I've started configure in SAP using transaction SM59 and LDAP. Can I somewhere set that only one specific LDAP user group shall be transferred to SAP (they do not need to be assigned to any specific group, profile, role in SAP) - or should this be done on the LDAP server side (or is it at all possible)?
    Correct me if I'm wrong, but the User Group field in the report RSLDAPSYNC_USER only concerns SAP user groups right? This would therefore not be sufficient since I want to select the users to synchronize based on user groups in the directory.
    Thanks, Oscar

    We've used a repository constant to specify the LDAP filter for reading users / groups from the LDAP target.
    E.g. LDAP_FILTER_USERS (&(objectCategory=person)(objectClass=user))
    Then we also have a constant for the LDAP_STARTING_POINT
    For our AD Group Initial Load we filter according to these settings:
    LDAP_FILTER_GROUPS = (objectclass=group)
    LDAP_STARTING_POINT_GROUPS = ou=IDMManagedGroups,ou=Groups,dc=cfstest,dc=le,dc=ac,dc=uk
    The above example only reads AD groups starting at the specified OU
    Then in a Job From LDAP Pass the LDAP URL looks like this:
    LDAP://%$rep.LDAP_HOST%:%$rep.LDAP_PORT%/%$rep.LDAP_STARTING_POINT_GROUPS%?*?SUB?%$rep.LDAP_FILTER_GROUPS%
    I hope this helps
    Paul

  • Login on user group with redirect ORA-01403: no data found

    Hi,
    i have 3 home page, one for each user group
    I would like to address the home page based on the value the group's
    i tried to do this with a process on login page
    :FSP_AFTER_LOGIN_URL := null;
    declare l_page varchar2(30);
    begin
    SELECT gr.GRP_ID
    into :P101_GRP_ID
    FROM DB1USG ug, DB0USR us
    WHERE
    AND us.USR_ID=:P101_USERNAME
    AND us.USR_ID=ug.USG_USR_ID;
    if :P101_GRP_ID = 'CPY' then l_page := '5007';
    elsif :P101_GRP_ID = 'TRF' then l_page := '5005';
    elsif :P101_GRP_ID = 'VND' then l_page := '7051';
    else l_page := '1'; -- default home page
    end if;
    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||':'||l_page
    end;
    after password input i received ORA-01403: no data found error
    Any help?
    Thanks in advance
    km

    Hi Scott,
    first access
    user USR1--> page afer login --> 7051 ->OK
    logout
    user USR2-->page right 5007
    page afer login --> 7051 --> no 5007
    Scott,
    in process on login page i added the line
    :P0_FIRST_PAGE_ID := l_page;
    and
    i modified logout URL on my Authentication Scheme
    wwv_flow_custom_auth_std.logout?p_this_flow=&APP_ID.&p_next_flow_page_sess=&APP_ID.:&P0_FIRST_PAGE_ID.
    Many thanks
    km

  • How to change user group of a query (sq01)

    Hi,
    I'm working with SAP Queries (SQ01) and I don't know how can I change the user group assignation of a query. We did only one user group for all users and queries and know in order to arrange it a bit we've created three user groups.
    We know how to assign users to new user groups but for each query of the old group we neet to move it to one of the new user groups, how could we do this?
    thanks in advance

    Hi
    pls go through these links
    http://help.sap.com/saphelp_46c/helpdata/en/35/26b413afab52b9e10000009b38f974/content.htm
    Step-by-step guide for creating ABAP query
    http://www.sappoint.com/abap/ab4query.pdf
    ABAP query is mostly used by functional consultants.
    SAP Query
    Purpose
    The SAP Query application is used to create lists not already contained in the SAP standard system. It has been designed for users with little or no knowledge of the SAP programming language ABAP. SAP Query offers users a broad range of ways to define reporting programs and create different types of reports such as basic lists, statistics, and ranked lists.
    Features
    SAP Query's range of functions corresponds to the classical reporting functions available in the system. Requirements in this area such as list, statistic, or ranked list creation can be met using queries.
    All the data required by users for their lists can be selected from any SAP table created by the customer.
    for more information please go thru this url:
    http://www.thespot4sap.com/Articles/SAP_ABAP_Queries_Create_The_Query.asp
    http://goldenink.com/abap/sap_query.html
    Please check this PDF document (starting page 352) perhaps it will help u.
    http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCSRVQUE/BCSRVQUE.pdf
    check the below link will be helpful for u
    Tutorial on SQVI
    once you create query system generates a report starting with AQZZ/SAPQUERY/ABAGENCY2======= assing this report to tr code for the same

  • How to Auto-Populate a User Data Picker?

    I understand how User Data Pickers work (mostly).  We have used them during the shell creation process to allow the creator to specify which users may access the shell and in what user groups they will be placed.  This works fine— as the shell is created, these users are added and assigned to their respective groups.
    From the documentation, User Data Pickers are supposed to support auto-population, but the system does not allow me to select a suitable source from which to pull.  For example, the shell attribute form contains a User Data Picker that contains the name of the PM that was assigned to the shell.  Say I have a BP in that shell on which I want the PM’s name to appear.  I’m thinking I would place a User Data Picker on the BP and auto-populate that field from the shell attribute user data picker, but uDesigner doesn’t allow the attribute form as source as it does for other DE types.  This is important as this field, the PM’s name, must be located on the BP if I’m to use it in a LiveCycle report.
    Short of having the user select the name again within the BP, how do I pass the names of shell members that were selected during shell creation using User Data Pickers?
    Thanks.

    That works!  Thanks Rich for clarifying your above posts with the screenshots. 
    Rich’s solution as it worked for me:
    1.  Add a User Data Picker to the shell attribute form.
    2.  Add a DE of DD SYS Medium Name to the shell attribute form.  The DD type appears critical here and was my mistake in the past.
    3.  Auto-populate the DE created in step 2: Source Name-->Data Picker; Source Element-->uuu_user_name (in this case).
    4.  On the BP, place the same DE as step 2 and auto-populate (or link) it to the same DE on the shell attribute form.
    What I didn’t expect:
    1. User Data Pickers on BPs cannot reference User Data Pickers on shell attribute forms.  Why do we need additional fields to link two other fields of the same type?
    2. In operation the auto-populate, setup in step 3 above, occurs immediately as if it were a formula instead of just populating upon the shell creation stup as it would on BP creation.

  • Custom user/group properties

    Hi,
    Is there a possibility to extend the standard user/group properties (CQ5 Security)? I would like to add some more properties then the standard name, mail, about,....
    I've tried to extend the dialog by cutomizing the UserProperties.js Dialog. The Problem is that cq5 doesent save the newly added propertes. There is a save function using the folowing service.
                    url = CQ.HTTP.externalize("/bin/security/authorizables/POST");
                    url = CQ.HTTP.addParameter(url, "Authorizable", frm.findField("id").getValue());
    It posts the parameter but it doesent get saved.
    Is there a way to make it work?

    I have used a kind of a workaround. Just created a new tab for the user/group properties and registered it in the UserAdmin.js . The Tab is implemented similar to the CQ.security.UserProperties and has a similar save handler.
    I'm getting the stored Properties the following way:
            private static final String PREFERENCES_NODE_PATH = "/preferences";
            preferencesNode = currentSession.getNode(group.getPath() + PREFERENCES_NODE_PATH);
            if (preferencesNode.hasProperty(preferenceName)) {
                preferenceValue = preferencesNode.getProperty(preferenceName);
    I know it's not the most elegant solution but the fastest I have found.

  • Get the user group in a JSP portlet

    Hi,
    I'm developping a JSP portlet and i'd like to know how to get the group of the user ?
    (the JSP will display URL links only if a user belongs to a specific group).
    I've seen the objet ProviderUser but it doesn't have methods wich give the user groups...
    Can you help me,
    Thank you
    Franck

    ProviderUser or any other Java API for that matter in PDK cannot
    give user's group information. One way to get the User group is
    to make to make use of Portal's PL/SQL Security API Packages,
    through JDBC calls.
    Example PL/SQL Code:
    l_boolean boolean;
    l_boolean := wwsec_api.is_user_in_group
    p_person_id => wwsec_api.id ('USER1'),
    p_group_id => wwsec_api.group_id ('GROUP1')
    Note : Replace USER1, GROUP1 with your own values.
    -aMJAD

  • How to set different default interactive reports for different user groups?

    I'm probably overlooking an obvious solution, but how do I set different default interactive report for different user groups?
    For the same interactive report, I want one set of users to see a default where the default filter is based on column X. However, another group of users doesn't have authorization to see that column so I need to set the default filter to something else for them.
    Thanks

    You can set a filter on a report in a URL - would that help? I think with apex 4.x you can also link to a saved default report or alternative report...

Maybe you are looking for

  • After updating to Maverick 10.9.4, all energy saving functionality has vanished from my MacBook Pro. What to do?

    I updated to the newest version of Maverick, and nor my MacBook Pro (late 2009) does not follow the energy saving instructions in Systemsettings.They have worked perfectly up until then, and I have made no other changes than updating the OS. What to

  • Report with cf formula WORD doc --to wip

    my report (reports 6i) has a CF formula --- OLE2--- some file.doc (Word) (one page :)) in reports 6i it works just fine... but in oracle apps i can only see the header and not the word doc.... (i'm runnig the report in wip as a conc request....with p

  • Error in adding selection screen fields

    Hi All,, I am getting error when i add a selection screen parameters in module pool. I copied stadard program to custom one, when I add an input field to screen it gives information message saying "Selection screen: Report generation makes screen cha

  • Web services for forms 10g

    Hi, Can anybody explain how to use web services in forms 10g. I have a wsdl url with me which I need to call. I also heard that I can use utl_http and utl_url package. Anbody knows what it is. So basically there are two ways to call web services into

  • Lens Profile for Canon 16-35

    Using Canon Mark11 camera and Canon 16-35 lens.  I can not find a profile for it in Lightroom Lens Correction.  Any thoughts on where I can find a profile for this lens? Thanks, Matthew Kraus