Re:Remove Recordset in FCC?

Hi All,
I am working on File to IDOC scenario where I am getting error in Sender File CC. I see the payload contains recordset where in my DT,MT I didnt mentioned any recordset in my strcuture:
DT is as below:
DT_DATA
--Row
Field1
Field2
In payload it shows as below:
<?xml version="1.0" encoding="utf-8" ?>
- <ns:MT_Data xmlns:ns="http://sap.com/interface">
- <Recordset>
- <Row>
  <Field1>ZOR</Field1>
  <Field2>2030009716</Field2>
In my FCC I have the following parameters:
Document Name MT_DATA
Document Name Space http://sap.com/interface
Document Offset             <BLANK>
Recordset Name              <BLANK>
Recordset Namespace    <BLANK>
Recordset Strcuture       Row,*
Recordset Sequence     Asending
Recordset per message    <BLANK>
KeyFiledName                  <BLANK>
KeyFieldType                 <BLANK>
How can I get rid of <Recordset> tag in payload???
Thanks
Rajeev

I see the payload contains recordset where in my DT,MT I didnt mentioned any recordset in my strcuture:
How can I get rid of <Recordset> tag in payload???
If not seen already have a read of this help section:
http://help.sap.com/saphelp_nwpi71/helpdata/EN/44/6713ec3f914ddee10000000a1553f7/content.htm
From the above section:
u25CB       ignoreRecordsetName
A <Recordset> element is inserted in the XML structure for each recordset structure. This level is not always required, particularly
if the recordset only contains one structure definition.
If you set the parameter to true, the <Recordset> element is not inserted.
Regards,
Abhishek.

