Sending merging data source..

Hello all..
am new at jmf and i need some help,,, on fly i want to say that i have a web cam and i have a mic and i need to send the a merging data source of both the audio and vedio that i capture them from mic and camera to another pc using the RTPManeger concept.
I see some codes that send an audioalone or vedio alone but i don't see what i need ( an access to a devices and merging there outputs and send them using rtp).
Can any body help me How to do this application?? Please give me an example about what i need??
Thanks for all..

Is there anything obvious in this code clipping that I'm missing? I'm truely stumped, and my project is literally at the stage of "if this recording to file works, this milestone is complete".
I want to help you here, and I think I have the answer to your question, but I am not sure that I understand your question completely.
I will offer you this code:
[ http://code.google.com/p/xomaya/source/browse/xomaya/src/xomaya/components/Xomaya.java?r=27|http://code.google.com/p/xomaya/source/browse/xomaya/src/xomaya/components/Xomaya.java?r=27]
It solves the problem of p.getDataOutput() has no output. If I have misunderstood your question please let me know.
S.

Similar Messages

  • Posting data source name using url

    Hi!
    Is it possible to send different data source for report than the default one when i call report using url link?

    Hi
    Not currently supported - its on the list of to-dos thou - no date as yet
    Regards
    Tim

  • Sessions.xml to point to a data-source

    Hi,
    I'm trying to have the sessions.xml file point and use a data source that is defined in the data-sources.xml file.
    I have checked that the data-source entires are fine(I've used the test-connection feature in AS, to check this).
    Below is the content of my sessions.xml file; Can you please let me know if I am missing some entires in this file.Also sending my data-sources.xml file incase you want to have a look at it.
    Sessions.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <toplink-sessions version="10g release 2 (10.1.3.0.0DP4)" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <session xsi:type="database-session">
    <name>oracle.epcis.common.model</name>
    <event-listener-classes/>
    <primary-project xsi:type="xml">EPCIS_OXM.xml</primary-project>
    <login xsi:type="xml-login">
    <password>5C4C6924B1B14E16</password>
    </login>
    </session>
    <session xsi:type="server-session">
    <name>oracle.epcis.common.model.orm</name>
    <event-listener-classes/>
    <logging xsi:type="toplink-log"/>
    <primary-project xsi:type="xml">EPCIS_ORM.xml</primary-project>
    <login>
    <datasource>jdbc/epcisDS</datasource>
    <uses-external-connection-pool>true</uses-external-connection-pool>
    <uses-external-transaction-controller>true</uses-external-transaction-controller>
    <user-name/>
    </login>
    <connection-pools>
    <read-connection-pool>
    <name>EPCIS Connection Pool</name>
    </read-connection-pool>
    <write-connection-pool>
    <name>EPCIS Connection Pool</name>
    </write-connection-pool>
    </connection-pools>
    <connection-policy/>
    </session>
    </toplink-sessions>
    Data-sources.xml
    <?xml version = '1.0' encoding = 'UTF-8'?>
    <data-sources xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:noNamespaceSchemaLocation="http://xmlns.oracle.com/oracleas/schema/data-sources-10_1.xsd" schema-major-version="10" schema-minor-version="1">
    <managed-data-source connection-pool-name="EPCIS Connection Pool" jndi-name="jdbc/epcisDS" name="epcisDS"/>
    <connection-pool name="EPCIS Connection Pool">
    <connection-factory factory-class="oracle.jdbc.pool.OracleDataSource" user="scott" password="tiger" url="jdbc:oracle:thin:@//localhost:1521/ORCL"/>
    </connection-pool>
    </data-sources>
    Thanks in Advance,
    Mahima

    Thanks! That helped.
    I have a project-orm.xml file which also has the database username, pwd, url.How can I get this to point to the same datasource too?
    The project orm.xml file is as below: How can I modify it to point to the datasource jdbc/epcisDS?
    project-orm.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <toplink:object-persistence version="Oracle TopLink - 10g Release 3 (10.1.3.0.0) (Build 060118)" xmlns:opm="http://xmlns.oracle.com/ias/xsds/opm" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:toplink="http://xmlns.oracle.com/ias/xsds/toplink" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
    <opm:name>EPCIS_ORM</opm:name>
    </opm:class-mapping-descriptor>
    <opm:class-mapping-descriptor xsi:type="toplink:relational-class-mapping-descriptor">
    <opm:class>oracle.epcis.common.model.TransactionEvent</opm:class>
    <opm:alias>SdmTransactionEvent</opm:alias>
    <opm:primary-key>
    <opm:field table="SDM_TRANSACTION_EVENT" name="TRANSACTION_EVENT_ID" xsi:type="opm:column"/>
    </opm:primary-key>
    <opm:events xsi:type="toplink:event-policy"/>
    <opm:querying xsi:type="toplink:query-policy"/>
    <opm:attribute-mappings>
    <opm:attribute-mapping xsi:type="toplink:direct-mapping">
    <opm:attribute-name>action</opm:attribute-name>
    <opm:field table="SDM_TRANSACTION_EVENT" name="ACTION" xsi:type="opm:column"/>
    </opm:attribute-mapping>
    <opm:attribute-mapping xsi:type="toplink:direct-mapping">
    <opm:attribute-name>bizLocation</opm:attribute-name>
    <opm:field table="SDM_TRANSACTION_EVENT" name="BIZ_LOCATION" xsi:type="opm:column"/>
    </opm:attribute-mapping>
    <opm:attribute-mapping xsi:type="toplink:direct-mapping">
    <opm:attribute-name>bizStep</opm:attribute-name>
    <opm:field table="SDM_TRANSACTION_EVENT" name="BIZ_STEP" xsi:type="opm:column"/>
    </opm:attribute-mapping>
    <opm:attribute-mapping xsi:type="toplink:direct-mapping">
    <opm:attribute-name>bizTransactionListId</opm:attribute-name>
    <opm:field table="SDM_TRANSACTION_EVENT" name="BIZ_TRANSACTION_LIST_ID" xsi:type="opm:column"/>
    </opm:attribute-mapping>
    <opm:attribute-mapping xsi:type="toplink:direct-mapping">
    <opm:attribute-name>disposition</opm:attribute-name>
    <opm:field table="SDM_TRANSACTION_EVENT" name="DISPOSITION" xsi:type="opm:column"/>
    </opm:attribute-mapping>
    <opm:attribute-mapping xsi:type="toplink:direct-mapping">
    <opm:attribute-name>eventTime</opm:attribute-name>
    <opm:field table="SDM_TRANSACTION_EVENT" name="EVENT_TIME" xsi:type="opm:column"/>
    </opm:attribute-mapping>
    <opm:attribute-mapping xsi:type="toplink:direct-mapping">
    <opm:attribute-name>rawXmlEventId</opm:attribute-name>
    <opm:field table="SDM_TRANSACTION_EVENT" name="RAW_XML_EVENT_ID" xsi:type="opm:column"/>
    </opm:attribute-mapping>
    <opm:attribute-mapping xsi:type="toplink:direct-mapping">
    <opm:attribute-name>readpoint</opm:attribute-name>
    <opm:field table="SDM_TRANSACTION_EVENT" name="READPOINT" xsi:type="opm:column"/>
    </opm:attribute-mapping>
    <opm:attribute-mapping xsi:type="toplink:direct-mapping">
    <opm:attribute-name>transactionEventId</opm:attribute-name>
    <opm:field table="SDM_TRANSACTION_EVENT" name="TRANSACTION_EVENT_ID" xsi:type="opm:column"/>
    </opm:attribute-mapping>
    </opm:attribute-mappings>
    <toplink:descriptor-type>independent</toplink:descriptor-type>
    <toplink:instantiation/>
    <toplink:copying xsi:type="toplink:instantiation-copy-policy"/>
    <toplink:change-policy xsi:type="toplink:deferred-detection-change-policy"/>
    <toplink:tables>
    <toplink:table name="SDM_TRANSACTION_EVENT"/>
    </toplink:tables>
    </opm:class-mapping-descriptor>
    <opm:class-mapping-descriptor xsi:type="toplink:relational-class-mapping-descriptor">
    <opm:class>oracle.epcis.common.model.TransactionEventMap</opm:class>
    <opm:alias>SdmTransactionEventMap</opm:alias>
    <opm:primary-key>
    <opm:field table="SDM_TRANSACTION_EVENT_MAP" name="CHILD_EPC_ID" xsi:type="opm:column"/>
    <opm:field table="SDM_TRANSACTION_EVENT_MAP" name="TRANSACTION_EVENT_ID" xsi:type="opm:column"/>
    </opm:primary-key>
    <opm:events xsi:type="toplink:event-policy"/>
    <opm:querying xsi:type="toplink:query-policy"/>
    <opm:attribute-mappings>
    <opm:attribute-mapping xsi:type="toplink:direct-mapping">
    <opm:attribute-name>childEpcId</opm:attribute-name>
    <opm:field table="SDM_TRANSACTION_EVENT_MAP" name="CHILD_EPC_ID" xsi:type="opm:column"/>
    </opm:attribute-mapping>
    <opm:attribute-mapping xsi:type="toplink:direct-mapping">
    <opm:attribute-name>transactionEventId</opm:attribute-name>
    <opm:field table="SDM_TRANSACTION_EVENT_MAP" name="TRANSACTION_EVENT_ID" xsi:type="opm:column"/>
    </opm:attribute-mapping>
    </opm:attribute-mappings>
    <toplink:descriptor-type>independent</toplink:descriptor-type>
    <toplink:instantiation/>
    <toplink:copying xsi:type="toplink:instantiation-copy-policy"/>
    <toplink:change-policy xsi:type="toplink:deferred-detection-change-policy"/>
    <toplink:tables>
    <toplink:table name="SDM_TRANSACTION_EVENT_MAP"/>
    </toplink:tables>
    </opm:class-mapping-descriptor>
    </opm:class-mapping-descriptors>
    <toplink:login xsi:type="toplink:database-login">
    <toplink:platform-class>oracle.toplink.platform.database.oracle.Oracle10Platform</toplink:platform-class>
    <toplink:user-name>admin</toplink:user-name>
    <toplink:password>77F9BCD65FABB4501B550455987A268F</toplink:password>
    <toplink:sequencing>
    <toplink:default-sequence xsi:type="toplink:native-sequence"/>
    </toplink:sequencing>
    <toplink:driver-class>oracle.jdbc.driver.OracleDriver</toplink:driver-class>
    <toplink:connection-url>jdbc:oracle:thin:@localhost:1521:EPCIS</toplink:connection-url>
    </toplink:login>
    </toplink:object-persistence>
    Thanks,
    Mahima

  • Can we merge data from multiple sources in Hyperion Interactive Reporting ?

    Hi Experts,
    Can we merge data from multiple sources in Hyperion Interactive Reporting ?Example can we have a report based on DB2
    Oracle,
    Informix and Multidiemnsional Databases like DB2,MSOLAP,ESSBASE?
    Thanks,
    V

    Yes, Each have their own Query and have some common dimension for the Results Sections to be joined together in a final query.
    look in help for Creating Local Joins

  • "Word was unable to open the data source" error message in mail merge

    I am trying to do a mail merge in Word 2008 for Mac and receive this message when I try to open the Excel file for the data.  Can someone please help?  I tried changing the filename to .xls (originally .xlsx) but it didn't work.

    As far as I know, you cannot merge from a  .xlsx data source in Mac Word 2008, and even though there is a KnowledgeBase article at  http://support.microsoft.com/kb/2604725 that suggests
    that all you have to do is "rename" to a .xls, I think what you actually have to do is open the .xlsx in Excel and use Save As to create a .xls.
    Generally speaking, you will be better off researching Mac Word questions in the relevant forum on Microsoft Answers, in this case here: http://answers.microsoft.com/en-us/mac/forum/macoffice2008-macword
    This particular issue was discussed in this conversation: http://answers.microsoft.com/en-us/mac/forum/macoffice2008-macword/cant-open-excel-file-for-mail-merge/90ccfd11-273f-4c2a-aa37-1d859b8e41e2?page=1
    If that does not help, and you cannot find anything else in the Answers group, I suggest that you post a new question in that group, referencing the above conversation and specifying your version of Mac OSX.
    Peter Jamieson

  • Why won't data merge allow more than one data source at a time?

    I need to number tickets, 8 up on a tabloid page, in InDesign (CS5)
    I have found out how to use data merge, but it won't allow me to select more than one data source at a time, therefore, making me use 800 sheets of paper instead of 100. That's not acceptable!! Is there a way to merge the pdfs if I make 8 different ones in the places they need to be? Each file that I export will have 100 pages, so is there a way to merge the files to put all eight tickets on each sheet, sequentially? This is driving me nuts!!!!!!!

    Past users have solved this frustrating problem. You can find their solutions with a Google search like "InDesign data merge multiple sequential items on one page" without quotes.
    HTH
    Regards,
    Peter
    Peter Gold
    KnowHow ProServices
    Frankie at Quad wrote:
    I need to number tickets, 8 up on a tabloid page, in InDesign (CS5)
    I have found out how to use data merge, but it won't allow me to select more than one data source at a time, therefore, making me use 800 sheets of paper instead of 100. That's not acceptable!! Is there a way to merge the pdfs if I make 8 different ones in the places they need to be? Each file that I export will have 100 pages, so is there a way to merge the files to put all eight tickets on each sheet, sequentially? This is driving me nuts!!!!!!!

  • Data source for the concurrent program 'Send Separate Remittance Advices'

    Hi All,
    We have requirement to develop a custom report to send the remittance to the vendors.
    But we are unable to figure out on how to get the data source for the standard program 'Send Separate Remittance Advices'.
    The program is of the type Java concurrent program. Is there any way to get the XML tags for this program.
    Thanks,
    Manoj

    hi,
    pls see:
    R12 Send Separate Remittance Advice - Data Source (srini)
    and also:
    http://apps2fusion.com/apps/14-fwk/69-java-concurrent-programs
    http://oracle.anilpassi.com/xml-publisher-concurrent-program-xmlp.html

  • Change data source - mail merge

    I have a mail merge document which was migrated to a new server. Now every time when I run the mail merge document it tells me "Error has occurred: The Microsoft Access database could not find the object '   '. Make sure the object exists and
    that you spell its name and the p". In the error it points to the old path on the server. When I click OK the data link properties window pops up. I change the data source to point to the path of the new server and the document opens up. The only problem is
    that this does not save. I have to specify the new path to the server everytime. How do I set this permanently?

    1. Do you have the same problem if you try to connect a completely new Word document to the data source? If so, probably something wrong with the Excel file - if you can reconstruct it, or even create a test file with the same sheet name and column names,
    that may show that the file is/was at fault.
    2. For the default OLE DB connection type, the SQL message is the correct one - the SQL does not reference the workbook path or name - that comes from the file name or connection string which is not displayed in that dialog box.
    3. When you see the SQL warning and click Yes, do you then see a dialog box which provides the workbook path/name. Does that file exist? Is it the one you expect? If yes, again, I would suspect the Excel file. If no, the wrong data source is "sticking".
    That will happen if the previous data source has not been properly disconnected - e.g. If you proceed from the dialog I mention, then choose the option to find the data source in the next or subsequent dialog, it does then appear that you have corrected
    the problem, but in fact Word "reverts" to the previous source the next time you open. Typically clicking Yes in the SQL dialog box should disconnect the old data source, but I would at least "make sure" by e.g. setting the mail merge main
    document type to Normal Word Document in the mailings tab.
    Peter Jamieson

  • Merge in CC 2014 not reading data source

    I receive a "The data source cannot be opened...." error message when trying to merge in ID CC2014. However, the same data source opens fine in ID CC and ID CS6.
    THEN – 10 minutes later, CC2014 will be able to read the data source.
    Any ideas....solutions…?
    Thanks in advance.

    Was the source file recently open in another application? It can take some time for the other application to release a lock on close.

  • InDesign isn't recognizing an Excel .xls document as a data source for data merge??

    Working on a data merge and I'm trying to select the .xls document that the customer provided. But InDesign (both CS3 and CS5.5) wont see it as a good file. When I turn off "Support Filetypes" in the data import window and try to force the program to use it, it says "The data source file you selected either has no records or is not a supported file format. Please fix the file, select a file that contains records, or select a supported file type"
    It definitely has records. I opened it in Excel. I don't know why .xls isn't supported.
    Should I try opening back up in Excel and saving as a different format such as tab delineated or whatever it's called?
    Chris

    You need to save a tab-delimited text file or a .csv file from the excel spreadsheet.

  • Schedule webi report using  BW data source and send through email..

    Hi  all,
    I want to schedule webi report and send it through email.
    I am able to send through email.
    here im  got stopped how to schedule the report from bw data source . i have to schedule in webi infoview how to give date format in universe the report sholud run for (sysdate-2) daily
    eg. today is 02-DEC-2011 if i schedule the report it should run for 30-NOV-2011.  iam trying in both BW qyuery and CUBE im not getting how to give date format in
    let me knw is there any solutions..
    im using XIR3 3.1 sp3
    bw 7.1
    Integration kit sp3
    Regards,
    Ravi Sarma.

    it is resolvede by keeping sysdate-2 variable at bw query side i have solved my issue.
    Regards
    ravi

  • Merge multiple source table dates and to one target table

    The requirement is to merge multiple source tables (each table has a set of start and end date) to one target table with one set of start and end date and contain the date relevant column values from each source table.  Payment source tablestart dateend datepayemnt1/1/201512/31/2015301/1/201612/31/999960Position source tablestart dateend dateposition1/1/201512/31/2016101/1/201712/31/999920Target tablestart dateend datepayemntposition1/1/201512/31/201530101/1/201612/31/201660101/1/201712/31/99996020 What transformation(s) will be best to use to handle this requirement? Thanks, Lei

    Thanks Karen,
    that was exactly what i was hoping for.
    Maybe it could be made easier/less confusing if the Mapping Workbench just made you choose a target table. But maybe this is not usefull if the table contains two foreign keys to the same table. Or maybe this should just be put somewhere in the documentation.
    Regards,
    Robert
    Hi Donald,
    fortunately i'm my own DBA so i don't have any problems ;-). However i'm certainly interested in the reasons for not having such a conditional foreign key.
    However actually the foreign key isn't conditional, the condition is that either the field (using the FK) must be filled, or a free-format field. The reasoning for this is that we have a list of known towns and if the addres is local a town from that list must be chosen. If the addres is outside the country a town can just be typed in (no list).
    Concerning the agrregate, all fields are always used. There are no neediness flags anywhere. The aggregate contains three fields which are mapping as direct (two fields) or a One-to-one (the FK). All 'parents' all contains these three fields.
    Regards,
    Robert

  • How to send data from 4 different data sources to one ODS

    Hello Gurus,
    There is a transaction called KSB1 in R/3.
    It has data related to cost center , cost element, G/L .
    In BI, i need to transfer the data from these Data sources to one ODS.
    Can any body give me some idea.
    Points will be awarded for any kind of response .
    Thanks .
    Anu

    Hi Rupa..
    In your requirement some data sources (Cost centre, Cost element) are master data sources.
    They are available as info Objects in BI (Content).
    So there is no need to create ODS on these.
    But the general scenario for creating ODS from multiple data sources in case of Transaction documents
    Like :
    PO header, PO line items...
    For this the Pre-requisite is to have common fields between these data sources (eg PONo).
    Hope this gives idea for u....
    Cheers...
    Varma

  • R12 Send Separate Remittance Advice - Data Source

    Hi,
    I want to insert a field in the template file IBYR_SRA.rtf. I am trying to get the XML Data Source file for the Separate Remittance Advice program. When I run the process, the output comes as pdf file even though I change the output format of the concurrent program to XML. The log file shows some html tags. How can I get the XML data source, so I can modify my template to include additional fields?
    Thanks.

    Don't know if this helps you but what I did was run the payment all the way through, then go into the log file of the Format Payment Instructions (with Text Output in my case) and pull the XML coded from the log. Look for text in the log that starts somewhat like "<?xml version="1.0" encoding="UTF-8"?><OutboundPaymentInstruction>....."
    Then copy that entire section to a Notepad window. Save the file with .xml as the extension then use your XML editor to open it. I then use that as my datasource to test my rtf template formatting.

  • Missing data source while opening Word in PB50

    Dear all,
    a customer reported an error in our HR system, where he's working on applications.
    The customer wanted to send a letter to an applicant. For this we are using the Word interface (RTF), which opens MS Word and fills in the applicant's data to the mail merge.
    For several letters a MS Word error occurs (german):
    xyz... ist ein Seriendruck-Hauptdokument. Word konnte die Datenquelle C:\Temp\R3_HR_DATASOURCE.SAP nicht finden.
    In English it may be something like this:
    xyz...is a main document for mail merge. Word was not able to find data souce C:\Temp\R3_HR_DATASOURCE.SAP
    When I click on "Options..." in this error window, I can choose an entry called "Daten/Steuersatzquelle entfernen", which means to remove connection to the data source. If I do so, Word opens correctly an the letter gets filled with data.
    I was searching for an SAP note and threads within these forums, but I did not find anything.
    Asking Google brought me to the MS support website, where this issue is mentioned (but without SAP). It was recommended to install Service Pack 3 for MS Word 2003, so I did, but nothing happened. Still the same problem.
    When I open the letter via PBWW, everything works fine. Even the word interface test was successful (report SAPRDEMOWORD97INTEGRATION).
    As I learned from another posting on the MS support website, it may be possible that macro security is set too high in MS Word. So I decreased it to "medium", but that did not help, too.
    Does anybody have an idea about this issue?

    Hi Tobias,
    I only found an error message when executing the method container_control->open_document
    But it isn't clear what causes the error message.
    In the open_document there are 2 possibilities . With us H_CONTROL and USER_INFO is always empty. and open_mode = -2, storage_mode = 513
    Has it something to do with this ? 
    IF NOT H_CONTROL IS INITIAL.
        IF USER_INFO IS INITIAL.
          CALL METHOD ME->CALL_METHOD
             EXPORTING
                METHOD            = 'OpenDocument'
                P_COUNT           = 5
                P1                = DOCUMENT_TYPE
                P2                = DOCUMENT_FORMAT
                P3                = DOCUMENT_URL
                P4                = OPEN_MODE
                P5                = STORAGE_MODE
                QUEUE_ONLY          = ' '
             IMPORTING
                RESULT            = DOCUMENT_COOKIE.
        ELSE.
          CALL METHOD ME->CALL_METHOD           : This is never executed with us
             EXPORTING
                METHOD            = 'OpenDocument2'
                P_COUNT           = 10
                P1                = DOCUMENT_TYPE
                P2                = DOCUMENT_FORMAT
                P3                = DOCUMENT_URL
                P4                = OPEN_MODE
                P5                = STORAGE_MODE
                P6                = USER_INFO-USER
                P7                = USER_INFO-PASSWORD
                P8                = USER_INFO-PROXY
                P9                = USER_INFO-PROXYUSER
                P10               = USER_INFO-PROXYPASSWORD
                QUEUE_ONLY          = ' '
             IMPORTING
                RESULT            = DOCUMENT_COOKIE.
        ENDIF.
    So is it possible to give a little bit more information concerning how you solved the problem.
    We already have contacted SAP and Microsoft but they had not a solution for us.
    So I hope you can help us.
    Kind regards
    Pascale

Maybe you are looking for

  • Can two iphone 4s be linked to the same itunes on one computer?

    Me and My boyfriend both bought new iPhone 4s (this is my first iphone ever) ... We share a lap top and he travels frequently for business. We are both synced to the itunes from our lap top, so whenever i try to sync music from my sisters or mothers

  • How to delete duplicate music in itunes

    I have been downloading a lot of my old CD's and have found I have a lot of duplicate songs from a variety of my album sets...how can I delete them so I only have one of each one? thanks! Jan

  • CI issues on Linux - CentOS + Hudson

    Hi there, I got some issues to generate the Junit reports, it gets up to "Waiting for client connection" then do nothing for a few seconds. When it gets back this is what I get in the console: runUnitTests:      [java] Loading configuration file /opt

  • PSE 9 Organizer hangs and crashes / Reinstall?  What will I lose?

    PSE 9 has been on my computer for almost a year and has started to get very unstable.  I can only scroll through a few rows of photos in Organizer before it hangs then crashes.  Editor is working more slowly as well.  The problem got worse last month

  • Additional Output fields for ME2N?

    We have created a Z field which exists on the item level of our POs (table EKPO). It is available in the search criteria of our ME2N report, but not in the output. Does anyone know of a way to add additional fields to the output of ME2N? Thanks so mu