Create user from oracle form builder 10g

dear all,
anyone to help me? I want to try, to create a new user from form builder oracle 10g in windows, I use a default script like 'create user user_name identified 123' in toad 9.0 for oracle and the result is success but when I try to combine with form builder oracle 10g this script doesn't work...I hope somebody can help me to solve my problem..
thank you,,,
Dedy Prasetyo T.

Dear Francois,,
I've tried the way you suggested and success. but how if I take the value of user_name and password from the data block to insert table dba_users ? would you like to help me?
regard,
Dedy P.T

Similar Messages

  • How to insert special character from Oracle form builder 10g

    Dear all,
    I need help. how to insert special character like 'Superscript or Subscript ' from oracle form builder 10g. I had try in Oracle form builder 6i with press ALT+ASCII code in the text item and it work, but in the oracle form builder 10g this method doesn't work... would you like to help me...somebody please...
    Best Regard,
    Dedy P.T.

    What do you mean by insert ... from Forms Builder? Do you mean you want to add it as text in a string of pl/sql code or as part of boiler plate text (label) or a value on the Property Palette?
    For special characters you would need set NLS_LANG to something that would support the characters you want to use. For the Builder to see the change, you would need to set NLS_LANG to something like:
    NLS_LANG=AMERICAN_AMERICA.UTF8
    This can be done in the Windows Registry or system. As I mentioned, this will only apply to the Builder and will have nothing to do with a running form. For running forms you would need to set this in default.env. As for things like super and sub scripts, these are font formats and not necessarily characters. For the most part, I don't believe these are supported in Forms.

  • Oracle Forms Builder 10g Questions

    Good day everyone,
    I want to start off by saying that I'm very new to Oracle Forms Builder (it was dumped on my table about a month ago) and I'm having some issues I need resolved in order to complete a project for a client.
    I'm looking mainly for documentation or resources that will show me how to do the following in Oracle Forms Builder 10g:
    * Use either the ENTER button or mouse click to navigate between mandatory fields in a form (currently only TAB works)
    * Populate a field[s] after pressing a search button based on a SQL query
    * Populate a field[s] on launch based on a SQL query
    * Throw a warning message if an SQL query returns with a specific result
    * Populate a drop down menu based on a SQL query (ie only show valid options to user)
    * Remove static highlighting (fields should only be highlighted if necessary, which is never on this particular form)

    I've been able to reduce my problem down to the fact that Oracle Forms Builder 10g is not configured correctly on my machine for my environment. I can seem to get Oracle Forms Builder to see my libraries. When I load the form I'm working on I get the following error:
    FRM-18108: Failed to load the following objects.
    Source Module:utlf_gui
    Source Object: TOOLBAR_MDI
    +... (many more of the one above)+
    I press ok and get the following error:
    FRM-10102: Cannot attach PL/SQL library sdsl. This library attachment will be lost if the module is saved.
    +... (many more of the one above)+
    From my various searches on the internet I've learned that this is because Oracle Forms Developer can not find the listed PL/SQL libraries and I should check my Environmental variables. I've set up two Environmental variables with the following:
    Forms_Path = C:\<project path>\Lib\   (This is the folder in the project folder where all the PL/SQL libraries are stored)
    Forms90_Path = C:\<project path>\Lib\   (This is the folder in the project folder where all the PL/SQL libraries are stored)
    I created both Environmental variables because there wasn't any consistency on the sites I was checking to which was needed.
    Also if I try to attack a PL/SQL library I get the following error:
    Attached library name <name> contains a non-portable directory specification. Remove path?
    I press yes or no and get the following error:
    PDE-PLI038 Cannot open file for use as a PL/SQL library.
    Any help is much appreciated.
    Edited by: ThomasBoxall on 12-Dec-2011 12:18

  • Oracle Forms Builder 10g release 2 documentation?

    I'm trying to locate a book about Oracle Forms Builder 10g release 2. I'm needing a beginner's guide. I've seen the advanced techniques one, but I can't seem to find one for someone that is just starting out. Does anyone have any suggestions?

    There are a couple of books by Albert Lulushi that will give you the basics you can build upon. These are older books, but the concepts they present are still valid.
    <ul>
    <li>Developing Oracle Forms Applications (Aug 1996)
    <li>Oracle Forms Developer's Handbook (Dec 2000)
    </ul>
    Probably more helpful would be some online tutorials. Again, some of these are a little old, but the concepts are still valid for Forms 10g and 11g.
    Although a few of the following links are for older Forms versions, the concepts are still valid across all Forms versions.
    <ul>
    <li>A Tutorial on Oracle9i Forms and Reports
    <li>Tutorial for Oracle10g Forms / Reports
    <li>iSelfSchooling - Basic Introduction to Forms
    <li>Oracle Forms 10g: Demos, Tips and Techniques
    </ul>
    Hope this helps,
    Craig B-)
    If someone's response is helpful or correct, please mark it accordingly.

  • Facing Issue while running from on desktop through oracle form builder 10g.

    Dear All,
    I am facing No plugin to show content error while trying to run oracle from on desktop through form builder 10g. please help.
    Thanks,
    Pradeep

    I am facing No plugin to show content error while trying to run oracle from on desktop through form builder 10g. What is your OS version?
    What Java version are you using?
    Have you configured your Oracle Developer Suite (ODS) 10g to run forms from the Forms Builder?
    Craig...

  • Variables Declaration in ORACLE Forms Builder 10g

    Dear Sir/Madam.
    I am new in Oracle developer suit(Forms builder 10g) .
    I want to declare three variables in Forms builder and when I press the button it will execute the querey/ retrieve data from the specific table.
    Table name= department
    Column names : dept_code number(5), dept_name varchar2(20), dept_location varchar2(25)
    Database User name; yassen
    database : test.
    Please help me to understand this problem.
    Thanks and regards,
    Ghulam Yassen
    Edited by: Ghulam Yassen on Oct 6, 2011 3:46 PM

    Yassen,
    Try,
    DECLARE
      Num_Code DEPARTMENT.DEPT_CODE%TYPE;
      Str_name  DEPARTMENT.DEPT_NAME%TYPE;
      Str_Location DEPARTMENT.DEPT_LOCATION%TYPE;
    BEGIN
       SELECT DEPT_CODE, DEPT_NAME, DEPT_LOCATION INTO Num_Code, Str_name, Str_Location FROM DEPARTMENT WHERE DEPT_CODE = <your_value>;
    END;Hope this helps.
    Regards,
    Manu.

  • Can I connect Oracle Forms Builder 10g to MS Access Database

    Hi,
    I have Oracle forms builder installed in my PC. I downloaded the Oracle Database Server from the oracle website and installed that as well. But due to the installation of Database server, my system has become very slow. In order to avoid this I wanted to know if I can connect the forms builder to MS Access Database.
    Also, using ODBC I have created a database in my D:\ drive.
    If using MS access as a database is possible, then kindly guide me how to proceed with it.
    Thanks,
    Shashank Senan

    Hi Francois,
    Thanks for your reply.
    I have been working on Oracle forms from the past 1 year. I wanted to increase my expertise at the subject so thought I'll install it at my home and then try out developing and running a few small forms. So, in order to do this I downloaded and installed Developer Suite and database server. After installing the database server the system became very slow, as I mentioned earlier. Once I uninstalled the server, my system speed was back to normal. My system configuration is:
    512 MB ram, Intel Pentium 4 2.66 Ghz processor, Windows XP service pack 3,1 CPU.
    My requirement is very minimal. I just want a simple database where I can create tables, store data and connect form. If you have a have any other suggestion for my requirement then kindly help me in this regard.
    In the meantime I'll act on your suggestion and try and install the XE server.
    Thanks.
    Shashank

  • Can Oracle Form Builder 10g open forms created with Developer 11g?

    Hi,
    Two different groups of developers developed forms in both Forms versions 10g and 11g. There will be call_forms between both versions and both will run under the same portal. Production is 10g. Is it possible to open 11g forms in 10g Form Builder? Suggestion/ solutions are appreciated.
    Thanks,
    Victor

    It is likely you will run into issues, so I would say best not to. I have done it a couple of times by accident during migration of Forms 10g to 11g. You can still open and view the 11g forms code in the Forms 10g builder, but will likely see some objects appear as incorrect types. Saving the 11g form in such a state from the 10g Forms Builder may result in corruption.

  • Connect Oracle Form Builder 10g to Oracle Database 10g Express

    Hi,
    I'm new to Oracle.
    I've installed both form builder and database 10g express.
    I tried to connect form builder to HR sample database in 10g express with the following:
    user name: hr
    password: hr
    database: hr
    but I received message: ora-12154: tns could not resolve the connect identifier specified.
    Can anyone help me on that? Do I need to change the tnsnames.ora?
    If yes, what should I need to change in order to connect to the HR sample?
    Thank you.

    Yes you need to have an entry in the tnsnames.ora file for you database service name or sid. The service name or sid is usually XE unless you changed it when you installed 10g express.

  • Oracle form builder 10g is not opening any form ,on Vista

    I have installed DevSuite 10g and its update in my Vista machine. Everything is working fine ,but when I try to open any form in form designer(form builder) the form builder crashes and it gives me error saying-
    "Oracle form designer has stopped working
    A problem caused the priogram to stop working correctly. Windows will close the program and notify you if a solution is available."
    It does not get any problem if I try to open any other file. But it crashes when try to open any fmb file. Please help how can we resolve this issue.

    Please try this and report back:
    In your Vista platform, create a simple form. No canvas required, just two procedures:
    PROCEDURE P2 IS
    BEGIN
    NULL;
    END;
    and
    PROCEDURE P1 IS
    BEGIN
    P2;
    END;
    First, create procedure P2 and compile it.
    Then create procedure P1 and compile it.
    Go back to P2, and remove the semicolon after the NULL. If you try to compile it, it will fail.
    Go to procedure P1 and try compiling it.
    Does Forms Builder crash at this point?

  • Running oracle form builder 10g in windows 7 64 bit

    i am working in windows 7 64 bit
    oracle db 11g enterprise edition 11.2.0.10 64 bit
    form builder 10.12.0.2  32 bit
    my default browser is Google Chrome
    i have java 6 standard edition  1.6.0_34
    when i am trying to run any form this message appear " java (TM) is required to display some elements in this page"
    what can i do to run those forms?

    You can also refer to this OTN reference:
    Oracle Application Server 10g (10.1.2) Certification Matrix
    Other comments:
    1.  I would not recommend using Forms 10.1.2.0 with Oracle DB 11.2.x.  Patching Oracle Forms to 10.1.2.3 would be recommended.  Using version Forms 11 would be better.
    2.  Attempting to use the Developer Tools on Windows 7 is not a great idea although it can be made to work.  Developer Suite 10 is no longer supported and was never really intended for use on Win7.  Again, patching to 10.1.2.3 is recommended and required if you plan to follow the Oracle instructions and certifications.
    3.  Installing the Forms Builder (Developer Suite) on Win7-64bit is not at all certified and was never supported.
    4.  Using Java 7 was not certified and therefore not supported for use with Forms 10.x
    In general, Forms 10.1.2.x has been desupported.  Customer using this version or older should be working on a migration plan for getting to the latest supported version which is 11.1.2.1.

  • Calling Sql*Loader from oracle Form builder

    How do i call sql* loader from my forms to import the external data in different formats into my existing database?
    Specify the flexibility of sql* loader to import external data from .txt files or .xls files.
    Would be thankful if certain examples are given along with the answer.

    Hi,
    1. First you have to create seperate ctl (Control files) which maps to different file formats
    2. Using Oracle Forms,
    2a) You can use the 'HOST' command to execute the command line ie. In this case executing
    SQL*Loader script
    2b) You also have the feature in ORACLE forms to read text files and load the data into
    ORACLE db.
    This can be achieved by using TEXT_IO package which comes with ORACLE Forms.
    Hope this helps
    Ta
    Shailender

  • Tool suport Grid in oracle Form Builder 10G!!!

    Hi all!
    Do you know oracle suport tool to create Grid?
    I need a Grid to add data in it because data block only suport 2 tye: Freeform and tabular.
    Please reply me as soon as availiable!
    Thanks!

    Oracle Forms does not support Grid.
    But you can create a Grid of you rown and embed it inside forms as PJC(pluggable Java Components)

  • How to create report from Oracle Forms 9i chart?

    Hi all,
    I am new to Forms and Reports 9i. I need to create a chart (let's say it contains customer name on axis X and total sales for this customer on axis Y). Is it possible to get report with details for particular customer by clicking on the chart's bar for this customer and if so, what is the way of doing it?
    Thanks in advance for any help given

    Larisa,
    yes, you can. When selecting a chart item in Forms, you retrieve e.g. the username (or something similar unique) and then call Reports e.g. using a Run_Report_Object() call, passing the username as a Reports parameter.
    Frank

  • Oracle Forms Builder 10g

    I have used this code on trigger WHEN-MOUSE-CLICK:
    Set_View_Property('PIC2',VIEWPORT_Y_POS,ypos);
    Set_View_Property('PIC2', VISIBLE, PROPERTY_TRUE);
    Synchronize;
    But the result was not the one expected. The view in the foreground appears but disappears quickly. Why disappears?

    A canvas cannot be placed on top of the item currently in focus. Use a go_item to move focus to an item on the new canvas, or to an item which will not be covered by the new canvas.

Maybe you are looking for

  • PSE9 - Problem printing from full edit

    When I try to print from the full edit page, I click on File, then Print and the Print page pops up. I select the correct printer, hit Print and the Fax menu pops up. I prefer to print from full edit instead of from the organizer. I have a CanoScan 9

  • How to set the HomePage and FolderSize of a managed folder?

    Recently, I deside to get the FolderSize and HomePage of a managed folder throw GetFolder operation in EWS, but the FolderSize and the HomePage always not present. Unfortunately, I could not set these two element directly in Exchange management shell

  • Borderless Printing Help

    I really need some borderless printing help. I finally figured out with my printer, that the bottom margin is ridiculously offset so I need to use borderless printing to prevent the bottom footer from being cut off (HP 2610 printer, margins being rea

  • Business Partner Number in Org Structure

    Hi, While creating the organisations in org structure the BP partner nos are not generating. Please let me know what can be done for this. Also, how to set the BP no. ranges. Regards, Manu

  • Fetching directory structure

    Hi, Along with .jar files I like to fetch other resources like help (.html) and configuration (.xml) files. Actually, I would love to deploy a whole directory structure in the client machine. What is the most efficient way to do it? Please advice wit