Use of Seeburger Classifier withour splitter?

Hello,
Can you please let me know if we can use Seeburger Classifier without splitter?
if this is possible,can you please suggest relevant links which explain such scenario?
Than

Hi Shweta,
It's a little while since I've used Seeburger but I seem to remember the following, which I hope will help you.
Seeburger Classifier creates an attachment by the name of the "attName" parameter you submit to the Classifier module.  If you do not submit an "attName" parameter value, the Classifier module will use a default value.  You can see the classifier attachment in SXI_MONITOR - it is simply a set of information about what the Classifier determined about the message.
Where the Seeburger mapping module parameter setting is mappingName=AUTO (instead of a static mappingName of the a single mapping, e.g. mappingName=AnsiX12_812_V4030) it will attempt to use the classification xml attachment which was (in the case of where you specify mappingName=AUTO) expected to be have been created earlier in the module chain - again, if no classifierAtt parameter value is specified to provide the name used for the Classifier module's attName (attachment name) then I believe Seeburger mapping module uses the default.  I think the default behaviour of Seeburger mapping module when using mappingName=AUTO is also to split by default, and creates the FunctionalAck in place of the whole message.
I believe there are two solutions to your problem (without getting into developing AF modules):
The first, and easiest, way to get Seeburger mapping module to not produce an Ack and to map 1-to-1, is to leave the Classifier module out of the chain and to specify your exact mapping in order for it to perform a 1-to-1 mapping.  In order to do this you will need to know what file is coming in on your Sender channel.
The second way is that there is a "split" parameter (true/false - true by default for AUTO), and (if I remember correctly) a splitMode parameter too.  The long and short of it here though, is that the ability to support these parameters' usage to enable 1-to-1 mapping on a mappingName=AUTO will be down to your master (e.g. AnsiX12_Company, EDIFACT_Company, TRADACOM_Company) mappings which are used to then branch out to the per-instance mappings which are message name/version specific (e.g. AnsiX12_810_V4010, EDIFACT_ORDHDR_V9).  If using these parameters does not automatically get your 1-to-1 mapping working, you may require some consultancy from Seeburger to enable the 1-to-1 mapping for Classifier driven mapping - I seem to remember this not being a very straightforward process.
Kind regards.

