Please help figure out an uncaught exception,

Hello All,
I've setup javamail API package to use with Resin web server by copying the necessary jar files under WEB-INF/lib. I've copied mail.jar, mailapi.jar, pop3.jar, smtp.jar and activation.jar.
According to my readings I have everything I need to send simple messages out. But when I run my web application to send a simple message, I get FileNotFoundException exception, please see the snippet diagnostics below. Furthermore, I get an exception somewhere that does not seem to be one of the exceptions I'm catching. I cannot figure out what that exception is and where it's coming from.
I get a FileNotFoundException somewhere during the process of sending the message, but that doesn't seem to stop the process so I'm not sure if that has anything to do with the final uncaught exception.
By the way the email message is sent and does reach its destination in spite of the uncaught exception.
Does anyone have any idea what is happening and why?
Thanks in advance for any hints and tips.
<<<<<<<< snippet >>>>>>>>>
[2003-05-19 23:00:56.245]DEBUG: JavaMail version 1.3
[2003-05-19 23:00:56.255]DEBUG: java.io.FileNotFoundException: C:\j2sdk1.4.1_02\jre\lib\javamail.providers (The system cannot find the file specified)
[2003-05-19 23:00:56.265]DEBUG: URL jar:file:/C:/resin-ee-2.1.9/public_html/WEB-INF/lib/imap.jar!/META-INF/javamail.providers
[2003-05-19 23:00:56.505]DEBUG: successfully loaded resource: jar:file:/C:/resin-ee-2.1.9/public_html/WEB-INF/lib/imap.jar!/META-INF/javamail.providers
[2003-05-19 23:00:56.595]DEBUG: URL jar:file:/C:/resin-ee-2.1.9/public_html/WEB-INF/lib/smtp.jar!/META-INF/javamail.address.map
[2003-05-19 23:00:56.595]DEBUG: successfully loaded resource: jar:file:/C:/resin-ee-2.1.9/public_html/WEB-INF/lib/smtp.jar!/META-INF/javamail.address.map
[2003-05-19 23:00:56.595]DEBUG: java.io.FileNotFoundException: C:\j2sdk1.4.1_02\jre\lib\javamail.address.map (The system cannot find the file specified)
[2003-05-19 23:00:56.835]DEBUG: getProvider() returning javax.mail.Provider[TRANSPORT,smtp,com.sun.mail.smtp.SMTPTransport,Sun Microsystems, Inc]
[2003-05-19 23:00:56.855]DEBUG SMTP: useEhlo true, useAuth false
<<<<<<<< snip >>>>>>>>>

In the debug output you showed there, the JavaMail code is looking for a resource that could be in several different places. It doesn't find it in the first place but then it finds it in the second place, so it doesn't have any problem with that. So it carries on to send the mail normally.
If your program is ending abnormally, you should get a stack trace with the uncaught exception at the top. If you can't find that, wrap your code in this:try {
  // your main routine goes here
} catch(Throwable t) {
  // output this exception somewhere you can find it
}

