Conversion of Minitab to xMII XML format

Hi,
  how to convert minitab file into xml format. i tried possibilities but facing problems. i tried for two psiibilities.
1) i imported minitab file(.mtw) into BLS text loader. then i added flat file parser then StringList to XML parser. but it doesnt show correct xml output. it shows each row as single item.
2) I saved minitab file as text file by applying comma seperator. then i opened that file in BLS. this file having column names but in BLS it consider each item as single row. for example if  i have 2x2 rows / columns means, BLS consider it as 4 rows and take column name also as row.
how to solve it? how to convert minitab file as it is(with .mtw) extension to xMII XML format.
-senthil

Senthil,
In xMII 11.5 SP3 in the Logic Editor under Misc Functions -> Minitab Export
-Sam

Similar Messages

  • How to automate conversion of PDF forms to XML format

    Hi
    I have created a form using adobe livecycle designer 8. It has a email submit button that will send the form as a pdf file to a server.
    Once the server recevive this pdf file, they will store the pdf file into a local drive. How do I convert the pdf files in the local drive into XML format without actually opening the pdf file in the Adobe Professional and clicking export data as XML?
    Is there a way to write a code to convert these pdf files to XML format automatically?
    Hope someone can help me with this issue
    Regards
    Delvin Khong

    Hi Andersson,
    The request command is a form server command? Where do i type the Request.Form("page.form.field"). I dont really understand your statement on "Use request on the receiving page to get data" Could you help me by explaining more?
    Thank a lot for your advice
    Warmest Regards
    Delvin Khong

  • XMII Frustration, trying to hold " SAP xMII XML format" in variable

    I have two queries that return the same result (same columns, different rows).  I'm running one or the other based on a condition.  I want to assign the result to something so that I can run a repeater against it after (one of the two) queries has run.
                         Cond   ....      3rd leg(After condition)
                 Query 1    Query 2       Repeater

    Paul,
    If your two queries (different Query Templates?) both return the exact same columns, but just different rows, wouldn't it make more sense to just have a single Query action block instead of a conditional branch?  This way your Repeater logic could just work directly on the single query results and you wouldn't have to map or copy any xml objects around.
    You could use the stringif function in the expression editor to handle the specifics of your current Query1 and Query2, even adjusting the QueryTemplate property of the action block itself if necessary.  The effective use of query parameters and/or the template(s) themselves should make this quite possible and streamlined in your logic flow.
    Regards,
    Jeremy

  • XML - xMII XML conversion

    Hi,
    Is there any way to convert normal xml file to xMII XML format. i converted known xml file to xMII format by placing 2 repeaters. one for rowset and other for row. and adding IllumRow with dataitems.
    but if i dont know what is the dataitems in xml file, how can do this? How to configure IllumDocument in this problem? How to convert any unknown xml file to xMII format?
    thanks in advance.
    - senthil

    Hi Senthil,
    This can be done using IllumDocument Actions.
    Call 3 Repeaters. Each for IllumColumn Action, IllumRow Action and IllumData item Action respectively. The 3rd repeater shud come under the 2nd repeater. ie., inside the repeater for IllumRow Action call one more repeater for IllumData Item.
    Hope its clear.
    Regards
    Muzammil

  • Error: Conversion of complete file content of 'filename here' to XML format

    "Error: Conversion of complete file content of 'filename here' to XML format failed"
    We process inbound files every hour, we now got this message we have never seen. But every hour, for three hours, one in many files that are processed get this error. But the file ends with success, and after spot checking the file looks like it made it into SAP.
    What is happening? Anybody know?
    Thank-You.

    hey
    did u see any adapter with red button?
    i m pretty sure there will some sender adapter with red button(meaning error)
    also whatever message failed,can u copy that payload from sxmb_moni and test the message mapping under test tab in IR
    thanx
    ahmad

  • Regarding conversion of invoice in XML format

    Hi everyone,
    I am working on smartforms and i require smartforms and its output in XML format, if its possible then please let me know the procedure to transmit smartforms output in XML format. Please reply, its urgent.
    Thanks & Regards
    V.B.

    In transaction SE80 browse menu Workbench -> Edit Object. In the popup window enter XSLT Program name (e.g. ZXSLT) and click on create button.
    Enter the following code into the editor
    <xsl:transform version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform" >
    <!xsl:output encoding="utf-8" indent="yes"/>
    <xsl:template match="D2CXML">
    <PurchaseOrders>
    <xsl:apply-templates/>
    </PurchaseOrders>
    </xsl:template>
    <xsl:template match="item">
    <PONO>
    <xsl:attribute name="no">
    <xsl:value-of select="EBELN"/>
    </xsl:attribute> 1
    <PORDNO>
    <xsl:apply-templates select="EBELN"/>
    </PORDNO>
    <Vendor>
    <xsl:apply-templates select="LIFNR"/>
    </Vendor>
    <PurchaseOrg>
    <xsl:apply-templates select="EKORG"/>
    </PurchaseOrg>
    <PurchaseGrp>
    <xsl:apply-templates select="EKGRP"/>
    </PurchaseGrp>
    <xsl:apply-templates select="X-MLSTRUCT"/>
    </PONO>
    </xsl:template>
    <xsl:template match="X-MLSTRUCT">
    <xsl:apply-templates/>
    </xsl:template>
    <xsl:template match="X-MLSTRUCT/item">
    <Product>
    <ItemNo>
    <xsl:apply-templates select="EBELP"/>
    </ItemNo>
    <Material>
    <xsl:apply-templates select="MATNR"/>
    </Material>
    <Qty>
    <xsl:apply-templates select="MENGE"/>
    </Qty>
    <Price>
    <xsl:apply-templates select="NETPR"/>
    </Price>
    </Product>
    </xsl:template>
    </xsl:transform>
    Create Extraction Program
    Create a report program using ABAP Workbench and the code of the extracting program will be as follows.
    REPORT ZXML_EXTRACTION .
    - - - - - - - - - - DATA DECLARATION - - - - - - - - --*
    TYPE-POOLS: ABAP.
    TYPES: BEGIN OF TY_XML,
    EBELP TYPE STRING,
    MATNR TYPE STRING,
    MENGE TYPE STRING,
    NETPR TYPE STRING,
    END OF TY_XML.
    TYPES: BEGIN OF TY_FINAL_XML,
    EBELN TYPE STRING,
    EKORG TYPE EKKO-EKORG,
    EKGRP TYPE EKKO-EKGRP,
    LIFNR TYPE EKKO-LIFNR,
    XMLSTRUCT TYPE TY_XML,
    END OF TY_FINAL_XML.
    TYPES: BEGIN OF TY_EKPO,
    EBELN TYPE EKPO-EBELN,
    LIFNR TYPE EKKO-LIFNR,
    EKORG TYPE EKKO-EKORG,
    EKGRP TYPE EKKO-EKGRP,
    EBELP TYPE EKPO-EBELP,
    MATNR TYPE EKPO-MATNR,
    MENGE TYPE EKPO-MENGE,
    NETPR TYPE EKPO-NETPR,
    END OF TY_EKPO.
    TYPES: TY_TSRCLIN(1024) TYPE X,
    TY_TSRCTAB TYPE STANDARD TABLE OF TY_TSRCLIN.
    Global Data for XML Creation
    DATA: G_XML_STRING TYPE STRING,
    G_XML_STRING1 TYPE STRING,
    G_FILENAME TYPE STRING,
    G_PATH TYPE STRING,
    G_FULLPATH TYPE STRING,
    G_TITLE TYPE STRING,
    G_LEN TYPE I.
    DATA: G_XSLTP TYPE REF TO CL_XSLT_PROCESSOR,
    G_IXML TYPE REF TO IF_IXML,
    G_STREAM_FACTORY TYPE REF TO IF_IXML_STREAM_FACTORY,
    G_ENCODING TYPE REF TO IF_IXML_ENCODING,
    RESSTR TYPE REF TO IF_IXML_OSTREAM,
    HTTP_CLIENT TYPE REF TO IF_HTTP_CLIENT,
    G_SRCSTR TYPE REF TO IF_IXML_ISTREAM,
    G_GEN_EX TYPE REF TO CX_XSLT_EXCEPTION,
    G_MESSAGE TYPE STRING,
    G_PROGNAME TYPE CXSLTDESC VALUE 'ID'.
    Work Area
    DATA: WA_XML TYPE TY_XML,
    WA_EKPO TYPE TY_EKPO,
    WA_EKPO1 TYPE TY_EKPO,
    WA_SOURCE TYPE ABAP_TRANS_SRCBIND.
    DATA: BEGIN OF WA_FINAL_XML,
    EBELN TYPE STRING,
    LIFNR TYPE STRING,
    EKGRP TYPE STRING,
    EKORG TYPE STRING,
    XMLSTRUCT TYPE TABLE OF TY_XML,
    END OF WA_FINAL_XML.
    INTERNAL TABLES
    DATA: T_XML TYPE TABLE OF TY_XML,
    T_FINAL_XML LIKE TABLE OF WA_FINAL_XML,
    T_EKPO TYPE TABLE OF TY_EKPO,
    T_SOURCE TYPE ABAP_TRANS_SRCBIND_TAB,
    T_SRCTAB TYPE TY_TSRCTAB.
    - - - - - - - - - - SELECTION-SCREEN - - - - - - - - - - - - - - *
    ---Select options/Parameters--
    SELECTION-SCREEN BEGIN OF BLOCK DOWNLOAD
    WITH FRAME TITLE TEXT-002.
    PARAMETERS: P_COMP TYPE CHAR1 AS CHECKBOX.
    PARAMETERS: P_FILE TYPE RLGRAP-FILENAME.
    SELECTION-SCREEN END OF BLOCK DOWNLOAD.
    AT SELECTION-SCREEN.
    IF NOT P_COMP IS INITIAL AND
    P_FILE IS INITIAL.
    MESSAGE E000(38) WITH 'Please enter the file name'(E01).
    ENDIF.
    IF NOT P_COMP IS INITIAL AND
    NOT P_FILE IS INITIAL.
    TRANSLATE P_FILE TO UPPER CASE.
    G_LEN = STRLEN( P_FILE ) - 4.
    IF P_FILE+G_LEN(4) NE '.XML'.
    MESSAGE E000(38) WITH 'Please use the extension as .XML'(E02).
    ENDIF.
    ENDIF.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR P_FILE.
    G_TITLE = 'Result Document'(I01).
    CALL METHOD CL_GUI_FRONTEND_SERVICES=>FILE_SAVE_DIALOG
    EXPORTING
    WINDOW_TITLE = G_TITLE
    FILE_FILTER = '*.XML'
    CHANGING
    FILENAME = G_FILENAME
    PATH = G_PATH
    FULLPATH = G_FULLPATH.
    IF SY-SUBRC = 0.
    P_FILE = G_FULLPATH.
    ENDIF.
    - - - - - - - - - - LOGIC SECTION - - - - - - - - - - - - *
    START-OF-SELECTION.
    PERFORM CLEAR_VARIABLES.
    PERFORM START_SELECTION.
    END-OF-SELECTION.
    WA_FINAL_XML-XMLSTRUCT[] = T_XML[].
    APPEND WA_FINAL_XML TO T_FINAL_XML.
    PERFORM CREATE_XML.
    IF NOT P_COMP IS INITIAL.
    PERFORM DOWNLOAD_FILE.
    ENDIF.
    *& Form START_SELECTION
    Select all the Guids
    FORM START_SELECTION .
    SELECT HEBELN HLIFNR HEKORG HEKGRP
    IEBELP IMENGE INETPR IMATNR
    INTO CORRESPONDING FIELDS OF TABLE T_EKPO
    FROM EKKO AS H INNER JOIN EKPO AS I
    ON HEBELN = IEBELN.
    LOOP AT T_EKPO INTO WA_EKPO.
    WA_EKPO1 = WA_EKPO.
    AT NEW EBELN.
    REFRESH T_XML.
    CLEAR WA_XML.
    WA_FINAL_XML-EBELN = WA_EKPO-EBELN.
    WA_FINAL_XML-LIFNR = WA_EKPO1-LIFNR.
    WA_FINAL_XML-EKORG = WA_EKPO1-EKORG.
    WA_FINAL_XML-EKGRP = WA_EKPO1-EKGRP.
    ENDAT.
    MOVE-CORRESPONDING WA_EKPO TO WA_XML.
    APPEND WA_XML TO T_XML.
    AT END OF EBELN.
    WA_FINAL_XML-XMLSTRUCT[] = T_XML[].
    APPEND WA_FINAL_XML TO T_FINAL_XML.
    ENDAT.
    ENDLOOP.
    ENDFORM. " START_SELECTION
    *& Form CREATE_XML
    Create XML
    FORM CREATE_XML .
    Prepare for Transformation
    WA_SOURCE-NAME = 'D2CXML'.
    GET REFERENCE OF T_FINAL_XML INTO WA_SOURCE-VALUE.
    APPEND WA_SOURCE TO T_SOURCE.
    CLEAR G_XML_STRING.
    CALL TRANSFORMATION ZXSLT
    SOURCE (T_SOURCE)
    RESULT XML G_XML_STRING.
    IF SY-SUBRC <> 0.
    ELSE.
    G_XML_STRING1 = G_XML_STRING.
    REPLACE 'utf-16' WITH 'utf-8' INTO G_XML_STRING.
    ENDIF.
    ENDFORM. " CREATE_XML
    *& Form DOWNLOAD_FILE
    Download the XML into a file
    FORM DOWNLOAD_FILE .
    Local Data
    DATA: L_FILENAME TYPE STRING.
    TRY.
    CREATE OBJECT G_XSLTP.
    CATCH CX_XSLT_EXCEPTION.
    ENDTRY.
    G_IXML = CL_IXML=>CREATE( ).
    G_STREAM_FACTORY = G_IXML->CREATE_STREAM_FACTORY( ).
    G_SRCSTR = G_STREAM_FACTORY->CREATE_ISTREAM_CSTRING(
    STRING = G_XML_STRING1 ).
    XML source is specified by stream
    CALL METHOD G_XSLTP->SET_SOURCE_STREAM
    EXPORTING
    STREAM = G_SRCSTR.
    CALL METHOD G_XSLTP->SET_RESULT_TABLE
    EXPORTING
    TABLE = T_SRCTAB.
    RUN
    TRY.
    CALL METHOD G_XSLTP->RUN
    EXPORTING
    PROGNAME = G_PROGNAME.
    CATCH CX_XSLT_EXCEPTION INTO G_GEN_EX.
    G_XML_STRING = G_GEN_EX->GET_TEXT( ).
    ENDTRY.
    L_FILENAME = P_FILE.
    CALL FUNCTION 'GUI_DOWNLOAD'
    EXPORTING
    FILENAME = L_FILENAME
    FILETYPE = 'BIN'
    TABLES
    DATA_TAB = T_SRCTAB.
    IF SY-SUBRC = 0.
    G_MESSAGE = 'File downloaded successfully'(I03).
    ELSE.
    G_MESSAGE = 'Error in downloading file'(I04).
    ENDIF.
    MESSAGE I000(38) WITH G_MESSAGE.
    ENDFORM. " DOWNLOAD_FILE
    *& Form CLEAR_VARIABLES
    Clear the values of Global Variables
    FORM CLEAR_VARIABLES .
    CLEAR: G_TITLE,
    G_FILENAME,
    G_PATH,
    G_FULLPATH,
    G_LEN,
    G_SRCSTR,
    Work Areas
    WA_SOURCE,
    WA_XML,
    WA_FINAL_XML.
    REFRESH: T_XML,
    T_SOURCE,
    T_SRCTAB,
    T_FINAL_XML.
    ENDFORM. " CLEAR_VARIABLES
    Edited by: Minal Nampalliwar on Jan 21, 2008 6:44 AM

  • REGARDING CONVERSION OF SPOOL (XML FORMAT ) INTO READABLE FORMAT

    HELLO EVRYONE, I AM GETTING MY SMARTFORM OUTPUT IN XML FORMAT ON SPOOL, I WANT TO CHECK IT SO I NEED THAT XML OUTPUT IN TEXT FORMAT OR ANY OTHER READABLE FORMAT, PLEASE REPLY ME. ITS URGENT.
    THANKS & REGARDS,
    VIMARSH B.

    Hi Check this link..
    http://www.****************/Tutorials/Smartforms/OTF2PDF.htm
    IT contains the code to convert smartform output to PDF File
    Regards,
    Sai Ramesh

  • Integrating Minitab with xMII

    Hi ,
        I like to integrate Minitab with xMII 11.5 (earlier version ) ,i know in SR2 and later we have minitab integrated by default. But my query is whether we able to integrate minitab in xMII 11.5(earlier version). If yes,how can be done?
    Thanks,
    Bala

    To convert a minitab file into xml you should be able to use a text loader to obtain the file and the a FlatFileParser in conjunction with a StringListToXML.  The StringListToXml_0.Delimiter needs to be set to tab.
    To convert xml to minitab format you a repeater on the datasource with a write file in the repeater.  You'll also need to use the tab and crlf functions to build it correctly.
    But the real solution should be to upgrading to SR3.
    Regards,
    Jamie

  • How can I convert IDoc in XML format w/DTD into a string?

    I want to send by e-mail outbound IDoc in XML format with its document type definition (DTD).
    I want to be able to get the same output result into a string than the XML file IDoc port type with DTD activated.  I have created a FM (based on SAP "OWN_FUNCTION") assigned to an IDoc port of type ABAP-PI that executes the following processing steps:
    1-Extract outbound IDoc information to get the sender & recipient mail addresses (EDP13 / EDIPHONE tables).
    2-Convert & Transform IDoc data into XML string using FM IDX_IDOC_TO_XML.
    3-Prepare and send e-mail with XML attachement using FM SO_NEW_DOCUMENT_ATT_SEND_API1.
    I cand generate the e-mail with the XML file attachement but FM IDX_IDOC_TO_XML does not convert the IDoc with proper formating and DTD.
    What should I use to accomplish the IDoc conversion to XML w/DTD into a string?
    Should I use XSLT tools ?
    How does that work?
    Thank you
    Carl

    muks wrote:
    Use decimal string to number
    Specifically, you can define a constant with a different datatype on the input on the lower left if you need a different datatype (e.g. U8, I64, DBL, etc) Are all your values integers or do you also need to scan fractional numbers? In this case, you should use "fract/exp string to number" instead.
    LabVIEW Champion . Do more with less code and in less time .

  • How could I export FCE project into XML format?

    Hello,
    I recently decided to upgrade from Final Cut Express to Final Cut Pro X. But I don't seem to be able to export my FCE unfinish projects. That is because FCE  does not export into XML format !!!
    Does anyone knows how to have FCE to generate a XML file? Or to have the FCP file format converted into a XML file format?
    Thanks

    If you are editing in FCE4, then you can open your FCE Project in FCP6 or FCP7 and do the .xml export there. Once you have that .xml file, you need to use the software 7toX to convert the file to FCP-X.
    http://assistedediting.intelligentassistance.com/7toX/
    It should be noted that the conversion of a sequence file to .xml and then .xml to FCP-X may not pass 100% of the information.
    There is information about what is and is not translated here:
    http://assistedediting.intelligentassistance.com/7toX/about.html
    MtD

  • Converting String To XML Format and send as attachment

    Hi
    My requirement is to convert String into XML Format and that XML File i have to send as an attachment
    can any one one give solution for this Problem.
    Thank you
    Venkatesh.K

    hi,
    i m filling the itab first and converting to xml
    itab contaning these data
    GS_PERSON-CUST_ID   = '3'.
    GS_PERSON-FIRSTNAME = 'Bill'.
    GS_PERSON-LASTNAME  = 'Gates'.
    APPEND GS_PERSON TO GT_PERSON.
    GS_PERSON-CUST_ID   = '4'.
    GS_PERSON-FIRSTNAME = 'Frodo'.
    GS_PERSON-LASTNAME  = 'Baggins'.
    APPEND GS_PERSON TO GT_PERSON.
    after conversion data is coming like that
    #<?xml version="1.0" encoding="utf-16"?>
    <CUSTOMERS>
      <item>
        <customer_id>0003</customer_id>
        <first_name>Bill</first_name>
        <last_name>Gates</last_name>
      </item>
      <item>
        <customer_id>0004</customer_id>
        <first_name>Frodo</first_name>
        <last_name>Baggins</last_name>
      </item>
    </CUSTOMERS>
    but errors are  1) # is coming at the first
                            2)for 'encoding="utf-16"?>', it is not coming perfectly, some other data (iso-8859-1) should come here
    can anybody plz solve it.
    regards,
    viki

  • Converting string to XML format

    Hi All,
    I have a requirement to convert string to xml format and download it. Atpresent, I have a string which is a collection of xml tags. I want to convert this string to xml format like <VALUE004>20387899.437</VALUE004>
    <VALUE005>20387899.437</VALUE005>
    <VALUE006>20387899.437</VALUE006>
    Is there any function module for this.

    Chk this thread.
    Re: Regd: File Conversion to XML format

  • Converting File Content.Unexpected XML format

    Hello,
    I need to convert file content in File Receiver Adapter.
    In my opinion, i have unexpected XML format of a payload message. (At least, the format does not contain a structure element):
    That is,
    I have the XML message:
    <?xml version="1.0" encoding="UTF-8"?>
    <ns0:MT_BW ID="123" BirthDay="20/03/1969" Title="consultant" Name="John" LastName="Smith" xmlns:ns0="http://sap.com/xi/BASIS"/>
    I need to convert it into plane text format with fieldseparator.
    How to convert this xml message into plane text format if it does not contain any structure elements  (that is, <struc1>  <field1>value</field1>  </struc1>) according to help guide?
    How should i configure RecordSet in File Adapter?
    I am confused.
    Thank you

    Igor,
    Are u getting the format from the source?
    <ns0:MT_BW ID="123" BirthDay="20/03/1969" Title="consultant" Name="John" LastName="Smith" xmlns:ns0="http://sap.com/xi/BASIS"/>
    If yes, then create one more data type with structure
    <Record>
    <ID/>
    <BirthDay/>
    <Title/>
    <Name/>
    <LastName/>
    </Record>
    And do direct mapping. So now you can easily configure the content conversion for the target format isn't it?
    Its my thought, I don't know whether its feasible for you or not..
    raj.

  • Ack file date and time format is same as in source xml format

    Hi...All,
    1) my scenario is file-rfc-file using BPM,
    we are getting file in xml format from source along with timestamp and this data will be going to R/3 and the acknowledgement (success or failure) file will be sending back to source system.
    in this sceneario we have to fulfill in the follwing client requirement
    File1.<same File1 date and time>.XML
    Is it possible to make it as the following? if it is possible
    could u please let me know how to fulfill the follwing requirement.
    ACK File1.<same File1 date and time>.XML
    Where <same File1 date and time> format = u2018YYYYMMDDhhmmssu2019 .
    2) Is the XML file name visible in the SAP-XI monitoring screen and will it help to trace the messages?
    thanks in advance,
    Pasi.

    Hi,
    I didnot under stand your first question coulf you be more specfic.
    2. Ans : In general , we will follow the below steps
    --First we we check for the file is picked or no, if not see the Sender side CC parameters like mode and path details
    --If file was picked then we need to check whether we are using the File content conversion parameters or not if yes we need to check the FCC parameters ,
    Goto RWB-Channelmonitoring by the following link
    http://host:port/mdt/channelmonitorservlet
    select the sender side CC name and check for errors
    If no errors in above, goto SXMB_MONI for Integration Engine xml processing , check for successful or error occured black or red color
    --if success in SXMB_MONI then we need to check in RWB as above channel monitor now select the receiver side CC
    If no errors then check for output file is placed intarget or not
    Please reward points if it helps
    Thanks
    Vikranth

  • Idoc is recieved as  xml format instead of text format

    hi i am new to XI , I am right now i am trying with Idoc to file scenario
    i am sending idoc from an R/3 system and i am receiving it as file in another R/3 system. In accordance to that i have designed &#38; configured all settings, But when i am sending idoc thru my communication channel i am able view a '" *.txt " file with all my necessary details  in xml  format instead of text format.
    desin details
    my source and target fields are
    FLCUSTOMER_CREATEFROMDATA idoc to the file which as the only few important fields of idoc.
    configuration details
    in communication cahnnel :
    adapter type : file
    message protocol: file
    processing parameters:
    constructution mode : create
    file type : binary
    advance mode
    row.fieldNames : with its fields seperated buy comma
    row.fieldSeparator : ,
    row.endSeparator : 'nl'
    i stuked up with this level for the past  10 days ur valuble suggestion will  help me lot to reach my target
    Regards
    saravanakumar P.K.

    You have selected the wrong message protocol: to get an file not XML you should select File Content converion as message protocol
    change it to folowing
    configuration details
    in communication cahnnel :
    adapter type : file
    message protocol: file content conversion
    processing parameters:
    constructution mode : create
    file type : binary
    advance mode
    row.fieldNames : with its fields seperated buy comma dnt use this
    row.fieldSeparator : ,
    row.endSeparator : 'nl'
    specify only field sepratator and endseparator dnt have to specify fielnames for receiver adapter in contant conversion.

Maybe you are looking for