Adapter PI7.1 Module Problem

hi,
i'm facing a weird problem , i'll explain:
I developed a module adapter to be able get the dynamic file name into a zip file because i'm using the AF_Modules/PayloadZipBean and as we know the name of the file inside  the zip in a standar way is static.
The things is that i could do the task using the following code :
public ModuleData process(ModuleContext moduleContext, ModuleData inputModuleData) throws ModuleException {
          //String SIGNATURE = "process(ModuleContext moduleContext, ModuleData inputModuleData)";
          Location location = null;
          AuditAccess audit = null;
          String unidadE,centro,unidadO =null;
          // Create the location always new to avoid serialization/transient of location
          try {
               location = Location.getLocation(this.getClass().getName());
          }catch (Exception t) {
               t.printStackTrace();
               ModuleException me = new ModuleException("Unable to create trace location", t);
               throw me;
          Object obj = null;
          Message msg = null;
          MessageKey key = null;
          try {
               obj = inputModuleData.getPrincipalData();
               msg = (Message) obj;
               key = new MessageKey(msg.getMessageId(), msg.getMessageDirection());
               audit = PublicAPIAccessFactory.getPublicAPIAccess().getAuditAccess();
               audit.addAuditLogEntry(key, AuditLogStatus.SUCCESS, "BuildFileName: Module called");
          catch (Exception e) {
               ModuleException me = new ModuleException(e);
               throw me;
          try {
               TextPayload xmlpayload = msg.getDocument();
               DocumentBuilderFactory factory;
               factory = DocumentBuilderFactory.newInstance();
               DocumentBuilder builder = factory.newDocumentBuilder();
               Document document = builder.parse((InputStream)xmlpayload.getInputStream());
               NodeList nodosTablaProcesa = document.getElementsByTagName("TablaProcesa");
               Element elementFPVM00 = (Element) nodosTablaProcesa.item(0);
             NodeList nodoFPVM00 =elementFPVM00.getElementsByTagName("FPVM00");
             Element elementRegistro =(Element) nodoFPVM00.item(0);
             NodeList nodoRegistro = elementRegistro.getElementsByTagName("reg");
             Element element = (Element)nodoRegistro.item(0);
             NodeList valorNumcia = element.getElementsByTagName("NUMCIA");
             Element valNumcia =(Element) valorNumcia.item(0);
             NodeList valorNumAlm = element.getElementsByTagName("NUMALM");
             Element valNumalm = (Element)valorNumAlm.item(0);
             NodeList valorSubAlm = element.getElementsByTagName("SUBALM");
             Element valSubalm = (Element) valorSubAlm.item(0);
             unidadE =getCharacterDataFromElement(valNumcia);
             centro = (getCharacterDataFromElement(valNumalm)).replace("'","");
             unidadO =(getCharacterDataFromElement(valSubalm)).replace("'","");
              String fileName = "RT"unidadEcentrounidadO".xml";
              audit.addAuditLogEntry(key, AuditLogStatus.SUCCESS, "BuildFileName:" +fileName);     
              if(fileName == null)     
                 xmlpayload.setContentType("text/plain;charset = "UTF-8";filename="defaultbeanfile.txt"");     
              else     
                 xmlpayload.setContentType("text/plain;charset = "UTF-8";filename="" + fileName + """);     
              audit.addAuditLogEntry(key, AuditLogStatus.SUCCESS, "BuildFileName:" +xmlpayload.getContentType());
              inputModuleData.setPrincipalData(msg);
              } catch (Exception e) {
                   ModuleException me = new ModuleException(e);
                   audit.addAuditLogEntry(key, AuditLogStatus.ERROR, "BuildFileName: Module Fail");
                   throw me;
               return inputModuleData;
the problem is when we transport this module to QA environment isn´t working , instead of put the dynamic file name is putting "untitled.txt" , in DEV everything is fine , do you know about some bugs in PI 7.1 ?? some notes that could help? 
thanks in advanced
my config in the file adapter is the following
PROCESSING SEQUENCE
BuildFileName   Local Enterprise Bean    contentType
AF_Modules/PayloadZipBean   Local Enterprise Bean   zip
CallSapAdapter  Local Enterprise Bean    2
MODULE CONFIGURATION
zip   zip.filenameKey   contentType
zip   zip.mode             zipOne

Hi Stefan ,
for example in QA we have some diferences ,
QA       SAP_XIAF -> 1000.7.10.6.18.20090211173100
DEV     SAP_XIAF->  1000.7.10.6.13.20081124173200
It seems like QA has an updated , but in QA is not working, do you know what packages could be causing this problem? at first sight i choose SAP_XIAF because the adapter framework ,
The code seems correct on sight. Is the audit log entry with the file name available? Is this correct?
Yes , when i saw the audit log in MessagingSystem monitor , i can see the well file name formed (ex "RT213AC00AC0000.xml") ,
thanks

Similar Messages

  • File adapter custom module problem

    Dear All,
    Currently my file adapter is picking up a flat file and I have writeen a module which will remove junk characters from the start of the file...I have also used FCC to convert the flat file to xml.
    now my question is what is the sequence...
    1. is it that my FCC will convert the flat to xml first and then the module will get xml as input
    2. or is it that module will get the flat file as input , it will perform the maipultaions and then my FCC will be called to convert it to xml
    Actually after running the scenraio what we can see in the audit log is
    1.flat file converted ok and then
    2.processing module
    My requirement : module should get a flat file as input and then that module will remove junk char..after this standard FCC should convert it to XML

    1. is it that my FCC will convert the flat to xml first and then the module will get xml as input
    first FCC will get executed then MODULE
    My requirement : module should get a flat file as input and then that module will remove junk char..after this standard FCC should convert it to XML
    Dont use FCC just read .txt file after removing junk character buid the XML file using DOM parser in the MODULE itself.

  • Does anyone know how to customize a adapter (PI7.1)(not adapter module)

    Dear PI experts:
      i want to develop a adapter to  fulfill the user' requirements,my pi version is pi7.1,and had download the sample adapter code,it's a zip file which contents some java class. and i now i have a double about developing the adapter:
    1.which project type do i create for the adapter,is general java project or EJB project?
    2.in the  adapter project , where can i coding.
    3.i don't kown what i must implement int the adapter project ,for example there may be some configuration.
    do anyone had developed own adapter,could you tell me how to develop a adapter.
    thaks very mutch!

    Hi Kevin,
    Adapter development for both PI7.0 and PI7.1 has limited resources.
    You must have come across this SAP Documentation from help.sap.com:
    [Adapter and Module Devlopment|http://help.sap.com/saphelp_nwpi71/helpdata/EN/8b/895e407aa4c44ce10000000a1550b0/content.htm]
    This is a complete reference for understanding the Adapter framework.
    Download the example Adapter from the mentioned links on the above page and try understanding and relating the java objects with the adapter frameworj and JCA.
    You surely need a Java Project for the Adpater development.
    You'll need to write a build file to compile it into a rar file and then toa deployable SDA. Thats the way with the example adapter.
    Regards,
    Alka.

  • Debugging JMS adapter with Module Configuration

    Hi.
    I have a problem debugging my JMS adapter with module configuration.
    All I get from the Message Monitor is a status "System Error", and no error category or error message.
    I know there's an error in my Module configuration design, since it works fine without.
    My configuration looks like this:
    PROCESSING SEQUENCE:
    1     localejbs/AF_Modules/MessageTransformBean     Local Enterprise Bean     XML2Plain
    2     localejbs/SAP XI JMS Adapter/ConvertMessageToBinary     Local Enterprise Bean     convert_XI2Bin
    3     localejbs/SAP XI JMS Adapter/SendBinarytoXIJMSService     Local Enterprise Bean     exit
    MODULE CONFIGURATION:
    XML2Plain     Transform.Class     com.sap.aii.messaging.adapter.Conversion
    XML2Plain     Transform.ContentType     text/plain;charset=utf-8
    XML2Plain     xml.conversionType     StructXML2Plain
    XML2Plain     xml.addHeaderLine     0
    XML2Plain     xml.recordsetStructure     STARTRECORD,DATARECORD,SERVICEYDELSERRECORD,SLUTRECORD
    XML2Plain     xml.STARTRECORD.fieldFixedLengths     2,8,6,7,10,7,3,3
    XML2Plain     xml.DATARECORD.fieldFixedLengths     2,8,6,4,35,17,7,7,7,5,5,5,18,18,18,18,18,18,18,18,18,9
    XML2Plain     xml.SERVICEYDELSERRECORD.fieldFixedLengths     2,8,6,4,3,20,18,18,18
    XML2Plain     xml.SLUTRECORD.fieldFixedLengths     2,8,6,7,10,7
    XML2Plain     xml.STARTRECORD.fixedLengthTooShortHandling     Cut
    XML2Plain     xml.DATARECORD.fixedLengthTooShortHandling     Cut
    XML2Plain     xml.SERVICEYDELSERRECORD.fixedLengthTooShortHandling     Cut
    XML2Plain     xml.SLUTRECORD.fixedLengthTooShortHandling     Cut
    The structure of the message looks like this:
    <STARTRECORD> (occurence = 1)
    <DATARECORD> (occurence = 1..unbounded)
    --- <SERVICEYDELSERRECORD> (occurence = 0..unbounded)
    <SLUTRECORD> (occurence = 1)
    I've crosschecked every field, and it length and all looks like it should!
    The worst part is the one not getting the reason why it fails. Any way I can get this information?
    I've tried to look in the Adapter Framework log, but I have no clue where to look for anything usefull.
    Help
    Regards Peter

    Hello,
    Below is the module configuration in my JMS sender channel:
    Check Message          Local Enterprise Bean          key
    ConvertJMSMessageToBinary      Local Enterprise Bean      convert_JMS2Bin
    ConvertBinaryToXMBMessage     Local Enterprise Bean      convert_Bin2XI
    CallSapAdapter                Local Enterprise Bean          call_AF_MS
    CheckMessage is a custom module which does some check on the incoming message.
    Now what I want to know is at which position should I include the DynamicConfiguration Bean? Should it be included at position 1 or at position 2 or someother position?
    ~Thanks.

  • Adapter specific Module

    Hi
    What is Adapter specific Module ? Pls explain in detail
    Thanks,
    srini

    HI Srinivas
    Please go thru the following notes for Adapter Specific Modules.
    Dynamic Configuration Module: Note 974481
    Zip Module: Note 965256
                /people/stefan.grube/blog/2007/02/20/working-with-the-payloadzipbean-module-of-the-xi-adapter-framework
    Text Codepage Conversion Module: Note 960663
    XML Anonymizer Module: Note 880173
                           /people/stefan.grube/blog/2007/02/02/remove-namespace-prefix-or-change-xml-encoding-with-the-xmlanonymizerbean
    XML-to-Text Conversion Module :
    http://help.sap.com/saphelp_nw04/helpdata/en/44/748d595dab6fb5e10000000a155369/frameset.htm
    Payload Swapping Module: Note 794943
    http://help.sap.com/saphelp_nw04/helpdata/en/2e/bf37423cf7ab04e10000000a1550b0/frameset.htm
    Message Transformation Module: Note 793922
    http://help.sap.com/saphelp_nw04/helpdata/en/57/0b2c4142aef623e10000000a155106/frameset.htm
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/50061bd9-e56e-2910-3495-c5faa652b710
    RequestResponseBean: http://help.sap.com/saphelp_nw04/helpdata/en/45/20c210c20a0732e10000000a155369/frameset.htm
    ResponseOnewayBean:
    http://help.sap.com/saphelp_nw04/helpdata/en/45/20cc5dc2180733e10000000a155369/frameset.htm
    Example Module from Adapter Development:
    http://help.sap.com/saphelp_nw04/helpdata/en/96/f04142099eb76be10000000a155106/frameset.htm
    Cheers..
    Vasu
    <i>** Reward Points if found useful **</i>

  • SAP Adapter has a problem, SOD violations will not be checked

    Hi,
    In our ides server whenever i click save button in su01 i get the following error ,
    "SAP Adapter has a problem, SOD violations will not be checked !
    Please check with your system Administrator
    Technical Info:
    Error when opening an RFC connection "
    we didn't have this problem before . can anybody help me to resolve the issue
    Also I am getting this error only if I click save in su01. in other t code. I don't get this error
    Thanks in Advance
    Edited by: gajula jhansi on Apr 11, 2011 11:28 AM

    You need to restart your sap adapter in GRC front end from configurations tab-->Sap adapter >choose the one for your back end system> if it's grayed out or even green still, click on it and let it restart and turn green again.
    Then you go back to your backend ECC system and in SM59 , choose the RFC connection for the Risk Terminator (the one you have saved in the Risk Terminator transaction /VIRSA/ZRTCNFG in backend system).. and test the connection. It should pass the connection test if your adapter is working and set up correctly. Then when you do save in SU01 or make changes in PFCG and have Risk Terminator activated for the backend system, it will check the SOD violations against those transactions from RAR front end.
    If you don't want Risk Terminator to check for SOD violations in front end RAR, then you need to set your settings to 'NO' for all in the Risk Terminator transaction. You can get all this info in the GRC config guide for RAR and SPM area.
    Regards,
    Alley

  • Where can i find this class? com.sap.aii.adapter.axis.modules.HandlerBean

    Hi,
      Which jar file contains the class com.sap.aii.adapter.axis.modules.HandlerBean? Where can i download from?
    Thank you
    Monika Dietz

    monika,
    Check this out...
    http://www.mail-archive.com/[email protected]/msg37875.html//www.mail-archive.com/[email protected]/msg37875.html
    Regards
    Ravi Raman

  • Mail Adapter Module Problem!

    Hi All
    I m facing a problem in implementing a custom mail adapter module.
    The scenario is to set the content type based on the file type. eg: if the file being sent is a pdf then content type should be "application/pdf".
    I hope the scenario is clear, please feel free to ask for clarifications.
    awaiting your replies.
    Regards
    Kapil

    Hi All
    I am able to fetch the file name now and set the content type based on the file name. But I m not able to change the name of attachment of mail. For reference, I m pasting the code here, please suggest how to do the latter part
    try {
                         // CS_GETCHADAT START
                         cid  = moduleContext.getChannelID();
                         Channel channel = new Channel(cid);
                         // Example to access a channel configuration parameter in a module: String someParameter = channel.getValueAsString("YourAttributeName");
                         // CS_GETCHADAT END
                        fileName = msgg.getMessageProperty("http://sap.com/xi/XI/System/File","FileName");
                        Payload attachment = msgg.getAttachment("MainDocument");
                             StringTokenizer st = new StringTokenizer(fileName, ".");
                             while(st.hasMoreTokens()){
                                  extension = st.nextToken();     
                        Audit.addAuditLogEntry(amk, AuditLogStatus.SUCCESS, "RenameFile: filename " + fileName);
                        Audit.addAuditLogEntry(amk, AuditLogStatus.SUCCESS, "RenameFile: extension " + extension);
                             // create new payload
                             Audit.addAuditLogEntry(amk, AuditLogStatus.SUCCESS, "RenameFile: attchmntName " + attachment.getName().toString());
                             //provide attributes and content for the new payload
                             attachment.setName("Attachment :" + fileName);
    //                         msgg.setMessageProperty("http://sap.com/xi/XI/System/File","content-description",fileName);
                             attachment.setContentType("application/" + extension );
                             inputModuleData.setPrincipalData(msgg);

  • Adapter Module Problem

    Hi All,
    I am following the PDF "How to create Modules for J2EE Adapter Engine". I developed the module for Mail Adapter and implemented in a File->XI->Mail scenario.
    The problem is when i am testing the scenario, i am getting chequered flag in SXMB_MONI and adapter monitor is not showing any error and it is also not showing message is being sent status.
    scenario is running perfectly after removing this module from module chain.
    So i am not able to get where the error lies.
    Any help is appriciated.
    Thanks and Regards,
    Alok.

    hi,
    did you check the adapter monitor?
    http://hostname:portnumber/MessagingSystem/monitor/monitor.jsp
    did you put any adapter logs in your adapter java code?
    to see if the adapter gets invoked etc?
    if not do it for
    AuditLogStatus.SUCCESS or AuditLogStatus.ERROR:
    http://help.sap.com/saphelp_nw04/helpdata/en/a6/66e540aa827e7fe10000000a1550b0/content.htm
    Regards,
    michal
    <a href="/people/michal.krawczyk2/blog/2005/06/28/xipi-faq-frequently-asked-questions"><b>XI / PI FAQ - Frequently Asked Questions</b></a>

  • Creating J2EE adapter module problem

    Hi All,
    when i am creating a J2EE customer-specific adapter module in SAP Netweaver Developer Studio, then in the java class when i write these statements:
    <u>import com.sap.aii.af.mp.module.*;
    import com.sap.aii.af.ra.ms.api.*;</u>
    public class CustomerMeter implements SessionBean, <u>Module</u>{
    it is showing error on the  above underlined things that it cannot resolve these things.
    can anybody suggest where to locate these librarys in Project - Properties - Java Build Path - Libraries path from the main menu.
    Thanks,
    Rajeev Gupta

    Hi Amit,
    On changing the ejb-jar.xml as you said:
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE ejb-jar PUBLIC "-//Sun Microsystems, Inc.//DTD Enterprise JavaBeans 2.0//EN"
                             "http://java.sun.com/dtd/ejb-jar_2_0.dtd">
    <ejb-jar>
        <description>EJB JAR description</description>  
        <display-name>EJB JAR</display-name>
         <enterprise-beans>
              <session>
                   <ejb-name>CustomerMeter</ejb-name>
                   <ejb-class>pkgCustomerMeter.CustomerMeter</ejb-class>
                   <home>com.sap.aii.af.mp.module.ModuleHome</home>
                   <remote>com.sap.aii.af.mp.module.ModuleRemote</remote>
                   <local-home>com.sap.aii.af.mp.module.ModuleLocalHome</local-home>
                   <local>com.sap.aii.af.mp.module.ModuleLocal</local>
                   <session-type>Stateless</session-type>
                   <transaction-type>Container</transaction-type>
              </session>
         </enterprise-beans>       
    </ejb-jar>
    But now on saving this xml, it is giving the following  error:
    <b>The content of element type "session" must match "(description?,display-name?,small-icon?,large-icon?,ejb-name,home?,remote?,local-home?,local?,ejb-class,session-type,transaction-type,env-entry,ejb-ref,ejb-local-ref,security-role-ref,security-identity?,resource-ref,resource-env-ref)".</b>
    Could you please tell how to correct this error.
    Thanks and Regards,
    Rajeev Gupta

  • Adapter module - problem with XML

    Hi all
    I have written an adapter module for the sender jdbc adapter(it shouldn't matter which adapter) that converts the content into xml by addressing each byte of the message content.
    I am able to make the xml but when the message reaches the integration server it throws up a mapping exception. When I look at the payload in SXI_MONITOR it says -
    Invalid at the top level of the document. Error processing resource 'file:/// ........
    But when I right click on the payload and do "view source" and then save the text document and then refresh the payload in the payload window it shows me the xml document.
    Would you have any idea as to why the IS doesn't recognise the message to be an xml message?
    Thanks a lot
    Salil

    Hi Bhavesh
    Yup it's a perfectly valid xml. I tried saving it as a file to my desktop and it opened fine in my browser. As I mentioned earlier even when I do a "view source" of the payload and then save that and subsequently refresh the payload it shows up fine too.
    Actually here is the payload. i am wondering if all it needs is a carriage return after the <?xml tag.
    <?xml version="1.0" encoding="utf-8"?>          <ns0:out_sale_mt xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:ns0="http://www.rd1.com/pos/sales"><TransHeaders><ID>1782219</ID><TransNo>2</TransNo><Branch>91</Branch><Station>99</Station><Receipt>0910990000002</Receipt><Logged>2007-08-02T18:52:53</Logged><TransType>C</TransType><TransStatus>C</TransStatus><TheUser>cantlong</TheUser><Customer>100001006</Customer><CustType>C</CustType><SecondCustomer></SecondCustomer><SecondCustCard></SecondCustCard><LinesNo>2</LinesNo><PaymentsNo>1</PaymentsNo><TotalBeforeTax>2.8400</TotalBeforeTax><TotalAfterTax>3.1900</TotalAfterTax><ScannedNo>0</ScannedNo><ScanTime>0</ScanTime><PayTime>0</PayTime><IdleTime>0</IdleTime><Reason>0</Reason><Rounding>0.0000</Rounding><TH_FieldText1></TH_FieldText1><TH_FieldText2></TH_FieldText2><TH_FieldText3></TH_FieldText3><System1>0</System1><System2>0.0000</System2><System3></System3><FolioID>0</FolioID><UserAcc>1</UserAcc><Salesperson></Salesperson><TransLines xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:ns0="http://www.rd1.com/pos/sales"><TransNo>2</TransNo><Branch>91</Branch><Station>99</Station><Line>1</Line><LineType>N</LineType><UPC>9400559001014</UPC><IsVoided>0</IsVoided><Quantity>1.0000</Quantity><Price>3.1900</Price><DiscountID>0</DiscountID><TaxNo>1</TaxNo><SubBeforeTax>2.8356</SubBeforeTax><SubAfterTax>3.1900</SubAfterTax><Reason>0</Reason><Note/><TL_FieldText1/><TL_FieldText2/><TL_FieldText3/><SerialNumber/><TransStatus>C</TransStatus><Cost>2.4000</Cost><PriceSet>3.1900</PriceSet><TaxNo1>1</TaxNo1><TaxNo2>0</TaxNo2><TaxNo3>0</TaxNo3><TaxAmount1>0.3544</TaxAmount1><TaxAmount2>0.0000</TaxAmount2><TaxAmount3>0.0000</TaxAmount3><CostProtect xsi:nil="true"/><Location>0</Location><ESMPack>0</ESMPack></TransLines><TransPayments xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:ns0="http://www.rd1.com/pos/sales"><TransNo>2</TransNo><Branch>91</Branch><Station>99</Station><Line>1</Line><MediaID>9</MediaID><MediaName>SPLIT</MediaName><Value>3.1900</Value><Fee>0.0000</Fee><Change>0.0000</Change><MediaNumber/><TP_FieldText1/><Rate>0.000000000</Rate><FCValue>0.0000</FCValue></TransPayments><PostCapture xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:ns0="http://www.rd1.com/pos/sales"><Id>168165</Id><Type/><TransStatus>C</TransStatus><TransNo>2</TransNo><Branch>91</Branch><Station>99</Station><Line>0</Line><IsVoided>0</IsVoided><Logged>2007-08-02T18:52:54</Logged><TheUser>cantlong</TheUser><Status>0</Status><UPC/><Note1/><Note2/><LineBucket>1</LineBucket><Bucket>&amp;lt;capture&amp;gt;&amp;lt;splits&amp;gt;&amp;lt;split&amp;gt;&amp;lt;code&amp;gt;100001006&amp;lt;/code&amp;gt;&amp;lt;percent&amp;gt;50&amp;lt;/percent&amp;gt;&amp;lt;/split&amp;gt;&amp;lt;split&amp;gt;&amp;lt;code&amp;gt;100001030&amp;lt;/code&amp;gt;&amp;lt;percent&amp;gt;50&amp;lt;/percent&amp;gt;&amp;lt;/split&amp;gt;&amp;lt;/splits&amp;gt;&amp;lt;/capture&amp;gt;</Bucket></PostCapture></TransHeaders></ns0:out_sale_mt>

  • File adapter (sender) module throws exception, but adapter proceeds again

    Hello dear reader,
    I wrote a module that converts a flat file into XI-XML and tested it within the file adapter. It works fine so far. But if I force the module to throw an exception to handle an erroneous flat file, the file adapter tries to proceed the erroneous file again and again. Not very nice, isn´t it?
    Has anybody an idea, how to configure the file adapter to stop the processing of an erroneous file?
    Thank you in advance
    Yours
    Frank Waskow

    Hello Satish,
    the weblog doesn´t describe my problem correctly. Let me show you the Audit Log from the Messeage Display Tool of the Adapter Engine:
    Audit Log for Message: 06ff54a0-a258-11db-b9e2-003048226013
    Time Stamp     Status     Description
    2007-01-12 16:14:49     Success     Send text file "Invoice_error_wf.edi" from FTP server "HH-168:/XI_Infotag_Testdaten/EDIX/In", size 27993 bytes with QoS EO
    2007-01-12 16:14:50     Error     Attempt to process file failed with null
    2007-01-12 16:15:00     Success     Send text file "Invoice_error_wf.edi" from FTP server "HH-168:/XI_Infotag_Testdaten/EDIX/In", size 27993 bytes with QoS EO
    2007-01-12 16:15:00     Error     Attempt to process file failed with null
    2007-01-12 16:16:00     Success     Send text file "Invoice_error_wf.edi" from FTP server "HH-168:/XI_Infotag_Testdaten/EDIX/In", size 27993 bytes with QoS EO
    2007-01-12 16:16:00     Error     Attempt to process file failed with null
    2007-01-12 16:17:00     Success     Send text file "Invoice_error_wf.edi" from FTP server "HH-168:/XI_Infotag_Testdaten/EDIX/In", size 27993 bytes with QoS EO
    2007-01-12 16:17:00     Error     Attempt to process file failed with null
    2007-01-12 16:18:00     Success     Send text file "Invoice_error_wf.edi" from FTP server "HH-168:/XI_Infotag_Testdaten/EDIX/In", size 27993 bytes with QoS EO
    2007-01-12 16:18:00     Error     Attempt to process file failed with null
    It seems to me that the Adapter gets the error of the module, but it is not handled as an error like shown in the blog <a href="/people/sap.user72/blog/2005/11/29/xi-how-to-re-process-failed-xi-messages-automatically:///people/sap.user72/blog/2005/11/29/xi-how-to-re-process-failed-xi-messages-automatically.
    The adapter tries to proceed the same file again and again, till I delete it from the source directory.
    Any more idea?
    Frank

  • Web module problems in LR3

    Hi,
    I've been happily using LR1.3 for a while, exporting flash galleries from the 'web module' using SlideShowPro. I upgraded to LR3 last week, now when I go to the Web Module, none of the flash galleries work, not SSP, nor the simpleviewer etc. ones. I've removed the old LRwebengines and replaced with the latest LR3 one's for the relevent galleries, I've also updated the flash player, still no joy.
    All the paremeter options show in the right hand pane for each of the galleries, but the main window is just black. The top left info panel briefly shows a 'copying resources' progress bar and then a 'task completed' message, but nothing shows in the main window.
    Any ideas?
    Edit, although the main preview screen is blank, I can export the gallery [certainly with SlideShowPro anyway] and the exported gallery is fine.

    Yes the service ticket is still open. They have remoted to my computer. My last contact was that it was being sent up to Sr. Engineer. My problem goes away when I disable my wireless adapter. I think this weekend I will try hooking up to server with cable and see what happens. For now I am like you I use it by disabling the adapter then work on the galleries. Of coarse I can not push direct to my web site so I export to my desktop then us CuteFTP to up load. Like you this is a pain. I am still hoping they will find a fix. I have told them that I am not the only one having problem.
    Hang in there.
    Brad

  • Decoding in Adapter using Module

    Hi,
    Following is the scenario overview:
    1. Source file is encoded text file.
    2. Decode the source file to obtain the XML file using Base64 decoder in adapter Module.
    3. Use the XML file for mapping.
    I have written a java code which decodes the file and forms the XML.When i run it as a stand alone it works fine.
    When I deploy it, it does not decode the whole source text and forms partial xml file because of which whole scenario does not work.
    Can anyone suggest where and what the problem can be?

    Hi Manjusha,
    Thanks for the reply..
    The issue is resolved now.. but there is another issue that has come up..
    The problem now is that the module works with File adapter i.e. end to end is successful.
    But the same module gives error with JMS adapter.
    Its strange..
    Edited by: P M on Jul 31, 2009 11:57 AM
    Edited by: P M on Jul 31, 2009 12:34 PM

  • MSI 785GM-E51 and memory modules problems

     
    Could anyone help me with one problem. I have motherboard MSI 785GM-E51 and 4 memory modules GOODRAM GR 1333D364L9/2G. But when I'm inserting ALL modules my system not starting (even POST procedure). So working variants - when I'm inserting:
    - one module in first (boot) slot
    or
    - they inserted in first and third memory slots
    Any ideas?

    It is not motherboard problem, but processor itself - I have AMD Phenom II X4 965 Black Edition 3,4 Ghz Core Revision C2 and this revision (according to the article: http://www.fcenter.ru/online.shtml?articles/hardware/processors/27650#02) has problems with support memory modules DDR3-1333 Mhz more than 2 modules. Conclusion - either adjust BIOS settings concerning memory timings and memory controller voltage or replace this kind of processor with the same type but with core revision C3

Maybe you are looking for

  • Can't open CR2 files in photoshop and camera raw

    This weekend I rented a Canon 5D Mark iii. I have downloaded the files and all of the thumbnails in camera raw say CR2 and when I try to open Photoshop does not recognize this product. I have: Photoshop CS4 Camera Raw CS4 Canon 5D Mark ii I have chec

  • Problems with MicroPh

    I have went through support knowledgeBase several times but nothing has worked. First the problem was that the mp3 player stopped connecting to the computer. It happened several times before but it would usually start working again. Then it didn't. I

  • Issues rendering WDA from portal

    Hi, When opening a WDA from portal, we encounter issues where the WDA does not seem to render and hangs. This issue occurs sporadically.  When this does occur, if re-activate the "UR" service in SICF, the issue goes away. Can anyone shed some light o

  • RS232 data to digital chart

    Hi! I past the last night trying to display a digital square wave en Labview... I using Labview 7.1.1, in Windows XP SP2. To adquire the data, i use a visa read function, after configurate the serial port. In the hardware side, i have a PIC microntro

  • Gps app for india region

    Suggest me some app which has maps of India and which useful to find place as blackberry maps is showing that maps are not available for this region.