e-business_suite_ebs
Differences
This shows you the differences between two versions of the page.
| Both sides previous revisionPrevious revisionNext revision | Previous revision | ||
| e-business_suite_ebs [2018/12/10 18:38] – external edit 127.0.0.1 | e-business_suite_ebs [2026/01/09 15:29] (current) – external edit 127.0.0.1 | ||
|---|---|---|---|
| Line 1: | Line 1: | ||
| - | | + | ====== E-Business Suite ====== |
| - | * [[http:// | + | |
| - | ===== Cloning ===== | + | * [[https:// |
| + | * [[https:// | ||
| + | * [[https:// | ||
| + | Tried most methods. The only one that seems to work correctly is dump the 2 tables from another system and import them into the current one. Then run FNDCPASS. | ||
| + | * [[http:// | ||
| + | * [[http:// | ||
| + | * [[http:// | ||
| + | * [[http:// | ||
| + | * [[https:// | ||
| + | * [[https:// | ||
| + | * [[Clone E-Business Suite EBS database]] | ||
| + | Some useful documents from Oracle | ||
| + | * [[https:// | ||
| + | * SRDC - Data Collection for E-Business Suite Cloning / Rapid Cloning Issues ( Doc ID 2108567.1 ) | ||
| + | * Troubleshooting RapidClone issues with Oracle Applications R12.0 & R12.1 ( Doc ID 603104.1 ) | ||
| + | * EBS R12.0.x / R12.1.x : How To Find Location Of Install, Autoconfig, Patching , Clone And Other Logs ( Doc ID 804603.1 ) | ||
| + | * [[https:// | ||
| + | * [[https:// | ||
| + | * [[https:// | ||
| + | * [[https:// | ||
| + | * [[https:// | ||
| + | * [[https:// | ||
| + | |||
| + | ==== How to customise the Oracle Applications logo ==== | ||
| + | One of the things customers want to do is replace the logo. [[http:// | ||
| + | |||
| + | ==== Find out what the apps password is if it has been forgotten ==== | ||
| + | < | ||
| + | Below steps to get the forgotten apps user password in oracle apps R12. | ||
| + | |||
| + | Step 1: Connect to sys user | ||
| + | |||
| + | SQL> show user | ||
| + | USER is " | ||
| + | |||
| + | Step 2: Create function to know the encrypted password | ||
| + | |||
| + | SQL> create FUNCTION apps.decrypt_pin_func(in_chr_key IN VARCHAR2, | ||
| + | / | ||
| + | |||
| + | Function created. | ||
| + | |||
| + | Step 3: Query for password | ||
| + | |||
| + | SQL> set linesize 200 long 300 | ||
| + | SQL> select ENCRYPTED_FOUNDATION_PASSWORD from apps.fnd_user where USER_NAME=' | ||
| + | |||
| + | ENCRYPTED_FOUNDATION_PASSWORD | ||
| + | ---------------------------------------------------------------------------------------------------- | ||
| + | ZGC679A64D8394F23E12CA4EB288F264FC09EBC9144C06181E921F88A972E231E9B530E7810DE42AC6103FC3CCD317CA3391 | ||
| + | |||
| + | Step 4: Apps password using encrypted guest password | ||
| + | |||
| + | SQL> SELECT apps.decrypt_pin_func(' | ||
| + | |||
| + | APPS.DECRYPT_PIN_FUNC(' | ||
| + | --------------------------------------------------------------------------------------------------------------------------------------------- | ||
| + | PASSWORD | ||
| + | |||
| + | Step 5: Test the password is working fine or not | ||
| + | |||
| + | SQL> conn apps/ | ||
| + | Connected | ||
| + | </ | ||
| + | |||
| + | ==== Restoring apps and applsys passwords after being changed at database level ==== | ||
| + | * [[https:// | ||
| + | These user passwords must be changed using FNDCPASS otherwise they (and the Application) will become unusabe. | ||
| + | |||
| + | If FNDCPASS does not work but you think it should (ie: you're pretty sure the password is correct), check the sec_case_sensitive parameter! It should be false for EBS. | ||
| + | |||
| + | Trying to change the password without using FNDCPASS will fail | ||
| + | < | ||
| + | cat L5217782.log | ||
| + | +---------------------------------------------------------------------------+ | ||
| + | Application Object Library: Version : 12.1 | ||
| + | |||
| + | Copyright (c) 1998, 2013, Oracle and/or its affiliates. All rights reserved. | ||
| + | |||
| + | FNDCPASS: | ||
| + | +---------------------------------------------------------------------------+ | ||
| + | |||
| + | Current system time is 26-SEP-2023 16:06:36 | ||
| + | |||
| + | +---------------------------------------------------------------------------+ | ||
| + | |||
| + | Arguments | ||
| + | |||
| + | | ||
| + | +----------------------------------------------------------------------------+ | ||
| + | Working... | ||
| + | Error in password verification for APPS. | ||
| + | |||
| + | +---------------------------------------------------------------------------+ | ||
| + | Concurrent request completed | ||
| + | Current system time is 26-SEP-2023 16:06:37 | ||
| + | |||
| + | +---------------------------------------------------------------------------+ | ||
| + | </ | ||
| + | |||
| + | It used to be possible to recover the situation by updating the fnd_oracle_userid table with a known encrypted password | ||
| + | < | ||
| + | alter user apps identified by apps account unlock; | ||
| + | update apps.fnd_oracle_userid | ||
| + | set encrypted_oracle_password =' | ||
| + | where oracle_username in (' | ||
| + | </ | ||
| + | but this doesn' | ||
| + | |||
| + | A way that still works (if there is no table-level backup), is to export the tables from a good database and import them into the problem database. | ||
| + | |||
| + | The passwords will obviously then be the same as those on the source database. | ||
| + | * Export tables from a good database | ||
| + | < | ||
| + | expdp \' | ||
| + | </ | ||
| + | * scp the dumpfile over to the bad database | ||
| + | * Import the dumpfile into the bad database | ||
| + | < | ||
| + | impdp \' | ||
| + | </ | ||
| + | * Change the password for apps and applsys in the database to match those of the good database | ||
| + | < | ||
| + | alter user apps identified by " | ||
| + | alter user applsys identified by " | ||
| + | </ | ||
| + | * Change the password using FNDCPASS and check the logfile | ||
| + | < | ||
| + | FNDCPASS apps/" | ||
| + | |||
| + | cat L5218783.log | ||
| + | +---------------------------------------------------------------------------+ | ||
| + | Application Object Library: Version : 12.1 | ||
| + | |||
| + | Copyright (c) 1998, 2013, Oracle and/or its affiliates. All rights reserved. | ||
| + | |||
| + | FNDCPASS: | ||
| + | +---------------------------------------------------------------------------+ | ||
| + | |||
| + | Current system time is 26-SEP-2023 16:30:43 | ||
| + | |||
| + | +---------------------------------------------------------------------------+ | ||
| + | |||
| + | Arguments | ||
| + | |||
| + | | ||
| + | +----------------------------------------------------------------------------+ | ||
| + | Working... | ||
| + | |||
| + | FNDCPASS completed successfully. | ||
| + | |||
| + | +---------------------------------------------------------------------------+ | ||
| + | Concurrent request completed successfully | ||
| + | Current system time is 26-SEP-2023 16:30:44 | ||
| + | |||
| + | +---------------------------------------------------------------------------+ | ||
| + | </ | ||
| + | |||
| + | |||
| + | ==== Stuff requested by Oracle ==== | ||
| + | Include this info when creating a technical SR | ||
| + | |||
| + | includes the version / release of Oracle Applications (fnd_product_groups) | ||
| + | < | ||
| + | conn apps/apps | ||
| + | set lines 1000 | ||
| + | col release_name for a20 | ||
| + | col codelevel | ||
| + | select release_name from fnd_product_groups; | ||
| + | select version from v$instance; | ||
| + | select abbreviation, | ||
| + | </ | ||
| + | |||
| + | As detailed in SRDC - Data Collection for E-Business Suite Cloning | ||
| + | < | ||
| + | TWO_TASK=$ORACLE_SID | ||
| + | </ | ||
| + | before running the zip command here. But then it still won't work if you used adcfgclone.pl with soemthing other than DBTier as a parameter (like me as I used Section 4, Option 6 in the Cloning document). | ||
| + | < | ||
| + | 1. On the target database tier, issue the following zip command: | ||
| + | $ zip -r / | ||
| + | / | ||
| + | / | ||
| + | $ORACLE_HOME/ | ||
| + | $ORACLE_HOME/ | ||
| + | $ORACLE_HOME/ | ||
| + | $ORACLE_HOME/ | ||
| + | $ORACLE_HOME/ | ||
| + | $ORACLE_HOME/ | ||
| + | $ORACLE_HOME/ | ||
| + | </ | ||
| + | The following command works unmodified. | ||
| + | < | ||
| + | 2. On the target application tier, issue the following zip command: | ||
| + | $ zip -r / | ||
| + | / | ||
| + | / | ||
| + | $COMMON_TOP/ | ||
| + | $INST_TOP/ | ||
| + | $INST_TOP/ | ||
| + | $INST_TOP/ | ||
| + | $INST_TOP/ | ||
| + | $LOG_HOME/ | ||
| + | $LOG_HOME/ | ||
| + | $LOG_HOME/ | ||
| + | </ | ||
| + | |||
| + | Then they request you do this... | ||
| + | < | ||
| + | 3. Download and run the Clone Log Parser. | ||
| + | This is a tool used to consolidate error information from various Rapidclone related log files into an HTML report. | ||
| + | A single cloning session may generate up to a dozen separate log files, the Log Parser allows you to view relevant snippets of each log at one time. | ||
| + | Additionally the Log Parser will do some basic configuration and health checks of the environment and also may provide leads to solving problems. | ||
| + | Review note EBS Clone Log Parser Utility (Rapid Clone 11i,12.0, 12.1)[VIDEO] ( Doc ID 1447553.1 ). | ||
| + | </ | ||
| + | Following the instructions in that document, it asks you to unset PERL5LIB but then perl cannot find strict.pm! | ||
| + | |||
| + | === RDA === | ||
| + | * Download latest RDA engine - [[https:// | ||
| + | Don't forget Database tier can be a different platform from the Apps tier so 2 versions may be needed (one AIX and one Linux?)! | ||
| + | |||
| + | ===== RDA - Health Check / Validation Engine Guide (Doc ID 250262.1) ===== | ||
| + | < | ||
| + | In order to check your OS prerequisites in automatic way please use Note 250262.1 RDA 4 - Health Check / Validation Engine Guide . | ||
| + | After following “Installation Instructions” please follow “Instructions for UNIX type operating systems”. | ||
| + | |||
| + | I’ll attach an example : | ||
| + | download the patch | ||
| + | unzip | ||
| + | cd rda | ||
| + | [applmgr@soatest rda]$ ./rda.sh -T hcve | ||
| + | Processing HCVE tests ... | ||
| + | Available Pre-Installation Rule Sets: | ||
| + | From the menu select the number corresponding to Oracle E-Business Suite Release 12.x Preinstall | ||
| + | |||
| + | 1. Upload the generated html file | ||
| + | </ | ||
| + | |||
| + | ==== What version of Oracle Applications are we running? ==== | ||
| + | < | ||
| + | select release_name from fnd_product_groups; | ||
| + | </ | ||
| + | ==== What maintenance packs have been applied? ==== | ||
| + | < | ||
| + | select | ||
| + | BUG_NUMBER, | ||
| + | LAST_UPDATE_DATE, | ||
| + | decode(bug_number, | ||
| + | 3031977, 'POST OWF.G ROLLUP 1 - 11.5.9.1', | ||
| + | 3061871, 'POST OWF.G ROLLUP 2 - 11.5.9.2', | ||
| + | 3124460, 'POST OWF.G ROLLUP 3 - 11.5.9.3', | ||
| + | 3126422, ' | ||
| + | 3171663, ' | ||
| + | 3316333, 'POST OWF.G ROLLUP 4 - 11.5.9.4.1', | ||
| + | 3314376, 'POST OWF.G ROLLUP 5 - 11.5.9.5', | ||
| + | 3409889, 'POST OWF.G ROLLUP 5 Consolidated Fixes For OWF.G RUP 5', 3492743, 'POST OWF.G ROLLUP 6 - 11.5.9.6', | ||
| + | 3868138, 'POST OWF.G ROLLUP 7 - 11.5.9.7', | ||
| + | 3262919, ' | ||
| + | 3262159, 'FND.H INCLUDE OWF.H', | ||
| + | 3258819, 'OWF.H INCLUDED IN 11.5.10', | ||
| + | 3438354, ' | ||
| + | 3140000, ' | ||
| + | 3240000, ' | ||
| + | 3460000, ' | ||
| + | 3480000, ' | ||
| + | 4017300 , ' | ||
| + | 4125550 , ' | ||
| + | 5121512, 'AOL USER RESPONSIBILITY SECURITY FIXES VERSION 1', | ||
| + | 6008417, 'AOL USER RESPONSIBILITY SECURITY FIXES 2b', | ||
| + | 6047864, ' | ||
| + | 4334965, ' | ||
| + | 4676589, ' | ||
| + | 5473858, ' | ||
| + | 5903765, ' | ||
| + | 6241631, ' | ||
| + | 4440000, ' | ||
| + | 5082400, ' | ||
| + | 5484000, ' | ||
| + | 6141000, ' | ||
| + | 6435000, ' | ||
| + | 5907545, ' | ||
| + | 5917344, ' | ||
| + | 6077669, ' | ||
| + | 6272680, ' | ||
| + | 7237006, ' | ||
| + | 6728000, ' | ||
| + | 7303030, ' | ||
| + | 7651091, ' | ||
| + | 7303033, ' | ||
| + | 9239089, ' | ||
| + | 8919491, ' | ||
| + | 9239090, ' | ||
| + | bug_number), | ||
| + | ARU_RELEASE_NAME | ||
| + | from AD_BUGS b | ||
| + | where b.BUG_NUMBER in (' | ||
| + | 00', ' | ||
| + | ' | ||
| + | ' | ||
| + | order by BUG_NUMBER, | ||
| + | / | ||
| + | </ | ||
| + | < | ||
| + | BUG_NUMBER | ||
| + | ------------------------------ ------------------------ ------------------------------------------------------------------------------------ ------------------------------ | ||
| + | 2728236 | ||
| + | 3031977 | ||
| + | 3061871 | ||
| + | 3124460 | ||
| + | 3140000 | ||
| + | 3258819 | ||
| + | 3262159 | ||
| + | 3262919 | ||
| + | 3314376 | ||
| + | 3316333 | ||
| + | 3409889 | ||
| + | 3492743 | ||
| + | 4440000 | ||
| + | 4440000 | ||
| + | 5907545 | ||
| + | 5907545 | ||
| + | 5917344 | ||
| + | 5917344 | ||
| + | 6077669 | ||
| + | 6077669 | ||
| + | 6141000 | ||
| + | 6272680 | ||
| + | 6435000 | ||
| + | 7303030 | ||
| + | 7303033 | ||
| + | 7651091 | ||
| + | 8919491 | ||
| + | 9239089 | ||
| + | 9239090 | ||
| + | |||
| + | 29 rows selected. | ||
| + | |||
| + | </ | ||
| + | ==== What patches have been installed? ==== | ||
| + | < | ||
| + | set lines 1000 pages 100 | ||
| + | col patch_name | ||
| + | col patch_type | ||
| + | col maint_pack_level for a10 | ||
| + | select applied_patch_id | ||
| + | , patch_name | ||
| + | , patch_type | ||
| + | , maint_pack_level | ||
| + | , source_code | ||
| + | , creation_date | ||
| + | from | ||
| + | order by creation_date | ||
| + | / | ||
| + | </ | ||
| + | < | ||
| + | APPLIED_PATCH_ID PATCH_NAME | ||
| + | ---------------- --------------- -------------------- ---------- --- ------------------------ | ||
| + | 19401 10096077 | ||
| + | 19400 10096077 | ||
| + | 18394 10163753 | ||
| + | 18395 10163753 | ||
| + | 19391 10229047 | ||
| + | 19390 10229047 | ||
| + | 20390 10318122 | ||
| + | 20391 10318122 | ||
| + | 20397 10328890 | ||
| + | 20398 10328890 | ||
| + | 19419 10358055 | ||
| + | 19418 10358055 | ||
| + | 19422 10380225 | ||
| + | 19423 10380225 | ||
| + | 22406 10408339 | ||
| + | 22405 10408339 | ||
| + | 18396 11071569 | ||
| + | 20393 11768127 | ||
| + | 20392 11768127 | ||
| + | 19420 11792958 | ||
| + | 19421 11792958 | ||
| + | ... | ||
| + | 15391 9239089 | ||
| + | 16390 9239090 | ||
| + | 17390 9239090 | ||
| + | 17391 9239095 | ||
| + | 17392 9239095 | ||
| + | 19396 9524997 | ||
| + | 19397 9524997 | ||
| + | 19409 9590326 | ||
| + | 19410 9590326 | ||
| + | 19394 9679595 | ||
| + | 19395 9679595 | ||
| + | 19392 9701260 | ||
| + | 19393 9701260 | ||
| + | 18397 9738085 | ||
| + | 19411 9742747 | ||
| + | 19412 9742747 | ||
| + | 17393 9817770 | ||
| + | 18398 9852070 | ||
| + | 18392 9868229 | ||
| + | 18393 9868229 | ||
| + | 19398 9926320 | ||
| + | 19399 9926320 | ||
| + | 20394 9930308 | ||
| + | 20395 9930308 | ||
| + | 17394 9966055 | ||
| + | 24405 preRH_dest1 | ||
| + | 24406 preRH_dest1 | ||
| + | |||
| + | 125 rows selected. | ||
| + | </ | ||
| + | |||
| + | ==== Connection issues accessing the Applications login screen? ==== | ||
| + | http server error 500 or another issue? Perform some connection tests with this | ||
| + | < | ||
| + | http:// | ||
| + | </ | ||
| + | ==== Some useful directories / files ==== | ||
| + | CONTEXT_NAME is ${ORACLE_SID}_$(hostname|awk -F' | ||
| + | |||
| + | * Apps Context file | ||
| + | < | ||
| + | $INST_TOP/ | ||
| + | </ | ||
| + | * Database Context File | ||
| + | < | ||
| + | $ORACLE_HOME/ | ||
| + | </ | ||
| + | * adautocfg.sh | ||
| + | On Apps tier is found in $INST_TOP/ | ||
| + | This file is a wrapper script that passes the name of the context file to adconfig.sh, | ||
| + | |||
| + | On the Database Tier, it is found in $ORACLE_HOME/ | ||
| + | |||
| + | * Backup Autoconfig files | ||
| + | Backups of the files created by adautocfg.sh can be found in:\\ | ||
| + | Apps Tier: $INST_TOP/ | ||
| + | Database Tier: $ORACLE_HOME/ | ||
| + | |||
| + | |||
| There are many different ways of cloning an E-Business suite database. This is a long-winded version. Trying to trim it down... | There are many different ways of cloning an E-Business suite database. This is a long-winded version. Trying to trim it down... | ||
| * [[Clone E-Business Suite (EBS) database]] | * [[Clone E-Business Suite (EBS) database]] | ||
| Line 8: | Line 446: | ||
| * [[https:// | * [[https:// | ||
| * [[https:// | * [[https:// | ||
| + | * [[https:// | ||
| + | This is the Claremont way of doing it | ||
| + | * [[https:// | ||
| + | |||
| + | This is the Perficient way of doing it | ||
| + | * [[https:// | ||
| + | |||
| + | ==== Troubleshooting ==== | ||
| + | * [[https:// | ||
| ===== General ===== | ===== General ===== | ||
| + | ==== How to rebuild the Central Inventory for EBS databases ==== | ||
| + | * [[https:// | ||
| + | * Can also probably script something with runInstaller or deinstall or attach_home. | ||
| ==== How to find the Internal Concurrent Manager (ICM) log on Oracle Apps 11i and R12 ==== | ==== How to find the Internal Concurrent Manager (ICM) log on Oracle Apps 11i and R12 ==== | ||
| * [[http:// | * [[http:// | ||
| Line 17: | Line 467: | ||
| ls -altr *$TWO_TASK* | ls -altr *$TWO_TASK* | ||
| </ | </ | ||
| + | ==== How to clear/ | ||
| + | * [[https:// | ||
| + | |||
| ===== Errors ===== | ===== Errors ===== | ||
| ==== internal concurrent manager has terminated with status 1 - giving up. ==== | ==== internal concurrent manager has terminated with status 1 - giving up. ==== | ||
| === Problem === | === Problem === | ||
| - | Starting up with adstrtall.sh seems to end successfully but all the FND processes soon all crash.<br /> | + | Starting up with adstrtal.sh seems to end successfully but all the FND processes soon all crash.\\ |
| === Solution === | === Solution === | ||
| * [[http:// | * [[http:// | ||
| - | Essentially, | + | Essentially, |
| Stop what's left of the apps processes | Stop what's left of the apps processes | ||
| < | < | ||
| Line 29: | Line 482: | ||
| ./ | ./ | ||
| </ | </ | ||
| - | on the database server setup the environment, | + | on the database server setup the environment, |
| Run autoconfig appspass=apps | Run autoconfig appspass=apps | ||
| < | < | ||
| Line 35: | Line 488: | ||
| ./ | ./ | ||
| </ | </ | ||
| - | then back on the application server<br /> | + | then back on the application server\\ |
| Run autoconfig and restart apps | Run autoconfig and restart apps | ||
| < | < | ||
| Line 43: | Line 496: | ||
| </ | </ | ||
| As a final check, have a look at the contents of FND_NODES | As a final check, have a look at the contents of FND_NODES | ||
| + | |||
| + | ==== EBS Sanity / Health check script ==== | ||
| + | * [[http:// | ||
| + | < | ||
| + | set pages 1000 | ||
| + | set linesize 135 | ||
| + | col PROPERTY_NAME for a25 | ||
| + | col PROPERTY_VALUE for a15 | ||
| + | col DESCRIPTION for a35 | ||
| + | col DIRECTORY_PATH for a70 | ||
| + | col directory_name for a25 | ||
| + | col OWNER for a10 | ||
| + | col DB_LINK for a40 | ||
| + | col HOST for a20 | ||
| + | col " | ||
| + | col " | ||
| + | set head off | ||
| + | set feedback off | ||
| + | set echo off | ||
| + | |||
| + | break on utl_file_dir | ||
| + | |||
| + | select ' | ||
| + | select ' | ||
| + | select ' | ||
| + | Prompt | ||
| + | select ' | ||
| + | |||
| + | select ' | ||
| + | select ' | ||
| + | select ' | ||
| + | select ' | ||
| + | select ' | ||
| + | select ' | ||
| + | select ' | ||
| + | select 'Total SGA ........................ : ' | ||
| + | select ' | ||
| + | select ' | ||
| + | where property_name like ' | ||
| + | select 'Apps Temp Tablespace.............. : ' | ||
| + | select 'Temp Tablespace size.............. : ' | ||
| + | select 'No of Invalid Object ............. : ' | ||
| + | select ' | ||
| + | select 'plsql code type................... : ' | ||
| + | select 'plsql subdir count................ : ' | ||
| + | select 'plsql native library dir.......... : ' | ||
| + | select ' | ||
| + | select 'Log Buffer........................ : ' | ||
| + | select ' | ||
| + | select 'Large Pool Size................... : ' | ||
| + | select 'Java Pool Size.................... : ' | ||
| + | select ' | ||
| + | select directory_name||' | ||
| + | |||
| + | select ' | ||
| + | |||
| + | select 'Home URL.......................... : ' | ||
| + | select ' | ||
| + | select ' | ||
| + | select 'GSM Enabled....................... : ' | ||
| + | select ' | ||
| + | select 'Site Name......................... : ' | ||
| + | select 'Bug Number........................ : ' | ||
| + | |||
| + | select ' | ||
| + | |||
| + | select 'No Open Notifications............. : ' | ||
| + | select ' | ||
| + | select ' | ||
| + | select ' | ||
| + | select ' | ||
| + | where component_name like ' | ||
| + | select 'Test Address...................... : ' | ||
| + | from fnd_svc_comp_param_vals_v a, fnd_svc_comp_param_vals b | ||
| + | where a.parameter_id=b.parameter_id | ||
| + | and a.parameter_name in (' | ||
| + | select 'From Address...................... : ' | ||
| + | from fnd_svc_comp_param_vals_v a, fnd_svc_comp_param_vals b | ||
| + | where a.parameter_id=b.parameter_id | ||
| + | and a.parameter_name in (' | ||
| + | select 'WF Admin Role..................... : ' | ||
| + | |||
| + | |||
| + | Prompt | ||
| + | Prompt Getting Apps Node Info | ||
| + | Prompt ************************ | ||
| + | select Node_Name,' | ||
| + | select server_type||' | ||
| + | where fnd_app_servers.node_id =fnd_nodes.node_id; | ||
| + | |||
| + | select ' | ||
| + | Column Target_Node | ||
| + | select User_Concurrent_Queue_Name,' | ||
| + | from fnd_concurrent_queues_vl | ||
| + | where Running_Processes = Max_Processes | ||
| + | and Running_Processes > 0; | ||
| + | |||
| + | Prompt | ||
| + | Prompt Getting Pending Request | ||
| + | Prompt *********************** | ||
| + | --select user_concurrent_program_name||' | ||
| + | -- from fnd_concurrent_requests r, fnd_concurrent_programs_vl p, fnd_lookups s, fnd_lookups ph | ||
| + | -- where r.concurrent_program_id = p.concurrent_program_id | ||
| + | -- and r.phase_code = ph.lookup_code | ||
| + | -- and ph.lookup_type = ' | ||
| + | -- and r.status_code = s.lookup_code | ||
| + | -- and s.lookup_type = ' | ||
| + | -- and ph.meaning =' | ||
| + | -- and rownum < 10 | ||
| + | -- order by to_date(actual_start_date, | ||
| + | -- | ||
| + | |||
| + | Prompt | ||
| + | Prompt Getting Workflow Components Status | ||
| + | Prompt ********************************** | ||
| + | |||
| + | set pagesize 1000 | ||
| + | select fsc.COMPONENT_NAME, | ||
| + | fsc.STARTUP_MODE, | ||
| + | fsc.COMPONENT_STATUS, | ||
| + | fcq.MAX_PROCESSES TARGET, | ||
| + | fcq.RUNNING_PROCESSES ACTUAL | ||
| + | from APPS.FND_CONCURRENT_QUEUES_VL fcq, APPS.FND_CP_SERVICES fcs, | ||
| + | APPS.FND_CONCURRENT_PROCESSES fcp, fnd_svc_components fsc | ||
| + | where fcq.MANAGER_TYPE = fcs.SERVICE_ID | ||
| + | and fcs.SERVICE_HANDLE = ' | ||
| + | and fsc.concurrent_queue_id = fcq.concurrent_queue_id(+) | ||
| + | and fcq.concurrent_queue_id = fcp.concurrent_queue_id(+) | ||
| + | and fcq.application_id = fcp.queue_application_id(+) | ||
| + | and fcp.process_status_code(+) = ' | ||
| + | order by fcp.OS_PROCESS_ID, | ||
| + | |||
| + | select ' | ||
| + | select ' | ||
| + | select ' | ||
| + | |||
| + | </ | ||
| + | |||
e-business_suite_ebs.1544467089.txt.gz · Last modified: 2018/12/10 18:38 by 127.0.0.1
