How to enable option Run - Event profile

Hi,
I want to use option Run -> Event profile, but it's disable. What should I do, to enable it?
I use JDev version: 10.1.3.2.0.4066 on Windows XP.
thx

Hi,
I found the solution. I change the project properties in Run/Debug configuration. I change the Virtual Machine to ojvm.

Similar Messages

  • How to enable optional classes

    Hello!
    I wrote a program with JDK 1.1.8 which uses java.awt.MenuBar. It compiles fine but gives me an UnsupportedOperationException at MenuBar at execution. I learned from the documentation that the menu-components are optional in PersonalJava. My goal is to run the application on Jeode for iPaq which supports the menu-components. How can I notify my PersonalJava-emulator, that I whish to support this components?
    Thanks!
    Richard

    Interesting. I am getting my menu's using Sun's Personal Java JVM.
    Try on iPAQ itself.

  • How to enable only one resource profile outof 3 while disabling user in OIM

    Hello,
    I have 3 resource profile for AD user with 3 diffrent IT resources.
    When i try to disable the user in OIM, then it disables all the resource profiles attached for that user.
    I would like NOT to disable one of AD User Resource profile out of 3 .
    How can I do that?
    Thanks

    This is the same post as one made about a week ago.
    I would suggest the following:
    1. Create an adapter that has an input of the domain, or some other identifying attribute. In this adapter, use logic to return a response of either DISABLE or DO_NOTHING.
    2. Create a new Process Task called something like "Disable Resource Determiner". Attach your adapter you just made, and on your response codes, for DISABLE, trigger the disable task, and on DO_NOTHING, then do nothing... Set this adapter to be triggered on disable.
    3. On your previous disable task, remove the disable trigger.
    Now when your disable is triggered, you have logic to determine which target resource is being used, and then whether or not to disable the resource or do nothing.
    -Kevin

  • How to enable ABAP maaping in Exchange Profile.

    Hi Guys,
                 Where and how can I enable ABAP mapping in exchange profile?
    Regards,
    XIer

    Hi,
    See this document. It has shown how to enable it in exchange profile:
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/5c46ab90-0201-0010-42bd-9d0302591383
    Regards,
    ---Satish

  • How to enable check number from manual entry to auto running?

    Hi,
    Does anyone knows how to enable auto running of check number (in outgoing payment) for a particular bank account?
    I had tried to set it in Administration -> Setup -> Banking -> House Bank Account. In the "Next Check Number" field, i have set a check number. However, when I create a outgoing payment, in the payment means -> check tab, i select the bank and account code, the check number doesn't auto-default to next number.
    Thanks!
    sianghing

    Hi
    check this out and find your solution,
    Outgoing Payment- Check
    In outgoing payment when cheque number issue ..
                                                          gud luck
                                                                      RIYAZ

  • How to enable the Exchange 2010 Admin Audit logs in Event Viewer

    How to enable the Exchange 2010 Admin Audit(Mailbox Auditing) logs in Event Viewer.
    - Sivashankar. Please mark as answer/useful if my contribution is helpful

    Hi Siva,
    We could execute the command below to view Administrator Audit Logging settings:
    Get-AdminAuditLogConfig
    If it is not enabled, please run the command below:
    Set-AdminAuditLogConfig -AdminAuditLogEnabled $True
    In addition, here are some references for you to utilize this feature:
    Configure Administrator Audit Logging :
    http://technet.microsoft.com/en-us/library/dd335109(v=exchg.141).aspx
    Search the Administrator Audit Log :
    http://technet.microsoft.com/en-us/library/ff459262(v=exchg.141).aspx
    Regards,
    Rebecca Tu
    TechNet Community Support

  • How to continue the running process behind the model dialogue box options ?

    How to continue the running process behind the model dialogue box options like this
    In Updation of K7 user press the Cancel Button
    New dialogue box appear with Yes/No options.
    But the backend updation is going on... not Pause the updation.
    Like this how to do ?
    Please provide me code.

    I don't know, if you mean you have done your form or you have solved the problem.
    It's visible your code is only partly reflecting your screenshot, and that's okay to demonstrate the problem you have given a fine example.
    As you marked my suggestion as solution this may not be needed anymore, but here's how I modified your code and used a self made QuestionBox instead of messagebox.
    The essential part is defining a callback method and letting the QuestionBox call back there. It's not essential I used RAISEEVENT, but it's fine as it has all the behaviour and parameters needed to call back.
    Public oTestFrm
    oTestFrm=Createobject("MyForm_Model_to_NonModel")
    oTestFrm.Show
    Define Class MyForm_Model_to_NonModel As Form
    onxx = 0
    Add Object lbl_DispValue As Label With Top=90, Left = 120, Width = 50, Height=30, Caption=''
    Add Object cmd_Start As CommandButton With Top=120, Left = 120, Width = 50, Height=30, Caption='Start'
    Add Object cmd_Stop As CommandButton With Top=120, Left = 190, Width = 50, Height=30, Caption='Stop', Enabled =.F.
    Procedure cmd_Start.Click
    This.Enabled =.F.
    Thisform.cmd_Stop.Enabled =.T.
    Thisform.onxx = 0
    Do While Thisform.onxx < 90000000
    DoEvents
    Thisform.onxx = Thisform.onxx +1
    Thisform.lbl_DispValue.Caption = Transform(Thisform.onxx)
    Enddo
    This.Enabled =.T.
    Thisform.cmd_Stop.Enabled =.F.
    Thisform.lbl_DispValue.Caption = ''
    Procedure cmd_Stop.Click
    * Here, I want NO PAUSE -- (Show running numbers continuously...)
    * how to control Model to NonModel in Messagebox.
    QuestionBox('Really stop the process', Thisform, 'handleanswer')
    Endproc
    Procedure handleanswer
    Lparameters tlYes
    If tlYes && means Stop
    Thisform.onxx = 99999999999999999
    Endif
    Endproc
    Enddefine
    Procedure QuestionBox()
    Lparameters tcMessage, toCaller, tcCallback
    If Not Pemstatus(_Screen,"oForms",5)
    _Screen.AddObject("oForms","Collection")
    Endif
    oMsgBox = Createobject("QuestionBoxForm", tcMessage, toCaller, tcCallback)
    _Screen.oForms.Add(oMsgBox)
    oMsgBox.Show(2)
    Endproc
    Define Class QuestionBoxForm As Form
    Autocenter = .T.
    AlwaysonTop = .T.
    Minwidth = 200
    Add Object label1 As Label With AutoSize=.T., WordWrap =.T.
    Add Object cmdYes As CommandButton With Caption = "Yes", Width=40
    Add Object cmdNo As CommandButton With Caption = "No", Width=40
    Procedure Init()
    Lparameters tcQuestion, toCaller, tcCallback
    Thisform.label1.Caption = tcQuestion+" ?"
    This.AddProperty("oCaller",toCaller)
    This.AddProperty("cCallback",tcCallback)
    This.Width = Max(This.Minwidth, Thisform.label1.Width)
    Thisform.label1.Left = (This.Width-Thisform.label1.Width)/2
    This.Height = Thisform.label1.Height+48
    This.cmdYes.Left = This.Width/2 - 10 - This.cmdYes.Width
    This.cmdNo.Left = This.Width/2 + 10
    This.cmdYes.top = Thisform.label1.Height+24
    This.cmdNo.top = This.cmdYes.top
    Endproc
    Procedure cmdYes.Click
    #Define clYes .T.
    Raiseevent(Thisform.oCaller,Thisform.cCallback,clYes)
    Thisform.Release()
    Endproc
    Procedure cmdNo.Click
    #Define clNo .F.
    Raiseevent(Thisform.oCaller,Thisform.cCallback,clNo)
    Thisform.Release()
    Endproc
    Enddefine
    I didn't yet introduced a timer for counter display updates. As you see the counter hangs a bit, if you mouse over your form, but it is a way of multithreading without using a separate thread and instead keep the rest of the application active by DOEVENTS
    in the long running loop code.
    Bye, Olaf.
    Olaf Doschke - TMN Systemberatung GmbH http://www.tmn-systemberatung.de

  • How to enable Memory profiling?

    I created a simple empty project in Jdeveloper and created a sample standalone Class file. For some reason the Memory Profile option is not enabled. ( I have selected the class file. Even then it is not enabled.)
    JDeveloper version: 10.1.3
    JDK version 1.4.2_06 (Installed OJVM libraries)
    Thank you for your help!

    Nevermind. Just found the answer from this thread
    Profiler menu items not enabled
    Thanks.
    Yes. I am using OJC compiler instead of javac.
    Should I enable Remote Debugging and profiling? If so how to start the profiler, by default it is trying to connect port 8000 on localhost. Am I doing something wrong?
    Message was edited by:
    saro28

  • How do I delete an event on ical when there's no edit option, it reads details?

    I'm trying to delete an event in iCal on my iPad but where it usually reads edit it reads details and in details theirs no delete option. How can I delete this event?

    Is it an event that you added?

  • How to restrict Option values for a particular metadata in profile checkin

    How to restrict Option values (drop down) for a particular metadata in profile checkin-
    Metadata field Color is having options dropdown values (stored in table/views)-
    Display name - Blue, Value=1
    Display name - Red, Value=2
    Display name - Yellow, Value=3
    Display name - Green, Value=4
    Display name - Black, Value=5
    For a particular profile checkin form, for the metadata field Color I want the dropdown value consist of only top three options
    Display name - Blue, Value=1
    Display name - Red, Value=2
    Display name - Yellow, Value=3
    But this should be done on profile level only, should not impact the standrad checkin form and other profile checkin forms.
    Please help me if any one having any suggestion to implement the above secnario
    Thanks,
    Sumit

    Hi,
    Into the rule containing the Color metadata, you can restrict the values of the list.
    In "Has restricted list and pane", list the values 1, 2 and 3 (new line for each value) :
    1
    2
    3
    Romain.

  • How to enable a low privilege user to run an administrative script ?

    Hello
    I have a problem which seems to come from the lack of "sudo" in Windows.
    I want standard low privileges users to be enable to run a script that will give them a result (i-e DB status on Exchange). I don't want to give them any right, so the only solutions i think about are
     - to make a scheduled task on a server, and give them only the right to launch the task (but i'd prefer them not to be able to log on the server, so i don't like it)
     - To create a webpage (ASP.NET, i guess) that runs the script when they click a button. I'm not a dev, i won't be able to do it easily but i think i will have to.
    Do you have better ideas please ?

    Signed scripts could include authorizations to be ran from some chosen users...
    This is not possible in Windows because an process that can escalate inside of a user process allows the user process namespace to access the processes security context. This makes it possible for the process to see the credentials of the script. The password
    also has to beencoded in a way that he user can decode so it is almost the same as giving out the admin password.
    UAC is designed to protect an admin.  Bypassing authentication or merging it with a users context defeats the security.
    The closes we can come is to delegate the authority carefully or to provide a proxy service that is secure.
    Access to read the Exchange DB status can be delegated without giving admin access to Exchange.  Post in Exchange forum to learn how to set up Exchange read-only operators.
    I recommend that this should be done as a set of reports exposed through a web site.  The reports can be generated daily or more frequently.  This would be more consistent with other management scenarios.
    ¯\_(ツ)_/¯

  • How to enable the comment option in the pdf file

    Hi,
    How to enable the comment option in the pdf file using acrobat sdk[IAC, javascript],
    Give me idea on this to automate.
    If not leave it.
    Regards,
    jkrishnanvenkat

    jkrishnanvenkat,
    I can also do this from Acrobat Pro. Click Comments - Enable for Commentingand Analysis in Adobe Reader. This can not be done through the DSK or JavaScript.
    Gregory

  • How to enable the full list of developer options on A806?

    How to enable the full list of developer options
    Moderator note:Moved from http://forums.lenovo.com/t5/Lenovo-Android-based-Tablets/No-Animation-speed-options/td-p/1359241
    Edited & created a new thread.

    -Go to menu, settings,
    -about phone
    -scroll to the bottom and find "build number"
    -tap it 7 times (upon completion, it will say that you're a developer)
    -the menu is now near the bottom of the main settings menu (just above about phone)

  • USB drive in my mac is disabled. I am running OSX 10.9.2 . How to enable it

    USB drive in my mac is disabled. I am running OSX 10.9.2 . How to enable it

    A SMC reset can often get ports working if they've stopped.  If you have an iMac or Mac Pro, just unplug the power cord and wait 10-15 seconds.  If you have a notebook Mac, then it a bit trickier...here is an article from apple
    http://support.apple.com/kb/HT3964?viewlocale=en_US&locale=en_US

  • How to enable the printer option in print priview screen in script

    Hi All,
    Please tell me how to enable the printer option in script print priview screen.
    Thanks & Regards
    Murali

    hi
    the print option TDNOPRINT has to be intial  (' ').  NOT 'X'
    TDNOPRINT  CHAR  1  0  No printing from print preview
    this will do.
    Gr., Frank

Maybe you are looking for

  • How Can I Create an Event Link to a Page Tab?

    I have a portlet in one tab that generates an event. I want to be able to send this event to the same page but to another tab where another portlet resides. Here's the code snippet that creates the link. This code is part of a custom JSP tag. // Atte

  • ITunes freezing with error -50, -3259 and 9006

    Okay, so I have had a problem with iTunes freezing in relation to downloading Podcasts since around version 8.  After updating to 10.2.2 on 10.6.7, iTunes has turned into one big fail.  Downloading anything produces any of the following error codes:

  • Add the output from two documents on to a single spool request

    Hi All,   I have a situation where the Remittance output using transaction F110 goes to a spool request which triggers VF31 transaction to ouput invioices, these invoices go on to a separate spool. My requirement is that all the invoices related to t

  • Wants to run oracle reprot of FND from custom form returning an error when

    "Oracle Reports Server CGI Error: The requested URL was not found, or cannot be served at this time. Hi is there any one who can help me Message was edited by: user586296

  • 2 x 1TB hard disk in mac mini server, possible?

    Hi to all of you, I see the Mac Mini comes with 2x 500GB hard disk. Since you can now find 1TB hard disk on the Internet I was wondering if the mac mini server would support replacing the 2x500GB HDD by 2 x 1TB HDD? Anyone has tried it? Would it supp