How to Save the files attached in tasks

hi experts ,
i am using a BPM process, one requirement is to send the files across tasks. i know we have a facility in tasks where we can attach the files and send across, my question is where these files are stored during process and is there any way to access these files after the process ends(for future report generation). can we save these files in database too, so we can have the artifacts related to particular process instance available at our disposal.

Hello,
   In CE 7.2 BPM uses the Enterprise Content Managment (ECM) infrastructure to store documents that are part of a process. ECM can be accessed via API or WebDav (among others). Here's some more information:
[ECM|http://help.sap.com/saphelp_nwce72/helpdata/en/d7/f06a2108e64ababb6ba7b980376bc0/content.htm]
O.

Similar Messages

  • How to save the files to a USB memory plugged into the EVS-1463RT

    I am trying to collect images with EVS-1463RT by running a vi. The EVS has LV Real Time v13.0.1 installed. The vi runs well and save images to a folder ('C:\Images\') in the development PC. But, when I deploy the vi to EVS-1463RT, the vi cannot find the directory and nothing is saved in the folder. I am considering to save the files to a USB drive connected to a port on the EVS. Would it be possible to save the image files to a USB memory plugged into the EVS-1463RT? If so, what would be the file path to the USB connector?

    Thanks for the information.
    Then, the problem becomes where I get this "USB Storage Support". Search in the NI site doesn't tell me much other than something related to LabVIEW Communications System Design Suite. Is that what I need? I am not sure if I have it. If it is not easily available, another option can be using a CompactFlash card as long as I know the file path to use. Thanks.

  • One of my Pages documents is corrupted and won't open...how to save the file?

    We have the new iPad 3, and Pages. My friend was working on adding pictures to a document we're writing, and then the next day (or the same day) we tried to re-open the file and the app crashed, every time. We cannot share, send to itunes, email, or do anything with the file, and any attempt to open it crashes Pages. On iCloud.com, the file fails to download every time, whatever the format selected. And I have most of this file (without the pictures/edits) on her PC from the old Word days, but I'm trying to recover the Pages/iPad version with all the pictures in it.
    We have the newest iPad, updated iOS, and the newest Pages update (1.6.1 i think it is).
    I have only two or three guesses as to what the problem could be:
    -My friend sometimes doesn't remember to delete pictures before adding a picture in it's place (you know, if you add a picture in a certain spot and then decide to replace the picture for a better one), so there may be 8 or 9 pictures stacked on top of each other in one place. Maybe all that rendering is jamming up the app on this particular file. Other files we've worked on with/without pictures open fine.
    -The storage is full, so it's acting up like anything else does. We're new with the iPad so we haven't figured out what to do with photos and whatnot. My Mac is configured for my other documents and my appleid/icloud, and this iPad is on my friend's appleid, so I'll have to see about what I can do to back up to her PC.
    -There's a problem with Pages 1.6.1 (which I've seen written around the web).
    Any suggestions as to what the cause, or more importantly, solutions might be? I'm backing up everything else I can externally so restoring is an option. Also, I'm lucky enough NOT to have deleted the old Pages 1.6 file in her Recycle Bin, so I have that app file on her desktop. I'm not sure whether I should try deleting the app out of itunes/the iPad, and then see about dragging the old Pages back in, or what that will do to the important files (especially the corrupted one).
    Any advice would be helpful, even if I have to buy a recovery app of some kind. Advice on how to avoid the issue or report it to Apple would also be helpful!
    P.S. I already called AppleCare and they said something to the effect of they'll try something, eventually, they're not sure, etc etc.

    Try:                                               
    - iOS: Not responding or does not turn on           
    - Also try DFU mode after try recovery mode
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings
    - If not successful and you can't fully turn the iOS device fully off, let the battery fully drain. After charging for an least an hour try the above again.
    - Try another cable       
    - Try on another computer                                                       
    - If still not successful that usually indicates a hardware problem and an appointment at the Genius Bar of an Apple store is in order.
      Apple Retail Store - Genius Bar                              

  • How to Save the  file into R/3 Server Path

    Hi Friends,
    I have one Query on WDJ. Here I have two requirements.
    I have done click on u201CExport Excelu201D Button that data was download into Excel file Now my requirement is click on Save Button that file will save into (/exchange/CED) this path of R/3 System.
    CED -
    >is R/3 System ID
    Under System id we can save this file.
    Here EP Server and R/3 Servers in Diff Systems.
    I was write codeing
    InputStream text =      null;
         int temp = 0;
         try
         File file =      new File(wdContext.currentContextElement().getResource().getResourceName().toString());
    //       String File = "abc.xls";
    //       String file = "anat" + ".xls";
         wdComponentAPI.getMessageManager().reportSuccess("File::"+file);
         FileOutputStream op =      new FileOutputStream(file);
    //       FileOutputStream op = new FileOutputStream("D://usr//sap//BPE//"+file);
    //       FileOutputStream op = new FileOutputStream("D://KumarDev-BackUp//"+file);
         wdComponentAPI.getMessageManager().reportSuccess("op::"+op);
         if (wdContext.currentContextElement().getResource()!= null)
         text = wdContext.currentContextElement().getResource().read(false);
         while((temp=text.read())!= -1)
         op.write(temp);
         op.flush();
         op.close();
    //        path = file.getAbsolutePath();
         path =      "/exchange/CED/"+file;
         wdComponentAPI.getMessageManager().reportSuccess("path:"+path);
         catch(Exception ex)
              wdComponentAPI.getMessageManager().reportSuccess("ex.printStackTrace()");
    My Req is that file will saved in this path (path =      "/exchange/CED/"+file; )
    Regards
    Vijay Kalluri
    Edited by: KalluriVijay on Apr 20, 2010 11:01 AM

    Hi Friends,
    I have one Query on WDJ. Here I have two requirements.
    I have done click on u201CExport Excelu201D Button that data was download into Excel file Now my requirement is click on Save Button that file will save into (/exchange/CED) this path of R/3 System.
    CED -
    >is R/3 System ID
    Under System id we can save this file.
    Here EP Server and R/3 Servers in Diff Systems.
    I was write codeing
    InputStream text =      null;
         int temp = 0;
         try
         File file =      new File(wdContext.currentContextElement().getResource().getResourceName().toString());
    //       String File = "abc.xls";
    //       String file = "anat" + ".xls";
         wdComponentAPI.getMessageManager().reportSuccess("File::"+file);
         FileOutputStream op =      new FileOutputStream(file);
    //       FileOutputStream op = new FileOutputStream("D://usr//sap//BPE//"+file);
    //       FileOutputStream op = new FileOutputStream("D://KumarDev-BackUp//"+file);
         wdComponentAPI.getMessageManager().reportSuccess("op::"+op);
         if (wdContext.currentContextElement().getResource()!= null)
         text = wdContext.currentContextElement().getResource().read(false);
         while((temp=text.read())!= -1)
         op.write(temp);
         op.flush();
         op.close();
    //        path = file.getAbsolutePath();
         path =      "/exchange/CED/"+file;
         wdComponentAPI.getMessageManager().reportSuccess("path:"+path);
         catch(Exception ex)
              wdComponentAPI.getMessageManager().reportSuccess("ex.printStackTrace()");
    My Req is that file will saved in this path (path =      "/exchange/CED/"+file; )
    Regards
    Vijay Kalluri

  • Save the file and give date & time stamp

    1. Reading the Excel file from the selection screen as a parameter.
    2. Using F.M. ALSM_EXCEL_TO_INTERNAL_TABLE reading Excel file into
        Internal table.
    3. Implementing the Business Logic.
    4. Move output to Final Internal table.
    5. Final internal table should generate a Flat file. By using GUI_DOWNLOAD.
    6. That flat file should be saved with the name and location given in the Excel.
    7. When ever I run the program output file will generate in the same location but with date and time stamp. Because I’m running the program for range of employees say initially I run for 1 – 10,000 employees next 10,001- 20,000 like that.
    Whenever I run for 2nd time it will overwrite the previous output, that’s the reason I’m using date and time stamp.
    Eg:
    PERSONAL Numbers              Name                                         Location
    00000001                 xxxxx-24.04.2007-10.30          C:\        
    00000002                 xxxxx-24.04.2007-10.35
    00000003                 xxxxx-25.04.2007-10.40
    00000004                                  xxxxx-25.04.2007-10.30
    Can any one help me how to save the file and give date & time stamp through hardcode?
    please help me in this issue.

    I am not clear with your problem. Based on the understanding of your question,
    there  can be two cases.
    1- U want to insert time stamp in the output file.
    2- Time stamp is already there, u just have to solve the overwriting issue.
    If your question goes with option 2, You can make use of import parameters
    <b>CONFIRM_OVERWRITE</b> : Which will ask for confirmation before overwriting.
    <b>APPEND</b> : which you can choose either to append the data to the existing file or overwrite it.
    Please inform if the issue is not resolved.
    Message was edited by:
            BINU RAJ BINU

  • How can I get a pdf. to open in Safari, all i'm getting is a new window with a black, blank page, instead of the pdf., and I don't want to save the file to the desktop, Safari didn't use to do that, and I don't have Adobe in the internet plug in folder.

    How can I get a pdf. to open in Safari, all i'm getting is a new window with a black, blank page, instead of the pdf., and I don't want to save the file to the desktop, Safari didn't use to do that, and I don't have Adobe in the internet plug in folder.

    Hi
    Please take a look to this thread Re: Can I refresh the browser rather than open a new tab?

  • How do i save the files during home sharing

    ok, here goes. i am in now way shape or form a tech boff so i guess all i can do is attempt to expalin my issue..
    i have recently gotten a new pc and i am wanting to use the home sharing function to some what transfur my music library from my laptop (where i originally set up my iphone 3gs) to my new pc. so far i have sucessfully set up the home sharing link between the 2 and i am fully able to look at the laptop library from the new pc, however i have no idea how to save the music so i can then re-sync my iphone to the new pc as the laptop is way out of date and struggles with the most basic things.
    so, i looked on youtube in an attempt to figure it out and ended up frustrated, there are many mentions of a settings button which should be located at the right hand bottom corner, i dont have that. there is mention of dragging and dropping the files i want from the home sharing into my new pc itunes that doesnt work. i have tried to create a new playlist with the home sharing from the laptop, that doesnt work. so here i am, willing for an answer as to if im doing something wrong or if what im wanting to do isnt possible..
    thank you

    1. Enable Home Sharing on both systems
    2. Open iTunes on both of them
    3. iTunes on the desktop should list your laptop's library by now, if all goes well
    4. Browse your laptops music labrary, select, and click "import" located on the bottom right hand corner.
    I borrowed this image from the web https://img.skitch.com/20110812-ntquew6be33xuhb9685rx1b5it.jpg

  • How to save a file in the newer version of muse to use it in an older version of muse

    I started to work in a project at home with a 30 day trial of the latest Muse,  I was going to continue working at school, and I can't open it. So how can I save the file to open it in an older version?

    Hi Luisis,
    Any file that is saved in the latest version of Muse cannot be opened in any previous of Muse and as of now there is no option available in Muse such that you can save the file in such a manner that it opens in the previous version.
    However, I would request you to post this as a feature request at Ideas for features in Adobe Muse
    Regards,
    Rohit Nair

  • Good day! When saving a file in Illustrator, I can not keep the older version. How You can save the file in an older version?

    Good day! When saving a file in Illustrator, I can not keep the older version. How You can save the file in an older version?

    When you save a file that's what options offers application
    05 мая 2014 г., в 13:40, Jacob Bugge <[email protected]> написал(а):
    sage go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page:
    To unsubscribe from this thread, please visit the message page at . In the Actions box on the right, click theStop Email Notifications link.

  • Could u plz help me to find simple example for how to save data file in a spread sheet or any other way in the real time controller for Sbrio 9642 using memory or usb flash memory

    Could u plz help me to find simple example for how to save data file in a spread sheet or any other way in the real time controller for Sbrio 9642 using memory or usb flash memory

    Here are a few Links to a helpful Knowledge Base article and a White Paper that should help you out: http://digital.ni.com/public.nsf/allkb/BBCAD1AB08F1B6BB8625741F0082C2AF and http://www.ni.com/white-paper/10435/en/ . The methods for File IO in Real Time are the same for all of the Real Time Targets. The White Paper has best practices for the File IO and goes over how to do it. 
    Alex D
    Applications Engineer
    National Instruments

  • How do I tell Adobe reader to open a file instead of being prompted to save the file?

    how do I tell Adobe reader to open a file instead of being prompted to save the file?

    Go to Tools - Options - Applications and enter "pdf" into the filter field. Select the action that you want to associate with PDF files.
    In your case select one of the "Use Adobe Acrobat" actions.

  • When I try to open a pdf link in my browser I am asked where I want to save the file.  I used to be asked if I wanted to open the file.  How do I get back to being asked if I want to open rather than save?

    When I try to open a pdf link in my browser I am asked where I want to save the file.  I used to be asked if I wanted to open the file.  How do I get back to being asked if I want to open rather than save?

    What browser?

  • When I try to download update, I save the file as directed. However, the update is not applied. How do I apply the update for Firefox?

    I am being prompted to download the update to a new version of Firefox. When I click on download, I receive a window to save the file. I save the file instead of canceling. After the download has been saved, my version of Firefox still has not been update. How do I apply the update?

    Thanks Alex, but sadly I already tried that. Neither .docx or .xlsx files show up in the content list. They both show as a Chrome HTML document so changing how Firefox addresses those doesn't help since it thinks its the same type of file. I don't think I can manually add files into the "Content Type" left side nav.

  • How to save the client file to DB?

    I use ENCTYPE="multipart/form-data" in the html,post the file binary stream to my servlet,but I don't know how to get the file binary stream and save them to the DB :
    The html:
    <form name="frmMain" method="POST" ENCTYPE="multipart/form-data" action="servlet/myservlet">
    <input type="file" name="fileName" size=35>
    <input type="submit" value="submit" >
    </form>
    The servlet included:
    String sql="insert into test(id,photo) values(?,?)";
    PreparedStatement ps=conn.prepareStatement(sql);
    ps.setInt(1,getNextId());
    ps.setBinaryStream(2,in,in.available()); //"in" is InputStream
    ps.executeUpdate();
    ps.close() ;
    how to get InputStream?how to write my servlet ?
    Thank for any help!
    Thanks in advance!

    Well, I'm not sure to have understood what you want to do, but you can get the inputStream of the client with HttpServletRequest.getInputStream() (for example in the doPost() method of your servlet).
    Just be careful that, in this way, you will retrieve the whole HTTP stream, including headers and multipart separators. You should parse this stream if you want to get only the binary stream of the file posted...
    Well, in fact you just have to implement/obtain a basic upload servlet...
    Hope it helps...

  • How to save the pdf file or word doc into sap table

    Hi Expertu2019s
       I have a pfd file in my presentation server .Now I want to save the pdf file into sap table using module pool program. Whenever i need, I want to open that file from the table and show it in the Screen. Please any one tell me how I can save the file. What is the table name, guide me.
    Regards,
    S.Nehru.

    Hi,
    Try the following code
    FORM gui_upload.
      DATA: lv_filetype(10) TYPE c,
            lv_gui_sep TYPE c,
            lv_file_name TYPE string.
      lv_filetype = 'PDF'.
      lv_file_name = <name of ur file>.
    DATA: tb_file_data TYPE TABLE OF text4096.
    * FM call to upload file
      CALL FUNCTION 'GUI_UPLOAD'
        EXPORTING
          filename                = lv_file_name
          filetype                = lv_filetype
          has_field_separator     = lv_gui_sep
        TABLES
          data_tab                = tb_file_data
        EXCEPTIONS
          file_open_error         = 1
          file_read_error         = 2
          no_batch                = 3
          gui_refuse_filetransfer = 4
          invalid_type            = 5
          no_authority            = 6
          unknown_error           = 7
          bad_data_format         = 8
          header_not_allowed      = 9
          separator_not_allowed   = 10
          header_too_long         = 11
          unknown_dp_error        = 12
          access_denied           = 13
          dp_out_of_memory        = 14
          disk_full               = 15
          dp_timeout              = 16
          OTHERS                  = 17.
      IF sy-subrc <> 0.
    * MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
    *         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    ENDFORM.                    "gui_upload
    I dont think you can save the data into sap tables in PDF format.
    With the above code you can save data into an internal table.
    Regards,
    Manish

Maybe you are looking for

  • HT4539 how can i add a new device in iTunes in iCloud- Manage devices??

    Hi! I have an iphone 5 with the software iOS 6.0.2 nd a Mac with the software OS X 10.8.2. The option of automatic downloads is enabled on both my devices but when i view my apple account it shows that my iphone hasnt been added to the list of device

  • Iphone3g without apps, since all of them are for ios 5 now...

    Is there any way to download OLD apps versions? cause all the ones i download are not compatible with the 3g. I have an empy 3g ihpone....

  • BDC for customer data

    Hi, I am recording customer. I am going through shdb after entering all, finally in the contact person tab its throughing  error like enter valid value. In the contact persong tab fields are fromof,name,firstname,telephone no,department,function and

  • RMAN 9i

    We need to use production backup files from 5 days ago in order to refresh a test database for troubleshooting purposes. Our recovery window is set to 0 days in production. We restored the RMAN files from tape. The issue is that, with 9i, I can't see

  • I updated my flash plugin and Firefox no longer has it.

    I updated my Flash plugin to the latest version. Since then, Firefox has, instead of saying that I should update it, said that I should install it. The flash plugin does not appear in the add-ons manager, and flash content works fine in other browser