Upload se61 doc in outlook

Hi All,
I have a req for which i have created a documnet in SE61 and now need to show the same document in outlook on button click.
I have used link to url ui element for this...
First to read the document i used:
      CALL FUNCTION 'DOCU_READ'
        EXPORTING
          id      = ls_dokhl-id
          langu   = ls_dokhl-langu
          object  = ls_dokhl-object
          typ     = ls_dokhl-typ
          version = ls_dokhl-dokversion
        TABLES
          line    = lt_line.
    ENDIF.
After this i am preparing the document:-
  LOOP AT /psc/cl_static=>st_mail_doc INTO ls_line.
    CONCATENATE lv_mail_body ls_line-tdline INTO lv_mail_body SEPARATED BY space.
  ENDLOOP.
and i inserted mailto:recipient?subject=...&body= lv_mail_body.
Now if i set this as reference to Link to Url element outlook dosent open any idea..???
Vishesh.

hi mate,
you willl have to take up this issue with the developer of the website / app that you are trying to access. Windows Phone does not have a file manager as such, therefore your only option of attaching is to use SkyDrive and provide a link to the file for other users to download.

Similar Messages

  • Upload a doc into SAP and then FAX it

    Hi
    I'm looking for a method of uploading a doc into SAP and then FAX it to a customer.
    What currently happens is this:
    1.  SAP creates a document, which is saved to a UNIX directory as a text file.
    2.  An external process takes this file, uses the info and creates a new file with alot  more info than SAP has.  This new file is saved to another UNIX directory.
    3.  This is where I'm stuck.  I would like SAP to upload this new text file (or files) and fax each one.
    The filename will contain a document number that SAP can then use to check customer master and obtain correct FAX number.
    Can anyone provide a few pointers?
    thanks,
    Stephen

    Hi Stephen,
    Your SAPConnect config basically sends a SAPOffice message to your fax server, so to send your unix file in the same way you need an ABAP to create a SAPoffice message.
    The steps in your program will be something like;
    Read the unix file (OPEN DATASET, TRANSFER etc)
    Format the data if necessary
    Use a function module like SO_DOCUMENT_SEND_API1 to create the message
    Provided you maintain the correct recipient parameters SAPconnect should process this to the fax server.
    An alternative is to create a spool then pass this to SAPoffice, the approach is similar but the FMs needed will be different.
    Regards,
    Nick

  • 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

  • Upload an .doc attachment into a blob field in Oracle

    sir i have to upload a .doc file into a blob field in the oracle database.
    help with any code, or code links
    The code i am having,pls suggest if any changes...
    String QUERY_ENHANCEMENT = "INSERT INTO EKMIS_ENHANCEMENT(USER_ID,ENH_TYPE,MODULE,DESCRIPTION,ATTACHMENT)";
         QUERY_ENHANCEMENT = QUERY_ENHANCEMENT+"VALUES(?,?,?,?,?)";
              PreparedStatement preparedStatement = connection.prepareStatement(QUERY_ENHANCEMENT);
         preparedStatement.setString(1, enhancementTO.getUserid());
         preparedStatement.setString(2, enhancementTO.getType());
         preparedStatement.setString(3, enhancementTO.getModule());
         preparedStatement.setString(4, enhancementTO.getDescription());
         try
              File anyFile = new File(enhancementTO.getPath());
              InputStream is = new FileInputStream(anyFile);
              preparedStatement.setBinaryStream( 5, is, (int)(anyFile.length()));
         catch(FileNotFoundException fnfe)
              System.out.println("Exception while archiving to BLOB/CLOB");
              fnfe.printStackTrace();
         return preparedStatement;

    the html form is like this..
    <table width="780" cellpadding="2" cellspacing="0" border="0">
                   <tr>
                        <td colspan="6" class="SectionHeader">USER COMMENTS/SUGGESTIONS/COMPLAINTS</td>
                   </tr>
                   <tr>
                                       <td height="18" class="boldLabel_RA">
                                            User Id
                                       </td>
                                       <td height="18" class="value_LA">
                                            <input name="userId" type="text" class="big" readonly="true" value="{sessionAttributes/ekmis.UserID}"/>
                                       </td>
                                       <td height="18" class="boldLabel_RA">
                                            User Name
                                       </td>
                                       <td height="18" class="value_LA">
                                            <input name="userName" type="text" class="big" readonly="true" value="{sessionAttributes/ekmis.UserName}"/>
                                       </td>
                                       <td height="18" class="boldLabel_RA">
                                            Select Type
                                       </td>
                                       <td height="18" class="value_LA">
                                            <select class="big" name="type">
                                                 <option value="0"/>
                                                 <option value="E">Enhancement</option>
                                                 <option value="S">Suggestion</option>
                                                 <option value="B">Bug</option>
                                            </select>
                                       </td>
                                  </tr>
                   <tr>
                        <td height="18" class="boldLabel_RA">Select Module</td>
                        <td colspan="5" height="18" class="value_LA">
                             <select name="mod" class="extralong">
                             <option value="0"/>
                                  <xsl:call-template name="getModules" >
                                       <xsl:with-param name="modules" select="requestParameters/param[@name='sat']" />
                                  </xsl:call-template>
                             </select>
                        </td>
                   </tr>
                   <tr>
                        <td colspan="6" class="SectionHeader"/>
                   </tr>
                   <tr>
                        <td height="18" class="boldLabel_RA">Description</td>
                        <td colspan="5" height="18" class="value_LA">
                             <textarea name="description" class="big"/>
                        </td>
                   </tr>
                   <tr>
                        <td height="18" class="boldLabel_RA">Add Attachment</td>
                        <td colspan="5" height="18" class="value_LA">
                             <input name="path" type="file" class="big"/>
                        </td>
                   </tr>
              </table>

  • Upload of doc through Archive link

    Good morning to all
    wht is the T-code for uploading the doc into the archive link????
    pls give me the step by step process
    Regards
    SURYA

    hi,
    TC- OAWD upload document.
    preequisite;
    1. u have to be defin document type
    2. u have to be link this doc type to content reopository
    3. u have to link this doc to link table [only for archive linking ex TOA01]
    4. u have to set work flow.
    Ex;
    spro>SAP NetWeaver>Application Server>Basis Services>ArchiveLink-->Basic Customizing
    u2022Maintaining Content Repositories TC-OACO
    Content repositories are logical units within a storage system.ZA
    u2022Maintaining Business object type
    Here you have to maintain standard business objects which are given by
    SAP.BKPF
    u2022Maintaining Document Classes
    The document class is the technical format of a document type (for
    example, PDF, TIF, DOC etc.).
    u2022Maintaining document types
    A document type groups documents of the same type together, Some
    customizing settings for storage scenarios are made according to the
    document type. Before a document is stored, it must be assigned to a
    document type so that the correct processing for the document is
    triggered.Z_FIINVICE
    u2022Maintaining Links
    You could link a document type to an object type, a content repository
    through a link table. TOA01
    After this u need to set work flow
    Customizing Incoming Documents>Workflow Scenarios>Use Workflow Wizard
    here u have to mention workflow nomber i gave earliyer.
    After this go to tc-OAWD, u will get Z_FIINVICE, double click and link doc to this doc type.
    A work flow task generates, open office mail, execute work flow, enter FI number and save.
    Benakaraj
    ??P

  • I was filling a form online, then I got to where I had to upload an Microsoft document but when I clicked on upload document I only had the option of uploading photos and videos, but not Microsoft doc. Please help.... How do I upload Microsoft doc related

    I was filling a form online, then I got to where I had to upload a Microsoft document but when I clicked on upload document I only had the option of uploading photos and videos, but not Microsoft doc. Please help.... How do I upload Microsoft doc  and other related office documents?

    tis true
    I know, I always do that but I was in a rush to get somewhere and I was relying on my thousand dollar Mac to do some kind of recovery or something. I know Microsoft always keeps temporary files (I think Mac does too, part of me asking here in this forum was for someone to tell me where I can find those files) and when you go to open Office Works then it gives you the option of opening the last recent documents, saved or not saved.
    I usually copy paste into my emial just in case something goes wrong with the created document but I just didn't have the time to login and do all that My loss, you live and you learn, BUT still if ANYONE got any info on this, PLEASE DO CHIME IN *keeping the hope alive*

  • I need to upload a doc. through a site.

    I need to upload a doc. through a site. only opportunity to get a photo upl

    Same problem here. I'm feeling a bit sorry I bought the ipad even though I own stock in Apple.

  • LSMW Upload FI DOC POSTING data problem (FB013,  RFBIBL01)

    Hello,
    I have to upload FI DOC POSTING data with LSMW.
    I'm using a batch input with the program RFBIBL01.
    In the step "Create batch input session", I get the following error:
    FB006     Session 1 : Transferred client 00M differs from system client 500
    FB015     ... Session record ...
    FB014     ... BGR00-STYPE 0
    FB014     ... BGR00-GROUP ###########5
    FB014     ... BGR00-MANDT 00M
    FB014     ... BGR00-USNAM ISCOB 0
    FB014     ... BGR00-START 0000000X
    FB014     ... BGR00-XKEEP /
    FB014     ... BGR00-NODATA
    FB013     ....Editing was terminated
    Does anyone know how to solve this error?
    Kind regards,
    Mahnk

    hi,
    pls refer to the error message:
    FB014 ... BGR00-GROUP ###########<b>5</b>
    FB014 ... BGR00-MANDT <b>00</b><i>M</i>
    FB014 ... BGR00-USNAM ISCOB 0
    00M sounds strange for a client?!
    here is a displacement!!!!
    the 5 in group belongs to the mandant and the M to the usnam i think
    <b>so change structure BGR00</b>
    A.
    pls reward useful answers
    thank you!
    Message was edited by: Andreas Mann

  • If i upload a doc to iCloud from my iMac and if i change it on my notebook whys isn't it then automatically updated on my Mac??

    If i upload a doc to iCloud from my iMac and if i change it on my notebook whys isn't it then automatically updated on my Mac??

    Welcome to the Apple community.
    It isn't automatically updated on your Mac, because it's not on your Mac.
    The document you have altered is in the cloud and needs re-downloading from iCloud.com, before you can see the changes on your Mac.

  • How to integrate Lotus Notes and upload Help Docs into SAP Portal

    Hi Experts,
    I got 2 questions with regards to content in portal...
    1) I got nearly 30 to 40 help documents (PDF & WORD) which users may refer when accssing CRM & BW system in portal.
    Currently they are stored in the Local Drive....i am trying to find a way to upload them portal...so the users can always have the docs the require
    and
    2) Can any one please update me in detail ...on how to integrate Lotus Notes into portal and configure Single Sign on  currently my Portal and Lotus Notes user id's are different
    Thanks in advance

    Hi Geethika,
    1. IF documents are on your local computer, Netweaver Portal has a KMC Addon (Knowledge Management and Collaboration). Within KM it is possible to run a Document Management Scenario. You can Create Folders within KM, give Access Rights to Users, Create an Iview to browse KM Folder then add that Iview to a Page or Role so users can access it.
    For this, please chech the online documentation via http://help.sap.com/saphelp_nw04s/helpdata/en/20/b46d42ea0b3654e10000000a155106/content.htm
    2. For Lotus Notes Integration, your Lotus Notes Server must be running on Windows Platform.
    For the rest configuration please check the following:
    Single Sign-On from SAP Enterprise Portal to Lotus Domino
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/94c4e390-0201-0010-09a3-d09e11b80671
    I've the latest version of SAP Ticket Verifier, if you couldn't find it, I can send it to you.
    regards

  • Uploading word doc into Internal Table

    Hi,
    Could you please let me know how to upload <b>A WORD DOC</b> into an Internal Table.
    The function WS_Upload is to upload a text file with extension DAT and not to upload .DOC.
    Please let me know the possibilities.
    Thanks
    Arun

    Hi Y Arun
    You may have to go for OLE, please check the link below:
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/library/technologies/an easy reference for ole automation.article
    Regards
    Ashish Jain

  • How can I upload a doc from my ipad to a yahoo group or a google group?

    I need to upload files to a Yahoo group and a Google group and also download files from those groups. I can download a doc attached to an email and edit that doc. I can then email it. But I cannot upload a file, though it asks if I want to upload a photo.

    Yes, iOS and Safari support uploading only Photos. I've not used it so this is not an endorsement, but others have reported that the iCab mobile browser has this feature though.

  • Content Areas / Upload ing Docs / TEMP space

    When uploading documents to content areas, the TEMP tablespace gets filled up and eventually runs out of free extents. (at the end user level, can't upload docs anymore)..
    Has anyone on this board come across this or have any solutions/ideas ?
    null

    You need quite a big TEMP tablespace. Increase the size. Ours is about 1GB and we have not seen this problem.

  • Ical upload from Google or Outlook

    Since updating my iPhone 5 to iSO 7.0.2 I cannot import calendar Files. I used to upload my work shift patterns from excel to Google Calendar for a year at a time then download the calendar file to my desktop, email it to my iPhone and the file would upload all my shift to iCal. The file now just sits in the email as an attachment and will not do anything. I have also tried a outlook export file which also does nothing.
    Any help most welcome. Thanks Tony

    Hello Tony,
    If the data's being transmitted to Google, you could potentially shave a couple of steps off of the process by setting up said Google account for Calendars on your device.
    Turn on iCloud, Google, Exchange, or Yahoo! calendars. Go to Settings > Mail, Contacts, Calendars, tap an account, then turn on Calendar.
    iPhone User Guide - Use multiple calendars
    http://help.apple.com/iphone/7/
    Cheers,
    Allen

  • Can Form Fields from uploaded WORD docs become Sharepoint columns ?

    Hello -
    We are in the process of uploading many Word docs from Shared drives to Sharepoint (2010 )
    Some of the Word documents have information stored in Form Fields. For Example : BuyerName & SellerName. These fields need to be used in SP for sorting, filtering etc.
    We have tried creating columns on Sharepoint with the same names (BuyerName & SellerName) but the information from the Word docs does not display in the corresponding Sharepoint columns once the docs are uploaded.
    Any advice on how to accomplish this would be greatly appreciated !

    Check if this helps you
    http://office.microsoft.com/en-in/sharepoint-help/use-external-data-columns-in-a-word-document-HA102847511.aspx
    http://www.ilikesharepoint.de/2013/07/sharepoint-connecting-metadata-in-office-documents-to-sharepoint-library-columns/
    http://solidspace.ie/index.php/how-to-insert-sharepoint-metadata-into-your-word-document-using-quick-parts-and-content-types/

Maybe you are looking for

  • Ipod wont snyc with itunes

    I had to restore my computer back to the factory issue. It crashed Since then I have had problems with my ipod. I have a fifth generation one that has worked perfectly for 2 years. Since i restored my computer I have had to do the 5r's removed and re

  • Menu options not showing up in Color

    The menu options, such as save and reconform, are not showing up in Color. They appear grey and I cannot click them. I have clicked out of my clips, what could I be missing? I am relatively new to Color.

  • IOS 6 safari how to get "open in" prompt back after it disappears

    When opening a pdf of word document in a web page in safari, you get a helpful "Open in ..." prompt. However it disappears very quickly. What's the best way to show that prompt again? The only way so far I've found is to open new tab and go back to o

  • Want to add an external DVD drive my IdeaCenter D400 HomeServer​.

      Anyone have an idea how to get the Server to see it.  I am going to use it to back up my DVD's using MyMovies.  I have connected it (Asus Slim Combo DVD/Blu-Ray Drive) via the rear USB connections and it is not visible.  The Asus DVD drive works fi

  • Javascript error in Chrome?!

    I exported my website as html and it works perfectly (almost) in Safari. When I launch it in Chrome it gives to following error: MuseJSAssert: Error calling selector function:SecurityError: Failed to read the 'contentDocument' property from 'HTMLIFra