TimeSheet - Message from webpage __error Loading

Hi,
In Project Server 2013 we notice that for some users tasks (from some projects) cannot be added to the TimeSheet. After the user selects the specific task the browser displays the message:
Message from webpage
__Error Loading
The log files don't seem to mention anything and turning on the compatibility view mode for this web address doesn't solve this issue either.
Hope somebody can help us out.
Rgds, Frank 
Frank Jutte Winvision (http://www.winvision.nl) Project Manager / EPM Consultant

Hi Frank,
It can be due to many reasons. Which IE version are those users working with?
First check for those users' permissions
Check that the users' projects and/or assignments has not been delete in the project
Try to delete the timesheet (or recall if submitted)
Try to delete in Project Pro assignments and tasks and create them again
Hope this helps.
Guillaume Rouyre - MBA, MCP, MCTS

Similar Messages

  • "Message from Webpage (error) There was an error in the browser while setting properties into the page HTML, possibly due to invalid URLs or other values. Please try again or use different property values."

    I created a site column at the root of my site and I have publishing turned on.  I selected the Hyperlink with formatting and constraints for publishing.
    I went to my subsite and added the column.  The request was to have "Open in new tab" for their hyperlinks.  I was able to get the column to be added and yesterday we added items without a problem. 
    The problem arose when, today, a user told me that he could not edit the hyperlink.  He has modify / delete permissions on this list.
    He would edit the item, in a custom list, and click on the address "click to add a new hyperlink" and then he would get the error below after succesfully putting in the Selected URL (http://www.xxxxxx.com), Open
    Link in New Window checkbox, the Display Text, and Tooltip:
    "Message from Webpage  There was an error in the browser while setting properties into the page HTML, possibly due to invalid URLs or other values. Please try again or use different property values."
    We are on IE 9.0.8.1112 x86, Windows 7 SP1 Enterprise Edition x64
    The farm is running SharePoint 2010 SP2 Enterprise Edition August 2013 CU Mark 2, 14.0.7106.5002
    and I saw in another post, below with someone who had a similar problem and the IISreset fixed it, as did this problem.  I wonder if this is resolved in the latest updated CU of SharePoint, the April 2014 CU?
    Summary from this link below: Comment out, below, in AssetPickers.js
    //callbackThis.VerifyAnchorElement(HtmlElement, Config);
    perform IISReset
    This is referenced in the item below:
    http://social.technet.microsoft.com/Forums/en-US/d51a3899-e8ea-475e-89e9-770db550c06e/message-from-webpage-error-there-was-an-error-in-the-browser-while-setting?forum=sharepointgeneralprevious
    TThThis is possibly the same information that I saw, possibly from the above link as reference.
    http://seanshares.com/post/69022029652/having-problems-with-sharepoint-publishing-links-after
    Again, if I update my SharePoint 2010 farm to April 2014 CU is this going to resolve the issue I have?
    I don't mind changing the JS file, however I'd like to know / see if there is anything official regarding this instead of my having to change files.
    Thank you!
    Matt

    We had the same issue after applying the SP2 & August CU. we open the case with MSFT and get the same resolution as you mentioned.
    I blog about this issue and having the office reference.
    Later MSFT release the Hotfix for this on December 10, 2013 which i am 100% positive should be part of future CUs.
    So if you apply the April CU then you will be fine.
    Please remember to mark your question as answered &Vote helpful,if this solves/helps your problem. ****************************************************************************************** Thanks -WS MCITP(SharePoint 2010, 2013) Blog: http://wscheema.com/blog

  • Vba to dismiss an IE8 or IE9 "message from webpage" popup window

    In excel or word, paste the following code into a vba normal module and run it.   The code goes to a public web site and tries to lookup a school.  The website pops up a "message from webpage" dialog that warns me that the the school
    number is not valid.
    My program can detect that popup, but how can I reliably and automatically dismiss it?
    I have a workaround that uses sendkeys but about 10% of the time the popup remains.
    Does anybody have a solution that does NOT require sendkeys? The ideal solution would also work when objie.visible = false.
    option Explicit
    Private Declare Sub Sleep Lib "kernel32" (ByVal dwMilliseconds As Long)
    Sub t1022()
    Dim objie As Object
    Dim i As Long
    Dim htmlTable As htmlTable ' set reference to microsoft html object library
    Set objie = CreateObject("InternetExplorer.Application")
    objie.Visible = True
    objie.navigate "http://www.slforms.universalservice.org/Form471Expert/471StatusCheck.aspx"
    Do: Sleep 100: Loop While objie.busy
    Set htmlTable = objie.Document.getElementsByName("txtBenId")(0)
    htmlTable.Value = 12345
    With objie.Document.getElementById("txtFundingYear")
    .Click
    .Value = 2013
    End With
    objie.Document.getElementById("btnSearch").Click
    For i = 1 To 10
    Sleep 100
    If Not objie.busy Then Exit For
    Next i
    If objie.busy Then
    MsgBox "popup detected"
    End If
    End Sub

    Hi,
    If there is a will, there is definitely as way. The following definitely works!
    Copy and paste the following code in a module.
    Option Explicit
    Private Declare Sub Sleep Lib "kernel32" (ByVal dwMilliseconds As Long)
    'Sends the specified message to a window or windows. The SendMessage function calls the window procedure
    'for the specified window and does not return until the window procedure has processed the message.
    Public Declare Function SendMessage Lib "user32" Alias "SendMessageA" _
    (ByVal hWND As Long, ByVal wMsg As Long, ByVal wParam As Long, lParam As Any) As Long
    'Retrieves a handle to the top-level window whose class name and window name match the specified strings.
    'This function does not search child windows. This function does not perform a case-sensitive search.
    Public Declare Function FindWindow Lib "user32" Alias "FindWindowA" _
    (ByVal lpClassName As String, ByVal lpWindowName As String) As Long
    'Retrieves a handle to a window whose class name and window name match the specified strings.
    'The function searches child windows, beginning with the one following the specified child window.
    'This function does not perform a case-sensitive search.
    Public Declare Function FindWindowEx Lib "user32" Alias "FindWindowExA" _
    (ByVal hWnd1 As Long, ByVal hWnd2 As Long, ByVal lpsz1 As String, _
    ByVal lpsz2 As String) As Long
    Public Const BM_CLICK = &HF5&
    Sub t1022()
    Dim objie As Object
    Dim i As Long, hWND As Long, childHWND As Long
    Dim htmlTable As htmlTable ' set reference to microsoft html object library
    Set objie = CreateObject("InternetExplorer.Application")
    objie.Visible = True
    objie.navigate "http://www.slforms.universalservice.org/Form471Expert/471StatusCheck.aspx"
    Do: Sleep 100: Loop While objie.busy
    Set htmlTable = objie.Document.getElementsByName("txtBenId")(0)
    htmlTable.Value = 12345
    With objie.Document.getElementById("txtFundingYear")
    .Click
    .Value = 2013
    End With
    objie.Document.getElementById("btnSearch").Click
    For i = 1 To 10
    Sleep 100
    If Not objie.busy Then Exit For
    Next i
    If objie.busy Then
    'MsgBox "popup detected"
    DoEvents
    hWND = FindWindow(vbNullString, "Message from webpage")
    If hWND <> 0 Then childHWND = FindWindowEx(hWND, ByVal 0&, "Button", "OK")
    If childHWND <> 0 Then SendMessage childHWND, BM_CLICK, 0, 0
    End If

  • Need help with an automating a "Message from webpage" click.

    Any help would be appreciated. I guess I would consider myself as a beginner with VB.NET.
    Basically - My program launches an internet explorer window. Points to a specific webpage that has records. Finds the "check all" and clicks it, then finds and clicks "delete".
    I am stuck at this part. A "Message from webpage" pops up wanting to confirm the deletion of the records. I have 50 records per page and an excess of 14,000 records each day that need to be deleted. I do not have time to click OK on every single
    page.
    I have tried to sendkey function, which worked for a while but for some odd reason, it quit working. Someone suggested using API, which I know nothing about. Please help me! I am desperate!
    Here is my code. I know the "threading.thread.sleep" isn't good to use but I need someway to pause. Like i said, I am a beginner, so please be easy!
    Public Class Form1
    Dim oInputs As Object
    Dim oWShell As Object
    Private Sub btndel_Click(sender As Object, e As EventArgs) Handles btndel.Click
    With CreateObject("InternetExplorer.Application")
    .visible = True
    .navigate("WEDPAGE GOES HERE!")
    Threading.Thread.Sleep(3000)
    oInputs = .document.getElementsbytagname("a")
    For Each elm In oInputs
    If InStr(elm.innertext, "(Un)Check All") > 0 Then
    elm.click()
    Exit For
    End If
    Next
    For Each elm In oInputs
    If InStr(elm.innertext, "Delete") > 0 Then
    elm.click()
    Exit For
    End If
    Next
    Do While .busy Or .readystate <> 4
    Threading.Thread.Sleep(2000)
    Loop
    End With
    Dim objShell = CreateObject("WScript.Shell")
    Dim Success = objShell.AppActivate("Message from webpage")
    Do Until Success = True
    Threading.Thread.Sleep(1000)
    Success = objShell.AppActivate("Message from webpage")
    Loop
    Application.DoEvents()
    AppActivate("Message from webpage")
    SendKeys.Send("{ENTER}")
    End Sub

    Hi msnyder1112,
    Thank you for posting in MSDN forum.
    Since this issue is related to the VB.NET, so we will move this case to VB forum:
    https://social.msdn.microsoft.com/Forums/vstudio/en-US/home?forum=vbgeneral , you will get better support.
    Thanks for your understanding.
    Best Regards,
    We are trying to better understand customer views on social support experience, so your participation in this interview project would be greatly appreciated if you have time. Thanks for helping make community forums a great place.
    Click
    HERE to participate the survey.

  • Has anyone seen the following on their WP? Message from webpage WARNING: Time Warner Cable Customer – Your Internet Explorer browser and  computer may be compromised by security threats. Call 844-600-6224 now for IMMEDIATE assistance.  OK

    Has anyone seen the following on their WP?
    Message from webpage
    WARNING: Time Warner Cable Customer –
    Your Internet Explorer browser and
    computer may be compromised by
    security threats. Call 844-600-6224 now for
    IMMEDIATE assistance.
    OK

    This sounds like a virus or malware program that has made its way onto your computer.  I would ensure you have the latest virus definitions on your computer and run a thorough (complete) scan of your system.  If this doesn't work, I would suggest  you use Microsoft's Malware Removal Tool.  You can download it at the link below.   Hope this helps.
    http://www.microsoft.com/security/pc-security/malware-removal.aspx

  • Message from webpage no object then my computer freezes

    i have HP Media Center PCm7334n desck top computer windows xp when i get on internet  a message box apears . in it says message from webpages object error. then my comp. freezes. any suggestions

    Hi,
    Since how long have you been facing this issue?
    Were there any changes or updates made on your computer?
    What is the complete and exact error message?
    Try this method. 
    Use the Internet Explorer (No Add-ons) mode
    To do this, click Start, point to All Programs, point to Accessories, point to System Tools, and then click Internet Explorer (No Add-ons).
    If this resolves the issue, follow these steps to isolate the browser add-on that is causing the issue:
    1.    Click Tools, and then click Internet Options.
    2.    Click the Programs tab, and then click Manage add-ons.
    3.    Click an add-on in the Name list, and then click Disable.
    4.    Repeat step 3 until you identify the add-on that is causing the issue.
    Let me know if this resolves the issue. 
    THX

  • MAX - Message from Webpage

    Greetings Everyone,
         Sorry if this has been posted in the incorrect forum.
         When I am using MAX and select the Calibration Tab for the PXI-5114 or PXI-4065 a dialogue box "Message from Webpage" appears as displayed in the attached picture.  I've installed Labview and TestStand on two (2) other stations and haven't encountered this issue.  Other than re-installing the entire software package as the message states, is there a way to resolve this issue easily?  Thank you in advance for any comments that you may provide.
    Regards,
    Scott
    Attachments:
    MAX_MessageFromWebpage3.JPG ‏52 KB

    Hi Joshua,
         The funny thing is that starting MAX and then clicking through the tree and clicking on "4:NI PXI-4065 "PXI1Slot4", the Show Help in the upper right corner is un-ghosted.  Once you click on the "Calibration" Tab, then the message from webpage appears.
         Since you mentioned the Help in the far right, I clicked on that before clicking the Calibration Tab and I get the same message.  The funny part is the Help file appears.  I guess if the Helpasst.dll can't be found is not hurting the performance of the software then I guess I won't worry about it unless some else out there thinks otherwise.  Thank you for your comment.
    Regards,
    Scott

  • Message from webpage

    Keep getting an error after logging into a web site.
    "Message from webpage". " ! the following error occurred:error" There is an "OK" response box.
    The page freezes and none of the options function.
    This error occurs on a laptop running Windows 7 with Internet Explorer 11. [Version 11.0.9600.17501] [Update 11.0.15 (KB3008923)]
    This error does not occur on a laptop running Windows 8.
    Why?

    Hi,
    Did this issue for all websites or specific one?
    Please follow these methods to troubleshoot:
    1. Install the latest updates
    2. Run the Internet Explorer Performance troubleshooter
    3. Turn off hardware acceleration
    4. Turn off add-ons
    5. Reset Internet Explorer settings
    The detailed steps, refer to this guide(Internet Explorer crashes, freezes, or hangs):
    What to do when Internet Explorer isn't working
    http://windows.microsoft.com/en-in/internet-explorer/ie-crashes-stops-working#ie=ie-11
    Karen Hu
    TechNet Community Support

  • Rejected record message from Essbase Studio load (3355)

    I receive the following error when deploying an outline via Essbase Studio to an ASO cube (ver 11.1.2):
    \\Record #36798 - Member XXX does not exist. Reference member column types require the field to be an existing member (3355)
    As I read the error (BTW, can someone help me find the table of rejected record codes?), it is rejecting the assignment of an attribute to a member because the member does not exist.
    What could be a reason though that I did not receive an "Error adding member XXX" rejection beforehand or something indicating that there was an error adding the member originally? I am puzzled because I cannot find anything special about the source data when comparing to the many others that loaded successfullly.

    Hi All,
    Towards this error if we are talking about Hyperion Essbase - Version 11.1.2.1.000 and later.
    So mostly we are facing this issue has been verified as unpublished Bug 12967639.
    As documented in KM:
    Unable to Save ASO Outline After Renaming Members, "Error(1007072) Member [xxx] tagged as <REFER does not have a member to refer to" [ID 1465850.1]
    Also towards ASO there is another document having all there as:
    Oracle Hyperion Essbase and Aggregate Storage (ASO) [ID 1291202.1]
    Thanks,
    Shaker

  • Many sites have error message "message from webpage" {object error} which freezes system and cont/alt/del is only solution..HELP?

    Primarily happens when I am researching on the web, happens with IE and Google. Makes no difference if site is secure (s) or not. Running windows 7 home edition on a samsung laptop and have cleaned with Advanced SystemCare 6. Have also used Smart Defrag 2. Could it be my internet connection?

    '''Try the Firefox Safe Mode''' to see how it works there. The Safe Mode is a troubleshooting mode, which disables most add-ons.''
    ''(If you're not using it, switch to the Default theme.)''
    * You can open the Firefox 4.0+ Safe Mode by holding the '''Shift''' key when you use the Firefox desktop or Start menu shortcut.
    * Or use the Help menu item and click on the '''Restart with Add-ons Disabled...''' menu item while Firefox is running.
    ''Don't select anything right now, just use "'Start in Safe Mode"''
    ''To exit the Firefox Safe Mode, just close Firefox and wait a few seconds before using the Firefox shortcut (without the Shift key) to open it again.''
    '''''If it is good in the Firefox Safe Mode''''', your problem is probably caused by an extension, and you need to figure out which one.
    Please follow the [[Troubleshooting extensions and themes]] article for that.
    ''When you figure out what's causing your issues, please let us know. It might help other users who have the same problem.''

  • Startup dialog "Message from webpage" and "hello"??

    hello

    Hi, greenhillzone, and welcome to the Community, Please post back with more information and detail about your question! Thanks in advance,Elaine

  • TS2755 I am trying to find a message from 2012 and when I load previous messages it only goes back so far then the program quits and sends me to the home ( main) screen. How can I find the message and get around this?

    I am trying to access a message from early 2012. When I load previous messages It will only go back to oct 2012 and then the program stops and kicks my to the home page. Anyone know how I can get to the message? Thanks.

    Try Spotlight Search
    1. From any Home screen page of iPad, drag your finger down anywhere on the center of Home screen.
    2. Spotlight search will now appear and you can search for apps, texts, or any other content you'd like just as you did on previous versions of iOS.

  • Need some help in saving video message from viber to my Iphone. I disabled the thing that would save photos and videos automatically then, there comes a video I want to save. After loading and watching it, I press the "save to gallery"

    Need some help in saving video message from viber to my Iphone 5S with new ios 8's program . I disabled the thing that would save photos and videos automatically then, there comes a video I want to save. After loading and watching it, I press the "save to gallery" thing but it doesn't save in gallery. I tried all, restarting my phone, rebooting then turning on the save automatically thing and when I watch it again, it still wouldn't save.

    Probably a good question to ask Viber or look at their support site.

  • How can I read non-deleted text messages from months ago without having to continuously press "Load Earlier Messages"?

    I never deleted text messages from a specific person in case I ever wanted to go back and look at them. Now months have gone by and I don't feel like continuously pressing "Load Earlier Messages" for hours trying to get back and look at them. Is there anyway I can upload the whole conversation on to my computer and read the entire conversation from the beginning?

    Yes.
    I use iBackupBot.

  • Loading multiple messages from disk?

    Hey there!
    I'm writing a mail app (isn't everyone these days?) which saves Messages in a file called mbox. When I want to load the Messages from the mbox into the app, I'm calling 'new MimeMessage((Session)null, inputStream) which reads the message. However, there are multiple messages in that file, and a single constructor call reads ALL the messages.
    How do I make it read one message into one MimeMessage() successively?
    here's the code. there are around 10 messages in the file, but they are all read in during the first 'new MimeMessage()'.
    public static MimeMessage[] retrieveMessagesFromDisk()
         MimeMessage[] msgs = new MimeMessage[40];
         FileInputStream is = null;
         try {
              is = new FileInputStream("c:\\greatmail\\mbox");
         } catch (IOException e) {
              System.out.println("new FileInput IOException! "+e.getMessage());
         for(int count=0; count<40; count++) {
              try {
                   msgs[count] = new MimeMessage( (Session)null , is);
                   System.out.println("retrieveMessagesFromDisk: read message "+count+", "+msgs[count].getSize()+" bytes.");
              } catch (MessagingException e) {
                   System.out.println("Message "+count+" construct MessagingException! "+e.getMessage());
                   break;
         try {
              is.close();
         } catch (IOException e) {
              System.out.println("is.close() writeTo IOException! "+e.getMessage());
         return(msgs);

    nobody has any idea?

Maybe you are looking for

  • Playstation 3 to iMac

    hello! Is it possible to connect my playstation 3 to the iMac so that I could use it as a Monitor to play on? How, and what kind of additional cables will I need? thanks!

  • Tablespace and Datafiles... HELP

    Hi, I3m new to Oracle, I3m trying to install Oracle 8.1.5 under Tru64 UNIX, I3m having a hard time creating the Tablespace and Datafiles to the oracle User... I cannot find documentation about it, can somebody here tell me how to do it????, it3s urge

  • Can Oracle Application Diagnostics for Java used with Grid Control 10.2.0.3

    I have installed Grid Control 10.2.0.3 in Solaris 10. I was asked to install AD4J . Is it necessary to upgrade Grid Control to 10.2.0.4 for installing AD4J or can I use the present 10.2.0.3 version withour upgrading it ?

  • Working with BOTH channels of a stereo file INDIVIDUALLY?

    Most of the content I use are interleaved stereo files. The sample editor displays both the right and the left channel of stereo files but my question is: How can we actually work with either the left or the right channel. It's great that I can see b

  • Recording 2 MIDI keyboards

    How do I record 2 MIDI keyboards playing at once in Logic 8? For example, One keyboard a Piano instrument, and one an Organ Instrument. I have refered to "Multiplayer recording" in the manual. Having "Auto Demix..." checked allows me to record each k