Interactive X-Y Co-ordinate system

Hi
Actually I want to have an Interactive x-y Co-ordinate system(having adjustable grid) where I can place arcs and lines at specified angles and position. Along with that we can also can fill out each grid cell with some value.
Is that much interaction is possible with LabVIEW. Please help me out.
Regards
Gaurav Sharma

Use this javascript:
var mouseX = 0;
var mouseY = 0;
function mouseXY(e) {
   if (IE) {
      mouseX = event.clientX + document.body.scrollLeft
      mouseY = event.clientY + document.body.scrollTop
   } else {
      mouseX = e.pageX;
      mouseY = e.pageY;
// set up mouse movement capture for tool tip placement
var IE = document.all?true:false
document.onmousemove=mouseXY;Then just use mouseX and mouseY wherever you want to find out the current mouse position.

Similar Messages

  • Drawing quadratic equations on a 2D cartesian co-ordinate system

    Hi,
    I need to design a 2D cartesian co-ordinate system to plot quadratic equations on the graph using pure action script. Quadratic equations are of the form y = ax^2 + bx + c where a,b and c are the variables for which the values need to accepted from the user as input. Accordingly, the curve needs to be plotted on the graph.
    Could anybody kindly help me to write an action script 3.0 code to suffice the above requirement?
    Thanks in advance.
    Cheers,
    Pratik.

    that will take more work than doable in a forum.  to start, you need to find the roots of your equation (use the quadratic formula) and make sure the real roots are towards the center of your x-axis.  the two parts where y tends towards (+infinity or -infinity) do not require much display.
    if there is only 1 or 0 roots, put that equation in vertex form and use an x-axis centered around the vertex.
    for a sample of how this can be done:  http://www.kglad.com > snippets > function graphs.

  • AWT co-ordinate system

    Hello.
    I still can't figure out. I'm plotting graph co-ordinates on an AWT Canvas component. i.e (x,y) values
    However, due to the AWT co-ordinate system, the origin (0,0) is at the top left hand corner of the screen.
    What trick can I do to plot my points with
    respect to the origin at the BOTTOM left hand corner of the canvas?
    I am using the fillOval() method to display the points on the canvas. (See code below)
    All I want to do is reverse the direction
    of the y axis. Some sample code would be very much appreciated.
    A.
    My paint code is as follows ...
    <code>
    public void paint(Graphics g)
    // Paint the means
    g.clearRect(0, 0, 600, 500);
              if (firststep)
              db.paint(g);
    else
    for(int i = 0; i < nk; i++) {
    g.setColor(cl);                                        
    Point p = (Point) means.elementAt(i);
    //           System.out.println("mean = "+p);
                                            g.fillOval( (int) (p.xVal()*600)-PtSize/2, (int) (p.yVal()*500)-PtSize/2, PtSize, PtSize);                    //      Draw an oval
                             String s = "k= "+ i+ "[" + round(p.x, 2) + " , "+ round(p.y, 2) + "]" ;
                             g.drawString(s, (int) (p.xVal()*600)-PtSize/2 + 10 , (int) (p.yVal()*500)-PtSize/2 + 15 );
    // Print the cluster
    Vector cluster = (Vector) clusters.elementAt(i);
    int size = cluster.size();
    for (int j = 0; j < size ; j++ )
              p = (Point) cluster.elementAt(j);
    //     g.setColor(Color.green);
    //     g.fillRect( (int) (p.xVal()*600)-PtSize/4,(int) (p.yVal()*500)-PtSize/4,PtSize/2,PtSize/2);
    //     g.setColor(cl[i]);
                                            g.fillOval( (int) (p.xVal()*600)-PtSize/4, (int) (p.yVal()*500) -PtSize/4,PtSize/2,PtSize/2);               //      Draw circles to represent the points                
    //          g.drawString(i+"",(int)p.xVal(), (int)p.yVal());
    }</code>

    An example without axises or labels:import java.awt.*;
    import javax.swing.*;
    public class Test extends JFrame {
        public Test () {
            setContentPane (new GraphPanel ());
            setDefaultCloseOperation (EXIT_ON_CLOSE);
            setTitle ("Graph example");
            pack ();
            setLocationRelativeTo (null);
            show ();
        public class GraphPanel extends JPanel {
            public void paintComponent (Graphics graphics) {
                super.paintComponent (graphics);
                // y = x^2
                Point previousPoint = null;
                for (int x = 0; x <= getWidth () / 10; x ++) {
                    int y = x * x;
                    Point point = new Point (x * 10, getHeight () - y);
                    if (previousPoint != null) {
                        graphics.drawLine (previousPoint.x, previousPoint.y, point.x, point.y);
                    previousPoint = point;
            public Dimension getPreferredSize () {
                return new Dimension (200, 400);
        public static void main (String[] parameters) {
            new Test ();
    }Kind regards,
      Levi

  • PageItem Co-ordinate w.r.t. Spread Co-ordinate System

    Hi All,<br /><br />I am trying to get coordinates of text frame with respect to spread co-ordinate system.<br />I have used following code for this:<br /><br />InterfacePtr<IGeometry> frameGeometry(textFrame, IID_IGEOMETRY);<br />PMRect frmRect = frameGeometry->GetPathBoundingBox();<br />::InnerToParent(textFrame, &frmRect);<br /><br />Here textFrame is the ITextFrame pointer of which I want to get coordiantes w.r.t. Spread. The problem is dimensions in frmRect doesnot change even after transformation using InnerToParent().<br /><br />Can anyone suggest me in this regard, where I am wrong?<br /><br />- Pete

    Hi Pete,
    I think your problem is that the parent of kMultiColumnItemBoss or kFrameItemBoss (the only bosses that could store the ITextFrame interface you start from) is kSplineItemBoss and not kSpreadBoss. With your call to TransformUtils::InnerToParent you are likely getting the coords in the spline item's coordinate space and not in the spread's one. The SDK documentation specifies that "The parent coordinate space is the first ancestor boss object on IHierarchy that has an IGeometry interface".
    HTH,
    Emanuele.

  • Georeference cartesian co-ordinates to standard co-ordinate system

    We have set of old maps which do not follow any standard co-ordinate system and they are just cartesian grid co-ordinates (for example lat,long 40.733828,-73.988414 corresponds to cartesian co-ordinates 1610350, 1114450) . I want to explore a possibility of applying simple transformation and geo-reference it to standard co-ordinate system. I can have little compromise on positional accuracy. What is best available method to do it oracle spatial?
    Thanks

    Well...
    One approach would be via EPSG method 9621. Unfortunately, 9621 is not yet implemented, at this point.
    Another approach is via NADCON, although NADCON was not semantically meant to be used in this way. If you can determine (lat, lon) and (x,y) exactly along the 4 corners of your unknown map, we could use the NADCON method. It is difficult to say how much accuracy you would get with these 4 points. The accuracy would increase with an equi-spaced grid of n x m known points.
    Yet another approach would be that we simply assume a transverse mercator projection. Since your map only covers Manhattan - who will see the difference between transverse mercator or anything else (assuming that the projection center is near Manhattan)? But it is a little more complex, of course. First, we would need to perform a datum transformation with the required rotation. This would simulate the rotation of the map you talked about. Then we would perform a transverse mercator projection with its center near Manhattan. We would have to assume that your unknown projection also had its center near Manhattan (resulting in minimal distortion, there). This assumption is reasonable for a map of this scale.
    If you give me approximately 5 points for which you know lat/lon and x/y, I will see what I can do. Usually, we do not do this, and it will certainly take a few days, for I will have to fit it into my schedule.
    Also, a reasonable result will only come out if our assumptions regarding this unknown projection are mostly true.

  • Support for Co-ordinate system?

    Does anyone know whether Oracle Spatial supports the mapping co-ordinate system used in Romania (Stereo70)?

    Yes, this SRID is based on the EPSG projection method 9809 ("Oblique Stereographic"). If you are not sure whether this is the SRID you need, do you also have some numeric parameters?
    SQL> select wktext from cs_srs where srid = 31700;
    WKTEXT
    PROJCS["Dealul Piscului 1970/ Stereo 70", GEOGCS [ "Dealul Piscului 1970", DATUM
    ["Dealul Piscului 1970 (EPSG ID 6317)", SPHEROID ["Krassowsky 1940 (EPSG ID 702
    4)", 6378245, 298.3]], PRIMEM [ "Greenwich", 0.000000 ], UNIT ["Decimal Degree",
    0.01745329251994328]], PROJECTION ["Stereo 70 (EPSG OP 19926)"], UNIT ["Meter",
    1]]
    SQL>
    By the way: the WKT is relatively short, and does not contain projection parameters. This is because the 9809 method is not mapped to a legacy projection, and thus the legacy parameters for this projection are not available. The EPSG parameters are in the SDO_COORD_OP_PARAM_VALS table.

  • Save an image from interactive form to R/3 system table

    Hi to all,
    my scenario is this: Web AS 7.0 (probably patched to the last available patch), NWDS 7.0 and, at the moment, a 4.6c R/3 backend system (within some months we will upgrade to ECC 6.0). I have an online interactive form with some input fields and a user, logged in, fills these fields and pressing the "Submit to SAP" button will save the datas to a custom table on 4.6c backend. All this is simple and is working, but my problem is that one of these fields is an image. The purpose is that the user click on the image field and load an image from local PC and then, pressing submit to SAP button, will save the image on the custom table.
    How can I make this? Which kind of context I have to bind to the image field? I have to add a java script/form calc code to image field? And to backend side, how can I do?
    Thank you very much in advance,
    Enrico

    Hi,
    In your forms you got the image or a link to the image ? If it's the image the field is define as an XSTRING is supposed. If yes you can add it easily in a database table.
    If it's a link, your SAP system ( 4.6 C ) need to the the repository where the image is and then you can add it in the database.If you SAP system doesn't see the repository it's impossible to do so.
    Hope this help you.
    Best regards

  • Error when using interactive form on SAP Discovery system

    Hello,
    we are trying to make a customer interactive form on the SAP Discovery system, everything works fine until we try to run a preview with interactive and changeble parameters turned on. By the way there is a SAP provided credential on the system. (system SAP ECC 6.0 sp08)
    the following error occurs while calling the ADS;
    first error message:
    error while logging into credential 'GeneralError: Operation failed.
    SecurityHandler.login:-1:
    The Digital ID specified is unknown.
    Date : 03/23/2007
    Time : 16:04:56:997
    Message : error while logging into credential 'GeneralError: Operation failed.
    SecurityHandler.login:-1:
    The Digital ID specified is unknown.
    Severity : Error
    Category :
    Location : com.adobe.document.PDFManipulation
    Application :
    Thread : SAPEngine_Application_Thread[impl:3]_30
    Datasource : 103929350:D:\usr\sap\ERP\DVEBMGS10\j2ee\cluster\server0\log\defaultTrace.trc
    Message ID : 0018FEFB4E8F00710000013D0000160000042C5960F15BB3
    Source Name : com.adobe.document.PDFManipulation
    Argument Objs :
    Arguments :
    Dsr Component :
    Dsr Transaction : dcf0bd50d94f11db8e950018fefb4e8f
    Dsr User :
    Indent : 0
    Level : 0
    Message Code :
    Message Type : 0
    Relatives :
    Resource Bundlename :
    Session : 0
    Source : com.adobe.document.PDFManipulation
    ThreadObject : SAPEngine_Application_Thread[impl:3]_30
    Transaction :
    User : J2EE_GUEST
    second eror message:
    Date : 03/23/2007
    Time : 16:04:57:013
    Message : Processing exception during a "UsageRights" operation.
    Request start time: Fri Mar 23 16:04:53 CET 2007
    com.adobe.ProcessingError: Credential login error while applying usage rights to PDF: C:\WINDOWS\Temp\adobewa_ERP_103929350\DM-8398477217709800775.dir\DM-8673971829680153343.tmp
    Specific error information:
    $$$/PDF/PDFCredentialLoginFailure2=error while logging into credential '^0'
    GeneralError: Operation failed.
    SecurityHandler.login:-1:
    The Digital ID specified is unknown.
    General error information:
    IDL:com/adobe/document/pdf/CredentialLoginFailure:1.0
    Severity : Error
    Category : /System/Server
    Location : com.adobe.AdobeDocumentServicesWorker
    Application : com.adobe/AdobeDocumentServices
    Thread : SAPEngine_Application_Thread[impl:3]_27
    Datasource : 103929350:D:\usr\sap\ERP\DVEBMGS10\j2ee\cluster\server0\log\defaultTrace.trc
    Message ID : 0018FEFB4E8F0067000001290000160000042C5960F1B348
    Source Name : com.adobe.AdobeDocumentServicesWorker
    Argument Objs :
    Arguments :
    Dsr Component : IWDFVM2160.wdf_ERP_103929350
    Dsr Transaction : d5fe2cd2d94f11db90b20018fefb4e8f
    Dsr User : ADSUSER
    Indent : 0
    Level : 0
    Message Code :
    Message Type : 0
    Relatives : /System/Server
    Resource Bundlename :
    Session : 11645
    Source : com.adobe.AdobeDocumentServicesWorker
    ThreadObject : SAPEngine_Application_Thread[impl:3]_27
    Transaction : SAP J2EE Engine JTA Transaction : [631ffffffd66002b7d]
    User : ADSUSER
    third error message:
    Date : 03/23/2007
    Time : 16:04:57:013
    Message : Client: 200 SystemId: ERP AppName: SAFP
    Processing exception during a "UsageRights" operation.
    Request start time: Fri Mar 23 16:04:53 CET 2007
    com.adobe.ProcessingError: Credential login error while applying usage rights to PDF: C:\WINDOWS\Temp\adobewa_ERP_103929350\DM-8398477217709800775.dir\DM-8673971829680153343.tmp
    Specific error information:
    $$$/PDF/PDFCredentialLoginFailure2=error while logging into credential '^0'
    GeneralError: Operation failed.
    SecurityHandler.login:-1:
    The Digital ID specified is unknown.
    General error information:
    IDL:com/adobe/document/pdf/CredentialLoginFailure:1.0
    at com.adobe.ads.request.UsageRights.execute(Unknown Source)
    at com.adobe.BaseADSRequest.doWork(Unknown Source)
    at com.adobe.AdobeDocumentServicesWorker.execute(Unknown Source)
    at com.adobe.AdobeDocumentServicesEJB.processRequest(Unknown Source)
    at com.adobe.AdobeDocumentServicesEJB.rpData(Unknown Source)
    at com.adobe.AdobeDocumentServicesLocalLocalObjectImpl0.rpData(AdobeDocumentServicesLocalLocalObjectImpl0.java:120)
    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:324)
    at com.sap.engine.services.webservices.runtime.EJBImplementationContainer.invokeMethod(EJBImplementationContainer.java:126)
    at com.sap.engine.services.webservices.runtime.RuntimeProcessor.process(RuntimeProcessor.java:157)
    at com.sap.engine.services.webservices.runtime.RuntimeProcessor.process(RuntimeProcessor.java:79)
    at com.sap.engine.services.webservices.runtime.servlet.ServletDispatcherImpl.doPost(ServletDispatcherImpl.java:92)
    at SoapServlet.doPost(SoapServlet.java:51)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:760)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:853)
    at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.runServlet(HttpHandlerImpl.java:390)
    at com.sap.engine.services.servlets_jsp.server.HttpHandlerImpl.handleRequest(HttpHandlerImpl.java:264)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:347)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.startServlet(RequestAnalizer.java:325)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.invokeWebContainer(RequestAnalizer.java:887)
    at com.sap.engine.services.httpserver.server.RequestAnalizer.handle(RequestAnalizer.java:241)
    at com.sap.engine.services.httpserver.server.Client.handle(Client.java:92)
    at com.sap.engine.services.httpserver.server.Processor.request(Processor.java:148)
    at com.sap.engine.core.service630.context.cluster.session.ApplicationSessionMessageListener.process(ApplicationSessionMessageListener.java:33)
    at com.sap.engine.core.cluster.impl6.session.MessageRunner.run(MessageRunner.java:41)
    at com.sap.engine.core.thread.impl3.ActionObject.run(ActionObject.java:37)
    at java.security.AccessController.doPrivileged(Native Method)
    at com.sap.engine.core.thread.impl3.SingleThread.execute(SingleThread.java:100)
    at com.sap.engine.core.thread.impl3.SingleThread.run(SingleThread.java:170)
    Caused by: com.adobe.document.pdf.CredentialLoginFailure: IDL:com/adobe/document/pdf/CredentialLoginFailure:1.0
    at com.adobe.document.pdf.CredentialLoginFailureHelper.read(CredentialLoginFailureHelper.java:67)
    at com.adobe.document.pdf._PDFDocumentStub.setUsageRights(_PDFDocumentStub.java:284)
    at com.adobe.EJB_PDFAgent.setUsageRights(Unknown Source)
    ... 31 more
    Severity : Fatal
    Category :
    Location : com.adobe.AdobeDocumentServices
    Application : com.adobe/AdobeDocumentServices
    Thread : SAPEngine_Application_Thread[impl:3]_27
    Datasource : 103929350:D:\usr\sap\ERP\DVEBMGS10\j2ee\cluster\server0\log\defaultTrace.trc
    Message ID : 0018FEFB4E8F00670000012A0000160000042C5960F1B5C1
    Source Name : com.adobe.AdobeDocumentServices
    Argument Objs :
    Arguments :
    Dsr Component : IWDFVM2160.wdf_ERP_103929350
    Dsr Transaction : d5fe2cd2d94f11db90b20018fefb4e8f
    Dsr User : ADSUSER
    Indent : 0
    Level : 0
    Message Code :
    Message Type : 0
    Relatives :
    Resource Bundlename :
    Session : 11645
    Source : com.adobe.AdobeDocumentServices
    ThreadObject : SAPEngine_Application_Thread[impl:3]_27
    Transaction : SAP J2EE Engine JTA Transaction : [631ffffffd66002b7d]
    User : ADSUSER
    Hopefully these messages will ring a bell and some of you have a solution for this problem.
    Many thanx in advance
    Jasper Brugman

    Dear friend,
    Check the Below link
    https://www.sdn.sap.com/irj/sdn/adobe?rid=/webcontent/uuid/24b9e126-0b01-0010-e098-f46384fad9f3

  • Shifting of GUI Co-ordinate system when Mouse clicked

    In my JDK 1.2.2 / Swing based application I have this problem of change in coordinate values (x,y) when a mouse click is used. This problem occurs sometimes and reason cannot be traced.
    For e.g. If a user clicks "on" a Button the button is not affected , but the Button is pressed when the user clicks just "above" the button. When this problem arises it happens for all GUI components in the screen like textfield , combobox , table rows etc.
    I hope the forum has answer / hint for this untraceable & intermittent problem.
    Thanks in advance

    1) What OS are you using?
    2) Did you try the app on a different machine?
    - If yes, and it worked OK, make sure you have the newest video drivers installed on your system.
    - If no, then beg/steal/borrow another machine to try it on, or:
    3) (better still) post your entire code if it's not too big, or failing that, post a compilable/runnable subset of your code which shows the same behavior, so we can try it out.

  • Can't interact with  iCloud preferences in system preferences!

    Since installing Maverick on my Imac 2 weeks ago I have had issues with the Icloud preferences in system preferences. I click on the icon, nothing happens, same with the internet account button.
    I have been through the process of deleting the icloud folder from the application support folder and restarting, I can access icloud preferences on the restart and log in but it works for an hour or so, some times longer but have to go through the process again.
    Other symptoms are mail not recieving new mail or being able to send, and having to force quit safari when I shut down imac. these are tempoarily resolved when I go through the above process.
    This is the first recurring problem I have had in a lifetime of Mac use.
    Any clues on how to fix?
    Cheers
    Rob

    I figured out how to solve the problem. I guess the JavaScript engine in Safari is more robust. IWeb wraps HTML snippets in more JavaScript. I updated the webpage to include the original JavaScript from PollDaddy and the poll now works. Here's the URL:
    http://somerville-cya.dyndns.org/Activities.html
    Notice 1) I modified the original iWeb code to include my own javascipt effect. 2). The PollDaddy code is shown directly in the page while other snippets are in their original iWeb form.

  • Creating ETRS 89 co-ordinate system

    hi ,
    Has anybody created ETRS 89 (European terestrial refrence system 1989) in oracle ??
    where can i find the values for ellipsoid,datum and other values in WKTEXT field in mdsys.cs_srs.
    thanks
    vikesh

    try following:
    this is the projection system for ETRS89 based on the GRS80 which is described in "Longitude / Latitude (NAD 83)";
    This will work for UK and parts of western europe; please remind:
    6 deg stripes; middle meridian for stripe 31 by 3 deg; for stripe 32 by 9 deg and so on...
    INSERT INTO CS_SRS VALUES
    ('ETRS89(31), ITRF Zone 31 (GRS80)', 600000, 600000, 'Oracle',
    'PROJCS["ETRS89(31), ITRF Zone 31 (GRS80)",
    GEOGCS [ "Longitude / Latitude (NAD 83)",
    DATUM ["NAD 83",
    SPHEROID ["GRS 80", 6378137.000000, 298.257222]],
    PRIMEM [ "Greenwich", 0.000000 ],
    UNIT ["Decimal Degree", 0.01745329251994330]]
    GEOGCS [ "WGS 84",
    PROJECTION ["Transverse Mercator"],
    PARAMETER ["Scale_Factor", 0.999600],
    PARAMETER ["Central_Meridian", 3.000000],
    PARAMETER ["False_Easting", 500000.000000],
    UNIT ["Meter", 1.000000000000]]')

  • Learning Co-ordinate System - Problem

    Hi
    I created a sample project to epxlain my problem.
    There are two canvases in the main application. outerspace canvas and innerspace canvas.
    innerspace canvas has a visual component "mainBox"
    and there is also a visual component in outerspace canvas named "overBox"
    now i want user to map the x-xis and y-xis of overBox to mainBox, so when user will click re-arrange, overbox will completely cover the mainBox.
    This is actually a problem of different co-oridatane systems and i dont know how to map them into one.
    Here is the code.
    Application File
    <?xml version="1.0" encoding="utf-8"?>
    <mx:Application xmlns:mx="http://www.adobe.com/2006/mxml" layout="absolute" xmlns:ns1="*">
         <mx:Script>
              <![CDATA[
                        private function arrange(event:MouseEvent):void{
                             var point:Point = mainBox.localToGlobal(new Point());
                             overBox.x = point.x;
                             overBox.y = point.y;
              ]]>
         </mx:Script>
         <mx:Canvas width="80%" height="80%" horizontalCenter="0" verticalCenter="0" id="outerSpace" backgroundColor="#A9A9A9">
              <mx:Canvas width="80%" height="80%" horizontalCenter="0" verticalCenter="0" id="innerSpace" backgroundColor="#8DB5FF">
                   <ns1:Node horizontalCenter="0" verticalCenter="0" width="100" height="100" id="mainBox">
                   </ns1:Node>
              </mx:Canvas>
              <ns1:Node x="21" y="10" id="overBox" width="100" height="100" backgroundColor="#FFA352">
              </ns1:Node>
         </mx:Canvas>
         <mx:Button label="Re-Arrange" click="arrange(event)" left="10" top="10"/>
    </mx:Application>
    Project is also attached.
    Thanks

    Just see below. But it won't work if you resize the view, as one is centered
    private
    function arrange(event:MouseEvent):void
    // Get mainbox coord in local system - i.e. relative to innerSpace
    var p1:Point = new Point(mainBox.x,mainBox.y); 
    // Convert it to global coord from innerSpace
    var p2:Point = innerSpace.localToGlobal(p1); 
    // Convert it to local coord - relative to outerSpace
    var p3:Point = outerSpace.globalToLocal(p2); 
    overBox.x=p3.x;
    overBox.y=p3.y;

  • Interaction iExpense with a thierd system

    I am searching technical informations concerning the integration of iExpense with a third system.
    The required goal is to be able to create automatically in iExpense an expenses note and pre-populate the corresponding lines concerning the expenses carried out in the third system.
    Thus, the user does not have any more that to fill the expenses made in addition. I know that this system is already used by credit card integration : the statement of the purchases makes by credit card is used to create an expenses note in iExpense avoiding a recapture of the infos.

    Thanks for posting your problem and investigation, I came across the same issue and built upon your research. 
    From it, I found a solution to the problem involving controlling the serialization of the EclipseLink OptomisticLockException via the PropertyProxyRegister/BeanProxy classes, and specifically omitted the SESSION and QUERY atributes which seemed to be the offending classes causing the Runtime exception.
    I posted details over here: http://www.eyelock.net/blog/post.cfm/controlling-serialization-of-java-objects-in-lcds-or- blazeds

  • Flex co-ordinate system

    Hi,
    I have a vbox of size 100, 100. When I mouse over that vbox, I'm able to read the x, y coordinates of the mouse pointer.
    How can I get the coordinates of the vbox.

    You can find the answer here
    http://livedocs.adobe.com/flex/3/html/help.html?content=containers_intro_5.html
    It explains very well how you can find your components coordinates.

  • BPM - Interact with external system

    Hi Experts,
    We are implementing a project with BPM Suite Version 1.1.1.6 (PS5). A requirement is the following things:
      - The BPM process begins through a human task.
      - Upon completion of the human task, the flow must interact asynchronously with an external system through a webservice. The BPM system sends data to external system.
      - The user interacts with the external system and runs a couple of tasks.
      - After completing the activities in the external system, the BPM should be receiving an event to continue with the main flow was in wait.
    The question is....as an external system can reactivate a BPM process that is in wait hoping the event.
    Thank you very much.

    Investigate the use of the Call activity. If the external process is long-running, you might use a Service activity in conjunction with correlations.

Maybe you are looking for

  • Hypertext in PDF Issue

    Hi all, I am experiencing an error when trying to add hypertext to my FM Book. In the first iteration of this book, I had successfully added hypertext as to "click" and bring up a different page of the book, a page being a FM Document. Now, I have ad

  • F.05 Foreign Currency valuation not posted automaticall to GL account.

    Hi, When we are running F.05 the GL account  3170700 u2013 Gds Recd not Invoiced GRAN is not posting automatically. Though the GL account is matained in TO30H table and included in the variant that using for F.05 run. Kindly help me to understand wha

  • Check partner authorization field

    Hello Gurus,        The check partner authorization field is used to determine which partners are authorized to release against a contract. Should no check be performed, you may leave the field blank. where to set this check partner authorization fie

  • Format Equations for Export to e-pub?

    I am using MathType in Pages '09 for export to e-pub.  I am using the Apple supplied template, but the formatting appears in the e-pub document all fouled up.  Can anyone help? (Design Science refers me to Apple for help, but the Apple support on Pag

  • Regarding currency comaprison in select statement

    Hi,      I am tring to compare currency field in the selct statement with GT, LT symbols. Its going for dump. My selct statement is SELECT SINGLE * FROM ZMM_SIGN_AUTH INTO           itab WHERE AMOUNT1 LT ITAB_IN-VALUE          AND AMOUNT2 GT  ITAB_IN