Environment Variables Missing

Hi,
For some reason, all of my environment variables are missing - i.e. I have to manually set $ORACLE_HOME, $ORACLE_SID, $ORACLE_BASE, $AD_TOP etc each time i use the environment. is there any way to fix this?

Hi;
What is your EBS and OS?
Run auotoconfig on both tier(first db than apps) It will create env file for you
Regard
Helios

Similar Messages

  • ZLinux environment variables missing after install

    Suse 9.0 Service pack 2
    Oracle 10g
    During the installation, I had to interactively define a bunch of environment variables. The Oracle installation instructions didn't say to put them in a .profile or any other type of file that may be executed when necessary.
    However, after rebooting, those variables are gone.
    So things like logoning on to the Oracle userid and trying to execute "sqlplus" fails. When I recode these variable, at least it can find the "sqlplus" command.
    Of course, these variables may also be necessary for the db to come up.
    So, I'm backtracking. What did I miss? Where did these variables go? Was there a step that wasn't documented? Was there something I was suppose to "automagically" know?
    So, for those Linux shops, did you have to code a file with these variables?
    I did the "export" command. Sure doesn't look like these variables were saved across boots.
    Any ideas?
    Thanks
    Tom Duerbusch
    THD Consulting

    I'm going to add some things to this.
    In the IBM manual on the installation of Oracle 10g on Suse 9.0, it does show putting the environment variables in the .profile file. (This is under the bash shell.)
    So, last night, I tested .profile. Didn't work. Under the bash shell, the bashrc file would contain items that are executed at logon time. At least by default.
    So, there is something missing, higher up in the food chain. Perhaps something not done during the Linux install that either tells the system to either use the .profile file at logon time (the way the IBM manual says), or automagically keeps the environment variables set across boots, (the way the Oracle Installation manual assumes).
    Anyone recall something like that? Or are most of the people here, been given their Linux images. And your responsibility is only the Oracle DBA side? Perhaps I need to get to a Linux group for this one.
    Thanks
    Tom Duerbusch
    THD Consulting

  • Environment variables from ~/.MacOSX/environment.plist not read?

    Hello,
    I repost this from "Mac OS X 10.5 Leopard > Account and Login" since it was advised to me overthere. Sorry if your already read this one before.
    I have a problem defining environment variables that should be visible to all my user processes, not only Terminal. According to the Apple documentation, I need to create a file ~/.MacOSX/environment.plist and define my variables in there.
    Below you can see the exact paths and file name, together with the contents of the plist file:
    <pre>
    /Users/ringods/.MacOSX
    AtrisoBook:.MacOSX ringods$ ls -l
    total 8
    -rw-r--r--@ 1 ringods staff 313 Sep 29 15:35 environment.plist
    AtrisoBook:.MacOSX ringods$ cat environment.plist
    <?xml version="1.0" encoding="UTF-8"?>
    <!DOCTYPE plist PUBLIC "-//Apple//DTD PLIST 1.0//EN" "http://www.apple.com/DTDs/PropertyList-1.0.dtd">
    <plist version="1.0">
    <dict>
    <key>ANT_HOME</key>
    <string>/opt/local/share/java/apache-ant</string>
    </dict>
    </plist>
    </pre>
    I then tried a logout/login sequence, but no ANT_HOME environment variable was defined. Even after completely rebooting, the environment variable was still not defined. I checked in a Terminal window using any of the following 3 commands:
    <pre>
    env
    export
    set
    </pre>
    This is on a MacBook Pro running 10.5.5. Am I missing something here? Does anyone know how to resolve this?
    Ringo

    I'm currently experiencing the same issue.
    I find however, if I take out the underscore from the name it works. At least the times I've tried.
    There is a post about using launchd.conf for configuring environment variables, but I couldn't get that to work either.

  • Not able to get SSL related CGI Environment Variables?

    We are currently using APEX 3.2.0.x, OHS 10.1.3.x, and 11gR1 on linux. The APEX application we've been developing will be accessed via SSL and x509 certificates such that a client certificate is passed from a user's browser to the OHS, the information will be read from the certificate, and if the user's cert information exists in a user table associated with the application, they will have the role they've been assigned as an existing user within the application. Otherwise, the user will be a guest and have a minimum role accessing the application.
    We are certainly not guru's when it has come to setting up and configuring SSL and certs, but we have gotten to the point where we have all of the required certs created and installed, and the client cert passes it's information successfully to the OHS to get to the "home" page of the application via the Rewrite statement in the httpd.conf/ssl.conf that points to the appropriate https url. We are now at the point where we need the APEX application page to read the cert information, and this is where we are having problems.
    We have created an "On Load - Before Header" process and temporary item on the "home" page to display CGI environment variables to see what we're getting. It's a PLSQL Anonymous block like this:
    DECLARE
    lUserName VARCHAR2(100);
    BEGIN
    SELECT NVL(owa_util.get_cgi_env('REMOTE_USER'),'NOT POPULATED') INTO lUserName FROM DUAL;
    :P1_REMOTE_USERNAME := lUserName;
    END;
    We can grab any of the cgi environment variables that are listed in the OHS mod_plsql User's Guide. We cannot seem to be able to get any of the SSL CGI environment variables though. We are adding the SSL variables to the dads.conf via the PlsqlCGIEnvironmentList parameter (ex: PlsqlCGIEnvironmentList SSL_CLIENT_S_DN_CN) and bouncing the OHS as needed. Unfortunately, we have not been successful in getting any of them to show up in the item on the APEX page.
    As far as we can tell, we have the SSL/OHS/Certs configured, but may be there is another SSL directive or some other configuration item that we've missed that needs to be set in order for SSL CGI environment variables to be available to the owa_util.get_cgi_env function. If anyone can tell us what we may have missed, it would be appreciated.
    thanks
    bob

    Hey John,
    what we have found that we were not sure of is that we need to use Rewrite rules and conditions in the ssl.conf to grab the ssl cgi environment variables and "put" them into the request header to hold them like this:
    RewriteCond %{SSL:SSL_SERVER_S_DN} (.*)
    RewriteRule .* - [E=SSLS_DN:%1]
    RequestHeader add X-SSL-SERVER-S-DN %{SSLS_DN}e
    Then in the dads.conf put the request header reference in there with the plsqlcgienvironmentlist parameter like this:
    PlsqlCGIEnvironmentList HTTP_X_SSL_SERVER_S_DN
    Restart the OHS, and then grab the HTTP_X_SSL_SERVER_S_DN variable(s) via the owa_util.get_cgi_env in the APEX page to pull the value out with an anonymous block in an On Load - Before Header process like this:
    DECLARE
    lUserName VARCHAR2(100);
    BEGIN
    SELECT NVL(owa_util.get_cgi_env('HTTP_X_SSL_SERVER_S_DN'),'NOTHING HERE') INTO lUserName FROM DUAL;
    END;
    It's the Rewrite rules and putting them into the request header that we were not totally sure about as far as how and where you put the environment variables to make them accessible to the dads.conf with the PlsqlCGIEnvironmentList parameter that in turn makes them accessible to APEX. We're still not 100% sure this is the correct method, but it's working. We don't recall reading in any of the APEX docs, APEX forum threads, or other documentation about needing Rewrite rules and conditions to put the cgi environment variables into the request header to make them accessible to APEX. So, that seems to be our missing piece of the puzzle here.
    Anyway, I think we're okay for the moment, and may be this thread will help someone else out in the future. Thanks for your help John, and will give you a helpful plug on the forum for this thread. BTW, I do have your book, so it was nice to see someone as advanced with APEX as yourself reply to the posting.
    Thanks
    Bob

  • Install j2se plugin version 1.6.0_07 on your client and NPX_PLUGIN_PATH environment variable set before starting Netscape.

    Hi experts m new to apps please help.. I have installed successfully Oracle Apps R12 on OEL - 5 All the services runining fine. but when i am opening forms its giving error "install missing plugins" i installed jre-6u7-linux-i586-rpm.bin and Mozilla Firefox 3.0.18 [root@ust ~]# cd firefox/plugins/ [root@ust plugins]# ln -s /usr/java/jre1.6.0_07/plugin/i386/ns7/libjavaplugin_oji.so ./libjavaplugin_oji.so [root@ust plugins]# ls libjavaplugin_oji.so  libnullplugin.so [root@ust plugins]# ll total 20 lrwxrwxrwx 1 root root    58 Sep 11 16:22 libjavaplugin_oji.so -> /usr/java/jre1.6.0_07/plugin/i386/ns7/libjavaplugin_oji.so   -rwxr-xr-x 1 root root 19160 Sep 15  2007 libnullplugin.so [root@ust plugins]# but when m trying to open forms at that time giving error "install j2se plugin version 1.6.0_07 on your client and NPX_PLUGIN_PATH environment variable set before starting Netscape."

    Linux is not a certified client tier for accessing EBS
    Unable to access r12 forms in linux client
    https://forums.oracle.com/search.jspa?view=content&resultTypes=&dateRange=all&q=linux+client&rankBy=relevance&contentTyp…
    HTH
    Srini

  • Using environment variable / double quotes in "Arguments" in "Server Start"

    I have an admin server, NodeManager, and 1 managed server, all on the same machine (windows). I am trying to enter something similar to this to the arguments field in the Server Start tab:
    -Dmy.property=%USERPROFILE%\someDir\someJar.jar
    But when the managed server is started it throws this exception:
    Error opening zip file or JAR manifest missing : %USERPROFILE%\someDir\someJar.jar
    It appears that the environment variable is not being translated into it's value. It is just passed on to the managed server as plain-text. I tried surrounding the path with double quotes (") but the console validates the input and does not allow this: *"Arguments may not contain '"'"*
    Even editing the config.xml file manually cannot work, as the admin server fails to startup after this:
    <Critical> <WebLogicServer> <BEA-000362> <Server failed. Reason: [Management:141266]Parsing failure in config.xml: java.lang
    .IllegalArgumentException: Arguments may not contain '"'.>
    I also tried using %20 to no avail, it is just passed as %20.
    I thought that perhaps this had something to do with the spaces in the value of %USERPROFILE% (which is "C:\documents and settings.."), but the same thing happens with other env. variables which point to other directories with no spaces.
    _My question:_
    Is there any supported way of :
    using double quotes? what if i have to reference a folder with spaces in it's name?
    reference an environment variable? What if i have to rely on it's value for distributed servers where i do not know in advance the variable's value?
    Edited by: 937622 on Sep 28, 2012 1:02 AM

    There is workaround : http://stackoverflow.com/questions/12629395/weblogic-using-environment-variable-double-quotes-in-arguments-in-server
    Just posting here for reference. Let's see if we get a different answer from anyone else.

  • Action to SET environment variable (permanently) e.g. change path

    I would like to be able to set an environment variable as an action in bundles
    -- not to set one associated with an executable action, but rather to define an
    action that will accomplish permanently setting an environment variable.
    For example (not quite real but close) if I installed Java, I might want to set
    the value for JAVA_HOME as a persistent environment variable if the install
    doesn't create it.
    I know of several methods that work for setting an environment variable on the
    system, but none of them work particularly well for my purposes:
    1) Create a batch/cmd file containing the SETX command, place it somewhere
    accessible to the system, and use Run Script. The drawback is that this
    requires placing an extra little command file somewhere accessible to every
    system that runs the bundle.
    2) Add or modify the variable via the registry. This has the drawback of
    requiring a "refresh" action to somehow make the system see the variable value
    right away.
    err.... I think those are the only methods I know. Of course one can set an
    environment variable just associated with an action (except with11.2.3 agent)
    but I want to essentially modify the system permanently, but only for people
    getting the specific bundle.
    What's the best way to go about this? Am I missing something (personality?)?
    Thanks.
    -- DE

    Originally Posted by DE
    I would like to be able to set an environment variable as an action in bundles
    -- not to set one associated with an executable action, but rather to define an
    action that will accomplish permanently setting an environment variable.
    For example (not quite real but close) if I installed Java, I might want to set
    the value for JAVA_HOME as a persistent environment variable if the install
    doesn't create it.
    I know of several methods that work for setting an environment variable on the
    system, but none of them work particularly well for my purposes:
    1) Create a batch/cmd file containing the SETX command, place it somewhere
    accessible to the system, and use Run Script. The drawback is that this
    requires placing an extra little command file somewhere accessible to every
    system that runs the bundle.
    2) Add or modify the variable via the registry. This has the drawback of
    requiring a "refresh" action to somehow make the system see the variable value
    right away.
    err.... I think those are the only methods I know. Of course one can set an
    environment variable just associated with an action (except with11.2.3 agent)
    but I want to essentially modify the system permanently, but only for people
    getting the specific bundle.
    What's the best way to go about this? Am I missing something (personality?)?
    Thanks.
    -- DE
    Hi DE, have you tried with a VBS script? Here's a script that I use to add a path to the "PATH" variable and add 2 other system variables.
    Code:
    Dim CurrPath
    Dim NewPath
    strVarMAYA = "MAYA_LOCATION"
    strVarMUDBOX = "MUDBOX_LOCATION"
    strVarMAYAValue = "C:\Program Files\Autodesk\Maya2014"
    strVarMUDBOXValue = "C:\Program Files\Autodesk\Mudbox 2014"
    Set WshShell = CreateObject("WScript.Shell")
    Set WshSystemEnv = WshShell.Environment("SYSTEM")
    CurrPath = WshSystemEnv("PATH")
    NewPath = CurrPath & ";C:\Program Files\Autodesk\Maya2014\bin" & ";C:\Program Files\Autodesk\Mudbox 2014"
    WshSystemEnv("PATH") = NewPath
    WshSystemEnv(strVarMAYA) = strVarMAYAValue
    WshSystemEnv(strVarMUDBOX) = strVarMUDBOXValue
    For the PATH system variable you could use EditPath if you need to manipulate the content of the variable.
    Hope it helps!
    GuillaumeBDEB

  • SQLPATH environment variable not read by Sql Developer

    Does anyone know why Sql Developer doesn't seem to read the SQLPATH environment variable? I've googled this situation quite a bit with no luck. Am frankly very confused...How can Sql Developer not have the ability to read from the SQLPATH environment variable?
    Considering all the scripts out there that have been written for Sql*Plus, with the assumption that the SQLPATH variable has been set to allow for multiple directories?
    I feel like I'm just missing something in Tools->Preferences in Sql Developer. I just can't see what it is. As a side note, my overall intention is to enable my team members to run the db build scripts from Sql Developer, rather than Sql*Plus...
    Thanks in advance.

    Hi 917092 ,
    Gary Graham wrote:
    Hi,
    The closest equivalent is Tools|Preferences|Database|Worksheet|Select default path to look for scripts, but supports only a single directory.
    This parameter takes multiple directories. For example in Windows the separation character is ";" . The chooser only allows one directory to be chosen at a time - but multiple paths can be typed in.
    SQLPATH reads the environmental variable (it may not read the windows registry setting).
    set SQLPATH=C:\Documents and Settings\THE_USER\first;C:\Documents and Settings\THE_USER\second
    @first
    (reads first.sql from C:\Documents and Settings\THE_USER\first)
    @second
    (reads second.sql from C:\Documents and Settings\THE_USER\second)
    Is that sufficient?
    If there is a bug to be logged please provide more details:
    Including:
    -OS
    -SQLPATH (environmental variable or set via preferences)
    -worksheet command
    -.sql file / reproducible test case
    -output
    -expected output
    Turloch
    SQLDeveloper Team

  • Default ZSH configuration is overriding PATH environment variable

    After debugging why PATH is not getting set properly in zsh, I figured out that the default Arch configuration is overriding PATH.
    The load order for zsh config files is:
    (Taken from http://shreevatsa.wordpress.com/2008/03 … shrc-etc/)
    +----------------+-----------+-----------+------+
    | |Interactive|Interactive|Script|
    | |login |non-login | |
    +----------------+-----------+-----------+------+
    |/etc/zshenv | A | A | A |
    +----------------+-----------+-----------+------+
    |~/.zshenv | B | B | B |
    +----------------+-----------+-----------+------+
    |/etc/zprofile | C | | |
    +----------------+-----------+-----------+------+
    |~/.zprofile | D | | |
    +----------------+-----------+-----------+------+
    |/etc/zshrc | E | C | |
    +----------------+-----------+-----------+------+
    |~/.zshrc | F | D | |
    +----------------+-----------+-----------+------+
    |/etc/zlogin | G | | |
    +----------------+-----------+-----------+------+
    |~/.zlogin | H | | |
    +----------------+-----------+-----------+------+
    | | | | |
    +----------------+-----------+-----------+------+
    | | | | |
    +----------------+-----------+-----------+------+
    |~/.zlogout | I | | |
    +----------------+-----------+-----------+------+
    |/etc/zlogout | J | | |
    +----------------+-----------+-----------+------+
    Note that on Arch, it's /etc/zsh instead of /etc.
    By convention, environment variables are set in .zshenv.  However, /etc/zsh/zprofile, which is loaded after .zshenv, completely nukes PATH, so no matter what I set in .zshenv for PATH, it'll get wiped by /etc/zsh/zprofile.
    Does any zsh user have a workaround for this problem?
    EDIT: That's not the question I wanted to ask.  I guess I can always source .zshenv in .zprofile, but that's so ugly... Do any other zsh users feel that this should be fixed in Arch's distribution of zsh?
    Last edited by darkfeline (2014-04-29 19:21:28)

    jasonwryan wrote:This has been opened and closed several times on the bugtracker: it's worth reading the various conversations there to get the context and what people do, including me, to work around or within this setup.
    Somehow I missed that during my initial skim though the bugtracker, but I found it now.
    https://bugs.archlinux.org/task/35966
    https://bugs.gentoo.org/show_bug.cgi?id=19924 (Gentoo had an interesting one too).
    I understand now the problem is that (ba)sh doesn't have as fine-grained control over startup files as zsh.  There also seems to be personal disagreement about where PATH should be set.  Thus, setting path gets shoehorned into profile, and when that gets moved over to zprofile, things get ugly.

  • Gcc seems not to be recognising environment variables for include and lib.

    I'm trying to install programs into a non standard location, but GCC does not seem to be checking the paths defined in global profile. All 3rd party dependencies are not found and only the default locations are checked.
    The environment variables defined in profile are:
    CPLUSINCLUDEPATH="/DVL/include:/GNU/include:/usr/X11/include:/TEST/include"
    DYLDLIBRARYPATH="/DVL/lib":/GNU/lib:/usr/x11/lib"
    LIBRARY_PATH="/dvl/lib:/gnu/lib:/TEST/lib"
    As GCC is a proven technology, I can only assume that my variables are incorrect or something is missing. Has anyone else experienced this or is your configuration recognising non-standard locations?

    sorry, wrong forum. I put this topic again in forum "portal applications"

  • J2EE Installation: Environment variables SETUP?

    HI there
    Can anyone help me please. I just installed J2EE and was looking for the sdk folder to set the environment variables. But instead i found a jdk folder which i am not sure about.
    Does anyone know what environment variables do i set for J2EE.
    Through some websites; it says set <J2EE_Home>\bin and also <JAVA_HOME>\bin where JAVA_HOME points to sdk1.4.2_03 (something like that).
    Am i missing anything in downloading? I mean do i have to download J2SE separately.
    I followed the following website for downloading
    http://java.sun.com/j2ee/1.4/download-dr.html
    &then "Download the Java 2 Platform, Enterprise Edition 1.4 SDK Developer Release."
    Please HELP
    Thanx

    Hi
    thanx for replying
    actually the jdk folder created in my directory just says jdk.
    The README filefrom jdk folder says the following as the header " Java(TM) 2 SDK, Standard Edition Version 1.4.2"
    Also if i go through start--> programms--> sun microsystems. It shows me J2EE1.4SDK. So after Microsystems -->its J2EE1.4 SDk ---> About J2EE1.4SDK and other options like Admin ocnsole, Deploy tool etc.
    Do u still think i have to download SDK?. Please let me know
    Thanx

  • Forget to set environment variable export SAPINST_USE_HOSTNAME

    Dear Experts
    we have installed the SAP ECC6.0 EhP4 in HACMP environment with AIX6.1 ,Power HA cluster6.1, oracle 11g database
    the problem is while installing the CI and ASCS and Dialog instance I  missed  to set environment variable
    export SAPINST_USE_HOSTNAME = <virtual Host Name> and while starting the sap-inst also i didn't start as like
    ./sapint SAPINST_USE_HOSTNAME  = <virtual Host Name>,Now i am facing problem while doing cluster fail over to another node
    Node A host Name is not reflecting in Node B and I am not able to start  the SAP with host name of Node A
    in AIX6.1 in IBM Admin they didnt give any virtual host name they said that they  have configured  the cluster with two service IP there is no virtual IP in AIX6.1
      please help me out how to resolve this host Name issue and to start the SAP in Node B
    Thanks in Advance
    krishna

    Hi Krishna,
    I dont agree with the AIX 6.1 having no virtual ip's, because i recently installed a HA instance with ASCS, SCS & also ERS on 6.1
    to answer your questions:-
    "can you tell is this correct setup or anything we did mistake for file system setup and installation"
    This depends on what your requirement is. Typically a cluster will have Oracle on one host and SAP on the other host. Ill explain the VCS concept, so you will have a better understanding.
    Lets consider Node1 & Node2. Now each node will have a physical IP and a virtual IP. The Virtual IP will be associated with a set of file systems. For example /oracle will be associated to virtual ip lets say "xyzDB" & the /usr/sap/<sid>, TRANS & sap mount will be associated with virtual ip lets say "abcCI". Now when the cluster fails over to which ever node, these file systems will still be associated with their respective virtual ip's.
    So, the start profile will always have START_DVEBMGS_abcCI. Irrespective of which Node the sap is in, when you start the SAP, it will use the virtual hostname and start up SAP. I hope your getting the concept.?
    Coming back to the setup, since you have ASCS, Oracle , CI & a dialog instance. Im not sure what file systems you have associated with VCS groups. Can you give command "hastatus -sum" and post the output?
    Regarding your other question
    "this file system is moving to Node B but while starting SAP on Node B host Name is not reflecting and SAP is not coming up  due to there hostname didnt change in Node B,, can you advice me please ,,"
    This is inline with what i explained above for cluster mechanism. The physical IP will not change. It is only the virtual IP that is associated with a set of file systems.
    Ill give you one more example, Consider the parameter rdisp/mshost = <> . What should this be? Physical host or Virtual host?? :-) .It should be Virtual. Because the CI can be in Node1 or Node2. If we give the physical host, then if the SAP fails over to the other node. How will it start up? because the profiles still say the message server is in the other host... Getting my point?
    Regards,
    Shanser

  • How do you get your environment variables seen in SS?

    I am trying out SS, we currently use gcc/Kdevelop. When I try to launch my program or debug inside Sun Studio I get an error about a missing .so. Since everything works fine from the command line I assume SS does see my shell environment variables. I don't see any option for this, what am I missing?

    First of all, you can check whether environment is inherited or not from dbx command line:
    - start debug session
    - go to "Dbx console" tab at the bottom
    - issue 'set' command and/or 'set | grep your_variable' to see if it is there
    If it's really missing or has value other that expected, use project properties to specify environment for the application. It can be done like this:
    - right-click project in Projects window, choose Properties
    - select "Running" node
    - and edit the "Environment" field

  • Novell Linux Client, -E/--passenv environment variable?

    Hi!
    I've been experimenting with the Novell Client for Linux v1.2 on
    SLED10. I have most of it working as intended.
    Now I'd like to integrate with some scripts to do automatic logins. I
    notice that in the help message (from 'nwlogin --help'), this
    information is present:
    -E, --passenv
    pass password via environment variable
    The same (almost, it only lists --passenv, not -E) goes for gnwlogin.
    This looks like a very useful feature for script integration, but
    unfortunately, I can't find any documentation on which environment
    variable to use. The -E/--passenv parameter is also missing from the
    nwlogin(1) manual page.
    What environment variable should be used? Is this feature official, so
    that I can rely on it being present in later versions of the client?
    Thanks,
    \EF
    Erik Forsberg OpenSource-based Thin Client Technology
    Systems Analyst/Developer Phone: +46-13-21 46 00
    Cendio AB Web: http://www.cendio.com

    Erik,
    It appears that in the past few days you have not received a response to your
    posting. That concerns us, and has triggered this automated reply.
    Has your problem been resolved? If not, you might try one of the following options:
    - Do a search of our knowledgebase at http://support.novell.com/search/kb_index.jsp
    - Check all of the other support tools and options available at
    http://support.novell.com.
    - You could also try posting your message again. Make sure it is posted in the
    correct newsgroup. (http://support.novell.com/forums)
    Be sure to read the forum FAQ about what to expect in the way of responses:
    http://support.novell.com/forums/faq_general.html
    If this is a reply to a duplicate posting, please ignore and accept our apologies
    and rest assured we will issue a stern reprimand to our posting bot.
    Good luck!
    Your Novell Product Support Forums Team
    http://support.novell.com/forums/

  • How to accces environment Variables in app

    Hi, thanks for reding my post
    I have created in the OAS Portal a variable called PORTAL_HOME that points to the home of the Oracle Portal's OC4J. I want to access this variable for logging purposes.
    I tried to access it with ${PORTAL_HOME}, but it doesn't works...
    ¿What I'm doing wrong?

    Hi,
    You can set the environmet variable in Weblogic by using the below commands
    setWLSEnv.cmd/sh ==>Set the CLASSPATH to include the WebLogic Server classes.
    Overview of WebLogic Server Domains
    or you can use to set the Environment variable along with domain specific varables using the SetDomainEnv.cmd
    To run SetDomainEnv.sh in Linux please use
    . ./setDomainEnv.sh it require two dots (Dont miss it )
    http://docs.oracle.com/cd/E28280_01/web.1111/e13749/weblogicserver.htm#ADMRF205
    Hope it helps

Maybe you are looking for

  • Customer open balance analysis question

    Question: How do you easily track open balance of an invoice without using residuals? Scenario: Create invoice using transaction FB70 Apply a partial payment to the invoice or apply a credit memo to reduce the invoice balance. We do not want to use r

  • How to get current row of Advanced table with no submit

    I have an advanced table with an 'Add another button'. When an empty row is created by clicking this button, LOV is used on the first column to populate other fields of the row. The rows of the table carry a button called "Add dependencies" whose fun

  • Nokia N95 8 Gigs "The Phone that got forgotten"

    Dear Nokia Support, After I have bought this phone, I was not as please with the price and over all service that I have received from Nokia. I didn't care that it was expensive, but the service... Lets me begin where I have bought this phone for over

  • New MacBook connected to external VGA display screen flash.

    Just got the 2.4Ghz yesterday. For home use I've got it connected to a Samsung SyncMaster 2032NW display via the Mini DisplayPort to VGA Adapter. Occasionally the display will go dark for a half-a-second or so and then come back on. It happens random

  • Did I do it okay?

    Hi Folks, Just to reassure myself that I didn't screw something up. Could I ask someone more knowledgable than I to let me know if what I did is okay or not? I just upgraded from a MacBook Air to a MacBook Pro Retnia. The way I did that was to boot u