Can I call any ActiveX control in the Forms under Oracle EBS 11.5.10 ?

Hi All,
I have a custom form that works under EBS 11.5.10 (Windows Envoirnment). Is there any way for me to call an ActiveX control on this form? My requirement is to show a URL ( a web application) in Microsoft Web Browser.
I can successfully call ActiveX outside of the EBS i.e as forms runtime.
In EBS I get FRM-41344 OLE object not defined for <<block item>> in the current record and then FRM-40735 for exception ORA-305500.
WEB.SHOW_DOCUMENT is an option to accomplish but ActiveX will provide more control and better look and feel.
Thanks,
from Houston.

Hi;
Please check below and see its helpful:
ActiveX controls in Oracle Forms
ActiveX controls in Oracle Forms
Forms 6i to Oracle9i Forms Upgrade Reference
http://www.oracle.com/technology/products/forms/pdf/forms_upgrade_reference.pdf
Please also check:
http://www.oracle.com/technology/products/forms/htdocs/forms904FAQ.html
R12: Publish via Report Manager, Activex Component Can't Create Object [ID 788958.1]
Hope it helps
Regard
Helios

Similar Messages

  • Running a process prevent calling any service control in the application

    I created a process project which chained a few web services. I also created a HelloWorld service which is not related to the process at all. I then created a pageflow in the web project. The pageflow calls the HelloWorld service control.
    The problem I met is the after I run the process, I could not run the pageflow. The below exception is thrown. The domain I was running is a portal domain extended with Integration configuration. Any solution, clue ....
    Thanks in advance.
    <b><i>An error has occurred:
    An exception occurred in the action hello
    EJB Exception: ; nested exception is:
    com.bea.control.ServiceControlException: SERVICE FAULT:
    Code:java.io.FileNotFoundException
    String:Response: '403: Forbidden' for url: 'http://localhost:7001/AlertSrv/alert/HelloWorld.jws'
    Detail:
    END SERVICE FAULT
    caused by: : com.bea.control.ServiceControlException: SERVICE FAULT:
    Code:java.io.FileNotFoundException
    String:Response: '403: Forbidden' for url: 'http://localhost:7001/AlertSrv/alert/HelloWorld.jws'
    Detail:
    END SERVICE FAULT</i></b>

    Thanks to Scott for correcting Manish's misdirection. I went looking for that option, didn't find it! :-/
    I had created an application process to run "On New Session After Authentication" but I found it was actually running when the <strong>Login</strong> page was being displayed (I had the process write to the database each time it was run), before the user actually logged in. So it didn't know who the user was yet, which is needed to run my process. Ouch!
    Since we're planning to change the authentication method for production, I'd really prefer to define an after-authentication process, but I guess I'll have to drop the code in the Authentication method's Post-Authentication Process.
    - Stew

  • I have a canon 7d and my aperture version 3.4.5 is not recognizing the raw format? The Can not review any raw photo in the adjustments/raw fine tuning controls.

    I have a canon 7d and my aperture version 3.4.5 is not recognizing the raw format? The Can not review any raw photo in the adjustments/raw fine tuning controls.

    When i click on the adjustments everything is grayed out and the messages states " Image Not Found'.
    Are you seeing broken arrows or yellow warning triangles, when you enable badge overlays?
    That looks, like your original image files were missing.  Are your images referenced or managed?
    Create a smart album with the rules "Files status is missing" or "Files status is offline". This will show you any images, where the original raw files cannot be found.

  • Is it possible to call a activeX control from PL/SQL...?

    Hi all,
    Is it possible to call a activeX control from PL/SQL...? If yes, please give me sample code or any link.
    Thanks,
    Pal

    The LoadLibrary() Win32 call is used to find the physical DLL and load it into memory. This API call first look in the current directory for the file, and then uses the PATH environmental variable to try and find the file.
    Thus you need to make sure PATH is properly set. A Win32 process runs in a 32bit VM (Virtual Machine). Been a very long time since I did Windows server side development, but as I recall this VM inherits the default o/s environment (unlike Unix where the parent process environment is inherited).
    You can set the environment using the Properties menu of the System desktop icon (or via Control Panel).
    However.. Oracle does not run as your user. Typically it is installed as the o/s user Oracle and this user owns all the Oracle processes (listener, instance, etc).
    So you will need to make sure that this user's environment is correctly configured... Further more than this, I'm out of my depth. Did a lot of Windows stuff back in the 90's, but for many years now I'm only using Unix/Linux professionally - with Windows being my console platform for playing games at home. :-)
    On the Linux/Unix side, I configure the environment variable via the Listener. E.g. Under the entry SID_LIST_LISTENER, I configure the external procedure handler as follows:
    (SID_DESC =
    (SID_NAME = PLSExtProc)
    (ORACLE_HOME=/tjs-dev/app/oracle/product/10.2.0)
    (PROGRAM = extproc)
    (ENVS = "EXTPROC_DLLS=ANY")
    )No idea how this applies and works on the Windows side.

  • Why i'm getting exception InvalidOperationException: Invoke or BeginInvoke cannot be called on a control until the window handle has been created ?

    I have a backgroundworker1 dowork event and inside:
    private void backgroundWorker1_DoWork(object sender, DoWorkEventArgs e)
    BackgroundWorker bgw = (BackgroundWorker)sender;
    if (bgw.CancellationPending == true)
    return;
    else
    this.BeginInvoke(new MethodInvoker(delegate
    timer1.Stop();
    Button1Code();
    timer1.Start();
    trackBar2.Enabled = false;
    trackBar1.Enabled = false;
    while (true)
    bitmaps = ImagesComparison.get_images_with_clouds(b1);
    for (int i = 0; i < bitmaps.Length; i++)
    ConvertTo1or8Bit.BitmapToGIF(bitmaps[i], @"c:\convertedgifs\" + i.ToString("D6") + ".gif");
    break;
    The exception is on the BeginInvoke part.
    In the last few days i was running the program many times and i didn't have this exception even once.
    And now every times i'm running it i'm getting the exception.
    System.InvalidOperationException was unhandled by user code
    HResult=-2146233079
    Message=Invoke or BeginInvoke cannot be called on a control until the window handle has been created.
    Source=System.Windows.Forms
    StackTrace:
    at System.Windows.Forms.Control.MarshaledInvoke(Control caller, Delegate method, Object[] args, Boolean synchronous)
    at System.Windows.Forms.Control.BeginInvoke(Delegate method, Object[] args)
    at System.Windows.Forms.Control.BeginInvoke(Delegate method)
    at mws.ScanningClouds.backgroundWorker1_DoWork(Object sender, DoWorkEventArgs e) in d:\C-Sharp\Download File\Downloading-File-Project-Version-012\Downloading File\ScanningClouds.cs:line 715
    at System.ComponentModel.BackgroundWorker.OnDoWork(DoWorkEventArgs e)
    at System.ComponentModel.BackgroundWorker.WorkerThreadStart(Object argument)
    InnerException:
    Line 715 is: this.BeginInvoke(new MethodInvoker(delegate

    Where are you starting the background worker from?  Possibly the constructor of the form?
    It would be greatly appreciated if you would mark any helpful entries as helpful and if the entry answers your question, please mark it with the Answer link.

  • Roxio MyDVD Basic v9 installer when I run any ActiveX Control in Excel.

    I built a pop up calendar to insert dates. It works perfectly except that the first time I try to run it after opening the spreadsheet, it launches an installer for Roxio MyDVD Basic v9. I always cancel it and the macro still works as intended.
    Now, this wouldn't be a big problem if I was the only person using the spreadsheet file. Since I'm distributing this as a template to coworkers, I don't want them to freak out when this happens, so I'd rather just stop it from trying to launch Roxio MyDVD.
    I've figured out that it has to do with the Microsoft MonthView Control I used in creating the macro being an ActiveX control. I know this because I can open up a new excel workbook, go to VBA and create a new UserForm. As soon as I place an ActiveX control into the blank UserForm1, the installer for Roxio MyDVD launches. I let it run its course, but it cannot complete the install because the "resources needed are unavailable" on our network. I'd rather not have it run at all. Understandably, our network security is pretty high, and I assume my security settings don't allow it. Since the function I use still works without this installed, I don't get why it keeps reaching out to get it. Nor do I know how to stop it.

    Fixed it.
    Attached is the complete export given by Microsoft System Information. It provides a lot of information and if you need more then let me know.
    Luckily, it seems that MsiInstaller has been reporting errors to Windows while it flickers. You'll find these in the system report and they helped me track down the problems. The errors stemed from this:
    Detection of product '{518930BE-7875-4547-B026-20B92F695781}', feature 'DataSocket.LVW71RTE' failed during request for component '{FC3E0B6E-F62B-11D1-B144-00C04F990B2B}'
    For some reason, it was trying to install these things and it began to fail after the software was uninstalled because the keys it was looking for no longer existed.
    I also found a lot of what looks like data c
    orruption related to NIDAQ stuff in my registry. For instance, many of my Microsoft common controls (like TabStrip) contained a value named InprocServer32 within their InprocServer32 key that had not previously existed. As random as it looks, the value always contained the following string:
    G!P5BM[^==)9LRdDWOXQDataSocket.LVW71RTE>j^8!E}1.(?​KY(JMzo[{A@-HK,BS+T93)NrWc5@!pDataSocket.LVW16>j^8​!E}1.(?KY(JMzo[{A
    Note that the same string "DataSocket.LVW71RTE" as in the error is contained in there.
    Also, deep in the registry there was this key:
    HKLM\SOFTWARE\Microsoft\Windows\CurrentVersion\Ins​taller\UserData\S-1-5-18\Products\EB03981557877454​0B62029BF2967518\Features
    ...that appeared to contain all sorts of gibberish. I have attached an export of that key as well. For example, the value ActiveX.LVW71RTE was set to:
    J$YfbexG-?m!AbH6US{*Msu*X]isJ9X{tiy(&XkvRun_Time_​Engine.LVW71RTE
    I can't tell you what was the exact cause of MSVC6 always trying to install these thing
    s and, for all I know, that "gibberish" is actually meaningful, encoded data but deleting those whacked out keys has eliminated the issue.
    Attachments:
    sysinfo.zip ‏41 KB
    wtf.zip ‏4 KB

  • Can we call any kind of database sequence from OEDQ

    Hi Guys,
    Please let us know whether a oracle database sequence can be called from OEDQ? If yes then how? Please let us know how can we call any shell script/PL/SQl package from OEDQ. Your help is appreciated.

    Hi Mike,
    We have written a small script to call package in Oracle from OEDQ using Script Processor. Below is the script:
    #! language : groovy
    import groovy.sql.Sql
    import oracle.jdbc.driver.OracleTypes
    Sql sql = Sql.newInstance("jdbc:oracle:thin:@xxxxx.msd.ihost.com:1523:TTTTT","USERNAME","PWD",
    "oracle.jdbc.driver.OracleDriver")
    sql.call ('{call seq_upd.test_proc}')
    output1='Updated Successfully';
    We tried by hard coding the username and password and the script is successfully calling package at Oracle side. We would like to know whether there is any option to receive password dynamically using reference that can be passed as an attribute or any prompt possible in OEDQ or any alternative available.
    Please advice.
    Thanks in Advance,
    VT

  • Can I call any network's provider number in Cyprus...

    Can I call any network's provider number in Cyprus by buying Pay monthly package?! Like MTN, Cytamobile-Vodafone, PrimeTel, Mobee and etc. ?! And if I can is it the same rate for every network mentioned? 
    Thanks for your time
    Solved!
    Go to Solution.

    Hi,
    Yes, you should be able to call any landline or mobile number in Cyprus with the subscriptions that we have on our website.
    If you have a subscription, you will not be charged a per minute rate. The duration will simply be deducted from your available minutes.
    To check our available subscripitons to Cyprus, please visit this link: http://www.skype.com/en/rates/
    In the searchbox, type in the country of your choice and the list will be displayed. You may also find our per minute rates (distinct for landlines and mobiles) on the same page.
    Hope this helps.
    Did my reply answer your question? Mark it as a solution to help others, Thanks.

  • Is there a way to get a version of the Garage Band app that runs on version 5.1.1?  I have an iPad 1 and can't get any higher iOS.  The App store is telling me that Garage Band only runs on iOS 7.

    Is there a way to get a version of the Garage Band app that runs on version 5.1.1?  I have an iPad 1 and can't get any higher iOS.  The App store is telling me that Garage Band only runs on iOS 7.

    Unfortunately the answer is still no.

  • I can't print any web page. after the print command, it wants to save xps files. on cannon printer. vista system

    can't print any web page. after the print command, it wants to save as a xps file.
    == This happened ==
    Every time Firefox opened
    == after up grade to 3.6.6 ==
    == User Agent ==
    Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.0; Trident/4.0; SLCC1; .NET CLR 2.0.50727; Media Center PC 5.0; .NET CLR 1.1.4322; .NET CLR 3.5.30729; .NET CLR 3.0.30729; .NET4.0C)

    I found that Firefox/XPS had deleted all printer driver setups except for the XPS connection. I had to reinstall my printer connection in order to have that selection present in the printer dialogue box.

  • I would like to upgrade my OS from 10.6.8. I can't find any higher version on the site. Yosemite is the latest but not available. Can someone help please?

    I would like to upgrade my OS from 10.6.8. I can't find any higher version on the site. Yosemite is the latest but not available. Can someone help please?

    If Yosemite is not available to you, your system may not meet the minimum requirements.
    How to install OS X Yosemite on your Mac - Apple Support

  • Since upgrading to windows 8.1 I can not see any local files in the files window.

    I have recently upgraded to windows 8.1 and can no longer see my local files in the files window. All remote files for all remote sites are visable.
    If I change sites under local view get error thet dreamweaver can not update cache

    Thanks Nancy
    It certainly worked in windows 8.
    I have deactivated and am trying to reload software inside of windows 8.1.
    Will let you know.
    Thanks again
    Terry
    Date: Fri, 1 Nov 2013 12:13:57 -0700
    From: [email protected]
    To: [email protected]
    Subject: Since upgrading to windows 8.1 I can not see any local files in the files window.
        Re: Since upgrading to windows 8.1 I can not see any local files in the files window.
        created by Nancy O. in Dreamweaver support forum - View the full discussion
    I honestly don't know if DW CS5 is compatible with Win 8.1.  The OS compatibility FAQ only mentions DW CS6 & CC.
    http://helpx.adobe.com/x-productkb/global/windows-8-1-compatability.ht ml
    Maybe someone else can shed more light on this.
      Nancy O.
         Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/5807551#5807551
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/5807551#5807551
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/5807551#5807551. In the Actions box on the right, click the Stop Email Notifications link.
               Start a new discussion in Dreamweaver support forum at Adobe Community
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • I can't add any more columns. The option is suddenly greyed out.

    I can't add any more columns. The option is suddenly greyed out.

    Allen,
    Actually, there is a TRANSPOSE Function, but no Command or Tool for that. It's one of the more useful and popular omissions in Numbers. Perhaps because it falls into the "didn't plan ahead so now I need a tool" category of features, it didn't make the cut.
    Use of the Transpose Function is described in the Function Browser, the Help feature and in the Functions of Formulas User Guide PDF. It involves using the INDEX function to read out the array created by the Transpose function. Another way to do this is to use the OFFSET function in an expression and by exchanging the row and column references.
    Yvan Koenig has written an Applescript that will automate the transposition for data and for certain simple expressions. You can get it from his Box Account, on this page.
    Jerry

  • Hi! I need to cancel my membership plan for the creative cloud but I can't find any contact different from the live chat. I MUST cancel it before March 22nd. Please help me!

    Hi! I need to cancel my membership plan for the creative cloud but I can't find any contact different from the live chat. I MUST cancel it before March 22nd. Please help me!

    This is an open forum, not Adobe support... You need Adobe support to cancel a subscription
    -start here https://forums.adobe.com/thread/1703848
    -or by telephone http://helpx.adobe.com/x-productkb/global/phone-support-orders.html
    --and two links which may provide more details, if the above links don't help you
    -http://helpx.adobe.com/x-productkb/policy-pricing/return-cancel-or-change-order.html
    -http://helpx.adobe.com/x-productkb/policy-pricing/cancel-membership-subscription.html

  • I've recently upgraded to Lightroom5.7.1 and now when I try to import photos a window pops up saying 'the photos can't be imported 'cos the files can't be read'. I had no problems before upgrading. I have Windows8 & can't find any 'app' which sets the typ

    I've recently upgraded to Lightroom5.7.1 and now when I try to import photos a window pops up saying 'the photos can't be imported 'cos the files can't be read'. I had no problems before upgrading. I have Windows8 & can't find any 'app' which sets the type of files I can import. Any help appreciated.

    Well, think about it. This is a Lightroom forum. We are here to answer questions about Lightroom and how to solve problems in Lightroom. Your permissions issue is an operating system issue, not a Lightroom issue. I didn't mean to be sarcastic. But there are plenty of Internet resources that will answer that question.
    I just went to Google and typed in "change disk permissions", and there are links for the Mac as well as for Windows listed. There's no sense in me rewriting instructions that are already available.

Maybe you are looking for

  • M4500 4.1 speakers connectivity to DVD player

    HI friends, I am using creative 4.1 speakers. Recently i brought Godrej dvd player. I tried to connect the woofer and speakers to thedvd plaeyer. But i am not able to connect Woofer to the dvd player. So is there any alternative for connecting it to

  • PL SQL Procedure to validate the data before inserting

    Hi All, I have a PLSQL procedure that validates the data and also inserts the data into the table. That procedure must be run to validate each row to be inserted. My doubt is how to reference that procedure within the interface of ODI. After reading

  • Double.parseDouble(String) : Problem to parse large String

    Hello, I need to convert A String to a Double in my application without rounding of digits. I have used the Double.parseDouble(String) method. The maximum string length can be 17 including dot(.) So if my String is (of length 17) Eg. S= �9999999999.9

  • SVG chart: length of axis-labels

    Apparently there is a limitation on the length of x- or y-axis labels for a SVG chart. Does anybody know how to display axis labels that are larger than 15 characters? Is there something that you can do with the CSS to increase the limit?

  • Box says " Windows cannot find (site) Please check spelling.......then Mozilla finds it

    Irritating box shows whenever I go to a web site. I have re-set IE, re-installed Firefox, got rid of Google Tool bar, checked extensions and got rid of some, everything I can think of. Read article on problem, followed instructions, etc etc, all to n