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


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

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.

Forgot Password?

Need An Account, Sign Up Here

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Sorry, you do not have permission to add post.

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
  • Categories
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Dev Tools
    • Online Compiler
    • Base64 Converter
  • Wiki
    • SQL Tutorials
    • Java Tutorials
    • Python Tutorials
    • JavaScript Tutorials

Mmorsy

Juniormahmoudmorsymm1985@gmail.com
Ask Mmorsy
36 Visits
4 Followers
0 Questions
Home/ Mmorsy/Answers
  • About
  • Questions
  • Answers
  • Best Answers
  • Posts
  • Polls
  • Asked Questions
  • Comments
  1. Asked: July 12, 2017In: Oracle Applications DBA

    Can you provide me query to get specific report in EBS R12?

    Mmorsy
    Best Answer
    Mmorsy Junior mahmoudmorsymm1985@gmail.com
    Added an answer on July 16, 2017 at 6:41 am

    Hello Mina, you can use the below query. [code] SELECT DISTINCT c.USER_CONCURRENT_PROGRAM_NAME, ROUND ( ( (SYSDATE - a.actual_start_date) * 24 * 60 * 60 / 60), 2) AS Process_time, a.request_id, a.parent_request_id, a.request_date, a.actual_start_date, a.actual_completion_date, (a.actual_completion_dRead more

    Hello Mina,

    you can use the below query.

    [code]

    SELECT DISTINCT
    c.USER_CONCURRENT_PROGRAM_NAME,
    ROUND ( ( (SYSDATE – a.actual_start_date) * 24 * 60 * 60 / 60), 2)
    AS Process_time,
    a.request_id,
    a.parent_request_id,
    a.request_date,
    a.actual_start_date,
    a.actual_completion_date,
    (a.actual_completion_date – a.request_date) * 24 * 60 * 60
    AS end_to_end,
    (a.actual_start_date – a.request_date) * 24 * 60 * 60 AS lag_time,
    d.user_name,
    a.phase_code,
    a.status_code,
    a.argument_text,
    a.priority
    FROM apps.fnd_concurrent_requests a,
    apps.fnd_concurrent_programs b,
    apps.FND_CONCURRENT_PROGRAMS_TL c,
    apps.fnd_user d
    WHERE a.concurrent_program_id = b.concurrent_program_id
    AND b.concurrent_program_id = c.concurrent_program_id
    AND a.requested_by = d.user_id
    AND status_code = ‘C’
    AND c.USER_CONCURRENT_PROGRAM_NAME =
    ‘*************Name Of Report**********’
    ORDER BY Process_time DESC;
    [/code]

     

    Thanks ,

    Mahmoud Morsy

    See less
      • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  2. Asked: July 14, 2017In: Oracle Applications DBA

    Error with concurrent managers ‘ actual value of the manager is 0’

    Mmorsy
    Best Answer
    Mmorsy Junior mahmoudmorsymm1985@gmail.com
    Added an answer on July 15, 2017 at 5:20 pm

    Hello , you can follow the below steps: 1. Stop all Application services including the concurrent managers. Please make sure that no FNDLIBR, FNDSM, or any dead process is running. 2. Stop the database. 3. Start the database. 4. Go to cd $FND_TOP/bin $ adrelink.sh force=y link_debug=y "fnd FNDLIBR"Read more

    Hello ,

    you can follow the below steps:

    1. Stop all Application services including the concurrent managers.
    Please make sure that no FNDLIBR, FNDSM, or any dead process is running.
    2. Stop the database.
    3. Start the database.
    4. Go to cd $FND_TOP/bin
    $ adrelink.sh force=y link_debug=y “fnd FNDLIBR”
    $ adrelink.sh force=y link_debug=y “fnd FNDFS”
    $ adrelink.sh force=y link_debug=y “fnd FNDCRM”
    $ adrelink.sh force=y link_debug=y “fnd FNDSM”
    5. Run the CMCLEAN.SQL then Commit 6.Start All Application services

    thanks ,

    Mahmoud Morsy

    See less
      • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  3. Asked: July 14, 2017In: Oracle Applications DBA

    How to restart the failed installation in EBS R12?

    Mmorsy
    Mmorsy Junior mahmoudmorsymm1985@gmail.com
    Added an answer on July 15, 2017 at 5:19 pm

    Hi , Try using the below steps: 1- Run this command ./rapidwiz -restart 2- it will open the install screen and will have the saved configuration file. The saved configuration file can be found at 2 places. *) /tmp/usr/conf_SID.txt *) $ORACLE_HOME/appsutil/conf_SID.txt 3- choose the right saved confiRead more

    Hi ,

    Try using the below steps:

    1- Run this command ./rapidwiz -restart
    2- it will open the install screen and will have the saved configuration file. The saved configuration file can be found at 2 places.
    *) /tmp/usr/conf_SID.txt
    *) $ORACLE_HOME/appsutil/conf_SID.txt
    3- choose the right saved configuration file, the installer will start from the same point where it got failed.

    See less
      • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  4. Asked: May 1, 2017In: Oracle SQL

    How to get a list of all packages, procedures and functions in oracle database ?

    Mmorsy
    Mmorsy Junior mahmoudmorsymm1985@gmail.com
    Added an answer on July 12, 2017 at 5:27 pm

    Hi , use the below query : [code] select * from dba_objects [/code]

    Hi ,

    use the below query :

    [code]

    select * from dba_objects

    [/code]

    See less
      • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  5. Asked: July 11, 2017In: Oracle Database

    How to restore database with until time ?

    Mmorsy
    Mmorsy Junior mahmoudmorsymm1985@gmail.com
    Added an answer on July 11, 2017 at 4:28 pm

    Hello ,You can run this command in the shell session:export NLS_DATE_FORMAT="YYYY-MM-DD:HH24:MI:SS"Thenconnect with RMAN rman target /RUN{ ALLOCATE CHANNEL prmy1 TYPE disk ; set until time= "to_date('14/07/2015 10:34:36','dd/mm/yyyy hh24:mi:ss')"; RESTORE DATABASE; RECOVER DATABASE; RELEASE CHANNELRead more

    Hello ,

    You can run this command in the shell session:

    export NLS_DATE_FORMAT=”YYYY-MM-DD:HH24:MI:SS”

    Then

    connect with RMAN
    rman target /

    RUN
    {
    ALLOCATE CHANNEL prmy1 TYPE disk ;
    set until time= “to_date(’14/07/2015 10:34:36′,’dd/mm/yyyy hh24:mi:ss’)”;
    RESTORE DATABASE;
    RECOVER DATABASE;
    RELEASE CHANNEL prmy1;
    }

    See less
      • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  6. Asked: June 10, 2017In: PL/SQL

    How to check and test read/write permissions of Oracle directory?

    Mmorsy
    Mmorsy Junior mahmoudmorsymm1985@gmail.com
    Added an answer on July 9, 2017 at 6:28 pm

    Check the below query :SELECT * FROM all_tab_privs WHERE table_name = 'your_directory';

    Check the below query :

    SELECT * FROM all_tab_privs WHERE table_name = ‘your_directory’;

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

Sidebar

Adv 250x250

Explore

  • Categories
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Dev Tools
    • Online Compiler
    • Base64 Converter
  • 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.