Re: Multiple outputs to a CSV file



There are a few options to do so.
One of them is to change the file adapter in the output (assuming you are
writing to a file from your post) to Append, this will make sure that the
next message is appended to the file rather then adding a new one.
You will have to make sure the filename used is identical for all related
messages using the MessageID will not be a good option then

You will also have to take care of the decision when to start a new file.
this will be done through the file name as well. setting a new filename (or
removing the existing file) will result in a new file created.

Hope this helps

Yossi Dahan


"Dave" <Dave@xxxxxxxxxxxxxxxxxxxxxxxxx> wrote in message
news:1E21F07B-E8D7-42EC-A77A-B805A6BD3D63@xxxxxxxxxxxxxxxx
>I have multiple inbound XML documents that I need to process using an
> orchestration and then store some of the data in CSV format. My question
> is;
> can I append the results of each inbound XML document to the SAME CSV file
> rather than having one output created for each input.
>
> I hope this makes sense.


.



Relevant Pages

  • Re: Rename file during copy
    ... running into is deciding the filename when renaming. ... extension then append "_copy" ... The current copying method is far from finished, but the renaming ...
    (comp.lang.php)
  • Re: opening files and code cleanup
    ... integer function file_open(filename, opened_ok, status, append) ... character:: mystatus ... logical:: filename_exists, myappend ... We require a filename (ifc would prompt for one in this instance ...
    (comp.lang.fortran)
  • Re: file numbering
    ... OEX will prepend or append a timestamp to the ... filename as well to allow for sorting based on subject / date or date / ...
    (microsoft.public.windows.inetexplorer.ie6_outlookexpress)
  • Re: string manipulation (bis)
    ... it append a f after the last digit. ... set fileId [open $fileName w] ... in your input string (as split will give you blank items in the middle of ...
    (comp.lang.tcl)
  • Multiple outputs to a CSV file
    ... I have multiple inbound XML documents that I need to process using an ... orchestration and then store some of the data in CSV format. ...
    (microsoft.public.biztalk.general)

Loading