SNMP for custom M-Beans.

Hi,
About a year ago I asked this question both in the newsgroup and BEA
support and I was told that the next Weblogic server release will allow
SNMP exposure of custom M-Beans.
Is this still in the works or has it been abandoned completely?
Thanks,
Dejan

Hi Brian J. Mitchell,
AdventNet ManageEngine JMX Studio product provides you to enable SNMP support
for the Custom Mbeans and the deployment of generated SNMP agent in WebLogic
server. This also helps you to monitor or generate traps for custom MBeans.
For more informations, refer the following URL:
http://manageengine.com/products/jmx_studio/index.html
http://manageengine.com/products/jmx_studio/help/app_mgmt/managing_mbeans.html
Thanks,
Siddig.S
"Deyan D. Bektchiev" <[email protected]> wrote:
Thanks Brian.
I know that the documentation still says that it is not possible and
I
had an open Enhancement request with BEA more than a year ago to have
this functionality included.
At that time (it was before 8.1) I was told that their next version will
have the ability to manage custom M-Beans via SNMP but even today we
still don't have it.
That is why I wanted someone from BEA to comment on that... to no
success so I'll have to reopen my support case and ask officially.
Regards,
Dejan
Brian Mitchell wrote:
"Deyan D. Bektchiev" <[email protected]> wrote:
Is this still in the works or has it been abandoned completely?
Deyan,
As of the current 8.1 documentation, it states...
* "While you can create your own MBeans (custom MBeans) to manage the
applications or services that you deploy onto WebLogic Server, the
WebLogic SNMP agent does not recognize these custom MBeans as SNMP
managed resources. You cannot configure the WebLogic SNMP agent to
monitor or generate traps for custom MBeans."
* = [SOURCE: http://edocs.bea.com/wls/docs81/snmpman/snmpagent.html]
I haven't heard any news about this effort (BEA folks please correct
me if I'm wrong!). Perhaps opening a BEA eSupport Ticket and request
this as an enhancement (change request).
Hope this helps...
Brian J. Mitchell
Systems Administrator, TRX
email: [email protected]
office: +1 404 327 7238
mobile: +1 678 283 6530

Similar Messages

  • EJB3.0 simple entity bean for customer example...

    Can anyone provide a simple step by step instruction on how to start my application of a customer entity bean. like i could add / delete an entry to mySQL DB, i will use Sun as my appserver. im a newbie to ejb. i want to start with that CUSTOMER bean can anybody help pls ? thx! tata-yang

    hello batzee i already have my appserver running
    and found out that he place my EJBSample under Enterprise Application.
    and with these modules inside:
    -EJBsampleSun-ejb.jar      EJBModule      
    -EJBsampleSun-war.war WebModule
    my appserver has:
    EJBsampleSun      true      ${com.sun.aas.instanceRoot}/applications/j2ee-apps/EJBsampleSun      Redeploy
    inside my application:
    1. ejbsamplesun-ejb/src/conf/persistence.xml
    <?xml version="1.0" encoding="UTF-8"?>
    <persistence version="1.0" xmlns="http://java.sun.com/xml/ns/persistence" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xsi:schemaLocation="http://java.sun.com/xml/ns/persistence http://java.sun.com/xml/ns/persistence/persistence_1_0.xsd">
    <persistence-unit name="EJBsampleSun-ejbPU" transaction-type="JTA">
    <provider>oracle.toplink.essentials.ejb.cmp3.EntityManagerFactoryProvider</provider>
    <jta-data-source>jdbc/mySample_dbo</jta-data-source> //question: i have db in mysql named mySample_dbo with customer as my table did i declare it right?
    <properties>
    </properties>
    </persistence-unit>
    </persistence>
    ================
    2. ejbsamplesun-ejb/src/java/ph/icomm/customer.class
    package myejb.ph;
    import java.io.Serializable;
    import javax.persistence.Entity;
    import javax.persistence.GeneratedValue;
    import javax.persistence.GenerationType;
    import javax.persistence.*;
    @Entity
    @Table(name="Customer")
    public class Customer implements Serializable {
    private int id;
    private String name;
    private String email;
    private String phone;
    @Id
    @Column(name="ID")
    public int getId() {
    return id;
    public void setId(int pk) {
    id = pk;
    @Column(name="Name")
    public String getName() {
    return name;
    public void setName(String n) {
    name = n;
    @Column(name="Email")
    public String getEmail() {
    return email;
    public void setEmail(String e) {
    email = e;
    @Column(name="Phone")
    public String getPhone() {
    return phone;
    public void setPhone(String p) {
    name = p;
    ================
    3. ejbsamplesun-war/src/java/web/postcustomer.class
    // and here is my servlet
    //simply trying to fetch the data in my customer table with ID = 11
    package web;
    import java.io.*;
    import java.net.*;
    import javax.servlet.*;
    import javax.servlet.http.*;
    import ph.icomm.Customer;
    import web.PostCustomer;
    public class PostCustomer extends HttpServlet {
    /** Processes requests for both HTTP <code>GET</code> and <code>POST</code> methods.
    * @param request servlet request
    * @param response servlet response
    protected void processRequest(HttpServletRequest request, HttpServletResponse response)
    throws ServletException, IOException {
    response.setContentType("text/html;charset=UTF-8");
    PrintWriter out = response.getWriter();
    /* TODO output your page here*/
    out.println("<html>");
    out.println("<head>");
    out.println("<title>Servlet PostCustomer</title>");
    out.println("</head>");
    out.println("<body>");
    try {
    Customer pCustomer = new Customer();
    pCustomer.setId(new Integer("11"));
    out.println("Customer Name is"+pCustomer.getName());
    out.println("<br>");
    out.println("Customer Id is:"+pCustomer.getId());
    out.println("<br>");
    out.println("Customer Email is:"+pCustomer.getEmail());
    out.println("<br>");
    out.println("Customer Phone is:"+pCustomer.getPhone());
    } catch(Exception e) {
    System.out.println("I am inside Exception");
    out.println("<h1>Servlet PostCustomer at " + request.getContextPath() + "</h1>");
    out.println("</body>");
    out.println("</html>");
    out.close();
    // <editor-fold defaultstate="collapsed" desc="HttpServlet methods. Click on the + sign on the left to edit the code.">
    /** Handles the HTTP <code>GET</code> method.
    * @param request servlet request
    * @param response servlet response
    protected void doGet(HttpServletRequest request, HttpServletResponse response)
    throws ServletException, IOException {
    processRequest(request, response);
    /** Handles the HTTP <code>POST</code> method.
    * @param request servlet request
    * @param response servlet response
    protected void doPost(HttpServletRequest request, HttpServletResponse response)
    throws ServletException, IOException {
    processRequest(request, response);
    /** Returns a short description of the servlet.
    public String getServletInfo() {
    return "Short description";
    // </editor-fold>
    Now, is this complete ejb3.0 already? coz if ill try to RUN this project it give this error:
    Deploying application in domain failed; Deployment Error -- null
    C:\Inetpub\wwwroot\myfolder\_Project\EJBsampleSun\EJBsampleSun-ejb\nbproject\build-impl.xml:312: Deployment error:
    The module has not been deployed.
    See the server log for details.
    BUILD FAILED (total time: 1 second)
    This is quite a long post but have to make sure ill get your kind help and assistance. Thanks!
    tata-yang

  • Best practice for customizing EJB property after deployment

    Hi Gurus,
      What is the best practice for customizing EJB property after deployment in NW7.1? I have a stateless session bean and it needs to get some environment information before acting. While the information can only be known at runtime. What should I do to achieve it? I thought I can bind the property with a JNDI context but I did not find out where to declare and change the context value. Please advise. Thanks.
    B.R.

    Hi.
    I have a similar problem. But I still can not edit the properties of the ejb-jar.xml.
    I tried to stop the web service, but the properties still remain unmodifiable.
    Could you advise me how to change them?
    We have installed SAP Server 7.0.2

  • Trying to insert a custom visual bean gives me an error

    I've created a custom bean based on javax.swing.jpanel and it compiles fine. I've added it to the component panel as a visual bean but when I try to place it on a frame it throws me an error, which can be found below. I've definately had this visual bean working on another computer using forte but it may not be the same version of forte or java as on this machine. This machine has forte 3.0 and java 1.3.1. Other custom visual beans work fine. Any help greatly appreciated.
    Mike
    Fri Oct 05 12:37:41 BST 2001: java.lang.NullPointerException: null
    java.lang.NullPointerException
    at org.netbeans.modules.form.RADVisualContainer.initLayoutSupport(RADVisualContainer.java:48)
    at org.netbeans.modules.form.HandleLayer.addVisualBean(HandleLayer.java:436)
    at org.netbeans.modules.form.HandleLayer.access$1800(HandleLayer.java:43)
    at org.netbeans.modules.form.HandleLayer$HandleLayerMouseListener.mousePressed(HandleLayer.java:904)
    at java.awt.Component.processMouseEvent(Component.java:3712)
    at java.awt.Component.processEvent(Component.java:3544)
    at java.awt.Container.processEvent(Container.java:1164)
    at java.awt.Component.dispatchEventImpl(Component.java:2593)
    at java.awt.Container.dispatchEventImpl(Container.java:1213)
    at java.awt.Component.dispatchEvent(Component.java:2497)
    at java.awt.LightweightDispatcher.retargetMouseEvent(Container.java:2451)
    at java.awt.LightweightDispatcher.processMouseEvent(Container.java:2210)
    at java.awt.LightweightDispatcher.dispatchEvent(Container.java:2125)
    at java.awt.Container.dispatchEventImpl(Container.java:1200)
    at java.awt.Window.dispatchEventImpl(Window.java:926)
    at java.awt.Component.dispatchEvent(Component.java:2497)
    [catch] at java.awt.EventQueue.dispatchEvent(EventQueue.java:339)
    at java.awt.EventDispatchThread.pumpOneEventForHierarchy(EventDispatchThread.java:131)
    at java.awt.EventDispatchThread.pumpEventsForHierarchy(EventDispatchThread.java:98)
    at java.awt.EventDispatchThread.pumpEvents(EventDispatchThread.java:93)
    at java.awt.EventDispatchThread.run(EventDispatchThread.java:85)

    Hi, I have exact the same problem. Have you got any answer for this problem yet? Please forward it to me if you have one. Many thanks.

  • How to define document protocol for Custom/Generic message of ASCII types

    We need define for B2B document protocol for Custom over Generic message type to receive/process ASCII message (either fixed or indefinite length) from Trading Partner, can anybody tell us if you have done it with detailed example and instruction:
    1) In creating protocol revision/document definitions, do I need an Edifecs .ecs file? if yes, how to create the format for indefinite string? if not what I should put in document
    definition for 'IDoc ecs File' ? (we actually we may have two different types
    of ASCII message, not sure how to differentiate them)
    2) Does Identifying expression need message/document translated into XML first ? since it's for
    'Identifying XPath Expression' which implied existence of XSD
    3) Please provide detailed example you accomplished this in B2B
    Thanks in advance for any help!

    Yes its something on the similar lines but looks like this comparator needs to be at some specific place.
    I tried to implement comparator interface in the custom domain data type class but it still throws the same exception.
    Looks like RowComparator needs to be defined somewhere. any idea where?
    The complete exception is below:
    Caused by: oracle.jbo.JboException: Cannot find compare routines for test.MyString
         at oracle.jbo.RowComparator.compareValues(RowComparator.java:108)
         at oracle.jbo.RowComparator.compareRows(RowComparator.java:146)
         at oracle.jbo.RowComparator.compare(RowComparator.java:158)
         at java.util.Arrays.mergeSort(Arrays.java:1270)
         at java.util.Arrays.mergeSort(Arrays.java:1281)
         at java.util.Arrays.mergeSort(Arrays.java:1281)
         at java.util.Arrays.sort(Arrays.java:1210)
         at oracle.jbo.server.ViewObjectImpl.sortRows(ViewObjectImpl.java:6752)
         at oracle.jbo.server.QueryCollection.sortRows(QueryCollection.java:995)
         at oracle.jbo.server.ViewRowSetImpl.execute(ViewRowSetImpl.java:1177)
         at oracle.jbo.server.ViewRowSetImpl.executeQueryForMasters(ViewRowSetImpl.java:1331)
         at oracle.jbo.server.ViewRowSetImpl.executeQueryForMode(ViewRowSetImpl.java:1249)
         at oracle.jbo.server.ViewRowSetImpl.executeQuery(ViewRowSetImpl.java:1243)
         at oracle.jbo.server.ViewObjectImpl.executeQuery(ViewObjectImpl.java:6715)
         at org.calwin.view.bean.Table.tableSorting(Table.java:46)
         at sun.reflect.NativeMethodAccessorImpl.invoke0(Native Method)
         at sun.reflect.NativeMethodAccessorImpl.invoke(NativeMethodAccessorImpl.java:39)
         at sun.reflect.DelegatingMethodAccessorImpl.invoke(DelegatingMethodAccessorImpl.java:25)
         at java.lang.reflect.Method.invoke(Method.java:597)

  • Table for Customer and vendor open balance on a key date

    Dear All,
    Can anyone please let me know Table for Customer and vendor open balance on a key date. We are developing one customized report.
    I have checked with the below table :
    Customer-KNC1, KNC3,BSID, BSAD
    Vendor-LFC1, LFC3, BSIK, BSAK.
    But these are not working properly for all customers and vedors. Also, in open items, there are items with clearing documents.
    Plesae let me know, how to go for it.
    Please suggest.

    Hi
    Use BSID and BSIK for open items
    And pass company code, year and from date and to date range in Posting date selection option
    Reg
    Vishnu

  • To Capture Excise Duties for Customer Material

    Dear All,
    Issue is regarding to capture excise invoice
    for Customer Material.
    1.
    one of our client receives Customer material which
    should not be reflected in
    stock.
    2. Excise should be captured which
    receiving
    3. Now
    when this Customer material is returned back to
    customer along with
    the assembly (i.e. the material received from
    customer is fixed
    in Assembly and sent back to
    customer),
    4. Now
    the excise
    captured should be transfered back to customer's A/c.
    I tried
    doing by creating a material type as customer material, where in
    Stock will be reflected but value will not be reflected, where exactly
    we
    can capture the excise details for this scenario.
    How
    to
    proceed further to complete his scenario.
    Consider this
    issue
    to be on high priority &  i/p will be of great help.

    Dear Vijayashree
    From your comments what I understood is that for a particular FERT, you are procuring one component from the buyer, assembling it and invoicing to the same customer.
    If this is the scenario, I dont know how you can invoice without maintaining BOM for that.
    If the client don’t want to maintain BOM for the same, the only option is as follows to my knowledge.
    Whenever the client receives the component, take credit of the duty amount by updating <b>J1IH</b>. While doing PGI, since you have not maintained this component in BOM, stock will <i>ONLY</i> reduce for other components.  So no-where, your client can track the customer’s component.
    Parallelly, apart from selling price, to the extent of excise duty value, one more condition (say ABCD,  to be maintained.  So in your pricing procedure, the assessable value should be PR00 + ABCD for which, the excise duty should be captured so that the client can recover the duty amount from customer.
    Finally, for this practice, the client should maintain datas (how many procured and how many invoiced) manually to convince the government officials but then, I am not sure, how far this will be accepted by the officials.
    Thanks
    G. Lakshmipathi

  • Adding new item to a result page for customer search

    Hi all,
    I have the following requirement :
    In Sales Dashboard,once the user queries for customer, the result table shows name, registery id, address and some other fields.
    I have to add another column 'Account Number', which will display customer number of the customer. With forms personalization, I was able to show the column, but how do I get the value of account_number to display in this column?
    Sorry for the basic question. I am new to OAF and have started reading the guidelines.
    I just need help with the directions I need to go ahead in.
    TIA,
    AZ

    Go to "about this page" link and check the associated VO. if the VO already has the required field which you are looking for, then just set those VO name and attribute. Otherwise you will have to go for substitution.
    Search on forum and you will find many similar discussions.
    --Shiv                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                   

  • MR11 docuemnt for custom clearing

    Hi All,
    we are unable to do MR11  for customer clearing of  the co.code aginist the purchase order.
    Please let us know your views and thoughts above issue.
    Kind Regards,
    Ram
    Edited by: Ramanjaneyulu.B on Jul 27, 2011 12:35 PM

    Hi Naresh,
    Thanks for your quick reply.
    We are getting error message'No documents found'
    Thanks
    Ram

  • Table for Customer and Vendor Special GL Carryforward Balances

    Hi,
    What is the table to get the customer and vendor special GL carryforward balances?
    Thanks in advance

    Hello,
    I have more details to add to the thread.
    If you are looking for carry forward balances for customer and vendor subledgers, the tables are:
    By month
    KNC1- customer (customer master transaction figures) - c/f debit/credit postings and lists by customer, company code and year
    LFC1-vendor - (vendor master transaction figures) -c/f debit/credit postings and lists by customer, company code and year
    By year
    KNC3  (customer master - special G/L transaction figures)- c/f balances by customer, company code and year (lists totals for debit and credit)
    LFC3 -   (vendor master - special G/L transaction figures)- c/f balances by customer, company code and year (lists totals for debit and credit)
    Hope this helps.
    KF

  • Function module for customer open item aging report

    Hi all,
    Please let me know the FM for customer open item aging or which FM is used in tcode S_ALR_87012178 to get the age wise open item of customer.
    Thanks in advance
    Regards
    Puneet

    <b><u>Part4</u></b><br />
    <br />
    <pre class="jive-pre"><code class="jive-code jive-java"><font color="red">&quot;&#38;----</font>
    <font color="red">&quot;*&#38;      Form  process_data</font>
    <font color="red">&quot;&#38;----</font>
    FORM PROCESS_DATA .
      DATA : L_TOTAL_TMP(15). <font color="red">&quot; LIKE BSID-DMBTR. </font>
      CLEAR :  L_TOTAL,LPD_TOTALS.
    <font color="red">&quot;* As per Customer accumulate the amount.</font>
    <font color="red">&quot;* For overdue items.</font>
      CLEAR : L_TOTAL_TMP.
      LOOP AT L_OPENDUE_LT.
      CONDENSE L_OPENDUE_LT-DMBTR NO-GAPS.
      L_TOTAL_TMP = L_TOTAL_TMP + L_OPENDUE_LT-DMBTR.
        AT END OF KUNNR.
          LPD_TOTALS-KUNNR = L_OPENDUE_LT-KUNNR.
          LPD_TOTALS-LPD_TOTAL = L_TOTAL_TMP.
          APPEND LPD_TOTALS.
          CLEAR : L_TOTAL_TMP.
        ENDAT.
      ENDLOOP.
      CLEAR :  L_TOTAL,LOA_TOTALS.
    <font color="red">&quot;* As per Customer accumulate the amount.</font>
    <font color="red">&quot;* For Open Items.</font>
      CLEAR : L_TOTAL_TMP.
      LOOP AT L_OPENDUE_LE.
        CONDENSE L_OPENDUE_LE-DMBTR NO-GAPS.
        L_TOTAL_TMP = L_TOTAL_TMP + L_OPENDUE_LE-DMBTR.
        AT END OF KUNNR.
          LOA_TOTALS-KUNNR = L_OPENDUE_LE-KUNNR.
          LOA_TOTALS-LOA_TOTAL = L_TOTAL_TMP.
          APPEND LOA_TOTALS.
          CLEAR : L_TOTAL_TMP.
        ENDAT.
      ENDLOOP.
    <font color="red">&quot;* Get ageing data based slabs, and duedate.</font>
      PERFORM AGEING_DATA.
      LOOP AT L_BSID.
    <font color="red">&quot;* Move the data to final internal table.</font>
        MOVE L_BSID-KUNNR TO FINAL_DATA-KUNNR.
        MOVE L_LANDX TO FINAL_DATA-LANDX.
        MOVE L_PSTLZ TO FINAL_DATA-PSTLZ.
        MOVE L_NAME TO FINAL_DATA-NAME1.
        MOVE L_PHONE TO FINAL_DATA-PHONE.
        MOVE L_SORTL TO FINAL_DATA-SORTL.
        MOVE L_BSID-ZTERM TO FINAL_DATA-ZTERM.  
        MOVE L_BUSAB TO FINAL_DATA-BUSAB.        
        READ TABLE LPD_TOTALS WITH KEY KUNNR = L_BSID-KUNNR.
        IF SY-SUBRC EQ 0.
          MOVE LPD_TOTALS-LPD_TOTAL TO FINAL_DATA-LPD_TOTAL.
        ENDIF.
        READ TABLE LOA_TOTALS WITH KEY KUNNR = L_BSID-KUNNR.
        IF SY-SUBRC EQ 0.
          MOVE LOA_TOTALS-LOA_TOTAL TO FINAL_DATA-LOA_TOTAL.
        ENDIF.
        READ TABLE AGE_DATA WITH KEY KUNNR = L_BSID-KUNNR.
        IF SY-SUBRC EQ 0.
          MOVE AGE_DATA-CURAMT TO FINAL_DATA-CURAMT.
          MOVE AGE_DATA-AMT1 TO FINAL_DATA-AMT1.
          MOVE AGE_DATA-AMT2 TO FINAL_DATA-AMT2.
          MOVE AGE_DATA-AMT3 TO FINAL_DATA-AMT3.
          MOVE AGE_DATA-AMT4 TO FINAL_DATA-AMT4.
          MOVE AGE_DATA-AMT5 TO FINAL_DATA-AMT5.
          MOVE AGE_DATA-AMT6 TO FINAL_DATA-AMT6.
        ENDIF.
        ENDIF.
        APPEND FINAL_DATA.
        CLEAR: FINAL_DATA.
      ENDLOOP.
    ENDFORM.                    <font color="red">&quot; process_data</font>
    </code></pre>

  • Residual Clearing for Customer in F-32

    Hi
    We have two instances, one with New GL and the other one on Classical Gl, but ECC 6.0
    I am facing issue in residual clearing for Customer Open Items. I have a customer open item - Invoice of 1000 and Payment Recipet of 200. I am clearing 200 against the invoice of 1000 and creating a residual item of 800, which will reflects as open item of 800 after posting clearing through F-32. My Issue is with the way the Accounting entry of clearing document are created.
    New GL System, the Accounting Entry is reflected as:
    Customer A/c Dr    800
    Customer A/c Dr    200
               To Customer A/c 1000
    In this the line items of 200 and 1000 reflect as cleared items in FBL5N and 800 item appears as open item in FBL5N
    Classical GL System, the Accounting Entry is reflected as:
    Customer A/c Dr 800
        To Customer A/c 800
    The Line Item of 800 Cr appears as Cleared Item in FBL5N and 800 Dr Item appears as open item in FBL5N.
    Why is the Clearing Document created in different ways in the two system? Do we have any configuration, which decides the nature of how the Accounting Entry for Clearing Document is created in case of Residual Clearing in F-32?
    Regards
    Sanil

    Hi
    In the Clearing Procedure in FBKP, the Posting Key and Document Type are assigned. Also, in OBA3, tolerance setting for clearing are determined. My issue is on how the Accounting Entry for Residual Item is created for system on new GL. I have checked the configuration suggested but they do not help on the way how the accounting entry is created for Clearing Document.
    Regards
    Sanil

  • How to clear the open items and parked items for customer

    Hi Experts,
    I need to clear the open items and parked items for customer.
    So any one could let me know the transaction code and procedure for clearing the items for customer.
    Best regards,
    Kesava balaji.

    Hello,
    Parked items will have NO RELEVANCE, unless you post it.
    You CANNOT clear parked items.
    You can clear the posted items using F.13 or F-32
    Regards,
    Ravi

  • Change Reconciliation Account for customer.

    Hi All,
    I want to change the Reconciliation Account for customer. it is giving me message that Account has been posted to; hold balance sheet adjustment (Message no. F2067). How do I change it.
    Thanks
    Utpal.

    Hi
    Make the reconciliation account balance nullify by tranferring to new GL Account and the nassing new one
    Assign points if useful,
    Regards
    Raj

  • Change of Reconciliation account for Customer/Vendor.

    Dear All,
    I need to change the reconciliation account for customer, after changing recon account i want the balance from the old recon account to be transfered to new recon accont.
    Please suggest.
    Thanks & Regards

    Hello,
    Once you made any change of reconciliation account in customer master, you are required to execute F.5D.
    Please read the documentation available on this.
    This will adjust the postings made to old reconciliation account to new reconciliation.
    Hopefully, it should solve your problem.
    Thanks,
    Ravi

Maybe you are looking for

  • Keyboard & trackpad not recognized after sleep

    I have a brand new 2012 iMac with a frustrating problem, neither the keyboard or the trackpad is recognized after the machine has gone to sleep. Once I unplug the keyboard and replug it in, it is fine. Once I turn the trackpad on and off it is fine.

  • My PS 6 keeps crashing.  Help!?

    Running Photoshop cs 6 on my fujitsu tablet PC.  I run Windows 7 Pro.  Photoshop keeps crashing.  Completely random.  I could really use some help because it's affecting my work flow.  Any advice?

  • Oracle ADF :Copy eo

    hello! all! i want to ask sth about Copy EO.. i have master-detail relationship.. i want to copy all table before commit transaction. but i can copy master table,can not copy detail table i think the problem is i can't get detail table in master tabl

  • Broken "Search Help" link

    I just tried clicking on the "Search Help" link at http://www.oracle.com/ultrasearch/wwws_otn/searchotn.jsp, but the following error message appeared: Sorry, this page was not found (Error Document 404)Could somebody please patch this broken link? Th

  • Cannot build vertical stacked bar chart!  HELP!

    I have a simple stacked bar chart I want to build with month/year across the bottom that shows the number of orders by category (A,B,C and D).  I understand that I must have 2 dimensions and 1 measure.  However, the chart is not counting the number o