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 E-Business Suite

Oracle E-Business Suite

Share
  • Facebook
3 Followers
33 Answers
114 Questions
Home/Oracle E-Business Suite/Page 6
  • Recent Questions
  • Answers
  • No Answers
  1. 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
  2. Asked: July 20, 2017In: Oracle E-Business Suite

    error when using FND_STANDARD_DATE valueset

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

    Hi Maran The format mask for the FND_STANDARD_DATE data type is “YYYY/MM/DD HH24:MI:SS”. As a result, PLSQL procedure will receive a value like ‘2017/07/14 00:00:00’ as the date. so if you want to query from database you need to use this format : (2017/07/14 00:00:00) not '14-JUL-2017'

    Hi Maran

    The format mask for the FND_STANDARD_DATE data type is “YYYY/MM/DD HH24:MI:SS”. As a result, PLSQL procedure will receive a value like ‘2017/07/14 00:00:00’ as the date.

    so if you want to query from database you need to use this format : (2017/07/14 00:00:00) not ’14-JUL-2017′

    See less
      • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  3. Asked: January 10, 2018In: Oracle E-Business Suite

    What is FNDLOAD command to migrate Messages from one instance to another ?

    Hassan AbdElrahman
    Hassan AbdElrahman Master Oracle ACE Pro Alum ♠ | Oracle Senior ERP Technical Consultant
    Added an answer on September 2, 2018 at 6:41 am
    This answer was edited.

    Hi, here is download and upload messages by FNDLOAD DOWNLOAD Command: FNDLOAD apps/apps 0 Y DOWNLOAD $FND_TOP/patch/115/import/afmdmsg.lct XX_MESSAGE_NAME.ldt FND_NEW_MESSAGES APPLICATION_SHORT_NAME='SQLGL' MESSAGE_NAME=XX_MESSAGE_NAME UPLOAD Command: FNDLOAD apps/apps O Y UPLOAD $FND_TOP/patch/115/Read more

    Hi,

    here is download and upload messages by FNDLOAD

    DOWNLOAD Command:

    FNDLOAD apps/apps 0 Y DOWNLOAD $FND_TOP/patch/115/import/afmdmsg.lct XX_MESSAGE_NAME.ldt FND_NEW_MESSAGES APPLICATION_SHORT_NAME='SQLGL' MESSAGE_NAME=XX_MESSAGE_NAME

    UPLOAD Command:

    FNDLOAD apps/apps O Y UPLOAD $FND_TOP/patch/115/import/afmdmsg.lct XX_MESSAGE_NAME.ldt UPLOAD_MODE=REPLACE CUSTOM_MODE=FORCE

    Don’t forget to change message name and application short name.

    Regards.

    See less
      • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  4. Asked: September 1, 2018In: Oracle EBS SCM

    Unable To Finally Close Purchase Ordes or Blanket Releases Because of Error: APP-PO-14160

    Hassan AbdElrahman
    Hassan AbdElrahman Master Oracle ACE Pro Alum ♠ | Oracle Senior ERP Technical Consultant
    Added an answer on September 1, 2018 at 10:23 am

    While reversal amounts are calculated, the Final_amt field is updated. This can be null when final_amt is already null. you can refer to Document : Doc ID 1990193.1 to find the solution.

    While reversal amounts are calculated, the Final_amt field is updated. This can be null when final_amt is already null.

    you can refer to Document : Doc ID 1990193.1 to find the solution.

    See less
      • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
  5. Asked: June 12, 2018In: Oracle EBS SCM

    Is it Possible to Migrate Blanket PO’S in Closed Status Like Standard PO’S?

    Hassan AbdElrahman
    Hassan AbdElrahman Master Oracle ACE Pro Alum ♠ | Oracle Senior ERP Technical Consultant
    Added an answer on September 1, 2018 at 7:06 am

    Hi, Where you need to migrate exactly ? and if their status's is closed why you need them ? Regards.

    Hi,

    Where you need to migrate exactly ? and if their status’s is closed why you need them ?

    Regards.

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

    Would you use flashback query to synchronize two schemas as of a certain point in time?

    Googler
    Googler Explorer
    Added an answer on April 13, 2018 at 9:49 pm

    there is two options here : a) use serializable or read only isolation - the database would be consistent. b) use flashback query themselves - mandate that you set undo_retention to "X" and then they can just flashback and get a read consistent version of the database back "X" units in time. anythinRead more

    there is two options here :

    a) use serializable or read only isolation – the database would be consistent.

    b) use flashback query themselves – mandate that you set undo_retention to “X” and then they can just flashback and get a read consistent version of the database back “X” units in time.

    anything else does not really make sense. To synchronize the two scheme’s (using flashback) would mean a big bump and grind – AND – would prove that the data they need is flashback queryable – meaning, they didn’t need to copy it, it already exist.

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

    How to see lock on table and query?

    Mmorsy
    Mmorsy Junior mahmoudmorsymm1985@gmail.com
    Added an answer on August 6, 2017 at 8:31 am

    Hi Mina , Try this query : [code] SELECT c.owner, c.object_name, c.object_type, b.sid, b.serial#, b.status, b.osuser, b.machine FROM v$locked_object a, v$session b, dba_objects c WHERE b.sid = a.session_id AND a.object_id = c.object_id AND xidsqn != 0; [/code] Regards , Mahmoud Morsy

    Hi Mina ,

    Try this query :

    [code]
    SELECT c.owner,
    c.object_name,
    c.object_type,
    b.sid,
    b.serial#,
    b.status,
    b.osuser,
    b.machine
    FROM v$locked_object a, v$session b, dba_objects c
    WHERE b.sid = a.session_id AND a.object_id = c.object_id AND xidsqn != 0;
    [/code]

    Regards ,

    Mahmoud Morsy

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

    I need query to get Apps_user_name , Date , SID , SERIAL#, oracle process , application process , Module , responsibility name in EBS R12.

    Mmorsy
    Mmorsy Junior mahmoudmorsymm1985@gmail.com
    Added an answer on July 31, 2017 at 1:48 pm

    Hello , The below query help you : select usr.user_name apps_username ,ses.osuser ,ses.machine ,i.first_connect "First Connect Date" ,ses.sid ,ses.serial# ,ses.module ,v.spid "Oracle Server Process" ,ses.process "Application Server Process" ,rsp.responsibility_name "Responsibility Name" ,null "RespoRead more

    Hello ,

    The below query help you :

    select usr.user_name apps_username
    ,ses.osuser
    ,ses.machine
    ,i.first_connect "First Connect Date"
    ,ses.sid
    ,ses.serial#
    ,ses.module
    ,v.spid "Oracle Server Process"
    ,ses.process "Application Server Process"
    ,rsp.responsibility_name "Responsibility Name"
    ,null "Responsibility Start Time"
    ,fuc.function_name "Function Name"
    ,i.function_type "Function Type"
    ,i.last_connect function_start_time
    from icx_sessions i
    ,fnd_logins l
    ,fnd_appl_sessions a
    ,fnd_user usr
    ,fnd_responsibility_tl rsp
    ,fnd_form_functions fuc
    ,gv$process v
    ,gv$session ses
    where i.disabled_flag = 'N'
    and i.login_id = l.login_id
    and l.end_time is null
    and i.user_id = usr.user_id
    and l.login_id = a.login_id
    and a.audsid = ses.audsid
    and l.pid = v.pid
    and l.serial# = v.serial#
    and i.responsibility_application_id = rsp.application_id(+)
    and i.responsibility_id = rsp.responsibility_id(+)
    and i.function_id = fuc.function_id(+)
    and i.responsibility_id not in (select t1.responsibility_id
    from fnd_login_responsibilities t1
    where t1.login_id = l.login_id)
    and rsp.language(+) = 'US'
    union
    select usr.user_name apps_username
    ,ses.osuser
    ,ses.machine
    ,l.start_time
    ,ses.sid
    ,ses.serial#
    ,ses.module
    ,v.spid
    ,ses.process
    ,rsp.responsibility_name
    ,r.start_time
    ,null
    ,null
    ,null function_start_time
    from fnd_logins l
    ,fnd_login_responsibilities r
    ,fnd_user usr
    ,fnd_responsibility_tl rsp
    ,gv$process v
    ,gv$session ses
    where l.end_time is null
    and l.user_id = usr.user_id
    and l.pid = v.pid
    and l.serial# = v.serial#
    and v.addr = ses.paddr
    and l.login_id = r.login_id(+)
    and r.end_time is null
    and r.responsibility_id = rsp.responsibility_id(+)
    and r.resp_appl_id = rsp.application_id(+)
    and rsp.language(+) = 'US'
    and r.audsid = ses.audsid
    union
    select usr.user_name
    ,ses.osuser
    ,ses.machine
    ,l.start_time
    ,ses.sid
    ,ses.serial#
    ,ses.module
    ,v.spid
    ,ses.process
    ,null
    ,null
    ,frm.user_form_name
    ,ff.type
    ,f.start_time function_start_time
    from fnd_logins l
    ,fnd_login_resp_forms f
    ,fnd_user usr
    ,fnd_form_tl frm
    ,fnd_form_functions ff
    ,gv$process v
    ,gv$session ses
    where l.end_time is null
    and l.user_id = usr.user_id
    and l.pid = v.pid
    and l.serial# = v.serial#
    and v.addr = ses.paddr
    and l.login_id = f.login_id(+)
    and f.end_time is null
    and f.form_id = frm.form_id(+)
    and f.form_appl_id = frm.application_id(+)
    and frm.language(+) = 'US'
    and f.audsid = ses.audsid
    and ff.form_id = frm.form_id
    order by function_start_time

    Regards,

    Mahmoud Morsy

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

    How to check Workflow Mailer Status By query in EBS R12?

    Mmorsy
    Mmorsy Junior mahmoudmorsymm1985@gmail.com
    Added an answer on July 31, 2017 at 1:42 pm
    This answer was edited.

    Hi , You can use the below query : SELECT component_name AS Component, component_status AS Status FROM apps.fnd_svc_components WHERE component_type = 'WF_MAILER' Regards, Mahmoud Morsy

    Hi , You can use the below query :

    SELECT component_name AS Component, component_status AS Status 
    FROM apps.fnd_svc_components 
    WHERE component_type = 'WF_MAILER'

    Regards,
    Mahmoud Morsy

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

    How to query Gather schema statistic For Last week NonApps schemas in EBS R12?

    Mmorsy
    Mmorsy Junior mahmoudmorsymm1985@gmail.com
    Added an answer on July 31, 2017 at 1:36 pm

    Hello , Check the below Query: [code] SELECT * FROM apps.fnd_concurrent_programs_vl p, apps.fnd_concurrent_requests r WHERE r.concurrent_program_id = p.concurrent_program_id AND r.program_application_id = p.application_id AND p.user_concurrent_program_name IN ('Gather Statistics for NonApps Schema')Read more

    Hello ,

    Check the below Query:

    [code]
    SELECT *
    FROM apps.fnd_concurrent_programs_vl p, apps.fnd_concurrent_requests r
    WHERE r.concurrent_program_id = p.concurrent_program_id
    AND r.program_application_id = p.application_id
    AND p.user_concurrent_program_name IN (‘Gather Statistics for NonApps
    Schema’)
    AND ( r.phase_code = ‘C’
    AND r.status_code = ‘C’
    AND r.actual_start_date >= SYSDATE)
    [/code]

    Regards

    Mahmoud Morsy

    See less
      • 0
    • Share
      Share
      • Share on Facebook
      • Share on Twitter
      • Share on LinkedIn
      • Share on WhatsApp
1 … 4 5 6 7 8 9

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.