Sign Up

Hey, Dev!
Are you looking for a forum full of active developers to help you?
So if you want to:
➡️ Get answers for your development issues
➡️ Help others
➡️ Write an article
➡️ Get rewarded for your active participation
Then this place is just for you 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
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Blog
  • New Questions
  • Tutorials
    • Oracle
    • Oracle Apex
    • Python
  • Tags
  • Users
  • Badges & Points
  • About
Home/Zulqarnain Haider/Answers
  • About
  • Questions
  • Answers
  • Best Answers
  • Posts
  • Comments
  • Followers Questions
  • Followers Answers
  • Followers Posts
  • Followers Comments
  1. Asked: November 19, 2020

    How to implement Sweet Alert Message in Oracle Apex

    Zulqarnain Haider

    Zulqarnain Haider

    • 9 Questions
    • 15 Answers
    • 0 Best Answers
    • 84 Points
    View Profile
    Zulqarnain Haider Professional
    Replied to answer on November 20, 2020 at 2:21 pm

    Yes sir its just like Alert Message.but its possible to delete record using Sweet Alert  library ?????

    Yes sir its just like Alert Message.but its possible to delete record using Sweet Alert  library ?????

    See less
    • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
  2. Asked: November 20, 2020

    IR Show Message when Click Submit Button

    Zulqarnain Haider

    Zulqarnain Haider

    • 9 Questions
    • 15 Answers
    • 0 Best Answers
    • 84 Points
    View Profile
    Zulqarnain Haider Professional
    Added an answer on November 20, 2020 at 2:16 pm

    when i click submit button then U-processing icon and below Show message Please wait a moment.

    when i click submit button then U-processing icon and below Show message

    Please wait a moment.

    See less
    • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
  3. Asked: November 19, 2020

    How to implement Sweet Alert Message in Oracle Apex

    Zulqarnain Haider

    Zulqarnain Haider

    • 9 Questions
    • 15 Answers
    • 0 Best Answers
    • 84 Points
    View Profile
    Zulqarnain Haider Professional
    Added an answer on November 20, 2020 at 12:07 pm

    Delete code is swal({ title: "Are you sure?", text: "Once deleted, you will not be able to recover this imaginary file!", icon: "warning", buttons: true, dangerMode: true, }) .then((willDelete) => { if (willDelete) { swal("Poof! Your imaginary file has been deleted!", { icon: "success", }); } elsRead more

    Delete code is

    swal({
    title: "Are you sure?",
    text: "Once deleted, you will not be able to recover this imaginary file!",
    icon: "warning",
    buttons: true,
    dangerMode: true,
    })
    .then((willDelete) => {
    if (willDelete) {
    swal("Poof! Your imaginary file has been deleted!", {
    icon: "success",
    });
    } else {
    swal("Your imaginary file is safe!");
    }
    });
    See less
    • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
  4. Asked: November 19, 2020

    How to implement Sweet Alert Message in Oracle Apex

    Zulqarnain Haider

    Zulqarnain Haider

    • 9 Questions
    • 15 Answers
    • 0 Best Answers
    • 84 Points
    View Profile
    Zulqarnain Haider Professional
    Added an answer on November 20, 2020 at 12:06 pm

    Yes Sir Sweet Alert lib working properly but no update or delete record.

    Yes Sir Sweet Alert lib working properly but no update or delete record.

    See less
    • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
  5. Asked: November 11, 2020

    How to send Email in Oracle Apex

    Zulqarnain Haider

    Zulqarnain Haider

    • 9 Questions
    • 15 Answers
    • 0 Best Answers
    • 84 Points
    View Profile
    Zulqarnain Haider Professional
    Added an answer on November 18, 2020 at 11:55 am

    Hi Sir Vinish My Intance Setting is ok.Its possible to Send your ACL and UTL_SMTP then i will check what i am wrong.

    Hi Sir Vinish

    My Intance Setting is ok.Its possible to Send your ACL and UTL_SMTP then i will check what i am wrong.

    See less
    • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
  6. Asked: November 11, 2020

    How to send Email in Oracle Apex

    Zulqarnain Haider

    Zulqarnain Haider

    • 9 Questions
    • 15 Answers
    • 0 Best Answers
    • 84 Points
    View Profile
    Zulqarnain Haider Professional
    Added an answer on November 17, 2020 at 12:37 pm

    Declare l_body clob; l_body_html clob; begin l_body := 'To view the content of this message, please use an HTML enabled mail client.' || utl_tcp.crlf; apex_mail.send ( p_to => 'abc@gmail.com', -- change to your email address p_from => 'abc@gmail.com', -- change to a real senders email addressRead more

    Declare
    l_body clob;
    l_body_html clob;
    begin
    l_body := 'To view the content of this message, please use an HTML enabled mail client.' || utl_tcp.crlf;
    
    apex_mail.send (
    p_to => 'abc@gmail.com', -- change to your email address
    p_from => 'abc@gmail.com', -- change to a real senders email address
    p_body => l_body,
    p_body_html => l_body_html,
    p_subj => 'APEX MAIL' );
    
    apex_mail.push_queue();
    
    end;
    See less
    • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
  7. Asked: November 11, 2020

    How to send Email in Oracle Apex

    Zulqarnain Haider

    Zulqarnain Haider

    • 9 Questions
    • 15 Answers
    • 0 Best Answers
    • 84 Points
    View Profile
    Zulqarnain Haider Professional
    Added an answer on November 16, 2020 at 5:41 pm

    Hi Aru This error when i Send Emai. ORA-29279: SMTP permanent error: 503 5.5.1 bad sequence of commands

    Hi Aru

    This error when i Send Emai.

    ORA-29279: SMTP permanent error: 503 5.5.1 bad sequence of commands

    See less
    • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
  8. Asked: November 2, 2020

    Showing information on IR Region

    Zulqarnain Haider

    Zulqarnain Haider

    • 9 Questions
    • 15 Answers
    • 0 Best Answers
    • 84 Points
    View Profile
    Zulqarnain Haider Professional
    Added an answer on November 10, 2020 at 12:33 pm

    Thankx sir it works..

    Thankx sir it works..

    See less
    • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
  9. Asked: November 2, 2020

    Showing information on IR Region

    Zulqarnain Haider

    Zulqarnain Haider

    • 9 Questions
    • 15 Answers
    • 0 Best Answers
    • 84 Points
    View Profile
    Zulqarnain Haider Professional
    Replied to answer on November 9, 2020 at 2:02 pm

    Hi Afzal I want to show Total Sal on  top of the IR. I follow this step but no result any solution???

    Hi Afzal

    I want to show Total Sal on  top of the IR. I follow this step but no result any solution???

    See less
    • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
  10. Asked: September 9, 2020

    Interactive Report dynamic multiple page link in Oracle Apex

    Zulqarnain Haider

    Zulqarnain Haider

    • 9 Questions
    • 15 Answers
    • 0 Best Answers
    • 84 Points
    View Profile
    Zulqarnain Haider Professional
    Replied to answer on September 11, 2020 at 7:35 pm

    Thankx alot sir.

    Thankx alot sir.

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

Sidebar

Ask Question
Write a Post
  • Recent
  • Answers
  • Hussain

    Need to displayed Total in Interactive Report

    • 2 Answers
  • sathishkeethi

    APEX - How to Upload & Download Document in my ...

    • 0 Answers
  • Kanshu

    Can you explain this 15 puzzle code in shell script ...

    • 0 Answers
  • Sanjay

    ORA-01034 ORACLE not available

    • 2 Answers
  • afzal
    afzal added an answer STEP -1 CREATE REPORT LIKE-- select SAL AS "SALARY", NVL(COMM,0)… March 2, 2021 at 10:25 am
  • apex4ebs
    apex4ebs added an answer I have used a union in the sql of the… March 1, 2021 at 1:38 pm
  • Eyad
    Eyad added an answer Thank you. I noticed that The type sequence works only… February 28, 2021 at 3:27 am
  • SupriyaJain
    SupriyaJain added an answer Called color_ig_cells() in Page change event. It is working now.… February 26, 2021 at 4:29 pm
  • SupriyaJain
    SupriyaJain added an answer When I toggle between Page Numbers at the bottom of… February 26, 2021 at 3:10 pm

Recent Blog Posts

  • Vinish

    Oracle Apex - Display External File in Region

  • Vinish

    Oracle PL/SQL Download BLOB File to Disk

  • Vinish

    Oracle Convert External File to BLOB

  • Vinish

    Oracle Apex Calendar Example

  • Vinish

    Oracle Apex - Open Modal Dialog Page Using JavaScript

Explore

  • Home
  • Blog
  • New Questions
  • Tutorials
    • Oracle
    • Oracle Apex
    • Python
  • Tags
  • Users
  • Badges & Points
  • About

© 2021 OrclQA.Com. All Rights Reserved. Privacy Policy