Need of FCC on sender side

Hey guys
i have a very basic question.wats the need of FCC on sender side?suppose i have a flat source structure,do i always need to convert this into XML before i can send it to IS or XI will do that by itself?
thanx
ahmad

Ahmad,
The only adapter that does implicit coversion is JDBC! Also if you look into Sender JDBC adapter , the JDBC adapter will conveert data into a standard formart and your Source Datatyype needs to confirm to this format. You cannot customize / change the format of the source datatype for JDBC adapter.
You need to perform conent conversion using JMS and Mail Adapters if your source data is not XML . For this you use the MessageTransformBean to convert Non XML to XML.
More on this in this article,
<a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/50061bd9-e56e-2910-3495-c5faa652b710">How to Use the Content Conversion Module with the XI 3.0 J2EE JMS Adapter</a>
the Title suggest that you can use it with JMS but it can also be used with Mail Adapters.
Regards
Bhavesh

Similar Messages

  • Error While Doing FCC on Sender Side

    Hi All,
    Iam reffering this Blog and doing File to File (FCC at Sender Side)
    Content Conversion ( The Key Field Problem )
    I have the Same Structure for both Source & Target. this is my structure
    http://img386.imageshack.us/my.php?image=sourcestructym4.jpg
    & i used the Following FCC Parameters at Sender Side
    http://img123.imageshack.us/my.php?image=fccparawy7.jpg
    Header.fieldSeparator  ,
    Header.fieldNames --- keyfield,Name,Designation,City
    Header.keyFieldValue --- 01
    Body.fieldSeparator  ,
    Body.fieldNames -
    keyfield,Salary,Contact,MailID
    Body.keyFieldValue -- 02
    Trailer.fieldSeparator ,
    Trailer.fieldNames ---keyfield,Address,Pin
    Trailer.keyFieldValue  -- 03
    ignoreRecordsetName -- true
    Txt File--Input
    01,Vamsi,SSE,Chennai
    02,1000,9962123146,vamsi.krishna
    03,Chennai,600096
    I placed the txt File in AL11 of XI Server and file not picked up and i have got the Error in Sender CC monitor in RWB
    Conversion initialization failed: java.lang.Exception: java.lang.Exception: java.lang.Exception: Error(s) in XML conversion parameters found: Mandatory parameter 'Header.keyFieldValue': no value found Mandatory parameter 'Header.fieldNames': no value found
    Regards

    Hi,
    I think all your configuariotn looks right.
    Regarding your .txt file:
    Check that there is no blank lines before your first record.
    Also, that your records begin in the first column,
    and also that there is 'nl' between your records.
    Try to add 'field.endSeparator ' in every record.
    According to help. sap:
    If you only specify a value for NameA.fieldSeparator, the system expects a string containing the
    names of the file columns in the same format as the file rows. This means that the same separator and
    any additional strings you specify for NameA.endSeparator and/or NameA.beginSeparator are expected.
    Carlos
    Edited by: Carlos Gonzalez on Nov 27, 2008 12:10 PM

  • FCC on sender side

    Hey guys
    i have a requirement wherein i will be getting a CSV file of the form
    <Reg>3
    <Name>mark</Name>
    <Age>25</Age>
    </Reg>
    <Reg>4
    <Name>Adam</Name>
    <Age>27</Age>
    </Reg>
    i have convert this file to XML and send over HTTP,
    is this possible using FCC,coz i know sender FCC permits only one level of substructure and here my structure is kinda strange.
    any help would be appreciated
    thanx
    ahmad

    With source as ,
    mark~25
    Adam~27
    Jimmy~30
    XML needed as,
    <Employee>
    <data>
    <Name>Mark</Name>
    </Age>25</Age>
    </data>
    <data>
    <Name>Adam</Name>
    <Age>27</Age>
    </data>
    </Employee>
    Use this content conversion.
    Document Name : Employee
    Document Namespace : namespacevalue
    Recordset Strucutre : data,*
    data.fieldNames : Name,Age
    data.fieldSeparartor: ~
    data.endSeparator : 'nl'
    ignoreRecordsetName : true
    Regards
    Bhavesh

  • How to handle preceding space characters in file to file(FCC on both sides)

    Hi All,
    We have scenario with file to file (FCC on both sides).
    Issue is: Sender side we are converting source file (CSV) into XML. But while converting it is ignoring preceding spaces.
    Example:
    Suppose Source file(CSV) contains one record as mentioned below ( for ur understanding purpose I mentioned 'X' instead of space. )
    XXXXXXXXXX12345     78945  23548    23446
    The above record is getting converted into XML as
    <text>12345     78945  23548    23446</text>
    But we need the record to be converted into XML as mentioned below
    <text>XXXXXXXXXX12345     78945  23548    23446</text>
    i.e we need spaces before "12345" also.
    As both sender and receiver having same structure, we are not using any mapping also.
    Please suggest in this regard.
    Thanks & Regards,
    Nagaraju

    Hi,
    In your sender content conversion use the parameter:
    NameA.fieldContentFormatting     nothing
    For further ref:
    http://help.sap.com/saphelp_nw04/helpdata/en/d2/bab440c97f3716e10000000a155106/frameset.htm
    Regards,
    Manjusha

  • File content conversion at sender side

    Hi,
    I need to convert a flat file to xml at sender side using FCC.
    Input text file:
    Sunil,Chandra,Mumbai,400709
    Sachin,Tendulkar,Delhi,110066
    XML Structure   Occurrence
    >Employees     1..1
      >  > Employee             0..N
        > > > Fname         1..1
          >  > > Lname           1..1
            >> > Address         1..1
              >  > > >City              1..1
                >> > > Zip              1..1
    xml should be like this:
    ><Employees>   
    >><Employee>
    >>><Fname>Sunil</Fname>
    >>><Lname>Chandra<Lname>
    >>><Address>
    >>>><City>Mumbai</City>
    >>>><Pin>400709</Pin>
    >>></Address>
    >></Employee>
    >><Employee>
    >>><Fname>Sachin</Fname>
    >>><Lname>Tendulkar<Lname>
    >>><Address>
    >>>><City>Delhi</City>
    >>>><Pin>110066</Pin>
    >>></Address>
    >></Employee>
    ></Employees>

    FCC does not support this level nesting...Ref
    http://help.sap.com/saphelp_nw70/helpdata/en/2c/181077dd7d6b4ea6a8029b20bf7e55/content.htm
    But requirement can be achieved using extra mapping
    you can create a source structure that looks like
    MT_Source_New..
    >Record ...unbounded
    >line ....1
    and read the input file line by line...this can be achieved by simple FCC...Refer above link
    here you need extra mapping to map it to your required source structure Employees
    MT_new ---Mapping1 --- Employees
    Then map Employees to Actual target structure

  • FCC in Sender Adapter

    Hi Experts,
    My Input file contains following structure:
    101
    102
    103
    104
    Now I want to generate following source XML file using FCC in sender file adapter
    <?xml version="1.0" encoding="utf-8" ?>
    <ns:MT_Employee xmlns:ns="http://Test_Employee">
    <Employee>
      <EmpID>101</EmpID>
      <EmpID>102</EmpID>
      <EmpID>103</EmpID>
      <EmpID>104</EmpID>
    </Employee>
    </ns:MT_Employee>
    Pls let me know what will be values for following parameters:
    Document Name: <This would be MT_Employee probably>
    Document NS: <This would be http://Test_Employee probably>
    Document Offset : <Blank because we need values from first row onwards>
    RecordSet Name:
    RecordSet NS:
    RecordSet Structure:
    RecordSet Sequence:
    Recordsets per Msg:
    Key Field Name:
    KetField Type:
    Parameters:
    Pls let me know all the parameters required to attain above XML
    Thanks,
    Rakesh

    Hi Gopal,
    I have provided the parameters said by u, but it did'nt work. We have to either provide 'Employee.fieldFixedLengths' or 'Employee.fieldSeparator' . Because one of these is mandatory for FCC. After providing ur parameters, I got below error:
    Conversion initialization failed: java.lang.Exception: java.lang.Exception: java.lang.Exception: Error(s) in XML conversion parameters found: Parameter 'Employee.fieldFixedLengths' or 'Employee.fieldSeparator' is missing Consistency check: no. of arguments in 'Employee.fieldFixedLength' does not match 'Employee.fieldNames' (0 <> 1)
    Pls let me know the parameters to attain below XML:
    <?xml version="1.0" encoding="utf-8" ?>
    <ns:MT_Employee xmlns:ns="http://Test_Employee">
    <Employee>
    <EmpID>101</EmpID>
    <EmpID>102</EmpID>
    <EmpID>103</EmpID>
    <EmpID>104</EmpID>
    </Employee>
    </ns:MT_Employee>
    from below input file structure:
    101
    102
    103
    104
    Regards,
    Adi

  • PI 7.1 Ehp1 IDOC adapter message packaging - package options on sender side

    Hi guys,
    I am trying to use the new IDOC adapter PI7.1 Ehp1 functionality for packaging the IDOCs in single PI message, instead of using Collect pattern in BPM. I have configured IDOC sender comm. channel with Sender Agreement as well. So far, so good, but I am wondering if the packaging done on PI side should be the same as the packaging parameters on sender side...
    What I mean? Do I have to set the Pack. Size (we20) to be the same as the one on PI, and do I have to use "Collect IDocs" as
    Output mode (also found in we20) .. I guess "Yes".. Actually what I got also is that I have to schedule RSEOUT00 if I am using the option to Collect IDOCs, right ? Can execution of RSEOUT00 be "plugged" somehow to be executed after bd21(Creation of IDocs from change pointers) execution ..?
    If you have any personal experience on this - please share it with me
    Thanks & Best Regards,
    Lalo

    I am wondering if the packaging done on PI side should be the same as the packaging parameters on sender side
    Do not have to be same.
    Think of this way:  there are two containers carrying water: A for ECC and B for PI (specified in communication channel), you are defining the size of the containers.
    If Size of A > B, then, One full A will need more than one B to handle, means multiple PI messages will be created.
    if Size of A < B, One PI message is enough to handle incoming package.
    For sure in partner profile of ECC, you will need to enable IDOC packaging and specify the size (container A).
    Regards
    Liang
    Edited by: Liang Ji on Jun 8, 2010 3:30 PM

  • File not able to pick while using FCC at sender channel

    Hi Experts ,
    we design one scenario that we need to process flat file to ECC. So we have used FCC at sender channel.
    while we testing ,  only its showing as successfull logs in channel , but we not able to pick the file.
    could you please check the below details and let me know it i missed any thing.
    PFB file which  need to pick.
    PFA scrren shot of FCC
    26.Jun 2014 #123
    Country|Currency|Amount|Code|Rate
    Australia|dollar|1|AUD|18.989
    Brazil|real|1|BRL|9.119
    Bulgaria|lev|1|BGN|14.037
    Canada|dollar|1|CAD|18.836
    China|renminbi|1|CNY|3.242
    Croatia|kuna|1|HRK|3.623
    Denmark|krone|1|DKK|3.682
    EMU|euro|1|EUR|27.455
    Hongkong|dollar|1|HKD|2.603
    Hungary|forint|100|HUF|8.916
    IMF|SDR|1|XDR|31.154
    India|rupee|100|INR|33.540
    Indonesia|rupiah|1000|IDR|1.668
    Israel|shekel|1|ILS|5.883
    Japan|yen|100|JPY|19.824
    Lithuania|litas|1|LTL|7.952
    Malaysia|ringgit|1|MYR|6.272
    Mexico|peso|1|MXN|1.550
    New Zealand|dollar|1|NZD|17.678
    Norway|krone|1|NOK|3.286
    Philippines|peso|100|PHP|46.019
    Poland|zloty|1|PLN|6.627
    Romania|new leu|1|RON|6.258
    Russia|rouble|100|RUB|59.842
    Singapore|dollar|1|SGD|16.137
    South Africa|rand|1|ZAR|1.894
    South Korea|won|100|KRW|1.986
    Sweden|krona|1|SEK|2.989
    Switzerland|franc|1|CHF|22.569
    Thailand|baht|100|THB|62.119
    Turkey|lira|1|TRY|9.469
    United Kingdom|pound|1|GBP|34.361
    USA|dollar|1|USD|20.179
    FCC details
    channel logs.
    regards
    raju

    Hi Peddaraju,
    Cross check correct source directory and file name is maintained in the sender file communication channel. If everything is fine try to restart the XPI File Adapter service in NWA.
    Troubleshoot as suggested in the below thread:
    File Adapter in PI not reading file from file system.
    Regards,
    Krupa

  • While doing change in  Idoc/ abap what  need to change at XI side

    I have to do some  change in my abap  program,   need to add some  field over there.
    Please let me  what I need to  change at XI side.
    Here Idoc is at sender side.
    I am  using  XSLT mapping over here.
    I have one more questions,  abt  the concept of pipelining  in XI, Do you have any one  some document with example, where we can use the concept of pipelining in XI in  real  time problems.
    Thanks

    Hi Ram,
    Please check these threads..
    Problems with XI Pipeline queue setup
    Pipeline entry error.
    XI Pipeline Logging
    XI Pipeline
    /people/siva.maranani/blog/2005/05/25/understanding-message-flow-in-xi
    cheers,
    Prashanth
    P.S : Please mark helpful answers

  • Can File Adpater read EBCDIC file on the sender side

    Hi ,
    I Have file to Proxy scenario and on the sender side I have EBCDIC file can file adpater can read it into normal text format can any one suggest me how to encode the file
    Thanks Inadvance
    Byee

    Hi ,
    Since my scenario is File to Proxy I need to send data to Proxy I cant send it in EBCDIC format ..... So I want data to bein normal text format........
    I am looking for it .........
    for EJB do you have any piece of code... that will be helpfull
    Thanks Inadvance....

  • FCC at sender

    Hi
    I have FCC at sender picking up a csv file . Header comprises field name and at item level is the values for the field names and at trailer we have record count .
    need to ignore header and trailer and the item data is passed to proxy strcuture
    Document offset been done to ignore header  but  iwhen i see the mesage in sxmb_moni , I am unable to get the trailer but the trailer field is again taken as the item level .
    File - no key specified
    Docno,docdate,invoiceno,passname
    500,20.07.2010,123,AAAA
    Recordcount,5
    In datatype i have not defined the header but onky with item and trailer record.
    fcc
    item.fieldnames
    item.fieldSeparator
    item.endSeparator
    item.keyFieldvalue
    when i see the message in moni , incoming message with the item and trailer  is not distinguished and trailer is taken as a item level  data itslef Please advise where I am going wrong

    Hi
    Checked out all possiblities and finally the adapter module is here for removing trailer record but instead using byte array stream I have acquired thexml in a string
    public byte[] convert(byte src[],String msgType,String nameSpace) throws Exception {
      String xmldata = "";
    I am getting an parsing an empty document.root nde expected. Please advise
    Created on 29-Aug-2010
    To change the template for this generated file go to
    Window&gt;Preferences&gt;Java&gt;Code Generation&gt;Code and Comments
    package trailerPackage;
    import java.io.ByteArrayInputStream;
    import javax.ejb.CreateException;
    import javax.ejb.SessionBean;
    import javax.ejb.SessionContext;
    import com.sap.aii.af.mp.module.Module;
    import com.sap.aii.af.mp.module.ModuleContext;
    import com.sap.aii.af.mp.module.ModuleData;
    import com.sap.aii.af.mp.module.ModuleException;
    import com.sap.aii.af.ra.ms.api.Message;
    import com.sap.aii.af.ra.ms.api.MessageDirection;
    import com.sap.aii.af.ra.ms.api.XMLPayload;
    import com.sap.aii.af.service.auditlog.Audit;
    import com.sap.aii.af.service.auditlog.AuditDirection;
    import com.sap.aii.af.service.auditlog.AuditLogStatus;
    import com.sap.aii.af.service.auditlog.AuditMessageKey;
    @ejbHome <{com.sap.aii.af.mp.module.ModuleHome}>
    @ejbLocal <{com.sap.aii.af.mp.module.ModuleLocal}>
    @ejbLocalHome <{com.sap.aii.af.mp.module.ModuleLocalHome}>
    @ejbRemote <{com.sap.aii.af.mp.module.ModuleRemote}>
    @stateless
    public class TrailerClass implements SessionBean, Module
    private SessionContext myContext;
    AuditMessageKey amk;
    public void ejbRemove()
    public void ejbActivate()
    public void ejbPassivate()
    public void setSessionContext(SessionContext context)
      myContext = context;
    public void ejbCreate() throws CreateException
    public ModuleData process(
       ModuleContext mc,
       ModuleData imd)
       throws ModuleException {
       Object obj = null;
       Message msg = null;
       String msgType = null;
       String nameSpace = null;
       try {
           obj = imd.getPrincipalData();
           msg = (Message) obj;
           msgType = (String) mc.getContextData("msgType");
           nameSpace = (String) mc.getContextData("nameSpace");
           if (msg.getMessageDirection()== MessageDirection.INBOUND)
          amk = new AuditMessageKey(msg.getMessageId(),AuditDirection.INBOUND);
           else
          amk = new AuditMessageKey(msg.getMessageId(),AuditDirection.OUTBOUND);
           XMLPayload xp = msg.getDocument();
           Audit.addAuditLogEntry(amk, AuditLogStatus.SUCCESS,"AO: Now got the xml payload object.");
           if (xp != null)
           Audit.addAuditLogEntry(amk, AuditLogStatus.SUCCESS,"AO: Now calling the Convert Method to convert CSV to XML.");
           byte by[] = convert(xp.getContent(),msgType,nameSpace);
           Audit.addAuditLogEntry(amk, AuditLogStatus.SUCCESS,"AO: Conversion Done Successfully.");
           xp.setContent(by);
           imd.setPrincipalData(msg);
           Audit.addAuditLogEntry(amk, AuditLogStatus.SUCCESS,"AO: Principle data is set successfully.");
       } catch (Exception e)
         Audit.addAuditLogEntry(amk, AuditLogStatus.SUCCESS,"AO: Module Exception Caught .");
         ModuleException me = new ModuleException(e);
         throw me;
       return imd;
       public byte[] convert(byte src[],String msgType,String nameSpace) throws Exception {
      String xmldata = "";
      try {
      String input = new String(src);
      Audit.addAuditLogEntry(amk, AuditLogStatus.SUCCESS,"AO: Conversion Started.");
      String tmp1 = input.substring(0, input.indexOf("<Trailer>")) ;
      String tmp2 = input.substring(input.indexOf("</Trailer>")+10) ;
      xmldata = tmp1 + tmp2 ;
      catch (Exception e)
      Audit.addAuditLogEntry(amk, AuditLogStatus.SUCCESS,"AO: Exception in Convert Method.");
      return xmldata.getBytes();
    Edited by: Anusha  Ramsiva on Aug 31, 2010 11:59 AM
    Edited by: Anusha  Ramsiva on Aug 31, 2010 5:02 PM
    Edited by: Anusha  Ramsiva on Aug 31, 2010 5:04 PM

  • Creation of simple webservice at Sender side

    Hi experts,
    I have a requirement in which I need to create a web service (WSDL structure is available).
    Kindly provide me links to blogs which explain the process of creation of web service at sender side.
    Also is there a difference in process during the creation for sender/receiver side?
    Thanks in advance,
    Thomas

    Also is there a difference in process during the creation for sender/receiver side?
    When using SOAP on the sender side you develop the structure and corresponding Interface in XI/ PI and then provide the WSDL file to the sending application whereas when SOAP is on the receiving end you import the WSDL file provided by the target application and then develop the Interface.
    For rest of your question(s) i sould suggest you make a search on SDN with keywords "how to create wsdl" or "how to generate wsdl" with the date range as All....there are lots of threads answered with this....even ther are some blogs readily available.
    Regards,
    Abhishek.

  • Updating 3rd parties db table using JDBC adapter at sender side

    hi all.
    i just want to know how i can updated the 3rd party db table field.
    my scenario is just to retrieve data from 3rd party DB table where the condition is like " to select records where processed (field name ) = " ".
    but i just need to update this field to x immediately after retrieving data from it.
    so i simply wote the sql statement select REC_NO, ACTN_DAT, METRNO, MET-READ from PHAKAMA_CONN where processed = " ". under jdbc CC query sql stmt  at sender side .
    but i want to know how we can updated the processed (field ) from " " to "x"immeidtely after retrieving.
    so could any body advice me how we can achiev this through UPDATE SQL STMT under sender jdbc cc.i just want to know wat stmt do we need to srite under this.
    waiting for u r response.
    cheers.
    seeta ram.

    Ram,
    Execute your Select statement as needed and in the sender jdbc communication channel in the update SQL statement give this:
    UPDATE <tablename> SET <fieldname> = 'X' WHERE <fieldname>= ' '
    Also just to make sure if you have access to the database just login and execute this statement which should give the results as expected. If this works here successfully then it executes the same in XI also.
    Regards,
    ---Satish

  • Mapping  problem due to FCC in sender file adapter

    Hi All
    I am doing File( Flat File ) to RFC Scenario.it is working fine..
    the problem comes in mapping with multiple records.
    FCC at sender file adapter is used
    my Data Type are :
    Source DT                      Target RFC import parameter(table).
    E2ED20*                            ITEM*
        KEY                                    VBELN
        VBELN                                 POSNR                                                
    E2E24*                                     CHARG
        KEY
        POSNR                             
        CHARG
    <b>*->>multiple occurence
    E2ED20  and E2E24 are 2 segment ,KEY is used in FCC to identify E2EDL20 & E2EDL24</b>
    My source text file is like this :
    E2EDL20                       0200
    E2EDL24                       xyz
    E2EDL20                       0201
    E2EDL24                       abc
    E2EDL24                       efg
    E2EDL24                       mln                      
    E2EDL20                       0202
    E2EDL24                       gty
    so the payload should be :
      0200   xyz
      0201   abc
      0201   efg     
      0201   mln
      0202   gty
    in <i>FCC ignoer record set= true</i>
    otherwise is not called...
    i try to use split by value & use oneasmany  , not helpfull.
    in message mapping when i checked th field VBELN -> display queue
    i am getting an array   0200
                                     0201
                                     0202  in white fields
    thanks & regards
    Ashutosh Rawat

    <b>Source payload</b>
      <?xml version="1.0" encoding="utf-8" ?>
    - <ns:MT_MATNO_FILE xmlns:ns="urn:abc:xxx">
    - <E2ED20>
      <KZ>E2EDL20</KZ>
      <FIELD1>020</FIELD1>
      <b><VBELN>0083662685</VBELN></b>
      </E2ED20>
    - <E2E24>
      <KZ>E2EDL24</KZ>
      <FIELD2>020</FIELD2>
      <POSNR>900001</POSNR>
      <CHARG>1078629</CHARG>
      <LFIMG>3200</LFIMG>
      <MEINS>PCE</MEINS>
      </E2E24>
    - <E2E24>
      <KZ>E2EDL24</KZ>
      <FIELD2>020</FIELD2>
      <POSNR>900002</POSNR>
      <CHARG>1078630</CHARG>
      <LFIMG>1895</LFIMG>
      <MEINS>PCE</MEINS>
      </E2E24>
    - <E2E24>
      <KZ>E2EDL24</KZ>
      <FIELD2>020</FIELD2>
      <POSNR>900003</POSNR>
      <CHARG>1079145</CHARG>
      <LFIMG>1883</LFIMG>
      <MEINS>PCE</MEINS>
      </E2E24>
    - <E2E24>
      <KZ>E2EDL24</KZ>
      <FIELD2>020</FIELD2>
      <POSNR>900004</POSNR>
      <CHARG>1079146</CHARG>
      <LFIMG>3195</LFIMG>
      <MEINS>PCE</MEINS>
      </E2E24>
    - <E2ED20>
      <KZ>E2EDL20</KZ>
      <FIELD1>020</FIELD1>
    <b> <VBELN>0083662648</VBELN></b>
      </E2ED20>
    - <E2E24>
      <KZ>E2EDL24</KZ>
      <FIELD2>020</FIELD2>
      <POSNR>900011</POSNR>
      <CHARG>1001450</CHARG>
      <LFIMG>2946</LFIMG>
      <MEINS>8PC</MEINS>
      </E2E24>
    - <E2ED20>
      <KZ>E2EDL20</KZ>
      <FIELD1>020</FIELD1>
    <b> <VBELN>0083673936</VBELN></b>   </E2ED20>
    - <E2E24>
      <KZ>E2EDL24</KZ>
      <FIELD2>020</FIELD2>
      <POSNR>900012</POSNR>
      <CHARG>1073953</CHARG>
      <LFIMG>2458</LFIMG>
      <MEINS>PCE</MEINS>
      </E2E24>
      </ns:MT_MATNO_FILE>
    <b>at target what required is</b>
    <item>
    <b><VBELN>0083662685</VBELN></b>
    <POSNR>900001</POSNR>
    </item>
    <item>
    <b><VBELN>0083662685</VBELN></b>
    <POSNR>900002</POSNR>
    </item>
    <item>
    <b><VBELN>0083662685</VBELN></b>
    <POSNR>900003</POSNR>
    </item>
    <item>
    <b><VBELN>0083662685</VBELN></b>
    <POSNR>900004</POSNR>
    </item>
    <item>
    <b><VBELN>0083662648</VBELN></b>
    <POSNR>900011</POSNR>
    </item>
    <item>
    <b><VBELN>0083673936</VBELN></b>
    <POSNR>900012</POSNR>
    </item>
    in Sender FCC
    E2ED20.fieldFixedLengths               7,76
    E2ED20.fieldNames                            KZ,VBELN
    E2ED20.keyFieldValue              E1EDL20
    E2ED20.endSeparator              'nl'
    E2E24.fieldFixedLengths              7,24,13,7,3
    E2E24.keyFieldValue                              E1EDL24
    E2E24.fieldNames                               KZ,POSNR,CHARG,LFIMG,MEINS
    E2E24.endSeparator                              'nl'
    ignoreRecordsetName              true
    source file is already there...
    Message was edited by:
            ashutosh rawat

  • I need an e-mail sending to my macbook, it appears to download but is never in my inbox. It does got to my iphone.  It isn't in trash.  Can anyone help ?

    I need an e-mail sending to my macbook, it appears to download but is never in my inbox. It does got to my iphone.  It isn't in trash.  Can anyone help ?

    I get those all the time. Most annoying. I usually ignore them or mark them as spam.

Maybe you are looking for