Forms Logon box

I am new to Oracle Forms. I have the need to create the logon box that Oracle forms applications display for testing a single signon package I am developing. I am not really sure where to start or what Oracle tools I need. I just need to create the logon on my XP box, I really do not need any database backend. If there are any pre build sample applications that display a logon that would great.
Thanks for any information.
Dave

I have a customer that is using what I believe is an Oracle Form application. It is a Swiss bank and they will not provide me direct access to the app. The reason I believe it is an Oracle Forms app is I have utility to identify controls of a dialog and it returns "Oracle Forms Runtime" as the parent window. The logon window appears as a WIN32 app with controls with class names of ui60Modal_W32, ui60Drawn_W32. and standard Edit controls which leads me to believe it is not an Java application. The SSO product analyzes the windows and using WIN32 postmessages to communicate with the dialog. I was hoping to find asample application simular to this logon for testing our product.
Dave

Similar Messages

  • Supress default logon box after invalid logon via SSO

    Hi,
    We are using SSO to authenticate to the database. If the SSO authenication fails, Oracle Forms automatically brings up the default logon box. For example -
    A user registers and their userid and password are stored in the OID. The user's password is then reset by a DBA. The next time the user tries to access the application, the credentials stored in the OID are incorrect. The on-error trigger in the form fires and brings up an error message. Then the default logon box pops up. I would like to just display a message and then exit the form. I do not want the user to have the option to enter a userid and password. I have tried putting an exit_form in the on-error trigger, but it says that exit_form is a restricted procedure. No other triggers fire before the default logon box pops up.
    Does anyone know how I can supress the default logon box?
    Thanks,
    Kim

    Hi Caíque,
    Yes, we allowed pop-ups  and cokies in the browser and disabled the firewall.
    When we click a button on the CRM UI in internet explorer, the error message is
    -Invalid argument
    "http://acsmrcrm03.com:8000/sap(====)/bc/bsp/sap/bsp_wd_base/popup_buffered_frame_cached.htm?sap-client=100&sap-language=EN&sap-domainRelax=min"
    -Object does not support this property or method"

  • Hello all.   Hope someone can help me. I recently downloaded some  updates for my imac.  Since doing this the computer starts up but I get no logon box.  The home screen opens but I can't open any programs or files. I've tried rebooting, no joy. Help!!

    Hello all..   I hope someone here can help.  I recently downloaded some updates to my imac.  Since then the computer starts but I get the home screen opening without the logon box.    I can't open any programs or files and if I click on the Safari tab it disappears from the dock.  I've tried rebooting with no joy.
    I contacted technical help at Apple and was told to hold down the ctrl and alt keys with two other keys, I think the S or P keys when powering up. This worked
    and the computer seemed fine but now the problem has reappeared.  Is there a way to removed downloaded updates from the computer or revert it to an earlier state?   Sorry for the long question. Hopefully one of you clever people can help.   Simon

    Clntxwhtby wrote:
    Hay thank you for your time . I do that every time I know I am online. It says that I am up to date . I have found that I have 10.4.11 version, and that my boot version is 10.6.2, and that my kernel version is 8.11.1.
    I have a hard drive icon on my desktop that says 10.6.2....
    I use to have iphoto, it doesnt open anymore, it says there is 1.2gigs on that disk.There are many things on here that are the same way. Where do I start?
    It's always good to go with one thing at a time and stay focused on that. Let's start with the OS you're running. Click on the Apple menu > About This Mac. What does it say under Mac OS X version ?

  • In a FORM search box that i have data saved, how can I go and see what is saved and edit it?

    In a FORM search box that i have data saved, how can I go and see what is saved and edit it? Sometimes when I'm doing maintenance it all gets deleted and I would like to be able to see what I have saved before it gets deleted.

    Try this - Form History Control extension: <br />
    https://addons.mozilla.org/en-US/firefox/addon/12021/

  • Form is not working of multiple form check boxs, source posted. HELP.

    Form is not working of multiple form check boxs, source posted. HELP.
    I'm trying to have golive form be able to check one, two or all of the options in Graphics field.
    As is it will only post results from the last checked box.
    Here's the page
    http://www.perfection-press.com/Pages/ContactForm.html
    Here's where source in golive has scanning,design,filesupplied.
    [code removed to fix forum topic display]

    Since the checkboxes all have the same name, the values are over-writing each other when being passed to the PHP script. The best way to fix that is to add a pair of empty square [] brackets after the checkbox names, so make the names "graphics[]" instead of "graphics". That tells PHP that the values are being passed as a list (an array) instead of a single value. As long as your processing script knows what to do from there (and it does), should solve the problem.
    By the way, I noticed that two of the checkboxes were named "graphics" and the other was "graphic" (singular). You'll want to fix that too so they're all the same.

  • Strange logon box in Portal on Purchasing tab

    Hello,
    We are just in the process of upgrading to SRM 7.0 and are looking at the Portal.  We have Portal 7.00 still, next on the list for upgrade, and we are implementing SRM 7.0 EHP 2 on NW 7.31.  We also use an F5 load balancer appliance to load balance connections to the servers.
    Anyway the strange thing is, although we have implemented certificates OK and SSO is working fine plus all links are working, the first time you click on the Purchasing tab the SRM content doesn't load and displays a logon box, the odd thing is, if you refresh the tab or click on the tab again it will load the content without any problem.  For the rest of your session you will not see the logon box but the next time you login it will be displayed again until you refresh the tab.
    It's really confusing us and we can't figure out what it could be, we've been looking at all sorts but can't figure it out.
    Anyway suggestions gratefully received as although we have a SAP call raised, they have yet to reply even on a very high call.
    Thank you,
    Daniel

    Have u implemented SSO with Exchange??
    Integration of Outlook Web Access into SAP Enterprise Portal
    Check out this document for SSO.
    Single Sign-On to a Microsoft Exchange Cluster
    Cheers!!
    Ashutosh
    Message was edited by: Jason Lax
    Update URLs of linked content

  • BC Web Form check boxes running into text

    How to fix alignment of BC web form.
    check boxes running into text.
    see screen shot

    Anything that looks bad on a website can be fixed by CSS? The best bet for you is to edit the markup of that form with the checkboxes and add a class to those checkbox input elements... for instance a class of "form-checkbox" and then in your CSS file, include this CSS code:
    .form-checkbox { margin-right: 5px; }
    or even:
    .form-checkbox { margin-right: 1em; }
    That will put a margin to the right of your checkbox input elements either 5px wide or 1em wide (which is essentially one length of your font size).
    If you don't know how to add/edit html markup to your form then you could try adding this CSS to your CSS file:
    form input[type='checkbox'] { margin-right: 5px; }
    or
    form input[type='checkbox'] { margin-right: 1em; }
    if you want to use EMs instead of pixels.  I would highly recommend learning a bit more about CSS and HTML because it would save you time posting to these forums for these simple fixes.  CSS styles your webpage's content and every web designer should know CSS and fix this issue pretty quickly.  Muse is a good tool but unfortunately it doesn't teach you the underpinnings of the web which you'll need if you want to do any sort of customization outside of what Muse or other WYSIWYG tools.
    Good luck. Let me know how it goes.

  • No rebate form in  box??

    I purchased pse8 and
    there wasn't a rebate form in the box.  Can someone tell me
    where I can get an official rebate form?

    Hi,
    I didn't purchase pse8 from a big box store, I purchase it from a small dealer on amazon.com but the rebate form was not in the box.
    There is a pdf in the pse8 forum for a copy of the rebate form but when I click on it it say, forbidden you do not have permission to access??
    I would appreciate if you could point me to where I can print out the form.  I have been trying unsucessfully to get the form since I purchased the software.  And this is the last week I will be able to claim the rebate.  emails to adobe have not been answered.
    Thanks for any help.
    Lisa
    Date: Mon, 25 Jan 2010 21:31:09 -0700
    From: [email protected]
    To: [email protected]
    Subject: No rebate form in  box??
    The rebate specifically excludes, Walmart, Sams Club, Best Buy, Office Max, BJ's, if bought from one of those stores. Those stores have a deal with adobe where the rebate is already built into the store price.
    If not, see this thread:
    http://forums.adobe.com/message/2310360#2310360
    >

  • Form Check boxes are showing up as symbols with 11.0.03

    Form Check boxes are showing up as symbols with 11.0.03.  This does not happen with previous versions of Reader.

    In Form Edit mode right click them and go to Properties - General and make
    sure they're set as Visible.

  • Get rId of Form Field boxes when printing

    Hey Guys,
    I created a Fillable PDF Form with Form fields using ADOBE Acrobat 9.0 Pro-Ex + LiveCycle Designer for Windows XP.
    My question is, when printing the form, the form field "text boxes" always show up. Is there a way to hide the boxes and just print the form without them. (The information that was filled in will still show, just the outline of the boxes won't?)
    My other question is when you create a form, is there a way to make form fields "clickable" instead of just auto-tab? Because if you mess up when filling out the form, you don't want to have to tab through the whole document just to get back to that spot. How can i fix that?
    Thanks a bunch,
    Joseph

    My fields have always been click enabled. Not sure why they would not be.
    For the form field boxes, check the properties of the boxes to see if there is an option for printout.

  • Why is the logon box for puzzles.telegraph.co.uk not responding? (it used to )

    Why is the logon box for puzzles.telegraph.co.uk not responding? (it use to to). I have to use Firefox to access this site, which I pay for.

    From your Safari menu bar click Safari > Preferences then select the Privacy tab.
    Click:   Remove All Website Data
    Then delete the cache.
    Open a Finder window. From the Finder menu bar click Go > Go to Folder
    Type or copy paste the following
    ~/Library/Caches/com.apple.Safari/Cache.db
    Click Go then move the Cache.db file to the Trash.
    Quit and relaunch Safari to test.
    If that didn't help, troubleshoot Safari extensions.
    From the Safari menu bar click Safari > Preferences then select the Extensions tab. Turn that OFF, quit and relaunch Safari to test.
    If that helped, turn one extension on then quit and relaunch Safari to test until you find the incompatible extension then click uninstall.

  • Contact form check boxes will not work on a Tablet

    Hi there,
    I created a website (Desktop) and a mobile version (Phone).  I did not create one for a tablet but have relied on the Desktop version if someone views it on a Tablet.
    Here's the thing, I created a contact form with checkboxes.  It works great on a desktop (because people check the boxes with their mouse), however, it doesn't work on a Tablet, when you try and check the boxes with your finger.
    Help!

    Please share the site URL.

  • No text in form text boxes

    I have been sending out forms to be filled out in Adobe. So far, most of them come back with no issues. But recently, I have started to get them back where the text in the text boxes doesn't show up unless I click in the box. The text doesn't print when the form is printed, so that is a problem. I did some digging and it seems that the problem stems from people filling out the form in Preview mode as opposed to the regular Reader mode. So my question is two-fold.
    1. Is there a way to make it so that the form cannot be filled out in Preview mode, but will prompt the user to open it up in Reader?
    2. How can I fix the forms I already have? I read something about importing and exporting the form data, but I cannot see where to do that.
    I am using Adobe X Pro on a Mac, and I am NOT a power user, so please be very detailed in your answers about where I find commands.
    Thank you,
    Michele

    I figured that much out.
    My question was how do I prevent these problems? I saw another discussion (over a year old) that said something about importing and exporting the data, and another answer that mentioned turning off the ability to fill out the forms in Preview.
    So my questions were how to actually perform those "fixes" since I can't seem to find any sort of 'import/export/ command in Adobe Pro X nor can I find anything about locking the form from being filled out in Preview mode.
    Thank you.

  • Can I shrink the size of a form text box based on the content?

    We are helping a customer migrate from some MS Word forms to use pdf forms.  We are screenscraping the data from an AS400 green screen system and populating these new pdf forms with data.  however some of the text boxes are in the middle of a sentence and the text box needs to be large enough to fit 50 characters but there are many times when the data we are entering is much less than 50.  The resulting document looks very strange with all of that extra white space in the middle of a sentence due to the size of the text box.
    So can we somehow shrink the size of the text box to fit the number of characters in the box?
    I considered making the box smaller and setting the font size to auto but I think that would look even more strange to have a word with smaller font in the middle of a sentence.
    Thanks,
    Trent

    Sorry, I should have mentioned I am using acrobat professional 9.  I see that I can change the size of the text field when I am designing the form but what I don't see is how to dynamically change the size of the text field based on what data is put inside it.
    Thanks,

  • Creation of datasource  form combo box in SAP Business One SDK

    Hi,
    How to create  the  user datasource for  combo box in SAP Business One SDK.
    Regards,
    Y.

    Hello freind
    yu can used following code for userdatasource when form loaded
                Dim Branch  As SAPbouiCOM.ComboBox
                oform.DataSources.UserDataSources.Add("Ebranch", SAPbouiCOM.BoDataType.dt_SHORT_TEXT, 25)
                Branch = oform.Items.Item("3").Specific
                Branch.DataBind.SetBound(True, "", "Ebranch")

Maybe you are looking for

  • Since I upgraded my Verizon Iphone 4 to IOS 5.....

    I have no:           access to the camera from the lock screen.           italics, bold and fonts in the mail app           annual view in the calendar What is wrong?

  • Feilds require in RFC sender Communication Channel

    My scenario is RFC to webservice The scenario is in X13 server(system No.01)and RFC is in X32(system no:00) For proceeding in this scenario i require following parameter Please do help me with this same: 1) application server(gateway) 2)application s

  • IPhone 3g S Video to Computer

    Does anyone know if video captured on the new iPhone 3G S be transferred to a PC Computer to be edited and burned to a DVD? Also, would the quality be acceptable or no? Thank you, Eric

  • Changing SSH default port from 22 to 8080

    Hi all, I have deployed SSH on my home solaris 10 x86 machine and it was working fine through the default port 23. But the problem is that i can't connect to it from work as the firewall blocks outgoing SSH traffic. So i want to change the default po

  • Calendar alarm tone 6230i

    Hi, I'm sorry if this subject has been covered elsewhere; I did check and couldn't find a direct reference. Question is: On a 6230i (an excellent 'phone) how do you change the calendar alarm tone. The default setting is very melodic but is 1. not lou