Attaching Documents within SAP

Hi Everyone,
When attaching documents to SAP, either through journal entries or sales orders or PO's, is there a best practice to use such as using Services for Objects -> Create -> Create Attachment or Store Business Document?  Do they both archive?  I noticed that I can't use Business Document everywhere since it greyed out such as in the PO.  Is there a reason for it?  Just looking for general ideas as to what to do and which approach would cause the least amount of space being taken from our server. 
Any thoughts?
Thanks,
Pete

Pete,
I am not aware if a BP exists, and believe a seperate serve/repositories will be configured to handle archiving documents. Please check with you basis team.
Please check the setting SAP NetWeaver >General Settings> Application Server> Basis Services > ArchiveLink
Regards,
Somar

Similar Messages

  • Loading attached documents from SAP R/3 system to BW/BI system

    Dear Experts,
    In SAP R/3 system, I created generic datasource to extract sales activities which are entered with transaction code VC01N.  In SAP R/3 system, it is possible to attach documents (like word, Excel, pdf) to the sales activity. I need to upload these documents to SAP BW system as document to sales activity master data. I couldn't find where these attached documents are stored in SAP R/3 system. How can I find these documents?
    If I find these documents, I will be able upload these to BW using "How to Mass Upload Documents to BW" document.
    Thanks,
    Ozgur Yavuzkara

    Hi Girish,
    I don't understand your question completely. Is your question related to the Internet Transaction Server? If it is a Web Dynpro question, I can move this thread to the Web Dynpro forum. What do you think?
    - Henning

  • How to Attach Document in SAP Mail

    hi
       I want to attach a document in the SAP mail, but it should open in the SAP itself.like ALV grid FOrmat.
    Thanks in advance.

    Hi,
    Try this m not very sure this is wht u reqd or not???
    DATA method1 LIKE sy-ucomm.
    DATA g_user LIKE soudnamei1.
    DATA g_user_data LIKE soudatai1.
    DATA g_owner LIKE soud-usrnam.
    DATA g_receipients LIKE soos1 OCCURS 0 WITH HEADER LINE.
    DATA g_document LIKE sood4 .
    DATA g_header LIKE sood2.
    DATA g_folmam LIKE sofm2.
    DATA g_objcnt LIKE soli OCCURS 0 WITH HEADER LINE.
    DATA g_objhead LIKE soli OCCURS 0 WITH HEADER LINE.
    DATA g_objpara LIKE selc OCCURS 0 WITH HEADER LINE.
    DATA g_objparb LIKE soop1 OCCURS 0 WITH HEADER LINE.
    DATA g_attachments LIKE sood5 OCCURS 0 WITH HEADER LINE.
    DATA g_references LIKE soxrl OCCURS 0 WITH HEADER LINE.
    DATA g_authority LIKE sofa-usracc.
    DATA g_ref_document LIKE sood4.
    DATA g_new_parent LIKE soodk.
    DATA: BEGIN OF g_files OCCURS 10 ,
            text(4096) TYPE c,
          END OF g_files.
    DATA: fold_number(12) TYPE c,
          fold_yr(2) TYPE c,
          fold_type(3) TYPE c.
    PARAMETERS ws_file(4096) TYPE c DEFAULT 'c:\ Vikalp Solutions'.
    Can be any file from your pc....either xls or word or ppt etc...
    g_user-sapname = sy-uname.
    CALL FUNCTION 'SO_USER_READ_API1'
    EXPORTING
       user                            = g_user
       PREPARE_FOR_FOLDER_ACCESS       = ' '
    IMPORTING
       user_data                       = g_user_data
    EXCEPTIONS
       USER_NOT_EXIST                  = 1
       PARAMETER_ERROR                 = 2
       X_ERROR                         = 3
       OTHERS                          = 4
    IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
    ENDIF.
    fold_type = g_user_data-outboxfol+0(3).
    fold_yr = g_user_data-outboxfol+3(2).
    fold_number = g_user_data-outboxfol+5(12).
    CLEAR g_files.
    REFRESH : g_objcnt,
              g_objhead,
              g_objpara,
              g_objparb,
              g_receipients,
              g_attachments,
              g_references,
              g_files.
    method1 = 'SAVE'.
    g_document-foltp  = fold_type.
    g_document-folyr   = fold_yr.
    g_document-folno   = fold_number.
    g_document-objtp   = g_user_data-object_typ.
    *g_document-OBJYR   = '27'.
    *g_document-OBJNO   = '000000002365'.
    *g_document-OBJNAM = 'MESSAGE'.
    g_document-objdes   = 'testing by program'.
    g_document-folrg   = 'O'.
    *g_document-okcode   = 'CHNG'.
    g_document-objlen = '0'.
    g_document-file_ext = 'TXT'.
    g_header-objdes =  'testing by program'.
    g_header-file_ext = 'TXT'.
    CALL FUNCTION 'SO_DOCUMENT_REPOSITORY_MANAGER'
      EXPORTING
        method            = method1
       office_user        = sy-uname
       ref_document       = g_ref_document
       new_parent         = g_new_parent
    IMPORTING
       authority          =  g_authority
    TABLES
       objcont            = g_objcnt
       objhead            = g_objhead
       objpara            = g_objpara
       objparb            = g_objparb
       recipients         = g_receipients
       attachments        = g_attachments
       references         = g_references
       files              = g_files
      CHANGING
        document          = g_document
       header_data        = g_header
      FOLMEM_DATA        =
      RECEIVE_DATA       =
    File from the pc to send...
    method1 = 'ATTCREATEFROMPC'.
    g_files-text = ws_file.
    APPEND g_files.
    CALL FUNCTION 'SO_DOCUMENT_REPOSITORY_MANAGER'
         EXPORTING
              method       = method1
              office_user  = g_owner
              ref_document = g_ref_document
              new_parent   = g_new_parent
         IMPORTING
              authority    = g_authority
         TABLES
              objcont      = g_objcnt
              objhead      = g_objhead
              objpara      = g_objpara
              objparb      = g_objparb
              recipients   = g_receipients
              attachments  = g_attachments
              references   = g_references
              files        = g_files
         CHANGING
              document     = g_document
              header_data  = g_header.
    method1 = 'SEND'.
    g_receipients-recnam = 'MK085'.
    g_receipients-recesc = 'B'.
    g_receipients-sndex = 'X'.
    APPEND g_receipients.
    CALL FUNCTION 'SO_DOCUMENT_REPOSITORY_MANAGER'
         EXPORTING
              method       = method1
              office_user  = g_owner
              ref_document = g_ref_document
              new_parent   = g_new_parent
         IMPORTING
              authority    = g_authority
         TABLES
              objcont      = g_objcnt
              objhead      = g_objhead
              objpara      = g_objpara
              objparb      = g_objparb
              recipients   = g_receipients
              attachments  = g_attachments
              references   = g_references
              files        = g_files
         CHANGING
              document     = g_document
              header_data  = g_header.
    Hope this helps u.
    Thanks.
    Seema.

  • Upload and attach documents within dialog programs

    Hi
    I need to include an 'Add attachment" option on one of my screens. (I am busy developing a stand-alone labour relations system in R/3. The system is case number driven) The option should allow for the user to upload related documents which should be linked to a case number. The user should then be able to view these documents later during display mode.
    Should I use one of the DOCU_* Function Modules to attach the document to the case number? Should the documents be uploaded to the server first?
    Is this at all possible?
    Your advise will be appreciated and examples are also welcome.

    Hi
    I think you should use the Services for Object: it's the tool allows to manage many functions to be linked to a document (object): to create note, add attachment and ....
    In the standard the icon to run "Services for Object" is up on the left of the screen (see FB03 for example).
    I've never used them, but I think it isn't very hard. I know you can create it for a custom transaction.
    See SAP HELP:
    http://help.sap.com/saphelp_46c/helpdata/en/24/370b374e4e7c64e10000009b38f839/frameset.htm
    Max

  • Attached document in pdf & saving information on it..

    Is it possible to save data on the attachment document within a pdf ( I use a button action/link set to open the "attachment doc" )??
    I need to be able to open click on the button to have the credit application open... allow users to fill it out and close it to get back to the main document (order form) and then use the submit button to send it all...
    Whenever I fill in the information on the attached doc and close it... one I lose the information when I reopen and two it closes the whole document...
    Can anyone help on this~
    Thanks so much!

    Thank you... you are saying add the credit application as the last pages in the original pdf, correct?
    That will probably not be what the boss wants, as I already pitched it to him.
    I am not knowledgeable of the fdf and xfdf ... so I will have to read up on that.
    I did try to do a tester using fdf as my choice in document type, but it did not work.  I would submit via email, but the document could not open and gave me an error.
    appreciate the suggestion and will read up on the different formats you suggested.

  • When attaching documents using GOS send them with workflow

    Hello experts,
    I have a scenario. We have to attach documents to SAP application using GOS. These documents can be edited also.
    Now second part is that when we attach the document or edit the document, the document should be send with the work item "when we attach the document".
    The first part of the scenario is completed and working fine. The second part of the scenario is causing problem. I have checked the various options but none of them are proving helpful.
    There is an option in GOS toolbar to send the documents through workflow but that also asks for the related workflow.
    I was trying to create an event for GOS object which can trigger the workflow automatically when the attachment are created and edited but can not go further with it as not so strong in workflow.
    I request you to kindly help me either in creating this event which will trigger the workflow (whole process) or any other method to do the same.
    Thank you all in advance.

    Hello Andrés,
    Thank you for replying. The main problem is starting the workflow. For that I need to create an event and that is my biggest trouble. I have seen the object IFSAP already. There are no events in it and as such I have created my custom object as super type.
    So I need to create the event from scratch.
    Hope my requirement is clear.
    Thank you.
    Edited by: Apoorv Lohani on Feb 3, 2012 7:54 AM

  • Attach document in MIRO

    HI,
    I want attached document in SAP MIRO with invoice,
    please guide me or suggest any configuration required.
    Thanks
    Shital

    Hi Shital,
    You donot have GOS functionality in MIRO
    The System must have an object as a document to provide the services
    ('Services for Object'). If you create an invoice in MIRO only after
    the whole prosess finishes will be an object created.
    So the functionality isn't avaiable. You can see the same behaviour,
    also in the other enjoy transaktions (FB60, VF01..) as well.
    But you can attached your attachments after posting the documents as
    well.
    Currently these services are only available in the transaction MIR4 or MIR7,
    Check Note 1231039 - MIRO: GOS linkages

  • Link attached document to content server  ( CS )

    Hi,
    does any one know how to store order attachement documents into SAP Content Server?
    Thanks.

    If you want to store documents in a content server. Then ofcourse you first need to instal it.
    This is what you need to do:
    Follow this official SAP installation guide to instal your content server (if you don`t already have it.)
    You can click this link below:
    Official SAP DMS installation guide
    After this installation go to:
    CSADMIN - Here you create a content repository. Connect it to your installed content server.
    OAC0 - Here you specify the repository. It is a DMS system.
    OACT - Create a Storage Category (same settings) and connected it to your content repository.
    S_ALR_87008832 - Create a frontend system (for example PC or some random info, it doesn`t matter)
    S_ALR_87008829 - Add the applications you want to use by which extensions. Like ".doc" open with word. (Select how to open, etc. with "%AUTO%")
    S_ALR_87008971 - Now create a profile ID. You will now use your previously created frontend system, the applications you have entered, connect it to your storage category and you will give acces to a user or a group of users.
    Final step: S_ALR_87008831 Create a document type. (DIR = Document Information Record). Here you connect the document to any type of object you want. You can also connect it to an order or anything you wish..
    Good luck and enjoy,
    Best regards,
    Jan Daniël
    ps. If this doesn`t work. You might need to update your SDOKPROP table.
    You can do this manually or by the following official SAP note: sapnote_0001400866
    Edited by: J. D. Jongsma on Jul 8, 2011 3:12 PM

  • Attachments within SAP

    Hi,
    I'm really after a bit of knowledge and understanding with regerads attaching documents within PA30 onto an employee's record. How is this done? What can be attached - Word docs etc???
    Any help would be gratefully received
    Thanks
    Neil

    Check out this thread
    Re: Add Attachment to pernr in PA30

  • Automate attach docs to SAP Objects and store in FileNet P8 and Toa01 table

    Hi..
    I would like to know how to automate the process of attaching documents to SAP objects and simultaneouly store the documents in Filenet P8 Database creating a link in the archive table T0A01.
    Appreciate all your thoughts <b><REMOVED BY MODERATOR></b>..
    Thanks.
    Message was edited by:
            Alvaro Tejada Galindo

    Hi.
    1) Is that true? Do I need to purchase the P8 adapter?
    Yes you have to buy this adapter. the sap systems communicates via archive link with acsap.
    2) Will upgrading to 4.5 allow us to communicate to P8 without the adapter?
    NO, sorry.
    3) Or finally, is no change required?
    see qustion one...
    best regards, Martin

  • Attach document (pdf) to a contract in SAP

    Hello,
    we use contracts (ME31K). We now scanned in documents and would like to attach them to the contracts in SAP. Is this possible?
    thanks

    Hi,
    This is not going to keep that attachement through any other transactions or functions. It merely attaches it to that object (i.e. the contract) within that transaction only. So you wil have to come back to this transaction to view the attachement, it cannot be seen anywhere else in SAP.
    In ECC6 etc. there is a proper function for attaching documents to records like this but in 4.6 you only have this small function.
    The icon is just under the green tick (to the left of the OK code field). Click on it and you will get a menu bar that appears, click on the first icon to create an attachment.
    Steve B

  • How to add attachment to FI document from sap server

    Hi.SAP experts:
        I have files on SAP Server,and I want to attach these files to my FI Document,how could I achieve this goal without download the files into my local computer??
    Best Regards
    Martin Xie

    This could help you:
    http://www.whypad.com/posts/sap-attach-documents-to-a-journal-entry/45/

  • Using Document Management within SAP

    Hi,
    I'm relatively new to SAP and need to have some information about using the Document Management Services within SAP.  As with other ERP products there are drawbacks to allowing this functionality such as disk space concerns, upgrades, performance issues.  Based on some other threads I've read about this it looks like some of the options can be disable to eliminate some of the disk space concerns. 
    Could anyone point me to a good document that describes Document Management Services and the benefits/drawbacks?  I would also be extremely interested in personal experiences of why you would and wouldn't use it.
    Thanks,
    Julie

    Hi, Julie
    Purpose;
    The Document Management Service (DMS) is a service of the information management infrastructure provided by the Knowledge Provider within the framework of SAP Web Application Server. The central task of the DMS is to process documents and document-like objects on the basis of application-specific content models. Only the DMS can modify document administration data and save this data in a storage medium, such as the SAP database.
    Implementation Considerations;
    In order to use the DMS, you need to implement some Customizing steps. For details, see the Implementation Guide (IMG) under the following path: SAP Web Application Server ® Basis Services ® Knowledge Provider ® Document Management Service. The IMG modules contain details on the individual Customizing activities.
    http://help.sap.com/erp2005_ehp_04/helpdata/EN/1a/aea9375d79fb7de10000009b38f8cf/frameset.htm
    Also go through these urls for further information
    DMS
    http://help.sap.com/erp2005_ehp_04/helpdata/EN/04/92713a46f311d189470000e829fbbd/frameset.htm
    http://help.sap.com/erp2005_ehp_04/helpdata/EN/c1/1c31a243c711d1893e0000e8323c4f/frameset.htm
    http://help.sap.com/erp2005_ehp_04/helpdata/EN/bd/8063fbbc43c54e901dd7733d946198/frameset.htm
    Benkaraj
    ??P
    Edited by: benaka rajes on Jul 23, 2009 11:42 AM

  • Attach external documents to SAP

    Hi
    we are planning to attach external documents to purchase order in ME22N screen. & every month 10gb files
    I would like to know the below points
    do we have any limitation for attachment?
    what potential risks are involved using this functionality?
    Will the transactions/SAP performance be impacted?
    when do we need to go for DMS?
    Thanks
    Raju

    A DMS record points to a content server on which resides the attached document. If you wish not to use DMS, then attaching documents at PO will take some time, given the size of you attachments. I do not believe the performance will take a major hit, there should not be major problems with that. You can always assess the performance by attaching big size document with POs in your Development and Quality systems.
    DMS is a centralized content management solution provided by SAP. It offers to store various kinds of documents such as drawings, designs, commercial/technical specifications, equipment specifications, etc. there is not a set formula as when to opt for DMS and when to not. You may explore the features of SAP DMS and if the business finds it a value addition, you can use it.

  • Creating documents (cases) in SAP RM within SAP EP

    1. What business packages can be used to create documents (cases) in SAP Records Management within SAP Netweaver Portal?
    2. How can we change the Portal web forms to create SAP Records Management documents (cases)?

    Visual Composer + BAPI

Maybe you are looking for

  • Nokia Internet Radio Error: Connection Timed Out. ...

    Hi, I'm having an issue with the Nokia Internet Radio application on the Nokia N95. The app launches ok but if I try and browse the station directory or perform a search I get the error 'Connection Timed Out. Try Again' This happens almost instantly

  • To display parameter value

    Is it possible using SBO, getting a value as Parameter and displaying the same as result? can i go for Query Analyser? for b'coz no specified table value can be taken for this issue. For eg, using Query Analyser, i have created table holding only one

  • JTree Repaint Problem .

    I'm creating a dynamic JTree by querying th DB. The JTree has to reflect the changes if any. But the problem is that although I'm getting all the correct nodes in the JTree, the tree display is not repainted if the window is maximized or focussed and

  • Grid Control 11g

    Hi, I am installing Oracle Enterprise Manager 11g Grid Control Release 1 (11.1.0.1.0) New! for Microsoft Windows (32-bit) Can this be installed on a windows 2008R2 64 bit? The doc does say: Do NOT try to try install a 32-bit software on a 64-bit plat

  • Mac Office not working after migration

    I just migrated my applications and other items from my old PowerBook G4 running Tiger onto my new MacBook Pro. I was able to open all the applications for Mac Office on my new MacBook Pro but for some reason I cannot open the same applications on my