E-Business Suite 11.5.10.2 Procedure for OpenSuse 10.2

I recently installed 11.5.10.2 on an OpenSuSE 10.2 machine and found considerable differences between SLES10/SuSE10.1 and OpenSuSE 10.2. The following instructions will install a fully functional E-Business Suite:
Setup the O/S per the following guide:
Oracle 10gR2 on openSUSE 10.2
http://ftp.novell.com/partners/oracle/docs/10gR2_openSUSE102_introduction.pdf
Install Suse Linux 10.2 with at least the following groups:
Graphical Base System
KDE Desktop Environment
C/C++ Compiler and Tools
Under partitioning, ensure you have 2GB minimum for swap. I recommend starting with 4 or 6 GB of swap (2x-3x physical ram).
create dba and appl groups
create oracle and applmgr user
as root:
cd /usr/lib
ln -s libdb.so.2 libdb.so.3
download compat-gdbm-1.8.0-7.i586.rpm from Suse 10.0 repository
http://suse.mirrors.tds.net/pub/opensuse/distribution/SL-10.0-OSS/inst-source/suse/i586/compat-gdbm-1.8.0-7.i586.rpm
rpm -Uhv compat-gdbm-1.8.0-7.i586.rpm
download openmotif21-libs-2.1.30MLI4-143.i586.rpm from Suse 10.1 repository
http://suse.mirrors.tds.net/pub/opensuse/distribution/SL-10.1/inst-source/suse/i586/openmotif21-libs-2.1.30MLI4-143.i586.rpm
rpm -Uhv openmotif21-libs-2.1.30MLI4-143.i586.rpm
download openmotif22-libs-2.2.4-28.i586.rpm from Suse 10.2 repository
http://suse.mirrors.tds.net/pub/opensuse/distribution/10.2/repo/oss/suse/i586/openmotif22-libs-2.2.4-28.i586.rpm
rpm -Uhv openmotif22-libs-2.2.4-28.i586.rpm
add the following installation repositories:
http://suse.mirrors.tds.net/pub/opensuse/distribution/10.2/repo/oss/suse/
http://suse.mirrors.tds.net/pub/opensuse/distribution/10.2/repo/non-oss/suse/
Verify you have the following packages:
* binutils-2.17.50.0.5-21
* compat-2006.1.25-29
* db1-1.85-119
* db1-devel-1.85-119
* dovecot-1.0.rc14-7
* expat-2.0.0-32
* compat-expat1-1.95.8-26
* gcc-4.1.3-29
* gcc-c++-4.1.3-29
* gcc_old-2.95.3-175.2
* glibc-2.5-25
* gnome-libs-1.4.1.7-733
* gnome-libs-devel-1.4.1.7-733
* libaio-0.3.104-32
* libaio-devel-0.3.104-32
* libgcc41-4.1.2_20061115-5
* libstdc++41-4.1.2_20061115-5
* libstdc++41-devel-4.1.2_20061115-5
* compat-libstdc++-5.0.7-41
* make-3.81-23
* openmotif21-libs-2.1.30MLI4
* orarun-1.9-52
* pdksh-5.2.14-822
* sysstat-6.0.2-36.2
* xscreensaver-5.01-14
create /etc/init.d/xvfbserver
#!/bin/sh
### BEGIN INIT INFO
# Provides: xvfb
# Required-Start: $network $syslog $remote_fs
# Should-Start: $time ypbind sendmail
# Required-Stop: $network $syslog $remote_fs
# Should-Stop: $time ypbind sendmail
# Default-Start: 3 5
# Default-Stop: 0 1 2 6
# Short-Description: xvfb daemon providing virtual framebuffer support
# Description: Start the xvfb service on host.domain:50
### END INIT INFO
nohup /usr/bin/X11/Xvfb :50 -screen 0 1024x800x8 -pn -fp /usr/share/fonts/misc -sp /usr/lib/xserver/SecurityPolicy &
export DISPLAY=host.domain:50.0
/usr/bin/xhost +
nohup /usr/bin/mwm &
Once xvfbserver is saved, type insserv xvfbserver in /etc/init.d as root.
This script provides dynamic gif generation for many self service/framework applications and Motif Window Manager for preventing REP-3000 errors running bitmapped concurrent requests. If you do not mind the square gray boxes or never run bitmapped reports, you can skip this step.
If you want to test Workflow notifications, edit /etc/dovecot/dovecot.conf and change:
#disable_plaintext_auth = yes
to
disable_plaintext_auth = no
SSL enabled IMAP for 11i was only enabled after ATG.H RUP 3, and not really required small training environments.
Goto Yast->System->System Services (Runlevels)
Highlight Dovecot and enable it.
Goto Yast->Network Services->Mail Transfer Agent
Leave the Connection Type on Permanent and click next
Leave Outgoing Server blank and hit next.
Check the Accept remote SMTP connections and Open port in firewall, then hit next.
Run Online Update for all updateable packages. This will bring the Sun Java plugin up to 1.5.0_10.
http://ftp.novell.com/partners/oracle/sles-10/orarun.rpm
rpm -Uhv orarun.rpm
Run “/usr/sbin/rcoracle start“ to set kernel parameters.
1) Setup the environment as you would for running Applications on RH 4 or SLES9
I.E. follow Oracle Applications Installation Update Notes, Release 11i (11.5.10.2)
http://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=316806.1
2) Remove any LD_ASSUME_KERNEL references in O/S /etc/profile.d files. While in oracle and applmgr .profile, add the following:
export LD_PRELOAD=/usr/lib/libInternalSymbols.so
3) Comment out LD_ASSUME_KERNEL entries in $ORACLE_HOME/appsutil/bin/adgetlnxver.sh and $AD_TOP/bin/adgetlnxver.sh
if [ ${setflag}x = "x" -a $os = "Suse" ]; then
# LD_ASSUME_KERNEL="2.4.21"
# export LD_ASSUME_KERNEL
os="Suse"
fi
if [ ${setflag}x = "x" -a $os = "RH" ]; then
# LD_ASSUME_KERNEL="2.4.19"
# export LD_ASSUME_KERNEL
os = "RH"
fi
If doing a rapid install, the database startup will fail and rapidwiz will prompt to ignore or retry. At this point, edit $ORACLE_HOME/appsutil/bin/adgetlnxver.sh as shown above and click on retry. It will then run to the autoconfig step at the end and error out. Just hit cancel, edit $AD_TOP/bin/adgetlnxver.sh as shown above.
At this point, go to $APPL_TOP/admin, and in sid_host.xml,
replace
<sun_plugin_ver oa_var="s_sun_plugin_ver">1.4.2_04</sun_plugin_ver>
with
<sun_plugin_ver oa_var="s_sun_plugin_ver">1.5.0_10</sun_plugin_ver>
Then run autoconfig.
This will allow you to open 11i forms that require Jinitiator in Windows via the Sun Java Plugin in either Firefox or SeaMonkey (the Mozilla replacement) on your Suse 10.2 machine once allowing popups and checking always trust Oracle content on the initial java warning.
Look at your port pool selections while running autoconfig and comment out any ports for /etc/services and reboot. Port 8201 was preventing apache web pls listener from starting.
4) In order to relink cplex library executables (MSC, MSO, MSR, MST, WIP, etc), edit $AD_TOP/bin/adrelinknew.sh and add the following LD option (-Wl,--noinhibit-exec) in the LINUX section:
LINUX)
LDFLAGS='-s -L$(ORACLE_HOME)/lib -L$(ORACLE_HOME)/lib/stubs -ldl'
DEBUG_LDFLAGS='-g -L$(ORACLE_HOME)/lib -L$(ORACLE_HOME)/lib/stubs -ldl'
exe_line='ELF .*executable'
SHRLIB_LD='gcc'
LD='gcc'
SHRLIB_LDFLAGS='-L$(ORACLE_HOME)/lib -L$(ORACLE_HOME)/lib/stubs -shared'
if test -f "/etc/redhat-release"; then
CPP_LIBS='/usr/lib/libstdc++-2-libc6.1-1-2.9.0.so'
elif test -f "/etc/SuSE-release"; then
CPP_LIBS='/usr/lib/libstdc++.so.2.9'
else
CPP_LIBS=''
fi
CPP='g++'
CPP_LDFLAGS='-s -L$(ORACLE_HOME)/lib -L$(ORACLE_HOME)/lib/stubs
set CPP_LDFLAGS='-s -L$(ORACLE_HOME)/lib -L$(ORACLE_HOME)/lib/stubs
to CPP_LDFLAGS='-s -L$(ORACLE_HOME)/lib -L$(ORACLE_HOME)/lib/stubs -Wl,--noinhibit-exec'
After this chance, you can apply any MRP, ASCP patch and all executables will relink correctly. You can also use adadmin to relink all executables and it completes without error.
5) For Discoverer 4.1.48.08, Follow Metalink Note 280598.1 Discoverer 4i On Linux: Required Patch and Configuration for Discoverer Server Stability to use JDK 1.3.1 and oadj. I updated the autoconfig template files with this change after applying 3895177. Discoverer viewer and plus standard BIS reports all open correctly on SLES-10/Suse 10.1
6) If you want to apply Developer 6i Patchset 17 or 18 to your 11i system, edit $ORACLE_HOME/forms60/lib/cus_forms60w.mk and ins_forms60w.mk and remove the -Bstatic
BUILD_FORMS_SO_FILE=$(SOSD_FORMS_LDSHARED_SO) \
context.o create.o destroy.o formsapi.o iauasst.o iauexcep.o \
ifjapi.o objlib.o persistc.o \
$(LIBJAPI) \
$(JAPI_PLSQL) \
$(FDESGEN_BUILT_INS) \
sslidtab.o \
$(LLIBD2F) \
$(LLIBIE) $(LLIBIL) $(LLIBIE) $(LLIBIG) $(LLIBIF_IFG) $(LLIBIG) \
$(LLIBIM_IMG) $(LLIBIW_IWG) $(LLIBID_IDD) $(LLIBID_IDL) $(LLIBID_IDG) \
$(LLIBID_ID2) $(LLIBID_IDG) $(LLIBID_ID1) $(LLIBIG_IGO) $(LLIBIT_ITG) \
$(LLIBIHM) $(LLIBIB) $(LLIBIM_IMG) $(LLIBIP_IPG) $(LLIBIC_ICG) $(LLIBIP_IPC) \
$(LLIBIM_IMC) $(LLIBIF_IFC) $(LLIBIJ_IJC) $(LLIBIW_IWC) $(LLIBIPLSD) \
$(LLIBIO_IOD) $(LLIBIO_IOC) $(LLIBIC) $(LLIBSOSD) $(LLIBII_IIC) $(LLIBIT) \
$(LLIBIC) $(LLIBIP_IPC) \
$(DEPLIBSM) \
-Bdynamic $(LLIBTHREAD) -lnsl -ldl -lm -lc
due to:
ar x $ORACLE_HOME/lib/libifjapi60.a context.o create.o destroy.o formsapi.o \
iauasst.o iauexcep.o ifjapi.o objlib.o persistc.o
/usr/bin/ld -o $ORACLE_HOME/lib/libifjapi60.so -z muldefs -G -L$ORACLE_HOME/lib/ context.o create.o destroy.o formsapi.o iauasst.o iauexcep.o ifjapi.o objlib.o persistc.o $ORACLE_HOME/lib/libifjapi60.a $ORACLE_HOME/forms60/lib/ipcpcr.o $ORACLE_HOME/forms60/lib/ipdecr.o $ORACLE_HOME/forms60/lib/ipkbu.o sslidtab.o -ld2f -lie -lil -lie -lig -lifg -lig -limg -liwg -lidd -lidl -lidg -lid2 -lidg -lid1 -ligo -litg -lihm -lib1 -limg -lipg -licg -lipc -limc -lifc -liwc -liplsd -liod -lioc -lic -lsosd -liic -lit -lic -lipc -lnn60 -lobx60 -lzrc60 -lge60 -lvgs60 -lde60 -lucol60 -lca60 -lnvu60 -lnvc60 -lnvs60 -luicc60 -lmma60 -lmmiw60 -lmmov60 -lmma60 -lmmos60 -lmmoi60 -lmmia60 -lmmft60 -lmmcm60 -luihx60 -luc60 -luipr60 -luimotif60 -lot60 -lrem60 -lree60 -lrec60 -luiimg60 -luimotif60 -luipr60 -luiimg60 -luc60 -lrem60 -luimotif60 -luia60 -ltknqap60 -luipr60 -luimotif60 -lutt60 -lix60 -lixd60 -lrod60 -lror60 -lros60 -lrod60 -lror60 -lros60 -lrod60 -luat60 -lutc60 -lutl60 -lutsl60 -lplsf -lplsb -lextp -lpsd -lplsf -lplsb -lextp -lslax -lsql $ORACLE_HOME/lib/nautab.o $ORACLE_HOME/lib/naeet.o $ORACLE_HOME/lib/naect.o $ORACLE_HOME/lib/naedhs.o -lnetv2 -lnttcp -lnetwork_d -lnz -lnzr -lnsslb8 -lbcert -lncr -lnetv2 -lnttcp -lnetwork_d -lnz -lnzr -lnsslb8 -lbcert -lclient -lvsn -lcommon -lgeneric -lmm -lnlsrtl3 -lcore4 -lnlsrtl3 -lcore4 -lnlsrtl3 -lnetv2 -lnttcp -lnetwork_d -lnz -lnzr -lnsslb8 -lbcert -lncr -lnetv2 -lnttcp -lnetwork_d -lnz -lnzr -lnsslb8 -lbcert -lclient -lvsn -lcommon -lgeneric -lepc -lnlsrtl3 -lcore4 -lnlsrtl3 -lcore4 -lnlsrtl3 -lclient -lvsn -lcommon -lgeneric -lnlsrtl3 -lcore4 -lnlsrtl3 -lcore4 -lnlsrtl3 -ldl -lm -lpthread -ldl -lpthread -lm -L/usr/lib -lm -L/usr/X11R6/lib -lXm -L/usr/X11R6/lib/ -L/usr/X11R6/lib/ -lXt -lX11 -lm -lix60 -lixd60 -lX11 -lnlsrtl3 -lXp -lXext -Bdynamic -lnsl -ldl -lm -lc -Bstatic
/usr/bin/ld: -static and -shared may not be used together
make: *** [$ORACLE_HOME/lib/libifjapi60.so] Error 1
At this point, you can follow the 10gR2 interop note to upgrade the 11.5.10.2 9.2.0.6 database to 10.2.0.2 via dbua:
Follow the latest 10gR2/11i Interoperability Notes (362203.1)
Oracle Applications Release 11i with Oracle 10g Release 2 (10.2.0)
http://metalink.oracle.com/metalink/plsql/showdoc?db=NOT&id=362203.1
I have relinked every Oracle Home and applications executables without errors.

