Contribute: can you open a draft saved to the desktop?

Hi -
I need some advise, please. While working on a major change to our site, the surver cutout and the only place Contribute would allow a save of the draft was to the desktop. the file saved in .php, but now that the surver is up again, Contribute errored on the active draft with a "broken keys" message, and deleted the draft. The only backup is on the desktop, but Contribute wont open the file, saying that '.php' is an invalid file type.
Is there anyway around this?
Thanks in advance

You cannot access your iWork documents in the cloud through a folder structure as you can on your computer.
You might want to approach your use of these documents in the cloud in a slightly different way. I tend to use iCloud for my documents "in progress", but once complete I then move them to my regular folder structure on my computer and out of the cloud. This means I have a minimum but relevant number of documents available to me when I open the appropriate app on my mobile device.

Similar Messages

  • Can you open a report in Excel/Word desktop instead of the web pugin?

    using run_report_object( and web.show_document,
    how or can you get a report to open in the desktop/full version of MS Excel/Word instead of the web plugin versions?
    I can get the browser to open a report in pdf with my desktop adobe reader, but not with an rtf or xml/delimited desformat.
    Currently I don't pass a mimetype when opening as a pdf, but I do pass one in the url when i am destypes of xml, delimited and rtf,
    as this is the only way i have found out how to open the reports in word/excel.
    I'm in the process of upgrading from forms 6 client/server to 10g developer suite, so this is my try with a web based system.
    Does anyone have any suggestions, or where I should look.
    Below I listed my code from a procedure.
    the first part of the procedure is alot of converting, but if you skip down to the part between the 2 sets of double lines this fairly standard.
    PACKAGE BODY pmc_lib IS
    -- Procedure to run the report.
    procedure run_reports(v_report_name in varchar2, -- Report Name with or w/o a path.
    v_commode in number default synchronous, -- commode
    v_execmode in number default runtime, -- execute mode
    v_file_sys in number default filesystem, -- dummy
    v_param_list in paramlist, -- parameter list
    v_show_modes in varchar2 default null) is -- used for testing,
    -- if set to anthing but null, the report properties will display
    -- on the screen through an alert prior to printing.
    v_errorcode number;
    v_errortext varchar2(600);
    v_initialized boolean := false;
    v_prop_reportserver varchar2(200);
    v_report_path varchar2(200);
    v_user varchar2(100);
    v_user_sessionid number;
    v_forms_version varchar2(100);
    v_default_report_server varchar2(200);
    v_default_server_domain_path varchar2(200);
    v_connect_string varchar2(3) := get_application_property(connect_string);
    v_user_name varchar2(35) := get_application_property(username);
    report_id report_object;
    reportserverjob varchar2(100);
    v_jobid varchar2(100);
    rep_status varchar2(100);
    v_url varchar2(500);
    v_url2 varchar2(500);
    v_parameter_value varchar2(100);
    v_destype_param_value varchar2(100) := null;
    v_desformat_param_value varchar2(100) := null;
    v_desname_param_value varchar2(100) := null;
    v_value_n number := 0;
    v_param_type number := text_parameter;
    v_prop_execmode number;
    v_prop_commode number;
    v_prop_destype number;
    v_prop_filename varchar2(200);
    v_prop_source_block varchar2(200) := null;
    v_prop_query_name varchar2(200) := null;
    v_prop_desname varchar2(200) := null;
    v_prop_desformat varchar2(200) := null;
    v_prop_reportserver varchar2(200) := null;
    v_prop_other varchar2(200) := null;
    v_mimetype varchar2(200) := null;
    v_selected_mimetype varchar2(200) := null;
    report_not_generated exception;
    report_id_not_found exception;
    BEGIN
    v_forms_version := get_application_property(version);
    v_prop_reportserver := get_report_object_property('report1', report_server);
    v_report_path := null;
    v_user := v_user_name || '/' ||
    get_application_property(password) || '@' ||
    v_connect_string;
    if v_connect_string = 'NNN' then
    v_default_server_domain_path := 'pmcoracapp01.aapmc.com/reports/rwservlet';
    v_default_report_server := 'rep_pmcoracapp01_frhome1';
    else
    v_default_server_domain_path := 'oradevsrv.aapmc.com/reports/rwservlet';
    v_default_report_server := 'rep_oradevsrv_frhome1';
    end if;
    v_initialized := true;
    -- Check to see what version of forms is running.
    if substr(v_forms_version, 1, 1) <> '6' then
    -- Check to see if WEB version is running
    -- This may be an unnecessary check.
    if (get_application_property(user_interface) = 'WEB') then
    report_id := find_report_object('report1');
    -- id_null won't work on a report_id in Version 6, may put back in 10g once version 6 is gone completly
    -- if id_null(report_id) then
    -- raise report_id_not_found;
    -- end if;
    -- Because of Convertions from old system the following are needed.
    -- 1) If 'execmode' is runtime, then change it to batch.
    if v_execmode = runtime then
         v_prop_execmode := batch;
    else
         v_prop_execmode := v_execmode;
    end if;
    -- 2) If Report name has an attached path, then remove it.
    v_value_n := instr(lower(v_report_name), 'k:\pmc\new\');
    if v_value_n = 0 then
         v_prop_filename := v_report_name;
    else
         v_prop_filename := substr(v_report_name, v_value_n + 11);
    end if;
    -- From looking at the FORMS, 'destype' parameter is always passed in from the FORM.
    -- It is either 'preview' or 'file'.
    -- This is here for the converstion from Forms 6 to 10g.
    -- If for some reason destype has not been passed in as a parameter, you will get a FORM error,
    -- saying the parameter does not exists.
    begin
    -- 3) If 'destype' is one of the following, then change it to cache.
    get_parameter_attr(v_param_list, 'destype', v_param_type, v_destype_param_value);
    if lower(nvl(v_destype_param_value, 'null')) in ('preview', 'file', 'null') then
    v_prop_destype := cache;
    -- 3a) If 'destype' was = 'file' then check the 'desformat' and 'desname'.
    if lower(nvl(v_destype_param_value, 'null')) = 'file' then
    -- 3b) Get 'desformat' value
    get_parameter_attr(v_param_list, 'desformat', v_param_type, v_desformat_param_value);
    -- 'delimited' was not working, so change all 'delimited' to 'delimiteddata'.
    if lower(nvl(v_desformat_param_value, 'null')) = 'delimited' then
         v_desformat_param_value := 'delimiteddata';
    end if;
    -- 3c) If 'desformat' is NOT one of the following, then change it to pdf.
    if lower(nvl(v_desformat_param_value, 'null')) not in ('pdf', 'xml', 'rtf', 'delimiteddata') then
    v_prop_desformat := 'pdf';
    else
    v_prop_desformat := lower(v_desformat_param_value);
    end if;
    -- 4) Get 'desname' property.
    get_parameter_attr(v_param_list, 'desname', v_param_type, v_desname_param_value);
    v_prop_desname := lower(v_desname_param_value);
    end if;
    else
    v_prop_destype := lower(v_destype_param_value);
    end if;
    exception
    when others then
    null;
    end;
    -- If a desformat is rtf, xml, or delimited then get a mimetype to pass to the url
    if lower(v_prop_desformat) = 'rtf' then
    v_mimetype := '&mimetype=application/msword';
    elsif lower(v_prop_desformat) = 'xml' then
    v_mimetype := '&mimetype=application/vnd.ms-excel';
    elsif lower(v_prop_desformat) = 'delimiteddata' then
    v_mimetype := '&mimetype=application/vnd.ms-excel';
    end if;
    -- 6) If the Following are not set within the Report Object then
    -- set them to the following defaults.
    -- These are al required to be set for the Report Object to Function.
    -- These are the defaults for AAPMC.
    v_prop_execmode := nvl(v_prop_execmode, batch);
    v_prop_commode := nvl(v_prop_commode, synchronous);
    v_prop_destype := nvl(v_prop_destype, cache);
    v_prop_desformat := nvl(v_prop_desformat, 'pdf');
    v_prop_reportserver := nvl(v_prop_reportserver, v_default_report_server);
    -- Set All Report_Object Properties
    set_report_object_property(report_id, report_execution_mode, v_prop_execmode);
    set_report_object_property(report_id, report_comm_mode, v_commode);
    set_report_object_property(report_id, report_destype, v_prop_destype);
    set_report_object_property(report_id, report_filename, v_prop_filename);
    set_report_object_property(report_id, report_source_block, v_prop_source_block);
    set_report_object_property(report_id, report_query_name, v_prop_query_name);
    set_report_object_property(report_id, report_desname, v_prop_desname);
    set_report_object_property(report_id, report_desformat, v_prop_desformat);
    set_report_object_property(report_id, report_server, v_prop_reportserver);
    set_report_object_property(report_id, report_other, v_prop_other);
    -- Run Report_Object
    reportserverjob := run_report_object(report_id, v_param_list);
    v_jobid := substr(reportserverjob, length(v_prop_reportserver) + 2, length(reportserverjob));
    -- If Report Status is not 'FINISHED', then loop till it is.
    if reportserverjob is not null then
    rep_status := report_object_status(reportserverjob);
    while rep_status in ('RUNNING', 'OPENING_REPORT', 'ENQUEUED') loop
    rep_status := report_object_status(reportserverjob);
    end loop;
    if rep_status <> 'FINISHED' then
    raise report_not_generated;
    end if;
    -- Create 1st part of url.
    v_url := 'http://' || v_default_server_domain_path || '/getjobid' || v_jobid || '?server=' || v_prop_reportserver;
    -- Check for mimetype.
    if v_mimetype is not null then
    v_url := v_url || v_mimetype;
    end if;
    -- Final part of url.
    v_url2 := 'javascript:window.open("' || v_url || '", "", "fullscreen=no, titlebar=no, location=no, toolbar=no, menubar=no, status=no, resizable=yes"); self.close()';
    -- This is the built-in that calls a new browser window
    web.show_document(v_url2,'_blank');
    else
    raise report_not_generated;
    end if;
    end if;
    -- Destroy the parameter list.
    destroy_parameter_list(v_param_list);
    else
    -- This section if for Client Server, Version 6 of forms.
    -- It will do the same as before the conversion.
    -- It is only used before the complete conversion.
    if v_report_name is null then
    return;
    end if;
    v_value_n := instr(v_report_name, 'k:\pmc\new\');
    if v_value_n = 0 then
         v_prop_filename := 'k:\pmc\new\' || v_report_name;
    else
    v_prop_filename := v_report_name;
    end if;
    run_product(reports,
    v_prop_filename,
    v_commode,
    v_execmode,
    filesystem,
    v_param_list,
    null);
    end if;      
    -- create history record of the report being run
    insert into pmc_report_history values(
    s_pmc_report_history.nextval,
    v_prop_filename,
    v_user_name,
    sysdate,
    v_forms_version,
    v_jobid,
    v_destype_param_value,
    v_desformat_param_value,
    v_desname_param_value,
    v_prop_destype,
    v_prop_desformat,
    v_prop_desname,
    v_mimetype,
    v_window_open_params);
    commit;
    exception
    when report_id_not_found then
    show_user_alert('ERROR: Cannot Find Report Object!', null);
    when report_not_generated then
    show_user_alert('ERROR: Report Not Generated!', null);
    when others then
    v_errorcode := SQLCODE;
    v_errortext := SQLERRM;
    show_user_alert('ERROR : ' || v_errorcode || ' = ' || v_errortext, null);
    end;
    end;

    What you could try is downloading the report to the client pc using WEBUTIL_FILETRANSFER.URL_TO_CLIENT, then open the locally save file using something like:
    CLIENT_HOST('cmd /c rundll32.exe url.dll,FileProtocolHandler "localfilename"');

  • How can you open a new tab from the adress bar when located in an app tab ?

    When I am in an app tab and I write another url in the address bar, I would like it to be opened in a new tab, not in the app tab, so I don't ruin what I have.
    Is this possible?

    You can use "Opt + Return" or middle click the Go (Reload/Stop) button at the right end of the location bar.
    See "Open Address in New Tab" : <u>[[Keyboard shortcuts]]</u>

  • Can you open my i bad by the number of it 2A5G0dKPH

    i can't open my i bad because it locked  could you open it by the number
    2A5G0dKPH

    Apple is not here.
    This is a user to user forum.
    How is your ipad locked?

  • Can you open microsoft windows documents with the pages app?

    I am a new Mac user and i am considering downloading pages. On my PC i use Microsoft word and i was wondering if anyone knew if i transferred these files onto my Mac could i open them in Pages?
    Thanks

    Jo,
    Give it a try. It should work. That's what the free iWork trial period is for. Not sure if the Mac App Store has a free trial, so indeed, you'll want to look for the normal download.
    Jerry

  • How can you open a new window in the new iTunes 11 ???

    In the old version, you can open a list in a new window. But I don't find this option in the iTunes 11 -.-  Can somebody help me ???

    Tony T1 wrote:
    Also, ⌘T for a new Tab (also File->New Window, File->New Tab)
    This is what I always use. You can also click on the plus sign at the far right, that will also give you a new tab/window. And if you want that tab to be a separate window, then once you've created it, just go up to that tab (avoid the little x that will appear--that deletes it), click on the tab, hold and drag it down. It'll leave the other tabs behind and become a window all on its own.

  • Can you save a Pages document to the desktop and have it linked with iCloud?

    Or does Pages sandbox documents when they are saved to iCloud? I heavily use folders on my mac to organize projects, and have started using Pages so that I can write on my phone and ipad. However, I would like to have an icon of a document that links to icloud rather than having to open the application and then pick the document.
    I'm essentially organizing two separate areas; the one on my computer with all my media, research links, etc and then documents organization in Pages in the cloud.
    Kinda wish there was a way to make a reference file option; saved in icloud, but can be organized in mac folders.
    Any thoughts? Or am I missing something obvious.
    Thanks.
    N

    You cannot access your iWork documents in the cloud through a folder structure as you can on your computer.
    You might want to approach your use of these documents in the cloud in a slightly different way. I tend to use iCloud for my documents "in progress", but once complete I then move them to my regular folder structure on my computer and out of the cloud. This means I have a minimum but relevant number of documents available to me when I open the appropriate app on my mobile device.

  • How can you save a draft SMS on X3-02 ?

    How can you save a draft SMS on X3-02 ? 
    Can't seem to find an option to do this  ...  Lost message typed half way  when I got out of the editor to check the calendar.
    Am I missing something or has Nokians obsoleted this function on the latest S40 platform ?
    Solved!
    Go to Solution.

    Hi all,
    Like sudude here pointed out that's one way of leaving text as "draft" to message editor. Or you can also select Options > More > Exit editor to do the same. And, next time when you select Create message that previous text should be there as it was left.
    But there is also another option to start writing SMS's - with Notes application. Select Menu > Apps > Notes. Write a note and save it. Then for that note select Options > Send note > Send as message. Now your note is copied to message editor and you can send it or further edit and then send. Neat thing here is that when you use Notes application, text can be saved for later editing or use.
    -ThreeOs

  • Can you edit text after saving your file as pdf

    I have recently created a letterhead in Illustrator.
    Is there a way to change a person name and title after saving it as a pdf file? I heard something about creating a form in Acrobat professsional.
    I need to print out a letterhead with different peoples name and title. Any help would be appreciated. Thank you.

    Can you edit the text in Acrobat Reader?
    Yes, if you use Acrobat Pro to save the PDF as a Reader-enabled form.
    1. Create your letterhead in Illustrator (or whatever). Leave design space for, but do not create text objects that you want to be editable.
    2. Save as PDF.
    3. Open the PDF in Acrobat Pro. Use Acrobat's Form tools to add text fields whereever you want the end users to be able to key text.
    4. Select the Enable Reader Usage Rights command in Acrobat to make the form fields edtiable in Reader. Save the file.
    Recipients of the PDF can now open it in Reader, edit the content of the fields, and save the file with their edits.
    JET

  • Can you open files on a pc from time machine?

    Can you open files on a pc from time machine?

    You have to be more descriptive. Partition what?
    File sharing can be accomplished many ways,.
    Network
    Usb flash drive
    External hard drive
    NAS
    DVDs
    It is as simple as copying/saving from one computer/drive to another computer/drive.

  • I upgraded my pages '09 to 5.0.1 and now can't open an old saved doc because the volume "Untitled" isn't mounted and I should mount it and try opening again. What do I do??

    I am writing a paper and cant open it. I can only find it from file on the top on my screen > open recent... and then a message pops up saying thatI couldn'y open "CSI Milton" because the volume "untitled" couldn't be mounted and it says that I should mount it and try openning the application again. WHAT DO I DO!?!?!

    Can you open the same file with Pages '09?
    Peter

  • How many Iphone 5 can you open under one account ??

    Just a simple question , how many iphone 5 can you open under one account ? is it 5 or more ??? anyone know . I've been a verizon customer for a little bit over 5 months ..... any input ??? thank you

    I'd call Customer Service and ask, because the Share Everything plan is supposed to allow 10 lines:
    http://support.verizonwireless.com/clc/faqs/Calling%20Plans/share_everything.html

  • Can you open word doc. In pages? (Opening a doc. From the web) in the iPad or iPod tuch?

    Can you open word doc. In pages? (Opening a doc. From the web) in the iPad or iPod tuch?

    NH,
    This may seem a fine point, but iWork apps don't actually Open Office apps. They Import them. The reason I make this distinction for you is that when you view the result of the import, you may see some variations from what was in the Office document because of an imperfect translation, and when you make edits, you are editing an iWork document, not the original Office document.
    Jerry

  • Can you open with Pages documents that were created in a 2004 version of Microsoft word for Mac?

    Can you open in Pages documents that were created in a 2004 version of Microsoft Word for Mac?

    Pages '09 will open .doc files from Word 2004. The Mac OS is not what is in question. Pages '09 opens Word 2004 documents and if the same version of Pages will run in Lion and in Mountain Lion ..... Thats all that matters.
    I trust you were using MS Office 2004 and would now like to buy Pages?

  • Is there anyone there? I hope there is someone who can you understand this problem and have the common sense to respond?  I open gmail. I want to save an email to one of my folders. I position my cursor over the appropriate Folder icon or by choice, to th

    Is there anyone there? I hope there is someone who can you understand this problem and have the common sense to respond?
    I open gmail. I want to save an email to one of my folders.
    I position my cursor over the appropriate Folder icon or by choice, to the Trash.
    The friendly finger pointing cursor icon changes to an arrow icon.
    The hand icon allows me flawless access to opening and/or moving emails.
    The arrow, however does not open the link.
    On the Google menu bar the cursor hand with finger opens the links to Everett (my name), Search, Images, Maps and Play.
    When I attempt to open the remaining links in the menu bar (YouTube, News, Gmail, Drive, Calendar and More) the arrow icon replaces the hand. The arrow icon does not work. It will not activate these links.  Nor does it open email messages in the Inbox.
    Usually I reset, even reboot Safire and sometimes the problem goes away, then reappears.
    Can you imagine if this condition should it happen to a tech savvy Google Support person? Perhaps one can share and make my problem go away.
    I am considering dropping Google as my mail source. Unfortunate!
    Everett Halvorsen
    [email protected]
    718.490.3824

    I have uninstalled my Access Connection, but this problem seems to persist. IBM technician have changed the wireless card of my T60, the first few days after it was changed was very fine, no problem at all. About a week later, the problem occured again, and it happened quite frequently after that occurence. Now i really have no idea what is the cause and how to solve it. Will be greatful if there is anyone that can help me.

Maybe you are looking for

  • Need information about Enhancement packages

    Hi all, We are planning to implement Enhancement Packages in our Solution Manager server. The primary purpose will be to generate reports for the BI and APO systems configured in the Solman 7.0 system-System status and health check reports. Can anyon

  • Hi i have a question for yours

    Hi; February 2013 en La. Get the apple store and 1 year warranty at the store, the ongoing iPhone 5 my device, I change from store apple store in europe? I would ask for your help Have a nice day. 

  • UME actions and Group permissions

    Hi there , New to portal and NWDI . How do you see what a UME action contains. i.e.  MANAGE_ALL . Do you need java skills or visual administrator to view. Also, using NWDI.Administrators group  , the group itself gives permissions outsided of just ha

  • Problem dialing some other users in my friends' li...

    Hi, I just installed Skype on Windows 8.1 Pro. I have a problem dialing some of my friends in the list and they cannot dial me too. Some I can dial though. Very strange! Any solution?

  • Urgent Requirement : XSD Validation for internal references

    Hi, I have a requirement , according to which....i have Invoice Date and Contract Date and XSD validations on these two fields are dependent. i.e, invoice date is required if contract date is absent . Contract date is required if invoice date is abse