How to creat login screen in oracle forms 10g.

Hello I want to make a login form wher a database user will connect to the application and other forms.
Must note that I have database users for login like hr, scott etc.I dont want to make users in a just table.
I want to show a beatifull screen which will be our main form and there will be a login button then a user will put its credentials and then dashboard will be open.
please guid me about this.bcz i made a form and call
f
Logon_Screen;
but its going work properly and show message raise form trigger failure.

Could share your error message?
>>Must note that I have database users for login like hr, scott etc.I dont want to make users in a just table.
what it means?

Similar Messages

  • How to use unicode fonts in Oracle forms 10g?

    Hi I am working in forms 10g for quite a long time, the software that I have developed so far are all in English language. Now I have requirements to use Bengali Fonts in Forms 10g. I am facing difficulties doing that. Please reply with help. Thanks
    Hasan Al Mamun

    Check this forum post (though that is for 6i, it would be of helpful for you)
    How to use unicode fonts in Oracle forms 10g?
    -Arun

  • How to use Java Script in Oracle Forms 10g

    Hello,
    Appreciate if anyone could help me using Java Script in Oracle Forms 10g?
    Thanks
    GM

    Thank you for your reply. I was reading on the metalink that we could use the to call the java script from oracle Forms 10g (Doc ID 265863.1)
    Example:
    WEB.SHOW_DOCUMENT ('javascript:void(window.open("http://www.oracle.com","","location=no,toolbar=no,menubar=no,status=no,"));self.close()','_blank');
    I tried it but it did not open the any window as it claims. Am I missing anything? Is there any IE related setting which I need to modify for the above to work?
    Regards
    GM

  • How to open .cmdrw file from Oracle Forms 10g

    Hi,
    We need to call *.cmdrw* file from Oracle forms 10g. Is there any way to call *.cmdrw* file from Oracle forms 10g?
    Thanks for the help.
    Viishnu Nekkanti

    In case you want to open a .cmdrw with its associated application you can use the following procedure:
    webutil_host.NonBlocking( 'rundll32 url.dll,FileProtocolHandler ' || client_filename );This works for every file where a program has been associated to its file extension. (Adobe Reader for *.pdf, Microsoft Word for *.doc, Microsoft Excel for *.xls and so on)
    Regards
    Markus

  • Login Screen in Oracle forms builder 6i

    Hello everyone
    I am trying to create a canvas with a login screen and password in oracle forms builder 6i.
    So far I have create the following table:
    CREATE TABLE PASSWORD
    (USER_ID NUMBER(3)
    CONSTRAINT PASSWORD_USER_ID_PK PRIMARY KEY,
    PASSWORD VARCHAR2(20) NOT NULL);
    Inserted the following values:
    INSERT INTO PASSWORD (USER_ID,PASSWORD)
    VALUES (1,1010);
    INSERT INTO PASSWORD (USER_ID,PASSWORD)
    VALUES (2,2020);
    Created a MENU canvas with a LOGIN button TI_USER_ID and TI_PASSWORD text boxes.
    In the LOGIN button i have inserted the following WHEN-BUTTON-PRESSED trigger:
    BEGIN
    SELECT USER_ID
    INTO :GLOBAL.USER_ID
    FROM PASSWORD
    WHERE USER_ID = :LOGIN.TI_USER_ID
    AND PASSWORD= :LOGIN.TI_PASSWORD;
    GO_BLOCK('PASSWORD');
    EXCEPTION
    WHEN NO_DATA_FOUND THEN
    :GLOBAL.COUNT := :GLOBAL.COUNT + 1;
    IF :GLOBAL.COUNT = 1 THEN
    MESSAGE('wrong');
    MESSAGE('wrong');
    ELSIF
    :GLOBAL.COUNT = 2 THEN
    MESSAGE('wrong');
    MESSAGE('wrong');
    ELSIF
    :GLOBAL.COUNT = 3 THEN
    EXIT_FORM;
    END IF;
    END;
    When i try to compile that it gives an error Bad bind variable LOGIN.TI_USER_ID
    Bad bind variable LOGIN.TI_PASSWORD
    What am i doing wrong?

    989056 wrote:
    Ok i changed the button to contain only the following:
    BEGIN
    SELECT USER_ID
    INTO :GLOBAL.USER_ID
    FROM PASSWORD
    WHERE USER_ID = :PASSWORD.TI_USER_ID
    AND PASSWORD= :PASSWORD.TI_PASSWORD;
    GO_ITEM('GO_REVIEWS');
    END;
    when i now press login it gives an error FRM 40735: WHEN-BUTTON-PRESSED trigger raised unhandled exception ORA-01403
    i tried to reffer to several items in several blocksi suspect that when you removed the exception it ends up with the no data found error. you need not to remove the exception clause try to bring that back. then try in SQL*Plus to see if your query returns any rows with the same data that you are attempting to use in your TI_USER_ID and TI_PASSWORD block item. if it does not return that is the cause of your issue it will not execute the GO_ITEM() command it will simply go to the exception clause.

  • How to create browse button in Oracle Form Builder?

    Hello all
    I'm learning Oracle Form Builder and i want to create browse button but i don' know how i do
    I hope u will help me!
    Thanks all

    <p>Configure and use the Webutil library functions. See the Webutil link from the OTN Forms home page</p>
    Francois

  • How to get machine IP in Oracle Forms 10g.

    I am using Oracle 10g form builder
    i need to get the client machine IP into a +(display Item)+ using webutil, i tried to used several codes but always am getting a null (empty) value in the box
    also i used sys_context package but i got the application server address only!!
    can anyone kindly help me in How to get the client client machine IP in Forms 10g.
    FYI* i had reviced webutil configuration after installation of 10g and i test the libarary in reading and writing image
    Kindly help me asap
    you can also reply to [email protected]
    Adel

    This is from online help about FRM-40735:
    Cause: Application design error. The current trigger raised an exception (other than FORM_TRIGGER_FAILURE), but it did not handle the exception. Action: Rewrite the trigger text to handle the exception.
    So, check your code.
    I have a form in which I use statement I gave you and everything is ok.
    Hope it helps you,
    Fabrizio

  • How to generate excel file in oracle forms 10g on client machine

    dear Sir,
    I am using just file server(installed 10g dev suite) not a oracle application server,
    I am running my application from another machine ,it running fine i want to generate excel report on client machine
    presently i m using OLE2 for fetching the data in excel , it is working fine but it generates the excel file on file server machine and i want get the output excel on the client machine. aftre OLE2 i m using CLIENT_OLE2 with webutil (instead of OLE2) its get compile successfully but during runtime it give error "oracle.forms.webutil.ole.OleFunctions bean not "found.CLIENT_OLE2.create_obj will not work"
    *so please tell me without oracle application server is this possible or not .*

    your webutil on server side is not configured
    you need to re install the webutil jacob.dll files etc. then it will work fine..
    you can also generate excel file using reports to change the destination format in SPREADSHEET

  • How to select local printer using oracle forms 10g

    Dear All
    We have developed ERP solution in oracle 10g forms & reports. and deployed on web using oracle apllication server 10g. I need help when we are giving print from oracle forms directly it goes to server default printer. instead we want
    to select local printer installed on client terminal.
    Please help us in this regards if anybody has solution.
    Thanks,

    Take a look at this:
    http://www.oracle.com/technology/sample_code/products/reports/index.html#orarrp
    And Note:167100.1 on MetaLink.
    Hope this will help.
    Thanks
    Shail

  • How to create dynamic blocks in oracle forms

    Hi All,
    Is it possible to create a dynamic blocks and items in forms? I mean based on table driven values I want to create a blocks and items in the forms.
    I appreciate the help.
    Thanks
    Srini.

    No, Here is an example.
    Say for example I have a table called docs in that I have three columns col_name, col_type, and table_name the data will look like below
    col_name|col_type|table_name
    empno|     single row|     emp
    empname|     single row|     emp
    I want to create a block pointed emp table and columns (fields on the block) with specified in my docs table. The col name and table name may change based on some rules. So I want to create block (s) based data in docs table.
    Thanks
    Srini.

  • How the handle the LOV in oracle forms 10g

    Hi All,
    Could anyone can tell how to handle the LOV error in blocks as no data is there in db..while clicking on button, the LOV message is getting continously and its not allowing me to close the screen, this makes me to forcefully close the applicaiton...
    please suggest how to handle this..
    Regards,
    Badri.

    You should ask this in the Forms forum (this is the Reports forum) and when doing that, mention your Forms version etc. Also, explain what you mean by this:
    LOV error in blocks as no data is there in dbWhat error do you get? An LOV can return no records without a problem, so you probably did not use standard LOV funtionality.
    while clicking on buttonWhat is the code behind this button?

  • How to do this in oracle forms 10g

    hi all,
    any idea about how to format a drive using oracle forms 10g and shutting down the remote pc and a personal pc using oracle forms 10g.
    i am using windows XP2 as os.
    please replay..

    Hi Inol and Weiden,
    thanks for your help,
    i have cretaed a form xyz.fmx with a button , i wrote in when-button-pressed and also attached the default webutil.pll(which is in forms path) library in attached-library section
    Client_host('cmd c/ shutdown -i');
    but my problem is that when i run the form i am getting error that
    FRM-40039: Cannot attach library webutil.pl while opening form xyz.fmx.
    Cause: The given library is attached to the form but
    cannot be located in the search path for PL/SQL libraries.
    Action: Make sure that the given library can be found
    and that it has read permissions set.
    Level: 99
    Type: Error
    i think i have to configure the webutill.pll but i don't how to configure
    can you tell me how to configure the webutil.pll file..
    please reply..

  • Login Screen in Oracle BAM

    Hi all ,
    How do I create a separate login screen in Oracle BAM ?
    It would really be appreciated if any of you guys can help me out in this...
    regards,
    Manoj Nair.

    989056 wrote:
    Ok i changed the button to contain only the following:
    BEGIN
    SELECT USER_ID
    INTO :GLOBAL.USER_ID
    FROM PASSWORD
    WHERE USER_ID = :PASSWORD.TI_USER_ID
    AND PASSWORD= :PASSWORD.TI_PASSWORD;
    GO_ITEM('GO_REVIEWS');
    END;
    when i now press login it gives an error FRM 40735: WHEN-BUTTON-PRESSED trigger raised unhandled exception ORA-01403
    i tried to reffer to several items in several blocksi suspect that when you removed the exception it ends up with the no data found error. you need not to remove the exception clause try to bring that back. then try in SQL*Plus to see if your query returns any rows with the same data that you are attempting to use in your TI_USER_ID and TI_PASSWORD block item. if it does not return that is the cause of your issue it will not execute the GO_ITEM() command it will simply go to the exception clause.

  • How can I code this in Oracle Forms?

    I have a master-detail form. In the detail block, I have several records. Here is my name table.
    ID Name_Type Name
    1 old Mike
    2 Current John
    3 old Peter
    4 old Andrew
    I would like to create a button trigger which shall perform the following:
    1) insert a record into database with a copy of current value. In the above case it will insert create a record for John as name_type = 'OLD'. So we have total of 5 records. Commit the transaction.
    2) Scroll through my detail records (5) and go to one specific record and erase the values from it. In the above case, it should find John's record with name_type = 'Current' and erase John from it.
    How can I accomplish this in Oracle forms using a button-pressed trigger?

    Hi,
    Simple, using current values you can create new id , 'old' and name so oracle will create record, now refresh block, next using next_record in loop you can find record,erase one and refresh block.
    Adinath Kamode

  • How to use LDAP with Oracle forms 10g on Oracle application server

    Hi,
    I need some help on this. I have developed oracle forms 10g on application server 9iAS. The client want to use the existing LDAP authentication to the software we wrote. I do not know how I could configure to use the existing LDAP authentication . If anyone know how would I use the existing LDAP on different server to use when they logon to our menu in 10g to validate the user. Do I need to add any varibales in formweb.cfg or any other method. Please help.
    Thanks
    Luksh

    I am not quite sure if this works out of the box. According to an Oracle FAQ:
    4.2 Can I use LDAP to authenticate Forms Services?
    Not directly. However, Oracle Login Server is able to authenticate against a LDAP directory and thus a Forms application can take advantage of this in a SSO environment. But you cannot use access control information stored in a LDAP directory with Forms.

Maybe you are looking for

  • How to connect to oracle ebs from an external software

    Hi! I want to develop an integration for oracle EBS. Therefor I'm looking for ways how to connect to the EBS and for a repository of functions which can be called from an external program. I'm not quite sure if this is the right place to ask but I co

  • Output only with "black frame"??

    Hi there, I am editing rendered animations from cinema4d, which are in the format 768x480 (image on the right). I´ve been trying everything to export them in exactly that format in QT. I can´t find any export option to get a movie with a screen that

  • Question about URL iView parameters

    Hi experts. I have this issue: I have several iviews in DEV instance, URL iViews that points to backend applicationes. The URL parameters in DEV instance, point to DEV instance of backend applications. But when a will need to transport these iview to

  • CS4 change adjustment layer

    In CS3 it was possible to change an adjustment layer after it was created, i.e. duplicate a curves adjustment layer and then go Layer>Change to make that layer a levels adjustment layer (or some other type of adjustment layer). Is it possible to do t

  • How do I change the language from Dutch into English?

    I've already chaged my pref settings in Creative cloud and it is not asking for re-installing. This i found on the internet. I've a trial version of creative cloud. Is the best option now to delete Photoshop and download again? thanks Coert