EBS R12 OA Page Export Question...

Hi,
I'm trying to export a seeded page to my local PC.. I'm using OA Jdeveloper version 10.1.3.1.0.. With this version of jdeveloper, export.bat was in this folder jdevbin\oaext\bin . This is what i have in my export.bat
===========================================
@echo off
REM export.bat
REM
REM DESCRIPTION
REM This file is used to call the JRAD XML Export utility
REM
REM
REM NOTES
REM
REM
REM
REM MODIFIED (MM/DD/YY)
REM ayu 01/31/06 - update classpath
REM lramados 09/01/05 - Remove JDK118 dependency.
REM cbarrow 08/06/03 - #(3057426) Add oamdsdt.jar to classpath
REM kaalvare 07/17/03 - Add jsp-el-api.jar to classpath
REM lramados 07/17/03 - #(3053248)Added mdstoold.jat in the classpath
REM cbarrow 06/09/03 - Move to RTMDS 9.0.5: add dependencies to JRAD_JAR
REM lramados 05/07/03 - #(2627931) Support for case insensitive parameters
REM jhsi 01/21/03 - #(2741748) Support jdk118 runtime env.
REM jhsi 09/27/02 - #(2562017) Package structure changes for XMLExport
REM lramados 08/13/02 - #(2500845) Rearranged the order of parameters in help
REM lramados 08/01/02 - #(2386414) Support for displaying list of documents and package files
REM lramados 06/25/02 - #(2418684) Changed WITHREFERENCES to WITHREFS for the sake of uniformity
REM lramados 06/24/02 - #(2423145) Handle invalid command line parameters
REM lramados 06/18/02 - #(2408092) Added comment as 'DO NOT CHANGE' for JRAD_ROOT
REM lramados 06/07/02 - #(2378477) Compute JRAD_ROOT
REM lramados 06/07/02 - Changed default USERNAME and PASSWORD to 'jdr'
REM lramados 06/07/02 - Support for package files and directories
REM gkonduri 04/05/02 - Creation
REM
:: ## This file should be in sync with the "export" shell script ##
:: ## Please update "export" when updating this file. ##
setlocal
:: --------- COMPUTE JRAD_ROOT. DO NOT CHANGE THIS VALUE !! ---------
:: -- JRAD_ROOT directory
:: The JRAD_ROOT environment variable is computed by getting the current
:: path and going up two directory levels to get the actual "deliver"
:: directory. By convention, the deliver directory is called JRAD_ROOT
set JRAD_ROOT=%~d0%~p0..\..
:: need to set the default values for variables
set jdk13="n"
set middle_tier="n"
set verbose="n"
:: Check for any occurence of -jdk13 or jdk13=y and set the
:: jdk13_str=y so that we have JDK13 PATH and classpath is setup.
:start
if %1.==. goto done
if /i %1==-jdk13 goto jdk13_handle
if /i %1==jdk13 goto jdk13eq_handle
if /i %1==-middleTier goto middleTier_handle
if /i %1==-verbose goto verbose_handle
:: -- Finished processing the current parameter. Process the next parameter set
set PARAMS=%PARAMS% %1
shift
goto start
:jdk13eq_handle
set PARAMS=%PARAMS% %1
shift
if "%1"=="y" goto jdk13_handle
set PARAMS=%PARAMS% %1
shift
goto start
:jdk13_handle
set jdk13="y"
set PARAMS=%PARAMS% %1
shift
goto start
:middleTier_handle
set middle_tier="y"
shift
goto start
:verbose_handle
set verbose="y"
shift
goto start
:middle_tier_checking
if %jdk13% == "n" goto jdk13_setup
echo.
echo.ERROR: The -middleTier option is not supported while running with -jdk13.
echo.
goto end
:: ----------------- Done with the parameter processing.
:: -- Prepare to call the migration utility
:done
:: -- check for using -middleTier with -jdk13
if %middle_tier% == "y" goto middle_tier_checking
:: --------- setup JDK and JDBC
:jdk13_setup
set JDBCVER=12
set JAVA_HOME=%JRAD_ROOT%\jdk
set CLASSPATH=%JRAD_ROOT%\jdev\appslibrt\uix2.jar
if %middle_tier% == "y" goto middle_xdk
set XDK_CLASSPATH=%JRAD_ROOT%\lib\xmlparserv2.jar
goto donejdk
:middle_xdk
set XDK_CLASSPATH=%JRAD_ROOT%\lib\xmlparserv2.jar
:donejdk
set JRAD_JAR=%JRAD_ROOT%\oaext\lib\mdsdt.jar;%JRAD_ROOT%\oaext\mds\lib\mdsrt.jar;%JRAD_ROOT%\oaext\lib\oamdsdt.jar;%JRAD_ROOT%\jlib\jsp-el-api.jar;%JRAD_ROOT%\jlib\commons-el.jar;%JRAD_ROOT%\jlib\oracle-el.jar
:: ------- JDBC classes
set CLASSPATHJ=%JRAD_ROOT%\jdbc\lib\ojdbc14.jar;%JRAD_ROOT%\jdbc\lib\orai18n.jar
:: ------- PATH settings
set PATH=%JAVA_HOME%\bin;%path%
:: ------- CLASSPATH settings
set CLASSPATH=%CLASSPATH%;%JRAD_ROOT%\jdev\classes;%JRAD_ROOT%\jdev\appslibrt\collections.zip;%JRAD_ROOT%\jdev\appslibrt\share.jar;%JRAD_JAR%;%CLASSPATHJ%;%XDK_CLASSPATH%
if %verbose% == "n" goto done_verbose
echo.
java -version
echo.
echo.CLASSPATH = %CLASSPATH%
echo.
echo on
:done_verbose
java oracle.jrad.tools.xml.exporter.XMLExporter /oracle/apps/icx/icatalog/shopping/webui/ShoppingHomePG -rootdir C:\Jdev12\jdevhome\jdev\myprojects -username apps -password apps -dbconnection "(description = (address_list = ( address = (community = tcp.world)(protocol = tcp)(host = shreekar.oracle.com)(port = 1521)))(connect_data= (sid = VIS)))" -includeSubpackages -mmddir C:\Jdev12\jdevbin\oaext\config\mmd -jdk13
@echo off
::echo JavaProgramReturnValue = %ERRORLEVEL%
:end
endlocal
============================================
When i modified this and ran from the command prompt on my PC. i get the following error.. Please let me know where the problem is...
Thanks in Advance,
Prasad
===============================================
Exception in thread "main" java.lang.NoClassDefFoundError: oracle/ide/net/URLFac
tory
at oracle.adf.mds.dt.mds.generic.MDSDocument.save(MDSDocument.java:2438)
at oracle.adf.mds.dt.mds.generic.MDSMetadataManager.saveDocumentToFile(M
DSMetadataManager.java:5566)
at oracle.adf.mds.dt.mds.generic.MDSMetadataManager.saveDocumentToFile(M
DSMetadataManager.java:4397)
at oracle.jrad.tools.xml.exporter.java13.Java13XMLExporter.saveDocuments
(Java13XMLExporter.java:279)
at oracle.jrad.tools.xml.exporter.java13.Java13XMLExporter.doExport(Java
13XMLExporter.java:171)
at oracle.jrad.tools.xml.exporter.XMLExporter.main(XMLExporter.java:194)