Similar Messages

  • Generating multiple recordset names

    Hi All,
    I am doing a scenario which is File to IDOC.
    I am reading a file which is of variable structure , so in FCC i have used the RecordSet Sequence : Variable
    after reading the file i have the structure as
    example:
    - <RecordSet>
    - <W6>
      <WE601 />
      <W602 />
      <W603 />
      <W604 />
      <W605>D</W605>
      </W6>
    - <N1>
      <N101>ST</N101>
      <N102>ZZ</N102>
      <N103></N103>
      <N104></N104>
      <N105>R</N105>
      <N106 />
      </N1>
    - <N4>
      <N401>ST</N401>
      <N402></N402>
      <N403>SD</N403>
      <N404></N404>
      <N405>US</N405>
      </N4>
    - <N1>
      <N101>WH</N101>
      <N102>ZZ</N102>
      <N103>2070</N103>
      <N104> SCS</N104>
      <N105 />
      <N106 />
      </N1>
    - <N4>
      <N401>WH</N401>
      <N402></N402>
      <N403></N403>
      <N404></N404>
      <N405>US</N405>
      </N4>
      </RecordSet>
    But i have to get the recordset name <RecordSet> twice as given below after mapping
    - <RecordSet>
    - <W6>
      <WE601 />
      <W602 />
      <W603 />
      <W604 />
      <W605>D</W605>
      </W6>
    - <N1>
      <N101>ST</N101>
      <N102>ZZ</N102>
      <N103></N103>
      <N104></N104>
      <N105>R</N105>
      <N106 />
      </N1>
    - <N4>
      <N401>ST</N401>
      <N402></N402>
      <N403>SD</N403>
      <N404></N404>
      <N405>US</N405>
      </N4>
      </RecordSet>
    - <RecordSet>
    - <W6>
      <WE601 />
      <W602 />
      <W603 />
      <W604 />
      <W605>D</W605>
      </W6>
    - <N1>
      <N101>WH</N101>
      <N102>ZZ</N102>
      <N103>2070</N103>
      <N104> SCS</N104>
      <N105 />
      <N106 />
      </N1>
    - <N4>
      <N401>WH</N401>
      <N402></N402>
      <N403></N403>
      <N404></N404>
      <N405>US</N405>
      </N4>
      </RecordSet>
    i.e., i am getting 1 recordset after FCC and then after mapping i need to generate 2 recordsets and pass 2 IDOCS.
    Please suggest me how can i generate  multiple recordsets.
    Thanks
    Sai_SHA

    Hi All,
    sorry the requirement is a different one
    I am reading a file which is of variable structure , so in FCC i have used the RecordSet Sequence : Variable
    after reading the file i have the structure as
    - <RecordSet>
    - <W6>
    <WE601 />
    <W602 />
    <W603 />
    <W604 />
    <W605>D</W605>
    </W6>
    - <N1>
    <N101>ST</N101>
    <N102>ZZ</N102>
    <N103></N103>
    <N104></N104>
    <N105>R</N105>
    <N106 />
    </N1>
    - <N4>
    <N401>ST</N401>
    <N402></N402>
    <N403>SD</N403>
    <N404></N404>
    <N405>US</N405>
    </N4>
    - <N1>
    <N101>WH</N101>
    <N102>ZZ</N102>
    <N103>2070</N103>
    <N104> SCS</N104>
    <N105 />
    <N106 />
    </N1>
    - <N4>
    <N401>WH</N401>
    <N402></N402>
    <N403></N403>
    <N404></N404>
    <N405>US</N405>
    </N4>
    - <W6>
    <WE601 />
    <W602 />
    <W603 />
    <W604 />
    <W605>D</W605>
    </W6>
    - <N1>
    <N101>WH</N101>
    <N102>ZZ</N102>
    <N103>2070</N103>
    <N104> SCS</N104>
    <N105 />
    <N106 />
    </N1>
    - <N4>
    <N401>WH</N401>
    <N402></N402>
    <N403></N403>
    <N404></N404>
    <N405>US</N405>
    </N4>
    </RecordSet>
    But i have to get the recordset name <RecordSet> twice , as the file is of variable structure i cannot go for RecordSet Sequence : Ascending .
    - <RecordSet>
    - <W6>
    <WE601 />
    <W602 />
    <W603 />
    <W604 />
    <W605>D</W605>
    </W6>
    - <N1>
    <N101>ST</N101>
    <N102>ZZ</N102>
    <N103></N103>
    <N104></N104>
    <N105>R</N105>
    <N106 />
    </N1>
    - <N4>
    <N401>ST</N401>
    <N402></N402>
    <N403>SD</N403>
    <N404></N404>
    <N405>US</N405>
    </N4>
    - <N1>
    <N101>WH</N101>
    <N102>ZZ</N102>
    <N103>2070</N103>
    <N104> SCS</N104>
    <N105 />
    <N106 />
    </N1>
    - <N4>
    <N401>WH</N401>
    <N402></N402>
    <N403></N403>
    <N404></N404>
    <N405>US</N405>
    </N4>
    </RecordSet>
    - <RecordSet>
    - <W6>
    <WE601 />
    <W602 />
    <W603 />
    <W604 />
    <W605>D</W605>
    </W6>
    - <N1>
    <N101>WH</N101>
    <N102>ZZ</N102>
    <N103>2070</N103>
    <N104> SCS</N104>
    <N105 />
    <N106 />
    </N1>
    - <N4>
    <N401>WH</N401>
    <N402></N402>
    <N403></N403>
    <N404></N404>
    <N405>US</N405>
    </N4>
    </RecordSet>
    i am getting 1 recordset after FCC but i need to get 2 recordsets.
    Please suggest me how can i generate multiple recordsets and pass and pass mutilple IDOCS.
    Thanks
    Sai_SHA.

  • File content conversion query

    hi,
    i have sender and received side -file content conversion.
    in sender communication channel -
    Recordset structure is -> Header,1,Detail,*
    Message type structure is
    MT1 has 2 subnodes Header and Detail.
    In my message type,there is no field identical in Header and Details. All fields are different.
    (1) Is Key Field Name mandatory in this case ? If I am not giving Key field name,sender channel gives error. How to resolve it ?
    (2) Input file comes from customer and in the input file there is no specific data to identify header and detail. 1st line shud be header and other lines shud be Detail ,they say. If no identification coming in incoming data,how can we set the key field name ?
    rgds

    Hi SAP PI,
                          For this moment try this.
    Let the file content is like this
    03456451     TESTDATABC 7645649 8746464
    12344       60042
    45678        60043
    You try reading the file like this
    <MT_S>
         <RECORDSET>
             <ROW>
                      <field1>03456451</field1>
                      <field2>TESTDATABC 7645649 8746464</field1>
            </ROW>
              <ROW>
                      <field1>03456451</field1>
                      <field2>TESTDATABC 7645649 8746464</field1>
            </ROW>
              <ROW>
                      <field1>03456451</field1>
                      <field2>TESTDATABC 7645649 8746464</field1>
            </ROW>
    </RECORDSET>
    </MT_S>
    FCC is like this
    Document Name : MT_S
    Document Namespace: "put name space here"
    Recordset Name: RECORDSET
    Recordset Structure: ROW,*
    ROW.fieldNames  field1,field2
    ROW.endSeparator   'nl'
    ROW.fieldSeparator   0x20
    Once you get this in mapping use a simple UDF to ignore the first ROW values and read the rest.
    Populate the target structure from the output of UDF for each field value.
    Please let me know if you need the uDF and further mapping for this.
    Regards
    Anupam

  • Pick the message without recordsetstructure,*

    Hi all,
    I want pick the message from sender without specifing in the field Recordset structure as Recordset,* in fcc 2 file scenario
    ex: we are mentioning in recordset structure as row,* then receiver picking all fields data.
    but i want select the all the fields data without specifing row,*
    Regards,
    Chakrapani
    Edited by: chakrapani1234 on Jan 18, 2011 2:42 PM

    Hi,
    As FCC is trying to convert the format to XML..
    XML need a root tag to form the structure so you cannot avoid that..
    HTH
    Rajesh

  • 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.

  • How do we remove Carriage Return (line feed) inserted in FCC files

    Hi Experts,
    The file that we generate has a carriage return at the end.
    Is there any way in which we can remove this carriage return (line feed) from the file?
    The FCC parameters used at our end are as below:
    structure.filedNames:
    structure.fieldFixedLengths:
    structure.fixedLengthTooShortHandling: Cut
    Kindly tell us a solution ASAP.
    Thanks & Regards
    Dhwani

    Dear All,
    Let me elaborate on my query
    Consider that the files output looks like below:
    12  34  45  545 5454 UL
    23  33  43  434 4545 FG
    45  44  44  586 6535 GM
    Now there is an extra line(Carriage Return) getting inserted after the last line 45  44  44  586 6535 GM  which is not required at our end.
    The cursor of the file instead of stopping on the last character M, points to the next line.
    Can you please suggest how to remove this extra line from the files.
    I dont understan how will remove context help in this case.
    Regards
    Dhwani

  • Sender FCC with unbounded RecordSet Structure produces Empty File

    Hi Experts,
    My scenario is File (FTP) to IDoc, using FCC on the sender.
    The source file is a flat file representation of the IDoc e.g. with the segment names preceeding each record row.
    FCC parameters are as follows:
    RecordSet Name: Z1RECORDSETNAME
    RecordSet Structure: EDI_DC,1,E1TPDLH,1,Z1TPI2H,1,E1TPACC,E1TPTRM,,E1EDT13,,E1TPDIH,1,Z1TPI2HD,1,E1TPNOT,*
    RecordSet Sequence: Variable OR Ascending
    .fieldFixedLengths
    .fieldNames
    .keyFieldValue
    .endSeparator
    .keyFieldInStructure
    above parameters are used in all segments, except in E1TPNOT where ignoreRecordsetName is added
    My issue is when the test file contains more than 1 value for the unbounded segments E1TPTRM, E1EDT13 (e.g.  3 row values for E1TPTRM and 2 row values for E1EDT13) the Content Conversion succesfully finishes but produces an Empty File (size = 0)
    Does anyone know how to fix this issue?  Am i missing something in the parameters to be able to support the current file structure?
    Kindly share your ideas/solution
    I've tried to edit the test file to have only 1 record value for the unbounded segments and it is succesfull and does not produce an empty file.

    Try giving
    EDI_DC,1,E1TPDLH,1,Z1TPI2H,1,E1TPACC,E1TPTRM, * ,E1EDT13, * ,E1TPDIH,1,Z1TPI2HD,1,E1TPNOT,*
    I got it, i guess even you have given the astrix after E1TPTRM and E1EDT13 and it changed to bold.
    Ok ignore my answer.

  • Missing "Recordset Sequence" in FCC

    HI
    We are in SP19 and We find that the parameter "Recordset Sequence" is missing in the FCC paramaters section of the sender File Communication channel
    Is there a way to get back that field? Or should we revert back to SP15
    regards
    krishna

    Thank You Guys
    We've tried to re-import the Basis Components into IR but the issue persists.
    Should we re-start XI after importing the components?
    or
    is there any other work-around this issue
    Thanks
    Krishna

  • FCC  Recordset structure question.

    Hi,
    I have completed the config for scenarion File>XI>IDOC(R/3)
    After activating the File comm channel, the message coming out of XI (in sxmb_moni) has the following error
    'Parsing an empty source. Root element expected'
    I want to know:
    1> Does the Recordset-structure field names (defined in .fieldNames) need to match exactly with the Data_type structure defined in IR. Currently my Data_type in IR does not have a key field, which I have introduced in the FCC keyField parameter.
    2>I have generated all my ID config by importing 'Integration Scenario' from IR and this has resulted in Automatic Creation of HTTP, RFC, IDOC,XI Receiver channels. ( GeneratedReceiverChannel_HTTP, GeneratedReceiverChannel_RFC, GeneratedReceiverChannel_IDOC, GeneratedReceiverChannel_XI ). Do I require all of these to be active?
    Thanks and Regards
    Shirin

    HI
    FCC Paremeters:
    nameA.fieldSeparator =~
    nameA.endSeparator ='nl'
    nameA.fieldNames =text1,text2,text3,text4
    nameA.processFieldNames fromConfiguration
    nameA.lastFieldsOptional Yes
    nameA.missingLastFields Add
    nameA.additionalLastFields ignore
    ignoreRecordsetName: true
    if endSeparator = newline, then
    nameA.endSeparator = 'nl'
    nameA.fieldSeparator =~
    nameA.fieldNames = field1,field2,field3,field4
    if endSeparator = #, then
    nameA.endSeparator = #
    nameA.fieldSeparator =~
    nameA.fieldNames = field1,field2,field3,field4
    1.     NameA.missingLastfields
    If the inbound structure has less fields than specified in the configuration then the XML outbound structure is created as follows:
    ○ ignore
    Outbound structure only contains the fields in the inbound structure
    ○ add
    Outbound structure contains all fields from the configuration; the fields missing in the inbound structure are empty.
    ○ error
    Conversion is terminated due to the incomplete inbound structure. An error message is displayed.
    2. NameA.additionalLastFields
    If the inbound structure has more fields than specified in the configuration then the XML outbound structure is created as follows:
    ○ ignore
    Outbound structure only contains the fields in the inbound structure
    ○ error
    Conversion is terminated due to the incomplete inbound structure. An error message is displayed.
    The default value is ignore. If you have defined the NameA.fieldFixedLengths parameter, the default value is error.
    If you have defined the NameA.fieldFixedLengths parameter and do not set either of the parameters described above, apart from the default values, the conversion routine works the same as described under Handling Structure Deviations.
    Only once you set one of the two parameters will the other parameter be evaluated with its default value.
    To ensure a well-defined runtime behavior for variable inbound structures, we recommend that you always set both parameters.
    cheers

  • Removing the empty line during Receiver FCC!

    Hi, Guys,
    I used file content conversion in receive FCC. My data type is like this:
    <TextFromSAP_DT>
    <FileName>
      <FileName>abc.txt</FileName>
    </FileName>
    <Record>
      <TEXT>dasfafaf</TEXT>
    </Record>
    <Record>
      <TEXT>qqqqqqqq</TEXT>
    </Record>
    <Record>
      <TEXT>fgfffff</TEXT>
    </Record>
    </TextFromSAP_DT>
    I need to get file name from <FileName> and output a flat file with the value in <TEXT>. But I always got an empty line at the file beginning. And I tried to move <FileName> to the end. And I got an empty line at the file end. My custom said they are having trouble to read the file with the empty line no matter it is in the beginning or end.
    I followed sample as link below but does not work. 
    https://wiki.sdn.sap.com/wiki/display/profile/2007/07/30/Removing%20the%20empty%20line%20during%20Receiver%20FCC!
    Does any body can give a help?
    Thanks a lot!
    Meiying
    Edited by: Meiying Yang on Aug 14, 2009 11:16 PM

    Hi Yang,
    You create the value udf GetFileName with one input value say a. Add this code:
    Imports: java.*;
    Add this code:
       //write your code here
    DynamicConfiguration conf = (DynamicConfiguration)container.getTransformationParameters().get(StreamTransformationConstants.DYNAMIC_CONFIGURATION);
    DynamicConfigurationKey key = DynamicConfigurationKey.create("http:" + "/" + "/" + "sap.com/xi/XI/System/File", "FileName");
    conf.put(key, a);
    return "";
    Map like this:
    FileName --> GetFileName(udf) --> target_mt
    Map other fields like:
    Record --> Record
    TEXT ---> TEXT
    Save it and activate it. When you test in mapping you will get an error so dont worry. I go the error like:
    RuntimeException in Message-Mapping transformation: Runtime exception during processing target field mapping /ns0:Target_MT. The message is: Exception:[java.lang.NullPointerException] in class com.sap.xi.tf._TestFileName_ method file1$[abc.txt, com.sap.aii.mappingtool.tf3.rt.Context@32dcebf1]
    Dont worry about this activate and do the rest of the configuration.
    In your receiver communication channel for file name put as FileName and check the file name in adapter specific message attributes. Then test it and it should work and you will get the file with file name abc.txt. I tested the whole end to end scenario and I am getting the file name abc.txt and the output what you want. If you still could not get it send me a m ail to my i d from my business card. I will send you the screen shots.
    Regards,
    ---Satish

  • FCC : use of  recordsets per message

    Hi experts,
    what is the use of Recordsets per message in FCC,
    where we will use this option,
    in what type of situations we will use...
    Thx in Advance
    John

    Hi John,
    what is the use of Recordsets per message in FCC,
    This Parameter Defines How many Records you wish to send per Message,
    where we will use this option,
    This option is very useful where you have huge volume data to be processed.
    This option will process the messages in small bunches there by improving the resource consumption.
    Thanks
    Sunil Singh

  • Mapping question - how to remove empty recordsets from output XML?

    Hello everyone!
    I have a mapping problem I hope you can help me out with.
    Here is an example of the source message:
    <IDOC>
    .    <HEAD>
    .    </HEAD>
    .    <DET>
    .    .    <Node>
    .    .    .    <nodeA>001</nodeA>
    .    .    .    <nodeB>OA</nodeB>
    .    .    </Node>
    .    .    <Node>
    .    .    .    <nodeB>OB</nodeB>
    .    .    </Node>
    .    .    <Node>
    .    .    .    <nodeA>002</nodeA>
    .    .    .    <nodeB>OC</nodeB>
    .    .    </Node>
    .    </DET>
    </IDOC>
    After testing the above XML in the message mapping, here's what my target looks like:
    <FILE>
    .    .    <Rec>
    .    .    .    <nA>001</nA>
    .    .    .    <nB>OA</nB>
    .    .    </Rec>
    .    .    <Rec>
    .    .    .    <nB>
    .    .    .    <nA>
    .    .    </Rec>
    .    .    <Rec>
    .    .    .    <nA>002</nA>
    .    .    .    <nB>OC</nB>
    .    .    </Rec>
    </FILE>
    "Node" in the "source" message is mapped to "Rec" in my "target" message.
    "Node=" -
    > "Rec"
    You may notice the the "Rec" in the second entry has empty fields. The reason this is so is because I put an "IF" condition in field "nA" and field "nB" that checks whether "nodeA" in the "source" exists/has a value, and if it doesn't, empty values should be given.
    Here's my problem, I need the XML output to be clean. All empty Recs should be removed from the Output XML so that it resembles the one below:
    <FILE>
    .    .    <Rec>
    .    .    .    <nA>001</nA>
    .    .    .    <nB>OA</nB>
    .    .    </Rec>
    .    .    <Rec>
    .    .    .    <nA>002</nA>
    .    .    .    <nB>OC</nB>
    .    .    </Rec>
    </FILE>
    I've tried several ways to get this done to no avail. Would anyone be able to help me out? I would really, really appreciate it!
    Warm regards,
    Glenn

    Hello,
    Here's how the Display Queue looks like from the "CreateIF"
    Default Context:
    0     [false]     [suppress]
    1     [false]     [suppress]
    2     [false]     [suppress]
    3     [true]     []
    4     [false]     [suppress]
    5     [true]     []
    6     [false]     [suppress]
    7     [false]     [suppress]
    8     [false]     [suppress]
    9     [true]     []
    10     [false]     [suppress]
    11     [false]     [suppress]
    12     [false]     [suppress]
    13     [true]     []
    14     [false]     [suppress]
    15     [false]     [suppress]
    16     [false]     [suppress]
    17     [true]     []
    18     [false]     [suppress]
    19     [false]     [suppress]
    20     [false]     [suppress]
    21     [true]     []
    CreateIF Context up one notch:
    0     [false]     [suppress]
    1     [true]     []
    2     [true]     []
    3     [true]     []
    4     [true]     []
    5     [true]     []
    6      [true]     []     
    7     [true]     []
    8     [false]     [suppress]
    9     [false]     [suppress]
    10     [false]     [suppress]
    11     [false]     [suppress]
    Here's how the Display Queue looks like from the "NodeA"
    SUPPRESS     [false]
    SUPPRESS     [false]
    [0000000292]     [false]
    [0000000292]     [true]
    [0000000252]     [false]
    [0000000252]     [true]
    SUPPRESS     [false]
    [0000000078]     [false]
    [0000000078]     [false]
    SUPPRESS     [true]
    [0000000109]     [false]
    [0000000109]     [false]
    SUPPRESS     [false]
    [0000000292]     [true]
    [0000000292]     [false]
    SUPPRESS     [false]
    [0000000076]     [false]
    [0000000076]     [true]
    SUPPRESS     [false]
    [0000000292]     [false]
    [0000000292]     [false]
    SUPPRESS     [true]
    SUPPRESS     [false]
    NodeA context one notch up:
    SUPPRESS     [false]
    [0000000292]     [true]
    [0000000252]     [true]
    [0000000078]     [true]
    [0000000109]     [true]
    [0000000292]     [true]
    [0000000076]     [true]
    [0000000292]     [true]
    [0000000074]     [true]
    [0000000077]     [true]
    [0000000081]     [true]
    [0000000292]     [true]
    [0000000252]     [true]
    [0000000081]     [true]
    [0000000081]     [false]
    SUPPRESS
    Hope that helps you help me!
    Glenn

  • Removing quotes in receiver file FCC.....

    Hi,
    I am working in a scenario where I am doing FCC on receiver file adapter and generating a text file.
    Now,I have given comma as the field end seperator.But some fields exists that have comma in their values....Now my FCC isnot working properly....
    If I send those fileds in quotes,and want to send them to recever system without quotes,what should I do??
    Is there any option as enclosureSignEsc,in receiver file adapter FCC too as in sender file FCC????
    Regards,
    Sriparna

    > Now,I have given comma as the field end seperator.But some fields exists that have comma in their values....Now my FCC isnot working properly....
    > If I send those fileds in quotes,and want to send them to recever system without quotes,what should I do??
    Ask your customer or project lead.
    You cannot have a comma as field seperator, when you have also commas in the field values.

  • FCC..how to remove first row

    Hello experts,
    I have configured a end to end sccenario fo csv files, Im using fcc for the sender file adapter
    The first row has all the field names such as name,number and the rest of the rows have the values.
    when I run the scenario the xml being formed has the field names and the vales..
    example
    <name>name</name>
    <number>number</number>
    <name>Teja</name>
    <number>10</number>
    what i want in the xml is just
    <name>Teja</name>
    <number>10</number>
    could any one pls help me out on this?
    I have used fieldNames,fielsSeparaor and ignorerecorstSetName as the content conversion parameters..
    do i have to add any more?
    Regards,
    Teja

    Hi,
    You should achieve this by using Document Offset parameter on the Sender side.  Set Document Offset to 1 in order  to ignore the first line.
    "●      Under Document Offset, specify the number of lines that are to be ignored at the beginning of the document.
    This enables you to skip comment lines or column names during processing. If you do not make an entry, the default value is zero lines."
    http://help.sap.com/saphelp_nw70/helpdata/en/2c/181077dd7d6b4ea6a8029b20bf7e55/frameset.htm
    Thanks,
    Pooja

  • FCC recordsets per message

    Hi experts,
    I have the following message:
    I do not understand why?
    very thanks,

    yes, the message type is:
    SOURCE                                                       TARGET
    mt_funcion_z       1..1                                    Z_MM_CREAC_MAT            1..1
        data                0..unbounded                      PI_DATOS                           1..1
              data          0..unbounded                          item                                 0..unbounded
                   tipo      0..1                                    PI_SEPARATOR                  1..1
                   field1    0..1
                   field2    0..1
                   field16  0..1

