Sign Up

❇️ OrclQA.Com is a question and answer forum for programmers.
❇️ Here anyone can ask questions and anyone can answer to help others.
❇️ It hardly takes a minute to sign up and it is 100% FREE.

Have an account? Sign In


Have an account? Sign In Now

Sign In

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

Sorry, you do not have a permission to ask a question, You must login to ask question.

Forgot Password?

Need An Account, Sign Up Here
Sign InSign Up

OrclQA.Com

OrclQA.Com Logo OrclQA.Com Logo

OrclQA.Com Navigation

  • Ask Question
  • Write a Tutorial
  • Online Courses
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Blog
  • New Questions
  • Tutorials
    • Oracle
    • Oracle Apex
    • Python
  • Tags
  • Users
  • Badges & Points
  • Image to Base64
  • PL/SQL Beautifier
  • Ask Question
  • Write a Tutorial
  • Online Courses
  • About
  • Questions
  • Answers
  • Best Answers
  • Posts
  • Comments
  1. Asked: October 6, 2020

    Where to handle errors in process or store procedure ?

    IBRO

    IBRO

    • 1 Question
    • 11 Answers
    • 0 Best Answers
    • 48 Points
    View Profile
    IBRO Contributor
    Replied to answer on March 19, 2022 at 6:40 pm

    I will try and let you know . Thanks a lot

    I will try and let you know .

    Thanks a lot

    See less
    • 1
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
  2. Asked: October 6, 2020

    Where to handle errors in process or store procedure ?

    IBRO

    IBRO

    • 1 Question
    • 11 Answers
    • 0 Best Answers
    • 48 Points
    View Profile
    IBRO Contributor
    Replied to answer on March 18, 2022 at 3:33 pm

    Dear Vinish how to show the error message if I'm using stored procedure and I already handled the Exceptions with it  with out submitting the page. My problem is I'm not submitting the page to execute the process I'm using the dynamic action to insert into table using stored procedure  

    Dear Vinish how to show the error message if I'm using stored procedure and I already handled the Exceptions with it  with out submitting the page.

    My problem is I'm not submitting the page to execute the process I'm using the dynamic action to insert into table using stored procedure

     

    See less
    • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
  3. Advertisement
  4. Asked: September 7, 2020

    DML of BLOB Objects through PL/SQL in Apex 20.1

    IBRO

    IBRO

    • 1 Question
    • 11 Answers
    • 0 Best Answers
    • 48 Points
    View Profile
    IBRO Contributor
    Replied to answer on September 21, 2021 at 10:35 pm
    This answer was edited.

    I did it using declare    vrblob blob;    mime_type varchar2(255);    last_update date;    file_name varchar2(255); begin    Dbms_Lob.Createtemporary(Lob_Loc => vrblob,      Cache => TRUE,      Dur => Dbms_Lob.Call);    select blob_content,filename, mime_type into vrblob,file_name,mime_typeRead more

    I did it using

    declare
       vrblob blob;
       mime_type varchar2(255);
       last_update date;
       file_name varchar2(255);
    begin
       Dbms_Lob.Createtemporary(Lob_Loc => vrblob,
         Cache => TRUE,
         Dur => Dbms_Lob.Call);
       select blob_content,filename, mime_type into vrblob,file_name,mime_type
          from apex_application_temp_files

     = :MY_FILE_BROWSER_NAME;
    See less
    • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
  5. Asked: September 7, 2020

    DML of BLOB Objects through PL/SQL in Apex 20.1

    IBRO

    IBRO

    • 1 Question
    • 11 Answers
    • 0 Best Answers
    • 48 Points
    View Profile
    IBRO Contributor
    Added an answer on September 21, 2021 at 10:28 pm

    Your solution is working very well but how about if I want to save MIME TYPE and LAST UPDATE and FILE NAME

    Your solution is working very well but how about if I want to save MIME TYPE

    and LAST UPDATE and FILE NAME

    See less
    • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
  6. Advertisement
  7. Asked: June 11, 2021

    2 Buttons or more in one column classic report

    IBRO

    IBRO

    • 1 Question
    • 11 Answers
    • 0 Best Answers
    • 48 Points
    View Profile
    IBRO Contributor
    Added an answer on June 12, 2021 at 10:25 pm

    Now it works perfect  :) Thank you so much for your effort Much Appreciated

    Now it works perfect  🙂

    Thank you so much for your effort

    Much Appreciated

    See less
    • 1
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
  8. Asked: June 11, 2021

    2 Buttons or more in one column classic report

    IBRO

    IBRO

    • 1 Question
    • 11 Answers
    • 0 Best Answers
    • 48 Points
    View Profile
    IBRO Contributor
    Added an answer on June 11, 2021 at 10:55 pm

    Now I can see the rowid value Once I hover the button I see javascript:setItem(AAAjOwAAGAADKgXAAD); but when I click on it I got this error Uncaught ReferenceError: AAAjOwAAGAADKgXAAD is not defined at <anonymous>:1:9

    Now I can see the rowid value

    Once I hover the button I see javascript:setItem(AAAjOwAAGAADKgXAAD);

    but when I click on it I got this error

    Uncaught ReferenceError: AAAjOwAAGAADKgXAAD is not defined
    at <anonymous>:1:9
    
    
    
    See less
    • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
  9. Advertisement
  10. Asked: June 11, 2021

    2 Buttons or more in one column classic report

    IBRO

    IBRO

    • 1 Question
    • 11 Answers
    • 0 Best Answers
    • 48 Points
    View Profile
    IBRO Contributor
    Added an answer on June 11, 2021 at 7:31 pm

    I got this error Uncaught SyntaxError: Unexpected end of input

    I got this error Uncaught SyntaxError: Unexpected end of input

    See less
    • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
  11. Asked: June 11, 2021

    2 Buttons or more in one column classic report

    IBRO

    IBRO

    • 1 Question
    • 11 Answers
    • 0 Best Answers
    • 48 Points
    View Profile
    IBRO Contributor
    Added an answer on June 11, 2021 at 5:42 pm

    how can I get the current row id once I click on any button in my case

    how can I get the current row id once I click on any button in my case

    See less
    • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
  12. Advertisement
  13. Asked: June 11, 2021

    2 Buttons or more in one column classic report

    IBRO

    IBRO

    • 1 Question
    • 11 Answers
    • 0 Best Answers
    • 48 Points
    View Profile
    IBRO Contributor
    Added an answer on June 11, 2021 at 5:41 pm

    I want to make 2 buttons on one column soo I created sql query like that SELECT ROWID, '<button type="button" id="dec"  title="Decrease" aria-label="Decrease" class="t-Button t-Button--noLabel t-Button--icon t-Button--tiny t-Button--success t-Button--simple"><span aria-hidden="true" class="Read more

    I want to make 2 buttons on one column soo I created sql query like that

    SELECT ROWID,
    '<button type="button" id="dec"  title="Decrease" aria-label="Decrease" class="t-Button t-Button--noLabel t-Button--icon t-Button--tiny t-Button--success t-Button--simple"><span aria-hidden="true" class="t-Icon fa fa-minus-circle-o"></span></button><br>
        <button type="button" id="inc"   title="Increase" aria-label="Increase" class="t-Button t-Button--noLabel t-Button--icon t-Button--tiny t-Button--success t-Button--simple"><span aria-hidden="true" class="t-Icon fa fa-plus-circle-o"></span></button>' AS BTNS
    now I have 2 buttons in the same column to use the buttons I have to get the rowid to execute my code  if it is only one button it will be very easy but with 2 buttons
    I tried to add  data-id with sql button code but when I call it I get #ROWID#

    See less
    • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
  14. Asked: June 11, 2021

    2 Buttons or more in one column classic report

    IBRO

    IBRO

    • 1 Question
    • 11 Answers
    • 0 Best Answers
    • 48 Points
    View Profile
    IBRO Contributor
    Added an answer on June 11, 2021 at 4:19 pm

    I  add  '<a href="javascript:setItem(#ROWID#);">Set Item</a>' as btn      to my query so I got btn . in the function and global I delared this function function setItem(p_rowid) { apex.item("P4_ROWID").setValue(p_rowid); } But when I try to click on the set item link I get this error UncRead more

    I  add

     '<a href="javascript:setItem(#ROWID#);">Set Item</a>'
    as btn      to my query so I got btn .

    in the function and global I delared this function

    function setItem(p_rowid) {
    apex.item("P4_ROWID").setValue(p_rowid);
    }
    But when I try to click on the set item link I get this error

    Uncaught SyntaxError: Private field '#ROWID' must be declared in an enclosing class

    See less
    • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
1 2
Advertisement

Sidebar

Ask Question
Write a Tutorial
Advertisement

Recent Blog Posts

  • Vinish

    Oracle Concat

  • Vinish

    Oracle CHR Function

  • Vinish

    Oracle ASCII Function

  • Vinish

    A Guide To Writing Technical Specs | How to Write a Technical ...

  • Vinish

    Can Oracle Database Run on MAC?

Advertisement
Advertisement

Explore

  • Home
  • Blog
  • New Questions
  • Tutorials
    • Oracle
    • Oracle Apex
    • Python
  • Tags
  • Users
  • Badges & Points
  • Image to Base64
  • PL/SQL Beautifier

Creative Commons License
This work is licensed under a Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License.
© 2021 OrclQA.Com. All Rights Reserved.
Privacy Policy - About Us