Similar Messages

  • Please help me out with some fundamentals in BW

    Hello,
    Please guide me regarding the below mentioned questions.
    1. what is the key date in query designer.
    2. when do we perform attribute change run
        like once the master data is loaded then we perform attribute change run and load the transactional data ?
    3.what is the disadvantage of using aggregates.
    4. what is full repair options?
    please help me out with these questions

    HI,
    Repair full request :
    If you indicate a request in full update mode as a repair request, then it is able to be updated in all data targets. This is also true if they already contain data from initial runs or deltas for this DataSource / source system combination, and they have overlapping selections.
    Consequently, a repair request can be updated at any time without checking each ODS object. The system supports loading in an ODS object by using the repair request without having to check the data for overlapping or request sequencing. This is because you can also delete selectively without checking an ODS object.
    Posting such requests can lead to duplicate data records in the data target.
    Hierarchy/attribute change run after loading master data;
    When hierarchies or attributes of characteristics change, the aggregate affected by the change can be adjusted manually or calculated automatically in process chains.
    Aggregates:
    Aggregates are materialized, pre-aggregated views on InfoCube fact table data. They are independent structures where summary data is stored within separate transparent InfoCubes. The purpose of aggregates is purely to accelerate the response time of queries by reducing the amount of data that must be read in the database for a given query navigation step. In the best case, the records presented in the report will exactly match the records that were read from the database.
    Aggregates can only be defined on basic InfoCubes for dimension characteristics, navigational attributes (time-dependent and time-independent) and on hierarchy levels (for time-dependent and time-independent hierarchy structures). Aggregates may not be created on ODS objects, MultiProviders or Remote Cubes.
    Queries may be automatically split up into several subqueries, e.g for individual restricted key figures (restricted key figures sales 2001 and sales 2002). Each subquery can use one aggregate; hence, one query can involve several aggregates.
    If an aggregate has less than 15 components, BW 3.x puts each component automatically into a separate dimension that will be marked as “line item” (except package and unit dimension); these aggregates are called flat aggregates. Hence, dimension tables are omitted and SID tables referenced directly.  Flat aggregates can be rolled up on the DB server (i.e., without loading data into the application server). This accelerates the roll up (hence the upload) process.
    Disadvantage : The more aggregates exist, the more time-consuming is the roll-up process and thus the data loading process; the change run is also affected.
    Hope this info Helps.
    Thanks,Ramoji.

  • Please Help Me Out In Beans

    hai every one ....
    i created three files and saved in respective areas
    new.jsp--->C:\Tomcat 5.0\webapps\ROOT
    one.html--->C:\Tomcat 5.0\webapps\ROOT
    MyBean.java--->C:\Tomcat 5.0\webapps\ROOT
    MyBean.class--->C:\Tomcat 5.0\webapps\ROOT\WEB-INF\classes
    this is the coding part------------------------------------------------------------------------- -------------------------------------------------------------------------------- --------------------------------
    --------------------------------new.jsp---------------------------------------- ---
    <%@page contentType="text/html"%>
    <%@ page import="javax.servlet.*" %>
    <%@ page import="javax.servlet.http.*" %>
    <%@ page import="java.sql.*" %>
    <%@ page import="java.util.*" %>
    <%@ page language="java" %>
    <html>
    <body>
    <jsp:useBean id= "mars" scope="session" class="MyBean"/>
    <jsp:setProperty name ="mars" property="cname" value=request.getParameter("cname");/>
    <jsp:setProperty name ="mars" property="cid" value=request.getParameter("cid");/>
    </body>
    </html>
    ---------------------------------one.html-------------------------------------- -
    <html>
    <body bgcolor="667788">
    <form method="post" action="new.jsp">
    <table>
    <tr>
    <td>
    name
    </td>
    <td>
    <input type="text" name="cname">
    </td>
    </tr>
    <tr>
    <td>
    id
    </td>
    <td>
    <input type="text" name="cid">
    </td>
    </tr>
    <tr>
    <td>
    <input type="submit" value="submit">
    </td>
    </tr>
    </table>
    </form>
    </body>
    </html>
    --------------------------------mybean.java------------------------------------ ---
    import java.util.*;
    import java.sql.*;
    import java.io.*;
    public class MyBean implements Serializable
    private String cname;
    private String cid;
    public MyBean()
    cname = "";
    cid = "";
    public String getCname()
    return cname;
    public String getCid()
    return cid;
    public void setCname(String x)
    cname=x;
    public void setCid(String y)
    cid=y;
    public boolean insertDB()
    Connection con = null;
    Statement stmt = null;
    ResultSet rs = null;
    String query = "insert into apply(name,email) values( ?,? )";
    try
    Class.forName("sun.jdbc.odbc.JdbcOdbcDriver");
    con = DriverManager.getConnection("jdbc:odbc:mysqlDSN","","");
    PreparedStatement pstmt = con.prepareStatement(query);
    pstmt.setString(1,cname);
    pstmt.setString(2,cid);
    int count = pstmt.executeUpdate();
    if(count != 1)
    return false;
    pstmt.close();
    con.close();
    catch(Exception e){
    System.out.println(e.getMessage());
    return false;
    return true;
    im getting this error when i press submit
    --------------------------------ERROR------------------------------------------ --
    HTTP Status 500 -
    type Exception report
    message
    description The server encountered an internal error () that prevented it from fulfilling this request.
    exception
    org.apache.jasper.JasperException: /new.jsp(21,22) equal symbol expected
    org.apache.jasper.compiler.DefaultErrorHandler.jspError(DefaultErrorHandler.jav a:83)
    org.apache.jasper.compiler.ErrorDispatcher.dispatch(ErrorDispatcher.java:402)
    org.apache.jasper.compiler.ErrorDispatcher.jspError(ErrorDispatcher.java:126)
    org.apache.jasper.compiler.Parser.parseAttribute(Parser.java:238)
    org.apache.jasper.compiler.Parser.parseAttributes(Parser.java:188)
    org.apache.jasper.compiler.Parser.parseAttributes(Parser.java:201)
    org.apache.jasper.compiler.ParserController.getPageEncodingForJspSyntax(ParserC ontroller.java:449)
    org.apache.jasper.compiler.ParserController.determineSyntaxAndEncoding(ParserCo ntroller.java:419)
    org.apache.jasper.compiler.ParserController.parse(ParserController.java:203)
    org.apache.jasper.compiler.ParserController.parse(ParserController.java:137)
    org.apache.jasper.compiler.Compiler.generateJava(Compiler.java:237)
    org.apache.jasper.compiler.Compiler.compile(Compiler.java:456)
    org.apache.jasper.compiler.Compiler.compile(Compiler.java:439)
    org.apache.jasper.JspCompilationContext.compile(JspCompilationContext.java:552)
    org.apache.jasper.servlet.JspServletWrapper.service(JspServletWrapper.java:291)
    org.apache.jasper.servlet.JspServlet.serviceJspFile(JspServlet.java:301)
    org.apache.jasper.servlet.JspServlet.service(JspServlet.java:248)
    javax.servlet.http.HttpServlet.service(HttpServlet.java:856)
    note The full stack trace of the root cause is available in the Tomcat logs.
    Apache Tomcat/5.0.18
    ------------------------------------------------->>>><<<<<<<<<<<-----------------------------------------
    please help me out.....
    any kind of help is appriciated
    Rakesh

    For visual beans, check out jsp:plugin
    This will convert you bean to an applet.
    For non-visual beans, check out jsp:useBean

  • Getting PROBE TIMEOUT Error....please help me out...It is urgent

    Hello,
    I'm running a stored procedure in oracle 10G that select data from one table and inserts the selected data into another table. The procedure populates for a short while and then I get the following messages:
    1. probe: timeout Occurred
    2. probe: Exception raised in the DBMS_DEBUG package
    Why is this happening and what should I do to resolve the above issue?
    Please help me out....This is really urgent...
    Thanks a lot in advance....
    Regards,
    Suranjita

    Please check Database alert log to see if any error is raised ?

  • Posted this query several times but no reply. Please help me out

    Hi all,
    How to know whether a servlet had completely sent its response to the request.
    The problem what i am facing is, I send response to a client's request as a file.
    The byte by byte transfer happens, now if the client interrupts or cancels the operation, the response is not completed.
    At this stage how to know the response status. I am handling all exception, even then I am unable to trap the status.
    Please help me out.
    I have posted this query several times but no convincing reply till now. Hence please help me out.
    If somebody wants to see the code. I'll send it through mail.
    regards
    venkat

    Hi,
    thanks for the reply,
    Please check the code what I have written. The servlet if I execute in Javawebserver2.0 I could trap the exception. If the same servlet is running in weblogic 6.0 I am unable to get the exception.
    Please note that I have maintained counter and all necessary exception handling even then unable to trap the exception.
    //code//
    import java.io.*;
    import java.net.*;
    import java.util.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import java.security.*;
    public class TestServ extends HttpServlet
    Exception exception;
    public void doGet(HttpServletRequest req, HttpServletResponse res)throws ServletException, IOException, UnavailableException
         int bytesRead=0;
         int count=0;
         byte[] buff=new byte[1];
    OutputStream out=res.getOutputStream ();
    res.setContentType( "application/pdf"); // MIME type for pdf doc
    String fileURL ="http://localhost:7001/soap.pdf";
    BufferedInputStream bis = null;
    BufferedOutputStream bos = null;
    boolean download=false;
         int fsize=0;
         res.setHeader("Content-disposition", "attachment; filename="+"soap.pdf" );
    try
                   URL url=new URL(fileURL);
         bis = new BufferedInputStream(url.openStream());
         fsize=bis.available();
         bos = new BufferedOutputStream(out);
    while(-1 != (bytesRead = bis.read(buff, 0, buff.length)))
              try
                        bos.write(bytesRead);
                        count +=bytesRead;
                        bos.flush();
                   }//end of try for while loop
                   catch(StreamCorruptedException ex)
                        System.out.println("Exception ="+ex);
                        setError(ex);
                        break;
                   catch(SocketException e)
                        setError(e);
                        break;
                   catch(Exception e)
                        System.out.println("Exception in while of TestServlet is " +e.getMessage());
                        if(e != null)
                             System.out.println("File not downloaded properly"+e);
                             setError(e);
                             break;
                        }//if ends
                   }//end of catch for while loop
    }//while ends
              Exception eError=getError();
              if(eError!=null)
                   System.out.println("\n\n\n\nFile Not DownLoaded properly\n\n\n\n");
              else if(bytesRead == -1)
              System.out.println("\n\n\n\ndownload \nsuccessful\n\n\n\n");
              else
              System.out.println("\n\n\n\ndownload not successful\n\n\n\n");
    catch(MalformedURLException e)
    System.out.println ( "Exception inside TestServlet is " +e.getMessage());
    catch(IOException e)
    System.out.println ( "IOException inside TestServlet is " +e.getMessage());
         finally
              try
         if (bis != null)
         bis.close();
         if (bos != null)
         {bos.close();}
              catch(Exception e)
                   System.out.println("here ="+e);
    }//doPost ends
    public void setError(Exception e)
         exception=e;
         System.out.println("\n\n\nException occurred is "+e+"\n\n\n");
    public Exception getError()
              return exception;
    }//class ends
    //ends
    regards,
    venakt

  • How to use matlab code in Labview without having MATLAB software. I tried to convert .m files into .dll files. But i could not do. Please help me out..

    Please help me out...
    Solved!
    Go to Solution.

    bombay wrote:
    Yes. It can be done. But Math script can not evaluate all functions in .m files (There are some exceptions).
    And those can perhaps easily be ported to LabVIEW/MathScript?
    It is not sufficient to disregard running your Matlab code in LabVIEW based on a few exceptions without first thoroughly evaluating the impact they have.
    If you want to stick with Matlab in your implementation, then there are other avenues than hypotethizing about the limited portability issues of using MathScript in your project?
    Br,
    /Roger

  • Help figuring out the next step

    Credit card became invalid and so I needed to resign up. I created a different log in and pass word because I couldn't remember the original log in and pass.  I have already paid for a new subscription and removed and redownloaded skype but when I try to use skype it says I need a subscription.  I need help figuring out the next step because it won't let me skype to a mobile in Togo Africia and I have already paid for a new subscription  with my new credit card.  Help!! Donna  

    you can visit the link below for instructions on how to check the status of your current order;
    https://support.skype.com/en/faq/FA288/what-is-the-status-of-my-order
    if you need further assistance, you can also try to contact customer service. Just open the link pasted below to see the instructions on how to get in touch with customer service -
    https://support.skype.com/en/faq/FA1170/how-can-i-contact-skype-customer-service
    IF YOU FOUND OUR POST USEFUL THEN PLEASE GIVE "KUDOS". IF IT HELPED TO FIX YOUR ISSUE PLEASE MARK IT AS A "SOLUTION" TO HELP OTHERS. THANKS!
    ALTERNATIVE SKYPE DOWNLOAD LINKS | HOW TO RECORD SKYPE VIDEO CALLS | HOW TO HANDLE SUSPICIOS CALLS AND MESSAGES

  • Need Help figuring out how to alphabetize itunes artist.

    I need help figuring out one more thing. I have my artist tab in my itunes library and I need to figure out how to get all the artists grouped together instead of being scattered all around.
    This is how it looks now:
    Justin Timberlake
    Linkin Park
    Linkin Park
    Linkin Park
    Justin Bieber
    Daughtry
    Linkin Park
    Linkin Park
    JoJo
    Linkin Park
    This is how I want it to look:
    Daughtry
    Justin Timberlake
    Justin Bieber
    JoJo
    Linkin Park
    Linkin Park
    Linkin Park
    Linkin Park
    Linkin Park
    Please help! Thanks!

    Enable the Sort Artist, Album Artist and Sort Album Artist columns so you can see what is going on. Album Artist normally takes precedence over Artist, with the Sort fields further controlling the order.
    See also Grouping tracks into albums.
    tt2

  • My iPhone 6 ear speaker is not working properly I couldn't able to hear any thing from ear speaker to lissen I had to put on loud speaker or to use handsfree please help me out with this problem if some body have answer?

    My iPhone 6 ear speaker is not working properly I couldn't able to hear any thing from ear speaker to listen I had to put on loud speaker or to use hands free please help me out with this problem if some body have answer?

    Hi Venkata from NZ,
    If you are having an issue with the speaker on your iPhone, I would suggest that you troubleshoot using the steps in this article - 
    If you hear no sound or distorted sound from your iPhone, iPad, or iPod touch speaker - Apple Support
    Thanks for using Apple Support Communities.
    Best,
    Brett L 

  • WHEN I USED TO CONNECT INTERNET FROM MY IPHONE 4S PERSONAL HOTSPOT VIA USB, AN ICON IN THE NETWORK PREFERENCE NAMED "IPHONE" GETS OPENED.... BUT NOW THIS IS NOT HAPPENING AND I AM NOT ABLE TO CONNECCT PERSONAL HOTSPOT VIA USB CABLE. PLEASE HELP ME OUT

    WHEN I USED TO CONNECT INTERNET FROM MY IPHONE 4S PERSONAL HOTSPOT VIA USB, AN ICON IN THE NETWORK PREFERENCE NAMED "IPHONE" APPEARS.... BUT NOW THIS IS NOT HAPPENING AND I AM NOT ABLE TO CONNECT PERSONAL HOTSPOT VIA USB CABLE. PLEASE HELP ME OUT???

    Please don't shout!   Using all uppercase means shouting on the internet.  If your keyboard is stuck please say so, otherwise people will think you are being obnoxious.
    Now the first question is, when you are saying connecting to personal hotspot, have you always been using the iPhone to connect to the internet?   Are you someplace where the only place to connect is available via tethering to the iPhone's celluar network?  Or do you have other options?

  • Please Help me Out APPLE TEAM :(

    Hi,
    I recevied an iPhone 5 as a gift in the month of january from my friend from US. Am in INDIA and am using it in INDIA only. It was perfectly working fine until i upgraded it to ios 7 beta version through a third party. i saw one of my fried doing this and it was working fine for his device. So out of curiosity i too tried d same as a result of which my device just showed me an apple LOGO and after that nothing happend. I got worried and called the customer support people. They adviced me to downgrade it to ios 6.1.4 using the factory resetting option. I did the same as they directed me to do. the phone was successfully restored. Now here comes the problem. The device says that "this iphone has been activated with t****@icloud.com, so please enter that valid id. If i enter my apple id it returs an error stating that this [email protected] cannot be used to activate this phone. but other than this particular id if i give any other id it throws "Invalid Id or Password".  One of the Customer support person told me that this cannot be replaced in INDIA, you need to send it to US to get it replaced. I tried this option as well. The person from US said that this device cannot be replaced as this one is a software issue, and he suggested me to wait till ios7 gets released. I called the customer support people again and they said that this might be due to the software corruption so please do wait till ios 7 gets released and after that resotring the device to factory settings it must work. Now i restored the device using factory restoring to ios 7. My device has been restored to ios 7. But still i am facing the same issue. Really frustrated to the core. can someone help me fix this. Now the customer support person is telling to send the device to US again and have a check with them. jun, july, august and spet. 4 months of no iphone and its just lying as a toy inside my cupboard which is of no use. Frrl like crying.the customer support people in INDIA told me that there is an option of paid replacement in INDIA for the software issues, but he is not sure whthr this option is available in US. So please someone tell me what can be done, am ready for the paid replacement as well.
    Thanks In Advance
    Thinnappan Muthu
    +91 - 9994998464

    This is what you get from them ALL THE TIME. Exactly the same reply:
    Please include the line below in follow-up emails for this request.
    Follow-up: 1299**1
    Dear Kevin,
    Thank you for your email. To find more information on this issue, you may refer to the iTunes Connect Developer Guide: <https://itunesconnect.apple.com/docs/iTunesConnect_DeveloperGuide.pdf>. Should you require additional assistance, please contact iTunes Connect Support by accessing the Contact Us module in iTunes Connect : <http://www.apple.com/itunes/go/itunesconnect/contactus>.
    Best Regards,
    Yana
    iOS Developer Program
    I have told these guys in my every email that the link is not helping please look into it and tell us what is the problem as there are no issues from our end. My IT team has looked over it about 100 times!
    Please help me out already!
    Message was edited by: KevinGupta

  • Importing all my music to iTunes(Please help me out)

    Hello,
    I just purchased a 20gb ipod today and am havintg some trouble importing all of my music. I have complete music library's in "RealPlayer" "Winamp" and "Windows Media Player", it doesnt matter which one of these i import from(whatevers easier i guess). I have tried the add folder option on "Documents and settings", "my documents" and "program files" and it has only imported around 600 of the 3600 songs in my music library.
    Also, i have read pages and pages on this board trying to find an answer. I saw one post which talked about this very issue but it was never resolved. It confronted importing from windows media to iTunes and the answer was to highlight all the music and drag it over to iTunes. This Does Not Work. I highlight all my song, hold down on the mouse and move it over to the iTunes box. However once i leave the Windows media box the arrow from my mouse turns into a circle w/a line acrosse, not allowing me to drag it.
    Please Give me an answer on how I can import all my music to iTunes. If you do I will kiss your feet and applaud your genious.
    Please help me out.
    Josh

    Hi,
    No. I never found a solution to the problem to import my music libary from Realplayer to itunes.
    I have exhausted everything that I know and have read as tips from this and other posts.
    Please come back to post an answer if you find a solution and I will do the same.
    I am going to go ahead and just synch to Realplayer to fill up my ipod. Then I will see if I can switch to itunes for all future synching and hope that I can find a way not to lose the music on my ipod that came from Realplayer. If this doesn't work, I will have to stick with Realplayer as my main music interface and synching for ipod.
    Jeff

  • HT1212 My iPod touch is disabled after too many attempts and I want to enable it without getting it clear so can you please help me out in this....

    My iPod touch is disabled after too many attempts and I want to enable it without getting it clear so can you please help me out in this....

    A data recovery company MAY be able to do it for a price. The Disabled is a very good security feature.
    JWhy not just restore from the last backup you have?
    Place the iOS device in Recovery Mode and then connect to your computer and restore via iTunes. The iPod will be erased.
    iOS: Wrong passcode results in red disabled screen                         
    If recovery mode does not work try DFU mode.                        
    How to put iPod touch / iPhone into DFU mode « Karthik's scribblings        
    For how to restore:
    iTunes: Restoring iOS software
    To restore from backup see:
    iOS: How to back up     
    If you restore from iCloud backup the apps will be automatically downloaded. If you restore from iTunes backup the apps and music have to be in the iTunes library since synced media like apps and music are not included in the backup of the iOS device that iTunes makes.
    You can redownload most iTunes purchases by:
      Downloading past purchases from the App Store, iBookstore, and iTunes Store

  • Can you please help me out the Info Cubes info for Budget Execution?????

    Hi,
       Can you please help me out the Info Cubes info for Budget Execution and Cash Management.
    Thanks in advance,
    Andy

    Take the memory card out of the camer and put it in a card reader.  When it mounts on the desktop select it and try to change the name.  However, that might make it incompatible with the camera.  You'll just have to try and see.
    OT

  • Please help me out guys....

    Hey guys... i'm new to the forums but i need to some help. I have searched and searched on this subject and have tried a lot. My ipod was dead for a long time and i tried to charge it the other day, but got the "connect to itunes" message to restore it. so i did... itunes finally read it but read it as "ipod" and not what it usually is. So i triend to restore it and i got the 1418 error. Did research on that, uninstalled itunes/reinstalled and of course didn't work. uninstalled the usb drive and reinstalled it. nothing seems to work, and the ipod isn't showing up in my computer either. only shows up if i'm lucky in itunes. please help me out there guys... if i can fix it i would be really happy, if its garbage then just tell me. thanks again. btw... i have a 30gb video.... hope this is the right section

    We do need the actual DMP file as it contains the only record of the sequence of events leading up to the crash, what drivers were loaded, and what was responsible.  
    We prefer at least 2 DMP files to spot trends and confirm the cause.
    Please follow our instructions for finding and uploading the files we need to help you fix your computer. They can be found here
    If you have any questions about the procedure please ask
    Wanikiya and Dyami--Team Zigzag

Maybe you are looking for

  • IPhone: Required Disc Can't be Found

    Now it can't sync music because the "required disc can't be found" Is this part of the new itunes version? It always synced ok before. Where can I find the required disc??

  • Is there any way to prevent users from ship confirming on a particular date?

    Hello All, We have a requirement to prevent users from ship confirming on a particular date. This is due to they are performing Annual Physical Inventory. Is it possible to restrict users performing shipping transactions on this particular date? I ha

  • Is it possible to specify exactly coordonates where to display a field

    Hello all, We use BIP 11.1.1.6 (build 5.12.110) In a rtf template, we've got for-each loop. We don't know exactly how many rows to display. After a for-each group, I need to write a sentence at 15cm from bottom My constraint: For other reasons, I can

  • Pictures not showing in edit

    Hello. Iphoto is not showing the selected photo when I double click it or choose to edit it. Photos are uploaded to iphoto okay and show in the strip at the bottom but I get a blank box where the selected photo should go. This just started happening

  • How to Deploy Primavera Adapter on 7.1 WAS

    Hi SDNers We have PI System 7.10. We want to deploy the PrimaveraAdapter.sca file on PI server  . 1) SDM option is not available in 7.1 Systems, so how should i deploy it? 2) Initially i want to undeploy previously deployed Primavera Adapter too, but