FCC Parameters - Receiver Side

Hi All,
   Is it possible to give the FCC parameters for the following complex struture at the receiver Side. What are the option are avilable to resolve the issue.
<b>deliveryOrderMessage,1,
startOfMessageSegment,1,
message,1
segmentGroupHeader,1
segmentGroupHeaderLevel1
Some fields are there
headerSegmentDatails,1,
Some fields are there
invoiceToDataSegment,1
Some fields are there
headerSegmentData2,1,
Some fields are there
shipToDataSegment,1
Some fields are there
headerSegmentData3,1
Some fields are there
headerSegmentData4,1
Some fields are there
commentSegment,*
Some fields are there
segmentGroupForDetails,*,
lineSegment,1,
Some fields are there
commentSegment,*,
Some fields are there
endOfMessageSegment,1
Some fields are there</b>
How can I provde the Recorset strcture and Content Conversion parameters???
Note: Please don't provide necessary links related to this issue not all related to file adapter.
Thanks in Advance,
Best Regards,
Vijay
Message was edited by:
        Gangisetty Vijaya Bhaskarudu
Message was edited by:
        Gangisetty Vijaya Bhaskarudu

Hi,
Same structure given by you with , saparated and keep it as it is sure you will get
in record structure
just give as it is
deliveryOrderMessage,1,
startOfMessageSegment,1,
message,1,
segmentGroupHeader,1,
segmentGroupHeaderLevel1,
headerSegmentDatails,1,
invoiceToDataSegment,1,
headerSegmentData2,1,
shipToDataSegment,1,
headerSegmentData3,1,
headerSegmentData4,1,
commentSegment,*,
segmentGroupForDetails,*,
lineSegment,1,
commentSegment,*,
endOfMessageSegment,1
Regards
Chilla

