Issue linking external URL's in task list

When I link a URL to a task list, a pop-up at the bottom of the screen saying "Only secure content is displayed" with a button saying "Show all content"
When I select "Show all content" an Internet Explorer pop-up appears asking to either "Leave this page" or "Stay on this page."
Selecting "Stay on this page" does nothing, but selecting "Leave this page" logs me out of Planning. When I log back in, the web page appears when I click on the task list.
When I log off and close my browser, I have to go through the same steps.
Is there any way to have the URL task list work without having to go through those steps? Is this an IE security setting?
Thank you in advance for any input.
Tiffany

What URL are you using, is that an FR or WA report? If so check this Oracle - Hyperion Labs......: Generate Smartcuts for all objects under a folder
Regards
Celvin

Similar Messages

  • Hide link to SAPguiDetails from completed task list in UWL

    Below is the code I have in XML file to hide links to SAPGuiDetails.
    <Action name="launchSAPDetails" handler="SAPMiniAppLauncher">
    <Properties>
    <Property name="display_order_priority" value="uwlExcludeFromPreviewDetail"/>
    </Properties>
    </Action>
    This works fine however when user selects drodrown in UWL to show completed tasks and open the completed taks, they can still see links to SAPGUIDETAILS. Appreciate if I can get any help how I can hide the link to SAPguidetails from completed tasks list.
    Thanks,
    Bobby

    The simplest way to hide it from all the views in UWL is to put launchSAPDetails in the "List of UWL Actions to exclude" property of the UWL iview.
    If you want item specific or view specific customization, you will need to identify which item and view configuration is used and include the above XML in each of those.
    Thanks,
    Shanti

  • Link the URL to SAP web Lists

    hi,
    how to Link the URL to SAP web Lists using the ITS server
    please help me ASAP
    regards,
    vijay
    Message was edited by:
            vijay Aru

    to do this while writing the list you have to use WWW_SET_URL function.
    example
    write: 38(3) itab-ob color col_normal intensified off .
    url = 'http://www.google.com' .
        clear : leng .
        leng = 3 .
        call function 'WWW_SET_URL'
             exporting
                  offset        = 37
                  length        = leng
                  func          = url
             tables
                  query_string  = qstring
             exceptions
                  invalid_table = 1
                  others        = 2.
        if sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
        endif.
    Regards
    Raja

  • URL on User Task List

    good day all.
    Any body know how to attach url to workitem that received by user?
    The idea is when user certain workitem in their task list, they can execute the url which is in the attachment, preview pane section prior to make an approval/ rejection
    thanks in advance

    Hi Derelict, check this out:
    http://browserlauncher.sourceforge.net/Hope it's helpful!
    Chris.

  • External Identification field in Task List

    Hi Guru's
    I need to activate the External Identification ( TL EXTID ) field in the Task list..
    Could anyone assist me how to activate this 40 character field ? Is there any enhancement which requires activation of this field..
    Pls help us out...
    Regards
    Bhanu

    Dear Mahee,
    While they create the Task list for equipments,  they need to enter SOP No's relevant to equipment in this field..
    Regards
    Bhanu

  • Task List Web Tool in IPM11g

    Hi all,
    Can any one tell me how to view task list in ipm11g,
    I mean what is the url for viewing task list...just as we have url for BPM worklist..like <source>:8001/integration/worklistapp.
    Thanks in advance.

    Hi Dexter,
    IPM Task List is accessible for different tasks. InvoiceProcessing, SupplierMaintenance etc. In order to access this task list, you have use the following links
    http://host:16000/imaging/faces/CommandExecutor.jspx?sol=InvoiceProcessing&cmd=StartInvoiceProcessing
    Thanks,
    Lakshmi

  • Assigned To column (or any column that uses People Picker) cleared after clicking Edit Item in a Task List

    Our SharePoint Foundation 2013 is experiencing a weird issue. It only happens in Task Lists. For example:
    Create a new Task in Task List and fill the Assigned To field with a user from the People Picker list. The People Picker works fine as all users in Active Directory are appearing.
    Save Task.
    Edit Item the task that was just created.
    The Assigned To field is now cleared for that Task.
    It used to keep the user that was in the Assigned To column.
    Are there any suggestions on what may have caused this or what I can try to fix this?
    This was after some Windows updates were installed end of August.

    Hi PauIT,
    According to your post, my understanding is that the “Assigned To” field is cleared when you edit a task item in the Tasks List.
    I recommend that you can enable server rendering on the list view Web Part for the Tasks List to solve this issue.
    To do this, please follow the steps as below:
    Open the Tasks List in your site, add a new task item, type the user name in the “Assign To” field and save it.
    Select the new item, click “Edit item”, then go to the Gear icon, click “Edit page”, click the drop-down arrow in the upper-right corner of the Web Part for the Tasks List, and click “Edit Web Part”.
    On the right side of the page in the Web Part properties controls, click the plus sign (+) on the “Miscellaneous” section, select the “Server Render” in the “CSS Render Mode” section, then click “Apply”, “OK” and save the changes of the page.
    Then, you can see if the “Assign To” field in the new item’s Edit Form has the corresponding values.
    There are some similar threads for your reference:
    http://sharepoint.stackexchange.com/questions/87089/assigned-to-column-text-hidden-but-filterable
    http://support.microsoft.com/kb/2924913/en-us
    Best Regards,
    Yumi Fu

  • Task list and calendar apps cream of the crop?

    whats the best task and calendar app.  I like my notebook app but it freezes.  What works best for you guys?

    Hi,
    You can create your own reports for this purpose using some sql scripting on your application's repository schema. You could pass the below query to an asp/jsp page or to another 3rd party reporting tool. You can then attach the url to the task list of whoever needs to see this. Or simply enough, you can dump the results to an excel file and e-mail it.
    select     o3.Object_Name as UserName,
              o2.Object_Name as TaskListName,
              o.object_name as TaskName,
              case t.Task_Type
              when 0 then 'Task List Header'
              when 1 then 'Documentation'
              when 2 then 'Data Entry Form'
              when 3 then 'Business Rule'
              when 4 then 'Workflow'
              end as TaskType,
              T.DUE_DATE as Due_Date,
              ut.Completed_Date as CompletedDate,
              ut.Alert_Sent_Date as AlertSentDate
    from          hsp_task t
    inner join     hsp_object o on t.TASK_ID=o.OBJECT_ID
    inner join     hsp_object o2 on t.TASK_LIST_ID=o2.OBJECT_ID
    inner join     hsp_user_task ut on ut.TASK_ID=t.TASK_ID
    inner join hsp_object o3 on ut.USER_ID=o3.OBJECT_ID
    Order By o3.Object_Name,o2.Object_Name
    Cheers,
    Alp

  • Viewing HFR reports in the same window via task list url link

    Does anyone know how to render an HFR report inside the Planning application or even in Workspace when referencing the report's url through task list? This is with version 11.1.1.3. It doesn't seem like this version allows the task list to be built to pull up the report within the Planning application window, or even as a separate Workspace tab. I also want to be able to switch from pdf or html preview when viewing the report, but this option isn't allowed when opening the report via task list. A separate pop up appears for the report, which isn't what I want.
    Anyone know of a fix or workaround?

    This sounds like part of your issue :-
    9549216 - Instead of a new tab, a new window displays after you create a Financial Reporting task in Workspace.
    Fixed in patch 11.1.1.3.02
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Link from BPF task to external url

    Hi,
    Is it possible to link to an external url from a BPF step? I have tried embedding in the content library, but the resolution is adequate.
    Many thanks,
    Andy

    Hi Andy,
    From BPF, we cant open an external link. You can upload a link on content library and the content library can be opened through the BPF.
    Hope this helps.

  • Related Item link is broken in DispForm.aspx for a task in Workflow Tasks list if file name contains " ' " (single quote)

    Description:
    We have created a custom workflow in Microsoft Visual Studio 2013 and SharePoint 2013. This Workflow is associated with a Document library.
    This Workflow starts as soon as any new item is created OR updated in Document library and creates a Task in Workflow Tasks list.
     Related Item link is not working in following scenario -
    Upload a file that contains “ ' “
    in its name, in a document library
    Navigate to Workflow Tasks list
    Open View Item form (DispForm.aspx ) of  Task Created by workflow then click on link in Related Item fields
    OUPUT:
    Related Item link  truncates after “ ' “
    Eg.
    Original Link: http://<Site URL>/Documents/te'st.txt
    Related Item Field: http://<Site URL>/Documents/te
    Is this known bug in SharePoint 2013 OR any hotfix available to fix it.

    Hi,
    As I tested per your description, I can reproduce the issue as well.
    From what I have found out, it seems SharePoint resolve single quote into different code in different place. During the test, if I set Task Name to Document Name, single quote will be resolved to &#39; , if I set some field to Document encoded URL, single
    quote will be resolved to %27 . For now, I haven't found out any article talking about this issue.
    As workaround, we may find out a way to change the Related Item field. However, it is OOB field in workflow task (SharePoint 2013) content type, and this content type cannot be modified in form.
    I'd suggest you add new column to get document url and place in the form in Task content type settings.
    Regards,
    Rebecca Tu
    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]

  • Browser enabled InfoPath form not opening in browser from a link in a Task list

    I have a browser enabled InfoPath deployed to SharePoint as a template in a Forms Library. The form opens in the browser when a user navigates to the Form library and clicks New.
    There is an Approval workflow associated with this form which kicks in whenever a new Form is submitted. The workflow creates a task in a task list. The task list shows a Link column which provides the link to open the form. Now, when a user clicks on the
    link (in the Task list), the form always open in InfoPath instead of opening in a browser.
    I see that the URL for the form (http://<Server>/Training/Enrollment%20Forms/<FormName>.xml)  is same in both the Forms Library and Task list link.
    What am I doing wrong or what do I need to do to make the form open in browser from the Task list link.
    Thanks
    Rajat

    This question is asked constantly - we just discussed this last week, I believe - so you can probably find a lot more discussion to help you out if yous earch within this form or browse through the topics.  The reason for your issue is because of
    what you just wrote - the URL is directly to the XML file, so it tries to invoke InfoPath.  Browser forms are rendered by Forms Services, which has a much different URL.  Go click on one of your existing forms, and notice how different the URL is. 
    To get forms to open in the browser when invoked from a different location, you must use this full Forms Services URL.  Built-in workflows only generate a link to the XML file, and since the task in a different list than the form, then it has no idea
    how to open the form in the browser.  Only users who don't have InfoPath installed will see it in the browser automatically.  This is why I generate my own URLs dynamically with custom workflows and don't use OOTB workflows.SharePoint Architect || Microsoft MVP ||
    My Blog

  • Task List URL (to FR Report) opens in new window, but not for all users!

    Hi all,
    I am not sure if this is the correct forum to ask the question (for me it looks like an IE topic), but perhaps anybody can help me anyway...
    In one of our Planning apps (9.3.1) we defined several task lists and tasks that link to relevant FR Reports (URL Tasks). If I open the URL task in basic view the relevant FR Report opens in the same IE Window (in the main frame of the planning app). If my colleague opens the same task the FR Reports opens in a new IE Window.
    My problem is that I dont have any ideas where I can set the relevant property. Is that a planning property, a workspace property or an IE property setting??? Where can I adjust the settings that for ALL users the URL opens the Report in the same window??????
    Thanks in advance!!!!
    Kind Regards
    André
    P.S.: We are on IE8.

    Have you both got the same settings in Tools > Internet Options > Tabs Settings
    There was also a bug though I can't say if it is related to your issue
    9549216 - Instead of a new tab, a new window is displayed after you create a Financial Reporting task in Workspace.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Which URL to use to open a financial report from a Task list ?

    Hi,
    I've got a big issue in Hyperion Planning : I do not know which URL to use to open a financial report from a task list.
    If I use the Smartcut (given when you do a right-click on the report, then Properties), a tab is opening (normal behaviour), but another tab is opening under the tab, which is very ugly, and moreover which prevent from using the PDF/HTML display icons !
    Is someone know which URL to use to display correctly a financial report when opening it from a task list ?
    It's an emergency, please help !
    Thanks very much.
    Virgile.
    PS. : we use Internet Explorer 8 and we use 11.1.2.1 Hyperion Planning version
    Edited by: 808808 on Jan 5, 2012 3:41 AM

    Hi,
    OK, thanks, it almost works !!
    I've just a problem. 2 tabs are opening.
    One is opening correctly and displays my report. I can display it in PDF/HTML.
    But another tab is opening with this message : This window can now be closed since the application has been launched in a separate window. Note: Popup blockers may prevent this application from working properly.
    Do you know why this tab is opening ?
    Thanks very much for your help.
    Virgile.

  • URL Task List in System 9 Planning

    We have recently upgrade planning from 4.0 to System 9.3; however, there was a feature in Planning task list where you can build a URL to retrieve report from Hyperion Report with parameter passiing from Planning to Report for a POV driven report. Does anyone know how I would convert the below link in system 9.
    http://xxxx:8200/hr/common/HRLogon.jsp?elementName_UTF8=%5cTMWSP+Planning%Workbook&sameWindow=false&elementType=2&attribute=Locations.id.Region%20GOODSITE&gridHeadings=0&viewAs=pdf

    Hi,
    You can go to workspace and browse to the report through the explore page. Right click on the report and select properties. You should see the link called as smartcut over there. You can copy this link and use it in your task lists.
    Cheers,
    Alp

Maybe you are looking for