Implementing a custom logger

Hi,
I am using Adobe Flash Builder 4.6.I was trying to implement a custom logger with the logging API.
According to my understanding a flashlog.txt file has to be created which contains all the logs.But for me th file is not getting created.
Do I need a debugger version for this isuue.I am completely new to flex so kindly provide me information on debugger version of flashplayer also.
Thanks and regards
Marzada

Have you looked at http://livedocs.adobe.com/flex/3/html/help.html?content=logging_09.html and followed the steps?

Similar Messages

  • Can we implement the custom sql query in CR for joining the two tables

    Hi All,
    Is there anyway to implement the custom sql query in CR for joining the two tables?
    My requirement here is I need to write sql logics for joining the two tables...
    Thanks,
    Gana

    In the Database Expert, expand the Create New Connection folder and browse the subfolders to locate your data source.
    Log on to your data source if necessary.
    Under your data source, double-click the Add Command node.
    In the Add Command to Report dialog box, enter an appropriate query/command for the data source you have opened.
    For example:
    SELECT
        Customer.`Customer ID`,
        Customer.`Customer Name`,
        Customer.`Last Year's Sales`,
        Customer.`Region`,
        Customer.`Country`,
        Orders.`Order Amount`,
        Orders.`Customer ID`,
        Orders.`Order Date`
    FROM
        Customer Customer INNER JOIN Orders Orders ON
            Customer.`Customer ID` = Orders.`Customer ID`
    WHERE
        (Customer.`Country` = 'USA' OR
        Customer.`Country` = 'Canada') AND
        Customer.`Last Year's Sales` < 10000.
    ORDER BY
        Customer.`Country` ASC,
        Customer.`Region` ASC
    Note: The use of double or single quotes (and other SQL syntax) is determined by the database driver used by your report. You must, however, manually add the quotes and other elements of the syntax as you create the command.
    Optionally, you can create a parameter for your command by clicking Create and entering information in the Command Parameter dialog box.
    For more information about creating parameters, see To create a parameter for a command object.
    Click OK.
    You are returned to the Report Designer. In the Field Explorer, under Database Fields, a Command table appears listing the database fields you specified.
    Note:
    To construct the virtual table from your Command, the command must be executed once. If the command has parameters, you will be prompted to enter values for each one.
    By default, your command is called Command. You can change its alias by selecting it and pressing F2.

  • Best practice question for implementing a custom component

    I'm implementing a custom component which renders multiple <input type="text" .../> controls as part of it. The examples I've seen that do something similar use the ResponseWriter to generate the markup "by hand" like:
         writer.startElement("input", component);
         writer.writeAttribute("type", "text", null);
         writer.writeAttribute("id", "foo", null);
         writer.writeAttribute("name", "foo", null);
         writer.writeAttribute("value", "hello", null);
         writer.writeAttribute("size", "20", null);
         writer.endElement("input");
    I don't know about anyone else, but I HATE having to write code that manufactures this stuff - seems to me that there are already classes that do this, so why not just use those? For example, the above could be replaced with:
         HtmlInputText textField = new HtmlInputText();
         textField.setId("foo");
         textField.setValue("hello");
         textField.setSize(20);
         // just to be safe, invoke both encodeBegin() and encodeEnd(),
         // though it seems like encodeEnd() actually does the work in this case,
         // but who knows if they might change it at some point
         textField.encodeBegin(context);
         textField.encodeEnd(context);
    So my question is, why does everyone seem to favor the former over the latter? Why not leverage objects that already do the (encoding) work for you?

    Got it!
    You JSP should have this:
    <h:panelGroup styleClass="jspPanel" id="jspPanel1"></h:panelGroup>
    And your code page ValueChangeListener/ActionListner should have this:
              if (findComponent(getForm1(),"myOutputText") == null)
                   FacesContext facesCtx = FacesContext.getCurrentInstance();
                   System.out.println("Adding component");
                   HtmlOutputText output =
                        (HtmlOutputText) facesCtx.getApplication().createComponent(
                             HtmlOutputText.COMPONENT_TYPE);
                   output.setId("myOutputText");
                   output.setValue("It works");
                   getJspPanel1().getChildren().add(output);          
                   System.out.println("Done");
                   DebugUtil.printTree(FacesContext.getCurrentInstance().getViewRoot(),System.out);
              else
                   System.out.println("component already added");
    I just have to figure out this IOException on the closed stream - probably has to do with [immidiate="true"].
    Thanks.
    [9/15/04 13:05:53:505 EDT] 6e436e43 SystemErr R java.io.IOException: Stream closed
    [9/15/04 13:05:53:536 EDT] 6e436e43 SystemErr R      at java.lang.Throwable.<init>(Throwable.java)
    [9/15/04 13:05:53:536 EDT] 6e436e43 SystemErr R      at java.lang.Throwable.<init>(Throwable.java)
    [9/15/04 13:05:53:536 EDT] 6e436e43 SystemErr R      at org.apache.jasper.runtime.JspWriterImpl.ensureOpen(JspWriterImpl.java:294)
    [9/15/04 13:05:53:536 EDT] 6e436e43 SystemErr R      at org.apache.jasper.runtime.JspWriterImpl.write(JspWriterImpl.java:424)
    [9/15/04 13:05:53:536 EDT] 6e436e43 SystemErr R      at org.apache.jasper.runtime.JspWriterImpl.write(JspWriterImpl.java:452)
    [9/15/04 13:05:53:536 EDT] 6e436e43 SystemErr R      at com.ibm.faces.component.UIJspPanel$ChildrenListEx.add(UIJspPanel.java:114)
    [9/15/04 13:05:53:536 EDT] 6e436e43 SystemErr R      at pagecode.admin.Test.handleListbox1ValueChange(Test.java)
    [9/15/04 13:05:53:536 EDT] 6e436e43 SystemErr R      at java.lang.reflect.AccessibleObject.invokeImpl(Native Method)
    [9/15/04 13:05:53:536 EDT] 6e436e43 SystemErr R      at java.lang.reflect.AccessibleObject.invokeV(AccessibleObject.java:199)
    [9/15/04 13:05:53:536 EDT] 6e436e43 SystemErr R      at java.lang.reflect.Method.invoke(Method.java:252)
    [9/15/04 13:05:53:536 EDT] 6e436e43 SystemErr R      at com.sun.faces.el.MethodBindingImpl.invoke(MethodBindingImpl.java:126)
    [9/15/04 13:05:53:536 EDT] 6e436e43 SystemErr R      at javax.faces.component.UIInput.broadcast(UIInput.java:492)
    [9/15/04 13:05:53:536 EDT] 6e436e43 SystemErr R      at javax.faces.component.UIViewRoot.broadcastEvents(UIViewRoot.java:284)
    [9/15/04 13:05:53:536 EDT] 6e436e43 SystemErr R      at javax.faces.component.UIViewRoot.processDecodes(UIViewRoot.java:342)
    [9/15/04 13:05:53:536 EDT] 6e436e43 SystemErr R      at com.sun.faces.lifecycle.ApplyRequestValuesPhase.execute(ApplyRequestValuesPhase.java:79)
    [9/15/04 13:05:53:536 EDT] 6e436e43 SystemErr R      at com.sun.faces.lifecycle.LifecycleImpl.phase(LifecycleImpl.java:200)
    [9/15/04 13:05:53:536 EDT] 6e436e43 SystemErr R      at com.sun.faces.lifecycle.LifecycleImpl.execute(LifecycleImpl.java:90)
    [9/15/04 13:05:53:536 EDT] 6e436e43 SystemErr R      at javax.faces.webapp.FacesServlet.service(FacesServlet.java:197)
    [9/15/04 13:05:53:536 EDT] 6e436e43 SystemErr R      at com.ibm.ws.webcontainer.servlet.StrictServletInstance.doService(StrictServletInstance.java:110)
    [9/15/04 13:05:53:536 EDT] 6e436e43 SystemErr R      at com.ibm.ws.webcontainer.servlet.StrictLifecycleServlet._service(StrictLifecycleServlet.java:174)
    [9/15/04 13:05:53:536 EDT] 6e436e43 SystemErr R      at com.ibm.ws.webcontainer.servlet.IdleServletState.service(StrictLifecycleServlet.java:313)
    [9/15/04 13:05:53:536 EDT] 6e436e43 SystemErr R      at com.ibm.ws.webcontainer.servlet.StrictLifecycleServlet.service(StrictLifecycleServlet.java:116)
    [9/15/04 13:05:53:536 EDT] 6e436e43 SystemErr R      at com.ibm.ws.webcontainer.servlet.ServletInstance.service(ServletInstance.java:283)
    [9/15/04 13:05:53:536 EDT] 6e436e43 SystemErr R      at com.ibm.ws.webcontainer.servlet.ValidServletReferenceState.dispatch(ValidServletReferenceState.java:42)
    [9/15/04 13:05:53:536 EDT] 6e436e43 SystemErr R      at com.ibm.ws.webcontainer.servlet.ServletInstanceReference.dispatch(ServletInstanceReference.java:40)
    [9/15/04 13:05:53:536 EDT] 6e436e43 SystemErr R      at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.handleWebAppDispatch(WebAppRequestDispatcher.java:948)
    [9/15/04 13:05:53:536 EDT] 6e436e43 SystemErr R      at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.dispatch(WebAppRequestDispatcher.java:530)
    [9/15/04 13:05:53:536 EDT] 6e436e43 SystemErr R      at com.ibm.ws.webcontainer.webapp.WebAppRequestDispatcher.forward(WebAppRequestDispatcher.java:176)
    [9/15/04 13:05:53:536 EDT] 6e436e43 SystemErr R      at com.ibm.ws.webcontainer.srt.WebAppInvoker.doForward(WebAppInvoker.java:79)
    [9/15/04 13:05:53:552 EDT] 6e436e43 SystemErr R      at com.ibm.ws.webcontainer.srt.WebAppInvoker.handleInvocationHook(WebAppInvoker.java:201)
    [9/15/04 13:05:53:552 EDT] 6e436e43 SystemErr R      at com.ibm.ws.webcontainer.cache.invocation.CachedInvocation.handleInvocation(CachedInvocation.java:71)
    [9/15/04 13:05:53:552 EDT] 6e436e43 SystemErr R      at com.ibm.ws.webcontainer.srp.ServletRequestProcessor.dispatchByURI(ServletRequestProcessor.java:182)
    [9/15/04 13:05:53:567 EDT] 6e436e43 SystemErr R      at com.ibm.ws.webcontainer.oselistener.OSEListenerDispatcher.service(OSEListener.java:334)
    [9/15/04 13:05:53:567 EDT] 6e436e43 SystemErr R      at com.ibm.ws.webcontainer.http.HttpConnection.handleRequest(HttpConnection.java:56)
    [9/15/04 13:05:53:567 EDT] 6e436e43 SystemErr R      at com.ibm.ws.http.HttpConnection.readAndHandleRequest(HttpConnection.java:610)
    [9/15/04 13:05:53:567 EDT] 6e436e43 SystemErr R      at com.ibm.ws.http.HttpConnection.run(HttpConnection.java:435)
    [9/15/04 13:05:53:567 EDT] 6e436e43 SystemErr R      at com.ibm.ws.util.ThreadPool$Worker.run(ThreadPool.java:593)
    [9/15/04 13:05:56:146 EDT] 6e436e43 SystemOut O Done

  • Implementation of Custom Retractor in Cost Center Planning

    Hi All,
    I am facing a problem regarding Implementation of Custom Retractor.
    In our Project TM1 Server which is presently existing is to be replaced by BI server for Cost Center Planning.
    The value needs to be retracted back to the R/3 server for poplutaing the  Source Table fields.
    Now our Business requirement is best suited by implementing a Custom Retractor which would fetch the data from
    BI back to R/3 Server.I have some queries regarding this implementation.
    1> The Data load Function Module & Post Data Load Function Module which is implemented for Data loadinf into R/3 server
    is written in which server (BI / R3)? If its written in R3 as the case seems them how the BI table type needs to be declared in the
    function module?
    2> What the  Function Module is returning ..is it directly updating the DB table or returning a structure?
    Our project is still in the Realisation Phase....So no development has began yet....
    Eagerly waiting for your response.
    Thanks a lot..

    Hi Uryikin,
    Thanks for your response.
    Standard Retractor does not satisfy the Business requirement in full.
    The RFC connection you have suggested is what we are implementing through RSPLAN function Type creation.
    In the RSPLAN we are implementing a Class which will fetch the Data from the Infoobject.
    This infoobject will be fed from the target Infocube. After this Class getting populated Mapping will be done b/w BI source fields and the R/3 source fields.
    Now the problem arise when a Function Module needs to be created that will actually bring the data to R/3 side.
    The server where  Data Load function Module is to written is still unknown to me..
    The Function Module Return type is also unknown...
    As this is totally customised we have to identify the return type for submission of Blueprint...
    Kindly refer to this link we are implementing this same steps only on different scenario...
    http://www.docstoc.com/docs/25252336/MDX-The-Basis-for-SAP-NetWeaver-BI-Third-Party-Interfaces/
    Please Reply...

  • Implementing a custom matching rule for AR lockbox

    I need to Implement a custom matching rule for AR lockbox.
    Client has a requirement like to match with pack slip.
    Any one have the coding for this?
    Kindly help me to solve this.

    I need to Implement a custom matching rule for AR lockbox.
    Client has a requirement like to match with pack slip.
    Any one have the coding for this?
    Kindly help me to solve this.

  • How can I implement a CUSTOM POPUP (create_popup_2_confirm)

    Hello, I try to implement a Confirm Popup from type custom. All works fine instead of the result. I don't get the supposed values.
    Every time I select on of the two button I get as result = 'CUSTOM_BTN'
    ls_button-id = 'AG'.
          ls_button-text = 'Angebot'.
          ls_button-ON_CLICK = 'Angebot'.
          ls_button-type = cl_thtmlb_util=>GC_ICON_VALUE.
          ls_button-ENABLED = 'abap_true'.
          append ls_button to lt_button.
          ls_button-id = 'OR'.
          ls_button-text = 'Auftrag'.
          ls_button-ON_CLICK = 'Auftrag'.
          ls_button-type = cl_thtmlb_util=>GC_ICON_VALUE.
          ls_button-ENABLED = 'abap_true'.
          append ls_button to lt_button.
          Call Method
          comp_controller->window_manager->create_popup_2_confirm
           EXPORTING
            iv_title =  'Own Popup'
            iv_text  = 'OWN text'
            iv_btncombination =  if_bsp_wd_window_manager=>CO_BTNCOMB_CUSTOM
           IV_CUSTOMBUTTONS = lt_Button
          RECEIVING
            rv_result  = Y_POPUP_AG_OR.
    call method  Y_POPUP_AG_OR->set_on_close_event
      exporting
          iv_view = me
          iv_event_name = 'POPUP_CLOSED'.
      Y_POPUP_AG_OR->open( ).
    Event Handle eh_onpopup_closed
    lv_result = y_popup_ag_or->get_fired_outbound_plug( ).
    thanks
    Thomas Scholtes

    Hi all ,
    Please can any one help how to get mutlipule lines in this popup window
    comp_controller->window_manager->create_popup_2_confirm
    EXPORTING
    iv_title = 'Own Popup'
    iv_text = 'OWN text'
    iv_btncombination = if_bsp_wd_window_manager=>CO_BTNCOMB_CUSTOM
    IV_CUSTOMBUTTONS = lt_Button
    RECEIVING
    rv_result = Y_POPUP_AG_OR.
    IV_text takens only single line how to split multipule lines?
    thanks
    Rao

  • How to implement a custom UI control

    I need to display interactive maps on the Windows SAP GUI. The maps
    are dynamically generated and fetched from an external map server using ABAP.
    The interactive map should be scrollable and allow the user to select a single or multiple POIs (Point Of Interest) using the mouse and drag and drop them into
    a table and/or tree. There should be an visual indication on the map
    for selected POIs and a tooltip displaying additional information should
    pop up if the cursor is placed above a POI. I've implemented all this using
    SWT / Java already which was pretty straight forward.
    I looked at the CL_GUI_PICTURE control but it seems that I would need more
    events (such as OnMouseMove, OnLeft/RightButtonDown, OnLeft/RightButtonUp,
    OnDrag) in order to implement this. I think that the CL_GUI_PICTURE has
    just a few events in order to minimize client/server interactions.
    What are my options to implement such an interactive map on SAP GUI?
    I found this blog where a custom control is implemented using ActiveX:
    /people/thomas.jung3/blog/2004/09/01/using-net-windows-controls-in-the-abap-control-framework
    Is this the way to go? Is there an official developers guide for custom
    UI controls from SAP?

    Hi Dominik,
    Sorry but I don't have an answer - I have been trying to solve the same problem for a while now. I even contacted Thomas Jung directly, but was not able to solve the event sink\handler problem. Although I did manage to re-create his example and display a .NET VB Textbox within the SAP GUI...
    If you do manage to get any further - please let me know how you managed to get the event handling to work...
    Tx,
    N

  • Create a custom Logger based on messages in LogViewer

    Hi All,
    I am presently trying to create a logger to log all of my Process logs instead of using the logViewer. However, the option of using the "Global Automatic Activity" with Events listeners using the API Fuego.Msg.ServerLogListener seems to have been deprecated to error in Oracle BPM 10gR3. This option existed in ALBPM 5.7(never tried in 6.0)
    Could somebody let me know of anyother means of creating custom application logs ?
    TIA
    Rudraksh

    This will require a complex, custom-made script. The basic functionality of populating another field based on a selection in a drop-down is not that complicated, but if you want it to also populate other drop-downs (and then presumably use them to populate other fields), it will require a more complex solutions.
    This tutorial is relevant for your question: https://acrobatusers.com/tutorials/change_another_field

  • Java BAdI implementation for Customer specific Spell check

    In IS-M/AMC, I am working on implementation of a Java BAdI, namely ICustSpellCheck, which enables Customer Specific Spell check instead of the standard MS-Word spell check. Could someone provide pointers on the java code that goes into different methods of this class?

    Hi Dharmendra,
      Check if this is your case..
    Note
    This Business Add-In is not suitable for checking individual field content in an installed base, or installed base component: To do this, see Business Add-In: Additional Checks When Modifying Installed Base Headers and Business Add-In: Additional Checks When Modifying Components.
    Regards.
    Manuel

  • Implementing a custom process type for a process chain

    I have created a custom process type for a process chain that allows a user to send back a failure or error status when calling an ABAP program.  I copied the class that is used from the existing ABAP process type as a template. 
    The process type works fine, I just cannot find out how to recreate the documentation for my custom type using free text. When you maintain the process type there is a field for the documentation object, but I can't find where in SAP to implement this.
    I have tried looking at the document maintenance using SE61 and looking into the class documentation from SE24 with no success.  The only detail that is provided in the SAP help portal is:
    "If necessary, assign a documentation type and a docu. object to the process type. The docu object can be called up via F1 in the process chain maintenance overview tree. "
    Does anyone out there have any experience with this that can push me in the right direction?
    Thanks,
    Eddie

    You can create and maintain system documentation from transaction SE61. This is how you would create documentation for a process type or if you wanted to create a book. <a href="http://help.sap.com/saphelp_nw04/helpdata/en/a4/d47df949e111d189730000e8322d00/frameset.htm">more info</a>
    Here are the steps to make your documentation similar to that used for the ABAP process type:
    From transaction SE61:
    -Create a document of type TX (either from scratch or by copying RSPC_ABAP which is used for the SAP-delivered ABAP process type)
    -Make any changes you need. I suggest downloading the document in ITF format and make the changes in a basic text editor and then uploading your changed document. It's a little easier to tell what is going on that way.
    Now on to transaction RSPC.
    Once you save your changes, go to RSPC and select on any chain you have to get into the "plan and check views of process chain maintenance." Then just go to Settings -> Maintain Process Types.
    From here you can select your process type, select TX from the document type dropdown, and then enter the name of your document in the docu. object field.
    Hope that helps.

  • XUL implementations and custom components

    I've been looking briefly into the myriad XUL implementations and one of my concerns is the ease of incorporating bespoke JComponent subclasses - and also bespoke Border and LayoutManager classes. And then doing things like implementing and using a custom JPanel subclass whilst being able to specify its contents in XML in the same way as a normal JPanel.
    Does anyone have experience with achieving the above in any of these, and how elegant is the solution?
    I note that Luxor will handle custom components, as will Ultrid - though the latter (sadly, as it looks rather nice) won't work for me as I need to deploy as an applet. Any others? In particular, SwiXML/AT? That looks interesting although the documentation is relatively sparse...
    Thanks

    Ah - looks like SwiXML has just what I want with regard to the components.

  • OBI APP implementation on custom ERP

    Hi,
    Can you all please advise as to how to proceed with a OBI APP implementation over a customized ERP application platform.
    I was thinking of proceeding in somewhat these lines
    1> Determine the custom objects applied to the ERP source(New tables, New columns etc)
    2> Installation and configuration of OBIAPP in same lines as we do for a vanilla environment.
    3> Apply the ERP customizations to the installed warehouse (Bringing in the custom table, fields to the warehouse , changing the corresponding ETL maps, adding new ones ,workflows, new DAC execution plans etc).
    Thanks for inputs
    Cheers
    Dhrubo

    That sounds about right.
    Make sure you spend some time working through the ETL's it's often an iterative process to get customizations to function exactly the way you want them to.

  • Implementing a custom OracleResultSetCache...

    Hi all,
    I am trying to implement my own result set cache. I've written a class:
    public class DBCache implements oracle.jdbc.OracleResultSetCache {
    For some reason, when I try to use DBCache, Oracle throws a ClassCastException. Is the custom cache supposed to implement any interface other than OracleResultSetCache? What does Oracle's driver try to cast my object to? What I do is straight forward:
         dbCache = new DBCache(DEFAULT_FETCH_SIZE);
         ostmt.setResultSetCache(dbCache);
         rs = ostmt.executeQuery();
    The exception is thrown during executeQuery() and none of my DBCache code gets a chance to be called...
    java.lang.ClassCastException: DBCache
         at oracle.jdbc.driver.OracleStatement.getResultSetCache(OracleStatement.java:3709)
         at oracle.jdbc.driver.ScrollableResultSet.<init>(ScrollableResultSet.java:82)
         at oracle.jdbc.driver.ResultSetUtil.createScrollResultSet(ResultSetUtil.java:77)
         at oracle.jdbc.driver.OracleStatement.doScrollExecuteCommon(OracleStatement.java:4173)
         at oracle.jdbc.driver.OraclePreparedStatement.doScrollPstmtExecuteUpdate(OraclePreparedStatement.java:10763)
         at oracle.jdbc.driver.OraclePreparedStatement.executeInternal(OraclePreparedStatement.java:3283)
         at oracle.jdbc.driver.OraclePreparedStatement.executeQuery(OraclePreparedStatement.java:3329)
         at DBTable.setInput(DBTable.java:77)

    I found out myself:
    There exist both:
    oracle.jdbc.OracleResultSetCache
    oracle.jdbc.driver.OracleResultSetCache
    One must implement the latter.

  • Help needed on implementing a custom control

    Hi
    Am developing a control which resembles like Flash timeline or windows movie maker timeline.
    It will have multiple nodes in vertical aligned and a slider.
    like
    =Node1==================|====
    =Node2==================|====
    =Node3==================|====
    '|' is the vertical slider.
    1) The nodes count is dynamic
    2) The nodes are added to a scrollpane
    3) The control should be resizable in horizontal & vertical
    4) The nodes can be dragged and dropped
    here the problem is the slider should reside top on the nodes and can move horizontally.
    Here glasspane is useless, bcoz we can't do the node drag and drop.
    Please suggest some architecture to implement this.
    Regards,
    bee

    Why are you still creating a custom TableModel? Did you not see the advice to use the DefaultTableModel in your last posting?
    There is absolutely no reason to spend time creating your own custom TableModel. The DefaultTableModel will do everything you need and more.
    You should never invoke the fireXXX of the AbstractTableModel from outside the actual model. This tells me you are not using the proper design.
    I gave you a link to the Swing tutorial in your last posting as well. Have you read the tutorial yet? The easiest solution is to create a text field that limits the number of characters you can enter and then use this text field to create a default cell editor. But if you haven't read the tutorial you won't understand what I'm talking about.

  • Automatic Gain Control (AGC) Implementation for custom IR camera

    Hi All,
    We are working on a custom IR camera, in which we could find heavy blooming effect. So we need to implement the AGC programmatically.
    We have tried to adjust the integration time of the camera but were not successful in eliminating blooming problem.
    Kindly provide me any suggestions in this regards. 
    with best regards,
    Sri

    Nope - doesn't work. Clipped samples show up in "Amplitude Statistics" but when I go to the Diag panel - select "DeClipper" and "Scan" - NO problems are detected.

