No destination on FedEx page?

On my FedEx tracking page, under destination there is nothing. It is estimated for Tuesday, and is still in Memphis. Does anyone have their destination up?

Mine is up and is supposed to be delivered tomorrow...fingers crossed!

Similar Messages

  • Using a script to call named destinations causes blank pages

    My first post in the Adobe forums. I realize that this may not be exactly the right location for this question, but this forum seemed to be the closest to what I need.
    We are trying to use the following script to call named destinations in an Acrobat X PDF file. Note that this script is just a sample for testing. The actual function would be embedded in the product GUI.
    <style>
    BODY
        COLOR: #003774;
        FONT-SIZE: 80%;
        FONT-FAMILY: arial, verdana, trebuchet MS, Tahoma, sans-serif;
    background: #ffffff;
    </style>
    <script>
    function users()
    document.open("/product/Documentation/SystemAdmin.pdf#NamedDestUsers", "PageHelp", "copyhistory=0,directories=0,location=0,menubar=0,resizable=1,scrollbars=1,status=0,toolb ar=0");
    function trunks()
    document.open("/product/Documentation/SystemAdmin.pdf#NamedDestTrunks", "PageHelp", "copyhistory=0,directories=0,location=0,menubar=0,resizable=1,scrollbars=1,status=0,toolb ar=0");
    </script>
    <p>
    <a href=# onclick="users()"> Click to show user config pdf </a>
    <p>
    <a href=# onclick="trunks()"> Click to show trunk config pdf </a>
    When we click the link to call the first destination, Users, for example, the file opens fine at the appropriate location. However, when we click a subsequent link, it tries to open in the same window and just freezes. All we see is a blank page. We realize that we could force it to open in new window each time, but since this is a fairly large file, we'd rather not do that. All these destinations are in the same file and we just want it to display a different destination in that file.
    If you have any suggestions for either changes to the PDF or changes to the script, I would very much appreciate hearing about them. By the way, we're using the TimeSaver untility to standardize the named destinations.

    This is not how you open a PDF at a specific named destination. You need to read this file:
    http://www.adobe.com/devnet/acrobat/pdfs/pdf_open_parameters.pdf

  • Firefox 18.0.1 will not render FedEx tracking page

    When I try to track a FedEx shipment using Firefox 18.0.1, when I click on "Track", the window starts to load page, but then stops, never loading any text or images, just the gray background. Works fine in IE 9.0. This problem only started in last week.
    Another problem that happened at about the same time: any pdf files were rendered as a completely black page. This resolved after restarting.

    PROBLEM SOLVED: The cause of the problem with the FedEx tracking page was not a Plugin -- it was an Extension. Specifically it was Adblock (2.2.1) that was evidently blocking too much. I disabled sets of Plugins until all were disabled and continued to have the problem. So, I started disabling Extensions until the problem was isolated to the Adblock Extension. I've left Adblock enabled but disabled on the specific FedEx page that was having the problem.
    This actually resolved another problem that I was having with a different site. In the future, I will start with suspecting Plugins and Extensions before I blame Firefox for site display and/or behavior issues.
    Thanks for leading me to the Safe Mode technique as a first step in researching these types of problems.

  • Named destinations within a file on a network

    Is it possible for a PDF document to reference a specific destination page within another PDF file stored on a network? I'm familiar with the mechanism to do this in an html reference to a server file (#page=7 or #nameddest=), but it doesn't seem to function within a network.
    Thanks in advance,
    Cliff Ober

    Cliff,
    I would say no. Adobe's "Parameters for Opening PDF Files" says "You can open a PDF document with a command or URL that specifies exactly what to display (a named destination or specific page)..."
    The key here is it is via command or a URL. PDF-to-PDF links in a network setting don't fit into either picture.
    --GMc

  • Getting Named Destinations

    I am trying to display named destination in my code using this code,
    PDNameTree pdNT = PDDocGetNameTree( pdDoc, ASAtomFromString( "Dests" ) );
    I am able to take name tree object from pdf document.
    But, I want to display each named destination.
    Please help me to take each named destination.
    Thank You,

    Thanks for your response.
    I am able to get named destination for Links and Bookmarks using PdViewDest.
    But my requirement is, I will create named destinations for all the pages manually.
    When I open particular file, I want to get each named destination name and page number for that document, not for bookmarks or links.
    I am taking CosDoc for that active document.
    CosDoc cosDoc = PDDocGetCosDoc(pdDoc);
    CosObj cosObj = CosDocGetRoot (cosDoc);
    CosObj cosdest = CosDictGet(cosObj, ASAtomFromString("Names"));
    After this how you want me to proceed. Please help me to solve this issue.
    Thank you,

  • Need Help with CommandLink Passing rowKeyStr to 2nd JSPX Page

    I've been working about 8 hours on something that should be simple - I have a databable displaying rows of data with a simple command link on one of the columns that will send the user to a 2nd page with a single record form showing detailed information for the selected row.
    The problems I'm having:
    * When I press the commandlink I do not get the correct record on the 2nd page
    * Also I'm receiving the following error: JBO-25020: View row of key oracle.jbo.Key[11 ] not found in SearchViewIterator
    When I use the af:tableselectone (selection) button to select the row first and then click the commandlink, the 2nd page DOES display the correct row, however I still receive the 25020 error above.
    Note I am using the same View Object and Iterator for both pages.
    I have compared my code against the SRDemo application and cannot see any differences - I was hoping someone could review my steps to see if I'm missing something (using JSF and ADF BC 10.1.3):
    Page 1 JSPX Code Snippet (commandLink / ActionListener):
    <af:commandLink actionListener="#{bindings.setCurrentRowWithKey.execute}"
    action="viewisp"
    text="setCurrentRowWithKey"
    disabled="#{!bindings.setCurrentRowWithKey.enabled}">
    <af:setActionListener from="#{row.rowKeyStr}"
    to="#{processScope.rowKeyStr}"/>
    </af:commandLink>
    Page 1 JSPX Page Definition File Snippet:
    <action id="setCurrentRowWithKey" IterBinding="SearchViewIterator"
    InstanceName="SearchDataControl.SearchView"
    DataControl="SearchDataControl" RequiresUpdateModel="false"
    Action="96">
    <NamedData NDName="rowKey" NDValue="#{row.rowKeyStr}"
    NDType="java.lang.String"/>
    </action>
    JSPX Page 2 (destination - single form) - Page Definition Snippet:
    <executables>
    <iterator id="SearchViewIterator" RangeSize="10" Binds="SearchView"
    DataControl="SearchDataControl"/>
    <invokeAction id="setCurrentRowWithKeyStr" Binds="setCurrentRowWithKey"
    RefreshCondition="#{adfFacesContext.postback==false}"/>
    </executables>
    <action id="setCurrentRowWithKey" IterBinding="SearchViewIterator"
    InstanceName="SearchDataControl.SearchView"
    DataControl="SearchDataControl" RequiresUpdateModel="false"
    Action="96">
    <NamedData NDName="rowKey" NDValue="#{processScope.rowKeyStr}"
    NDType="java.lang.String"/>
    </action>
    Finally - I did see some other posts related to the JBO-25020 error. The recommended Solution was to add the following code to the underlying ViewObjectImpl class:
    protected void create()
    {    setManageRowsByKey(true);
    super.create(); }
    This had no affect.
    thanks for any help.....
    ps what exactly is stored in the row.rowKeyStr? is it based on data columns in the row?

    Finally got this to work - thought I would post the solution that worked for me here in case anyone else runs into this:
    Note: Page#1 = Search Form - ADF parameter form and ADF read-only table (uses CommandLink to pass record to page#2)
    Page#2 = ADF read-only form - uses same VO and same iterator as page 1
    1. As Frank in his reply above, I don't need to use an ActionListener, but only use the commandlink for navigation. I did need also to set the current row when the user clicks the command link as described in the JDev help (Adding Tables | Setting the Current Object Using a Command Component) - this was a step I was missing before.
    2. NOW, here is where it gets Interesting - to avoid the issues of:
    a. page#2 not displaying the correct record selected, or, inconsistently displaying the correct record; and/or,
    b. receiving a "JBO-25020: View row of key oracle.jbo.Key[num] not found in xxIterator"
    I had to EITHER:
    A. Set the SyncMode for the DataControl in databindings.cpx = Batch (as described in      http://www.oracle.com/technology/products/jdev/tips/muench/batchmode/index.html)
    OR,
    B. Keep the SyncMode for the DataControl as Immediate, BUT override the following method in ViewObjImpl as described in some previous forum threads related to JBO-25020 error:
    protected void create()
    {     setManageRowsByKey(true);
    super.create(); }
    This is what I found (after much trial & error) worked for me - I'm curious to see if others have come to the same conclusions.
    thanks
    Tom

  • Unwanted blank pages appearing in copy function

    The new iWork 08 book says if you want to add pages to an already existing document then click on the thumbnail of the one you want to add and copy, and then click on the thumbnail of main one you want to add TO and paste. This ALWAYS brings up a blank page in between them that can not be deleted?????????? Pretty useless. Any ideas?

    I assume that both of your documents are in fine shape before you try to combine them. No extraneous break commands, blank sheets, etc., both documents fitting well within their margin boundaries.
    I'm having success, but I'm not doing exactly what you say you are. I copy a page from the thumbnail in the Source Document's Pages Pane. I then Paste into the blank lower portion of the Destination Document's Pages Pane, not directly onto a Thumbnail there.
    When I do this, a Section Break is added at the end of the Destination Document's original content, so the added content starts on a new page. Deleting the Section Break moves the new content up adjacent to the original Destination Document's content.
    You might give this method a try and see if it works for you.
    Jerry

  • Linking to destination in PDF not working in published project

    I have a Captivate 8 project where buttons open an external pdf to specific destinations or pages within a PDF document. I append "#" followed by the destination name or page number to the URL and that works perfectly when I'm testing the project within Captivate. However, when I publish the project and run it in a browser (IE 11 and Chrome) or the standalone Flash player, The pdf file opens on the default first page and the destination info appended to the URL is no longer there. To summarize, the destination linking works perfectly in preview mode, but it gets stripped out when the project is published. Is anyone familiar with this issue and/or how to fix it?

    Did you try previewing all the pages in browsers?
    Click on File>Preview in Browser>Preview all pages in your_browser_name.exe.

  • Drag and drop to replace pages

    In version 8 I could drag a page thumbnail from one document to another to
    replace a page (you positioned the dragged thumbnail over the page
    thumbnail's number to replace it). But in version 9, the page is no longer
    replaced by the dragged thumbnail, it can only be dropped before or after a
    page, then I have to tell it to delete the old page. Is there a way to get
    this feature back?

    But I was able to do it in version 8. You have to hold the page thumbnail
    from the source document over the other destination document's page
    thumbnail number, so that the number is highlighted. Then when you drop the
    thumbnail it replaces the page with what you dropped.

  • How to call OA page from Workflow.

    Hi All,
    I have one requirement.
    I have to call a OA page from worklfow..
    There will be alink in the notification and that link should call OA page
    Does I can do in the same way we give destination URI of page property..in button.
    Let me know if anyone has done same.

    You can call an OA page from WF, but then you won't be able to come back to the WF page as WF maintains a list of variable for its operation which would be difficult to track and keep updated.
    When it comes to Workflow, its always adviseable to work through the embedded OA region in the Workflow page. But again according to Workflow standards, you cann't have such an embedded region which has links or buttons capable of <b>Form Submit </b>.
    null

  • Maintaining Inherent Zoom with Destinations

    In Acrobat Pro 9 Extended, I have a document with pages linked in an index on the first page.  I select Inherent Zoom for the links for numbered pages so that they will be displayed the same size the user has chosen on the first page.  This works well if the link goes to a numbered page.
    However, if I create a named Destination within a page, Inherent Zoom does not appear to be available.  The page with the Destination is displayed the size in which it was originally created. How does one apply the Interent Zoom feature to pages with Destinations?

    Unfortunately, Acrobat doesn't allow you to create such named destinations. A plugin such as Autobookmark does, however: http://www.evermap.com/autobookmark.asp#Feature%20Summary%20/%20Destinations

  • Animation while page loading

    I just created an animation using fireworks that according to
    the tutorial can be used as animation while the page is loading.
    What format does this file need to be in and where should i upload
    it on the server ...(anyone have a tutorial)...the one i used went
    step by step how to make it but didn't talk about getting it to
    work on the site....thanks

    "whatisgood" <[email protected]> wrote in
    message
    news:go3jlv$29$[email protected]..
    >I just created an animation using fireworks that
    according to the tutorial
    >can
    > be used as animation while the page is loading. What
    format does this
    > file
    > need to be in and where should i upload it on the server
    ...(anyone have a
    > tutorial)...the one i used went step by step how to make
    it but didn't
    > talk
    > about getting it to work on the site....thanks
    >
    Im not that savvy with animation in FW, but Im assuming that
    it would be an
    animated gif format.
    Where you put the image, the actual folder or path isnt so
    much the
    important thing, as making sure you have correctly linked to
    the image
    destination on the page.
    When you upload to the server, make sure that you maintain
    the file
    structure of your local files. If you are using dreamweaver
    for ftp and you
    have correctly defined your site in dreamweaver, then
    uploading the image
    from you local site files should maintain that structure.
    Hope this is of some help
    Regards
    Fiona

  • Auto assigning destinations

    Hello all,
         This is my dilemma; I have a PDF file that is fairly large (over 150 pages) and I need them to have a destination on each page where the name of those destinations are the page number itself. Now I could go through each page and set the destination myself but I have 7 PDF files to do this for that are varying lengths. Is there a plug-in or built-in function that would auto assign a destination per page that was the number of that page? I haven't been able to find anything anywhere as of yet.  Just trying to see if I could save myself some trouble and time by not hand doing this. Thanks in advance for any help/assistance anyone can give.

    Harucho,
    Bernd's "file.pdf#page=3" is alluding to PDF Open Parameters.
    These have been around for a while.
    See Adobe Developer Knowledgebase document 52852 to view the versions listing.
    http://support.adobe.com/devsup/devsup.nsf/docs/52852.htm
    Acrobat 9 - Parameters for Opening PDF Files
    http://www.adobe.com/devnet/acrobat/pdfs/pdf_open_parameters.pdf
    Acrobat 8.1 - Parameters for Opening PDF Files
    http://www.adobe.com/devnet/acrobat/pdfs/pdf_open_parameters.pdf
    Acrobat 7.05 - PDF Open Parameters
    http://www.adobe.com/devnet/acrobat/pdfs/PDFOpenParameters.pdf
    Acrobat 7.0 - PDF Open Parameters
    http://partners.adobe.com/public/developer/en/acrobat/PDFOpenParameters.pdf
    ~ Related Info - UNC/URL/on local machine Info- Good to Know ~
    Permanent Link: http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=317300
    http://kb2.adobe.com/cps/317/317300.html
    Permanent Link: http://www.adobe.com/cfusion/knowledgebase/index.cfm?id=326332
    http://kb2.adobe.com/cps/326/326332.html
    Using the HTML embed Tag to Display a PDF on Your Web Page
    http://blogs.adobe.com/pdfdevjunkie/using_the_html_embed_tag_to_di.html
    Be well...

  • Cannot convert {PRINT "[/DEST/destination /DEST pdfmark"\*MERGEFORMAT} from Word 2007 to bookmark

    Hi,
    Please help, We used to have word 2003 and we have below formula for bookmark so that when we convert it, there's bookmark in pdf. However, when we migrated to Word 2007, it stops working. When I am doing merge files into a single pdf, what I get for bookmark is the document title. Is there a compatibility issue? Or what is really the problem? Can you help me? Btw, I'm using Adobe Acrobat 9 Pro. Thank you in advance.
      "\*MERGEFORMAT}
    {PRINT "[/DEST/destination /DEST pdfmark

A: Cannot convert {PRINT "[/DEST/destination /DEST pdfmark"\*MERGEFORMAT} from Word 2007 to bookmark

Are you using the Adobe PDF printer to produce a .ps or .prn file first and then using Distiller to produce the PDF.  I have found that Distiller recognizes and renders the /DEST pdfmark operators it encounters in Word 2010 .docx file.  It has also been my experience that when I build a book PDF from multiple PDFs, I must insert the pages from each file.  In that way, the named destinations are given the correct page in the book PDF file.  I learned that using automatic merge prevented links to named destinations from working. I think the reason is that if you use the automatic merge, the named destinations retain the page of the original PDF file, and therefore, links to them do not work. 
Hope that helps

  • How to Maintain Jco Destinations ( using ARFC2 )

    Hi Friends
    I call ARFC2  setting WD_MODELDATA_DEST and WD_RFC_METADATA_DEST.
    ... then get error message.
    com.sap.conn.jco.JCoException: (106) JCO_ERROR_RESOURCE: Destination WD_RFC_METADATA_DEST does not exist
        at com.sap.conn.jco.rt.DefaultDestinationManager.update(DefaultDestinationManager.java:195)
        at com.sap.conn.jco.rt.DefaultDestinationManager.searchDestination(DefaultDestinationManager.java:344)
        at com.sap.conn.jco.rt.DefaultDestinationManager.getDestinationInstance(DefaultDestinationManager.java:96)
        at com.sap.conn.jco.JCoDestinationManager.getDestination(JCoDestinationManager.java:61)
        at com.sap.tc.cm.arfc2.metadata.RFMParser.<init>(RFMParser.java:78)
        ... 74 more
    I wnat to Maintain the demo01's JCo Destinations, but the page is null.
    Where can I create WD_MODELDATA_DEST、WD_RFC_METADATA_DEST.
    thx.

    Hi BenChen,
    You need to create JCO Destination in the SAP Portal >> Content Administration >> Web dynpro >> Maintain Jco Destinations.
    If "Create" button not active,then you need to check SLD running or not and SLD data supplier.
    Please refer to below documents will helps
    [System Landscape Directory Process and JCo Configuration|http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/c0c1d495-048e-2b10-babd-924a136f56b5?quicklink=index&overridelayout=true]
    [JCO Destination Errors|http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/d0019b1a-775f-2910-beb8-d81f27d0d8d0?quicklink=index&overridelayout=true]
    [How to Configure the JCo Destination Settings|https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/user-interface-technology/wd%20java/7.0/portal%20integration/how%20to%20configure%20the%20jco%20destination%20settings.pdf]
    Hope it will helps
    Regards
    Arun Jaiswal

  • Maybe you are looking for

    • Captivate 5 Won't Open Captivate 3 Projects

      I'm using the trial version of Captivate 5 and am trying to open some Captivate 3 projects.  The message tells me to ensure that the file isn't already open or damaged and that I have sufficient disk space and resourses.  I had previously opened the

    • How do I view albums within a genre?

      When I click into a genre I get an option for "albums" and a list of artists. If I click on albums, it gives me a list of all my albums in itunes not just those within the genre. How can I get a list of only the albums within a genre? Thanks

    • Printjob System Parameter...

      Hi all, I am calling a report from a form using run_product. I want to print it directly but want the printer dialog box should appear before printing. Tht can be done assigning parameter 'DESTYPE'='PRINTER' and 'PRINTJOB'='YES' but this is not worki

    • Why am I getting these emails?

      Does anyone know why I'm getting spam that is not sent to my address. The mail arrives in my mailbox, but does not have my email address in the recipients address line. It usually has a made up address that has part of my address included in it. This

    • Photoshop CC Versus CS6

      I have a paid copy with the paid license of Photoshop CS 6 and want to know what happens to my copy of CS6 if I was to go to a monthly fee for CC. If I decide I do not want to continue with CC but go back to my paid copy of CS6 is that possible? Afte