Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. Hehenka

    Clear Block problem

    I am not sure it can be done easily. But if you change an item value by using LOV then detail block is populated by default - see "Coordination property" in the Forms on-line help and how it can be modified.
  2. Hehenka

    Oracle designer and Form Bulider

    You can do it by Designer - create a main form and call another forms from it.
  3. Hehenka

    Reports verses Forms

    Maybe you can try 1. to remove Add_Parameter(pl_id, 'ORACLE_SHUTDOWN', text_parameter,'Yes'); 2. and also put messages for checking values of parameters Add_Parameter(pl_id, 'p_stat_id', text_parameter, ''''||:parameter.p_stat_id||''''); message(:parameter.p_stat_id); pause...
  4. Hehenka

    Reports verses Forms

    I think that it would be better posting your code here.
  5. Hehenka

    icon (*.ico) on application server

    On WEB you have to use *.GIF icons. Hehenka
  6. Hehenka

    Windows development - moderate complexity

    There are both Oracle9i Forms Technical Information and Oracle Forms Release6i Technical Information in http://otn.oracle.com/products/forms/content.html there.
  7. Hehenka

    Windows development - moderate complexity

    Here is an address: http://otn.oracle.com/products/forms/content.html
  8. Hehenka

    Multi-block forms and saving

    I am sorry this will not work - There can be a block with insert/update allowed = yes and all it's items are insert/update allowed = no.
  9. Hehenka

    Multi-block forms and saving

    There can be a block with insert/update allowed = yes and all it's items are insert/update allowed = no. You can perform validation also in Pre-Insert and Pre-Update triggers, I use this method. Helena
  10. Hehenka

    Multi-block forms and saving

    Commit_Form built-in saves your changes to the database. Of course only in your second data block records can be inserted and updated (block and item properties Insert Allowed and Update Allowed). I hope this will help you. Helena
  11. Hehenka

    Windows development - moderate complexity

    I advice you to use Oracle Forms6i/Reports6i. I work with it and I think that it can satisfy all your needs. It can run also on WEB ... Here you can find more about it (also demo): http://technet.oracle.com I hope this will be a little help for you. Helena
  12. Hehenka

    how can i make installer for my dev application

    There is Oracle Software Packager there. You can download it from (it is free): http://technet.oracle.com
  13. Hehenka

    ora-01403

    I see that row_num is always 0, it is only declared. Hehenka
  14. Hehenka

    Where is the current record drill-down control????

    During creation of an unbound item in Designer you can specify Display Type property - Drilldown current record in your case. You can do it in Property Palette, too. Hehenka
  15. Hehenka

    Oracle Primary key Update

    You are right, there must be good database design for avoiding updating of primary key.
  16. Hehenka

    Oracle Primary key Update

    Primary key cannot be updated. It can only be inserted. It is managed by Oracle itself. Helena
  17. Hehenka

    Difference between OPEN_FORM and CALL_FORM

    OPEN_FORM can be used to open a query-only form. If the form that issues the OPEN_FORM built-in is running in QUERY_ONLY mode, then the opened form will also run in QUERY_ONLY mode. The difference between OPEN_FORM and CALL_FORM is that CALL_FORM runs an indicated form while keeping the parent...
  18. Hehenka

    on runtime message

    You can set system variable (in Pre-Form trigger ...) :System.Message_Level := '10'; It will suppress messages with level 0 and 5.
  19. Hehenka

    Form parameters to reports

    I think that there is a good example in the Forms on-line help - RUN_PRODUCT built-in topic.
  20. Hehenka

    Web Enabling of Forms

    Kanderi, you can try this: scott password: tiger

Part and Inventory Search

Back
Top