Core duo mini crashing occasionally - how to find the cause?

My core duo Mac mini crashes itself every now and then. The screen goes blank for a couple of seconds and the machine reboots with no explanation. This happens about three or four times a month. It has happened in the middle of the night with no active load in the machine, and also while me using it in the front of console. No warnings, no strange behaviour before the crash, just a sudden blank screen and reboot with no extra messages.
I'm looking for the cause but I can't find any hardware related errors from system.log, dmesg or console.log. Is there some other log file that I should consult to see whether the crashes are hardware or software related?
Any debug programs I should run to get more specific info to be collected just before the next crash? Crash dumps and a debugger?
I ran Mac diagnostics and some 3rd party memory test programs with no errors.
1.66GHz Intel Core Duo, 1GB RAM   Mac OS X (10.4.6)  

It sounds like your power cord may not be firmly
inserted. Check to make sure nothing is fraying or
loose about it before starting up the machine.
Checked. Also, the Mac Mini has been in two locations with the same symptoms; all the cords have been replugged and rechecked.
In addition, since it has happened several times,
have you checked to make sure the directory is fine
with Disk Utility's Verify Disk?
Yes, no problems there. Luckily the Disk Utility has not found any problems after the crashes.

Similar Messages

  • How to find the cause ofan error at runtime in forms (10g)

    hi
    can u please tell me how to find the cause ofan error at runtime.
    in forms 6i, the shortcut key is shift+f1
    i needthe shotcut key in 10g forms.
    thanx

    or just look in you menu help, -- last error or you can find the list of shortcut keys there ...
    \Erwin

  • Could you please tell me how to find the cause that made I/O high

    Could you please tell me how to find the cause that made I/O high
    please let me know

    hi ,
    Without any backgound inforamation it is very difficilate to help u out .
    Please Provide the statpack/Awr report durring that priode. oherwise top 5 wait event. so we can give some suggestion on this.

  • CPU high utilization on OAS Server, how to find the cause of problem ?

    Hi all,
    We are running ADFBC application on OAS 10.1.3.3 on RH Linux ES 4. The database is Oracle 10g on RH Linux also.
    here is the setting in opmn.xml :
    <data id="java-bin" value="/opt/oracle/OraHome_oc4j/jdk64/jdk1.5.0_17/bin/java"/>
    <data id="java-options" value="-server -XX:CompileCommand=exclude,oracle/sql/NUMBER,toBytes
    -ms3072M -mx3072M -XX:+AggressiveHeap -XX:MaxPermSize=1024M -XX:AppendRatio=3 -Djava.security.policy=$ORACLE_HOME/j2ee/ittas/config/java2.policy
    -Djava.awt.headless=true -Dhttp.webdir.enable=false"/>
    Most of time I see (with linux "top" command) that CPU utilizationis 99.9 %
    And sometimes at that time user gets very slow that we have to restart the OC4J to the it normal again.
    How do I know what is the cause of that problem ?
    Thank you very much,
    xtanto

    Maybe this could help.
    Regars
    From note 467624.1
    Applies to:
    Oracle Containers for J2EE - Version: 10.1.2.0.0 to 11.0.0.0
    Linux x86
    Purpose
    To find out the java thread that is taking high CPU usage in OC4J
    This article is specific to Linux due to its threading model and makes specific use of parameters for the ps command that only exist in Linux but not in other operating systems. The general idea from this note might, however, be used on other platforms also, but then requires deeper knowledge of that operating system.
    Scope and Application
    If you are using the JDK 1.4 then you need to set the LD_ASSUME_KERNEL value to 2.4.1 to get the unique nid value.
    In JDK 1.5 setting the LD_ASSUME_KERNEL to 2.4.1 is not required.
    Add this variable to ORACLE_HOME\opmn\conf\opmn.xml file as follows:
    <ias-instance id="j2ee3.host.domain">
    <environment>
    <variable id="TMP" value="/tmp"/>
    <variable id="LD_ASSUME_KERNEL" value="2.4.1"/>
    </environment>
    Find Out The Thread That Is Taking High CPU Usage In OC4J
    Step 1: Find out the Process ID of the OC4J container
    You can find out the pid from the output of the following command:
    ORACLE_HOME\opmn\bin> opmnctl status
    For example
    O_H\opmn\bin> opmnctl status
    Processes in Instance: j2ee3.host.domain
    ------------------------------------------------+---------
    ias-component | process-type | pid | status
    ------------------------------------------------+---------
    DSA | DSA | N/A | Down
    LogLoader | logloaderd | N/A | Down
    dcm-daemon | dcm-daemon | N/A | Down
    OC4J | home | 28370 | Alive
    WebCache | WebCache | 28380 | Alive
    WebCache | WebCacheAdmin | 28371 | Alive
    HTTP_Server | HTTP_Server | 28373 | Alive
    In this note, we will try to trace the java thread that is using high CPU in OC4J 'home'. The pid of 'home' container is 28370 according to the example.
    Step 2: Find the actual process ID
    Use the following command to find out the actual process ID:
    ps -ef | grep 28370
    rac 28370 28354 0 11:23 ? 00:00:01 /home/rac/j2ee2/jdk/bin/java
    rac 28377 28370 0 11:23 ? 00:00:00 /home/rac/j2ee2/jdk/bin/java
    In this case the actual java process is 28377.
    Step 3: Find out the thread which takes lot of CPU time
    Run the command
    watch "ps -eLo pid,ppid,tid,pcpu,comm | grep 28377"
    The thread ID of the thread that consumes high CPU time will be shown in the first column of the output
    Step 4: Take thread dump to trace the java thread with the thread ID.
    Take the thread dump using the following command:
    kill -3 28370 (process-id-from-opmn-status-output)
    The thread dump will be written to the log file at ORACLE_HOME\opmn\logs\OC4J~<OC4J_Container_Name>~default_island~1.
    Step 5: Trace the java thread.
    Convert the Thread ID you got from the command,
    ps -eLo pid,ppid,tid,pcpu,comm | grep 28377
    to hexadecimal and then search for this value in the thread dump.
    For example, if you get the thread id '5828' in the first column of this command, convert '5828' to hexadecimal:
    5828 (dec) corresponds to 0x16c4 (hex)
    Now search for nid=0x16c4 in the thread dump, and you may find something like:
    "RMIServer [0.0.0.0:12401] count:1" prio=1 tid=0xa7c1ee80 nid=0x16c4 runnable [a777e000..a777e22c]
    at java.net.PlainSocketImpl.socketAccept(Native Method)
    at java.net.PlainSocketImpl.accept(PlainSocketImpl.java:353)
    - locked <0xac0d5b50> (a java.net.PlainSocketImpl)
    at java.net.ServerSocket.implAccept(ServerSocket.java:448)
    at java.net.ServerSocket.accept(ServerSocket.java:419)
    at com.evermind.server.rmi.RMIServer.run(RMIServer.java:464)
    at com.evermind.util.ReleasableResourcePooledExecutor$MyWorker.run(ReleasableResourcePooledExecutor.java:186)
    at java.lang.Thread.run(Thread.java:534)

  • ADF Apps, CPU high utilization on OAS, how to find the cause of problem ?

    Hi all,
    We are running ADFBC application on OAS 10.1.3.3 on RH Linux ES 4. The database is Oracle 10g on RH Linux also.
    Memory is 16 GB. 1 JVM.
    Most of time I see (with linux "top" command) that CPU utilization on OAS is 99.9 %
    And at the peak load (150 -200 users) user gets very slow that we have to restart the OC4J to the it normal again.
    here is the setting in opmn.xml :
    <data id="java-bin" value="/opt/oracle/OraHome_oc4j/jdk64/jdk1.5.0_17/bin/java"/>
    <data id="java-options" value="-server -XX:CompileCommand=exclude,oracle/sql/NUMBER,toBytes
    -ms3072M -mx3072M -XX:+AggressiveHeap -XX:MaxPermSize=1024M -XX:AppendRatio=3 -Djava.security.policy=$ORACLE_HOME/j2ee/ittas/config/java2.policy
    -Djava.awt.headless=true -Dhttp.webdir.enable=false"/>
    Heap Usage on EM, is between 2250 MB - 2850 MB.
    How do I know what is the cause of that problem ? How can AD4J help to find the source of the problem ?
    Thank you very much,
    xtanto

    xtanto,
    Hi again...
    Just a quick thought (I know it doesn't answer your question directly, but...) have you tried multiple JVM's? It's really quite easy to set up in OAS, and may possibly help you out. How many CPU's on the box?
    We have an app (it gets such high concurrent usage during one period of the year), and we're running it on 3 JVM's on a single Linux box with either 2 or 4 (cannot recall) CPU's
    John

  • How to find the cause for javaw.exe has encountered a problem and needs to close

    Hi,
    This error msg I get after running my application for a while. My application uses not only java classes but also dll's (JNI). there is no excpetion thrown and the only information I get is a txt file.
    This text file contains these informations:
    [code]
    <?xml version="1.0" encoding="UTF-16"?>
    <DATABASE>
    <EXE NAME="java.exe" FILTER="GRABMI_FILTER_PRIVACY">
        <MATCHING_FILE NAME="awt.dll" SIZE="1174952" CHECKSUM="0xB92DDD61" BIN_FILE_VERSION="7.0.400.43" BIN_PRODUCT_VERSION="7.0.400.43" PRODUCT_VERSION="7.0.400.43" FILE_DESCRIPTION="Java(TM) Platform SE binary" COMPANY_NAME="Oracle Corporation" PRODUCT_NAME="Java(TM) Platform SE 7 U40" FILE_VERSION="7.0.400.43" ORIGINAL_FILENAME="awt.dll" INTERNAL_NAME="awt" LEGAL_COPYRIGHT="Copyright © 2013" VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x2" MODULE_TYPE="WIN32" PE_CHECKSUM="0x122FA8" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="7.0.400.43" UPTO_BIN_PRODUCT_VERSION="7.0.400.43" LINK_DATE="08/27/2013 06:26:04" UPTO_LINK_DATE="08/27/2013 06:26:04" VER_LANGUAGE="Englisch (USA) [0x409]" />
        <MATCHING_FILE NAME="axbridge.dll" SIZE="153000" CHECKSUM="0x1A5CD2E" BIN_FILE_VERSION="10.40.2.43" BIN_PRODUCT_VERSION="7.0.400.43" PRODUCT_VERSION="7.0.400.43" FILE_DESCRIPTION="ActiveX Bridge f’r JavaBeans(TM)" COMPANY_NAME="Oracle Corporation" PRODUCT_NAME="Java(TM) Platform SE 7 U40" FILE_VERSION="7.0.400.43" ORIGINAL_FILENAME="axbridge.dll" INTERNAL_NAME="ActiveX Bridge f’r JavaBeans(TM)" LEGAL_COPYRIGHT="Copyright © 2013" VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x40004" VERFILETYPE="0x1" MODULE_TYPE="WIN32" PE_CHECKSUM="0x297DB" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="10.40.2.43" UPTO_BIN_PRODUCT_VERSION="7.0.400.43" LINK_DATE="08/27/2013 06:26:04" UPTO_LINK_DATE="08/27/2013 06:26:04" VER_LANGUAGE="Englisch (USA) [0x409]" />
    many more lines....
    [/code]
    Is there a way to read or analyze this text file? How ?
    Please advice
    Thanks

    Hi,
    This error msg I get after running my application for a while. My application uses not only java classes but also dll's (JNI). there is no excpetion thrown and the only information I get is a txt file.
    This text file contains these informations:
    [code]
    <?xml version="1.0" encoding="UTF-16"?>
    <DATABASE>
    <EXE NAME="java.exe" FILTER="GRABMI_FILTER_PRIVACY">
        <MATCHING_FILE NAME="awt.dll" SIZE="1174952" CHECKSUM="0xB92DDD61" BIN_FILE_VERSION="7.0.400.43" BIN_PRODUCT_VERSION="7.0.400.43" PRODUCT_VERSION="7.0.400.43" FILE_DESCRIPTION="Java(TM) Platform SE binary" COMPANY_NAME="Oracle Corporation" PRODUCT_NAME="Java(TM) Platform SE 7 U40" FILE_VERSION="7.0.400.43" ORIGINAL_FILENAME="awt.dll" INTERNAL_NAME="awt" LEGAL_COPYRIGHT="Copyright © 2013" VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x4" VERFILETYPE="0x2" MODULE_TYPE="WIN32" PE_CHECKSUM="0x122FA8" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="7.0.400.43" UPTO_BIN_PRODUCT_VERSION="7.0.400.43" LINK_DATE="08/27/2013 06:26:04" UPTO_LINK_DATE="08/27/2013 06:26:04" VER_LANGUAGE="Englisch (USA) [0x409]" />
        <MATCHING_FILE NAME="axbridge.dll" SIZE="153000" CHECKSUM="0x1A5CD2E" BIN_FILE_VERSION="10.40.2.43" BIN_PRODUCT_VERSION="7.0.400.43" PRODUCT_VERSION="7.0.400.43" FILE_DESCRIPTION="ActiveX Bridge f’r JavaBeans(TM)" COMPANY_NAME="Oracle Corporation" PRODUCT_NAME="Java(TM) Platform SE 7 U40" FILE_VERSION="7.0.400.43" ORIGINAL_FILENAME="axbridge.dll" INTERNAL_NAME="ActiveX Bridge f’r JavaBeans(TM)" LEGAL_COPYRIGHT="Copyright © 2013" VERFILEDATEHI="0x0" VERFILEDATELO="0x0" VERFILEOS="0x40004" VERFILETYPE="0x1" MODULE_TYPE="WIN32" PE_CHECKSUM="0x297DB" LINKER_VERSION="0x0" UPTO_BIN_FILE_VERSION="10.40.2.43" UPTO_BIN_PRODUCT_VERSION="7.0.400.43" LINK_DATE="08/27/2013 06:26:04" UPTO_LINK_DATE="08/27/2013 06:26:04" VER_LANGUAGE="Englisch (USA) [0x409]" />
    many more lines....
    [/code]
    Is there a way to read or analyze this text file? How ?
    Please advice
    Thanks

  • How to find the Kernel panic's cause?

    I have a HP G7 server, OS is RHEL 6.0, and it often kernel panic.
    Who can tell me how to find the cause?
    I even try use kdump service to collect the cause, but you know, the kdump(kexec) have a bug, so collect fail.
    Last edited by sheng (2011-10-26 08:01:14)

    Maybe have a look at http://rhelforum.com/forum.php or http://www.fedoraforum.org/ ?

  • Intel VT support on Core Duo Mini?

    I intend to purchase a Core Duo mini a little while later. But I want to make sure if the Core Duo mini has the Inter VT support enabled or not. I have read the forum on Parallels (the maker of Parallels Workstation) and it seems that at least some Core Duo minis have this support disabled when manufactured.
    I am interested in running Parallels Workstation or the possible VMware for Mac or similar products that will take advantage of Intel's VT technology on the Core Duo.

    According to this website
    http://appleintelfaq.com/#10.1
    some earlier Mac mini models did not have VT enabled.
    Though it now appears that the do now.
    http://forum.parallels.com/post718-22.html
    I have also read that the Mac mini firmware update enables VT support.
    When I get a chance I will check out my own Mac mini and let you know.
    iFelix

  • Core Duo Mini Freezing

    I was in the middle of installing Adobe CS2 on my Core Duo mini, and it froze. I restarted the computer, and it gave me about 2 seconds of action and then it froze again.
    I've successfully ejected the disk, but it still freezes everytime I start the computer. I've restarted the computer about ten times, all with the same reslut. The couple seconds of working, then the freezing.

    Try booting by doing a Safe Mode Boot…
    http://docs.info.apple.com/article.html?artnum=107393
    This should hopefuly allow your Mac mini to boot. What you then need to do is remove andthing from Adobe that is in the…
    /Library/StartupItems
    … folder. This should hopefuly stop the freezing under a normal boot. Please be aware that you need to update to Quicktime 7.1.1 to prevent any freezing issues with the Adobe CS2 products, especially Version Cue, which I strongly suggest you do not even install.

  • Core Duo Mini

    Hi there.
    I'm finally going to take the plunge, bin my PC and get a Mac Mini.
    I'd like to get one with the Core DUo, but I already have a LaCie external dual Layer DVD burner, so I don't really need the Superdrive that comes with the Core Duo Mini.
    Is it possible to get a core Duo with the Combo drive?
    Cheers
    Cerdo

    Hi!
    It seems not possible, also if you try to order it at the AS as BTO is not possible to "downgrade" the optical drive (while is it possible to upgrade the one in the Core Solo model).
    I was in your same situation and I sold my LaCie d2 16x DL, the superdrive in the mini is not so fast but is quiet and works good; moreover, having it all in one small case makes your life simpler and better looking...
    Bye!

  • How to find the size of an arrayList through Expression Builder.

    Hai OTN,
    How to find the size of an arrayList through Expression. I have a managed bean in View Scope.I am using Jdeveloper 11.1.1.2 with ADF Faces components.
    Managed Bean :
    ArrayList<IllnessEmployeesObj> employeeGridList =
    new ArrayList<IllnessEmployeesObj>();
    JSPX :
    Value="#{viewScope.PandIVH.employeeGridList.size}"
    Error : java.lang.NumberFormatException: For input string: "size"

    Hi Dinil,
    I have provided you with a sample that would show you the how you can get the size of an arraylist
    the sample has a page untitled1 and a bean named test.
    I have run in on jdev 11.1.2 and it is ok, it will be ok on 11.1.3
    after running the sample you will see the 2.
    please remember that you must add the JSTL taglib on the viewcontroller.
    just right click on viewcontroller, go to tag lib select the jstl.
    page
    <!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN"
    "http://www.w3.org/TR/html4/loose.dtd">
    <%@ page contentType="text/html;charset=UTF-8"%>
    <%@ taglib uri="http://java.sun.com/jsf/core" prefix="f"%>
    <%@ taglib uri="http://java.sun.com/jsf/html" prefix="h"%>
    <%@ taglib uri="http://java.sun.com/jsp/jstl/functions" prefix="fn"%>
    <f:view>
    <html>
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=UTF-8"/>
    <title>untitled1</title>
    </head>
    <body>
    <h:form>
    <h:outputText value="#{fn:length(test.a)}"/>
    </h:form>
    </body>
    </html>
    </f:view>
    bean
    import java.util.ArrayList;
    public class Test {
    public Test() {
    a= new ArrayList();
    Object o=new Object();
    a.add(o);
    a.add(o);
    ArrayList a;
    public void setA(ArrayList a) {
    this.a = a;
    public ArrayList getA() {
    return a;
    I hope this sample came handy.
    regards,

  • How to find the structural difference between two tables

    Hi all,
    How to find the structural difference between two tables .
    Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - Production
    PL/SQL Release 11.1.0.7.0 - Production
    CORE 11.1.0.7.0 Production
    TNS for 32-bit Windows: Version 11.1.0.7.0 - Production
    NLSRTL Version 11.1.0.7.0 - Production
    Thanks,
    P Prakash

    you could try something similar to this, for each table pair that you want to compare:
    SELECT 'TABLE_A has these columns that are not in TABLE_B', DIFF.*
      FROM (
            SELECT  COLUMN_NAME, DATA_TYPE, DATA_LENGTH
              FROM all_tab_columns
             WHERE table_name = 'TABLE_A'
             MINUS
            SELECT COLUMN_NAME, DATA_TYPE, DATA_LENGTH
              FROM all_tab_columns
             WHERE table_name = 'TABLE_B'
          ) DIFF
    UNION
    SELECT 'TABLE_B has these columns that are not in TABLE_A', DIFF.*
      FROM (
            SELECT COLUMN_NAME, DATA_TYPE, DATA_LENGTH
              FROM all_tab_columns
             WHERE table_name = 'TABLE_B'
             MINUS
            SELECT COLUMN_NAME, DATA_TYPE, DATA_LENGTH
              FROM all_tab_columns
             WHERE table_name = 'TABLE_A'
          ) DIFF;that's assuming, column_name, data_type and data_length are all you want to compare on.

  • How to find the job and job status from RSPCM

    hi all,
    suppose we got an error and in rspcm the process was failed.i want to know the status of that particular job.and if any i want to stop that job in SM37.
    plz tell me how to find the job and job ststus from RSPCM...and how to stop that job in SM37
    thanks,
    jack

    Hi Jack,
    RSPCM: T.Code
    This transaction is used to monitor the process chains
    First:
    here you need to add the process chains into the sheet
    Second:
    Then you can monitor the process chains in this transaction code
    Like you can see the :  status ,proces chain ,Last run date ,Last run time ,Log ID
    Status : Green when sucessful,Yellow when running & Red when you get errors
    Now when yoy click on any of the process chain in RSPCM you will go to the LOG VIEW as you see in RSPC transaction
    SM37:T.code
    This transaction is used for Job Overview
    you can see many options in SM37
    like Released,active,cancelled,finished,etc
    Just select the ACTIVE  jobs and also pass STAR in JOB ID & USER ID
    here you can only see the active jobs
    Goto Step in toolbar
    select the program displayed
    then chose option GOTO - Variant in main menu bar
    in the variant you can see the job belong to which Process chain
    if you want to cancel this job come back to SM37 Display screen
    Select the Job and select the JOB DETAILS tab in Tool Bar
    Collect the WIP ( Work Permit ID)
    Go to SM50 T.code and find the WIP
    in Main Menu Bar you find the option Cancel with Core choose this it will cancel the Job
    Regards
    Hari

  • Urgent    How to find the password of dblink in oracle

    How to find the password of dblink in oracle
    Iam currently working
    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - 64bi
    PL/SQL Release 10.2.0.4.0 - Production
    I don't have dba rights
    please help me

    John Spencer wrote:
    You are correct, it is not populated in 11g, but is in 10G.
    SQL> select * from v$version;
    BANNER
    Oracle Database 10g Enterprise Edition Release 10.2.0.4.0 - Prod
    PL/SQL Release 10.2.0.4.0 - Production
    CORE    10.2.0.4.0      Production
    TNS for 32-bit Windows: Version 10.2.0.4.0 - Production
    NLSRTL Version 10.2.0.4.0 - Production
    SQL> create database link test_link connect to scott identified by tiger using 'sol10';
    Database link created.
    SQL> select db_link,password from user_db_links where db_link like 'TEST%';
    DB_LINK                                       PASSWORD
    TEST_LINK.REGRESS.RDBMS.DEV.US.ORACLE.COM
    SQL> select name,password from sys.link$ where name like 'TEST%';
    NAME                                          PASSWORD
    TEST_LINK.REGRESS.RDBMS.DEV.US.ORACLE.COM
    SQL> select name,passwordx from sys.link$ where name like 'TEST%';
    NAME                                          PASSWORDX
    TEST_LINK.REGRESS.RDBMS.DEV.US.ORACLE.COM     05C9AF8C3A16DBE5F47715B67FD0652BE4
    SQL> SY.

  • How to find the number of data items in a file written with ArryToFile function?

    I have written an array of number in 2 column groups to a file using the LabWindows/CVI function ArrayToFile...Now if I want to read the file with FileToArray Function then how do I know the number of items in the file. during the write time I know how many array items to write. but suppose I want the file to read at some later time then How to find the number of items in the file,So that I can read the exact number and present it. Thanks to all
    If you are young work to Learn, not to earn.
    Solved!
    Go to Solution.

    What about:
    OpenFile ( your file );
    cnt = 0;
    while ((br = ReadLine ( ... )) != -2) {
    if (br == -1) {
    // I/O error: handle it!
    break;
    cnt++;
    CloseFile ( ... );
    There are some ways to improve performance of this code, but if you are not reading thousands of lines it's quite fast.
    After this part you can dimension the array to pass to FileToArray... unless you want to read it yourself since you already have it open!
    Proud to use LW/CVI from 3.1 on.
    My contributions to the Developer Zone Community
    If I have helped you, why not giving me a kudos?

Maybe you are looking for

  • Background colors became different after deployment

    I wrote a Swing app which contains a bunch of JPanels. I set the background color of them to darkGray. Everything worked fine while I was working on it and running it in JDeveloper. But after I deployed it using a jar, the colors of the JPanels turne

  • Jsp to Servlet

    hi all, here I am having a problem pls help me..... I develped a form page with jsp's dynamic data. Selection of the data, user has to submit the data back to servlet, how to do this. I tried with <jsp:forward page="project/postdata"> but this is wor

  • 2 questions regarding output to offset printing

    I am using CS4 to work on pictures I have taken and will be used for postcards. The sizes can be 105*148 or 120*170 mm. some cards will have more then one picture in which case there may be samller inserts, maybe as small as 25*25mm In relation to th

  • Creating fields in BI server

    hi all  expert can anybody give me answer how to create fields in BI server . I m new in BI. Avadhesh

  • Sending DME file to Bank  ways ???

    Hi  Gurus Please let me know the different ways of sending the DME file to the bank. Different ways and its set ups.. clearly explain somebody. How to set up the file path .. so that DME file will be sent automatically exported. Bank and SAP how do t