CS Review - replacing the document

Hey there,
I've created a document in InDesign CS5 and uploaded it to CS Review successfully.
Some reviewers have already commented but I'd like to replace the document as I've noticed a spelling mistake on one of the pages. Does anyone know how to replace the document with the new version?
Any advice would be very much appreciated.
Best Wishes,
Katie

Katie - to my knowledge no way without wiping out all the comments you now have. Best way is to post your own note on the page with the misspelling and comment that you have corrected and it will appear on the next upload with everyone's suggestions in place.

Similar Messages

  • How to change the document signer in EchoSign

    In this tutorial, learn how you can change or replace the document signer (perhaps the original signer is out of the office) for an eSignature document (sometimes called electronic signature) in Adobe EchoSign.

    In this tutorial, learn how you can change or replace the document signer (perhaps the original signer is out of the office) for an eSignature document (sometimes called electronic signature) in Adobe EchoSign.

  • I am trying to use a interactive form and it says "If this message is not eventually replaced by the proper contents of the document, your PDF  viewer may not be able to display this type of document."  This is a IRS form and has worked before.

    I am trying to use a interactive form and it says "see below"  This is a IRS form and has worked before.
    is there a tech support phone number?
    Please wait...
    If this message is not eventually replaced by the proper contents of the document, your PDF
    viewer may not be able to display this type of document.
    You can upgrade to the latest version of Adobe Reader for Windows®, Mac, or Linux® by
    visiting http://www.adobe.com/go/reader_download.
    For more assistance with Adobe Reader visit http://www.adobe.com/go/acrreader.
    Windows is either a registered trademark or a trademark of Microsoft Corporation in the United States and/or other countries. Mac is a trademark
    of Apple Inc., registered in the United States and other countries. Linux is the registered trademark of Linus Torvalds in the U.S. and other countries

    That means you are looking at the form online with a browser that uses its own (incompatible) PDF viewer, not the Adobe Reader plugin.
    Either
    download the form to your local disk and fill it from there
    use a browser that employs the Adobe Reader plugin
    configure your browser to use the Adobe Reader plugin: http://helpx.adobe.com/acrobat/kb/pdf-browser-plugin-configuration.html

  • How can I search and replace the order items appear in the document?

    Here is my script. I am trying to replace instances of a text pattern (Lot ^9^9^9^9^9) with an auto incremented number Lot 1, Lot 2, Lot 3, etc... I believe this script produces unexpected results becuase the search result is ordered by document construction. The first item in myfounditems is the last item added to the document (which is on the last pages of the document), the second item in myfounditems is the next to last item that was added to the document (which was moved to a middle page in the document). The net result is that instead of having the first item on the first page being Lot 1) and the item directly below it being Lot 2), my document is a hodgepodge of Lot numbers is a seeminlgly random order. Any thoughts on how to fix this?
    tell application "Adobe InDesign CS5.5"
      --Clear the find/change preferences.
              set find text preferences to nothing
              set change text preferences to nothing
      --Search the document for the string "lot".
              set find what of find text preferences to "Lot ^9^9^9^9^9)"
      #set change to of change text preferences to "Lot " & lotnum & ")"
      --Set the find options.
              set case sensitive of find change text options to false
              set include footnotes of find change text options to false
              set include hidden layers of find change text options to false
              set include locked layers for find of find change text options to false
              set include locked stories for find of find change text options to false
              set include master pages of find change text options to false
              set whole word of find change text options to false
              tell active document
                        set lotnum to 1
                        set myFoundItems to find text
                        repeat with foundItem in myFoundItems
                                  set contents of object reference of foundItem to "Lot " & lotnum & ")"
                                  set lotnum to lotnum + 1
                        end repeat
              end tell
    end tell
    display dialog ("Numbered " & (count myFoundItems) & " lots in this document. Next starting lot number is " & lotnum & ".")

    You noticed the first one yourself: the Found item list seems to randomly jump around the document -- I believe you are correct in your observation it may be due to the object construction order. That tells me, by the way, something about your lot numbers that tou didn't mention: your text is not one continuous long threaded story, but it's all or partially in disconnected etxt frames. The Found list does return everything inside a single story in the correct order, but it goes over each separate story in the order they were constructed.
    The only solution is to gather all of your lot numbers, *re-sort* them according to the page number they appear on (and some sort of Worst Case Scenario is when you might have more than one lot number frame per page; in that case you also need to sort by textframe, top to bottom -- yet even worse is if you also may have these textframes side by side!).
    Only then you have a reliable counting order.
    This isn't too bad. We can just extend the method I offered for sorting top-to-bottom/left-to-right in Re: Working around the frame selection order issue in CS 4 and make it also include page numbers:
    function byPageYX(a,b) {
        var
            aP = a.parentTextFrames[0].parentPage.index,
            bP = b.parentTextFrames[0].parentPage.index,
            aY = a.baseline[0],
            bY = b.baseline[0],
            aX = a.horizontalOffset[1],
            bX = b.horizontalOffset[1],
            dP = aP-bP,
            dy = aY-bY,
            dx = aX-bX;
        return dP?dP:(dy?dy:dx);
    myResults.sort(byPageYX);
    Or something like that.
    As for actually implementing the above I cannot be of any help with Applescript.
    Once we're dealing with sorting I think you're much better off in Javascript anyhow.

  • Will reinstalling Lion via the Lion recovery partition cause you to loose all of your applications, documents, etc or does it just replace the Lion operating system and leave everything else untouched?

    Will reinstalling Lion via the Lion recovery partition cause you to loose all of your applications, documents, etc or does it just replace the Lion operating system and leave everything else untouched?

    The latter. I cant tell you how many times I've reinstalled lion! all your apps will be fine!
    Things that will change are system graphics if you altered them with something like candybar or did it manually.
    Having said that, you should always backup your stuff with time machine incase something does happen.
    This is a very important step which will insure the safety of your files while doing things like updating or installing the OS.
    Please exercise caution when doing things with a Hard Drive.

  • JEditorPane: how to replace small parts of the document?

    Hi
    Im trying to create an application that will allow two people to type into two different JEditorPanes, but have the two people essentially editing the same document. So if one person types someting into thier frame, I want that modification sent to the other frame as well.
    The problem I've come across is how to make changes to the contents of the frame without interfering with the person whos trying to type into it. That problem boils down to how do you replace only a small part of the document whithout taking control of the users caret?

    Hopfully I got your problem right. To change only small parts of the EditorPane's document should not be the probelm you can get it with EditorPane.getDocument(). But I think you have to take control over the caret, because the when user 1 has finished editing and sends the doc to user 2 who is editing the doc, user 2's caret position will change because the document length has changed.
    The easiest way would be to add an input area (TextArea) for each user where they can type theit text and than to add the text into the document when they press enter, so you don't have the trouble with te caret position. If you don't want to do this then you could try that: the input of the users is cached while they are typing (not changing the doc) till they press enter. Then the doc is send to the other user, the users doc in the pane is updated and his current typing is added to the end of the new received doc. You can figure out the correct position by doc.getLength() and set the new caret position to doc.length + currentTyping.length
    Hope that helps
    Eryk

  • I saved a file on my mac on Word, but today when I went to review it, it said the "document could not be found" and then asked if i wished to locate the file myself, but when I went to do so it said the same thing again. How do I find this file?

    I saved a file on my mac on Word, but today when I went to review it, it said the "document could not be found" and then asked if i wished to locate the file myself, but when I went to do so it said the same thing again. How do I find this file?

    Let's go out and come in again!
    What version of Word on what Mac running what version of OS X?
    Did you give the file a name? In what location did Word last save a file - because that is where it is likely to be.

  • How do I stop the spinning wheel that replaced the cursor in a Word document?

    How do I stop the spinning wheel that replaced the cursor in a Word document?

    Something is causing Word to lock up.  Restart the laptop and/or reinstall Office/Word to fix the instability.  Maybe even a bad plugin or document could be causing this if it's only happening when you open a particular doc.

  • HT201250 I've been working on a newsletter and have the final version. But I wanted to check something in a version I did last week. If I choose the day in Time Machine, is there any way I can view that document without "restoring" it to replace the final

    I've been working on a newsletter and have the final version. But I wanted to check something in a verssion I did last week. If I choose the day in Time Machine, is there any way I can view that document without "restoring" it to replace the final version?

    You can drag and drop a file from TM to the desktop.
    Let's say your newsletter is on the desktop. First thing to do is to add something to the file name, say Newsletter_1.
    Next open TM as if it is just another external drive by double clicking the icon. (This is not the same as "Enter Time Machine" which you do when you want to restore.) The file hierachy in TM follows the same logic as on your hard drive. Navigate to the date you want, find the file you want, and drag and drop it where you want it to be. Because you changed the name of the most recent version you can both files in the same space.
    I do this often.
    But remember if you make a back up now you will end up with both versions in TM.

  • How we create workflow using sharepoint designer for first review the documnet than go for approve the document.

    Hi to all
    I have team site in site collection under this i have Shared Document library. Now i want to create the workflow for the shared Document library. How i will create workflow using sharepoint designer for first review the documnet than go for approve
    the document.

    Hi ,
    According to your description, my understanding is that you want to create a workflow which contains review and approval process.
    For implemening your requirement, you can create a workflow containing two steps. The first step is used to collect user information and set workflow variables, and the second step is used to verify whether the reviewer approve. If the reviewers complete
    approving, a pproval workflow is started. The whole workflow is like :
    More information, please refer to the links below:
    http://www.documentmanagementworkflowinfo.com/sharepoint-video-tutorials/create-document-review-workflow-sharepoint-designer-2007.htm
    http://office.microsoft.com/en-us/sharepoint-designer-help/watch-this-design-a-document-review-workflow-solution-HA010256417.aspx
    I hope this helps.
    Thanks,
    Wendy
    Wendy Li
    TechNet Community Support

  • Is there a way to enable the PDF filename to be saved over (replaced) after the document has been saved once?

    Once a person has saved a fillable PDF onto their computer and entered information, closed the document, then reopens to add more information, they get an error message from Adobe Reader saying, "The document could not be saved.  Cannot save to this filename.  Please save the document with a different name or in a different folder."  The machines in question use the Windows platform.

    We have encountered the same problem at our company, and the following thread help us to resolve our problem:
    Thanks to KevinCur.
    Error while saving a .PDF File to a mapped drive
    "It has to do with Protected Mode being turned on.  I don't know if it was off by default & now it is on with the update but turning it off changes Adobe Reader's behavior back to what the users expect - a prompt warning you if you want to overwrite the existing file & then selecting Yes to overwrite.
    To disable Protected Mode:
    Start Adobe Reader
    Edit - Preferences - Security (Enhanced)
    Uncheck Enable Protected Mode at Startup
    Close Preferences & Close Reader"
    We unchecked the "Enable Protected Mode at startup" box --> Yes --> OK.  Our users are happy now.  ^_^

  • Coloured spinning ball replacing the cursor in documents and settings

    Hi
    I have bought an iMac today and this is the first one I have had so I'm very new.  I clicked on settings and then into desktop and screensaver and I was clicking down the menu.  As I clicked on places a coloured spinning ball replaced the cursor and now I cant get out of it.  If I cmd and Q nothing happens.
    Is there anyone who can help?

    The spinning beach ball indicates the machien is waiting for a process to complete. If you continue to have problems I'd suggest using your AppleCare telephone support. When you purchase any new Mac it comes with 90 days of free AppleCare support. After 90 days you can purchase AppleCare which extends the warranty from 1 year to 3 years and also includes 3 years of telephone support. I'd STRONGLY recommend buying AppleCare.
    If you don't know how to contact AppleCare then click
    Contacting Apple for support and service.
    In addition please complete your Profile, without a profile getting help becomes increasingly difficult as we have no idea which iMac you have, the verison of OS X, where you are located etc.... For help completing that please click Profile Update

  • I have a Pages document in iCloud that will not open. I have Time Machine. How do I get to the version of the document that is not corrupted?

    I'm in a bind. I tried to open a Pages document that I saved from the current version of Pages on my iMac this morning on my iPad, which has the current version of Pages of the iPad. It would not open on the iPad. Now it also will not open on the iMac, or on the Beta of iCloud Pages.
    If it were on my hard drive, I could use Time Machine to recover the most recent version, but it's in iCloud. I've been told that implies that there is a local copy, but I don't know where that is.
    It's a book manuscript I've been working on for months. I'm not happy.
    Thanks for the help.

    Your opinion of Apple products seems unusually harsh. I know how iCloud works and I'm generally pretty happy with it. I also like Pages a lot more than MS Word, and somewhat more than NeoOffice. Word is overripe with so many features Microsoft keeps radically changing the interface in the desperate hope that somehow they will make it easy to use again, but instead, they just confuse everybody with the unnecessary changes.
    They had menus, until there were too many options to fit the screen, so they added submenues, until that wasn't enough, so they added dialog boxes, until that wasn't enough, so they added tabbed dialog boxes, and realized that a lot of commonly used features were too hard to get to, so they added the Toolbar just as a shortcut to the more common features and then came up with the unforgivable decision to eliminate the menu interface entirely in the Windows version of the product and replace it with The Ribbon, which took me so long to interpret that I stopped using Word altogether.
    NeoOffice is simpler and quite useful, but it was iCloud that sold me on Pages. It's great being able to review and edit documents on iOS devices in addition to automatically synchronizing across Mac OS X devices.
    I have options for synchronization with Box and DropBox, and I have a network share I can use, if having a local copy isn't important, but I find that having a local copy (like with Box, DropBox and iCloud) is great because each computer I use has Time Machine, so I don't have to rely on the service to restore a file. I can get it, myself. It's easier to browse to the version I want in Time Machine than it is to estimate the time I want to restore from and hope that someone else can find the right version of the file from whenever they made a backup to restore it for me. I have unhappy experiences from this kind of request to restore stuff.
    I find Box and DropBox to be somewhat crude compared to iCloud. I like Apple's new attitude toward saving files. When I edit in Pages and exit, the file is saved. If I edit a file and the power goes out, I generally lose a sentence or less. In traditional apps, I can easily lose hours of work, unless I remember to manually save as I go.
    iCloud is not a general remote file storage facility. At it's root, it is a roaming version of whatever you have on iOS devices. So, if I want to access a file from multiple devices and not have to worry about versions, I use iCloud.
    This problem I just had was the first problem I've had with iCloud, and with Time Machine, and I use them a lot. Having someone tell me where the local copy of the documents are fixed the problem.
    I love Time Machine.
    For myself, when I upgraded from Bento 1 to Bento 2 on several computers, one of them choked on my data file. I followed Bento's directions to recover the data file until it said to reinstall Bento 1 from original medium. I couldn't find my disc. Yes, I had bought it. I don't steal software. But I couldn't find my disc.
    So, I used Time Machine to restore Bento 1. Just try restoring an older version of an app in Windows from any backup software available to Windows and see how far you get.
    I helped someone else recover a couple thousand email messages using Time Machine instead of dealing with the email service because we could open Mail, go to the folder where the messages had disappeared when she had a power glitch, and then browse back until we found the backup just before the messages disappeared. The restore took about 20 minutes, but again, this verges on magic.
    I've used Time Machine to restore an older version of OS X when someone discovered that a crucial app wasn't ready for it yet. The glitch was that she hadn't backed up for a month. She kept ignoring the warning prompts. So, when I showed up, I had her do a current backup before doing the restore. We then restored to the old OS, restarted in the old OS and opened Time Machine to recover all her documents, pictures, etc. from the current backup, so she didn't lose a month of work. This is another thing I can't do with other backup programs.
    So, I'm generally pretty happy with Apple. Once someone told me where the local copy of my iCloud documents resides, I could take care of this most recent problem.

  • I saved my document as only .doc but not as a pages file and now I cannot edit anything and half the document looks incredibly screwed up, how did this happen?

    I forgot to save the pages file, I do back up on time machine could a temporary file be in there somewhere? It was a 30+ page custom designed presentatiion that took me two weeks. i cannot believe I only saved it as PDF and .doc! My current theory is that I can only edit the document in pages as a pages file since that is what I had been doing. Please help if anyone has had this problem before or know how I can recover that screen I was working with a few days ago before I saved as a Word doc!!

    Despite what Apple and its employees say Pages is not a 100% replacement for Word.
    Pages files exported to .doc will have minor to major differences.
    You should always have a Pages version. Exporting is only so non Mac and non Pages users may read it, and even there you should use .pdf to keep its appearance as close as possible to the original.
    It sounds like you used a lot of Pages' features which turned out to not have Word equivalents.
    Peter

  • BLOB download via WPG_DOCLOAD not working: what's with the document table?

    Hi,
    We upgrade our APEX application to 4.2 on RDBMS 11.2.0.1.0, and now our file downloads are failing with 404-not found errors.
    Documents are stored as BLOBs in a dedicated table TICKETDOC. Uploading works fine via APEX, I can query the docs in the table and all is looking fine so far.
    I have a report column formatted as HTML, making it a clickable thumbnail which should open the file in a separate browser window when clicked.
    HTML format for column:
    +*
    <img src="#OWNER#.DOWNLOAD_FILE?p_id=#THUMBNAIL#" height=40">
    </a>
    *+
    This is supposed to call our own procedure TICKET.DOWNLOAD_FILE, which calls WPG_DOCLOAD:
    +*
    create or replace
    PROCEDURE "DOWNLOAD_FILE" (p_id in number) AS
    l_mime varchar2(255);
    l_length number;
    l_file_name varchar2(2000);
    lob_loc BLOB;
    v_found BOOLEAN := FALSE;
    CURSOR c_doc IS
    SELECT doctype, doc, naam, DBMS_LOB.GETLENGTH(doc)
    FROM ticketdoc
    WHERE ticketdocid = p_id;
    CURSOR c_mail IS
    SELECT mimetype, content_attachment, filenaam, DBMS_LOB.GETLENGTH(content_attachment)
    FROM mailattachment
    WHERE mailattachmentid = p_id;
    param_val owa.vc_arr;
    p_table Varchar2(200);
    l_errm varchar2(2000);
    BEGIN
    p_table := 'TICKETDOC';
    IF p_table = 'TICKETDOC' THEN
    OPEN c_doc;
    FETCH c_doc INTO l_mime, lob_loc, l_file_name, l_length;
    IF c_doc%FOUND THEN
    v_found := TRUE;
    else
    END IF;
    CLOSE c_doc;
    ELSIF p_table = 'MAILATTACHEMENT' THEN
    OPEN c_mail;
    FETCH c_mail INTO l_mime, lob_loc, l_file_name, l_length;
    IF c_mail%FOUND THEN
    v_found := TRUE;
    END IF;
    CLOSE c_mail;
    END IF;
    IF v_found THEN
    --initialise owa with some environment variable
    param_val (1) := 1;
    owa.init_cgi_env(param_val) ;
    -- Set up HTTP header
    -- Use an NVL around the mime type and if it is a null, set it to
    -- application/octect - which may launch a download window from windows
    owa_util.mime_header(nvl(l_mime,'application/octet-stream'), FALSE );
    -- Set the size so the browser knows how much to download
    htp.p('Content-length: ' || l_length);
    -- The filename will be used by the browser if the users does a "Save as"
    htp.p('Content-Disposition: attachment; filename="' || l_file_name || '"');
    -- Close the headers
    owa_util.http_header_close;
    -- Download the BLOB
    wpg_docload.download_file( Lob_loc );
    END IF;
    exception
    when others then
    l_errm := sqlerrm;
    raise;
    END;
    *+
    The idea is to display a thumbnail image which, when clicked, will open the document (image, pdf, whatever) in a new browser window.
    Executing the procedure in SQLDeveloper works fine and I can query the downloaded BLOB (getlength etc).
    However, when I click the thumbnail in the APEX application I get a 404.
    Enabling debug via exec dbms_epg.set_dad_attribute('APEX', 'error-style', 'DebugStyle') yields the following:
    +*
    Fri, 31 May 2013 09:41:35 GMT
    Error retrieving document.
    Please verify that the document you requested exists in the document table
    DAD name: apex
    PROCEDURE : TICKET.DOWNLOAD_FILE
    URL : http://XDB HTTP Server:8080/apex/TICKET.DOWNLOAD_FILE?p_id=1091
    PARAMETERS :
    ===========
    p_id:
    1091
    ENVIRONMENT:
    ============
    PLSQL_GATEWAY=WebDb
    GATEWAY_IVERSION=2
    SERVER_SOFTWARE=Oracle Embedded PL/SQL Gateway/11.2.0.1.0
    GATEWAY_INTERFACE=CGI/1.1
    SERVER_PORT=8080
    SERVER_NAME=XDB HTTP Server
    REQUEST_METHOD=GET
    QUERY_STRING=p_id=1091
    PATH_INFO=/TICKET.DOWNLOAD_FILE
    SCRIPT_NAME=/apex
    REMOTE_HOST=
    REMOTE_ADDR=127.0.0.1
    SERVER_PROTOCOL=HTTP/1.1
    REQUEST_PROTOCOL=HTTP
    REMOTE_USER=ANONYMOUS
    ORACLE_SSO_USER=
    OSSO_IDLE_TIMEOUT_EXCEEDED=
    OSSO_USER_GUID=
    HTTP_CONTENT_LENGTH=0
    HTTP_CONTENT_TYPE=
    HTTP_USER_AGENT=Mozilla/5.0 (compatible; MSIE 9.0; Windows NT 6.1; WOW64; Trident/5.0)
    HTTP_HOST=localhost:8080
    HTTP_ACCEPT=text/html,application/xhtml+xml,*/*
    HTTP_ACCEPT_ENCODING=gzip,deflate
    HTTP_ACCEPT_LANGUAGE=nl-BE,en-US;q=0.5
    HTTP_ACCEPT_CHARSET=
    HTTP_COOKIE=__utmc=31852350; __utmz=31852350.1366364489.1.1.utmccn=(direct)|utmcsr=(direct)|utmcmd=(none); __utma=31852350.974780296.1366364489.1366364489.1369990367.2; ORA_WWV_USER_61804796552973=930EBD5017F98F039F659148EAE74140; ORA_WWV_REMEMBER_UN=JO:ticket; ORA_WWV_F4000_P4150_TREE=RenderingTree%3A3727930518286945_columns%3A3729417793306453; SHARED_SESSION=87D7D96BC5A457924CB86A817315D30E; [email protected]
    HTTP_IF_MODIFIED_SINCE=
    HTTP_REFERER=http://10.0.25.1/apex/f?p=101:40:7036965658754:::::
    HTTP_SOAPACTION=
    HTTP_ORACLE_ECID=
    HTTP_ORACLE_CACHE_VERSION=
    HTTP_AUTHORIZATION=
    WEB_AUTHENT_PREFIX=
    DAD_NAME=apex
    DOC_ACCESS_PATH=docs
    DOCUMENT_TABLE=wwv_flow_file_objects$
    PATH_ALIAS=
    REQUEST_CHARSET=AL32UTF8
    REQUEST_IANA_CHARSET=UTF-8
    SCRIPT_PREFIX=
    HTTP_IF_MATCH=
    HTTP_CACHE_CONTROL=
    SOAP_BODY=
    HTTP_X_ORACLE_DEVICE_CLASS=
    HTTP_X_ORACLE_DEVICE_ORIENTATION=
    HTTP_X_ORACLE_DEVICE_MAXDOCSIZE=
    HTTP_X_ORACLE_DEVICE=
    HTTP_X_ORACLE_ORIG_ACCEPT=
    HTTP_X_ORACLE_ORIG_USER_AGENT=
    HTTP_X_ORACLE_USER_LOCALE=
    HTTP_X_ORACLE_USER_NAME=
    HTTP_X_ORACLE_USER_DISPLAYNAME=
    HTTP_X_ORACLE_USER_USERKIND=
    HTTP_X_ORACLE_USER_AUTHKIND=
    HTTP_X_ORACLE_USER_DEVICEID=
    HTTP_X_ORACLE_USER_LOCATION_ADDRESSLINE1=
    HTTP_X_ORACLE_USER_LOCATION_ADDRESSLINE2=
    HTTP_X_ORACLE_USER_LOCATION_ADDRESSLASTLINE=
    HTTP_X_ORACLE_USER_LOCATION_BLOCK=
    HTTP_X_ORACLE_USER_LOCATION_CITY=
    HTTP_X_ORACLE_USER_LOCATION_COMPANYNAME=
    HTTP_X_ORACLE_USER_LOCATION_COUNTY=
    HTTP_X_ORACLE_USER_LOCATION_STATE=
    HTTP_X_ORACLE_USER_LOCATION_POSTALCODE=
    HTTP_X_ORACLE_USER_LOCATION_POSTALCODEEXT=
    HTTP_X_ORACLE_USER_LOCATION_COUNTRY=
    HTTP_X_ORACLE_USER_LOCATION_TYPE=
    HTTP_X_ORACLE_USER_LOCATION_X=
    HTTP_X_ORACLE_USER_LOCATION_Y=
    HTTP_X_ORACLE_SERVICE_HOME_URL=
    HTTP_X_ORACLE_SERVICE_PARENT_URL=
    HTTP_X_ORACLE_HOME_URL=
    HTTP_X_ORACLE_MODULE_CALLBACK_URL=
    HTTP_X_ORACLE_MODULE_CALLBACK_LABEL=
    HTTP_X_ORACLE_CACHE_USER=
    HTTP_X_ORACLE_CACHE_SUBID=
    HTTP_X_ORACLE_CACHE_AUTH=
    HTTP_X_ORACLE_CACHE_DEVICE=
    HTTP_X_ORACLE_CACHE_LANG=
    HTTP_X_ORACLE_CACHE_ENCRYPT=
    HTTP_X_ORACLE_ASSERT_USER=
    *+
    I made minor adjustments to the original (pre-4.2) code:
    * initialised owa with some environment variable
    * registered DOWNLOAD_FILE in wwv_flow_epg_include_mod_local
    but still no success.
    Any ideas on how to fix this?
    Greetz
    Jo

    As I understand:
    The procedure works.
    The link 'appears' to work. (ie you saw the procedure run a 2nd at the database level)
    But it doesn't actually work (because you get a 404)
    I think I ran into an issue, on a completely different page type, that produced an 'error 404'. (I can't seem to reproduce it, though)
    The only way I discovered what was really going on was with an HTTP sniffer. (eg HTTPFox for FireFox)
    Through that, I noticed that the browser was (for some reason) calling a completely non-sensible APEX page. (hence the PAGE NOT FOUND error)
    My solution was to add a "submit to self" branch point.
    If that doesn't work, I'm at a loss.
    MK

Maybe you are looking for

  • Is there a way to delete all events with the same title (not added as reoccurring) without deleting one at a time?

    i currently have a calendar synced that has events scheduled in perpetuity, scheduled as individual events.  I would like to delete all events with the same title.  I do not want to delete the entire calendar nor do I want to go into every event and

  • Looping at internal table

    Hi, I work on SAP BW and need guidance on the functionality from the below code: l_s_datapak_line[] = datapak[].     l_s_datapak[] = datapak[].     sort l_s_datapak_line by pernr endda descending. loop at l_s_datapak.    read table l_s_datapak_line w

  • Good receipt mvt types

    Hi, Good receipt mvt types 101,102,105,106,122,123,161 which affect stock level. 561 and 562 also considered as GR. we want to report actual GR to store.need to list affected mvt types. Please advise. Please let me know if any other GR mvt types used

  • I'm getting an error "Could not find compiled resource bundle 'layout' for locale 'en_US'."

    I thought I would update to the latest trunk version of the sdk.  When I run my code I keep getting this Error being thrown: "Error: Could not find compiled resource bundle 'layout' for locale 'en_US'." It worked fine with the beta sdk and nightly bu

  • IOS 4 Apps Sharp During Update/Fuzzy After Update

    So this is something that I've noticed has garnered almost zero attention from the press or from the Apple community. Basically, about 75% of the time, when I update an app that has been updated for a higher resolution icon, it'll display the sharper