Attaching a .doc file

I am not new to Mac but this is my first iPad. It is the 1st IPad.
I am looking for a job online. When looking for a job I need to attach my resume (.doc) to a web page.
Where I need to attach my resume there is no location showing up on the iPad such as Desktop or Documents for me to choose from.
Does anyone know how I can do this or an app I can get to do this?
Any help would be appreciated.

You can't do it via Safari, but I believe that the iCab Mobile browser supports uploading of some types of file : http://itunes.apple.com/us/app/icab-mobile-web-browser/id308111628?mt=8#

Similar Messages

  • Attach of doc file to website

    Is there anyway to attach my doc file eg: for those job search website need to attach my cv.

    Hi Arghadip,
    Thanks for the reply, but as I said I am new to workflows, please provide me with solution in detail.
    It would be helpful if you can provide me with the code.
    Regards,
    Piyush.

  • Attach a doc file to work item

    Hi,
    We have scenario in which we have to attach a document file to a work item of a workflow. The workflow is triggered by a Function Module (FM). The document file to be attached is place in the file system of the R/3 system. The FM provides the file name to the workflow. Please tell us how to attach a file to a work item?
    Also we are triggering the FM from an Enterprised Portal screen, so we cant use any transaction (T codes).
    We are trying to implement this using an SOFM object but no success. Please give the solution in detail as Im new to workflows.
    Regards,
    Piyush.

    Hi,
    We are triggering the FM from EP screen so no transaction screen would be available.
    Alternatively we have done the following:
    First we have placed the document file in a folder of the application server. Then an FM reads the file using OPEN DATASET and stores it in an internal table of type binary. Now using SWL__SOFM_CREATE_WITH_TABLE we are generating a key and this key is passed to the SOFM object, which is used to generate container element for attachment. The attachment is visible in the work item but when we try to open the attachment, microsoft word giving the following error:
    "the document may be corrupt or damaged. Use either the Recover Text converter or the Open and Repair feature. Both are available from the Open dialog. The Recover Text converter is in the Files of type: drop down and the Open and Repair feature is available from the Open button (select the down arrow and not the button itself)."
    We assume that  there is some problem while reading and converting the document file to binary and vise a versa. Is there any other way to keep it consistent and it works fine.
    Regards,
    Piyush.
    ps: the document files are the candidate's resume.

  • Problem in sending .doc file as an attachment.!

    Hi SDN,
    I am using FM 'SO_NEW_DOCUMENT_ATT_SEND_API1' to send a .doc file as an attachment i am filling the the table contents_hex with my internal table containing the data in hex format but the attachment coming to the SAP office inbox is not showing the actual data it's showing the file with all hex values.
    can any one tell the reason?
    Please give sample code if possible for sending a word file as an attachment..
    Regards,
    Rahul

    Hi Rahul,
    I am sending you the sample code I have written for TXT.
    you can use the same code for .doc with small modification.
    You use this code and check once and let me know.
    Sample code:
    Declaration:
    DATA : w_name TYPE sos04-l_adr_name.
    DATA: sent_to_all  LIKE  sonv-flag.
    DATA:
      l_datum(10),
      ls_docdata TYPE sodocchgi1,
      lt_objpack TYPE TABLE OF sopcklsti1 WITH HEADER LINE,
      lt_objhead TYPE TABLE OF solisti1 WITH HEADER LINE,
      lt_objtxt TYPE TABLE OF solisti1 WITH HEADER LINE,
      lt_objbin TYPE TABLE OF solisti1 WITH HEADER LINE,
      lt_reclist TYPE TABLE OF somlreci1 WITH HEADER LINE,
      lt_listobject TYPE TABLE OF abaplist WITH HEADER LINE,
      l_tab_lines TYPE i,
      l_tab_lines1 TYPE i,
      l_tab_lines2 TYPE i,
      l_att_type LIKE soodk-objtp.
    CONSTANTS : c_tab TYPE x VALUE '09'.     "tab delimiter between records.
    CONSTANTS : c_line(2) TYPE x VALUE '0D'.
    CONSTANTS : l_newline(2) TYPE x VALUE '0D0A'.        "To insert Newline.
    DATA: v_str LIKE lt_objbin.
    *Program logic
    Main Text
      lt_objtxt = 'Dummy heading. ' .
        APPEND lt_objtxt.
        lt_objtxt = '' .
        APPEND lt_objtxt.
    lt_objtxt = 'Dummy second line.'.
        APPEND lt_objtxt.
        lt_objtxt = '' .
        APPEND lt_objtxt.
        lt_objtxt = 'Regards,'.
         APPEND lt_objtxt.
        lt_objtxt = 'Field Service Team' .
        APPEND lt_objtxt.
        lt_objtxt = '----
        APPEND lt_objtxt.
    lt_objtxt = 'This is system-generated email;please do not reply to this
    message.'  .
        APPEND lt_objtxt.
    lt_objtxt = 'If there are any questions regarding this error message'.
        APPEND lt_objtxt.
    lt_objtxt = '----
        APPEND lt_objtxt.
    Write Packing List (Main)
        DESCRIBE TABLE lt_objtxt LINES l_tab_lines.
        READ TABLE lt_objtxt INDEX l_tab_lines.
      ls_docdata-doc_size = ( l_tab_lines - 1 ) * 255 + STRLEN( lt_objtxt ).
        CLEAR lt_objpack-transf_bin.
        lt_objpack-head_start = 1.
        lt_objpack-head_num = 0.
        lt_objpack-body_start = 1.
        lt_objpack-body_num = l_tab_lines.
        lt_objpack-doc_type = 'RAW'.
        APPEND lt_objpack.
    Create Message Attachment   "Attachmant of  file
        LOOP AT itab1.
          CONCATENATE itab1-bldat itab1-blart itab1-bukrs itab1-budat
                      itab1-monat itab1-waers itab1-xblnr itab1-bktxt
                       INTO lt_objbin SEPARATED BY c_tab .
          CONCATENATE  l_newline lt_objbin INTO lt_objbin.
          APPEND lt_objbin.
          CLEAR lt_objbin.
        ENDLOOP.
    Write Packing List (Attachment)
        l_att_type = 'txt'.
        DESCRIBE TABLE lt_objbin LINES l_tab_lines.
        READ TABLE lt_objbin INDEX l_tab_lines.
        lt_objpack-doc_size = ( l_tab_lines - 1 ) * 255
                                        + STRLEN( lt_objbin ).
        lt_objpack-transf_bin = 'X'.
        lt_objpack-head_start = 1.
        lt_objpack-head_num = 0.
        lt_objpack-body_start = 1.
        lt_objpack-body_num = l_tab_lines.
        lt_objpack-doc_type = l_att_type.
        lt_objpack-obj_name = 'Header file name'.
        lt_objpack-obj_descr = 'Header file name'.
        APPEND lt_objpack.
    *refresh bdclm.     "Attachemnt of second file
       CLEAR lt_objbin.
        LOOP AT bdclm.
          CONCATENATE itab2-indate itab2-intime itab2-tcode
                      itab2-longtext
                      INTO lt_objbin SEPARATED BY c_tab.
          CONCATENATE  l_newline lt_objbin INTO lt_objbin.
          APPEND lt_objbin.
          CLEAR lt_objbin.
        ENDLOOP.
        CLEAR lt_objbin.
    Write Packing List (Attachment)
        l_att_type = 'txt'.
        DESCRIBE TABLE lt_objbin LINES l_tab_lines1.
        l_tab_lines2 = l_tab_lines1 - l_tab_lines.
        READ TABLE lt_objbin INDEX l_tab_lines2.
    lt_objpack-doc_size = ( l_tab_lines2 - 1 ) * 255 + STRLEN( lt_objbin ).
        lt_objpack-transf_bin = 'X'.
        lt_objpack-head_start = l_tab_lines2.
        lt_objpack-head_num = 0.
        lt_objpack-body_start = l_tab_lines + 1.
        lt_objpack-body_num = l_tab_lines2.
        lt_objpack-doc_type = l_att_type.
        lt_objpack-obj_name = 'file name '.
        lt_objpack-obj_descr = 'file name '.
        APPEND lt_objpack.
    Create receiver list
        lt_reclist-receiver = '[email protected]'.
        lt_reclist-rec_type = 'U'.
        APPEND lt_reclist.
    Send Message
        CALL FUNCTION 'SO_NEW_DOCUMENT_ATT_SEND_API1'
             EXPORTING
                document_data = ls_docdata
                put_in_outbox = 'X'
                 commit_work = 'X '
    *put_in_outbox = ''
            IMPORTING
                sent_to_all = sent_to_all
    VALUE(NEW_OBJECT_ID) LIKE  SOFOLENTI1-OBJECT_ID
             TABLES
                 packing_list = lt_objpack
                 object_header = lt_objhead
                 contents_bin = lt_objbin
                 contents_txt = lt_objtxt
                 receivers = lt_reclist
    *COMMIT_WORK = X
             EXCEPTIONS
                 too_many_receivers = 1
                 document_not_sent = 2
                 document_type_not_exist = 3
                 operation_no_authorization = 4
                 parameter_error = 5
                 x_error = 6
                 enqueue_error = 7
                OTHERS = 8.
    Thanks,
    Yuvaraj

  • Upload Attachements(Doc File) into SAPand Read The same in BADI

    Hi All,
    I am Nagesh, and presently working on a BADI(NOTIF_EVENT_POST) for sending emails when a new Notification is created through QM01 Transaction Code, and its working very very fine. But now an additional requirement has come up, where i need to upload an Standard Format Word Document into SAP and then attach this file to the Mail to which the converted PDF Smartform file has been attached and then send both files in single mail to concerned Vendor. So I tried to upload the .Doc file into SAP by using OAER TCode with following Parameters
    Class name              :            PICTURES
    Class type               :            OT
    Object key               :            CAPA.
    I exactly dont know whether this is the right format or not, please help me, if this is possible or not.
    And also I uploaded the same doc file from application server to Presentation Server using Tcode CG3Z, to a ditectory which exists in SAP (Checked in AL11 Tcode). So the nhow to read that complete file to send the same as attachemnts without making any changes .
    Regards,
    Nagesh Kumar.
    Edited by: Nagesh Kumar on Mar 12, 2010 9:39 AM
    Edited by: Nagesh Kumar on Mar 12, 2010 11:32 AM

    Hi All,
    I am Nagesh, and presently working on a BADI(NOTIF_EVENT_POST) for sending emails when a new Notification is created through QM01 Transaction Code, and its working very very fine. But now an additional requirement has come up, where i need to upload an Standard Format Word Document into SAP and then attach this file to the Mail to which the converted PDF Smartform file has been attached and then send both files in single mail to concerned Vendor. So I tried to upload the .Doc file into SAP by using OAER TCode with following Parameters
    Class name              :            PICTURES
    Class type               :            OT
    Object key               :            CAPA.
    I exactly dont know whether this is the right format or not, please help me, if this is possible or not.
    And also I uploaded the same doc file from application server to Presentation Server using Tcode CG3Z, to a ditectory which exists in SAP (Checked in AL11 Tcode). So the nhow to read that complete file to send the same as attachemnts without making any changes .
    Regards,
    Nagesh Kumar.
    Edited by: Nagesh Kumar on Mar 12, 2010 9:39 AM
    Edited by: Nagesh Kumar on Mar 12, 2010 11:32 AM

  • Opening attached .pdf and .doc files

    I am having a mental moment and can't figure out how to
    (attach to button) import .pdf or .doc files so that they open when
    the project is published. The buttons are linked to files on my
    computer...when I publish, Captivate knows the files are there and
    tells me:
    "The files/projects listed below are linked to the open
    project. The linked files/projects may require exporting.
    It is also important to copy all referenced files and
    projects with their corresponding HTML files to the output folder."
    1. How do I export the linked files?
    2. What output folder is it refering to?
    Thanks in advance...I'm obviously new to captivate.
    js

    Hi again js
    Certainly linking to the documents from MenuBuilder is one
    approach.
    Are you saying the links from Captivate are failing you? You
    may wish to try a technique I outlined in
    this
    thread.
    Cheers... Rick

  • Attach .pdf and .doc files to Reply emails.

    I am desperately trying to figure out how to attach .pdf and .doc files to Reply emails in the Mail app. I have downloaded GoodReader, but when I go into "Manage Files" and choose "Open in...", Mail is not one of the apps listed for me to choose from (only Quickoffice and iBooks are listed, that's it). My Gmail account is pushed to the Mail app, if that's relevant at all.
    I'm hoping to be able to attach documents to Reply emails in the Mail app, but if I have to do it using my web-based email, that's better than nothing. I just really need to be able to attach them to Replies, and not compose a new email from scratch.
    I'd REALLY appreciate any help with this!
    Thanks.

    I thought I might be able to figure out a clever work-around by using cut and paste from a new message but this did not work as expected. I have been using the MobileMe iDisk app to store pdf files and then just mailing out the links.  I believe my cut and paste method would have worked with this, however I've got about a year now to figure out another way to do this if it is not included in Apple's new cloud service. This has actually been a better as I need to worry less about file size and don't need to have the files stored on the device.
    You may want to look into what on-line file storage solutions are out there and if they have the ability to send links to files to colleagues, possibly with password protection.

  • I can't open .doc files attached to the mail.

    After upgrading to the last version (31.6.00); I cannot open .doc files.
    I use Open Office 4.1.1.
    No problem with .xls or .pdf files. But neither the attachments in my sent mails nor the attachments in incoming mails type .doc can be opened by clicking on them. I have to first save to the computer than open the file which takes too much time.
    In the attachment you can see the error message.
    Here is the translation of the message:
    - Top window: File cannot be saved as an unknown error occured. Please retry.
    - Second window - below filename: Error - source mailbox

    Very interesting. It was written for doc type files: "OpenOffice Writer (defined)". (I made a translation maybe it is "default" in English version). Then i make it use another program and choose "Open Office Writer". Now it says OpeOffice Writer but no definer (or default) and it is working. Thank you very much Gnospen.

  • How to attach a .doc/.xls/.ppt file stored on the iPhone

    While Apple is making patches and updates for the Iphone... it seems they havent come out yet with a solution to solve the day to day problems of the Business
    users.
    I'm using the Iphone 5 for last 6 months.. but i'm still not a able to find a solution to do a simple task of attaching a .doc/.xls/.ppt file which is stored on my iPhone. Why it cant be made simple like other handsets and OS. Its so frustrating while traveling that if i have to send an attachment over a mail thread it can not be done in s simple attach file option. A complete new mail thread has to be started just to send a simple file. I think its high time that Apple really address the business needs which are logical to be there in such a supposedly high tech phone.
    I hope Apple is listening.. mean while if some has a solution please share.... really Important.
    regards,
    Business User

    This is a user-to-user technical support forum. You can leave feedback here: http://www.apple.com/feedback/
    If you are using Gmail or iCloud mail, a combination of the apps Mailbox and Dropbox work nicely. If it is a company MS Exchange deployement, Mail+ for Outlook will do the same with DropBox or Box (plus gives you your mail, tasks, and calendar in one app).

  • How to attach doc file in email

    How to attach doc file in email

    Hi and Welcome to the Community!
    Since you have balance, and the issue is in your Work domain, you need to work with your server admins, as it's possible they are forbidding (via IT Policy) the ability to do as you desire.
    Good luck!
    Occam's Razor nearly always applies when troubleshooting technology issues!
    If anyone has been helpful to you, please show your appreciation by clicking the button inside of their post. Please click here and read, along with the threads to which it links, for helpful information to guide you as you proceed. I always recommend that you treat your BlackBerry like any other computing device, including using a regular backup schedule...click here for an article with instructions.
    Join our BBM Channels
    BSCF General Channel
    PIN: C0001B7B4   Display/Scan Bar Code
    Knowledge Base Updates
    PIN: C0005A9AA   Display/Scan Bar Code

  • Staring 2 days ago Juno won't attach a *.bmp but will a *.doc file

    Up to 2 days ago I could send *.bmp (Paint) files on Juno with Firefox up to 20mb as attachments to text files. Now Juno with Firefox won't accept the file and "bounces" me back to the Home tab. When I use the Internet Explored as the browser for Juno, it accepts the *.bmp just as it did with Firefox. Juno with Firefox still allows me to attache substantial *.doc (Word) files.

    One additional finding this morning ... iTunes can't handle my iPad being connected.  Immediately upon recognizing the iPad, iTunes comes up with the same message as happens with the iPod indicating "iTunes has stopped working," forcing an immediate shut down of the program.  Opposite the case with my iPod, iTunes at least recognizes my iPad.
    No idea.  This is madening.

  • I bought your program to convert PDF files to WORD doc. files. I did this and when I send the files as an attachment to recipients the recipients say the attachment is blank! I want a refund!!

    I bought this Adobe program to convert PDF files to Word doc. files so I could e-mail them as an attachment to people who do not have Adobe Reader. When the people got my e-mail with the attachment and opened it. The attachment was BLANK!! Is there a way to correct this?? or should I just get my money back and cancel this program?

    Hi bogy,
    How very frustrating! I'm sorry that your email attachment was blank. I'm sure this is a silly question, but did the Word file display as expected on your own machine? If not, then the issue is quite likely with the conversion from PDF to Word (but what you describe isn't a common issue that we're hearing about).
    If it looks OK for you, then I suspect the issue lies outside of ExportPDF. If the Word doc is blank when you open it, then please tell me a bit more about the PDF that you're trying to convert and we will take it from there.
    Best,
    Sara

  • I'm suddenly unable to attach a word.doc file to my email-I get a message that reads error # 2038

    This problem just started

    Apparently you tried to open a DOC file as a PDF sometime and your system is confused. In any case, go to a DOC or DOCX file (or both) in Windows Explorer and right click. Select Open With and select WORD -- be sure to check always open with button.
    Check that other WORD documents open correctly from Explorer. Try your e-mail again. If the e-mail is not fixed, then search for a list of applications in your e-mail package (some do this) and correct the problem there. It might also be worth turning on the display of extensions in Explorer so you can see that a file is indeed a word file with the proper extension. (just trying to cover as many possibilities as possible right now).

  • Can not open .pdf or .doc files in mail

    Every time I receive an email with a pdf or .doc file attached I can never open it as I get a message telling me that the file was not recognised or that the file is invalid. Even if I select to open using Adobe for the pdf I get the same.
    Any help gratefully received. I've always had this problem and get round it by viewing these emails online instead. But it's not as convenient of course.

    G'day jbglass,
    I had the same problem, getting the same error message etc. I solved the problem by going to Google Chrome and using that to download the file ( a pdf brochure in my case).  That worked OK.  Hope this helps.
    fitzlefrog

  • Opening '.doc' files created by Appleworks

    Hi,I couldn't find any discussion of this so am posting a question.
    Pages 2.0 opens all our normal Appleworks word processor (cwk?) files OK, and also opens "real" ".doc" files created by Word (from others, we don't have Word).
    Pages won't open Word type ".doc" files saved from Appleworks, and gives a message that it is an incorrect file type. If I use "get info" to remove the .doc extension from the name, Pages will open the renamed file. So pages appears to be okay opening Appleworks saved .doc files only if I remove the .doc from the name.
    Kind of hard to do with several hundred files. Any suggestions?
    G42x800, G4Cube, Etc. Mac OS X (10.4.5)

    I don't know what the problem is exactly. When I save a document as Word (6 or 98) in AW, no .doc extension is added to the file name. But here is a solution to remove the extension, if that helps:
    Create a workflow in Automator. I use Automator on a german OS, I have tried to translate the commands, but you might have to search for the corresponding actions with a similar name.
    - Add the "Get Folder Content" action
    - Add the "Rename" Finder action
    - Select "Replace text" and replace ".doc" with nothing or with "AW doc"
    Then save the action as a folder plugin and attach it to a "Convert AW docs" folder.
    Any file dropped into the folder will be renamed according to your rules.

Maybe you are looking for

  • 5g iPod not recognized by iTunes

    Hello everyone, Merry Christmas I got a 5g 30gb iPod for Christmas this morning, and low and behold, IT WON'T UPDATE. I installed the program, restarted my computer, and hooked up the iPod. I went to open iTunes, and it wont open. Very strange......s

  • Network disconnects when using youtube on ipad air

    network disconnects and turns it self off when using youtube app on ipad air

  • Sync Outlook Calander will not work.

    I am having issues with my iphone synching my outlook calander to my iphone. It seems to have started after my most recent iphone software update. It is now current with the most recent updates. I have some outlook calander events on my iphone but no

  • Why automatically [automatically change time] setting in win8?!!

    in win8 that I have been install it on my macbook pro, system time automatically change after each time i set correct local time. i was disable automatic time in win8 configuration, but that's not work. i have a same problem with my previews system b

  • Internal Microphone No Longer Recognized.

    I used to be on Skype all the time with no problems, but I got on tonight to talk with some friends and my mic wasn't working. Checked the sound input and the option for the internal microphone was gone. I tried calibrating it under System Preference