Maybe you are looking for

  • Java.lang.IllegalStateException when trying to get a entity bean

    hi all, I wrote a simple container managed entity bean and deployed it. When i call the find all method of the entity bean following is the log trace of my exception com.sun.enterprise.resource.JdbcXAConnection$JdbcConnection@13974ba TX optimistic: f

  • HTTPS port Active in CRM server

    Hi All, Our client wanted to do SAP CRM and Outlook integration. for the same they required HTTPS port to be opened and activated...... Presently we can not proceed with issuing certificate on SAP Web Application Server, since there is no option on S

  • Pages '09 special characters showing up weird

    Hi, I am a new Mac user and i have found that in pages '09 some of the special characters are not displaying correctly, the main problems are with the mathematical x and y symbols, if I copy and paste the strange characters out of pages then they dis

  • Problem in Dierct print of Adobe form

    Hi all, My requirement is to print the Adobe form directly.when user execute the particular Z transaction. Then the form should be print. I have given all print parameters to the FM FP_JOB_OPEN.I am using ADS. But i am getting the print when I excute

  • Set DEFAULT spellcheck language

    Running Ubuntu 13.04, firefox can't help but highlight every word red every time I type into a textbox, because the top entry in RIGHTCLICK>>LANGUAGES is "French". The others read, in order, "French (Belgium)", "English (United Kingdom)", "French (Lu