Remove Header Node in File Content Conversion

Hi Guys,
     In our scenario receiver payload is
<?xml version="1.0" encoding="UTF-8"?>
<ns1:MarketInventoryResponse  xmlns:ns1="PRINCIPALS/MarketInventory">
     <Header>
            <CurrentDate>200809</CurrentDate>
     </Header>
     <MarketInventory>
            <Local_ProductCode>121</Local_ProductCode>
            <WH_QTY>20</WH_QTY>
            <WH_Cost>3000</WH_Cost>
            <Store_QTY>40</Store_QTY>
            <Store_Cost>5000</Store_Cost>
      </MarketInventory>
</ns1:MarketInventoryResponse>
We are using File content conversion method. Now we got the output is
200809
121#20#3000#40#5000
But We need below mentioned format.
121#20#3000#40#5000
we don't need CurrentDate which is in Header node. So, how to ignore Header node in FCC method. Please any one help me.
Note :  Now we using following parameters in FCC
Recordset Structure  : MarketInventory
MarketInventory.addHeaderLine   :  0
MarketInventory.fieldSeparator     :  #
MarketInventory.endSeparator      :  'nl'
Thanks & Regards
Vijay

Hi Vijaya,
You have two options:
1.-  Sãnthosh Kûmãr V   Solution:
Recordset Structure : Header,MarketInventory
Header.fieldFixedLengths = 0
Header.fixedLengthTooShortHandling = Cut
Header.endSeparator = '0'
2.- Use Adapter-Specific Message Attributes in your File adapter.
In the last one you would have to set the name of your file in FileName atributte.
Carlos

