FCC parameters in Sender CC

Hello all,
I have a File to IDOC scenario where the file is a flat file where the structure is like this.
the structure is very volatile,
a record set would start with 001 and end with 999. for each record a sales order has to be created.  creating multiple sales orders from Idoc is not a problem but I just need all your help in defining the FCC paramets for this file.
001|327737|
002|NEW|
004|1|
005|2077|
006|091021|
007|26|
008|600000134|Trailwood Transport Ltd.|
010|69216|LBS|
011|10159|
050|1177|416|
999|327737|11|
001|327863|
002|NEW|
004|1|
005|1610|
006|091021|
007|16|
007|21|
008|600000101|TRAVELERS TRANSPORTATION SERVICES|
010|42595|LBS|
011|091909A|
050|1177|256|
999|327863|11|
001|327876|
002|NEW|
004|1|
005|1359|
006|091026|
007|16|
008|600000021|BRUCE R SMITH LIMITED|
010|42231|LBS|
011|93468|
050|1697|1050|
050|1697|1050|
050|1697|1050|
050|1697|1050|
999|327876|11|
Also the file name is something like: abc.yymmdd , the extension of the file keeps changing every day. Please suggest me how do I acheive this.
Thanks for your help in advance.
Regards,
Kalpana.
Edited by: Kalpana Timmapuram on Dec 4, 2009 2:22 AM

Hi Kalpana,
Also the file name is something like: abc.yymmdd
the file name u can give as   abc.*
which will choose all files starting with abc.
For the FCC i think it's better u access the whole record at a time
like
001|327737| will be 1 record and
002|NEW|
004|1|
005|2077|
006|091021|
007|26|
008|600000134|Trailwood Transport Ltd.|
010|69216|LBS|
011|10159|
050|1177|416|
999|327737|11|
all will be one single records...
You can split the records into fields based upon the I in mapping and will get the exact structure...
Babu

