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

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

Hassan AbdElrahman

MasterOracle ACE Pro Alum ♠ | Oracle Senior ERP Technical Consultant
Ask Hassan AbdElrahman
1k Visits
29 Followers
0 Questions
Home/ Hassan AbdElrahman/Answers
  • About
  • Questions
  • Answers
  • Best Answers
  • Posts
  • Polls
  • Asked Questions
  • Comments
  1. Asked: October 20, 2018In: Oracle E-Business Suite

    How to open custom.pll in form builder?

    Hassan AbdElrahman
    Best Answer
    Hassan AbdElrahman Master Oracle ACE Pro Alum ♠ | Oracle Senior ERP Technical Consultant
    Added an answer on April 6, 2019 at 12:35 am

    Hello Alan, It's so simple as you open regular form .fmb in form builder just follow this: First you need to download then latest version of CUSTOM library that comes with your Oracle EBS version. (downloaded from production server). You can find the path of CUSTOM.pll under ($AU_TOP/resources) foldRead more

    Hello Alan,

    It’s so simple as you open regular form .fmb in form builder just follow this:

    1. First you need to download then latest version of CUSTOM library that comes with your Oracle EBS version. (downloaded from production server).
    2. You can find the path of CUSTOM.pll under ($AU_TOP/resources) folder
    3. Open Oracle Form Builder
    4. Click File menu ==> Open ==> choose CUSTOM.pll from your local machine
    5. After opening CUSTOM.pll into your form builder you can modify (CUSTOM) Package as per your requirements.
    See less
      • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  2. Asked: March 18, 2019In: PL/SQL

    Which symbol is used for concatenation? in plsql

    Hassan AbdElrahman
    Hassan AbdElrahman Master Oracle ACE Pro Alum ♠ | Oracle Senior ERP Technical Consultant
    Added an answer on March 18, 2019 at 12:05 am

    its very simple you can use || symbol to concatenate two string or using concat function and here you can find full explanation with examples about how to use oracle || - oracle concatenation in knowledge base section. have a nice day.

    its very simple you can use || symbol to concatenate two string or using concat function and here you can find full explanation with examples about how to use oracle || – oracle concatenation in knowledge base section.

    have a nice day.

    See less
      • 2
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  3. Asked: February 16, 2019In: Oracle Ebs Api’s

    Why fnd_global.conc_request_id returns -1 ?

    Hassan AbdElrahman
    Hassan AbdElrahman Master Oracle ACE Pro Alum ♠ | Oracle Senior ERP Technical Consultant
    Added an answer on February 16, 2019 at 8:01 pm

    hello Alan The problem is that your request is not being submitted properly then it will be whatever fnd_global returns, which is most likely -1.

    hello Alan

    The problem is that your request is not being submitted properly then it will be whatever fnd_global returns, which is most likely -1.

    See less
      • 1
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  4. Asked: October 8, 2018In: Oracle Ebs Api’s

    How to SKIP or RETRY an oracle workflow by API from database ?

    Hassan AbdElrahman
    Hassan AbdElrahman Master Oracle ACE Pro Alum ♠ | Oracle Senior ERP Technical Consultant
    Added an answer on February 16, 2019 at 7:39 am
    This answer was edited.

    Hi Saly, this script to RETRY workflow from the backend BEGIN wf_engine.handleerror ( itemtype => ‘APINVAPR’, itemkey => 5211111_1, activity => ‘ESCALATE_DOC_APPROVAL’, command => ‘RETRY’, RESULT => NULL ); COMMIT; END; and here you can find the script for the SKIP workflow BEGIN wf_eRead more

    Hi Saly,

    this script to RETRY workflow from the backend

    BEGIN
    wf_engine.handleerror
    (
    itemtype => ‘APINVAPR’,
    itemkey => 5211111_1,
    activity => ‘ESCALATE_DOC_APPROVAL’,
    command => ‘RETRY’,
    RESULT => NULL
    );
    COMMIT;
    END;

    and here you can find the script for the SKIP workflow

    BEGIN
    wf_engine.handleerror
    (
    itemtype => ‘APINVAPR’,
    itemkey => 5211111_2,
    activity => ‘ESCALATE_DOC_APPROVAL’,
    command => ‘SKIP’,
    RESULT => NULL
    );
    COMMIT;
    END;

    Note :

    itemtype: this is the item type of the workflow

    itemkey: this is a unique key you give to workflow

    activity: is the point for the activity internal name which you need to retry or skip.

    See less
      • 1
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  5. Asked: October 27, 2018In: Oracle E-Business Suite

    How to create event alert in oracle apps ?

    Hassan AbdElrahman
    Hassan AbdElrahman Master Oracle ACE Pro Alum ♠ | Oracle Senior ERP Technical Consultant
    Added an answer on February 12, 2019 at 7:25 am

    Hi Olivier, you can find here step by step how to create event alert in oracle apps R12 hope this helpful, Hassan AbdElrahman

    Hi Olivier,

    you can find here step by step how to create event alert in oracle apps R12

    hope this helpful,

    Hassan AbdElrahman

    See less
      • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  6. Asked: November 19, 2018In: Oracle E-Business Suite

    looking for sample md 50 document in oracle apps?

    Hassan AbdElrahman
    Hassan AbdElrahman Master Oracle ACE Pro Alum ♠ | Oracle Senior ERP Technical Consultant
    Added an answer on February 11, 2019 at 10:35 am

    Hello Aya, you can find this article to download sample of AIM documents such as md 050 , md 070, etc.. CLICK HERE : >> AIM Documents (MD50, MD70 and MD120) Templates – Download now

    Hello Aya,

    you can find this article to download sample of AIM documents such as md 050 , md 070, etc..

    CLICK HERE : >> AIM Documents (MD50, MD70 and MD120) Templates – Download now

    See less
      • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  7. Asked: October 9, 2018In: Oracle EBS Financial

    Error APP-OFA-47227 ‘You must set up the category with default depreciation rules for at least one date range’ When Define a new Assets Category

    Hassan AbdElrahman
    Best Answer
    Hassan AbdElrahman Master Oracle ACE Pro Alum ♠ | Oracle Senior ERP Technical Consultant
    Added an answer on February 9, 2019 at 9:55 am

    Hello PraveenM, this error came because there is a setup of default rule was missing when you want to create new asset category. just follow this steps to complete your setup required: Navigate to Responsibility FA manager > Setup > Asset System > Category Ensure that, at the bottom of theRead more

    Hello PraveenM,

    this error came because there is a setup of default rule was missing when you want to create new asset category.

    just follow this steps to complete your setup required:

    Navigate to Responsibility FA manager > Setup > Asset System > Category

    Ensure that, at the bottom of the page, there is a Default rules button.

    Enter the mandatory information in the second page for Default rules and Save.

    Once the category book is defined with the default rules and saved, there should be no error.

    See less
      • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  8. Asked: October 21, 2018In: Oracle SQL

    How to create synonym in oracle ?

    Hassan AbdElrahman
    Best Answer
    Hassan AbdElrahman Master Oracle ACE Pro Alum ♠ | Oracle Senior ERP Technical Consultant
    Added an answer on October 23, 2018 at 5:19 pm

    Hello Amira, synonyms is an alternative name for objects such as tables, views, sequences, stored procedures, and other database objects. You generally use synonyms when you are granting access to an object from another schema and you don't want the users to have to worry about knowing which schemaRead more

    Hello Amira,

    synonyms is an alternative name for objects such as tables, views, sequences, stored procedures, and other database objects.

    You generally use synonyms when you are granting access to an object from another schema and you don’t want the users to have to worry about knowing which schema owns the object.

    and here is the syntax to create synonym

    CREATE [OR REPLACE] [PUBLIC] SYNONYM [schema .] synonym_name
    FOR [schema .] object_name [@ dblink];

    Example:

    CREATE PUBLIC SYNONYM emps
    FOR app.employees;

    Hope this help.

    See less
      • 1
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  9. Asked: October 31, 2017In: Oracle E-Business Suite

    how can i get PO Revision History details – oracle EBS R12?

    Hassan AbdElrahman
    Best Answer
    Hassan AbdElrahman Master Oracle ACE Pro Alum ♠ | Oracle Senior ERP Technical Consultant
    Added an answer on October 17, 2018 at 9:29 pm
    This answer was edited.

    Hello Chandra, First thing the revision tables is: po_headers_all, po_headers_archive_all, po_lines_archive_all, po_line_locations_archive_all and po_distributions_archive_all Note: How the Purchasing Archive tables are updated when using Archive on Approve method for archiving (To setup Archive onRead more

    Hello Chandra, First thing the revision tables is:

    po_headers_all, po_headers_archive_all, po_lines_archive_all, po_line_locations_archive_all and po_distributions_archive_all

    Note: How the Purchasing Archive tables are updated when using Archive on Approve method for archiving (To setup Archive on Approve go to Setup -> Purchasing -> Document Types) and here an example to understand and to get the revision’s of PO 1- We created new PO, sent it for approval 2- PO Approved Now run this query :

    SELECT po_header_id, segment1, revision_num 
    FROM po_headers_all 
    WHERE po_header_id = &p_po_header_id

    which is (&p_po_header_id) is ID for po has been created above. and here is the result expected:

    PO_HEADER_ID SEGMENT1 REVISION_NUM
    24678 3103 0

    3- Now add a new line in PO, then sent it for reapproval. 4- PO Approved Now run this query

    SELECT po_header_id, segment1, revision_num 
    FROM po_headers_archive_all 
    WHERE po_header_id = &p_po_header_id
    PO_HEADER_ID SEGMENT1 REVISION_NUM
    24678 3103 0
    24678 3103 1

    So now from archive table you can get all revisions for particular PO.  

    See less
      • 2
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  10. Asked: October 15, 2018In: Oracle E-Business Suite

    How to change user password in oracle apps from backend?

    Hassan AbdElrahman
    Best Answer
    Hassan AbdElrahman Master Oracle ACE Pro Alum ♠ | Oracle Senior ERP Technical Consultant
    Added an answer on October 15, 2018 at 10:07 pm

    Hi Sara,you can use : fnd_user_pkg.ChangePassword API to change or reset password for any user from database like this:[code]DECLAREl_user_name VARCHAR2(30):= UPPER('ORAASK');l_new_password VARCHAR2(30):= 'welcome123';l_status BOOLEAN;BEGINl_status := fnd_user_pkg.ChangePassword ( username => l_uRead more

    Hi Sara,

    you can use : fnd_user_pkg.ChangePassword API to change or reset password for any user from database like this:

    [code]
    DECLARE
    l_user_name VARCHAR2(30):= UPPER(‘ORAASK’);
    l_new_password VARCHAR2(30):= ‘welcome123’;
    l_status BOOLEAN;
    BEGIN
    l_status := fnd_user_pkg.ChangePassword ( username => l_user_name,
    newpassword => l_new_password);
    —
    IF l_status THEN
    dbms_output.put_line (‘The password changed successfully for the User:’||l_user_name);
    COMMIT;
    ELSE
    DBMS_OUTPUT.put_line (‘Unable to reset password due to’||SQLCODE||’ ‘||SUBSTR(SQLERRM, 1, 100));
    ROLLBACK;
    END IF;
    —
    END;
    [/code]

    See less
      • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
1 … 8 9 10 11 12 … 17

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.