Similar Messages

  • Remove blank line after File Content Conversion

    I have a File>Conversion on PI7.0 (SP10).
    It seems to add a blank line. The XML is:
    <?xml version="1.0" encoding="UTF-8" ?>
    - <ns0:EPIWCountFile xmlns:ns0="urn:com.somewhere.overthere.nothere">
      <Personal_Area>LU</Personal_Area>
    - <detail>
      <recordCount>17</recordCount>
      </detail>
      </ns0:EPIWCountFile>
    The conversion is done:
    recordset Structure=detail,
    name=detail.fieldseparator    ,
    The output file is
    17
    Hopefully you can see the blank line before the number!???
    I have changed the contexts while processing, and played with other options, but it always adds a blank line at the begin.
    All this file is a count of the number of records processed.  (The personal_area is for a variable name for file/folder creation)
    How can I remove the blank line, as the target system fails due to this anomaly?

    If you are in a development environment, try this
    Make your target structure
    <?xml version="1.0" encoding="UTF-8" ?>
    - <ns0:EPIWCountFile xmlns:ns0="urn:com.somewhere.overthere.nothere">
    - <detail>
    <b><Personal_Area>LU</Personal_Area></b>
    <recordCount>17</recordCount>
    </detail>
    </ns0:EPIWCountFile>
    Content conversion parameter
    detail.fieldFixedLengths 0,2
    detail.fixedLengthTooShortHandling Cut
    P.S: If you need <Pesonal_Area> tag only for File/Folder Name, then why dont you use Adapter specific Identifiers to achieve the same.
    Regards,
    Jai Shankar

  • Removing blank rows in File Content Conversion

    The following is the snippet of XML in a file produced by the File Receiver Adapter using FCC. The mapping is fairly complex and results in blanks rows being outputed. I need to remove this but I don't want to change my mapping. I've tried using .fieldContentFormatting "trim" to no avail.
    Once again, can anyone help me?
    <Prices  COLUMNS="IndexName, Date, IndexPrice">
    Price_OU_gas,2007-05-01,23
    Price_OU_gas,2007-05-01,65
    Price_OU_gas,2007-05-01,66
    Price_OU_gas,2007-05-01,12
    Price_OU_gas,2007-05-01,56
    </ GasPrices>

    Crowe,
    In the mapping only specify for the root node a Boolean funciton like:
    If --> Source not equals to space then (put your mapping logic)  ---> createif --> Target.
    ---Satish

  • Remove of quotes"' in the sender file adapter -- file content conversion

    HI Guys,
    MY source file is comma seprated file (,) in the file i had quotes" " for the data like
    "5000543","0.00","03/04/2009",
    is there any way i can remove the quotes in file content conversion
    Please help me on this
    Regards
    Srinivas

    Srinivas,
    This should not be a big deal, because your fields are separated by a comma. So you need to keep in mind like you are doing the content conversion for a csv file.
    See this blogs for some information:
    /people/venkat.donela/blog/2005/03/02/introduction-to-simplefile-xi-filescenario-and-complete-walk-through-for-starterspart1
    /people/venkat.donela/blog/2005/03/03/introduction-to-simple-file-xi-filescenario-and-complete-walk-through-for-starterspart2
    In the second blog 1345 there are parameters for content conversion. So similarly mention your conversion parameters in your sender communication channel. So after converting to xml your input fields have values like:
    field1:  "5000543"
    field2:  "0.00"
    field3: "03/04/2009"
    So all your field values has with "". Now you can use either standard replace funciton or a udf as given above and then it will remove the quotes and then you can map according to your requirements. If you think sometimes you can get quotes and sometime not in the file then you can use function like startswith or endswith along with exists and can map accordingly.
    Regards,
    ---Satish

  • Supress Column Heading - File Content Conversion in Sender Adapter

    Hi,
    Let me give a more clear picture about my scenario.  I need to convert CSV File to XML output:-
    My source file has column heading and values.  The sample data is mentioned hereunder:-
    PERNR;KID;PNALT;NACHN;NAME2;VORNA
    ;1200;1200;Angus
    I have created a data type as under:-
    DT_LegacyEmployee (Category - Complex Type)
         Employees (Category - Element, Occurence - 1)
              Header (Category - Element, Occurence - 0...1)
                   PERNR_H
                   KID_H
                   PNALT_H
                   NACHN_H
                   NAME2_H
                   VORNA_H
              Employee (Categroy - Element, Type - DT_LegacyEmployee_Row, Occurence - 0...unbounded)
                   PERNR
                   KID
                   PNALT
                   NACHN
                   NAME2
                   VORNA
    The file conversion parameters in the file sender adapter are mentioned hereunder:-
    Document Name - MT_LegacyEmployee
    Document Namespace - http://abc.com/xi
    Recordset Name - Employees
    Rescordset Structure - Header,1,Employee,*
    Recordsets per Message - 1
    Key Field Type - String (Case Sensitive)
    Employee.fieldSeparator - ;
    Employee.endSeparator - 'nl'
    Employee.fieldNames - PERNR,KID,PNALT,NACHN,NAME2,VORNA
    I dont' have a key field value.  How do we remove the header and show only the values in the xml output.  I have searched the forum topics as well checked many blogs related to file content conversion, but nothing helped.  Kindly advice how to fix this issue.  Thanks in advance.
    Regards.
    Praveen

    Hi Praveen,
    Change your File Adapter as below
    Document Name - MT_LegacyEmployee
    Document Namespace - http://abc.com/xi
    Recordset Name - Employees
    Rescordset Structure - Employee,*
    Recordsets per Message - 1
    Key Field Type - String (Case Sensitive)
    Employee.fieldSeparator - ;
    Employee.endSeparator - 'nl'
    Employee.fieldNames - PERNR,KID,PNALT,NACHN,NAME2,VORNA
    There is no need for the Header required in the data type.
    DT_LegacyEmployee (Category - Complex Type)
    Employees (Category - Element, Occurence - 1)
    Employee (Categroy - Element, Type - DT_LegacyEmployee_Row, Occurence - 0...unbounded)
    PERNR
    KID
    PNALT
    NACHN
    NAME2
    VORNA
    Now the trick is in the mapping program
    Lets assume your mapping looks like
    MT_LegacyEmployee ---> MT_TargetEmployee
    - Employees ---> Records
       - Employee ---> Record
         - PERNR  ---> TargetPERNR
         - .. so on
    When you do a mapping from Employee ---> Record apply the following logic.
    (PERNR)--->
                 (TestEquals =) --->(NOT)--->
    (Constant) --->                                (IF)
    (PERNR)                       (IF Without Else) ---> (Record)
                                                   (THEN)
                                (Employee)--->
    When doing this make sure RightClick on PERNR and Select Context ---> Employees.
    By default context would be from Employee and it will give you an error of XSD format. So make sure you are changing the context.

  • File Content Conversion--- Removing Quotations from csv file

    I have a csv file in the folowing format:
    field1,field2,field3,field4
    "111","222","333","444"
    "aaa","bbb","ccc","ddd"
    Suppose the header name is row in IR.
    While configuring the sender file adapter in XI, i have given following parameters under file content conversion.
    row.fieldNames=field1,field2,field3,field4
    row.fieldSeparator=","
    row.processFieldNames=fromConfiguration
    row.beginSeparator="
    After picking up the XML file XI processes the data so that we have out put as
    row
    field1 111
    field2 222
    field3 333
    field4 444"
    row
    row
    field1 aaa
    field2 bbb
    field3 ccc
    field4 ddd"
    row
    My Problem is what parameter should I add in ID to remove this last quote say 444" and ddd" from the XML message ????
    I tried using
    row.endSeparator=" but it is still giving the same output.
    Can anyone help ????????????????????????

    Hi,
    Try this FCC instead
    row.fieldNames=field1,field2,field3,field4
    row.fieldSeparator=,
    row.processFieldNames=fromConfiguration
    row.enclosureSign=u201C
    row.enclosureSignEsc=u201Cu201C
    row.endSeparator='nl'
    http://help.sap.com/saphelp_NW04/helpdata/en/e3/94007075cae04f930cc4c034e411e1/frameset.htm
    If you specify xml.enclosureSign=u201C and xml.enclosureSignEsc=u201Cu201C, text enclosed in quotation marks is transferred unchanged and the quotation marks are removed.
    Thanks
    SaNv...

  • How to remove the footer in the file content conversion

    HI
    I have receiver structure like this
    <Mt_test>
           <Node1>
               <test1>name1</test1
               <test2>name2</test2
           <footer>
              <test3>name3>
    This is the structure. footer segment we need in pay load. so we can't skip anything in the mapping. But target we are using File content conversion. i want to remove the last footer segment in the file. Please help me this.
    thanks
    Sam

    Hi Satish,
    Thank for your quick replay.
    attached  payload i am receiving after the mapping. i need to eliminate footer node in my file.
    Output should be like this.
    20100201,200,2345.00
    20100218,201,2345.00
    But out put i am getting like this
    20100201,200,2345.00
    20100218,201,2345.00
    test0001---> should be remove this in the output file.
    Payload:
    <ns0:MT_google xmlns:ns0="http://google.com/xi/google">
    <Datarow>
      <CALDAY>20100201</CALDAY>
      <PLANT>200</PLANT>
      <ZSTR_PLANT>2345.00;/ZSTR_PLANT>
      </Datarow>
    <Datarow>
      <CALDAY>20100218</CALDAY>
      <PLANT>201</PLANT>
      <ZSTR_PLANT>2345.00;/ZSTR_PLANT>
      </Datarow>
    <Footer>
      <FileName>test0001</FileName>
    File content conversion:
    Datarow.endSeparator ='nl'
    Datarow.fieldseparator = ,
    Footer.fieldfixedLenghts =0
    Footer.fieldlengthTooShortHandling= Cut
    Please suggest me anything to change.
    Advanced Thanks
    Sam
      </Footer>
      </ns0:MT_google>

  • File content conversion: nodes have multiple occurence and is jumbled

    Hi,
    Here is one structure used in file content conversion.
    Header
    Dataline1
    Dataline1
    Dataline1
    Dataline2
    Dataline2
    Dataline2
    Header, Dataline1 and Dataline2 are nodes containing more than one fileds.
    We have mentioned 'fieldSeparator', 'EndSeparator' and 'keyFieldValue' for each of the nodes Header, Dataline1 and Dataline2 .
    Now the requirement has changed and the source file structure is as given below.
    Header
    Dataline1
    Dataline2
    Dataline1
    Dataline2
    Dataline1
    Dataline2
    Now with the same communication channel, the content conversion picks up only the first occurence of Dataline1, Dataline2 ie only this much
    (Header
    Dataline1
    Dataline2)
    is being picked or read.
    The other occurences are lost, even though logically it should pick all of them, since 'keyFieldValue' is specified for each node..
    Should I give any extra parameters in the communication channel for file content conversion.? or else what is the best way to proceed

    Hi John !
    Have you checked the recordset structure in the file content conversion parameters?? like "Header,1,Dataline1,,Dataline2, " to specifiy that it should be 1 header structure, N dataline1 and N dataline2 ??
    Regards,
    Matias.

  • File Content Conversion Removes Leading Blank/Space

    I'm having a problem where file content conversion is trimming leading blanks/space/whitespace from fields when reading in the inbound file.  I've seen where people have posted that you need to use fieldContentFormatting to prevent content conversion from stripping the leading/trailing whitespace.  I added that parameter to my list (see below example) but it still appears to be trimming the leading whitespace.  Look forward to hearing your thoughts.  Here are the details:
    I'm using fixed length file content conversion for Sender File Adapter (SP15).  I have the following parameters set:
    Document Name = MaterialData
    Recordset name = item
    Recordset Structure = MaterialLine, 1
    I have:
    MaterialLine.fieldNames = matno_external, mat_description
    MaterialLine.fieldFixedLengths = 40, 40
    MaterialLine.fieldContentFormatting = nothing, nothing
    The following is the input file (notice spaces prior to second occurrence of material numbers)
    ZED00000001                             AIMS LIGHT A
    ZED00000001                            AIMS LIGHT B
    ZED00000002                             AIMS SWITCH A
    ZED00000002                            AIMS SWITCH B
    ZED00000003                             AIMS SEMICONDUCTOR A
    ZED00000003                            AIMS SEMICONDUCTOR B
    The following is the source XML after file content conversion from SXMB_MONI (note spaces no longer exist in matno_external tag).
    <?xml version="1.0" encoding="utf-8" ?>
    - <ns:MaterialData xmlns:ns="http://xxxxxxx.com/yyy/test">
    - <item>
    - <MaterialLine>
      <matno_external>ZED00000001</matno_external>
      <mat_description>AIMS LIGHT A</mat_description>
      </MaterialLine>
      </item>
    - <item>
    - <MaterialLine>
      <matno_external>ZED00000001</matno_external>
      <create_date>10/09/06</create_date>
      <mat_description>AIMS LIGHT B</mat_description>
      </MaterialLine>
      </item>
    - <item>
    - <MaterialLine>
      <matno_external>ZED00000002</matno_external>
      <mat_description>AIMS SWITCH A</mat_description>
      </MaterialLine>
      </item>
    - <item>
    - <MaterialLine>
      <matno_external>ZED00000002</matno_external>
      <mat_description>AIMS SWITCH B</mat_description>
      </MaterialLine>
      </item>
    - <item>
    - <MaterialLine>
      <matno_external>ZED00000003</matno_external>
      <mat_description>AIMS SEMICONDUCTOR A</mat_description>
      </MaterialLine>
      </item>
    - <item>
    - <MaterialLine>
      <matno_external>ZED00000003</matno_external>
      <mat_description>AIMS SEMICONDUCTOR B</mat_description>
      </MaterialLine>
      </item>
      </ns:MaterialData>

    Thanks all for your attempts but I figured it out and wasn't this the biggest case of irony.
    Here I was trying to prevent leading spaces from being trimmed in the loading of my file and my problem was that when I typed:
    MaterialLine.fieldContentFormatting
    I actually left a "blank" at the end of the "g" in Formatting.  Apparently XI didn't like that and neither gave me a runtime or compile error.  Anyway I found this and though I'd share in case anyone else encounters it.  I removed the blank and all is working now.

  • File content conversion - sender adapter for Header and detail records

    Hi Experts,
                     I am receiving a field of fixed length content format.(Header)The first line of the file will follow the structure X having some fields and (DetailRecord)subsequent lines in the file will follow structure Y having somes fields.There is no record identifier for Header and Detail records.In one file first line is Header records and remaining subsequent line is DetailRecord.What are the parameters we have to set for sender file content conversion parameters as i donot have any key field and key field value.And in one file we have only one header records ( first line) and n number of detail records from 2nd line onwards.
    Thanks
    Deepak

    Hi
    Refer the below fourm link,
    Flat file whitout id
    Regards
    Ramg.

  • Receiver file Content Conversion with Header line

    Hi,
    Here I am doing receiver file content conversion with header line.
    I am able to get the output file correct, when I open the file in notepad the header line and data appearing in the same line (not accepted).
    But when I tried to open the name file in internet explorer I can see the header line and data in two different lines (accepted).
    What should I do I want to see the same output in the notepad?
    Please help me out.
    Thanks in advance,
    Srikanth.

    You can use NameA.addHeaderLine.
    Specify whether the text file will have a header line with column names. The following values are permitted:
    0 u2013 No header line
    1 u2013 Header line with column names from the XML document
    2 u2013 As for 1, followed by a blank line
    3 u2013 Header line is stored as NameA.headerLine in the configuration and is applied
    4 u2013 As for 3, followed by a blank line
    The below weblinks will help you to know the other paramters.
    http://help.sap.com/saphelp_nw04/helpdata/en/d2/bab440c97f3716e10000000a155106/content.htm
    http://help.sap.com/saphelp_nwpi71/helpdata/en/44/686e687f2a6d12e10000000a1553f6/content.htm

  • RCVR File Content Conversion - Remove empty Recordsets

    Hello everyone,
    Here's my scenario: IDOC > XI > TXT (File Content Conversion)
    Here's how my output XML currently looks like:
    <?xml version="1.0" encoding="UTF-8"?>
    <ns0:D001FILE_MT xmlns:ns0="http://www.pharmaindustries.com">
       <Recordset/>
       <Recordset>
          <MATLCODE>00155581</MATLCODE>
          <MATLNAME>ALCOHOL REFINED 96% V/V (BALAYAN)</MATLNAME>
       </Recordset>
       <Recordset>
          <MATLCODE>00155581</MATLCODE>
          <MATLNAME>ALCOHOL REFINED 96% V/V (BALAYAN)</MATLNAME>
       </Recordset>
       <Recordset/>
       <Recordset>
          <MATLCODE>20388853</MATLCODE>
          <MATLNAME>POLYSORBATE 60 SD (TWEEN 60 SD)</MATLNAME>
       </Recordset>
    </ns0:D001FILE_MT>
    Currently, the conversion settings in the receiver file adapter results into this:
    BLANK
    00155581          ALCOHOL REFINED 96% V/V (BALAYAN)       
    00155581          ALCOHOL REFINED 96% V/V (BALAYAN)
    BLANK                                                                               
    20388853          POLYSORBATE 60 SD (TWEEN 60 SD)
    I want to get remove the BLANK LINES from the text file so that it now resembles this:
    00155581          ALCOHOL REFINED 96% V/V (BALAYAN)       
    00155581          ALCOHOL REFINED 96% V/V (BALAYAN)
    20388853          POLYSORBATE 60 SD (TWEEN 60 SD)
    Here are the conmmand parameters already existing in the "Content Conversion Parameters":
    Recordset.fieldNames
    Recordset.fieldFixedLengths
    Recordset.endSeparator
    Would anyone know which command I should add in this section so that empty "Recordsets" are removed from the text file?
    Thanks in advance!
    Glenn

    Hi,
       as per my understanding, u have teo record sets
       i.e Recordset(bold one which has no fileds)
           Recordet(which has two fileds)
          if you use Recordset.field Separator-- 'nl'
          nothing but ignoring the first record set
         for second record set(which is not bold)
        provide FCC parameters which i have provided previously.
        still u r facing problem, try with
          ignore recordset name - true
       Recordset.fieldContentFormatting - ignore
    note: here you have two record set i.e<Recordset>(blod)
             <Recordset>(not bold).
    warm regards
    mahesh.

  • File Content Conversion - Header

    Hi,
    I need to produce an pipe delimited file.  The only problem is that that column fields would need to be differentiated with an hypen.
    A typical file format is
    NAME
    ADDRESS
    AGE
    ONE
    134,DSTREET
    27
    TWO
    222,SSTREET
    28
    How do i specify the two lines of hypen(-) in file content conversion, is it possible or do i need to use any unix script to achieve it.
    When i posted, the pipe delimited disappeared.
    Please note that there is pipe delimeted between each fields.
    Regards
    Krish
    Edited by: Krish on Dec 21, 2011 2:20 PM

    hi Krish,
    you can do it in your target Data Type, by specifying a structture which is not only based on your records, but like that:
    HypenLine1
    your headerLine (with field names)
    HypenLine2
    your Records... (so your current structure)
    so something like:
    DT_MyDataType
    ....HypenLine1  level with occurence 0..1
    .............LineField with occurence 0..1
    .... headerLine level with occurence 0..1
    and  in your mapping,
    ¤ you put constant in each field of your HeaderLine to provide the name of your field. (*)
    ¤ you put as many '-' character you want in your single field "LineField" of HypenLine1 and HypenLine2.
    (*) of course, in your receiver CC, you should remove your option which produces the headerLine based on your fields names, as now this line is maintained directly in your mapping.
    Mickael
    Edited by: Mickael Huchet on Dec 21, 2011 2:38 PM

  • Inconsistency File Content Conversion

    Hi,
    My scenario is file to r/3 wherein the source file is a fixed length file.  So I am using file content conversion in my sender adapter.
    My source structure looks like:-
    DT_TRAN
    |__RECORD  1..unbounded
    |_____HEADER    1
    |_____QUOTE      0...unbounded
    |_____ORDER      0...unbounded
    |_____INVOICE    0...unbounded
    |_____BILLING     0...unbounded
    |_____CONTACT  0...unbounded
    |_____FOOTER    1
    I am getting this error while executing the scenario.
    Conversion of file content to XML failed at position 0: java.lang.Exception: ERROR consistency check in recordset structure validation (line no. 5: missing structure(s) before type 'Header'.
    However, I checked the record in line no.5 and it's clean and perfect.  But still getting the error.  If I remove this record and execute, the file is picked and data is processed.
    In File Content Conversion, I have used the following parameters:-
    Recordset Name = Record
    Recordset Structure = HEADER,1,QUOTE,,ORDER,,INVOICE,,BILLING,,CONTACT,*,FOOTER,1
    I am using Key Fields to separately identify the details records.  I used ignoreRecordsetName = true.  In this case, in XML message payload does not contain <Record> node and so there is an error.
    Can anyone suggest, how to overcome the issue such that all the records in the file are processed.
    Thanks.
    Balakrishnan

    The content conversion parameters are:-
    Record.endSeparator = 'nl'
    Record.fieldNames = HEADER,QUOTE,ORDER,INVOICE,BILLING,CONTACT,FOOTER
    Record.fieldSeparator = 'nl'
    like the above, i have done for all the nodes.  However, if i remove the record from line 5 and process the file, the file is picked up and processed succesfully.  i have checked many times. the line no.5 record is not having any issues with structure or fixed length calculation.  for some reaosn, it gives the error.

  • ** File Content Conversion Error in Receiver CC - How to solve this?

    Hi friends,
    My target structure looks like below.
    EmployeeJobDetails                                        --> Message Type
       JobCode                                                      --> Node
            EmployeeNumber            xsd:string
            Domain                           xsd:string
       JobTrack                                                     --> Node
             Department                    xsd: string
             Position                         xsd: string
    I use the FCC parameters in the receiver CC as below:
    Recordset Structure:    JobCode,JobTrack
    JobCode.fieldSeparator = |
    JobCode.endSeparator = 'nl'
    JobTrack.fieldSeparator = |
    JobTrack.endSepartor = 'nl'.
    Because, we want the output like below
    1099|Raja
    Accts|JuniorAccountant
    1100|Ram
    HR|Recruiter
    like this.
    In this scenario Source is XML and target is txt file.
    I am using XSLT Mapping. The FCC works fine, if my source input file contains some records. But, when we send empty source XML file as below
    <?xml version="1.0" encoding="UTF-8"?>
    <EMPLOYEE_DATA/>
    Mapping works fine. Message is processed successfully in SXMB_MONI. The payload in response also comes with Message Type name like below
    <EmployeeJobDetails    namespace >
    </EmployeeJobDetails>
    While convert this, the system throws below error.
    Error Message:
    Message processing failed. Cause: com.sap.aii.af.ra.ms.api.RecoverableException: Exception in XML Parser (format problem?):'java.lang.Exception: Message processing failed in XML parser: 'Conversion configuration error: Unknown structure '' found in document', probably configuration error in file adapter (XML parser error)': java.lang.Exception: Exception in XML Parser (format problem?):'java.lang.Exception: Message processing failed in XML parser: 'Conversion configuration error: Unknown structure '' found in document', probably configuration error in file adapter (XML parser error)'
    Friend, how to convert this when source XML is empty.
    But, if we remove JobTrack node in target strucutre and remove the JobTrack parameters in CC, then if we send the same empty XML file FCC is working  fine and  we  get the target text file 0 KB. (Amazing !!)
    But, in the first case, how to solve the issue?
    Kind Regards,
    Jegathees P.

    Hi friends,
    If we remove JobTrack node in target strucutre and remove the JobTrack parameters in CC, then if we send the <b>same empty XML file</b> FCC is working fine and<b> we get the target text file 0 KB</b>. (Amazing !!)
    But, if we give parameters like JobCode,JobTrack then send pass the same empty file, we face the problem 'File Content Conversion' Error.
    Searching solution for this problem ...

Maybe you are looking for

  • How do I run microsoft Access 2010 on my mac book pro?

    I own a mac book pro running OS X and I need to have microsoft word 2010, excel 2010, powerpoint 2010 and Access 2010 for an online computer course.  All of the Microsoft Office for Mac programs that I have seen do not include Access.  Is this correc

  • T61 Problem: Getting external monitor to display 1920x1080 through VGA

    I've got the Nvidia 195.62 drivers, but windows still shows a max resolution of 1600x1200 for a 1920x1080 lcd screen.  I'm using the VGA out. This is frustrating.

  • 2LIS_04_P_ARBPL Delta not captured from extraction queue

    I am using datasource 2LIS_04_P_ARBPL to load 0PP_C03 cube. I have setup init selections as follows 0PRODORDER     AUFNR     Order Number     6000000000     6999999999 0COORD_TYPE     AUART     Order Type     ZCP1 0PLANT     WERKS     Plant     1010

  • Recreate or Rebuild a new iTunes database

    I have found several people need help recreating or rebuilding their databases. This is NOT the same thing as recreating a music library, this is a deeper issue. I discovered that by tricking iTunes into thinking you are starting it for the first tim

  • Automatic file generation

    What I want to do is write data to a spreadsheet file and have this file named from a user input string earlier in the code ( I am passing all the user inputs through each VI via clusters). For example, one of the user inputs is "Unique Valve ID Numb