Book mark

Hello,
I am trying to execute a bookmark I am getting an eroor Web application terminated ..
Error..
Diagnosis
The system had to terminate processing of the Web application.
The reason could be that the system was no longer able to find the Web application server session.
System response
Processing the navigation step is not possible.
Procedure
Call up the Web Application again.
Note: Use the start URL and not the URL that is currently displayed in the Web Browser.
Procedure for System Administration
Notification Number BRAIN 278 
Any clues for the errors.
Nimisha

Hi Nimisha,
  I am also getting the same error like yours:
  How did you fix this problem, PLEASE.
Thanks.
Error..
Diagnosis
The system had to terminate processing of the Web application.
The reason could be that the system was no longer able to find the Web application server session.
System response
Processing the navigation step is not possible.
Procedure
Call up the Web Application again.
Note: Use the start URL and not the URL that is currently displayed in the Web Browser.
Procedure for System Administration
Notification Number BRAIN 278

Similar Messages

  • Book mark icon in Adhoc query?

    Hi,
    There is an Adhoc query created by the end user.The book mark icon available is not working but the CONTEXT MENU on any of the values is producing the book mark properly.Can just any one help me to find the solution of this?
    Why BOOK MARK ICON is on

    Vasu,
    then there seems to be some issue with your ad-hoc template - was it modified in any way ? that could be causing this issue. If the temnplate was not modified then reactivate the same from business content and check.
    The ad-hoc template depends on your BI version. Which version of BI are you on ?
    Arun

  • I have safari in my iPad but bookmark is not working. I can not book mark any things.  How do I get back my bookmark working so that I can open the web page I have already booked marked.  Thank you for your answer

    I have iPad 2.
    The safari bookmark was working yesterday.  Today book mark is not working.  I can not book mark anything. 
    Did I do anything to prevent stopping bookmark to store?  Please help me how to get back working my bookmark.  Thank you.

    See if this works.
    Quit the Safari app completely and reboot the iPad. Go to the home screen first by tapping the home button. Double tap the home button and the recents tray will appear with all of your recent apps displayed at the bottom. Tap and hold down on any app icon until it begins to wiggle. Tap the minus sign in the upper left corner of the app that you want to close. Tap the home button or anywhere above the task bar.
    Reboot the iPad by holding down on the sleep and home buttons at the same time for about 10-15 seconds until the Apple Logo appears - ignore the red slider if it appears on the screen - let go of the buttons. Let the iPad start up.

  • I can no longer organize my drop down book mark list ,from the toolbar in alphabetical order like I used to Why ?

    Used to, I could organize my drop down book mark list from the tool bar, in alphabetical order from A-Z by clicking on view, sort by, select . Now every time I add a new bookmark it goes to the bottom of my bookmark list in Unsorted bookmarks . I can go to the bookmarks and sort the menu in Alpha. order. However, when I go back and drop down the bookmark list from the tool bar, the new bookmarks are still in the Unsorted list at the bottom. The bookmark's menu may or not have them in assorted list. This occurred several updates back. Why can I no longer sort the drop down book marks list in A-Z alph. order? This is a major obstacle when trying to search for a particular bookmark that I have made in the not too distant past.

    That did solve my problem. Madperson Thank You Very Much!!!!! I'm not real literate on the mechanics of working computers even though I use them all the time. Basically I'm a point & click kinda guy and beyond that I'm pure novice! This is going to save me a lot of wasted time.
    Allen C. Geiser
    ageiser34

  • How do i move book marks from Winxp to Windows 7 Firefox V5.0 ?

    I'm trying to move my bookmarks from my old Windows XP system with Firefox 5.0 to my new Windows 7 system with Firefox 5.0. How do I move my book marks ? I have quite a few of them.
    Thanks,
    Joe

    You need to export the Camino bookmarks to an HTML file, and then import that file into Firefox.
    # In Camino, on the '''File '''menu select '''Export Bookmarks'''
    # In the '''Format''' dropdown menu select '''HTML''' then click on the '''Export''' button
    # Import the HTML file into Firefox using the procedure in the [[importing Bookmarks from an HTML File]] article

  • Is there any way to determine if a link is a book mark or hyperlink in java script

    Is there any way to determine if a link is a book mark or hyperlink in java script
    Sub Problem:
    I am making an array of quads of all the hyperlinks in a document. I would like to automatically skip over all the bookmarks in the starting pages of a document and just get the links of the hyperlinks.
    Now I have to manually set the pages that contain bookmarks so they are not included in the array.
    Is there any way to determine if a link is a book mark or hyperlink in java script?
    It would help automate the conversion I need below
    John
    Main Problem:
    I have been working on converting a set of pdf files with 1000’s of hyperlinks like www.site.com\folder1\file1.pdf#page=10
    To jump to a local copy of the files with a relative type link
    ../folder1/file1.pdf and then go to the proper page.
    I have found that it can be done manually by changing the hyperlink to a javascript
    var otherDoc = app.openDoc('../folder1/file1.pdf', this);otherDoc.pageNum = 10 - 1;
    and setting each destination file with a disclose()=true;
    Based on the help so far that java script cannot access the hyperlink value in a link
    See: http://forums.adobe.com/thread/1039908?tstart=60
    I have resorted to the following plan using acrobat javascript, an external keyboard macro recorder and excel in combination to get around the problem
    Four folder level acrobat javascripts with “buttons”
    One to get all the link quads in an array, in the pdf and report the total number
    The second creates a form field in the far corner of the first page and moves there.
    The third jumps to each link found by creating a form field just to the left of the link and zooms in so it can be selected by a “mouse click” from the keyboard macro recorder 
    The forth deletes the form field
    The keyboard macro recorder runs javascript 2 and then 3 then clicks on the link just to the right of the middle of the screen and uses keys to get to the advanced editing to get to edit the hyperlink .
    The hyperlink is then copied to excel where it is converted using string functions to the needed javascript text to be copied back.
    To the acrobat file into a java script (after deleting the hyperlink)
    Rinse/lather/repeat
    I have been able to convert about 150 links an hour.
    Better then hand typing, but not like having java access to the links.
    I am looking to improve the solution

    thanks for your help.
    I may have been confusing a "acrobat bookmark" and a bookmark in a word file that is converted to a pdf and ends up being a
    link of the type:
    "Go to a page in this document"
    which I do not want in my array vs
    a link of the action type:
    "Open a web link"
    Which I do want
    John
    My code, note how I have to skip pages with "Go to a page in this document" links depending on the document, I would like to use the same code for each document and skip over the "Go to a page in this document" links :
    global.ilinkindex = 1; 
    global.aLinkquads = [ [0, 1, 1, 0, 0],
           [0, 0, 0, 0, 0] ];
    function GetLinkArray()
    global.ilinkindex = 1;
    var iTotalLinks=0;
    // for ( var p = 0; p < this.numPages - 8 ; p++)                   // end before bookmarks for each page of the file x.pdf
    //  for ( var p = 0; p < this.numPages; p++)                     // for each page of the file
    for ( var p = 23; p < this.numPages; p++)                     // start after bookmarks for each page of the file y.pdf
      var cropbox = this.getPageBox("Crop", p);
      var alinksonpage = this.getLinks(p, cropbox);            // get array of links on page
      for ( var ll = 0; ll < alinksonpage.length; ll++)
       var linkquads = alinksonpage[ll].rect;     // get link Quads
       linkquads[4] = p;          // add page number to link Quads array
        global.aLinkquads[global.ilinkindex] = linkquads; // add quads to global link Quads array
        global.ilinkindex++;
    iTotalLinks = global.aLinkquads.length - 1;
    global.ilinkindex = 1;
    app.alert("Number of Links in Document is " + iTotalLinks );

  • I was asked to up grade my Firefox, when I did this the system crashed and I have lost use of my book marks and fire fox, I have not been able to fix it.

    Two days ago I logged on to Firefox. I recieved a message that told me that I was using an out dated version. I had to up grade . I followed the instruction and when finished fire fox crashed. I am unable to delete firefox, reload it, or use it. I am forced to use Internet Explorer to use my computer. I have lost my book marked sites, and I am at a loss as how to retrieve what I have lost. I have tried to follow the instructions to fix the problem but I have not been able to fix the problem. I sent the crash information but recieved no responce.

    cathorio wrote:
    I recently changed my lap top. My problem is the new lap top won't accept my apple I D it asked me to sing up for a new one which I did.
    I am puzzled by this. The laptop doesn't need the Apple ID - but iTunes does. I could be missing something but ....
    Why would you not be able to use your existing Apple ID and iTunes account on a new laptop? If you authorized the computer - you should be able to use your existing account - unless you already had 5 computers authorized with the existing ID - and that was why iTunes would not accept the ID. However, I'm sure that you would have received a popup message from iTunes telling you that you had reached the limit.
    I just received a new MBP and my daughter did as well. My entire family shares an Apple ID and we had no issues at all with my Apple ID and iTunes on our new computers and I did not have to sign up for a new account. Did you even try the old ID?

  • I had a folder that was a part of firefox in the book marks are called Recently Bookmarked. It has now disappeared and i would like to know how to get it back?

    This folder was not one I created, but it appeared to be a part of the bookmark area. It save all recently saved book marks and was called "Recently Bookmarked". I used this feature last night and this morning when I went to use fire fox, it is gone.
    I tried restarting Firefox and it still has not fixed the problem. My question is, How do I get this feature back or how do I create a folder where everything I book mark goes into the folder until I can sort the book marks into the proper folders? thank you for your help

    See:
    *https://support.mozilla.org/kb/Restore+the+default+Smart+Bookmarks+Folders
    * "Recently Bookmarked" is a so called [[Smart Bookmarks folders|Smart Bookmark]] that shows the result of a place query in a list.
    * "Most Visited" and "Recently Bookmarked" and "Recent Tags" are examples of so called [[Smart Bookmarks folders|Smart Bookmarks folders]] and are not real existing folders.
    * Smart folders show a list created by a query of the places.sqlite database that stores bookmarks and history in Firefox.
    * Smart folder lists show a maximum of 10 entries by default.
    * Bookmarks and history items that show up in a smart folder list are stored elsewhere in another folder and any changes made are applied to the real bookmark or history item.

  • Since updating to FF 8 I can no longer use Multirow book marks, can anyone help with this issue?

    Since updating to FF 8 I can no longer use Multi-row book marks, can anyone help with this issue? the one I used is here http://multirowbookmarkstoolbar.com/

    Try the support site:
    *http://multirowbookmarkstoolbar.com/forum
    *Multirow Bookmarks Toolbar Plus: https://addons.mozilla.org/firefox/addon/multirow-bookmarks-toolbarplus/

  • I accidently unmarked the book marks tool bar, the tool bar and the menu bar how do i get them back ?becaus now only the tabs are visible and i cant access my features or book marks

    i was getting to know my firefox so i accidentally unmarked the menu bar the book marks tool bar and the tool bar. so now only my tabs are visible and i cant get to any of my add-ons or extensions.
    and even surfing the net has become difficult cause there is almost nothing i can do with a new empty tab.
    how can i get these bars back. i tried taking the cursor up to the thin line above the tabs and the window border but the menu to mark the above mentioned features does not appear any more.
    i tried restarting firefox several times but it didn't work. i even uninstalled and completely downloaded a new version of firefox and installed it but the problem still persists.
    i am operations system is windows XP.

    Firefox 3.6+ versions have a feature to allow the user to hide the Menu bar.
    Hit the '''Alt''' key to temporarily show the Menu bar, then open View > Toolbars and select Menu bar, so it has a check-mark. <br />
    The F10 can also be used on most PC's to temporarily reveal the Menu bar.
    https://support.mozilla.com/en-US/kb/Menu+bar+is+missing

  • Had a new hard drive installed and want to move book marks to new drive

    I had a new hard drive installed and want to move my book marks from the old HD to the new HD
    Not sure how to access the FireFox book marks on the old HD and how to install them in the FireFox on the new drive

    See [[recovering important data from an old profile]] in particular the section "Copying files between profile folders" and the one below it that describes the files in the profile folder.
    The article shows how to find your current profile folder, you will need to find the equivalent folder on the old drive, the path to the current profile folder should show you where to look on the old HD for the old profile folder. The actual folder name for the profile folder will be different, but the path to it should be the same.

  • I want to be format my hard disk, but want to take a backup copy of information from the Firefox and passwords and book marks so retrieved after formatThank you

    I want to be format my hard disk, but want to take a backup copy of information from the Firefox and passwords and book marks so retrieved after format
    Thank you

    For backing up bookmarks, see [[Backing up and restoring bookmarks]]
    If you want to back up passwords, you need to use an extension such as Password Exporter. This is located at https://addons.mozilla.org/en-US/firefox/addon/2848/ .

  • Font Book-marker in Photoshop, Illustrator and Indesign

    I guess we need a book-marker for fonts built-in all adobe softwares, some thing similar to the book markers in chrome or mozilla. Coz every artist working comfortably on adobe tools would not wish to go through all the tons n tons of fonts installed in the local drive. I think it makes things much easier in creating your own list of fonts. Just hovering on the bookmark button/tab and choose the font among your list of font and you are done.   Is there a plugin tool available ?

    This is an open forum with "some" Adobe staff participation, requests at this link
    https://www.adobe.com/cfusion/mmform/index.cfm?name=wishform for feature requests

  • Book Mark Icon is not working?

    Hi,
    There is an Adhoc query created by the end user.The book mark icon available is not working but the CONTEXT MENU on any of the values is producing the book mark properly.Can just any one help me to find the solution of this?
    Why BOOK MARK ICON is not working?
    Please correct me if I am wrong.
    Book mark is URL we are getting after the clcking on the EIther on the ICON or context menu option.This URL can be used any where where ever is required.Right?
    But In my case the URL Content is chainging based on the Adhoc query designer.Only characterstics are again and again changing but key figures are original only.
    please help me?

    U mean to say the Book Mark URL created on one system will not work on another system right?
    =>the Book Mark URL created on one system may not work on another system right? in fact in 80% cases it works...
    But what once I execute the query in portal I will be getting an URL.This also can be used as Book mark right?
    =>yes, it can be used,,,
    but the URL generated with the function of the BOOK MARK is only called as Book mark why is it?
    => let me explain this with an example ... there is a BW server physically located in France and can be accessible across all the location wherever project is running. Somebody try to access the Query URL from Gurgaon (one of the project location)which was executed in France may not be run in Gurgaon (Page cant be displayed) because port # in the URL may be blocked in Gurgaon due to security reason,,, this case we have to contact the admin ,they will enable the port..same case i have faced

  • Book mark Icon is not working in Adhco queries?

    Hi,
    There is an Adhoc query created by the end user.The book mark icon available is not working but the CONTEXT MENU on any of the values is producing the book mark properly.Can just any one help me to find the solution of this?
    Why BOOK MARK ICON is not working?

    Hi,
    I observed the same, Book Mark Button availabe on web report is not working but Book mark URL can be saved with the context menu -> bookmark.
    need to check the Web template for  Book Mark.
    Bookmark URL can be saved and that URL is used to go fastly to the requied navigation fastly, that is the use of Bookmark
    hope this helps
    Regards
    Daya Sagar

  • Book marking feature in adobe presenter

    Is there a book marking feature in adobe presenter?

    The presentation is huge.  I can't send.  However, even on a single slide presentation when I add an interaction it does not work.
    Delete - for exampe if I try to use a process tab interaction, it starts with 4 tabs, but I only want 3 tabs.  How can I delete a tab.
    The label on the tab is too small - I need to put 3 words on it, can't I shrink text size or use more of tab.
    When I enter a graphic using the icon, it is not moveable and is not size right.
    I don't see how I can add text, etc to the interactions.  It seems to freeze, the instructions for how to edit interactions is very poor, so though very technical, I don't understand how to edit/add my own content to an interaction.  Aren't there more robust instructions with maybe a video demonstration on how to use, edit/customize interactions?
    Is there an option for allowing Flash that I should be setting on my computer?  That seems to be a potential problem, like enabling java?
    Thanks in advance for your help
    Susan
    Ride on......

Maybe you are looking for

  • How do I change an AppleID to be able to update previously downloaded apps once a new AppleID has been set up?

    I bought an iPad just before the change to iOS5.  The personnel at the Apple Store used their computer to get an AppleID set up so I could access the App Store.  I recently got an iPhone which operates on iOS5, which updates by direct download.  In t

  • Price change summary report & approach of price change on Sales Orders

    Hi, I have made the setups for updating the price on Sales Order via profile options (i update the list price field on SO line the SO line price gets updated). The Customer have manual price overide in their existing system in place so they want same

  • I cannot download my new Elements 10 program

    When I downloaded the first disk I could not get the disk drawer open so had to stop running the install program to get the first disk out and the 2nd one in.  I will not let me finish the installation process or start over???

  • AIR 2.6 SDK : APKPackager.setDebugHost Error

    I've had no problem at all launching my Android AIR app on my Samsung Vibrant phone. However, I just downloaded installed the new AIR 2.6 SDK, updated my application descriptor to 2.6 and can test without issue on the desktop; however, attempting to

  • Delays in mail delivery

    I've recently noticed big delays in the time that messages show up in my Mail app, sometimes hours after they were sent to me. Today I noticed that there were at least ten messages visible to me on the mac.com web site, but I couldn't get those messa