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 Reports

Oracle Reports

Share
  • Facebook
0 Followers
11 Answers
7 Questions
Home/Oracle Reports
  • Recent Questions
  • Answers
  • No Answers
  1. Asked: September 15, 2022In: Oracle Reports

    Font in RDF

    Hassan AbdElrahman
    Hassan AbdElrahman Master Oracle ACE Pro Alum ♠ | Oracle Senior ERP Technical Consultant
    Added an answer on September 18, 2022 at 12:37 am
    This answer was edited.

    I am wondering why to use a report builder template to create a PDF report layout while you have the XML publisher with all its facilities and the ease to design any template using MSWord. But generally, the update of the character set shouldn't have any impact on the report layout or output. Also,Read more

    I am wondering why to use a report builder template to create a PDF report layout while you have the XML publisher with all its facilities and the ease to design any template using MSWord.

    But generally, the update of the character set shouldn’t have any impact on the report layout or output. Also, is this issue exists in all reports or only in this report? try to delete this repeating frame or create a new one, the same as the one that has the issue, and observe the new one.

    See less
      • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  2. Asked: March 18, 2020In: Oracle Reports

    REP-0118 unable to create temporary file

    Hassan AbdElrahman
    Best Answer
    Hassan AbdElrahman Master Oracle ACE Pro Alum ♠ | Oracle Senior ERP Technical Consultant
    Added an answer on February 14, 2021 at 10:37 am

    Hi @matheo, This REP-0118 error is raise because of issue with temporary file path for report builder that specified with folder that you don't have access to. To fix this issue you have to change temporary path in windows registry by following the steps below:  Navigate to run from Start Taskbar. TRead more

    Hi matheo,

    This REP-0118 error is raise because of issue with temporary file path for report builder that specified with folder that you don’t have access to.

    To fix this issue you have to change temporary path in windows registry by following the steps below:

    1.  Navigate to run from Start Taskbar.
    2. Type (Regedit) without parentheses to open registry window.
    3. Press (Ctrl+F) to search about (REPORTS_TMP).
    4. Finally modify the path to the ones you have access to.

    Hopefully that will help you.

    Best Regards.

    See less
      • 6
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  3. Asked: July 3, 2016In: Oracle Reports

    REP-52262 Diagnostic output is disabled when using oracle reports 11g

    SaLaZaR
    SaLaZaR
    Replied to answer on May 29, 2020 at 9:04 am

    i found <!–webcommandaccess>L1</webcommandaccess–> inside  the "rwservlet.properties.jmxori" not in  the "rwservlet.properties" what should i do

    i found <!–webcommandaccess>L1</webcommandaccess–>
    inside  the “rwservlet.properties.jmxori” not in  the “rwservlet.properties”
    what should i do

    See less
      • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  4. Asked: May 11, 2018In: Oracle Reports

    rep-14015 : beforereport unkhown user exit fnd ?

    Googler
    Best Answer
    Googler Explorer
    Added an answer on May 12, 2018 at 8:24 pm

    The USER EXITS are specific to Applications. Try to check the report in builder by commenting those srw exits

    The USER EXITS are specific to Applications. Try to check the report in builder by commenting those srw exits

    See less
      • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  5. Asked: April 8, 2017In: Oracle Reports

    How to show a message in a report at runtime?

    Hassan AbdElrahman
    Best Answer
    Hassan AbdElrahman Master Oracle ACE Pro Alum ♠ | Oracle Senior ERP Technical Consultant
    Added an answer on April 11, 2017 at 5:10 pm
    This answer was edited.

    hi Albert, You can display a message in Oracle report builder by using the standard built-in srw.message. The basic syntax for using this package is: srw.message(error_no,'YOUR MESSAGE'); the error no will appear along with the message text. and here is the sample to do this in a particular functionRead more

    hi Albert,

    You can display a message in Oracle report builder by using the standard built-in srw.message.

    The basic syntax for using this package is:

    srw.message(error_no,'YOUR MESSAGE');

    the error no will appear along with the message text. and here is the sample to do this in a particular function

    FUNCTION chck_sal RETURN BOOLEAN IS
    BEGIN
      IF :sal < 0 THEN SRW.MESSAGE(
        100,
        'There is employee that take negative salary.'
      );
    RAISE SRW.PROGRAM_ABORT;
    ELSE :bonus := :sal * .01;
    END IF;
    RETURN(TRUE);
    END;
    See less
      • 1
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  6. Asked: July 11, 2016In: Oracle Reports

    How to pass date parameter to oracle report builder ?

    Hassan AbdElrahman
    Best Answer
    Hassan AbdElrahman Master Oracle ACE Pro Alum ♠ | Oracle Senior ERP Technical Consultant
    Added an answer on July 11, 2016 at 12:38 pm

    hello albert,  your code is correct can you write what is the error exactly to help you. in addition you can check your user parameter  in your report builder property specifically these properties mentioned in below image

    hello albert,
     your code is correct can you write what is the error exactly to help you.
    in addition you can check your user parameter  in your report builder property specifically these properties mentioned in below image
    pass date parameter to report builder

    See less
      • 0
    • 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.