HTML in task list

Hi,
I am writing html code in descriptive task of task list. when i open the task list in basic mode it shows me the html code instead of the html page.
please help

Hi,
Is this version 11 as I know it has changed the way description boxes are displayed, well it has with web form descriptions, in prior versions it displayed the HTML directly now it uses a HTML textarea so you can only enter text directly into it.
Cheers
John
http://john-goodwin.blogspot.com/

Similar Messages

  • How can I move a task from a Summary Task to another Summary Task in the same task list?

    Hey, I tried to move tasks through the SP UI from one Summary Task to other in the same task list, but I didn't find possibility for it.
    Then I spent time to learn the SP Client Object Model and now I can read tasks form the list. I see every task has a "FileRef" and a "FileDirRef" field. If I think right these fields show the relation between list elements for example between
    a Task and a Summary Task elements.
    I changed these fields' values and I tried to Update the ListItem but I got this error message: "Invalid data has been used to update the list item. The field you are trying to update may be read only."
    I really need to move tasks what were created below a wrong Summary Task so please explain a method or pattern how I can do this. (I can create a new Task below to any Summary Task and I can set field values but I hope there is a way to really move tasks (I
    mean I should change the right field values somehow.).
    I can reach the Task List both on the server and client side so I'm very interested in every solution. PowerShell solution is also good for me.
    I'm using SharePoint 2010 SP2.
    Thank you for your answer and your time. :)
    Csaba Marosi

    Hi,
    According to your post, my understanding is that you want to move a task from one summary task to another in the same task list.
    We can do it like this:
    We can create a Gantt View for this task list, then copy your tasks inside a summary task, then navigate back to the other summary and paste, then go back to original and delete.
    Here is another way for your reference:
    SharePoint vs Powershell – Moving List Items between folders
    http://sharepointstruggle.blogspot.in/2010/07/sharepoint-vs-powershell-moving-list.html
    Best Regards
    Dennis Guo
    TechNet Community Support

  • 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.

  • SharePoint Provider Hosted App that can update existing SharePoint Task List

    Note: I am unable to take advantage of the Microsoft.SharePoint library directly. Adding a reference results in a 32bit/64bit library mismatch error.
    I have to find a solution that uses only the Microsoft.SharePoint.Client extension. 
    I am looking for example code where provider-hosted SharePoint App loads a SharePoint Task List View that allows users to interact with the tasks.
    So far I have only been able to programmatically create and then load the SharePoint tasks list, create and populate a DataTable object and set the datasource of a GridView object to that DataTable.
    I am unable to trigger my method linked to my checkbox within the gridview.
    Ideally I would like to just customize a Task View that already has this functionality.
    Here is my default.aspx.cs code-behind file:
    using System;
    using System.Collections.Generic;
    using System.Linq;
    using System.Web;
    using System.Web.UI;
    using System.Web.UI.WebControls;
    using System.Data;
    using SP = Microsoft.SharePoint.Client;
    namespace SPAppBasicWeb
    public partial class Default : System.Web.UI.Page
    protected void Page_PreInit(object sender, EventArgs e)
    Uri redirectUrl;
    switch (SharePointContextProvider.CheckRedirectionStatus(Context, out redirectUrl))
    case RedirectionStatus.Ok:
    return;
    case RedirectionStatus.ShouldRedirect:
    Response.Redirect(redirectUrl.AbsoluteUri, endResponse: true);
    break;
    case RedirectionStatus.CanNotRedirect:
    Response.Write("An error occurred while processing your request.");
    Response.End();
    break;
    protected void Page_Load(object sender, EventArgs e)
    // The following code gets the client context and Title property by using TokenHelper.
    // To access other properties, the app may need to request permissions on the host web.
    var spContext = SharePointContextProvider.Current.GetSharePointContext(Context);
    using (var clientContext = spContext.CreateUserClientContextForSPHost())
    //clientContext.Load(clientContext.Web, web => web.Title);
    //clientContext.ExecuteQuery();
    //Response.Write(clientContext.Web.Title);
    SP.ClientContext cc = new SP.ClientContext("http://server/sites/devapps");
    SP.Web web = cc.Web;
    SP.List list = web.Lists.GetByTitle("General Tasks");
    SP.CamlQuery caml = new SP.CamlQuery();
    Microsoft.SharePoint.Client.ListItemCollection items = list.GetItems(caml);
    cc.Load<Microsoft.SharePoint.Client.List>(list);
    cc.Load<Microsoft.SharePoint.Client.ListItemCollection>(items);
    //try
    //const int ColWidth = 40;
    cc.ExecuteQuery();
    DataTable dt = new DataTable();
    dt.Columns.Add("Task Name", typeof(string));
    dt.Columns.Add("ID", typeof(int));
    foreach (Microsoft.SharePoint.Client.ListItem liTask in items)
    DataRow dr = dt.NewRow();
    dr["Task Name"] = liTask["Title"];
    dr["ID"] = liTask["ID"];
    //dr["chkTask"] = liTask["Checkmark"];
    dt.Rows.Add(dr);
    GridView1.DataSource = dt;
    GridView1.DataBind();
    protected void chkTask_CheckedChanged(object sender, EventArgs e)
    //add code here to update Task Item by ID
    Response.Write("checkbox event triggered");
    Here is my simple default.aspx:
    <%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="SPAppBasicWeb.Default" %>
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head runat="server">
    <title></title>
    </head>
    <body>
    <form id="form1" runat="server">
    <div>
    <asp:GridView ID="GridView1" runat="server">
    <Columns>
    <asp:TemplateField>
    <ItemTemplate>
    <asp:CheckBox ID="chkTask" runat="server" OnCheckedChanged="chkTask_CheckedChanged" AutoPostBack="true" />
    </ItemTemplate>
    </asp:TemplateField>
    </Columns>
    </asp:GridView>
    </div>
    </form>
    </body>
    </html>
    http://www.net4geeks.com Who said I was a geek?

    Hi,
    Please try to modify your code as below:
    using (var clientContext = spContext.CreateUserClientContextForSPHost())
    SP.Web web = clientContext.Web;
    SP.List list = web.Lists.GetByTitle("General Tasks");
    SP.CamlQuery caml = new SP.CamlQuery();
    Microsoft.SharePoint.Client.ListItemCollection items = list.GetItems(caml);
    clientContext.Load(items);
    clientContext.ExecuteQuery();
    If the code still not works, I suggest you debug the code or following the blog below to create a Provider-Hosted App for SharePoint and read list items from SharePoint list.
    http://blogs.msdn.com/b/steve_fox/archive/2013/02/22/building-your-first-provider-hosted-app-for-sharepoint-part-2.aspx
    Best Regards
    Dennis Guo
    TechNet Community Support

  • 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/

  • Add JavaScript file to ALL existing Task List pages and to newly created list pages

    We have several OOTB task lists that are in use on several subsites.  We want to add JavaScript to the NewForm.aspx and EditForm.aspx for these task lists. These lists have not been customized, they are based on the standard Task Content Type.
    Since there are several lists already created and in use, it would be far too much work to manually add a Content Editor web part to each page.
    We put the JavaScript file in the top-level site style library.
    Is there a way to programmatically attach a script reference to each existing page in all the subsites AND have the script reference placed on any NEW list pages created from the OOTB Task content type? Or, add a CEWP to all existing list pages using a feature?
    I could not find any examples of this.

    Hi,
    A solution would be like this: Add your script into a Content Editor Web Part in a page, then add this Content Editor Web Part into the NewForm page of these Task lists using
    SharePoint Object Model.
    More information:
    Use
    SPList.Forms property to retrieve the URLs of the specific form of these Task lists:
    http://sharepointcore.blogspot.com/2011/08/sharepoint-listitem-new-edit-and.html
    With
    SPLimitedWebPartManager object, we can retrieve the web parts of a page, choose one and add into another
    page:
    SPLimitedWebPartManager.WebParts
    property
    SPLimitedWebPartManager.AddWebPart
    Another two links about this for your reference:
    http://www.stefangordon.com/add-web-part-to-page-programmatically/
    http://sharepoint.stackexchange.com/questions/9442/how-to-programmatically-add-a-webpart-to-a-page
    Thanks
    Patrick Liang
    Forum Support
    Please remember to mark the replies as answers if they
    help and unmark them if they provide no help. If you have feedback for TechNet
    Subscriber Support, contact [email protected]
    Patrick Liang
    TechNet Community Support

  • Image in task list instructiuon

    Hi,
    Ho to put image into task instruction (in task list)?
    I have instruction in html. Fragment of code that suppose to show image looks like that:
    <img src="Images/logo-ucb.gif" width="215" />
    Best regards,
    Greg

    Sorry for the delay. We reproduced the error; your use case is somehow causing a flash.events.Event of type 'change' to fire, and since the 'change' type collides with mx.events.IndexChangeEvent's type, this generic Event is not expected by one of the handlers for IndexChangeEvent in the Workspace code, thus the coercion exception.
    If you're into rebuilding Workspace from source, you can begin to fix this yourself as I'll explain shortly. Mind you, the results are not stellar even with the fix... Otherwise, I'll recommend you avoid the images idea until this is fixed.
    To fix this yourself in 8.2.1:
    a) open lc.layout.WorkspaceTabNavigator.as
    b) locate function viewChangeHandler (line 76), and change the method signature from (event:IndexChangedEvent) to (theEvent:Event). You may have to import flash.events.Event.
    c) wrap the contents of that function in an if-block, defining variable event in the process, as follows:
    var event:IndexChangedEvent = theEvent as IndexChangedEvent;
    if ( event != null ) {
    {existing function contents here}
    d) Recompile and redeploy the workspace-runtime.swc file.
    Beware of the build scripts if your change doesn't seem to make a difference: the shipping build scripts have been reported to only include a subset of the files, files that have to do with theming/skinning Workspace.

  • Show a custom list field in task list

    Hi
    i created a custom list and started approval workflow process
    i want to provide a field called employename in task list bcz
    when apporver user  opens tasklist and before approve  he will enter employeename in this filed
    adil

    Hello,
    Above link to add field in task form but if you want to create lookup column so modify your form in infopath. Then add field to get emp name from emp list
    One more link to customize task form and add column
    http://office.microsoft.com/en-us/office365-sharepoint-online-enterprise-help/customize-a-task-details-page-HA103858063.aspx
    http://www.jasperoosterveld.com/2012/05/how-to-change-workflow-task-form-with.html
    This link will give you an idea to modify the form.
    Hemendra:Yesterday is just a memory,Tomorrow we may never see
    Please remember to mark the replies as answers if they help and unmark them if they provide no help

  • Formatting descriptive task list

    Hi All,
    In version 9.3 we have option to format the task list font (like bold, change color, italics) and even insert a picture in it. But when i try to format a task list in 11.1.2, it does nto show the required result.
    In other words i am unable to format the task list in v 11.1.2 by using the same steps that are used in 9.3. Can somebody tell me how can i do it?
    Regards,
    Umair

    In version 11 they took the ability to add html commands away from the forms and task lists, it is because the instructions are now in a html textarea which do not allow html functions.
    Though saying that in a patch for 11.1.1.3 (11.1.1.3.03) it looks to be reverted back :- 9475065 – Users cannot use HTML commands in data form and task list instructions.
    It has not made its way to 11.1.2, maybe it will in a future release or patch.
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Task list Migration

    Data forms are no longer available in Task Lists when I migrate from Test Server to Prod Server or vice vrsa. Data form folders are same in both the server.
    When i click on the attached form task the messege appears The Folder is Empty.
    When I edit the task list it require folder path and form for reattachment.
    Is there any way to migrate Task lists without disturbing the forms attachment.

    You can either use LCM or TaskListDefUtil, more info - http://download.oracle.com/docs/cd/E17236_01/epm.1112/hp_admin/ch09s07s12.html
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Mail alerts for tasks list?

    Hello,
    how to configure hyperion (11.1.1.3) for users can receive email alerts for tasks list ?
    Regards,

    Set up the SMTP server - http://docs.oracle.com/cd/E17236_01/epm.1112/hp_admin/pref_sys.html
    Then set up the admin email address in the preferences and the users will need to set up their mail - http://docs.oracle.com/cd/E17236_01/epm.1112/hp_user/ch11s01s01.html
    Cheers
    John
    http://john-goodwin.blogspot.com/

  • Fields in the Task List -- Operation Overview

    Dear Expert,
    There are few fields in the operation Overview of the Task List -
    >> if we move ahead in each n evry operation -- fields like Material Grp, Cost element and Assembly....n lot more. plz tell me the appropriate use of the same.(If any)
    plz guide
    thanks
    DM

    hi deepak
    As you know task list is ued for easy uplaoding of operation and materials ,in tak list you can maintain internal and external operation ,hence for both the operation you will give the appropiate necessary fields.like for PM02 you will assingn the purchasing grp,cost element,material grp
    regards
    thyagarajan

  • Workflow task list is missing or damaged. SharePoint 2010

    SharePOint 2010 Enterprise
    Customer created workflows for the annual review of our QPC Emergency Plan.
    The document library  shows that there is a EP_Review workflow “In Progress” for each section.   However if you click into the “In Progress” link to see the actual progress of the workflow it shows no Visio diagram, it’s just a blank white
    space (not even an error message) and under the Tasks section it gives the message:
      "The workflow task list is missing or damaged.  Please contact your administrator for more information"
    I looked in the Task List and there are no tasks showing, which normally does show when we kick off a workflow. 
    I ran a report on the EP_Review workflow for Cancellations and Error messages and the system comes back with the following error message:  "Report contains no Data"
    Log says:
    3/05/2014 11:58:08.67  w3wp.exe (SLSPW02:0x8DC0)                0x8418 SharePoint Foundation          Monitoring                   
     nasq Medium Entering monitored scope (Request (POST:http://strspdept:80/sites/Compliance/EmergencyPlan/_layouts/CustomizeReport.aspx?ReportId=05c9fc6e-b5bd-44c6-9b22-48d33f3b719a&AssociationId=1585f93e-968f-4008-9d41-28e4d03b03b9&Category=Workflow&List=4cb06049%2Dbe01%2D4e76%2D9e78%2D3faa95c4f06c)) 
    03/05/2014 11:58:08.67  w3wp.exe (SLSPW02:0x8DC0)                0x8418 SharePoint Foundation          Logging Correlation Data     
     xmnv Medium Name=Request (POST:http://strspdept:80/sites/Compliance/EmergencyPlan/_layouts/CustomizeReport.aspx?ReportId=05c9fc6e-b5bd-44c6-9b22-48d33f3b719a&AssociationId=1585f93e-968f-4008-9d41-28e4d03b03b9&Category=Workflow&List=4cb06049%2Dbe01%2D4e76%2D9e78%2D3faa95c4f06c) eaeae4dc-25b7-479e-bc20-dd98b6fcd778
    03/05/2014 11:58:08.67  w3wp.exe (SLSPW02:0x8DC0)                0x8418 SharePoint Foundation          Logging Correlation Data     
     xmnv Medium Site=/sites/Compliance eaeae4dc-25b7-479e-bc20-dd98b6fcd778
    03/05/2014 11:58:08.70  w3wp.exe (SLSPW02:0x8DC0)                0x8418 Document Management Server     Document Management          
     52od Medium MetadataNavigationContext Page_InitComplete: No XsltListViewWebPart was found on this page[/_layouts/CustomizeReport.aspx?ReportId=05c9fc6e-b5bd-44c6-9b22-48d33f3b719a&AssociationId=1585f93e-968f-4008-9d41-28e4d03b03b9&Category=Workflow&List=4cb06049%2Dbe01%2D4e76%2D9e78%2D3faa95c4f06c]. 
    Hiding key filters and downgrading tree functionality to legacy ListViewWebPart(v3) level for this list. eaeae4dc-25b7-479e-bc20-dd98b6fcd778
    03/05/2014 11:58:08.75  w3wp.exe (SLSPW02:0x8DC0)                0x8418 SharePoint Foundation          Monitoring                   
     b4ly High Leaving Monitored Scope (EnsureListItemsData). Execution Time=32.1239873194787 eaeae4dc-25b7-479e-bc20-dd98b6fcd778
    03/05/2014 11:58:08.78  w3wp.exe (SLSPW02:0x8DC0)                0x8418 SharePoint Server              OpenXml                      
     0000 Medium OfficePackageLibrary::OpenPackage(app=3, path=C:\Users\TEMP\AppData\Local\Temp\tmpBAE2.tmp, fcm=3) eaeae4dc-25b7-479e-bc20-dd98b6fcd778
    03/05/2014 11:58:08.80  w3wp.exe (SLSPW02:0x8DC0)                0x8418 SharePoint Foundation          Monitoring                   
     b4ly High Leaving Monitored Scope (EnsureListItemsData#2). Execution Time=10.6167606926937 eaeae4dc-25b7-479e-bc20-dd98b6fcd778
    03/05/2014 11:58:08.80  w3wp.exe (SLSPW02:0x8DC0)                0x8418 SharePoint Foundation          Runtime                      
     tkau Unexpected Microsoft.Office.RecordsManagement.Reporting.ReportEmptyException: Report contains no data.    at Microsoft.Office.RecordsManagement.Reporting.ApplicationPages.CustomizeReport.OKBtn_Click(Object sender, EventArgs
    e)     at System.Web.UI.WebControls.Button.OnClick(EventArgs e)     at System.Web.UI.WebControls.Button.RaisePostBackEvent(String eventArgument)     at System.Web.UI.Page.RaisePostBackEvent(IPostBackEventHandler
    sourceControl, String eventArgument)     at System.Web.UI.Page.ProcessRequestMain(Boolean includeStagesBeforeAsyncPoint, Boolean includeStagesAfterAsyncPoint) eaeae4dc-25b7-479e-bc20-dd98b6fcd778
    03/05/2014 11:58:08.80  w3wp.exe (SLSPW02:0x8DC0)                0x8418 SharePoint Foundation          Monitoring                   
     b4ly Medium Leaving Monitored Scope (Request (POST:http://strspdept:80/sites/Compliance/EmergencyPlan/_layouts/CustomizeReport.aspx?ReportId=05c9fc6e-b5bd-44c6-9b22-48d33f3b719a&AssociationId=1585f93e-968f-4008-9d41-28e4d03b03b9&Category=Workflow&List=4cb06049%2Dbe01%2D4e76%2D9e78%2D3faa95c4f06c)).
    Execution Time=131.764628890724 eaeae4dc-25b7-479e-bc20-dd98b6fcd778
    03/05/2014 11:58:09.05  w3wp.exe (SLSPA02:0x1CD4)                0x1F68 SharePoint Foundation          Topology                     
     e5mb Medium WcfReceiveRequest: LocalAddress: 'http://slspa02.corp.questar.com:32843/5d041280466646db9f816a170ae8f6b8/MetadataWebService.svc' Channel: 'System.ServiceModel.Channels.ServiceChannel' Action: 'http://schemas.microsoft.com/sharepoint/taxonomy/soap/IDataAccessReadOnly/GetChanges'
    MessageId: 'urn:uuid:8f54c63f-a3d4-4180-b9be-2eefe9ff3495' 01f77dd7-96fb-4f20-b72a-cd736a3354bf
    03/05/2014 11:58:09.05  w3wp.exe (SLSPA02:0x1CD4)                0x1F68 SharePoint Foundation          Monitoring                   
     nasq Medium Entering monitored scope (ExecuteWcfServerOperation) 01f77dd7-96fb-4f20-b72a-cd736a3354bf
    03/05/2014 11:58:09.05  w3wp.exe (SLSPA02:0x1CD4)
    Any Ideas how I can figure out how to resolve this?
    Thanks for any input

    Hi mikeatquestar,
    it seems you may need to check if should the task able to create at your environement,
    you may try this at your development environment first:
    Saved a task list as a template from a working site collection and moved the template to the problem site collection. Used this template to create a new list, and associated this list to the Workflows task list.
    http://office.microsoft.com/en-us/windows-sharepoint-services-help/manage-list-templates-HA010099156.aspx#BMcreate
    http://office.microsoft.com/en-us/sharepoint-server-help/copy-or-move-a-list-by-using-a-list-template-HA101782479.aspx
    Regards,
    Aries
    Microsoft Online Community Support
    Please remember to click “Mark as Answer” on the post that helps you, and to click “Unmark as Answer” if a marked post does not actually answer your question. This can be beneficial to other community members reading the thread.

  • Create task from conversation thread in news feed - Task must be created in custom task list

    Hi All,<o:p></o:p>
    Have a new requirement
    were user should be able to create a task for himself from a conversational
    thread in News feed.<o:p></o:p>
    In
    SharePoint 2013 we have a functionality where we can follow up on a
    conversation and it creates a task in My Tasks which is in My site.<o:p></o:p>
    But my requirement
    is to create a task in Tasks list in same site collection on click of follow
    up.<o:p></o:p>
    I have
    tried one approach as below :<o:p></o:p>
    My Tasks in
    My site is an aggregated view of all tasks assigned to the logged in user. When
    i follow a task in News feed a personal task is created in My task
    (WmaAggregatorList_User internal name) list. When i Edit the personal task and
    change the Projects
    drop down to the required Project Name and Check -"Make this task public to project
    members" it just creates a task is specific Site and moves
    the task.<o:p></o:p>
    I tried to
    find if Projects and Check box are columns of Task list , but did not find any
    columns.<o:p></o:p>
    I am trying
    to create a event receiver which would make these columns be set to Site Name
    and check box checked so that when user creates a task it will directly move to
    Custom Task list.<o:p></o:p>
    Please
    guide <o:p></o:p>
    Thanks in
    Advance<o:p></o:p>
    Pallavi

    Thank you for your responce. I used a content query wp to rollup only the Major Milestones, but am unable to overlay the results to a calendar.. The link you provided is for overlaying different task lists onto a calendar, but does not detail how to
    overlay the results from the content query onto a calendar.

  • SmartView Task List not opening FR report

    I am trying to open FR report from a Task List task in SmartView (using Planning provider). If I am already logged into my Planning application in browser, the report opens. But if I am not logged (e.g., browser is closed), an empty page opens in browser, and at the bottom is status "Done" but with the error icon.
    Is there a way (URL format) that would enable user to open report from SmartView Task List without having to log to Web client first?
    Environment: EPM 11.1.2.3.500, FRS 11.1.2.3.503.0917, browser: IE 8, Excel: Office Professional Plus 2010
    Thanks,
    M. Sladic

    Celvin, Ramkumar, thanks for your suggestions. My colleague, Soumyajit, discovered that the original method (URL) needed to be replaced.
    Here is the original URL we used (this one was opening report twice on first open, and didn't open report from SmartView unless user was already logged to Workspace):
    ** https://i<server>/workspace/WorkspaceLaunch.jsp?uri=module%3Dwksp.relatedcontent%26repository_path%3D%2FReports%2FStatement%2520of%2520Financial%2520Statement%2520-%2520Expandable
    Instead the right call is:
    https://<server>/workspace/index.jsp?module=tools.relatedcontent&repository_path=%2FReports%2FFinancial%20Statement%20-%20Expandable
    Using this other URL, the report:
    - when open from the Tasks List, opens only once even the first time;
    - opens in Workspace without additional login when opened from the Task List in SmartView
    Note: We are using variant of OAM, maybe that has some impact to it. Not my area of expertise, though...
    HTH,
    Milos

Maybe you are looking for

  • Pricing condition- Header

    Hi, I have a problem with a pricing condition. It is a the moment both a header and item condition but my customer want it to be only a header condition. I can not get this to work as it is a condition that is an automatic freight condition with diff

  • Session data in a class

    Hi, i have project with jsp pages and java classes. I register some session attributes in a jsp like this if (login == null) login = new Login(); session.setAttribute("login",login); Now, for some functionallity, i need this info in a class. Is there

  • Https Class for Encryption Message...One question on this

    (1)I have written a java code that connects to an https server. Do I always need to have a client certificate in my code for the browser to recognize the Server Certificate? like the example I have written below?(the try-catch block..) Is it possible

  • Eveytime a warning pops up in indesign CS6 it shuts down completely

    when will there be an update to fix this????

  • Powerbook G4 Running SLOW after 10.4.4 upgrade

    I am new to Mac and just set up a new PBG4. I installed all of the updates as soon as I set-up OSX for the first time. Now, everything runs slow, especially Safari. Anyone else experiencing this? Any suggestions?