Similar Messages

  • Fcc parameters at sender side

    Hi frnds,
    am doing one FCC to file Scenario my text file is like bellow please anybody help me how can i give parameters in FCC.
    "A","AAAAAAAABBXXX","AAAAA01","140314","1740","14032014174013","Transaction Status Report","IN","AAAAAAA INDUSTRIES LIMITED","","","","","301, AAAAAAA HOUSE,","7/5,AAAAAAAAAAAAAAAAAAAAAAAA ROAD,","AAAA 452001, M.P., INDIA","","","","","","","",""
    "D","0022125614110013","F1","Processed","C0016657","Q0202676","20140314","20140313","20140314",28893.00,"INR","INR","INR",1.000000,"","TRANSACTION ACCEPTED IN STSTPS","","","00061050264493","AAAAAAAA","AAAAAANAYAK","","","","","","","","","22205269415","AAA","","AAA00878Q0202676","",""
    Regards,
    Rajendar

    Hi ,
    I would recommend you to blindly follow the below sap documentation.
    https://help.sap.com/saphelp_nw04/helpdata/en/2c/181077dd7d6b4ea6a8029b20bf7e55/content.htm

  • How do i extract Delimited falt file-Sender File adapter FCC Parameters

    Hello,
    I'm trying to extract data from a flat file. The file is built as tab delimited. I cant find the option of tab delimited in the XI Sender File adapter FCC Parameters. How do i extract tab delimited file?
    Please Advice,
    Rajesh

    HI,
    You can use Fieldseperator as '0X09'...
    Look at this blog...........you can solve this problem...
    NAB the TAB (File Adapter)                              
    Thanks,
    Madhu
    Edited by: Madhu sudhan Reddy on Jul 28, 2008 9:02 AM

  • Required Changes in FCC Paramenters for Sender File Adapter.

    Hi
    I am Doing File-File Scenario.I am using FCC in the Sender File Adapter. I have defined the structure as below.
    My Source Structure
    <?xml version="1.0" encoding="UTF-8"?>
    <ns0:MT_Source xmlns:ns0="http://city.net/filecopy">
       <Message>
          <Id>123</Id>
          <Head>
             <Id>123</Id>
             <Filename>test.xml</Filename>
          </Head>
          <Body>Helloworld</Body>
       </Message>
    </ns0:MT_Source_FILE>
    So for the above structure, I have defined the FCC Parameters as
    Document Name: MT_Source (Message Type)
    Document Namespace:http://city.net/filecopy(Namespace)
    Recordset Name: Message (root node)
    Recordset Structure: Message,1,Head,1
    Recordset Sequence: Ascending
    Recordsets per message:1
    Keyfield Type: string
    In the Table Rows I have defined
    Message.fieldFixedLengths: 3,10
    Message.fieldNames: Id, Body
    Message.fieldSeparator: ,
    Message.endSeparator: 'nl'
    Head.fieldFixedLengths: 3,8
    Head.fieldSeparator: ,
    Head.endSeparator: 'nl'
    Head.fieldNames: Id, Filename.
    My Input Text file
    123,Helloworld
    123,text.xml
    I am Getting Output as
    <?xml version="1.0" encoding="utf-8" ?>
    - <ns:MT_Source xmlns:ns="http://city.net/filecopy">
    - <Message>
    - <Message>
      <Id>123</Id>
      <Body>HelloWorld</Body>
      </Message>
    - <Head>
      <Id>123</Id>
      <Filename>test.xml</Filename>
      </Head>
      </Message>
      </ns:MT_Source>
    I should get Body field after Head Structure as in the Source Structure, So Please what changes do I need to do in the Parameters Specified above to get the desired Output.
    So How should I define the FCC Paramenters For Sender File Adapter ?
    Any Help Would be Appreciated.
    Regards,
    Varun

    Hi Everyone,
    I could Succeed to some extent.
    I have defined the parameters as follows
    Recordset Structure: Message,*,Head,1
    Key Field Name: KZ
    Key Field Type: integer
    In the table, I defined the Parameters as
    Message.fieldFixedLengths:1,3
    Message.fieldNames:KZ,Id
    Message.keyFieldValue:1
    Message.keyFieldInStructure:ignore
    Message.fieldSeparator:,
    Message.endSeparator:'nl'
    Head.fieldFixedLengths:1,3,8
    Head.fieldNames:KZ,Id,filename
    Head.keyFieldValue:2
    Head.keyFieldInStructure:ignore
    Head.fieldSeparator:,
    Head.endSeparator:'nl'
    Message.fieldFixedLengths:1,11
    Message.fieldNames:KZ,Body
    Message.keyFieldValue:3
    Message.keyFieldInStructure:ignore
    Message.fieldSeparator:,
    Message.endSeparator:'nl'
    My source text file
    1,123
    2,123,test.xml
    3,Hello World
    my output is
    <?xml version="1.0" encoding="utf-8" ?>
    - <ns:MT_Source xmlns:ns="http://city.net/FileCopy">
    - <Message>
    - <Message>
      <Id>123</Id>
      </Message>
    - <Head>
      <Id>123</Id>
      <Filename>test.xml</Filename>
      </Head>
      </Message>
      </ns:MT_Source>
    I got the output almost correct except I am not getting the value in the Body
    Any help would be appreciated.
    Please correct me If I am wrong.
    Regards,
    Varun
    Edited by: Varun on Sep 2, 2008 12:06 PM
    Edited by: Varun on Sep 2, 2008 12:15 PM

  • File with variable structure how to define the FCC parameters for it?

    Hi all,
    I have a scenario which is File to IDOC
    and file structure is in this way
    Header: 
      HDR|ROSS-Daily-Inv|20111104
    Data : 
    INV|01|059EMS|107128|20111104|USD|21703|IN|1|  0.00| 0.00|60-5B-30|  600.00|VIAL|0.00|0.00|EM||NETDUE|CLINIC|Y||490000
    TOT|01|059EMS|107128||USD||||0|0
    INV|01|EXB001|107130|20111104|USD|02420|IN|1| 823600.00|  823600.00||  580.00|VIAL|0.00|0.00|||NET30|COMM|N||
    TOT|01|EXB001|107130||USD||||823600|823600
    Trailer:
    TLR|    6|     1382679.00
    can any help me defining the Datatype for this structure and FCC parameters
    Thanks
    Sai

    Hi,
    In Sender CC, use content conversion and especially these options:
    ¤ RecordSet Structure = Header , 1 , Data1 , * , Data2 , * , Footer , 1
    ¤ Key Field Name = MyKey
    ¤ Namea.keyFieldValue, to distinguish your different structures (records).
    for instance, like that:
    Header.keyFieldValue = HDR
    Header.fieldName = MyKey , xxxxx, yyyy
    Data1.keyFieldValue = INV
    Data1.fieldName = MyKey , xxxxx, yyyy
    Data2.keyFieldValue = TOT
    Data2.fieldName = MyKey , xxxxx, yyyy
    Footer.keyFieldValue = TLR
    Footer.fieldName = MyKey , xxxxx, yyyy
    Otherwise, in SDN with term "recordset" you will find some blogs...
    Regards.
    Mickael

  • 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 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 Paramenters for Sender File Adapter

    hi
    I am using FCC in the Sender File Adapter. I have defined the structure as below. Fields ID, Filename, Values will be generated at Runtime as I have defined Used Defined Funtions for Both.
    Only I will Pass the value in Body. i.e "Hello".
    So How should I define the FCC Paramenters For Sender File Adapter ?
    <?xml version="1.0" encoding="UTF-8"?>
    <ns0:MT_Source_FILE xmlns:ns0="http://city.net/FILEtoHTTP">
       <Message>
          <Id>123456</Id>
          <Head>
             <Id>123456</Id>
             <Filename>sample.xml</Filename>
          </Head>
          <Body>hello</Body>
       </Message>
    </ns0:MT_Source_FILE>
    In the source text file, Do I need to send only "Hello" value because ID and filename will be generated at runtime?
    Regards,
    Varun
    Edited by: Varun on Sep 1, 2008 6:00 PM

    Hi,
    Refer this link:
    http://help.sap.com/saphelp_NW04/helpdata/en/e3/94007075cae04f930cc4c034e411e1/content.htm
    Regards,
    Nithiyanandam

  • How to define the Structure and FCC parameters for EDI file format.

    Hi All,
    I have a  EDI file(FTP)-->XI-->IDOC
    the source file content is as follows
    PR H01PHUPS         
    FH   SHP  0.0.5    
    H1   S0022323                            
    W6   7752508853                     D
    PT   1Z58R7070341111111           
    PT   1Z58R7070342222222           
    PT   1Z58R7070353333333          
    N1ST ZZ 142222                            
    N3ST 8827 D OLD
    N4ST MARCY                        
    N1WH ZZ 2070                              
    N3WH 401 QUALITY
    N4WH HARRIS
    DTENT20111206
    DTSHP201112061754
    N9LL BN20700033333333                               
    N9NT
    CD   CP      UPS
    IT026
    P1GD    VN A1111 
    PD   Product ID 1                   
    QTORD000000000000010CA
    QTSHP000000000000010CA
    AM U  000000000000000000M
    AM X  000000000000000000
    LTLT 1112811111                                       
    AM G  000000000000000000
    AM N  000000000000000000
    AM TAX000000000000000000
    AM SVC000000000000000000
    AM COD000000000000000000
    ST   00000000100000000010000000000000000000000000008500LB
    Can any body share me how to declare the structure in DataType.
    The first two characters in each record is constant , so this would be the keyfields right?
    ex:- PR,FH,H1,W6,PT,AM,N1,N3,N4......
    In Comm channel the FCC parameters
    i need to go for fieldFixedLengths?
    Thanks&Regards
    Sai_SHA

    Hi.
    if you need to convert an EDI to XML you need to use an Adapter specific (e.g Seeburger) because PI doesn't support EDI files.
    Also if you use a FCC , this configuration is for  two level Header and Detail.
    Check this.
    http://help.sap.com/saphelp_nw04/helpdata/en/bc/bb79d6061007419a081e58cbeaaf28/frameset.htm
    Regards
    Luis Ortiz

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

  • FCC Parameters Required ?

    hi all,
    I have to read the file separated by # and then I have to use UDF to seperate the various parameters.
    I need FCC parameters for the same I have creatd the struct of message as follows
    MT_Req
      Recordset... 1.1
        Record ...o..Unbounded
           Row ..1.1
    I want all the records seperated by # in row .
    Regards

    Hi Amith,
    http://help.sap.com/saphelp_nw70/helpdata/en/e3/94007075cae04f930cc4c034e411e1/frameset.htm
    For recever side adapter see below link,
    http://help.sap.com/saphelp_nw70/helpdata/en/e3/94007075cae04f930cc4c034e411e1/frameset.htm
    For occurences....
    http://help.sap.com/saphelp_nw70/helpdata/en/43/c4cdfc334824478090739c04c4a249/frameset.htm
    Mapping details ......
    http://help.sap.com/saphelp_nw70/helpdata/en/e4/82cf0ec8b9494db92e27e2be69524f/frameset.htm
    I am hope full that this links will help u a lot .......!
    Regards,
    Azeez khan.

  • FCC parameters for  header and item

    Dear All,
    I am working on a File to RFC scenario. The file has the PO deatils from which Salesorder has to be created in R/3. Am using the BAPI BAPI_SALESORDER_CREATEFROMDAT1 to create salesorders. I have tested the scenario with XML message - it is working file .
    The problem is with FCC.
    The structure of the file is as follows
    PO number,podate,deliv. date,cust. material,quantity,receiving point
    message type:
    -->MT_messagetype
    >input
    >header
                    po number
                    po date
                    deliv date
    >item
    >item
                         cust_material
                         quantity
                         receiving point
    >partner
    >partner
                         dummy field.
    input is the recordset
    i have to get the first 3 fields from the file inlto header and the rest into item.
    i have created a dummy field in partner because I am mapping a constant value to sold to party in partner node .
    what should be the FCC parameters ?

    After looking at your structure which is comma separated and doesn't have any keyfields it will be difficult to content convert it into different nodes like header and item.
    I was looking at using fixed field lenght's along with field separator to split the structure, as the first 4-5 fields of u r row seem to be standard structures which will have fixed length, but then your last field "receiving point" is not a of fixed length.
    so as long as my understanding goes you will have to content convert the input into a flat xml structure like this:
    <input>
              <header>
                  </po number>
                  </po date>
                  </deliv date>
                  </cust_material>
                  </quantity>
                  </receiving point>
            </header>    
    <input>
    Recordset name - input
    Recordset structure --header,*
    FCC
    header.fieldNames -- po_number,1,po_date,1,deliv_date,1,cust_material,1,quantity,1,receivingpoint,1
    header.fieldSeparator -- ','
    header.endSeparator -- 'nl'
    Since in your scenario looks like you are creating  one sales order per row of file, the above structure should do the job for you.
    Cheer's

  • Help with FCC parameters

    Hi,
    I have the source file in the following format
    USD
    2345
    23443
    23454
    234543
    23456
    23456
    234546
    23456
    23454
    23462
    5634
    USD
    2345
    23454
    234543
    234546
    23456
    23454
    23462
    I want to accept all the data as single Field
    What FCC parameters do I need to place?
    I placed endseperator as 'nl' and without fieldSeperator, the file s not being picked
    I have declared the source file as STRING. how to I specify the maxlength to the MAX when I specify it as "............" generating me error message.
    Thanks,
    Nikhil.

    >>I would like to accept all the records at the same time as Single field
    Do u mean that u need to have the total content of the file to be as a single field?
    For this input
    USD
    2345
    23443
    23454
    234543
    23456
    23456
    234546
    23456
    23454
    23462
    5634
    USD
    2345
    23454
    234543
    234546
    23456
    23454
    23462
    1. Do u need to create 2 records of single field each 0r
    2. Do u need to create a single record with single field holding all the data.
    Regards
    San

  • 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

Maybe you are looking for

  • Why does the display on my 27" iMac keep going black?

    This seems to be happening very often now. It started with just every once in a while. I will be using my iMac and the display goes black. It does NOT go to sleep. Just the display goes black. I do video and audio editing on my iMac and if I am liste

  • Xml to Internal table : Issue

    Dear All, I have written a program to bring the data from xml to internal table  Below is the strucutre of my xml file . - <Data> - <MT Type="CR">   <MatType>FERT</MatType>   </MT> - <OP Type="CR">   <MatNumber>9901040103-000115</MatNumber> - <Activi

  • Blender animated Vimeovideos

    Hello. Today I run at a brand new iMac Intel 10.6.8 21.5 inch   64 bits and iMovie 11 version 9.0.2 (1099) Every time I drag a Blender avi- animation from my  Vimeo-album in to iMovie, I got poor quality on my iMovie-videos. If I buy Final Cut Pro X

  • HT201209 Using only iTunes gift cards

    I wish to only use iTunes gift cards and not give out my credit card number.  I have a positive balance on my iTunes Store account (from gift cards) but cannot purchase items from my wish list.  iTunes keeps asking for billing info.  What should I do

  • HT1212 my iphone is disabled plz help

    my iphone is disabled,plz do help,i dont use icloud