Mutiple file sender to mutilple file response

Hi
I have a scenario where i am receiving the multiple files from source at  same time...XI has to pick up all files at single ( I think we can do that using the File masking ) but the problem is i want the response back to each sender file...how we do that
Multiple file -
> XI------->R/3
Multiple files <----- XI<----- Response from R/3   
How we achieve that
venkat

hi,
  if ur files are start with the same Names like
  File1,File2,File3,File4,File5 then just give the FileName as File*.xml...
  if u give file mask also it will pic up and process the files separatly..it wont appent the messages..
  It will process  Serialize  queue..if u see the SXMB_MONI then 5 messages process separatly with some
  time difference...so Multiple output files will create...
Regards,
Prakasu

Similar Messages

  • Is it possible to keep an edge animation (OAM file) responsive in Muse CC ?

    Hello Everyone,
    I'm trying to have these 4 images below responsive on Muse CC. (don't pay attention to the menu bar)
    They are meant to be link images with a caption which appears on hover.
    I know I'm not meant to be able to do responsive in muse but Edge animate is meant to work with Muse CC and Edge animate creates responsive animations if set for it.
    I thought if I create responsive animations on Edge it would work in Muse CC but it doesn't seem to be responsive in Muse.
    Is it because I missed something or there are no ways to make oam files responsive in Muse ?
    The responsiveness works when I test it from edge to a web browser.
    I'd be so grateful to get suggestions how to do this effect even without Muse knowing that I don't code much.
    In advance thank you and I'm looking forward to see what I get from this request for help as it is the very first time that I participate to a forum.
    Leon
    I'm desperately trying to find a way

    Shadowfax is right. You can record it. I use Camtasia Studio Suite but there is also a cheaper software called FrontCam1.3. You can constrain your screenshots to the area of the Edge screen and record it.

  • Sending attachment in soap response

    Hi,
    I want to send attachment in soap response on pi7.4. I am new to pi and this seems to be tough task ,
    I would be thankfull for help.
    7Z

    Hi,
    Can you please elobarate your scenario? Please refer the below blog for attachment scenario in SAP PI 7.31.
    Handle SOAP with Attachment in SAP PI 7.31
    regards,
    Harish

  • When I send a text the response goes to my husband's iPad.  Why?

    when I send a text the response goes to my husband's iPad.  Why?

    I assume you are sharing one?
    You can share an Apple ID for purchases but you both should have separate Apple ID for iCloud, iMessage, & FaceTime.
    Settings > Messages > Send & Receive > Apple ID: > Sign out as you and in as him

  • How come the sight was down so long? and why does the system not send emails anymore with responses?

    how come the sight was down so long? and why does the system not send emails anymore with responses?

    The system is back up and fully functional. How long has it been since you stopped receiving notifications? Can you share your form with us so we can have a look into what might be going wrong?
    Andrew

  • Output Mutiple Files Using htp.p

    Hello,
    I wish to output 3 CSV files from APEX I have the following code
    Declare
    S_FileName VarChar(20);
    S_Counter Number;
    begin
    -- Set the File NAme
    S_FileName :=To_char(sysdate,'yyyymmdd')||'Letters.CSV';
    For S_Counter IN 1..4 LOOP
    -- Set the MIME type
    owa_util.mime_header( 'application/octet', FALSE );
    -- Set the name of the file
    htp.p('Content-Disposition: attachment; filename="'||S_FILENAME||S_Counter|| '"');
    -- Close the HTTP Header
    owa_util.http_header_close;
    -- Loop through all rows in EMP
    for x in (select MPAN_CORE,ACCOUNT_NO
    from Categoriser.LTNA_LETTER_ONE_OUTPUT@link_to_dqmDevdb )
    loop
    -- Print out a portion of a row,
    -- separated by commas and ended by a CR
    htp.prn(x.MPAN_CORE ||','|| x.ACCOUNT_NO ||','||
    x.MPAN_CORE || chr(13));
    END LOOP;
    END LOOP;
    -- Send an error code so that the-- rest of the HTML does not render
    htmldb_application.g_unrecoverable_error := true;
    end;
    At this stage i only want to output 3 files the content is not a issue
    I it possible to do this with APEX?
    Any help on this is greatly appreciated.
    David

    I take it from the lack of response that this is not somthing that APEX can do?No, it's something that HTTP cannot do. Think about it: if it was possible for a server to send multiple files in response to an HTTP request, then it would be possible to break your computer very easily indeed.
    aww well looks like i will need to find another way..You'd need something in the browser client-side, Java applet, Flash control etc...

  • Design for reading mutiple files

    hi , my problem statement is i have to read multiple files at same time and send the content to a C++ system using socket connections. only solutions i am able to think is using executor and other classes from java concurrent api. is there any other options like using session beans or jms for solving the problem. because in future we will be changing C++ system to java

    hi , my problem statement is i have to read multiple files at same time and send the content to a C++ system Make a class called TaskFileReader which implements Future; this class is specializing in reading a file.
    submitt your TaskFileReader into an executor by looping through the file set ( different files) and add all the future into a collection
    Now you will get notified once the task is being process ( if you do not want to add the futures into the collection and loop through them after submitting them to the executor) so that you can get a call back ( look at Future documentation)
    In your call back you open a session ( socket ) with the C++ server and make your conversation of the returned data with a seperate thread or you can
    try to get the future result in the conversation thread which will block until the result is back and then you can proceed
    Regards,
    Alan Mehio
    London,UK

  • Mutiple file uploading problem

    Hai ra this is surendra i need to upload files to mysql database using jsp.
    I am using following code to upload single file.
    <%--
    Document : addvedio
    Created on : Jan 19, 2010, 8:52:22 PM
    Author : surendra
    --%>
    <%@page contentType="text/html" pageEncoding="UTF-8"%>
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
    <title>addfile</title>
    </head>
    <body>
    <%@page import="java.sql." %>
    <%@page import="java.util."%>
    <%@page import="java.io." %>
    <%@ page import="java.util.List" %>
    <%@ page import="java.util.Iterator" %>
    <%@ page import="java.io.File" %>
    <%@ page import="org.apache.commons.fileupload.servlet.ServletFileUpload"%>
    <%@ page import="org.apache.commons.fileupload.disk.DiskFileItemFactory"%>
    <%@ page import="org.apache.commons.fileupload."%>
    <%
    InputStream itemName = null;
    try {
    String text = null;
    String down = null;
    FileInputStream is=null;
    boolean isMultipart = ServletFileUpload.isMultipartContent(request);
    if (!isMultipart) {
    } else {
    FileItemFactory factory = new DiskFileItemFactory();
    ServletFileUpload upload = new ServletFileUpload(factory);
    List items = null;
    try {
    items = upload.parseRequest(request);
    } catch (FileUploadException e) {
    e.printStackTrace();
    Iterator itr = items.iterator();
    while (itr.hasNext()) {
    FileItem item = (FileItem) itr.next();
    if (item.isFormField()) {
    String name = item.getFieldName();
    String value = item.getString();
    if (name.equals("textfile")) {
    text = value;
    } else {
    itemName = item.getName();
    else{
    down = "yes";
    Class.forName("com.mysql.jdbc.Driver").newInstance();
    Connection con = DriverManager.getConnection("jdbc:mysql://localhost/realheros?user=root&password=suri");
    HttpSession s = request.getSession();
    String add = (String) s.getAttribute("user1");
    PreparedStatement ps1 = con.prepareStatement("update achfile set file=? where email=?");
    ps1.setBinaryStream(1,itemName);
    ps1.setString(2, add);
    int count = ps1.executeUpdate();
    PreparedStatement ps2 = con.prepareStatement("update achfile set download=? where email=?");
    ps2.setString(1, down);
    ps2.setString(2, add);
    count = ps2.executeUpdate();
    PreparedStatement ps3 = con.prepareStatement("update achfile set textfile=? where email=?");
    ps3.setString(1, text);
    ps3.setString(2, add);
    count = ps3.executeUpdate();
    if (count == 1) {
    response.sendRedirect("galsucc.html");
    } else {
    response.sendRedirect("galfail.html");
    } catch (Exception ex) {
    response.sendRedirect("galfail.html");
    out.println(itemName);
    %>
    </body>
    </html>
    I was working.
    But i dont know how to upload the multiple files from a single html page and store them in different locations in mysql

    hi shanu,
    thanks for the reply, i made some changes in the program..
    1.) after choosing the specific file to upload from JFilechooser, the file is posted in the JList... then i will highlight the said file then press the upload button.... in the "public class FileRead" the file is hardcoded... how can i make it dynamic? in which it points to the file that i have chosen in the JList..
    thanks,
    javeo_lineo
    //snippet code of JList...
    //JList...
    list = new JList(model);
    list.getInputMap().put(KeyStroke.getKeyStroke(65,KeyEvent.META_MASK),"selectAll Action");
    list.getActionMap().put("selectAllAction",selectAllAction);
    list.getInputMap().put(KeyStroke.getKeyStroke(8,0),"removeAction");
    list.getActionMap().put("removeAction",removeAction);
    list.setVisibleRowCount(12);
    list.setCellRenderer(new ImageCellRenderer());
    target = new DropTarget(list,new FileDropTargetListener());
    cp.add(new JScrollPane(list),BorderLayout.CENTER);
    JPanel buttons = new JPanel();
    buttons.setLayout(new FlowLayout(FlowLayout.RIGHT,5,10));
    JLabel uploadLabel = new JLabel();
    uploadLabel.setLayout(new FlowLayout(FlowLayout.LEFT,5,10));
    uploadButton = new JButton(uploadAction);
    uploadLabel.add(uploadButton);
    buttons.add(uploadButton);
    //Serializing object..
    public class DocData implements Serializable
    //Creating FileRead object...
    FileRead t = new FileRead();
    t.readMyFile();//call readMyFile method...
    import java.io.*;
    //readMyFile class
    public class FileRead
    void readMyFile()
    String record = null;
    int recCount = 0;
    try {
    FileReader fr = new FileReader("mydata.txt"); // How can I make this file dynamic?? In which the file that I have chosen in the JList...
    BufferedReader br = new BufferedReader(fr);
    record = new String();
    while ((record = br.readLine()) != null)
    //recCount++;
    //System.out.println(recCount + ": " + record);
    //System.out.println("\n" + record);
    } catch (IOException e)
    //Catch possible io errors from readLine()
    System.out.println("Uh oh, got an IOException error!");
    e.printStackTrace();
    }

  • "process mutiple files" freezes computer when resizing images.PSE3

    This function has always worked perfectly for me for years. It started about 2 weeks ago and I have no clue why it is doing this.
    Whenever I try to resize a folder containing mutiple or even single images, it freezes the program and computer until I restart everything.
    More specifics;
    files are being downsized not upsized.
    the original image loads into the program, then as it is being resized, it freezes up at the same point each time. This is when the "progress bar" (not sure of exact name) at the bottom of the page shows about 25% progress.
    I have cleaned up the hard drive and done a file reorganization.
    I have uninstalled and reinstalled the program.
    I can resize images directly through the image/resize function one at a time. The problem is that I frequently have to resize large batches of images.
    Thanks for any help.
    Dave

    Dave
    This has caught other people. Check you Resize Image box to see if some strange value has been entered. One user had accidentally entered 4 pixels instead of 4 inches so all his pictures came out really small. I wonder if you have the opposite problem and are resaving to some extremely large size that Elements does not like.
    If not post back.
    Additional question-are you having problems with the same set of pictures? If so, could you run a test on a second set of pictures. Perhaps there is something strange in the source files.

  • Issue In Lock Box while processing mutiple files at a time:Tcode FLBP

    Hi Experts,
    I have an issue while executing Program RFEBLB30 (or tcode FLBP) for Variant which contains more than one file,means.Variant contains two files ,One file contains Single cheque details and other file contains multiple cheques.
    the final output showing wrong values in Total advice & cheque amount.
    when we process single file at a time(whether file has single or multiple cheque details) we are not facing any issue.
    Thanks & Regards,
    Veera.

    It seems that there is no standard solution there.
    Why do you have 2 files, is this 2 different batches ? Are they from the same day ? Can you ask the bank to bundle them ? Can you run FLBP twice a day to pick uop 1 file only ?
    In FLBP standard selection fields available are
    - Destination / Origin
    - Lockbox
    - Date
    You can maybe also configure a dummy lockbox, use an exit to change it when you process the file.

  • Help with mutiple files produced by sharing video to Itunes

    Hi All,
    As I continue to learn I am looking for some help. After importing DV video and then creating a movie in Imovie08 I shared the movie with Itunes. Looking through all the video files there are now two copies of everything on the drive..
    Copy #1 is in- movies/imovie/sharing/itunes/filename.mv4
    Copy #2 is in-music/itunes music/ movies/filename.mv4
    The questions are can I delete the one in the Itunes music file? what can I do to prevent this in the future?
    Thanks
    GE

    First most of the movies I am making are over 1gb so having two copies is not really an option as I will soon run out of space.
    Most people would agree and it is not necessary to do if both copies are "standalone" files. Yours are.
    when I checked get info for both files they were the same size so no reference smaller file as I have seen with the projects.
    This merely confimrs that both files are, indeed, "standalone" copies and that iTunes is operating with the default preference to physically copy imported/added files to your iTunes Library wherever that might be located.
    I was able to go into Itunes in the advanced and tell it not to copy to Itunes (thanks again) when sharing. On the most recent shared project this has eliminated the file in Itunes music but saved to the movie, imovie sharing, itunes ...File. When I open I tunes it did pick up the movie and sync with my apple TV. So far so good. My question now is why not leave like this?
    You can leave it like this and that is one of the things mentioned previosly when I cautioned you that in this mode you could not then delete the shared folder copy of your video. Basically you have to options.
    1) The first is to leave your standalone files physically in their original stored location and copy a "reference" pointer (like an alias) to iTunes. This method of operating keeps your iTunes Library relatively small but leaves your main "standalone" files scattered anywhere on any of your hard drives depending on how/where they were created/stored.
    2) The second is to use the iTunes default setting as it was, physically copy the files to the iTunes Library, and then delete the "sourcing" or "intermediate" file which is no longer needed. This work flow "consolidates" all of your video files to single, known area but means your iTunes Library can become quite large.
    The option you choose is up to you. I prefer the second option as I have an external 1 TB drive dedicated exclusively for use as my iTunes Library. In this manner all of my files are located in a known location and I can keep my internal start-up drive (and all other drives) relatively free of "clutter" by deleting video files from their source location as soon as I have imported them to iTunes. And, since I know where the file are located, I still maintain normal access to them for any "file" level operations (e.g., posting to any of my web sites/servers, sharing with friends/family via e-mail, QT Link files, and "reference" files, etc. Basically I use iTunes for the "physical" management of my videos for distribution to iPod, iPhone, and TV devices; iTunes, Front Row, and QT Player viewing; as well as, a central storage point for file level operations such as e-mail (standalone, reference, or QTL), site/server upload source, peer-to-peer distribution, etc. This works for me but may or may not suit another user's particular needs.
    One suggestion earlier was to delete the Movie/Imovie sharing file. While this makes sense I would have to manually transfer it in or share to both then delete it.
    The "sharing to iTunes" by iMovie is "automated." The deletion of extraneous files is not. Since iMovie does not know whether you are using iTunes manage your files physically, it cannot be pre-programmed to automatically delete the "shared" file without risking it will "orphan" the reference sent to/stored in iTunes. That is why the deletion is left to the user as a manual option.
    Why not leave the flow the way it is. Will I later have some issue with I tunes? Or is the potential to over write the information if I adjust the project the issue?
    As previously stated, you can use iTunes in this preference mode. While I doubt there would be any potential for accidental "overwites," there are other possibilities. Besides offending my sense of proper organization, there is the potential for such "scattered" files to be accidentally deleted in error. Also, there is always the possibility that someone might "move" the "standalone" file to a different location on the same or a different hard drive. In either instance, your iTunes file pointer would likely be "orphaned" and the content would no longer be availalable until or unless a valid path were restored. In addition, having files scattered all over your drives makes backing them up a bit of a chore. By consolidating all of my videos and music physically as I do, it is much easier to automatically "back them up" using another external drive and either Time Machine or other such software -- something to consider after doing all that work creating your files. What is best for you will depend on you specific work flows, needs, and concepts. There is no right or wrong here but merely what works best for you.

  • Mutiple files to iDVD

    Hello out there,
    I have a folder with 13 avi files that I need to load in iDVD and burn to a disk.I would like them to play one right after the other. I also want to drag the files into the start automatically window so as to skip the themes. Do I just drag the files one on top of the other or is there some other way.
    Thanks

    I would put them into iMovie and then drag the iMovie project into iDVD.

  • Renaming mutiple files (photos) outside of Iphoto

    Hi,
    I Take a lot of digital photos, but do not use Iphoto as it puts all the photos in hundreds of different folders. I am wondering if I can use Automator to rename a batch of photos (ie. from dsc100001 to JohnsBirthday1 and so on).
    Any help would be greatly appreciated.
    G5 Power Mac   Mac OS X (10.4.8)  

    Hi,
    Cheers for the reply. It at first seemed to do the trick, but I couldn't get it to rename the files correctly. Had another look in the forums and came across this link automatorworld.com . In the topdownloads window at the top left of the frontpage there is a workflow called 'batch rename', does what it says on the tin.
    Cheers
    G5 Power Mac   Mac OS X (10.4.8)  

  • Sending resourceStream on a response object

    Hi all,
    i need to attach a resource stream to a servlet response in a
    chain.doFilter(httpRequest,response);
    ie i want to return this
    this.getClass().getClassLoader().getResourceAsStream(ParameterSource);
    the resource will always be an image or a style sheet so is there any need to specify mime type in the response header?
    Can anybody help me with the lcode to add the resourceStream to the response?
    Thanks in advance
    Alex

    solved the above proble and narrowed the first down to 2 solutions
    1)
    make the inputstream into an array of bytes and feed into outputstream for the response
    2)
    use request =dispatcher to forward resource needed
    requestdispatcher rd = request.getrequestdispatcher(RESOURCE);
    rd.forward(RESOURCE);
    i'm not sure if the second option will work because the resorce may be located in a .jar file?
    Has anybody else any comments or suggestions?
    Alex.

  • SOAP Sender Adapter: CDATA in response is lost

    Hi,
    Issue: CDATA sections in response messages are removed in the adapter engine and content of what used to be a CDATA section is replaced with HTML equivalents.
    Simplified version of my scenaio:
    Request is sent to SAP XI via synchronous SOAP adapter (HTTPS). Next BPM receives the request and returns the request as response. A response mapping creates static output which contains a CDATA section. This is done via an XSLT mapping.
    When I look in AFW the response looks just as expected. The CDATA section is present and everythings nice.
    When I look in ICM everything also looks very nice - CDATA section is present.
    When I receive the response in my client (uses both SAP SOAP client and wfetch) cdata section is gone and replaced with HTML equivalents.
    If I sent message directly into integration engine instead of using AFW then the response is returned nicely - CDATA section is present.
    Anybody can explain this?
    Best Regards,
    Daniel

    ok, kind of stupid.
    After some reconsideration the following became clear to me:
    1) ICM handles communication in/out of ABAP stack and thus is not really relevant to consider for the problem at hand.
    2) The fact that my Sender SOAP adapter is using SOAP envelope, means that the adapter has to parse the response when wrapping it in an envelope. During this proces the CDATA section disappear because its all the same to the parser in any case.
    Problem solved - "mystery" explained! In order to send CDATA section as a response I thus need to manually handle the SOAP envelope.

Maybe you are looking for

  • Problem Please Help - Itunes freezes when trying to play a tv show/movie

    The other day I downloaded a couple movies I had rented. Something I had not done before on itunes. The three movies downloaded with no problems and then when I was on my flight I tried to start one of them. Itunes went black as if to start playing a

  • Invoice is referring to mov type 105 instead of 103

    Dear SAP gurus, In my company, when we receive goods from PO we first post material doc 103 and then release it afterward using mov.type 105, and the accounting document is created. We just found out that when we post the invoice, actually SAP is doi

  • Issue in installing Hyperion 11.1.2

    Hi All I have a machine with Windows server 2003 as OS. I installed EPM on D:\. After it was over with installation I clicked on Configure button but nothing came up. I did installation again on C:\ deleting the folders installed earlier. I was not a

  • Adobe Form internal table processing

    Hi Experts,         I have written the code such as var Items = xfa.resolveNode("xfa.record.ITAB.DATA") var leng = Items.nodes.length but getting error Error: accessor'Items.nodes.length' is unknown I am using FormCalc script. How we process the inte

  • How to find objects with active System status-JEST

    Hi All, Is there any way in which I can find Production operations based on their active system status. The problem I'm facing is SAP stores system status for an order in JEST. And JEST contains many active system status for a PP Operation. I have to