Maybe you are looking for

  • I am trying to install XP Home Edition over Windows 7

    Hello,  I have been all over trying to resolve the problem detailed below and hope you can help me. I have a HP Pavilion Elite -  HPE 180T - OS Win 7 64 bit.  System Info: 9 GB Physical memory - 5 memory Modules - Video Card1.8GB  NVIDIA GeForct GTX

  • How can I Resize Two or More Shapes At The Same Time?

    I've got text over a rectangle over another rectangle. When I change my text, the size of the boxes needs to change and it's a drag ot have to do each one separately and constantly realign. Is there a way I can resize both of them at the same time to

  • Can I install Windows 8.1 on my mid-2010 MacBook Pro?

    Can I do it or I will get an error saying that it is incompatible and cannot be installed? I need to know before I buy. As far as I am concerned I does meet the minimum system requirements suggested by Microsoft by a long shot. Will boot camp allow i

  • How do I check for bad memory

    I have 2008 Mac pro with 12G memory. Today it will not boot up. I get different color vertical lines on the monitor. I would like to check for bad memory dimms. How. Thanks, Rsood

  • Trouble Opening Acrobat X Pro

    Just downloaded the trial version....downloaded fine but when trying to launch, a prompt came up saying could not open as computer did not meet minimum operating requirements...but it does. I'm running Vista with sufficient processing speed, RAM and