Great. The only other setup I would add is if your machine's wired ethernet is ever disconnected, the default setup for OpenSuse 10.2 is to have the interface up when the cable is plugged. In that case, you cannot ping your host if you use static IP address for wired connection and DHCP for wireless. Open YaST, Network Devices. Highlight the wired interface, and select Edit. Then on the General Tab, change the Device Activation from On Cable Connection to At Boot Time.

Similar Messages

  • E-Business Suite Integration with Oracle Identity Federation for SAML

    Has anyone developed a way to use OIF for e-Business Suite authentication through SAML rather than using the standard Identity Management stack of apps?
    Today we have Oracle e-Business Suite 115.10.2 using OSSO through OID with WNA for zero sign-on (no login, just pass-through, based on AD credentials). Our domain controllers are Windows 2003 but we are in the process of upgrading them to Windows 2008 R2, where the OSSO stack is not supported unless we globally set the 2008 R2 domain controllers to use DES encryption instead of the default AES encryption. (See Oracle note 1076018.1)
    When deploying OSSO, we encountered a similar issue with Windows 7 workstations would not work with OSSO unless we set the workstation policy not to use AES encryption. (See Oracle note 973190.1)
    We are not inclined to continue to use DES encryption and we have obstacles moving to 11g iDM/OAM/OID from OSSO. I am exploring the possibility continuing to keep one 2003 domain controller in production, and pointing OSSO to that, until we can move to the 11g iDM stack.
    Meanwhile, we have ongoing frustration with how complicated SSO is with the e-Business Suite. Sure, it works, once you climb the mountain to set it up, and we don't have that many issues in production. But the implementation of SSO for e-Business Suite is simply complex. The trip from the workstation back to an EBS session is operationally somewhat brittle. I guess some of us relish complexity. Certainly there is pride in understanding something like this. But, after a while, when the trickle of tickets from the Help Desk never completely dries up, you get tired of complexity and you seek something simpler.
    So, instead of this path:
    Workstation > EBS > OID > AD / Kerberos > Workstation
    (and I didn't even mention F5 switch with reverse proxy servers ...)
    Why can't we have this?
    Workstation with certificate > OIF with SAML > EBS session.
    Has anyone done that?
    Thank you for your help.

    Hello JJ,
    We are facing the same issue. Oracle has recommanded us to install
    HTML-DB on the same database as our Apps 11i.
    What we still have to figure out is whether is use APPS schema for the
    HTML-DB workspaces, or use a different schema.
    How is it configured at your site?
    Moshe

  • ODI integtation with e-Business Suite Release 12

    Hello,
    Has anyone successfully used ODI to integrate date into e-Business Suite Release 12?
    I notice that the only e-Business Suite IKM is specific to Open Interface tables. Is this a problem in R12 where the documented interfaces in the Integration Repository (iREP) no longer list Open Interface tables as a means to get data into the product? iREP in R12 lists mainly PL/SQL or Java APIs and XML Gateway as the integration options.
    Also, as I would expect there to be significant functionality differences between Release 11i and 12 - how is this reflected in the Knowledge Modules? I can only see one IKM for e-Business Suite. Is it generic?
    Are any separate knowledge modules available for R12 and/or the PL/SQL or Java APIs?
    If not, has anyone attempted to build a custom integration with the APIs instead, and what feedback do you have, in particular around performance?
    Cheers,
    John

    Hello again!
    I've located the open interface tables in e-Business Suite Release 12's Integration Repository - for some reason they were only getting displayed if I drilled down on 'interface type' rather than the standard product view.
    Anyway...
    The open interface tables that are documented do not have the same module coverage as the PL/SQL APIs.
    This means for some areas I am forced to extract a set of records from a source table and integrate a single record at a time with a PL/SQL procedure.
    As there is no supplied IKM for e-Business Suite APIs how can I approach this? Can you create a data store that is a PL/SQL procedure?
    Again, if someone has managed to integrate into the e-Business Suite APIs can you please offer some guidance?
    Cheers,
    John

  • Upgrade plan for e business suite r12.0.6 on 10.2.0.3

    hello all,
    i am planning to upgrade our existing set i.e. e business suite r12.0.6 running on 10.2.0.3.
    i like to first apply on clone database to test and verify the procedure.
    for that i have created close database on same machine.
    machine 1:
    /data1/PROD --- prod directory represent production database
    /data1/DEV -- dev directory represent testing database.
    my question are follow
    1. it is ok if i upgrade 11gr2 on dev in same machine, will it effect my existing PROD database ???
    2. please advice me action plan or document which help me with the step for upgrade.
    OS: LINUX REDHAT 5
    DB: 10.2.0.3
    APPS: R12 12.0.6
    thanks

    Thank you for your reply husain.,
    i don't have spare or another server., so i have to do testing the same machine., apart from performance is there any other impact on running production database.?
    and will you please help me where to start...
    i already read the notes and i have following doubts
    Verify software versions
    The following software component versions must exist in your environment.
    Software
    Minimum Version
    Tier
    Details
    Oracle Database Enterprise Edition
    N/A
    Database
    Read the "Determine the Upgrade Path" subsection in Chapter 2 of the Oracle Database Upgrade Guide 11g Release 2 (11.2). Make sure that direct upgrade is supported from your current release.
    --> This part i understood. I m going to use DBUA. from 10.2.0.3 to 11.2.0.3
    Oracle E-Business Suite
    12.0.4 or 12.1.1 with 9868229, 10163753 and 11071569
    Application
    If you are on E-Business Suite Release 12.0, apply
    Patch 6435000 - Oracle E-Business Suite 12.0.4
    Patch 8623536 - 11g Release 2 interoperability patch for Release 12.0.4
    Patch 9868229
    Patch 7303030 - Oracle E-Business Suite 12.1.1
    Patch 9062910 - 11g Release 2 interoperability patch for Release 12.1
    Patch 8919489 - 12.1 TXK Delta 3 patch
    Patch 9868229
    Patch 10163753
    Patch 11071569
    If you are on E-Business Suite Release 12.1, apply
    ---> I m not clear with this part., do i need to do anything (i mean i need to apply any patches).
    because we already in 12.0.6. (Please advice).
    Demand Signal Repository (conditional)
    12.1.2 with 9182368
    Application
    If you are using Demand Signal Repository (DSR), apply
    Patch 7303033 - Oracle E-Business Suite 12.1.2
    Patch 9182368
    --> We are not using DSR so i think i can ignore this part.
    Oracle Warehouse Builder (conditional)
    11.2.0.1 with 9403153
    Warehouse Builder Database
    If you are using Oracle Warehouse Builder (OWB) 11g Release 2, apply OWB 11g Release 2 (11.2.0.1) and Patch 9403153. The following E-Business Suite Release 12 products use OWB 11g Release 2:
    Oracle Demand Signal Repository (DSR)
    Oracle Manufacturing Operations Center (MOC)
    Oracle Balance Scorecard (BSC)
    --> we are not using OWB., so i think we can ignore this part.
    AutoConfig
    Latest version with 9852070, 9738085, 11692965, and 12686610
    Application
    Implement AutoConfig or upgrade to the latest version. See Using AutoConfig to Manage System Configurations with Oracle E-Business Suite Release 12 on My Oracle Support for instructions. If you are on Oracle E-Business Suite Release 12.1, apply patches Patch 9738085 and Patch 9852070.If you are on the IBM Linux on System Z platform and on Oracle E-Business Suite Release 12.1, apply Patch 11692965.
    Apply Patch 12686610 (for Oracle E-Business Suite Release 12.0 and 12.1).
    ---> I didn't understand this part completely, but what i understood is.. i need to apply PATCH 12686610 and to apply this patch i need to apply two more pre-req patch: (Patch R12.TXK.A.delta.7: R12.TXK.A.DELTA.7)
    Daylight Saving changes
    N/A
    Database tier
    See Complying with Daylight Saving Time (DST) and Time Zone Rule Changes in E-Business Suite 12 on My Oracle Support for instructions.
    --> i didn't understand this part completely.
    DirectX
    9.0b
    Windows customers ONLY - Database tier
    On Windows, run the DirectX diagnostics tool DxDiag.exe in c:\windows\system32. If you receive a generic error opening the display adapter information, use the Windows update tool to upgrade to DirectX 9.0b.
    ---we can ignore becuaes we are on linux.
    hope you reply.

  • Oracle E-Business Suite 11.5.10 to 11.5.10.2 upgrade - DBA HELP NEEDED

    I hope someone can help me.....I've spent days so far but getting the same issues!
    I am trying to setup an E-Business Suite 11i VISION instance to use for some user training.
    I have managed to setup and get running 11.5.10 on SUSE 9 and have no problems running this.
    However, I am trying to update this to 11.5.10.2 by applying the Cumulative Update (CU2) patch (u3460000.drv).
    I have followed all of the pre-requisite steps in Metalink note (316366.1) and applied patches 4318672, 4229931 and 4297568 as per instructions.
    All Autoconfig results as part of this returned an [ALL PASS] status and I was then able to proceed.
    I then used AutoPatch to apply u3460000.drv, however at a certain point the script displays:
    FAILED: file LoadMap.class on worker 1 for product ecx username ECX.
    FAILED: file LoadMap.class on worker 2 for product ecx username ECX
    ATTENTION: All workers either have failed or are waiting:
    FAILED: file LoadMap.class on worker 1.
    FAILED: file LoadMap.class on worker 2.
    I've checked the worker logs, adwork001.log, adwork002.lo, and can see they are showing an error:
    Message: No ECX_VERSION stored in database.
    SQLState: null
    ErrorCode: 0
    I have copied the last few lines from the adwork log file and also adpatch log file to the bottom of this thread.
    I have tried using adctrl to restart the failed workers and also the hidden option 8 to skip this process and both of these steps have failed.
    I can't see anything about this error on Metalink or Oracle Forums.
    ADWORK001 log output
    Copyright (c) 2002 Oracle Corporation
    Redwood Shores, California, USA
    AD Java
    Version 11.5.0
    NOTE: You may not use this utility for custom development
    unless you have written permission from Oracle Corporation.
    Time when worker completed job: Mon Apr 16 2012 12:01:25
    Evaluating symbolic arguments
    Done evaluating symbolic arguments.
    Time when worker started job: Mon Apr 16 2012 12:01:25
    Start time for file is: Mon Apr 16 2012 12:01:25
    adjava -ms128m -mx256m -nojit oracle.apps.ecx.loader.LoadMap &un_apps &pw_apps &jdbc_db_addr &fullpath_igf_patch/115/xml/US_IGF_GR_PELL_OUT.xgm
    Reading product information from file...
    Reading language and territory information from file
    Reading language information from applUS.txt
    Temporarily resetting CLASSPATH to:
    /d01/oracle/visappl/ad/11.5.0/java/adjri.zip:/d01/oracle/viscomn/util/java/1.4/j2sdk1.4.2_04/lib/tools.jar:/d01/oracle/viscomn/util/java/1.4/j2sdk1.4.2_04/lib/dt.jar:/d01/oracle/viscomn/util/java/1.4/j2sdk1.4.2_04/jre/lib/charsets.jar:/d01/oracle/viscomn/util/java/1.4/j2sdk1.4.2_04/jre/lib/rt.jar:/d01/oracle/viscomn/java/appsborg2.zip:/d01/oracle/visora/8.0.6/forms60/java:/d01/oracle/viscomn/java
    Calling /d01/oracle/viscomn/util/java/1.4/j2sdk1.4.2_04/bin/java ...
    Spawned Process 8976
    Database Connect String (DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=EBIZ11I.johndomain)(PORT=1521))(CONNECT_DATA=(SERVICE_NAME=VIS)))
    UserName APPS
    Connecting...
    connected.
    SQL Stmt: select text from WF_RESOURCES where name = ? and type = ? and language = userenv('LANG')
    No ECX_VERSION stored in database.
    Could not get ECX_VERSION from Database
    SQLException caught
    Message: No ECX_VERSION stored in database.
    SQLState: null
    ErrorCode: 0
    Map cound not be loaded, SQLException occured.
    Exception in thread "main" java.sql.SQLException: No ECX_VERSION stored in database.
    at oracle.apps.ecx.loader.CoreDbServices.getEcxVersionFromDb(CoreDbServices.java:491)
    at oracle.apps.ecx.loader.Events.initEvents(Events.java:76)
    at oracle.apps.ecx.loader.LoadMap.main(LoadMap.java:85)
    AD Run Java Command is complete.
    ADPATCH output
    There are now 3645 jobs remaining (current phase=A80):
    1 running, 87 ready to run and 3557 waiting.
    Assigned: file LoadMap.class on worker 2 for product ecx username ECX.
    Time is: Mon Apr 16 2012 12:57:44
    FAILED: file LoadMap.class on worker 2 for product ecx username ECX.
    Time is: Mon Apr 16 2012 12:57:46
    FAILED: file LoadMap.class on worker 1 for product ecx username ECX.
    Time is: Mon Apr 16 2012 12:57:46
    ATTENTION: All workers either have failed or are waiting:
    FAILED: file LoadMap.class on worker 1.
    FAILED: file LoadMap.class on worker 2.
    ATTENTION: Please fix the above failed worker(s) so the manager can continue.
    Current time is: Mon Apr 16 2012 12:57:46
    It would be amazing if someone could help me with this issue!!
    Thanks in advance......

    Please see these docs.
    FAILED: file LoadMap.class with 'No ECX_VERSION stored in database' [ID 314170.1]
    Adpatch Fails while Loading a Map : no ECX_VERSION stored in the database [ID 412445.1]
    ADPATCH Fails : LoadMap.class Task error : 'No ECX_VERSION stored in database' [ID 293861.1]
    Loading Itgtrade.Ldt fail [ID 317031.1]
    Thanks,
    Hussein

  • How to install E-Business Suite 11.5.9 on Linux ES4 64bits

    Dear Sir,
    I am upgrading E-Business Suite to 11.5.10.2. Before upgrading i have to install E-Business Suite on the new servers with OS Linux ES4 64bits which gives better performance and stability on the environment. Could you please guide me on this installation as in the documents it's said that 11.5.9 cannot be installed on a 64bits environment.
    By which steps must i proceed?
    Best Regards
    Stéphane

    64-bit operating systems are supported on x86-64 servers for E-Business Suite 11i database tier only.
    For more details, check Note: 343917.1 - Frequently Asked Questions: Oracle E-Business Suite Support on x86-64
    https://metalink.oracle.com/metalink/plsql/ml2_documents.showDocument?p_database_id=NOT&p_id=343917.1
    You may also review the following link:
    Three New 64-Bit Database Tier Certifications for Apps 11i
    http://blogs.oracle.com/schan/2008/02/20

  • Keeping track of oracle E-Business Suite Customization(Personalization/Cus)

    Hi,
    I am preparing a document to keep track of all the customizations done an oracle E-Business Suite.
    This will be useful for the team during upgrade to higher versions to track down the customization.
    Kindly let me know what are the things we should keep in this document related to customization.
    These are the things comes to my mind for now for each customization done.
    - Application Area
    - Form/Report/jsp page
    - table/plsql/view/sql
    - Descripton
    - Changed behavior
    - etc ( Please, post some more things to be taken care. With your sharing it can be a standard document to follow for any customization)
    Your participation is highly appriciated.
    Thanks

    Hi,
    I can also suggest you to use Change Request Management in this regard. You can use the standard Change Request Form for this purpose.
    You can refer the following formats for developing the form,
    [Scope Change Request Form|http://www.scribd.com/doc/2218577/Scope-Change-Request-Form]
    [Download Change Request Form|http://www.gantthead.com/deliverables/Change-Request-Form.html]
    [CRM Form Format|http://www.google.co.in/url?sa=t&source=web&ct=res&cd=6&url=http%3A%2F%2Fwww.nic.edu%2Fmodules%2Fimages%2Fwebsites%2F16%2FFormatChangeRequestFormnew.doc&ei=vJtISuvXK9PdsgavnZXXCQ&usg=AFQjCNG5pcAju5A1gOHNTMQdP-5fIrEJmw&sig2=YwZLzuObw6nBWQwmk_6sHA]
    Hope this could help you in developing a CRM Form.
    Thanks,
    Anchorage :)

  • Want to start a Career in Oracle E - Business Suite.

    Dear All,
    This is Hitesh Parsawala. I am working as a SAP B1 Project Head. Till date I have completed 4 Implementation Projects. Basically i am a functional Consultant.
    But as SAP B1 Product has various contraints and Limitations hence i have found interest in Oracle E - Business Suite and make my career in Oracle EBS.
    So can any body give brief about the modules covered in Oracle E-Business Suite. And just brief me about Oracle EBS.
    Also can anybody suggest which are modules covered in Functional side in Oracle EBS (Especially in the MM and SD ) side.
    Can anybody tell me is it possible for me to shift myself from SAP B1 to Oracle E-Business Suite. Also is it possible for me to learn the Technical Module in Oracle EBS. And which are Technical Modules covered in Oracle EBS.
    Waiting for the reply.
    Regards
    Hitesh Parsawala

    Hello dear,
    Thanx for the reply. But i had visited the site, but i wanted the suggestions regarding my shifting to Oracle EBS and the Market of Oracle EBS.
    Also is it possible for a Functional Consultant to move from functional side to technical side.
    Plz reply.
    Regards
    Hitesh Parsawala

  • Can't open "change password site" at first logon to E-business suite

    We have a strange problem.when we open login page for E-business suite and try to log on for the first time we should get the "change password" site. Instead we get "page cannot be displayed". If we open the login page again (without shutting down IE) and log in we get the change password site and can change password for the user. If I close IE and open it again the same thing happend again (if you don't change the password). It is only when you need to change password you get "page cannot be displayed". otherwise everything work ok. it seems like it stopps at the fndvald.jsp file. the address in the IE stopps at http://<server.domain>:8000/OA_HTML/fndvald.jsp

    I can't find any trigger with that name..........
    I tried to write
    SQL> alter trigger FND_USER_AU disable;
    alter trigger FND_USER_AU disable
    ERROR at line 1:
    ORA-04080: trigger 'FND_USER_AU' does not exist
    When I look in the sql developer I can't find any trigger called FND_USER_AU either.
    Message was edited by:
    user598626

  • OracleE-business suite (12.2.2.4) Linux64

    I Need the Right steps (step by step) how to install successfully on an oracle vm machine
    I have oracle Linux 5.8 64bit
    but I see 2 video on you tube and the guy add some requirement on the Linux after he install it
    from where i can got these steps
    Please as I said I am new with this and need all the details Required
    Many thanks for anyone can help

    You can find the requirements in (Oracle E-Business Suite Installation and Upgrade Notes Release 12 (12.2) for Linux x86-64 (Doc ID 1330701.1)).
    Please also see:
    Oracle E-Business Suite Release Notes, Release 12.2 (Doc ID 1320300.1)
    Oracle E-Business Suite Installation Guide: Using Rapid Install
    For (step by step), in addition to the docs referenced above you may Google "12.2 Linux Installation" and you should find many blogs.
    Thanks,
    Hussein

  • Where is the doc for e-Business Suite Adaptor?

    Where is the doc for e-Business Suite Adaptor? When I search for it, all I find is a POD-cast.
    Thanks in advance,
    - Mike

    I'm unsure what kind of documentation you are after. It really comes down to the Oracle eBusiness documentation on how to implement it, e.g. field A should be populated with the following information.
    As far as the adapter documentation all you do is find the service using the adapter. This is broken into the different modules so it should be easy to find. When you select it the adapter will create the interface so you can start implementing your processes.
    Exactly what issues are you facing.
    cheers
    James

  • Launching a page from Oracle Applications (E-Business Suite) 11i

    I have been trying to get a page in an APEX application to authenticate automatically from a menu function in Apps. I have been working from these instructions:
    http://www.oracle.com/technology/products/database/application_express/pdf/Extend_Oracle_Applications_11i.pdf
    I have created the procedures, functions etc as required and have set up the menu entry in apps. However, whenever I try to launch the application, the e-business suite login page is shown. The page doesn't display an error however the URL has the following:
    http://MYHOST:MYPORT/OA_HTML/AppsLocalLogin.jsp?requestUrl=APPSHOMEPAGE&cancelUrl=http%3A%2F%MYHOST%3AMYPORT%2Foa_servlets%2Foracle.apps.fnd.sso.AppsLogin&langCode=US&errText=Invalid+Function.++Please+contact+the+System+Administrator.+Please+login+again.&username=MYUSERNAME&s1=DqwnJQDrCfPsNs0fP7nn-g..I have ommitted some info such as the host and port for security reasons.
    I have tried several things such as editing out parts of the authentication procedure and passwing with no parameters but none work. Has anyone else successfully done this and if so, do youhave any pointers?
    Any help would be much appreciated!
    Cheers,

    I've searched metalink for info on this however everything seems to point to simply having the user type in their username and password. I need to be able to seamlessly pass the credentials across from apps to apex.
    Anyone an ideas!? :)
    Thanks

  • How to get E-Business Suite session.

    I want to get E-business suite session in Java program.

    Hi User,
    TRY THIS..!!
    FND_GLOBAL.APPS_INITIALIZE (Server)
    Variable      Description
    Summary      
    procedure APPS_INITIALIZE(user_id in number,
              resp_id in number,
              resp_appl_id in number);
    Description      This procedure sets up global variables and profile values in a database session. Call this procedure to initialize the global security context for a database session. You can use it for routines such as Java, PL/SQL, or other programs that are not integrated with either the Oracle E-Business Suite concurrent processing facility or Oracle Forms (both of which already do a similar initialization for a database session). The typical use for this routine would be as part of the logic for launching a separate non-Forms session (such as a Java program) from an established Oracle E-Business Suite form session. You can also use this procedure to set up a database session for manually testing application code using SQL*Plus. This routine should only be used when the session must be established outside of a normal form or concurrent program connection
    You can obtain valid values to use with this procedure by using profile option routines to retrieve these values in an existing Oracle E-Business Suite form session. For manual testing purposes, you can use Examine during an Oracle E-Business Suite form session to retrieve the profile option values.
    Variable      Description
    USER_ID      The USER_ID number
    RESP_ID      The ID number of the responsibility
    RESP_APPL_ID      The ID number of the application to which the responsibility belongs
    Example
    fnd_global.APPS_INITIALIZE (1010, 20417, 201);
    Hope this is Helpful
    MARK THE ANSWER CORRECT OR HELPFUL...

  • How to customize E-Business Suite Forms Managed Attachments Solution

    Hi
    i had requirement in that i have to configure E-Business Suite Forms Managed Attachments Solution , i have to add an extra attribute in header region of oaf Form
    how can i add an extra attribute in that region .
    In the Line item entry The left box shows Oracle E-Business Suite configuration and connects to the Oracle E-Business Suite configuration database; it includes transaction tables, custom PLLs, and AXF PL/SQL procedures. To the right are two WebLogic Server boxes, one connecting to an AXF configuration database and containing AXF 11g , and the other WebLogic Server box connecting to a Content Server database and containing Content Server 11g and Content Server functionality (components, search engines, and services, including the AF Grant Access Service).
    Thanks regards
    Rajendar

    If you can use any unused variable already available in the header part that will be a quick and easy solution.
    On other hand if you are very much sure you want to add a new header field then you have to make changes in all the layers including AXF DB and OOTB SPs.
    Regards,
    Vikrant Korde.

  • Best practice for E-business suite 11i or R12 Application backup

    Hi,
    I'm taking RMAN backup of database. What would be "Best practice for E-business suite 11i or R12 Application backup" procedure?
    Right now I'm taking file level backup. Please suggest if any.
    Thanks

    Please review the following thread, it should be helpful.
    Reommended backup and recovery startegy for EBS
    Reommended backup and recovery startegy for EBS

Maybe you are looking for

  • Gnome-shell crashes with my new video card (nvidia 450 GTS)

    Trying to use nouveau w/ gnome-shell and a new 450 GTS.  Firstly, gnome-shell enters fallback mode upon login.  Secondly, whenever I try to open a shell or a program such as firefox, gnome fallback mode crashes me back to gdm.  I'm not sure what to p

  • HP Wireless Printing Upgrade Kit and MacBook

    Hi, I've bought the HP Wireless Printing Upgrade Kit to connect my printer at the wireless network. That printer is HP Color Laserjet CM1312 MFP. I've set the a static IP on the router settings and for the Windows PC, that are in my wireless network

  • CSCui57775 - ISE 1.2 Cannot use some of the Radius Dictionary attributes

    ISE 1.2 as it's currently shipping does not allow the use of the Radius->IETF dictionary for test attributes. One of the things this broke was the ability to sort wireless locations by VLAN and SSID - in other words the ability to determine which AP

  • Compatability of Crystal Reports 2008 with BOE 11.5 - (.rpt output)

    Hi - I am planning an upgrade to Crystal Reports 2008 to take advantage of capabilities of Crystal Reports Viewer 2008 to modify parameters in reports (ex: posting reports to a shared drive for users to open and modify parameters). In order to have t

  • Uploading photos to Blurb error message

    Hello, I'm working with Lightroom 4.4 to upload photos to Blurb.  Two weeks ago, I tried this with 44 page photobook and it worked fine.  In the past few days, I made a new book (205 pages) and it simply give an error messege in the middle of an uplo