Similar Messages

  • FCC in receiver side in idoc to file scenario

    Hi all,
               I am doing an idoc to file scenario using FCC .I am using FCC in receiver side ,but i am getting my output file in only one line while i want structre to be seprated by new line.for more information i am giving muy file structre.
    Record
        header(1to1)
        data    (0 to unbounded)
        footer  (1to 1)          header, data, footer are three structre which contain various fields.I have to use fieldFixedLengths as filed separator. I am also using endseperator as 'nl' but its not coming in new line.Please share ur views on this issue.
    Regards
    Neha

    hi neha,
    In your scenario
    Recordset Structure  header,data,footer
    header.fieldFixedLengths    =  1,2,3,  whatever it is 
    data.fieldFixedLengths      =  similar to header
    footer.fieldFixedLengths    =  similar to header
    header.endSeparator  = 'nl'
    data.endSeparator  = 'nl'
    footer.endSeparator  = 'nl'
    I guess you dont have to do any thing else.
    Regards
    Pushkar
    Message was edited by:
            Pushkar Anand

  • Regarding FCC in receiver side

    HI friends, i need help regarding FCC. my input file is a text file on which some of fields doesn't have data so i want to display pipe symbol in that empty field in receiver side. what i have to do in the sender channel parameters side.
    points will be awarded.

    Can you give some example?
    You can use message mapping with condition that if some input tag is blank then use that symbol (pipe |).
    You can that pass the message at reciever side....
    What is your output format?
    Regards,

  • Help with FCC on receiver side

    Hey guys
    i have an XML structure on the receiver side as follows
    <?xml version="1.0" encoding="UTF-8"?>
    <ns0:MT_Invoices xmlns:ns0="urn:NOVInvoiceToSCO">
       <Invoice>
          <InvoiceProperties>
             <InvoiceNumber>sdds</InvoiceNumber>
             <InvoiceDate>dsd</InvoiceDate>
             <VendorNumber>dsd</VendorNumber>
             <InvoiceTypeCode>rer</InvoiceTypeCode>
             <PrimaryCurrency>
                <CurrencyCode>dd</CurrencyCode>
                <ExchangeRate>dsd</ExchangeRate>
             </PrimaryCurrency>
             <PaymentTerms>sd</PaymentTerms>
          </InvoiceProperties>
          <InvoiceDetails>
             <InvoiceLineItem>
                <WorkOrdernumber>dsd</WorkOrdernumber>
                <LineItemNumber>dsd</LineItemNumber>
                <InvoiceQuantity>
                   <Quantity>ds</Quantity>
                   <UnitOfMeasureCode>ds</UnitOfMeasureCode>
                </InvoiceQuantity>
                <LineItemInformation>
                   <LineItemMaterialNumber>sds</LineItemMaterialNumber>
                   <LineItemDescription>dsd</LineItemDescription>
                </LineItemInformation>
                <Pricing>
                   <UnitPrice>
                      <MonetaryAmount>dsd</MonetaryAmount>
                      <UnitOfMeasureCode>dsd</UnitOfMeasureCode>
                      <CurrencyCode>sds</CurrencyCode>
                   </UnitPrice>
                </Pricing>
                <LineItemtotal>
                   <MonetaryAmount>sd</MonetaryAmount>
                   <CurrencyCode>ds</CurrencyCode>
                </LineItemtotal>
                <Requisition>
                   <Number>ds</Number>
                   <LineItemNumber>ds</LineItemNumber>
                </Requisition>
                <Status>sd</Status>
             </InvoiceLineItem>
          </InvoiceDetails>
          <InvoiceSummary>
             <TotalLineItems>ds</TotalLineItems>
             <InvoiceTotal>
                <MonetaryAmount>ds</MonetaryAmount>
                <CurrencyCode>ds</CurrencyCode>
             </InvoiceTotal>
             <Tax>
                <TaxTypeCode>sd</TaxTypeCode>
                <TaxAmount>
                   <MonetaryAmount>ds</MonetaryAmount>
                   <CurrencyCode>s</CurrencyCode>
                </TaxAmount>
                <TaxReference>ds</TaxReference>
             </Tax>
          </InvoiceSummary>
       </Invoice>
    </ns0:MT_Invoices>
    <InvoiceProperties> is the header
    <InvoiceDetails>is the data
    <InvoiceSummary>is the trailer
    i am using the following on the receiver side under FCC
    Recordset Structure: Invoices,Invoice,InvoiceProperties,PrimaryCurrency,InvoiceDetails,InvoiceLineItem,InvoiceQuantity,LIneItemInformation,Pricing,UnitPrice,LineItemTotal,Requisition,InvoiceSummary,InvoiceTotal,Tax,TaxAmount
    Invoices.fieldSeparator     'nl'
    Invoice.fieldSeparator     ,
    Invoice.endSeparator     'nl'
    InvoiceProperties.fieldSeparator     ,
    InvoiceProperties.endSeparator     'nl'
    PrimaryCurrency.fieldSeparator     ,
    PrimaryCurrency.endSeparator     ,
    InvoiceDetails.fieldSeparator     ,
    InvoiceDetails.endSeparator     'nl'
    InvoiceLineItem.fieldSeparator     ,
    InvoiceLineItem.endSeparator     'nl'
    InvoiceQuantity.fieldSeparator     ,
    InvoiceQuantity.endSeparator     ,
    LineItemInformation.fieldSeparator     ,
    LineItemInformation.endSeparator     ,
    Pricing.fieldSeparator     ,
    Pricing.endSeparator     ,
    UnitPrice.fieldSeparator     ,
    UnitPrice.endSeparator     ,
    LineItemTotal.fieldSeparator     ,
    LIneItemTotal.endSeparator     ,
    Requisition.fieldSeparator     ,
    Requisition.endSeparator     ,
    InvoiceSummary.fieldSeparator     ,
    InvoiceSummary.endSeparator     'nl'
    InvoiceTotal.fieldSeparator     ,
    InvoiceTotal.endSeparator     ,
    Tax.FieldSeparator     ,
    Tax.endSeparator     ,
    TaxAmount.fieldSeparator     ,
    TaxAmount.endSeparator     ,
    Now i want the output of the following form
    Header
    Data
    Trailer
    Note:Data has occurence 0--* and both header and trailer have occurence 1
    i m unable to get the CSV file on the receiver side,can anbody cross check my parameters and lemme know whr i m wrong?
    thanx
    ahmad

    Hi Ahmad,
    give recordsetstructure : InvoiceProperties,1,InvoiceDetails,*,InvoiceSummary,1
    and in key-value pair give:
    InvoiceProperties.fieldFixedLengths : length of fields of InvoiceNumber,InvoiceDate..etc similarly for InvoiceDetails and InvoiceSummary
    InvoiceProperties.fieldSeparator , similarly for InvoiceDetails and InvoiceSummary
    Then you will get your req CSV file.
    Thanks,
    Rajeev Gupta

  • Step by step Scenario for using FCC at receiver side

    hi -
    I would like to implement the File >XI>File using file content conversion at receiver side.
    Can anybd help me doing this.
    I would like to use the following xml file at the sender side :
    <?xml version="1.0" encoding="UTF-8"?>
    <ns0:MT1_FCC xmlns:ns0="http://accenture.com/xi/F2F">
       <FullName>
          <Name>
             <FName>abc</FName>
             <MName>bcd</MName>
             <LName>cde</LName>
          </Name>
          <Name>
             <FName>def</FName>
             <MName>efg</MName>
             <LName>fgh</LName>
           </Name>
       </FullName>
    </ns0:MT1_FCC>
    would like to have the target file as txt with following structure...
    abc#bcd#cde
    def#efg#fgh
    Kindly guide...

    HI Jeswani,
    If this is what you want then take your datatype like this:
    Full Name
      name
        --FName
        --MName
        --LName
    Then map it up. Then in reciever file content conversion you should take like this:
    Recordset Structure: Name
    name.fieldSeperator = #
    name.endSeparator =  'nl'
    This should get your file layout what you are expecting.
    Cheers..
    Vasu
    <i>** Reward Points if found useful **</i>

  • FCC issue--Receiver side

    Hi Exeprts,
    Below is my data type structure
    DT_Master
         <MasterData>1..unbounded
               <MaterailNo>0.1
                <Organization>0.1
                  <Salesofice>0.1
                 u2026u2026u2026u2026u2026u2026u2026u202660 fields  I have in receiver data type,I want to convert this file in to text file with separator &&,but sometimes 60 elements will not have data from source , even in this case I want separator.
    But what is happening in my case is if I receive data for only 20 fields IN TARGET ,in text file it is giving only 20 fields, empty tags with separator not coming for other fields.
    Record structure : MasterData
    MasterData.fieldSeparator &&
    MasterData.endSeparator nl
    any pointers apprecited.
    Regards,
    JAM

    Hai!
    yes i agree with "mapWithDefault".
    For all the sixty fields you want to use this mapWithDefault Node funtion in your mapping. Since your are not know that which field will come with empty value.
    For Example:
    If a source node Field1 is mapped with a Field1 in Target MT,you should follow the below mapping
    Field1-->mapWithDefault--
    >Field1.
    If the source field conatins any value it will consider in FCC or it considered a empty value in FCC.
    Hope,this will help u.
    regard's
    Preethi.

  • FCC on receiver side issue

    Hi
    i have idoc to File scenario
    This is my required output.
    STaaabbbccc\
    MTdddeeemmm\
    ITggghhhooo\
    MTdddhhhbbb\
    ITcccaaaeee\
    But i am getting the output as
    STaaabbbccc\
    MTdddeeemmm\
    MTdddhhhbbb\
    ITggghhhooo\
    ITcccaaaeee\
    i have used FCC, but not getting the output. is it possible to obtain the requried output through FCC?
    i have defined the datatype as below
    Layout
    |____RecordSet
            |____ST                     1-1
                 |______f1,f2,f3,f4,f5
                 MT                     0-Unbounded
                 |_____f1,f2,f3,f4,f5
                 IT                       0-Unbounded
                 |_____f1,f2,f3,f4,f5
    Thanks
    Saiyog
    Edited by: Saiyog Gonsalves on Apr 28, 2009 5:22 PM
    Edited by: Saiyog Gonsalves on Apr 28, 2009 5:24 PM

    >
    Saiyog Gonsalves wrote:
    >
    Layout
    > |____RecordSet
    >         |______ST                     1-1
    >                     |______f1,f2,f3,f4,f5
    >                     MT                     0-Unbounded
    >                      |_____f1,f2,f3,f4,f5
    >                      IT                       0-Unbounded
    >                      |_____f1,f2,f3,f4,f5
    >
    >
    > Edited by: Saiyog Gonsalves on Apr 28, 2009 5:22 PM
    You have to change your data type so that the order is maintained for ST MT and IT. Otherwise it is not possible. If you look at in SXMB_MONI the XML nodes are grouped together based on the node names. Thats the reason file adapter is writing them same way.
    VJ

  • File Content Conversion on the Receiving side

    Is there a way in which if I want a Pipe Delimited File as a result, after the last field also I get a pipe with next record starting in the next line.

    Hi,
    For | (Pipe), use corresponding hex code as fieldSeparator i.e. 0x7C as fieldSeparator.
    For FCC on receiver side refer -
    [Simple FCC|http://www.riyaz.net/blog/index.php/2008/02/19/xipi-file-content-conversion-for-simple-structure/], [Complex FCC|http://www.riyaz.net/blog/index.php/2008/02/20/xipi-file-content-conversion-for-complex-structures/]
    For separotor at the end of line you can try using a dummy field or use combination of pipe and newline i.e. '0x7C' and '0x0D' (stands for carriage return) or 'nl' as endSeparator
    Edit: You might consider using 'nl' as beginSeparator parameter and 0x7C as endSeparator. This will do the trick. However, this would add a blank line in the beginning of the file.
    Hope this helps.
    Regards,
    Riyaz
    Edited by: Riyaz Sayyad on Aug 21, 2008 3:00 PM

  • Need to do FCC at receiver with multiple segments

    Hi Friends.
    I have .xsd at source and .txt at receiver. Please can you help me to do in FCC at receiver side.
    Source Structure:
    <?xml version="1.0" encoding="UTF-8"?>
    <ns0:MT_SEND xmlns:ns0="http://test.com">
       <ROOT>
          <SITETYPE/>
          <SITENUMBER/>
          <SITESTATUS/>
          <SITENAME/>
          <CHAINLETTER/>
       </ROOT>
    </ns0:MT_SEND>
    Target Structure:
    <?xml version="1.0" encoding="UTF-8"?>
    <ns0:MT_RECEIVE xmlns:ns0="http://test.com">.
    <HEADER>
    <RECORDID></RECORDID>
    <SERIALNUMBER></SERIALNUMBER>
    </HEADER>
    <abc>
    <RECORDID></RECORDID>
    <SITENUMBER></SITENUMBER>
    <SITESTATUS></SITESTATUS>
    </abc>
    <def>
    <RECORDID></RECORDID>
    <SITENUMBER></SITENUMBER>
    <SITENAME></SITENAME>
    </def>
    <TRAILER>
    <RECORDID></RECORDID>
    </TRAILER>
    </ns0:MT_RECEIVE>

    Hi,
    look into below links
    http://wiki.sdn.sap.com/wiki/display/XI/BasicFileAdapterContentConversion
    http://sapxitutorials.blogspot.com/2009/03/file-receiver-with-content-conversion.html
    regards
    Aashish Sinha

  • FCC Parameters are required in the Receiver  File Adapter

    Hi ,
       Sorry for posting this  question again.. my  Structure is
    MT_CADVICE_STRING
    .     .  Batach -
    1:Unbounded (Node)
    .     .      .Header_String -
    1:1       
    .     .      .Line_Item       -
    1:Unbounded  (Node)
    .     .      .      .LineItem_String -
    1:1 
    for this structure  I'm geting data in the XML format.. .. my scenario is simple File to File scenario.. now i want to convert this XML to  a normal Text file  by using FCC in the Receiver file adapter..
    and in the Receiver side   i want the file in the bellow  format:  (each field i want to get in the separate line  but at presnt I'm getting the continution of all lines I'm not getting the data in a separate lines..)
    Header_string  
    LineItem_String
    LineItem_String
    Header_String
    LineItem_String
    so, any abody  can help on this...
    And in the Receiver Communication channel i keep the FCC parameters like  as bellow :
    RecordsetStructure : Batch,LineItem
    Batch.fieldSeparator:  'nl'
    LineItem.fieldSeparator: 'nl'
    Batch.endSeparator:  'nl'
    LineItem.endSeparator: 'nl'
    For more information.. My source file is like bellow
      <?xml version="1.0" encoding="utf-8" ?>
    - <nr1:MT_CADVICE_STRING xmlns:nr1="urn:Test.com:SD:CAdvice">
    - <Batch>
      <Header_String>1 B 1110300014200804108218 36892.80 03 10.000 10.000 0.00 0.00 008000021720080410558000.00 91958.40 649958.40 0.00 649958.40 2678.40 1000003461100000346110000034611000003461123456 18 18 0.00 $</Header_String>
    - <LineItem>
      <LineItem_String>2 B 1110300014 1 000000000001234567000000000001 5.000 0.00 45000.00 10800.00.00 16.00 279000.00 0.00 rcl/ML0080200804100000000357 200804100.00 01 02 000000002.00 860.13321.00 $</LineItem_String>
      </LineItem>
    - <LineItem>
      <LineItem_String>2 B 1110300014 2 000000000001234567000000000001 5.000 0.00 45000.00 10800.00.00 16.00 279000.00 0.00 rcl/ML0080200804100000000357 200804100.00 01 02 000000002.00 860.13321.00 $</LineItem_String>
      </LineItem>
      </Batch>
      </nr1:MT_CADVICE_STRING >
    Regards
    Jain

    Hi jain
    Provide as below definitely it will work,
    RecordSet Structure :  batch,Line_Item,LineItem_String
    batch.fieldSeparator        ---      'nl'
    Line_Item.fieldSeparator  -
         'nl'
    LineItem_String.fieldSeparator  ---   'nl'
    All your fields will come in a separate line.
    Regards,
    Sasi
    Edited by: sasitharan on Jul 28, 2008 11:36 AM

  • FCC Receiver side

    Hi Experts,
    Im working with the file to file scenario with FCC receiver side parameters ( sender xml with receiver text).
    I want my fields with comma separated values...like... abc,xyz,mno.. so on...
    Im giving the parameters as :
    HEADER1.fieldSeparator: 'nl'
    HEADER.fieldseparator: ,
    Where the structure is Header1--->Header.
    Im getting the error as :
    Message processing failed. Cause: com.sap.aii.af.ra.ms.api.RecoverableException: Channel has not been correctly initialized and cannot process messages
    Channel has not been correctly initialized and cannot process messages.
    Please help.

    Hi Robin,
    My sender xml file structure is :
    DT_FCCRec-->HEADER1->HEADER--->lastname,name,middle,company...so on till 10 fields.
    My output file should be a text file with comma seperated values.
    I need 5 rows...with 10fields seperated by comma:
    name,lastname,firstname.....10 fields
    name1,lastname1,firstname1...10fields
    name5,lastname5,firstname5...10fields.

  • FCC parameters in receiver adapter

    Hi Experts,
    In the receiver file adapter output file contains the  fields needs to be included with quotes using fcc parameters, unable to get it
    eg: field1,field2,field3
    Tobe : "field1","field2","field3"
    tried with many options but the required output was not coming
    regards,
    sai

    Hi Aamir,
    I tried using mapping but when i test it in mapping it is showing with quotes, the same when i drop the file in ftp the output text file is not having with the quotes
    i have done the mapping as
    taking constant-" and concatenated with the field and again concatenated with constant -" but when i test in mm the output was good but rather as an interface testing the quotes was not including to the field
    regards
    sai

  • FCC  parameters   in Receiver   Communication Channel

    Hi,
        I'm getting data from RFC .. so, the my file structure is also same as RFC-Response structure.. like following..
    under my Receiver_DataTpe  i have this structure
    Receiver_DT_RFC_Response
    .  Pending_Order_Details
    .  .     .Item_Details
    .  .     .     .Item_id
    .  .     .     .Item_name
    .  .     .     .Message
    .  Pending_Order_RETURN
    . .      .Item_Details
    . .      .     .Order_No
    .    .   .     .Order_Quantity
    .    .   .     .Status
    .  Pending_Order_CUSTOMERS
    .   .    .Item_Details
    .     .  .     .Customer_No
    .    .   .     .Customer_Name
    .  .     .     .Order_No
    This completely as one structure only.....
    so,.. for this.. now i want to  load the RFC Responce in a Text file..  for this what are the parameters can i use.. please  suggest me the  how can i specify the parameters. for this..
    Even i gone through several blogs.. but like these type of complex structures i'm not getting any idea..
    Thanks
    Babu

    Hi,
    Enter the substructures using the pattern Pending_Order_Details,1,Pending_Order_RETURN,1,Pending_Order_CUSTOMERS,1
    and FCC parameters as :-
    Pending_Order_Details.fieldFixedLengths            ---20,10,20,20
    Pending_Order_Details.endSeparator                      ---nl
    Pending_Order_Details.fixedLengthTooShortHandling---ignore
    Do similar for
    Pending_Order_RETURN and Pending_Order_CUSTOMERS substructures.
    For more elaboration u can go to
    http://help.sap.com/saphelp_nw04/helpdata/en/d2/bab440c97f3716e10000000a155106/frameset.htm
    Regards,
    Amitanshu

  • FCC parameters on reciever side

    Hello,
    I am doing IDOC-File scenario.
    source IDOC strucutre is
    DEBMAS06 which has the following strucuture
    DEBMAS06
      BEGIN
      EDI_DC40
      E1KNA1M
        <fields>
        custom_segment
           <fields>
    I have reciever data type as ..
    new_cust
    Root
      <fields>
      <fields>
    What are the FCC parameters I can use to get '|' delimted file on the destination file?
    the field delimited with empty space shud be there even if there s no source data comign in
    venkat.

    Hi !
    <b>Please look thru this one too..</b>
    http://help.sap.com/saphelp_erp2005/helpdata/en/ab/bdb13b00ae793be10000000a11402f/content.htm
    <b>for idoc related settings in r/3 refer the below link..</b>.
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/73527b2c-0501-0010-5398-c4ac372c9692
    <b>Check this:</b>
    http://****************/Tutorials/XI/IDocToFile/IDocToFile1.htm
    <b>See the below links to get the idea mapping</b>
    idoc mapping - /people/james.guanzon/blog/2006/03/23/how-to-support-industry-standards-in-xi-part-ii-of-iii--mapping
    /people/swaroopa.vishwanath/blog/2007/01/22/ale-configuration-for-pushing-idocs-from-sap-to-xi
    <b>for more details about your scenarios </b>
    For any IDOC scenario u can use the corresponding link below.
    /people/swaroopa.vishwanath/blog/2007/01/22/ale-configuration-for-pushing-idocs-from-sap-to-xi --> ALE configuration for pushing idocs from SAP to XI
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/73527b2c-0501-0010-5398-c4ac372c9692
    https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/docs/library/uuid/cdded790-0201-0010-6db8-beb9bb2b2660
    /people/michal.krawczyk2/blog/2006/10/11/xi-new-book-mastering-idoc-business-scenarios-with-sap-xi
    http://expertanswercenter.techtarget.com/eac/knowledgebaseAnswer/0,295199,sid63_gci983331,00.html
    /people/raja.thangamani/blog/2007/07/19/troubleshooting-of-ale-process
    http://help.sap.com/saphelp_erp2004/helpdata/en/dc/6b835943d711d1893e0000e8323c4f/content.htm
    http://www.sapgenie.com/sapgenie/docs/ale_scenario_development_procedure.doc
    http://edocs.bea.com/elink/adapter/r3/userhtm/ale.htm#1008419
    http://www.netweaverguru.com/EDI/HTML/IDocBook.htm
    http://www.sapgenie.com/sapedi/index.htm
    http://www.sappoint.com/abap/ale.pdf
    http://www.sappoint.com/abap/ale2.pdf
    http://www.sapgenie.com/sapedi/idoc_abap.htm
    http://help.sap.com/saphelp_erp2005/helpdata/en/0b/2a60bb507d11d18ee90000e8366fc2/frameset.htm
    http://help.sap.com/saphelp_erp2005/helpdata/en/78/217da751ce11d189570000e829fbbd/frameset.htm
    http://www.allsaplinks.com/idoc_sample.html
    http://www.sappoint.com/abap.html---->serialization
    /people/alessandro.guarneri/blog/2006/11/26/content-based-serialization-dynamic-queue-name-in-xi
    /people/pooja.pandey/blog/2005/07/27/idocs-multiple-types-collection-in-bpm ->IDOC Bundling
    /people/prateek.shah/blog/2005/06/08/introduction-to-idoc-xi-file-scenario-and-complete-walk-through-for-starters &#61664;Idoc 2 file
    Try to Use Idoc packaging. also see the below links
    /people/pooja.pandey/blog/2005/07/27/idocs-multiple-types-collection-in-bpm - Collection of IDoc to Single File
    /people/stefan.grube/blog/2006/09/18/collecting-idocs-without-using-bpm - collecting IDocs without BPM
    /people/prateek.shah/blog/2005/06/08/introduction-to-idoc-xi-file-scenario-and-complete-walk-through-for-starters - IDoc to File
    Thanks !!!
    Questions are welcome here!!
    <b>Also mark helpful answers by rewarding points </b>
    Regards
    Abhishek Agrahari

  • File content Conversion in j2se at the receiver side

    Hi ,
    I need to do a file content conversion using j2se adapter at the recevier side.
    my structure is something like
    <name>
        <name1>
        <name2>
    </name>
    <address>
         <address1>
         <address2>
    </address>
    and the output should be like
    #tname1$name2
    #sadress1.address2
    Please do the needfull
    Thanks & Regards,
    Hamsa

    Hi Hamsa,
    #tname1$name2
    #sadress1.address2
    Lot of # and $, so can you paste the FCC parameters that you have tried in the File adapter?
    In j2se also we can use the same. If you are not sure on how to use, paste the FCC parameter here and someone will be able to make the J2SE version out of it
    Regards
    Suraj

Maybe you are looking for

  • Cannot access folders in Time Machine back-up drive

    I have used Time Machine to back up our server for months. Now I need to go and try to retrieve a lost file. I can see the folder the file should be in but I get an error that tells me that I do not have permission to access the folder. The folder ha

  • Log4J - reading properties file from /WEB-INF directory issue..

    I'm just learning to implement Log4J; the approach I am taking for my JSF application running under Tomcat 5.5x is to create an initialization servlet to initialize the logger, and then access the logger instance within my backing beans and applicati

  • Test - Clearing Vendor Item

    Hi, I dont know if this is the correct forum. What are the process steps that I need to take when creating test script for Clearing Vendor Item. Appreciate your help. Regards, ved

  • Using FLEX Visual Composer iViews in Guided Procedures and the UWL

    Hello Experts, I am trying to display a GP workitem and I am getting this error "The portal page builder required to execute this callable object is not available." I have a GP Process and it haves FLEX Visual Composer iView, it runs fine un the Runt

  • JNDI-lookup without weblogic.jar?

    Is it possible to do a JNDI lookup to the remove weblogic server (using the WLInitialcontextfactory) without using the whole weblogic.jar in the classpath? It's about 30 megs which is far too much. I tried using only few classes from the weblogic.jar