Sign Up

Sign Up to our social questions and Answers to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In
Continue with Google
or use


Have an account? Sign In Now

Sign In

Login to our social questions & Answers to ask questions, answer people’s questions & connect with other people.

Sign Up Here
Continue with Google
or use

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Continue with Google
or use

Forgot Password?

Need An Account, Sign Up Here

Sorry, you do not have permission to add post.

Continue with Google
or use

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Oraask Logo Oraask Logo
Sign InSign Up

Oraask

  • Write
    • Add A New Post
    • Ask A Question

Oraask Navigation

Search
Ask A Question

Mobile menu

Close
Ask A Question
  • Categories
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Dev Tools
    • Online Compiler
    • Base64 Converter
    • Oraask XML Formatter
    • Oraask JSON Formatter
  • Wiki
    • SQL Tutorials
    • Java Tutorials
    • Python Tutorials
    • JavaScript Tutorials

Oracle Forms

Oracle Forms

Share
  • Facebook
1 Follower
10 Answers
9 Questions
Home/Oracle Forms
  • Recent Questions
  • Answers
  • No Answers
  1. Asked: October 1, 2021In: Oracle Forms

    Integrate this dialog fonts to work in Oracle forms 12c

    MAAM
    MAAM Explorer
    Added an answer on October 12, 2021 at 5:38 pm
    This answer was edited.

    I have created this one but need some updates! to get the values back and use them in oracle forms 12c.

    I have created this one but need some updates! to get the values back and use them in oracle forms 12c.

    See less
      • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  2. Asked: July 28, 2019In: Oracle Forms

    calling report from formbuilder 6.0 in menu to run in web server

    Hassan AbdElrahman
    Hassan AbdElrahman Master Oracle ACE Pro Alum ♠ | Oracle Senior ERP Technical Consultant
    Added an answer on August 2, 2019 at 9:51 pm

    Hi @elhamkoockak what is the error message exactly and share your code to be able to help you. thanks

    Hi @elhamkoockak

    what is the error message exactly and share your code to be able to help you.

    thanks

    See less
      • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  3. Asked: April 1, 2017In: Oracle Forms

    How to to check old and new values for item in Oracle Form ?

    Hassan AbdElrahman
    Hassan AbdElrahman Master Oracle ACE Pro Alum ♠ | Oracle Senior ERP Technical Consultant
    Added an answer on April 4, 2018 at 9:28 pm

    to get the database value there is one property (database_value) and here is the example to achieve this: [code] BEGIN IF :BLOCK.ITEM = GET_ITEM_PROPERTY('BLOCK.ITEM', database_value) THEN RETURN; END IF; END; [/code] sometimes this property return value (0) if so you can use another way : -take theRead more

    to get the database value there is one property (database_value) and here is the example to achieve this:

    [code]
    BEGIN
    IF :BLOCK.ITEM = GET_ITEM_PROPERTY(‘BLOCK.ITEM’, database_value) THEN
    RETURN;
    END IF;
    END;
    [/code]

    sometimes this property return value (0) if so you can use another way :

    -take the value in the pre text item trigger and keep it in global

    – as about this value in when validate item trigger and so on

    hope this may help you 🙂

    See less
      • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  4. Asked: March 17, 2017In: Oracle Forms

    How to validate phone number with specific format and fixed length ?

    Hassan AbdElrahman
    Hassan AbdElrahman Master Oracle ACE Pro Alum ♠ | Oracle Senior ERP Technical Consultant
    Added an answer on April 3, 2018 at 9:33 pm

    hello, you can use Format mask item property, it will handle the length along with format validation. you may enter this format mask ex: [code] 9"-"999"-"999"-"9999 [/code]

    hello,

    you can use Format mask item property, it will handle the length along with format validation. you may enter this format mask ex:

    [code]
    9″-“999”-“999”-“9999
    [/code]

    See less
      • -3
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  5. Asked: April 8, 2017In: Oracle Forms

    Repeat same previous record or item in oracle forms ?

    Hassan AbdElrahman
    Hassan AbdElrahman Master Oracle ACE Pro Alum ♠ | Oracle Senior ERP Technical Consultant
    Added an answer on April 21, 2017 at 7:32 pm

    You can use DUPLICATE_RECORD built-in

    You can use DUPLICATE_RECORD built-in

    See less
      • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  6. Asked: September 12, 2016In: Oracle Forms

    How to pass date parameter to oracle reports from oracle forms

    Hassan AbdElrahman
    Hassan AbdElrahman Master Oracle ACE Pro Alum ♠ | Oracle Senior ERP Technical Consultant
    Added an answer on September 12, 2016 at 10:10 pm

    your code looking good but let me ask you some questions : 1- is your report exists in the directory you provide it to your code ? 2- is your report compiled and working fine itself ? then please share full error message and number with when this error is throwing. thanks.

    your code looking good but let me ask you some questions :
    1- is your report exists in the directory you provide it to your code ?
    2- is your report compiled and working fine itself ?
    then please share full error message and number with when this error is throwing.
    thanks.

    See less
      • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  7. Asked: July 6, 2016In: Oracle Forms

    FRM-47001: Cannot create parameter list myparam : list with this name already exists

    Hassan AbdElrahman
    Hassan AbdElrahman Master Oracle ACE Pro Alum ♠ | Oracle Senior ERP Technical Consultant
    Added an answer on September 10, 2016 at 10:54 pm

    just you need every time to check if the parameter list exists.... If so , delete it before you try to create it. DECLARE pl_id ParamList; BEGIN pl_id := Get_Parameter_List('tempdata'); IF NOT Id_Null(pl_id) THEN Destroy_Parameter_List(pl_id); END IF; END; hope this helpfull :)

    just you need every time to check if the parameter list exists…. If so , delete it before you try to create it.

    DECLARE pl_id ParamList;
    BEGIN
    pl_id := Get_Parameter_List('tempdata');
    IF NOT Id_Null(pl_id) THEN
    Destroy_Parameter_List(pl_id);
    END IF;
    END;

    hope this helpfull 🙂

    See less
      • 1
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  8. Asked: August 13, 2016In: Oracle Forms

    Load image

    Hassan AbdElrahman
    Hassan AbdElrahman Master Oracle ACE Pro Alum ♠ | Oracle Senior ERP Technical Consultant
    Added an answer on August 13, 2016 at 9:09 pm
    This answer was edited.

    firstly, try to read more about the webutil library.second, find below a basic code snippet to do the job: --this code to open uploading dialog box V_CLIENT_PATH := CLIENT_GET_FILE_NAME(DIRECTORY_NAME => NULL ,FILE_NAME => NULL ,FILE_FILTER => 'ALL FILES (*.*)|*.*' ,MESSAGE => 'Open a fiRead more

    firstly, try to read more about the webutil library.
    second, find below a basic code snippet to do the job:

    --this code to open uploading dialog box
    
        V_CLIENT_PATH := CLIENT_GET_FILE_NAME(DIRECTORY_NAME => NULL
                                     ,FILE_NAME    => NULL
                                     ,FILE_FILTER  => 'ALL FILES (*.*)|*.*'
                                     ,MESSAGE      => 'Open a file'
                                     ,DIALOG_TYPE  => NULL
                                     ,SELECT_FILE  => NULL);
    
        -- create directory on local machine at client server
        HOST ( 'cmd /c mkdir'||' "'|| 'C:tempapplication' || '"',NO_SCREEN); 
    
    -- this code to show uploading progress to user
        V_SUCCESS := 
    WEBUTIL_FILE_TRANSFER.CLIENT_TO_AS_WITH_PROGRESS
        (CLIENTFILE       => V_CLIENT_PATH
        ,SERVERFILE       => V_SERVER_PATH
        ,PROGRESSTITLE    => 'Uploading file in progress'
        ,PROGRESSSUBTITLE => 'Please wait'
       ,ASYNCHRONOUS     => FALSE
       ,CALLBACKTRIGGER  => NULL);

    hope this may help 🙂

    See less
      • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  9. Asked: June 11, 2016In: Oracle Forms

    How to remove blank line when you create list item in oracle forms 10g ?

    Hassan AbdElrahman
    Hassan AbdElrahman Master Oracle ACE Pro Alum ♠ | Oracle Senior ERP Technical Consultant
    Added an answer on June 11, 2016 at 8:54 am

    as per oracle forms online help: Forms maintains an additional NULL element in a list item List Items and Null Values ... Setting the Required property for a poplist or TList may affect the values the list will display: When selected, an instance of a poplist will display an extra null value if itsRead more

    as per oracle forms online help:
    Forms maintains an additional NULL element in a list item
    List Items and Null Values … Setting the Required property for a poplist or TList may affect the values the list will display: When selected, an instance of a poplist will display an extra null value if its current value is Null or if its effective Required property is false.
    CLEAR_LIST Built-in Clears all elements from a list item. After Oracle Forms clears the list, the list will contain only one element (the null element), regardless of the item’s Required property.

    See less
      • -1
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp

Sidebar

Adv 250x250

Explore

  • Categories
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Dev Tools
    • Online Compiler
    • Base64 Converter
    • Oraask XML Formatter
    • Oraask JSON Formatter
  • Wiki
    • SQL Tutorials
    • Java Tutorials
    • Python Tutorials
    • JavaScript Tutorials

Footer

Oraask

About

Oraask is a website for developers and software engineers who want to learn new skills, share their knowledge, and solve their coding problems. Oraask provides free content on various programming languages and topics, such as Oracle, Python, Java, etc. Oraask also allows users to ask questions and get answers from other members of the community.

About Us

  • About Us
  • Contact Us

Legal Stuff

  • Privacy Policy
  • Terms & Conditions

Follow

Oraask is licensed under CC BY-NC-SA 4.0Oraask CopyrightOraask CopyrightOraask CopyrightOraask Copyright

© 2019 Oraask. All Rights Reserved
With Love by Oraask.