Well,
I have no idea what you are doing and how? The above error is a generic one. Your details about steps, your environment will make the things easier for us to suggest you properly.
--Shiv                                                                                                                                                                                                                                                                                                                                                                                                               

Similar Messages

  • Oracle EBS R12 Pre - Implementations phase question air

    Oracle EBS R12 Pre - Implementations phase question air
    Posted: Jun 30, 2009 10:22 AM Edit Reply
    Dear all Gurus,
    We are going to implement Oracle EBS r12, for industrial concern, we have following quires if any peer may suggest.
    1) we heard the oracle R12 has build new release with 11g db , is it been practical for choosing it for corporate ???
    2) Linux Read hat which version is more stable like 5 releases is compatible with R12 new release?
    3) We are also thinking for 64 bit architecture rather than 32 bit, could any one figure out the practical pros and cons for this.
    4) We are also wondering about the server machine brand and its configurations like HP DL380 G6, DELL 2850? could any one share abut his experience about the same.
    5) What sort of Server configurations (Processor , 2way -4way , RAM , HD and other accessories ) for r12 Multi node setup for 150 clients (DB Server , Apps Server , Test Prod )
    6) What should be backup strategies like tap backup and how much space requirements we must have provisioned for retaining almost 2~3 month backup.
    7) Application implementations methodologies?
    8)
    I know to address our queries would be time consuming for you bust peoples , but I would really oblige for being shared your journey this would defiantly the PATH way for other like mentoring for others.
    looking forward your valuable instructions ASAP.
    Thanks & Best Regards
    Muhammad Waseem
    Manager IT
    Neee-Has Textiles Divisions
    31-Q Gulberg II Lahore
    Pakistan
    92-0333-4240949

    Duplicate post.
    Oracle EBS R12 Pre - Implementations phase question air
    Oracle EBS R12 Pre - Implementations phase question air

  • EBS R12: Product licensing related questions

    Hi,
    I was asked to activate two new products in EBS R12.1.3 DEV environment. Before this, I made a backup of the system.
    In License Manager, before the activation:
    - Product #1 was in state "Shared"
    - Product #2 was in state "Not Licenced"
    Does state "Shared" mean that product #1 was partly active from those parts that are required by other licensed products? If yes, does state "Shared" have any license costs? I.e. do I need to buy a license for "Shared" product?
    After activation:
    - both products are in state "Licensed".
    Unfortunately, Product #1 should have stayed in state "Shared" as we need only those parts that are required by other products.
    Does this mean that I need to buy licenses for both products? Or is it possible leave Product #1 in "Licensed" state and use only its functionalities that are shared with other products? We do not want to buy license for Product #1.
    I understood from the old threads that the only options for deactivating product are:
    - restore the system from backup
    - create an SR to Oracle and they MAY give you a onetime script to disable the products.
    Is this still the case?
    Could you advise what would be the best course of action?
    BR,
    TH

    I was asked to activate two new products in EBS R12.1.3 DEV environment. Before this, I made a backup of the system. Good you did take a backup :)
    Does this mean that I need to buy licenses for both products? Or is it possible leave Product #1 in "Licensed" state and use only its functionalities that are shared with other products? We do not want to buy license for Product #1.If both are licensed then yes you need to get a license for both products.
    If you do not want to buy a license then revert back from the backup so Product #1 will be Shared again.
    I understood from the old threads that the only options for deactivating product are:
    - restore the system from backup
    - create an SR to Oracle and they MAY give you a onetime script to disable the products.
    Is this still the case?Correct.
    Could you advise what would be the best course of action?I would suggest you restore the files from the backup as this is the fastest/easiest way. If you have time, you could put this on hold and log a SR and see if there is a way to revert back the changes without restoring from the backup.
    Thanks,
    Hussein

  • Page can not be Displayed in EBS R12 64bit - OEL 5.4 64bit

    Hi Hussein,
    I have just installed EBS R12 (12.0.4) 64 bit on OEL 5.4 64bit, for our new client.
    The installation was successfull in general, but as usual I hit with this "Page Can Not Be Displayed" error and the client side ie browser.
    I can startup and shutdown the DbTier with status "0".
    I can startup and shutdown the AppsTier with status "0" (well it shows this overall status at the end, but I see some error with "OHS")
    This the sample log of the AppsTier:
    [applprod1@rdbms2 ~]$ ./startAPP
    You are running adstrtal.sh version 120.13.12000000.3
    Executing service control script:
    /u02/applprod1/VIS/inst/apps/VIS_rdbms2/admin/scripts/adopmnctl.sh start
    script returned:
    You are running adopmnctl.sh version 120.4.12000000.3
    Starting Oracle Process Manager (OPMN) ...
    opmnctl: opmn started.
    adopmnctl.sh: exiting with status 0
    adopmnctl.sh: check the logfile /u02/applprod1/VIS/inst/apps/VIS_rdbms2/logs/app                                             l/admin/log/adopmnctl.txt for more information ...
    .end std out.
    .end err out.
    Executing service control script:
    /u02/applprod1/VIS/inst/apps/VIS_rdbms2/admin/scripts/adapcctl.sh start
    script returned:
    You are running adapcctl.sh version 120.6.12000000.2
    Starting OPMN managed Oracle HTTP Server (OHS) instance ...
    opmnctl: opmn is already running.
    opmnctl: starting opmn managed processes...
    ================================================================================
    opmn id=rdbms2.ficsd.com:6200
        0 of 1 processes started.
    ias-instance id=VIS_rdbms2.rdbms2.ficsd.com
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    ias-component/process-type/process-set:
        HTTP_Server/HTTP_Server/HTTP_Server/
    Error
    --> Process (index=1,uid=399901443,pid=2395)
        failed to start a managed process after the maximum retry limit
        Log:
        /u02/applprod1/VIS/inst/apps/VIS_rdbms2/logs/ora/10.1.3/opmn/HTTP_Server~1
    adapcctl.sh: exiting with status 0
    adapcctl.sh: check the logfile /u02/applprod1/VIS/inst/apps/VIS_rdbms2/logs/appl                                             /admin/log/adapcctl.txt for more information ...
    .end std out.
    .end err out.
    Executing service control script:
    /u02/applprod1/VIS/inst/apps/VIS_rdbms2/admin/scripts/adoacorectl.sh start
    script returned:
    You are running adoacorectl.sh version 120.11.12000000.2
    Starting OPMN managed OACORE OC4J instance  ...
    adoacorectl.sh: exiting with status 0
    adoacorectl.sh: check the logfile /u02/applprod1/VIS/inst/apps/VIS_rdbms2/logs/a                                             ppl/admin/log/adoacorectl.txt for more information ...
    .end std out.
    .end err out.
    Executing service control script:
    /u02/applprod1/VIS/inst/apps/VIS_rdbms2/admin/scripts/adformsctl.sh start
    script returned:
    You are running adformsctl.sh  version 120.12.12000000.3
    Starting OPMN managed FORMS OC4J instance  ...
    adformsctl.sh: exiting with status 0
    adformsctl.sh: check the logfile /u02/applprod1/VIS/inst/apps/VIS_rdbms2/logs/ap                                             pl/admin/log/adformsctl.txt for more information ...
    .end std out.
    .end err out.
    Executing service control script:
    /u02/applprod1/VIS/inst/apps/VIS_rdbms2/admin/scripts/adoafmctl.sh start
    script returned:
    You are running adoafmctl.sh version 120.6.12000000.2
    Starting OPMN managed OAFM OC4J instance  ...
    adoafmctl.sh: exiting with status 0
    adoafmctl.sh: check the logfile /u02/applprod1/VIS/inst/apps/VIS_rdbms2/logs/appl/admin/log/adoafmctl.txt for more information ...
    .end std out.
    .end err out.
    Executing service control script:
    /u02/applprod1/VIS/inst/apps/VIS_rdbms2/admin/scripts/adalnctl.sh start
    script returned:
    adalnctl.sh version 120.3
    Checking for FNDFS executable.
    Starting listener process APPS_VIS.
    adalnctl.sh: exiting with status 0
    adalnctl.sh: check the logfile /u02/applprod1/VIS/inst/apps/VIS_rdbms2/logs/appl/admin/log/adalnctl.txt for more information ...
    .end std out.
    .end err out.
    Executing service control script:
    /u02/applprod1/VIS/inst/apps/VIS_rdbms2/admin/scripts/adcmctl.sh start
    script returned:
    You are running adcmctl.sh version 120.14
    Starting concurrent manager for VIS ...
    Starting VIS_1001@VIS Internal Concurrent Manager
    Default printer is noprint
    adcmctl.sh: exiting with status 0
    adcmctl.sh: check the logfile /u02/applprod1/VIS/inst/apps/VIS_rdbms2/logs/appl/admin/log/adcmctl.txt for more information ...
    .end std out.
    .end err out.
    Executing service control script:
    /u02/applprod1/VIS/inst/apps/VIS_rdbms2/admin/scripts/jtffmctl.sh start
    script returned:
    You are running jtffmctl.sh version 120.3
    Validating Fulfillment patch level via /u02/applprod1/VIS/apps/apps_st/comn/java/classes
    Fulfillment patch level validated.
    Starting Fulfillment Server for VIS on port 9300 ...
    jtffmctl.sh: exiting with status 0
    .end std out.
    .end err out.
    All enabled services for this node are started.
    adstrtal.sh: Exiting with status 0
    adstrtal.sh: check the logfile /u02/applprod1/VIS/inst/apps/VIS_rdbms2/logs/appl/admin/log/adstrtal.log for more information ...As you can see, the last had overall status code "0"
    But there is this error:
    Starting OPMN managed Oracle HTTP Server (OHS) instance ...
    opmnctl: opmn is already running.
    opmnctl: starting opmn managed processes...
    ================================================================================
    opmn id=rdbms2.ficsd.com:6200
    0 of 1 processes started.
    ias-instance id=VIS_rdbms2.rdbms2.ficsd.com
    ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
    ias-component/process-type/process-set:
    HTTP_Server/HTTP_Server/HTTP_Server/
    Error
    --> Process (index=1,uid=399901443,pid=2395)
    failed to start a managed process after the maximum retry limit
    Log:
    /u02/applprod1/VIS/inst/apps/VIS_rdbms2/logs/ora/10.1.3/opmn/HTTP_Server~1
    adapcctl.sh: exiting with status 0
    adapcctl.sh: check the logfile /u02/applprod1/VIS/inst/apps/VIS_rdbms2/logs/appl/admin/log/adapcctl.txt for more information ...
    But it says status 0 too, does this cause the "web page can not be displayed"?
    Please Help........................
    Thanks a lot in advance

    Did you remove the lock files as suggested before?Not yet, I am not at the client right now, I will go there tomorrow morning. I am just practising here in our office test instance :)
    The access log file has:
    127.0.0.1 - - [01/Oct/2009:21:57:20 +0800] "HEAD  /index.html HTTP/1.1" 200 0 0 "-" "-"
    127.0.0.1 - - [01/Oct/2009:21:57:40 +0800] "HEAD  /index.html HTTP/1.1" 200 0 0 "-" "-"
    127.0.0.1 - - [01/Oct/2009:21:58:00 +0800] "HEAD  /index.html HTTP/1.1" 200 0 0 "-" "-"
    127.0.0.1 - - [01/Oct/2009:21:58:20 +0800] "HEAD  /index.html HTTP/1.1" 200 0 0 "-" "-"
    127.0.0.1 - - [01/Oct/2009:21:58:40 +0800] "HEAD  /index.html HTTP/1.1" 200 0 0 "-" "-"
    127.0.0.1 - - [01/Oct/2009:21:59:00 +0800] "HEAD  /index.html HTTP/1.1" 200 0 0 "-" "-"
    127.0.0.1 - - [01/Oct/2009:21:59:20 +0800] "HEAD  /index.html HTTP/1.1" 200 0 0 "-" "-"
    127.0.0.1 - - [01/Oct/2009:21:59:40 +0800] "HEAD  /index.html HTTP/1.1" 200 0 0 "-" "-"
    127.0.0.1 - - [01/Oct/2009:22:00:00 +0800] "HEAD  /index.html HTTP/1.1" 200 0 0 "-" "-"
    127.0.0.1 - - [01/Oct/2009:22:00:20 +0800] "HEAD  /index.html HTTP/1.1" 200 0 0 "-" "-"
    127.0.0.1 - - [01/Oct/2009:22:00:40 +0800] "HEAD  /index.html HTTP/1.1" 200 0 0 "-" "-"
    127.0.0.1 - - [01/Oct/2009:22:01:00 +0800] "HEAD  /index.html HTTP/1.1" 200 0 0 "-" "-"And the error log file:
    [Thu Oct  1 08:42:44 2009] [notice] Oracle-Application-Server-10g/10.1.3.4.0 Oracle-HTTP-Server configured -- resuming normal operations
    [Thu Oct  1 08:42:44 2009] [notice] Accept mutex: fcntl (Default: fcntl)
    [Thu Oct  1 08:50:51 2009] [warn] [client 192.168.1.170] oc4j_socket_recvfull timed out
    [Thu Oct  1 08:50:51 2009] [error] [client 192.168.1.170] [ecid: 1254357949:192.168.1.170:24084:0:3,0] mod_oc4j: request to OC4J rel12.ebiztech.biz:21500 failed: Connect failed
    [Thu Oct  1 09:28:40 2009] [notice] Oracle-Application-Server-10g/10.1.3.4.0 Oracle-HTTP-Server configured -- resuming normal operations
    [Thu Oct  1 09:28:40 2009] [notice] Accept mutex: fcntl (Default: fcntl)
    [Thu Oct  1 09:29:58 2009] [error] [client 192.168.1.100] [ecid: 1254360598:192.168.1.170:27679:0:2,0] File does not exist: /u01/applr1211/VIS/inst/apps/VIS_rel12/portal/favicon.ico
    [Thu Oct  1 09:51:22 2009] [error] [client 192.168.1.101] [ecid: 1254361882:192.168.1.170:27679:0:11,0] File does not exist: /u01/applr1211/VIS/inst/apps/VIS_rel12/portal/favicon.ico
    [Thu Oct  1 09:51:26 2009] [error] [client 192.168.1.101] [ecid: 1254361886:192.168.1.170:28180:0:13,0] File does not exist: /u01/applr1211/VIS/inst/apps/VIS_rel12/portal/favicon.ico
    [Thu Oct  1 09:51:43 2009] [error] [client 192.168.1.101] [ecid: 1254361903:192.168.1.170:28256:0:17,0] File does not exist: /u01/applr1211/VIS/inst/apps/VIS_rel12/portal/favicon.ico
    [Thu Oct  1 09:52:55 2009] [error] [client 192.168.1.101] [ecid: 1254361975:192.168.1.170:27678:0:17,0] Directory index forbidden by rule: /u01/applr1211/VIS/apps/apps_st/comn/java/classes/
    [Thu Oct  1 11:40:43 2009] [error] [client 192.168.1.101] [ecid: 1254368443:192.168.1.170:28256:0:53,0] File does not exist: /u01/applr1211/VIS/inst/apps/VIS_rel12/portal/favicon.ico
    [Thu Oct  1 12:08:25 2009] [error] [client 192.168.1.101] [ecid: 1254370105:192.168.1.170:28256:0:66,0] File does not exist: /u01/applr1211/VIS/inst/apps/VIS_rel12/portal/favicon.ico
    [Thu Oct  1 12:08:28 2009] [error] [client 192.168.1.101] [ecid: 1254370108:192.168.1.170:27677:0:59,0] File does not exist: /u01/applr1211/VIS/inst/apps/VIS_rel12/portal/favicon.ico
    [Thu Oct  1 13:05:48 2009] [error] [client 192.168.1.101] [ecid: 1254373548:192.168.1.170:28179:0:127,0] Directory index forbidden by rule: /u01/applr1211/VIS/apps/apps_st/comn/java/classes/
    [Thu Oct  1 13:06:56 2009] [error] [client 192.168.1.101] [ecid: 1254373616:192.168.1.170:28178:0:226,0] Directory index forbidden by rule: /u01/applr1211/VIS/apps/apps_st/comn/java/classes/
    [Thu Oct  1 13:06:56 2009] [error] [client 192.168.1.101] [ecid: 1254373616:192.168.1.170:28178:0:227,0] File does not exist: /u01/applr1211/VIS/apps/apps_st/comn/java/classes/oracle/apps/media/oracle/apps/media/splash.gif
    [Thu Oct  1 13:06:56 2009] [error] [client 192.168.1.101] [ecid: 1254373616:192.168.1.170:28178:0:228,0] File does not exist: /u01/applr1211/VIS/apps/apps_st/comn/java/classes/oracle/apps/media/oracle/apps/media/splash.gifThe above error normal? Its just my test instance and the users seem have no problem? or I am just not aware of.
    Thanks

  • HT4168 Pages export to ePub - unwanted question marks

    When I export a Pages doc to ePub, a question mark appears at the end of every line. How can I avoid that? If I take the Export to ePub doc from Apple and export it, no problem. If I add some lines of my own at the end and then re-export, question marks appear at the end of the lines I have added. It's driving me nuts! Any advice would be appreciated.

    How did you buy Pages?
    Which MacOs system do you have on your computer?
    What is the exact message you get?
    Which version of Pages do you have?
    Please answer all questions and if you don't know how ask again.

  • Login page not working in EBS R12 after autoconfig.

    Hi,
    We are using EBS R12 on windows 2003 server 32 on a test machine. As we were making some changes using autoconfig,
    as the Login page not working in EBS R12 after running autoconfig.
    Kindly help us.
    Thanks in advance.

    Hi,
    Rollback the changes and run AutoConfig, see if you get the same error or not then -- See (Note: 387859.1 - Using AutoConfig to Manage System Configurations in Oracle E-Business Suite Release 12) for details "2.5. Rolling Back an AutoConfig Session".
    Regards,
    Hussein

  • "Page cannot be displayed" error in EBS R12

    Hi All,
    We implemented EBS R12 with 2 Application Node, 2 CM nodes and 2 DB Nodes(RAC). We have also setup load balancer at the application level. We have enabled HTTPS at the load balancer level. Our application works perfectly fine except some of the PIM module related screens and especially Workflow Manager, it gives us "Page Cannot be displayed" error sometime. What we have observed is, Our URL is https://ebs.abcltd.com but when we click on Workflow manager link under Oracle Application Manager, the URL gets redireced to http://ebs.abcltd.com:443/. We would like it know why this redirection is happening? as we have not mentioned this (http://ebs.abcltd.com:443) url in our context file.
    Thanks,
    Prasad

    Hi Prasad,
    Can you find any errors in Apache/Workflow/Database log files when this error occur?
    Did you verify the session persistence on the load balancer? -- See the documents referenced in this F5 Load Balancer with Oracle 11i.
    Regards,
    Hussein

  • Blank page in EBS R12

    Hi,
    We had to restart all the services in out eBS R12 environment on unix AIX.
    After we started the DB and Apps, we got a blank white page with nothing except (Done) in the status bar(at the bottom of the browser).
    We bounce the system with to no avail. we even rebooted the machines, both DB and Apps but drew a blank.
    With God's help , we solved it by recompiling all JSPs.
    What can be the reason and how could we avoid this issue in the future?
    With best regards
    Thank you

    Hi,
    Is the issue resolved when you compile the JSP files manually?
    Please make sure you have "s_jsp_main_mode" in the application context file set to "recompile" and run AutoConfig -- See (Note: 458338.1 - How to Enable Automatic Compilation of JSP pages in R12 Environment) for details.
    Regards,
    Hussein

  • Questions about Installing EBS R12 continued

    Folks,
    Hello. This post is the continue for previous post "Questions about Installing EBS R12".
    While installing EBS R12 using "./rapidwiz", the Install Wizard gets to "CD Locator - Select root directory of required Rapid Install Disk. Enter location for the disk labeled. Oracle Applications Rapid Install - Database Disk 1"
    I browse the directory where Database Disk 1 is located (file name: V15680-01_1of3/oraAPPDB/Disk1). Then click "OK" button, CD Locator Windows come up again and again. The Install Wizard doesn't proceed !
    The above issue means some files in stage area directory are corrupted. Thus, I have deleted the stage area directory (zip files and unzipped files) and try to download a fresh EBS R12 from Oracle Edelivery to install again.
    Now, the problem is that when I empty trash (EBS_R12) in Oracle Linux 5, the 3 files (V15680-01_1of3.zip, oraAppDB, oraDB) cannot be deleted from the trash, the error message is:
    "You don't have permission to modify its parent folder."
    The file V15680-01_1of3.zip is Rapid Install Database Disk 1 on which the install Wizard stop while installing EBS R12.
    Can any folks help to solve the issue on file "V15680-01_1of3.zip" ?
    that is, how to empty it from Trash ? How to have the Wizard go through it when install again ?

    Please update the original thread instead of creating new one -- Re: Questions about Installing EBS R12

  • BIP in Oracle EBS R12.1 - Characters displayed as question marks

    Hi,
    We have recently upgraded to EBS 12.1.1, and have noticed that since doing so some characters in PDF outputs (from BIP reports run in EBS) are being displayed as question marks.
    The Templates are created using the font Arial, and the characters that are being displayed incorrectly are 'long dashes' "–" (\endash) and where Microsoft Word has group three full stops together "..." (\'85)
    An Example, the text in MS Word and in the PDF when run using Oracle BI Publisher Desktop is:
    Three full stops ……………
    A long dash –
    A short dash -
    However the output in PDF when running the report in EBS is:
    Three full stops ?????
    A long dash ?
    A short dash -
    Has anyone come across this before, or does anyone know of a way to resolve it. I have tried uploading an Arial font file and creating mappings (although Arial already exists as a seeded font file) but this has not resolved the issue.
    Regards
    Carl

    Hello,
    Check if you have all necessary fonts under your jre/lib/fonts ($AF_JRE_TOP and $OA_JRE_TOP) on all your web and concurrent nodes. Or, try to copy the fonts from $FND_TOP/resource (check post install steps for XMLP 5.6.3). Mid-tier bounce needed after copy.
    Hope this helps.
    Rownald

  • Questions about Installing EBS R12

    Folks,
    Hello. I have downloaded E-Business Suit R12 from edelivery and want to instsll it in Oracle Linux 5.
    There are about 50 ZIP files in EBS R12 (Bxxxxx.zip and Vxxxxx.zip).
    I unzip the a few Bxxxxx.zip files. The contents in "B53824-01_3of4.zip_FILES" folder are:
    Start CD -> Disk1 -> rapidwiz ->rapidwiz
    Is "rapidwiz" the file to initialize the installation?
    Do I need to unzip all of the files in EBS R12 before install ?

    Hi,
    Is Base directory the place where EBS R12 will be installed?Yes.
    The directory before your apps, db and inst folder
    Ex:
    /u01/oracle/PROD/ ---> Base
    /u01/oracle/PROD/db --> Db folder
    /u01/oracle/PROD/apps -> Application folder
    How to choose the Base directory in the File System ?Depends on your mount points. But the basic is as shown above
    Do I need to create a new Top-level directory as Base directory ? Not needed. Rapidwiz will create it for ya
    But make sure you have correct permissions for oracle and applmgr.
    Thanks

  • EBS R12.1.1 databse copy windows to windows??

    Hi All,
    I am a report developer. I have two servers(VMs)
    Server1: Win 2008, Oracle EBS R12.1.1.
    Server2: Win XP SP3, about to install Oracle 11g R1
    My goal is to copy the whole EBS R12.1.1 Vision Instance database (VIS) on Server1 to Server 2 Oracle Database....And please not that I need only data in those schemas - I use that to run ETL scripts, so, on Server2 I am not going to run any EBS Applications(Forms, or reports or others).
    In order to do this I am thinking of using http://www.dba-oracle.com/oracle_tips_db_copy.htm, or RMAN method....
    Now my questions are:
    1. Can I used any of the above methods?
    2. If yes, For both the above methods, during the installation of Target Database (Server 2) do I need to select "Create Starter Database (Additional 1482MB)" option? I am in a great disk space crisis so, I prefer not to select that option, but can I follow above clone methods with out creating a starter database in the target system?
    Thanks and regards.

    My goal is to copy the whole EBS R12.1.1 Vision Instance database (VIS) on Server1 to Server 2 Oracle Database....And please not that I need only data in those schemas - I use that to run ETL scripts, so, on Server2 I am not going to run any EBS Applications(Forms, or reports or others).
    In order to do this I am thinking of using http://www.dba-oracle.com/oracle_tips_db_copy.htm, or RMAN method....
    Now my questions are:
    1. Can I used any of the above methods?Yes, but if you are not familiar with RMAN or backup/recovery methods this may not be easy (or straightforward) for you.
    2. If yes, For both the above methods, during the installation of Target Database (Server 2) do I need to select "Create Starter Database (Additional 1482MB)" option? I am in a great disk space crisis so, I prefer not to select that option, but can I follow above clone methods with out creating a starter database in the target system?Even if you do not create a new database, you will end up having the same database size after you copy the files or use RMAN (backup/restore). Your target database size on the target database will be exactly the same database size on the source database.
    I would prefer you use one of the following methods instead of RMAN:
    1) Rapid Clone (clone the database tier node only and this is the best option for you) -- Cloning Oracle Applications Release 12 with Rapid Clone [ID 406982.1]
    2) The method in the link referenced by you
    3) Export/Impot (which is time consuming):
    Export/import process for R12 using 11gR1 or 11gR2 [ID 741818.1]
    Export/Import Process for Oracle E-Business Suite Release 12 using 10gR2 [ID 454616.1]
    Thanks,
    Hussein

  • Integrating Oracle Apex 4.0.2 with EBS R12.1.1

    We could successfully integrate Oracle Apex 4.0.2 with EBS R12.1.1 with the help of http://www.oracle.com/technetwork/developer-tools/apex/apex-ebs-wp-cabot-consulting-169064.pdf.
    The document says to navigate from EBS to Oracle Apex without any second login screen (works great!!), but now how do we navigate back to EBS from Oracle Apex (in same session) without any login screen again as like below
    EBS User login --> EBS --> Oracle Apex --> EBS
    Please help to achieve this.

    Hi,
    Under the Authentication scheme of your application in the Logout URL Section, give the following
    wwv_flow_custom_auth_std.logout_then_go_to_url?p_args=&APP_ID.:http://xyz.ck.com:8010/OA_HTML/OA.jsp?OAFunc=OAHOMEPAGEspecify your ebiz suite url instead of http://xyz.ck.com:8010 in the above link.
    so, that while pressing the Logout link in your apex, you wont be redirected to the ebiz login page again, and it will redirect to you ebiz menu home page back in the same session itself.
    This will work for sure.
    Good Luck!!!
    Change your User handle from "805196" to a meaningful word.
    Brgds,
    Mini
    If this answered your question, then award points and close the thread.

  • Jdeveloper for EBS R12

    Hi!
    I'm looking for JDeveloper for EBS R12. I tried to download it from Metalink ( https://metalink2.oracle.com/metalink/plsql/f?p=130:14:8543317434215624048::::p14_database_id,p14_docid,p14_show_header,p14_show_help,p14_black_frame,p14_font:NOT,787209.1,1,1,1,helvetica ), but archives there are corrupted. Can anyone help me?
    And one more question: I need only to develop GUI for application. Can I do this on machine with JDeveloper only installed (without EBS, Database, AS etc.) ?

    eoipso,
    I cannot really answer that question (it's too vague).
    Let me attempt some guidelines:
    1). If you are trying to modify parts of EBS which were built upon OAF: use OAF.
    2). if you are writing a new page/new function in EBS, and that new page/function fits into a part of EBS that was built using OAF: use OAF.
    3). If you are writing a new application that needs to use data/API's from EBS - you have lots of choices, including ADF/OAF. If the application was separate to EBS, I personally would use ADF instead of OAF, because ADF is more flexible, and I find developing UI's in OAF tedious, but that's just my experience. If you were an OAF wizard, you might feel otherwise.
    John

  • Ie browser pop-up and disappear EBS R12

    Hi hussein,
    EBS R12.0.6 RHEL4.6
    One of our end-users client PC has a strange behavior of her ie browser.
    Is is like this, her ie can launch the main web page of EBS and all the navigations to modules are fine.
    But when she tried to view the concurrent program output and want to save it to another file. She
    will click Tools>copy file and the ie browser suppose to appear with output page that can be saved to local disk.
    but instead, it will appear and disappear quickly. Have you encountered this ie problem before?
    The other client PCs are fine.
    Thanks a lot

    Hi,
    Thanks.... but I did tried that....adding the url. and we usually turn off pop-up blockers. How do I ensure that the
    pop-up blockers did not get on again? maybe there stubborn hiding blockers that can autorunl like a virus?Just to be sure, ask the same user to login from some other machine with the same application username/password, if he/she is able to use the export, then it is a machine issue and most probably you need to check all the software installed (including the browser) to turn off pop-up blockers. You may also try with some other browser (like Firefox) to verify that the issue not with IE.
    Regards,
    Hussein

Maybe you are looking for