Similar Messages

  • Regarding Seeburger Classifier Module

    Dear Expert,
    I am using Seeburger EDI Adapter to handle EDI plain file into SAP XI. As I just want to use the Seeburger build-in mappings start with "See_", I did not set the parameter classifierMappingID of Seeburger Classifier Module, but always get the output of Seeburger Functional Acknowlegement. How can I set the parameters to use the build-in mappings like "See_E2X_ANSIX12_810_V4010"?
    Any suggestion or idea are appreciated!
    Thanks and Regards,
    Nick

    Hi Nick,
    you need to choose if you want to use classifier or predefined mapping name. The purpose of classifier is to classify your message (exp. ANSI 12, EDIFACT etc.) and than to find the mapping specified in Seeburger Message splitter (from http://<XI Host>:<J2EE port>/seeburger/index.html -> Message splitter).
    In Message splitter you need to choose you sender agreement from XI, Mapping name and sender number (for ANSIX12 it's the value of ISA06 from inbound ANSI message).
    Please check Seeburger manual SAPXI_FunctionalAck_en.pdf.
    If you need your communication channel to process only ANSIX12_810_V4010 messages than you don't need classifier and you can hardcoded parameter mapping name "See_E2X_ANSIX12_810_V4010".
    Regards
    Naycho

  • Seeburger Classifier

    Hi,
    I am using Seeburger Classifier module.
    I have a doubt over there.While doing module configuration,how we are going to decide about the value of parameter classifierAttID .
    From where i will get the parameter value for parameter name classifierAttID
    Thnanks,
    Anoop

    HI,
    Though I dont have much experience with classifier module but what i know is:
    classifierAttID:
    This parameter is used to specify an attachment, in which the information about the classification is
    attached to the XIMessage.If no attID is set, the defaultname MessageTypeReport will be used.
    Paramter name should be classifierAttID and parameter value wil be classifierAtt. that what should be mentioned in AS2.
    Thnx
    Chirag

  • How do I find out what features are not useful in my Classifier?

    How do I find out what features are not useful in my Classifier? I am trying to trim down the number of features to speed up the training of my data, I have about 3700 features. I have found the Filter Based Feature Selection Module and have not been successful
    in using it. I have looked through all the examples and have not been able to find any examples using the module. Will the Filter Based Feature Selection Module help me to trim features. If so how do I use it?

    One way to do this would be is to use a random forest classifier. Feature/variable importance can be obtained relatively easily with random forests. 
    Here is how you may do it in R.
    > install.packages('randomForest') #install randomForest package in R if it is not already there
    > library(randomForest) # reference the library
    > data(mtcars) # load motor cars data that ships with 
    #train a random forest 
    > mtcars.rf <- randomForest(mpg ~ ., data=mtcars, ntree=1000,keep.forest=FALSE, importance=TRUE)
    > importance(mtcars.rf)
    > importance(mtcars.rf)
    #You will see an output like below
           %IncMSE IncNodePurity
    cyl  16.168645     169.96741
    disp 18.672188     260.08722
    hp   17.584375     184.95007
    drat  6.948743      63.54528
    wt   17.818509     254.30347
    qsec  4.772889      33.25546
    vs    5.303058      24.39064
    am    5.210181      17.36626
    gear  4.619161      21.55450
    carb  8.577037      28.46715
    # or plot the importance as follows
    > varImpPlot(mtcars.rf)
    What this tells you is how important predictors/features/variables like horsepower(hp), weight(wt), no. of cylinders (cyl) is in predicting miles per gallon (mpg).
    If you are wondering how the data looks like. Try this
    head(mtcars) # gives first few lines of the data set.
     mpg cyl disp  hp drat   wt ... 
    Mazda RX4     21.0   6  160 110 3.90 2.62 ... 
    Mazda RX4 Wag 21.0   6  160 110 3.90 2.88 ... 
    Datsun 710    22.8   4  108  93 3.85 2.32 ... 
    . Try this
    Here is a few useful resources:
    Random Forest documentation (Check out the pages on variable importance and variable importance plot)
    http://cran.r-project.org/web/packages/randomForest/randomForest.pdf 
    Motor cars data: http://stat.ethz.ch/R-manual/R-devel/library/datasets/html/mtcars.html

  • How do we do File content conversion using SFTP SEEBURGER Adapter

    HI All,
              Can we do FCC using SFTP SEEBURGER adapter. If yes how?
    XIer

    Dynamic attributes are part of the XI message. They provide options for dynamical configuration of SFTP receiver channels (Outbound direction) using parameters that have been dynamically added or set by modules and mappings before the SFTP adapter. These attributes can be set using the Attribute Mapper module for example. Besides, the SFTP adapter dynamically adds specific parameters to the XI message on Inbound case, which can be used by the modules and mappings after SFTP adapter.
    Check also
    /people/william.li/blog/2006/04/18/dynamic-configuration-of-some-communication-channel-parameters-using-message-mapping
    /people/daniel.graversen/blog/2006/10/05/dynamic-configuration-in-adapter-modules
    Regards
    Naycho

  • Renewing public key certificate used for Seeburger AS2

    My general question is when a public key certificate, used for Seeburger AS2 payload decryption and digital signatures, needs to be renewed, how carefully do the certificate renewal steps need to be coordinated for a seamless transition?  More specifically...
    1. Once we import the CSR response from the CA, will the public key currently used by our partner become invalid, or will it continue to work until its expiration date? 
    2. Will our partner be able to validate our signature after the new CSR has been imported, but prior to them applying the new public key certificate in their system? 
    3. Or can we renew the certificate, import the CSR request, provide our partner with the renewed certificate, and let them apply the certificate at their own volition, provided they do it prior to the original certificate expiration?

    Hi Kurt
    In my experience, the renewal/replacement of AS2 certificates for encryption/decryption & signing/authentication requires coordinated effort on both sides.
    This is because AS2 uses asymmetrical encryption, so both parties need to use the same pair of certificates at the same time, i.e. you encrypt on your private key, and partner decrypt on the public key matching your private key. If the keys used do not belong to the same pair, then decryption will not work.
    I'm not sure what AS2 software your partner uses and if it has the feature of automatic rollover of certificate, but PI/Seeburger does not. The approach in PI/Seeburger can either be one of the following:-
    i) import new cert replacing original cert of the same name
    ii) import new cert into new name, manually update sender/receiver agreements
    Due to the manual nature of the tasks, normally it requires coordinated effort during a cutover window.
    Rgds
    Eng Swee

  • Query regarding Seeburger Classifier

    Hello,
    We have a problem with Russian characters where these are cut by AS2 adapter.
    In order to analyze this,I have changed the configuration to use Classifier instead of giving fixed mapping name.
    Now,I can see the log as:
    2009-09-17T09:58:27.144+0200 INFO starting conversion Edifact_XXX (id : 7281816071253174307119 ) at Thu Sep 17 09:58:27 CEST 2009
    2009-09-17T09:58:27.172+0200 INFO starting conversion See_E2X_ORDERS_UN_D96A (id : 14608852671253174307172 ) at Thu Sep 17 09:58:27 CEST 2009
    2009-09-17T09:58:27.664+0200 INFO Child Dest   Encoding : UTF-8
    2009-09-17T09:58:27.664+0200 INFO Child Source Encoding :
    2009-09-17T09:44:56.541+0200 INFO Child XML Encoding :
    Problem still persists.
    Child Source Encoding  and Child XML Encoding  are always blank in the log.
    I have tried setting source encoding using BIC module ,CharsetConversion module, and setSourceEncodingFromClassifier module.
    Still ,I cant see any value in thes fields in the log.
    Can anybody please let me know how can I populate these values.
    I suspect that the problem with special characters is because of incorrect source encoding.
    Thanks.
    Regards,
    Shweta

    This is some mapping code (as used in the SEEBURGER standard mappings) from the NewMapping program, which passes the encoding input parameters to the child mappings.
    // Source Encoding
    copy getInputValue("srcEncoding")        to srcEncoding$;
    setInputValue("getChildSourceEncoding", srcEncoding$);
    // Destination Encoding
    copy getInputValue("destEncoding")       to destEncoding$;
    setInputValue("getChildDestEncoding", destEncoding$);
    In the child mapping we read the passed parameters and set the values (the if in the beginning results from a different handling for split messages):
    copy getInputValue("SplittingMode") to splittingMode$;
    copy splittingMode$ to Split%;
    if Split% = 1
       modifyWarningLevel(2150,4);
       stopReadingOnError("off");
       copy getInputValue("getChildDestEncoding") to ChildDestEncoding$;
       if ChildDestEncoding$ != ""
          #javastart
          m_stdout.setEncoding(_StrVar_CHILDDESTENCODING.getString());
          #javaend
       else
          ChildDestEncoding$ = "UTF-8";
          #javastart
          m_stdout.setEncoding("UTF-8");
          #javaend
       endif
       traceln("Child Dest   Encoding : " & ChildDestEncoding$);
    endif
    // Getting Source Encoding Paramteter
    copy getInputValue("getChildSourceEncoding") to ChildSrcEncoding$;
    if ChildSrcEncoding$ != ""
        #javastart
        m_stdin.setEncoding(_StrVar_CHILDSRCENCODING.getString());
        #javaend
    endif
    traceln("Child Source Encoding : " & ChildSrcEncoding$);
    // Getting XML Encoding Parameter
    copy getInputValue("setXMLEncoding") to ChildXMLEncoding$;
    if ChildXMLEncoding$ != ""
        #javastart
        m_stdout.setXMLEncoding(_StrVar_CHILDXMLENCODING.getString());
        #javaend
    endif
    I hope this helps, you may have a look at the standard mappings shipped by SEEBURGER in addition where this functionality is included !

  • Rt Does anyone know of ANY RT system (pharlap or others) being used in a classified or SRD network (DOE, DOD, etc)?

    We are looking for precedents on the use of PharLap or any RT sytem (VX Works, etc) used on cFP or PXI systems on classified networks.  We don't need specifics on the application.  A contact or location would be nice, but not required, even anicdotal info is OK.  Any axtra help would be greatly appreciated.

    Let me guess... NSA?
    I have three customers that fall under that description.
    e-mail me at
    [email protected]
    One or all of them may be willing to contact you but I can't guarentee anything.
    Ben
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction

  • Text clustering using kmeans & other classified algorithm

    Hi,
    Few questions:
    1. How can we tweak Kmean_clustering algorithm to improve quality of clustering results?
    The current arguments the algorithm accepts are:
    MAX_DOCTERMS, MAX_FEATURES, THEME_ON , TOKEN_ON, STEM_ON, MEMORY_SIZE, SECTION_WEIGHT, CLUSTER_NUM
    These arguments (apart from cluster_num) do not effect the algorithms quality. I remember reading in the documentation that: "k-Mean is a trade-off between quality and scalability", so how can a user chose between quality and scalability? What arguments can we play with? (Are arguments like number of iterations, distance metric avialable?, is yes, where and how can we specify?)
    2. I tried searching for the documentation on the Textk (hierarchial clustering). But found that its undocumented. The arguments currently available are hierarchy depth and similary score but changing these arguments doesnt effect the clustering results. How can we improve Textk clustering results?
    3. I tried applying the theme_on, cluster_num arguments on Textk (just as we can for kmeans). The algorithm didnt complain but it didnt care the changes either. The results didnt change. - Any suggestions?
    4. Where can I find more documentation on clustering apart from the developer guide and general docs?
    5. The concepts of 'stopword' and 'stoptheme' are quite confusing. Please if my understanding of these is correct:
    Stopwords are usually NOT considered by the algorithm and are removed before any text analyses.
    Stopthemes are words that could have weightage with other words and can influence the clustering results but will not affect the results by themselves (individual words as themes) - for example when we use 'THEME_ON' the algorithm will not consider adding the stopthemes to the feature set but might consider the 'phrases' which include these stoptheme words.
    Hence, in clustering with THEME_ON preference, its best to add stopthemes rather than stopwords so that the algorithm might not create clusters based on words such as 'good' but might use phrases such as 'good example'
    Is that right? Please guide...
    Thanks!

    Make the following true
    ctx_ddl.set_attribute('my_cluster','STEM_ON','FALSE');
    i.e.
    ctx_ddl.set_attribute('my_cluster','STEM_ON','TRUE');
    and then create the clusters. Also as you have already done, the lexer should have INDEX_STEM on

  • I just buy a Macbook pro, I have one question that when I use it at home, it is better to plug in AC power cord, or just use teh inernal battery withour AC power?

    I just buy a Macbook pro as a new MAC user. I conceren about internal battery life much. So I have one question that for battery life concern, it is better to use Macbook without AC poower in? or using AC power is better?
    Thanks, welcome anyone who can give me good sugegstion.
    Stephen
    22 Sep. from Taipei
    < Edited By Host >

    Either way is fine.
    About Batteries in Modern Apple Laptops
    Apple - Batteries - Notebooks
    Extending the Life of Your Laptop Battery
    Apple - Batteries
    Determining Battery Cycle Count
    Calibrating your computer's battery for best performance
    MacBook and MacBook Pro- Mac reduces processor speed when battery is removed while operating from an A-C adaptor
    Battery University

  • Content based receiver determination with Seeburger AS2 adapter

    We are planning to use the Seeburger AS2 adapter on our XI 3.0 installation to post custom XML documents to XI from external business partners.  The problem we have is to do the receiver and interface determination based on the xml message type that is submitted.  How can we identify what is the name of the root xml node (which is representing the message type that was submitted to us) during the receiver determination and specify conditions for the receiver determination based on this?  We can not use the Seeburger Classifier module here as this is only determining the mapping name to be used for an EDI conversion but can not handle any type of XML message.

    Rudy,
    I think the easiest way would still be the ReceiverDetermination and creating an XSD that contains the main important TAGs from the different messages.
    That should allow you to test for the existing of certain important TAGs or check the value of some TAGS.
    I don´t know about aedaptive-adapters, but I don´t think that they are Drummond-Certified. Check out...
    http://www.drummondgroup.com/html-v2/as2-companies.html
    Without this certification, a lot of your partners might not allow you to use this adapter if you wanna make AS2 with them.
    Greetings
    Stefan

  • Seeburger Splitter adapter!!

    hi,
    what is Seeburger splitter adapter ?how does it function?
    can configure splitter adapter as a module like BIC adapter and Module?
    thank you,
    babu

    Hi Babu,
    The splitter is configured with the Functional Acknowledment in Seeburger, this component works in combination with the Seeburger Classifier. For example:
    1. You receive a document EDI with the Classifier in a communication channel and this execute the map with the document type sand the version number.
    2. The Functional Ack. is generate from the result of the conversion in the map.
    3. You have other communication channel configured with the Splitter in a mode Sender.
    4. With this, you can map the Functional Ack of Seeburger to a document 997.
    5. You have other communication channel with a Receiver mode, to send the result of the mapping process to a SAP or any destination.
    This funcionality works with the XI FTP adapter(File), with the FTP Adapter or any other Adapter to receive a document EDI.
    You need deploy the 997SplitterMetadata.xml from installation CD with Integration Design and loaded as Adapter Metadata.
    To use the splitter, you need configure in the communication channel in the module chain, the BIC and the classifier, in the bic parameters, you define the splitter with true value.
    For a example to this component, you can use the Functional Acknowledgement documentation from Seeburger manuals, this have a example to this funcionality.
    Greetings,
    Hervey

  • Problem with Seeburger Message splitter

    I'm doing a Inbound 850 from VAN...but for now I have a sample file which has 2 orders in it and this is the error I get:
    Information Channel fromFile: Send binary file  "/usr/sap/KPX/COMM/EDI/out_split/850_E2X_1.dat", size 2918 with QoS EO.
    Information MP: entering1
    Information MP: processing local module localejbs/CallBicXIRaBean
    Information SEEBURGER BICXIADAPTER.MODULE Message entered Module (CallBicXIRaBean) and will be passed to the adapter now.
    Information SEEBURGER BICXIADAPTER +++ starting conversion with mapping: See_E2X_ANSIX12_850_V4010 +++
    Information SEEBURGER BICXIADAPTER +++ CONVERSION SUCCESSFUL +++
    Information SEEBURGER BICXIADAPTER.MODULE BIC Module (CallBicXIRaBean) is exiting succesfully.
    Information MP: processing local module localejbs/Seeburger/MessageSplitter
    Warning SEEBURGER/MSGSPLITTER: There is no attachment to split. So there is nothing to do.
    Information SEEBURGER/MSGSPLITTER: Finished splitting!
    I have the set the parameterName "split" to true...
    Any idea why its not splitting?
    Thanks,
    Srini
    Edited by: Srinivas Davuluri on May 13, 2009 10:10 AM

    Hi,
    Seeburger responded and added a patch, but now I'm getting this error:
    Information Channel fromFile: Send binary file  "/usr/sap/KPX/COMM/EDI/out_split/850_E2X_1.dat", size 2918 with QoS EO.
    Information MP: entering1
    Information MP: processing local module localejbs/CallBicXIRaBean
    Information SEEBURGER BICXIADAPTER.MODULE Message entered Module (CallBicXIRaBean) and will be passed to the adapter now.
    Information SEEBURGER BICXIADAPTER +++ starting conversion with mapping: See_E2X_ANSIX12_850_V4010 +++
    Information SEEBURGER BICXIADAPTER +++ CONVERSION SUCCESSFUL +++
    Information SEEBURGER BICXIADAPTER.MODULE BIC Module (CallBicXIRaBean) is exiting succesfully.
    Information MP: processing local module localejbs/Seeburger/MessageSplitter
    Information SEEBURGER/MESSAGESPLITTER: Trying to establish CCI Connection to Message Splitter Adapter
    Information SEEBURGER/MESSAGESPLITTER: Creating CCI Interaction
    Warning SEEBURGER/MESSAGESPLITTER: There is no attachment to split. So there is nothing to do.
    Information SEEBURGER/MESSAGESPLITTER: Finished splitting!
    Information SEEBURGER/MESSAGESPLITTER: Message Splitter Module (CallMessageSplitterXIRaBean) is exiting succesfully.
    Information MP: processing local module localejbs/CallSapAdapter
    Information The application tries to send an XI message asynchronously using connection File_http://sap.com/xi/XI/System.
    Information Trying to put the message into the send queue.
    Information Message successfully put into the queue.
    Information The application sent the message asynchronously using connection File_http://sap.com/xi/XI/System. Returning to application.
    Information MP: leaving
    Information File "/usr/sap/KPX/COMM/EDI/out_split/850_E2X_1.dat" deleted after processing.
    Any suggestions??
    Thanks,
    Srini
    Edited by: Srinivas Davuluri on May 14, 2009 11:32 AM
    Edited by: Srinivas Davuluri on May 15, 2009 10:00 AM

  • Variable substitution error while using Seeburger module parameter

    Hi Freinds,
    I would like to use the variable substitution in a receiver file adapter to add the invoice no.
    (which is contained in the XML file) to the target filename.
    In addition I have to convert the XML file to an X12 EDI format using the seeburger module "localejbs/CallBicXIRaBean".
    As soon as this entry is made in the modules the following error message occurs:
    "com.sap.aii.adapter.file.configuration.DynamicConfigurationException:
    Error during variable substitution: com.sap.aii.adapter.file.varsubst.VariableDataSourceException:
    Caught SAXException while parsing XML payload: Fatal Error: com.sap.engine.lib.xml.parser.ParserException:
    XMLParser: No data allowed here: (hex) 53, 4f, 48(:main:, row:1, col:3)"
    My problem is that the conversion from XML to X12 EDI is done before the variable substitution is started.
    That`s why the reference for the variable is no longer valid as the file is already converted to a X12 EDI (=flatfile) format.
    If I disable one of the two steps (either 1:1-mapping or variable substitution) the other step runs properly.
    Has anybody an idea how to solve this topic?
    Is it possible to specify the variable substitution as module?
    If this is possible I could solve it by just reordering the two steps in the module chain.
    Regards
    Venkatesh

    Use Dynamic Configuration Bean to set this value. You have to use this well before "localejbs/CallBicXIRaBean".
    Check SAP note : 974481 for more information.
    Blog: [/people/jin.shin/blog/2007/04/27/sap-netweaver-xi-variable-substitution-with-adapter-specific-message-attributes-via-dynamicconfigurationbean|/people/jin.shin/blog/2007/04/27/sap-netweaver-xi-variable-substitution-with-adapter-specific-message-attributes-via-dynamicconfigurationbean]
    Second Approach if the above approach doesnt work.
    Use Dynamic Configuration concept in UDF to set the filename under message Mapping.
    Thanks,
    - Gujjeti.
    Edited by: Praveen Gujjeti on Feb 25, 2009 11:25 AM

  • Problem Encountered in JMS adapter using SEEBURGER module

    While testing the receiver JMS adapter for XML to EDI conversion using Seeburger module, I am facing errors.
    <b>1. The error encountered is</b> :
    Error while processing message '4720bc32-2dfc-03d8-0000-00000a2050d3';  detailed error description: java.lang.NullPointerException at com.sap.aii.adapter.jms.core.connector.SendContextImpl.send(SendContextImpl.java:43) ...
    <u>SEEBURGER BICXIADAPTER</u> --- Conversion of synchronous request from module chain ended with errors ---Error: [Error:ID=2061;LEVEL=1] XMLDocReader moveNext(): Cannot move to next trigger : Error in line 1: <u>XML file should begin with white spaces or <. (Found char :U(Hex :85</u>). DESCRIPTION: XMLDocReader Exception: Not able to move to next trigger [not specified] - trigger may not right set.
    <b>2. The targer PAYMUL xml is as follows</b> :
    ( At receiver channel, the above should be converted to EDI-Paymul using the Seeburger Module)
    <u>PAYMUL XML</u>
      <?xml version="1.0" encoding="UTF-8" ?>
    - <LIST>
    - <S_UNA>
      <D_DELIMITER>:+.? '</D_DELIMITER>
      </S_UNA>
    - <S_UNB>
    - <C_S001>
      <D_0001>UNOA</D_0001>
      <D_0002>2</D_0002>
      </C_S001>
    - <C_S002>
      <D_0004>SAPDM</D_0004>
      <D_0007>ZZ</D_0007>
      </C_S002>
    - <C_S003>
      <D_0010>000000000000</D_0010>
      <D_0007>55</D_0007>
      </C_S003>
    - <C_S004>
      <D_0017>070201</D_0017>
      <D_0019>1150</D_0019>
      </C_S004>
      <D_0020>01945678912345</D_0020>
    - <S_UNH>
      <D_0062>1</D_0062>
    - <C_S009>
      <D_0065>PAYMUL</D_0065>
      <D_0052>D</D_0052>
      <D_0054>96A</D_0054>
      <D_0051>UN</D_0051>
      <D_0057>FUN01G</D_0057>
      </C_S009>
    - <S_BGM>
    - <C_C002>
      <D_1001>452</D_1001>
      </C_C002>
      <D_1004>01945678912345</D_1004>
      <D_1225>9</D_1225>
      </S_BGM>
    - <S_DTM>
    - <C_C507>
      <D_2005>137</D_2005>
      <D_2380>20070201</D_2380>
      <D_2379>102</D_2379>
      </C_C507>
      </S_DTM>
    - <G_SSG4>
    - <S_LIN>
      <D_1082>1</D_1082>
    - <S_DTM>
    - <C_C507>
      <D_2005>203</D_2005>
      <D_2380>20070201</D_2380>
      <D_2379>102</D_2379>
      </C_C507>
      </S_DTM>
    - <S_RFF>
    - <C_C506>
      <D_1153>ACK</D_1153>
      <D_1154>01945678912345</D_1154>
      </C_C506>
      </S_RFF>
    - <S_RFF>
    - <C_C506>
      <D_1153>AEK</D_1153>
      <D_1154>01945678912345</D_1154>
      </C_C506>
      </S_RFF>
    - <S_BUS>
      <D_3279>IR</D_3279>
    - <C_C551>
      <D_4383>UGI</D_4383>
      </C_C551>
      </S_BUS>
    - <G_SSG5>
    - <S_MOA>
    - <C_C516>
      <D_5025>9</D_5025>
      <D_5004>5000</D_5004>
      <D_6345>EUR</D_6345>
      </C_C516>
      </S_MOA>
      </G_SSG5>
    - <G_SSG6>
    - <S_FII>
      <D_3035>OR</D_3035>
    - <C_C078>
      <D_3194>ES921998500000000012</D_3194>
      <D_6345>EUR</D_6345>
      </C_C078>
    - <C_C088>
      <D_3433>ABNAES17000</D_3433>
      <D_1131>25</D_1131>
      <D_3055>5</D_3055>
      </C_C088>
      <D_3207>ES</D_3207>
      </S_FII>
      </G_SSG6>
    - <G_SSG7>
    - <S_NAD>
      <D_3035>OY</D_3035>
    - <C_C080>
      <D_3036>XYZ CORPORATION LTD</D_3036>
      </C_C080>
    - <C_C059>
      <D_3042>XX</D_3042>
      </C_C059>
      <D_3164>XX</D_3164>
      <D_3207>ES</D_3207>
      </S_NAD>
      </G_SSG7>
    - <G_SSG11>
    - <S_SEQ>
    - <C_C286>
      <D_1050>1</D_1050>
      </C_C286>
    - <S_MOA>
    - <C_C516>
      <D_5025>9</D_5025>
      <D_5004>5000</D_5004>
      <D_6345>EUR</D_6345>
      </C_C516>
      </S_MOA>
    - <S_DTM>
    - <C_C507>
      <D_2005>227</D_2005>
      <D_2380>2007-02-01</D_2380>
      <D_2379>102</D_2379>
      </C_C507>
      </S_DTM>
    - <S_RFF>
    - <C_C506>
      <D_1153>AIK</D_1153>
      <D_1154>01901234567890</D_1154>
      </C_C506>
      </S_RFF>
    - <S_RFF>
    - <C_C506>
      <D_1153>CR</D_1153>
      <D_1154>01901234567890</D_1154>
      </C_C506>
      </S_RFF>
    - <S_FCA>
      <D_4471>13</D_4471>
      </S_FCA>
    - <G_SSG12>
    - <S_FII>
      <D_3035>BF</D_3035>
    - <C_C078>
      <D_3194>AT921998500000000011</D_3194>
      <D_6345>EUR</D_6345>
      </C_C078>
    - <C_C088>
      <D_3433>ABNAAT14000</D_3433>
      <D_1131>25</D_1131>
      <D_3055>5</D_3055>
      </C_C088>
      <D_3207>ES</D_3207>
      </S_FII>
      </G_SSG12>
    - <G_SSG13>
    - <S_NAD>
      <D_3035>BE</D_3035>
    - <C_C080>
      <D_3036>ABC CORPORATION 1</D_3036>
      </C_C080>
    - <C_C059>
      <D_3042>XX</D_3042>
      </C_C059>
      <D_3164>XX</D_3164>
      <D_3207>ES</D_3207>
      </S_NAD>
      </G_SSG13>
    - <G_SSG16>
    - <S_PRC>
    - <C_C242>
      <D_7187>11</D_7187>
      </C_C242>
    - <S_FTX>
      <D_4451>PMD</D_4451>
    - <C_C108>
      <D_4440>SENDERPN1</D_4440>
      </C_C108>
      </S_FTX>
      </S_PRC>
      </G_SSG16>
      </S_SEQ>
      </G_SSG11>
      </S_LIN>
      </G_SSG4>
    - <S_CNT>
    - <C_C270>
      <D_6069>2</D_6069>
      <D_6066>1</D_6066>
      </C_C270>
      </S_CNT>
    - <S_UNT>
      <D_0074>1</D_0074>
      <D_0062>1</D_0062>
      </S_UNT>
      </S_UNH>
    - <S_UNZ>
      <D_0036>1</D_0036>
      <D_0020>01945678912345</D_0020>
      </S_UNZ>
      </S_UNB>
      </LIST>
    <b>3. The module parameters for Seeburger inputs :</b>
    ( In receiver communication channel)
    <b>Processing Sequence</b>
    localejbs/CallBicXIRaBean               Local Ent Bean     x2e_bic_paymul
    SAP XI JMS Adapter/ConvertMessageToBinary     Local Ent Bean     convert_XI2Bin
    SAP XI JMS Adapter/SendBinarytoXIJMSService     Local Ent Bean     
                    exit
    <b>Module Key</b>
    x2e_bic_paymul     destSourceMsg     MainDocument
    x2e_bic_paymul     destTargetMsg     MainDocument
    x2e_bic_paymul     logAttID          ConverterLog
    x2e_bic_paymul     mappingName     See_X2E_PAYMUL_UN_D96A
    x2e_bic_paymul     newLine          true
    x2e_bic_paymul     saveSourceMsg     XMLEDI

    Hi,
    Check Below links,
    /people/bla.suranyi/blog/2006/06/08/sap-xi-supports-edifact
    http://www.seeburger.it/fileadmin/it/pdf/2005_04_sapphire_Ferrero_transcript.pdf
    http://www.seeburger.com/fileadmin/com/pdf/Butler_Group_SEEBURGER_Technology_Audit.pdf
    http://www.seeburger.com/fileadmin/com/pdf/AS2_General_Overview.pdf
    SAP Adapters
    Regards,
    Phani

Maybe you are looking for

  • How to store Connection object and call it from other programs.

    Hi, I am trying to connect to the database, store the connection object and use this connection object from other standalone java programs. Can any one tell me how to do this? I've tried in the following way: In the following program I am connecting

  • How to display JPEG in JSP w/o IMG tag?

    I have a working application where a jpeg image is ecoded on the server via a JavaBean. The bean is then forwarded to a JSP, which gets the unique jpeg filename from the bean and displays it with an html <IMG> tag. All's fine and well, but I'd like t

  • Premiere pro CS6 will not stop indexing and conforming

    I am working on several projects with ease. But a project gives me problems. I have already imported several types of files and edit individual sequences. Now I add more recordings but premiere does not stop indexing these files. If I want to watch a

  • YouTube Account in Widget

    Hi, I can launch the YouTube widget and have the Media Manager installed (just put on the latest version today). When I login to the YouTube widget with my YouTube account (on the TV) I get presented with three options to play some videos. The one I

  • AP Invoice Batch Approval

    Hi All, We have a requirement where AP invoice batches approval is required for Oracle 11.5.10.2. Currently, we know that the invoice approval is possible by invoice. We need to achieve the same for invoice batches so that all the invoices within the