Settting environment path for javac

Hello, i am ridiculously new to this I don't even know what i'm getting into since i'm so confused already. I have jdk 1.6 installed and so i tried to create the environment path by typing it in the autoexec.bat thing but it doesn't work! It says that it cannot write the file whenever i press save. I do not want to change the path permanently by putting it in the advanced settings with the environment variables because i'm scared that i will do it wrong and then i can't change it back. Can somebody please help me?!
Also, i have vista. I think i heard somewhere that it was difficult....or maybe it is just me.
Sorry if this was already posted.
THank you so much for the help!

phenomenon
I wouldn't know vista from sauteed iguana guts but if it's the same as XP, and 2K, and NT, and 98, and 95, and WorkGroups, and Win 3.1 (ie: a fairly good bet) then you right click on my computer, select properties from the menu, goto the advanced tab, click on the system environment variables button (not the user variables) and then scroll down till you find the PATH.
I suggest that you copy the path out of that pissant little box it's displayed in (for a bunch of really smart people, microsoft can be really stupid sometimes), and paste it into your preferred text editor (notepad will do) ... edit it there where you can see what you're doing, then copy from notepad and paste it back into that pissant little textbox it's displayed in... Go on, floor me, and tell me it's been fixed in vista. I still refuse to pay for it.
And yes you do need to install the JDK if you haven't allready, but you said that you had. Oh well. We're all confused. Works for me.
keith.
Edited by: corlettk on Sep 14, 2007 11:27 AM

Similar Messages

  • How to set class path for mysql

    hai, I have been trying to make a java program read from mysql database. but i don't know how to set the class path for mysql-connector-java-5_1_.0.6-bin. i set the class path in system variable as C:\Program Files\Java\jdk1.5.0_08\jre\lib\ext\mysql-connector-java-5_1_.0.6-bin.
    in the command prompt, i compile C:\javac abc.java and run java abc.
    when run it come out error java.lang.ClassNotFoundException: com.mysql.jdbc.Driver
    i am using Window xp. can anybody help me??? TQ.

    hai, I have been trying to make a java program read
    from mysql database. but i don't know how to set the
    class path for mysql-connector-java-5_1_.0.6-bin. i
    set the class path in system variable as C:\Program
    Files\Java\jdk1.5.0_08\jre\lib\ext\mysql-connector-jav
    a-5_1_.0.6-bin.
    in the command prompt, i compile C:\javac abc.java
    and run java abc.
    when run it come out error
    java.lang.ClassNotFoundException:
    com.mysql.jdbc.Driver
    i am using Window xp. can anybody help me??? TQ.Right click on my computer icon,
    Goto properties->advanced->environment variables.
    Look for 'classpath' under system variable.
    Select it and click edit.
    put ';' and path of the mysql connector jar at the end
    suppose if u have jar file under d:/driver/mysqlconnector.jar
    thn put this value in variable value text box
    ;d:/driver/mysqlconnector.jar
    or simply put ur driver jar file in jre/lib/ext folder
    D:\j2sdk1.4.2_03\jre\lib\ext
    [Servlet tutorial|http://www.jsptube.com]

  • Setting Environment Varibles for Java Environment

    I downloaded the file j2eesdk-1_4_2005Q1-windows.exe and my installation dir is c:\sun\appserver
    My Environment Varibles are setup as ...
    User varibles:
    CLASSPATH = .;C:\Java\jdk1.5.0_01\jre\lib;C:\Java\jdk1.5.0_01\lib;c:\sun\appserver\bin;c:\sun\appserver
    PATH = C:\Sun\AppServer\bin;C:\WINDOWS;c:\java\jdk1.5.0_01\bin
    System varibles:
    J2EE_HOME = C:\sun\appserver\bin
    JAVA_HOME = C:\Java\jdk1.5.0_01
    ANT_HOME = c:\ant
    I am trying to build and get the following error ...
    Buildfile: C:\eclipse\workspace\sync4j-modules\pimweb\build\build.xml
    clean:
    [delete] Deleting directory C:\eclipse\workspace\sync4j-modules\pimweb\output
    init:
    [mkdir] Created dir: C:\eclipse\workspace\sync4j-modules\pimweb\output
    build:
    [javac] Compiling 1 source file to C:\eclipse\workspace\sync4j-modules\pimweb\src\pimweb\WEB-INF\classes
    [javac] C:\eclipse\workspace\sync4j-modules\pimweb\src\pimweb\WEB-INF\classes\PDIServlet.java:28: package javax.servlet does not exist
    [javac] import javax.servlet.*;
    [javac] ^
    [javac] C:\eclipse\workspace\sync4j-modules\pimweb\src\pimweb\WEB-INF\classes\PDIServlet.java:29: package javax.servlet.http does not exist
    [javac] import javax.servlet.http.*;
    [javac] ^
    [javac] C:\eclipse\workspace\sync4j-modules\pimweb\src\pimweb\WEB-INF\classes\PDIServlet.java:49: cannot find symbol
    [javac] symbol: class HttpServlet
    [javac] public class PDIServlet extends HttpServlet {
    [javac] ^
    [javac] C:\eclipse\workspace\sync4j-modules\pimweb\src\pimweb\WEB-INF\classes\PDIServlet.java:155: cannot find symbol
    [javac] symbol : class HttpServletRequest
    [javac] location: class PDIServlet
    [javac] private String getTypeDemo(HttpServletRequest req) {
    [javac] ^
    [javac] C:\eclipse\workspace\sync4j-modules\pimweb\src\pimweb\WEB-INF\classes\PDIServlet.java:163: cannot find symbol
    [javac] symbol : class ServletConfig
    [javac] location: class PDIServlet
    [javac] public void init(ServletConfig config) throws ServletException {
    [javac] ^
    [javac] C:\eclipse\workspace\sync4j-modules\pimweb\src\pimweb\WEB-INF\classes\PDIServlet.java:163: cannot find symbol
    [javac] symbol : class ServletException
    [javac] location: class PDIServlet
    [javac] public void init(ServletConfig config) throws ServletException {
    [javac] ^
    [javac] C:\eclipse\workspace\sync4j-modules\pimweb\src\pimweb\WEB-INF\classes\PDIServlet.java:193: cannot find symbol
    [javac] symbol : class HttpServletRequest
    [javac] location: class PDIServlet
    [javac] protected void processRequest(HttpServletRequest request, HttpServletResponse response)
    [javac] ^
    [javac] C:\eclipse\workspace\sync4j-modules\pimweb\src\pimweb\WEB-INF\classes\PDIServlet.java:193: cannot find symbol
    [javac] symbol : class HttpServletResponse
    [javac] location: class PDIServlet
    [javac] protected void processRequest(HttpServletRequest request, HttpServletResponse response)
    [javac] ^
    [javac] C:\eclipse\workspace\sync4j-modules\pimweb\src\pimweb\WEB-INF\classes\PDIServlet.java:194: cannot find symbol
    [javac] symbol : class ServletException
    [javac] location: class PDIServlet
    [javac] throws ServletException, IOException {
    [javac] ^
    [javac] C:\eclipse\workspace\sync4j-modules\pimweb\src\pimweb\WEB-INF\classes\PDIServlet.java:286: cannot find symbol
    [javac] symbol : class HttpServletRequest
    [javac] location: class PDIServlet
    [javac] protected void doGet(HttpServletRequest request, HttpServletResponse response)
    [javac] ^
    [javac] C:\eclipse\workspace\sync4j-modules\pimweb\src\pimweb\WEB-INF\classes\PDIServlet.java:286: cannot find symbol
    [javac] symbol : class HttpServletResponse
    [javac] location: class PDIServlet
    [javac] protected void doGet(HttpServletRequest request, HttpServletResponse response)
    [javac] ^
    [javac] C:\eclipse\workspace\sync4j-modules\pimweb\src\pimweb\WEB-INF\classes\PDIServlet.java:287: cannot find symbol
    [javac] symbol : class ServletException
    [javac] location: class PDIServlet
    [javac] throws ServletException, IOException {
    [javac] ^
    [javac] C:\eclipse\workspace\sync4j-modules\pimweb\src\pimweb\WEB-INF\classes\PDIServlet.java:295: cannot find symbol
    [javac] symbol : class HttpServletRequest
    [javac] location: class PDIServlet
    [javac] protected void doPost(HttpServletRequest request, HttpServletResponse response)
    [javac] ^
    [javac] C:\eclipse\workspace\sync4j-modules\pimweb\src\pimweb\WEB-INF\classes\PDIServlet.java:295: cannot find symbol
    [javac] symbol : class HttpServletResponse
    [javac] location: class PDIServlet
    [javac] protected void doPost(HttpServletRequest request, HttpServletResponse response)
    [javac] ^
    [javac] C:\eclipse\workspace\sync4j-modules\pimweb\src\pimweb\WEB-INF\classes\PDIServlet.java:296: cannot find symbol
    [javac] symbol : class ServletException
    [javac] location: class PDIServlet
    [javac] throws ServletException, IOException {
    [javac] ^
    [javac] C:\eclipse\workspace\sync4j-modules\pimweb\src\pimweb\WEB-INF\classes\PDIServlet.java:300: cannot find symbol
    [javac] symbol : class HttpServletRequest
    [javac] location: class PDIServlet
    [javac] private String getTask(HttpServletRequest request) {
    [javac] ^
    [javac] C:\eclipse\workspace\sync4j-modules\pimweb\src\pimweb\WEB-INF\classes\PDIServlet.java:312: cannot find symbol
    [javac] symbol : class HttpServletRequest
    [javac] location: class PDIServlet
    [javac] private void moveToNextView( HttpServletRequest request, HttpServletResponse response, String nextView )
    [javac] ^
    [javac] C:\eclipse\workspace\sync4j-modules\pimweb\src\pimweb\WEB-INF\classes\PDIServlet.java:312: cannot find symbol
    [javac] symbol : class HttpServletResponse
    [javac] location: class PDIServlet
    [javac] private void moveToNextView( HttpServletRequest request, HttpServletResponse response, String nextView )
    [javac] ^
    [javac] C:\eclipse\workspace\sync4j-modules\pimweb\src\pimweb\WEB-INF\classes\PDIServlet.java:313: cannot find symbol
    [javac] symbol : class ServletException
    [javac] location: class PDIServlet
    [javac] throws ServletException, IOException {
    [javac] ^
    [javac] C:\eclipse\workspace\sync4j-modules\pimweb\src\pimweb\WEB-INF\classes\PDIServlet.java:327: cannot find symbol
    [javac] symbol : class HttpServletRequest
    [javac] location: class PDIServlet
    [javac] private void viewFileSystem(HttpServletRequest request, String typeDemo)
    [javac] ^
    [javac] C:\eclipse\workspace\sync4j-modules\pimweb\src\pimweb\WEB-INF\classes\PDIServlet.java:382: cannot find symbol
    [javac] symbol : class HttpServletRequest
    [javac] location: class PDIServlet
    [javac] private void viewContact(HttpServletRequest request) throws Exception {
    [javac] ^
    [javac] C:\eclipse\workspace\sync4j-modules\pimweb\src\pimweb\WEB-INF\classes\PDIServlet.java:390: cannot find symbol
    [javac] symbol : class ServletException
    [javac] location: class PDIServlet
    [javac] throws ServletException, IOException {
    [javac] ^
    [javac] C:\eclipse\workspace\sync4j-modules\pimweb\src\pimweb\WEB-INF\classes\PDIServlet.java:462: cannot find symbol
    [javac] symbol : class HttpServletRequest
    [javac] location: class PDIServlet
    [javac] private void updateContact(HttpServletRequest request) throws Exception {
    [javac] ^
    [javac] C:\eclipse\workspace\sync4j-modules\pimweb\src\pimweb\WEB-INF\classes\PDIServlet.java:596: cannot find symbol
    [javac] symbol : class HttpServletRequest
    [javac] location: class PDIServlet
    [javac] private void deleteContact(HttpServletRequest request) throws Exception {
    [javac] ^
    [javac] C:\eclipse\workspace\sync4j-modules\pimweb\src\pimweb\WEB-INF\classes\PDIServlet.java:600: cannot find symbol
    [javac] symbol : class HttpServletRequest
    [javac] location: class PDIServlet
    [javac] private File getDBDir(HttpServletRequest req) {
    [javac] ^
    [javac] C:\eclipse\workspace\sync4j-modules\pimweb\src\pimweb\WEB-INF\classes\PDIServlet.java:612: cannot find symbol
    [javac] symbol : class HttpServletRequest
    [javac] location: class PDIServlet
    [javac] private void resetContact(HttpServletRequest request) throws Exception {
    [javac] ^
    [javac] C:\eclipse\workspace\sync4j-modules\pimweb\src\pimweb\WEB-INF\classes\PDIServlet.java:664: cannot find symbol
    [javac] symbol : class ServletException
    [javac] location: class PDIServlet
    [javac] throws ServletException, java.text.ParseException, IOException {
    [javac] ^
    [javac] C:\eclipse\workspace\sync4j-modules\pimweb\src\pimweb\WEB-INF\classes\PDIServlet.java:817: cannot find symbol
    [javac] symbol : class HttpServletRequest
    [javac] location: class PDIServlet
    [javac] private void viewCalendar(HttpServletRequest request) throws Exception {
    [javac] ^
    [javac] C:\eclipse\workspace\sync4j-modules\pimweb\src\pimweb\WEB-INF\classes\PDIServlet.java:829: cannot find symbol
    [javac] symbol : class HttpServletRequest
    [javac] location: class PDIServlet
    [javac] private void updateCalendar(HttpServletRequest request) throws Exception {
    [javac] ^
    [javac] C:\eclipse\workspace\sync4j-modules\pimweb\src\pimweb\WEB-INF\classes\PDIServlet.java:933: cannot find symbol
    [javac] symbol : class HttpServletRequest
    [javac] location: class PDIServlet
    [javac] private void deleteCaledar(HttpServletRequest request) throws Exception {
    [javac] ^
    [javac] C:\eclipse\workspace\sync4j-modules\pimweb\src\pimweb\WEB-INF\classes\PDIServlet.java:945: cannot find symbol
    [javac] symbol : class HttpServletRequest
    [javac] location: class PDIServlet
    [javac] private void resetCalendar(HttpServletRequest request) throws Exception {
    [javac] ^
    [javac] C:\eclipse\workspace\sync4j-modules\pimweb\src\pimweb\WEB-INF\classes\PDIServlet.java:164: cannot find symbol
    [javac] symbol : variable super
    [javac] location: class PDIServlet
    [javac] super.init(config);
    [javac] ^
    [javac] C:\eclipse\workspace\sync4j-modules\pimweb\src\pimweb\WEB-INF\classes\PDIServlet.java:173: cannot find symbol
    [javac] symbol : class ServletException
    [javac] location: class PDIServlet
    [javac] throw new ServletException(msg);
    [javac] ^
    [javac] C:\eclipse\workspace\sync4j-modules\pimweb\src\pimweb\WEB-INF\classes\PDIServlet.java:275: cannot find symbol
    [javac] symbol : class ServletException
    [javac] location: class PDIServlet
    [javac] throw new ServletException("Error in processing the request "
    [javac] ^
    [javac] C:\eclipse\workspace\sync4j-modules\pimweb\src\pimweb\WEB-INF\classes\PDIServlet.java:314: cannot find symbol
    [javac] symbol : class RequestDispatcher
    [javac] location: class PDIServlet
    [javac] RequestDispatcher dispatcher = getServletContext().getRequestDispatcher(nextView);
    [javac] ^
    [javac] C:\eclipse\workspace\sync4j-modules\pimweb\src\pimweb\WEB-INF\classes\PDIServlet.java:314: cannot find symbol
    [javac] symbol : method getServletContext()
    [javac] location: class PDIServlet
    [javac] RequestDispatcher dispatcher = getServletContext().getRequestDispatcher(nextView);
    [javac] ^
    [javac] C:\eclipse\workspace\sync4j-modules\pimweb\src\pimweb\WEB-INF\classes\PDIServlet.java:399: cannot find symbol
    [javac] symbol : class ServletException
    [javac] location: class PDIServlet
    [javac] throw new ServletException("The file " + file.getName() + " cannot be parsed");
    [javac] ^
    [javac] C:\eclipse\workspace\sync4j-modules\pimweb\src\pimweb\WEB-INF\classes\PDIServlet.java:673: cannot find symbol
    [javac] symbol : class ServletException
    [javac] location: class PDIServlet
    [javac] throw new ServletException("The file " + file.getName() + " cannot be parsed");
    [javac] ^
    [javac] 38 errors
    BUILD FAILED: C:\eclipse\workspace\sync4j-modules\pimweb\build\build.xml:82: Compile failed; see the compiler error output for details.
    Total time: 15 seconds
    I am having trouble with this for more than a month now, I anyone can help me, I would be very greatful.
    Kind Regards
    Ria Van Heerden

    Don't use your system classpath - create (say) a lib dir in your project directory, copy j2ee.jar or servlet.jar into it and have the build script reference that. See the ant documentation for path and javac.

  • Using relative path for in file/ftp adapter

    Hi All,
    How to have a relative path for file/ ftp adapter's inbound/outbound operation?
    Example: Consider $ORA_HOME = /home/oracle --> This environment variable can be different on different machines
    i want to drop a file in to $ORA_HOME/folder1/folder2 (Or poll for a file).
    <partnerLinkBinding name="FTP">
    <property name="wsdlLocation">FTP.wsdl</property>
    <property name="out_dir" type="LogicalDirectory">What do i write here???</property>
    <property name="retryInterval">60</property>
    </partnerLinkBinding>
    if i cant configure this in partner link section or in activation agent sction, how else do i achieve this?
    i am using 10.1.3.* version.
    Thanks in advance.
    Roshan.

    You can achive it using the deployment scripts if the directory is changing on the basis of the environment
    If you want to change at run time than you can use the jca properties to set using the variables at runtime.
    Regards,
    Ajay

  • Menu path - for goods receipt for purchase order (MB01)

    Hi
    What is the menu path for Goods receipt for purchase order (MB01) - ECC6.0

    hi
    the path is too deep
    plz just log in ur system and find MB01
    Materials Management >  Purchasing  >  Master Data   > Subsequent Settlement >  Vendor Rebate Arrangements  >  Environment   > Condition/Arrangement  > Environment   >Pricing  > Environment    Value assignment  >  Inventory management  > Goods receipt  >For purchase order   >  MB01 - PO number known
    regards
    KI

  • Dynamic Environment Switching For REPORTS_PATH 11g

    Oracle Fusion Middleware 11.1.1.2.0 with Patch Set 2 (11.1.1.3.0) - Linux
    Dynamic Environment Switching For REPORTS_PATH doesn't work.
    According to documentation B32121-03 (Publishing Reports to the Web with Oracle Reports Services 11g Release 1 (11.1.1) point 8.2.2):
    1. comment REPORTS_PATH in reports.sh
    2. set enviroment settings in rwserver.conf with REPORTS_PATH and NLS_LANG and defaultEnvId (DEV and PRD with defaultEnvId="DEV")
    3. restart reports server
    4. run http://mywls:8888/reports/rwservlet?SERVER=rep_wls_reports_mywls_asinst_1&REPORT=testreport.rdf&USERID=user/user1@mydb&DESFORMAT=html&DESTYPE=cache&ENVID=DEV
    REP-110: File testreport.rdf cannot be opened.
    REP-1070: An error occurred while opening or saving a document.
    REP-0110: File testreport.rdf cannot be opened.
    The same situation for &ENVID=PRD or without ENVID (as I expect it should work as default - DEV enviroment). File testreport.rdf is located in both paths (/u00/DEV/reports and /u00/PRD/reports)
    http://mywls:8888/reports/rwservlet/showenv?server=rep_wls_reports_mywls_asinst_1&authid=oiduser/oiduser1 reads informations from reports.sh file but doesn't read enviroment settings from rwserver.conf (REPORTS_PATH is empty because I comment it in reports.sh).
    Where's my problem? Should I set any other setting(s)?
    Unfortunately note [231051.1] and other referenced doesn't resolve my problem...
    Edited by: user9093781 on 2011-08-23 06:50

    Not sure if this helps at all. I just went through a nightmare trying to get 11g forms/reports to work through the forms builder.
    What I discovered with that is that I indeed had to set the REPORTS_PATH in rwserver.conf... however there were 3 different files that I ended up having to put it in (not sure if had to be in all 3). And perhaps more importantly, there seems to be an order to how you put these xml statements in the rwserver.conf files.
    In my case, it wouldn't work at all until I put it right after the last "<engine id=" statement.
    Mine looks something like this (not that this is a snippet of the file in Windows, for running via Forms/Reports Builder):
    <engine id="rwURLEng" class="oracle.reports.urlengine.URLEngineImpl" maxEngine="1" minEngine="0" engLife="50"/>
    <environment id="default">
         <envVariable value="C:\Oracle\WLS11gR1U4\user_projects\domains\AISworkstation\" name="REPORTS_PATH"/>
         <envVariable value="AMERICAN_AMERICA.WE8ISO8859P1" name="NLS_LANG"/>
         <envVariable value="RRRR-MM-DD" name="NLS_DATE_FORMAT"/>
    </environment>
    <environment id="windev_xxxxxxxx">
    <envVariable name="REPORTS_PATH"
    value="M:\ADS\Dvlprs\xxxxxxx\11g\FormsApps\stage;M:\ADS\Dvlprs\xxxxxxx\11g\FormsApps"/>
    </environment>
    I'm still figuring this all out too (although I did get it working how I need.. just not sure if it is the optimal solution), so I'm not sure how much this will help you. But for sure I can say that there is an order to these XML tags that I'm not so sure was the same (or maybe not enforced) in 10g.
    Good luck

  • Set $PATH for current session in Terminal

    Hello,
    I want to modify the environment variable $PATH for the current terminal session. To modify it in $HOME/.profile (etc) is no option.
    So I created a shell script called envsetup.sh which contains
    ATLAS_HOME=/Applications/Development/atl-plugin-sdk
    PATH=$ATLAS_HOME/bin:$PATH
    export ATLAS_HOME PATH
    When I execute the script, $PATH will only modified while running the script but does not alter it for the current session. But then I copy and paste it into the terminal, $PATH gets modified for the current session. What's wrong with it? On my Linux box, it works ...

    Linux box, it works ...
    This CANNOT work on your Linux box.
    When you run a shell script (Mac OS X, Linux, HP-UX, Solaris, Tru64 UNIX, AIX, etc...), the shell script is runs in a child process. Any environment variables set or changed in that child process get destroyed when that child process ends, which happens as soon as the script ends. The parent process (your shell) will never see those child process environment variables. This has been true since the earliest versions of UNIX that I am aware of, and that goes back to at least '79.
    Alternative approaches. You could create a shell function in your .profile
    envsetup()
    export ATLAS_HOME="/Applications/Development/atl-plugin-sdk"
    export PATH="$ATLAS_HOME/bin:$PATH"
    The next time you login, your .profile will run and you will have a new command "envsetup". When you invoke the command envsetup it will run within the context of your current shell, so those environment variables will be set and visible.
    You could also create an alias that sources your envsetup.sh
    alias envsetup 'source /path/to/envsetup.sh'
    This would give you an easy to call command that would source into the current shell the export commands, as well as provide you with a script that can be sourced into other scripts that happen to need those specific exports.
    Message was edited by: BobHarris

  • Path for data loader

    Hi
    When I try to launch the dataload play user in DEV instance
    i am given error about wrong dbc file being used
    i check it
    its shows a wrong path for my dbc file
    any idea where to change this path
    OS id RHEl 5
    DB 11.2.0.1
    EBS 12.1.2

    Hi
    Is the value of the variable "s_fnd_secure" in the $CONTEXT_FILE the same as the value of $FND_SECURE environment variable?
    It probably is, but it can't hurt to check.
    Have you tried stopping the Apps Web processes (and making sure that there are no process running on the O/S) and then restarting the web server?
    This test might be useful ..
    1) http://server:port/OA_HTML/jsp/fnd/aoljtest.jsp
    2) Click on "Enter AOL/J Setup Test"
    3) Run these two tests
    a. Locate DBC File
    b. Verify DBC Settings
    Regards
    Frank

  • How to set local path for load library

    Hi,
    How do i set local path for native dll as i dont want to set the path in the environment variable.
    can i do like this
    System.loadLibrary("c:\abc");
    Thanks

    I believe that System.load() does exactly the same thing, but accepts fully qualified filenames. So give that a try.
    Failing that.... maybe you can add -Djava.library.path=
    to your command line to explicitely override the path set ?
    regards,
    Owen

  • Path for Content Management System (CMS)?

    Hi All!
    Has anyone configured Authoring environment for learning Solution. Can anyone please provide me the step-by-step details.
    Also can anyone please explain the process of setting up the path for CMS (Content Management System) Address in KM for ECC6.
    Ours is a EP7.0,ECC6.0 (NW2004s) new implementation.
    Thanks
    regards
    Madhu

    Hi,
    "CMS" would in the first place only be a generic term that you can call any product that manages content.
    At SAP I am aware of the following similar terms:
    <b>KM -</b> Java-based CMS, integration framework for 3rd party CMS's and more of SAP NetWeaver, runs in the Portal
    <b>CM -</b> The architectural part of KM that deals with basic content management services. With additional services and TREX this combines to KM.
    <b>DMS -</b> "Document management system", R/3-based system for management of engineering documents, bases on "KPro" in Web AS ABAP, part of mySAP PLM, integrates into KM via repository manager
    <b>KW -</b> KPro-based system for managing SAP-related documentation and training
    <b>Content Server - </b>Object storage location for KPro-managed documents (see DMS)
    <b>KPro -</b> "Knowledge Provider", deep level very generic set of ABAP methods to manage document attachment objects in an R/3 environment
    Hope that clarifies...
    Regards, Karsten

  • Having multiple paths for REPORTS_PATH

    I would like to have 2 directories/paths for REPORTS_PATH (one for production & other for test). My Environment: oracle 10g AS on Solaris.
    1)vi reports.sh (Commented below lines)
    NLS_LANG=ARABIC_KUWAIT.AR8MSWIN1256; export NLS_LANG
    REPORTS_PATH=/appl/ora10gas/liveapp10g:$ORACLE_HOME/reports/templates:$ORACLE_HOME/reports/printers:$ORACLE_HOME/reports/winfont
    2)
    vi repas1.conf
    <environment id="LIVE">
    <envVariable name="NLS_LANG" value="ARABIC_KUWAIT.AR8MSWIN1256"/>
    <envVariable name="REPORTS_PATH" value="/appl/ora10gas/liveapp10g:/appl/ora10gas/ASHome_1/reports/templates:/appl/ora10gas/ASHome_1/reports/printers:/appl/ora10gas/ASHome_1/reports/winfont"/>
    </environment>
    <environment id="TEST">
    <envVariable name="NLS_LANG" value="ARABIC_KUWAIT.AR8MSWIN1256"/>
    <envVariable name="REPORTS_PATH" value="/appl/ora10gas/testapp10g:/appl/ora10gas/ASHome_1/reports/templates:/appl/ora10gas/ASHome_1/reports/printers:/appl/ora10gas/ASHome_1/reports/winfont"/>
    </environment>
    <engine id="rwEng" class="oracle.reports.engine.EngineImpl" initEngine="2" maxEngine="8" minEngine="2" engLife="50" maxIdle="30" callbackTi
    meOut="90000" defaultEnvId="LIVE">
    (3) vi formsweb.cfg
    [appltest]
    envFile=appltest.env
    $cp default.env appltest.env
    $vi appltest.env
    REPORTS_ENVID=TEST
    Still it cannot read from multiple locations. Please can any one guide me on this ?
    Thanks
    Edited by: userR12 on Apr 14, 2012 11:13 AM

    Not sure if this helps at all. I just went through a nightmare trying to get 11g forms/reports to work through the forms builder.
    What I discovered with that is that I indeed had to set the REPORTS_PATH in rwserver.conf... however there were 3 different files that I ended up having to put it in (not sure if had to be in all 3). And perhaps more importantly, there seems to be an order to how you put these xml statements in the rwserver.conf files.
    In my case, it wouldn't work at all until I put it right after the last "<engine id=" statement.
    Mine looks something like this (not that this is a snippet of the file in Windows, for running via Forms/Reports Builder):
    <engine id="rwURLEng" class="oracle.reports.urlengine.URLEngineImpl" maxEngine="1" minEngine="0" engLife="50"/>
    <environment id="default">
         <envVariable value="C:\Oracle\WLS11gR1U4\user_projects\domains\AISworkstation\" name="REPORTS_PATH"/>
         <envVariable value="AMERICAN_AMERICA.WE8ISO8859P1" name="NLS_LANG"/>
         <envVariable value="RRRR-MM-DD" name="NLS_DATE_FORMAT"/>
    </environment>
    <environment id="windev_xxxxxxxx">
    <envVariable name="REPORTS_PATH"
    value="M:\ADS\Dvlprs\xxxxxxx\11g\FormsApps\stage;M:\ADS\Dvlprs\xxxxxxx\11g\FormsApps"/>
    </environment>
    I'm still figuring this all out too (although I did get it working how I need.. just not sure if it is the optimal solution), so I'm not sure how much this will help you. But for sure I can say that there is an order to these XML tags that I'm not so sure was the same (or maybe not enforced) in 10g.
    Good luck

  • How to detect plug-ins path for Photoshop CC?

    Hi
    I downloaded new CC SDK but unfortunatelly in html doc there is not info how to detect a plug-in path for new Photoshop CC. Pdf doc also contains very old info (still for Photoshop 5.0)
    - Could you advice how my installers can detect new Photoshop CC and detect a target place for plug-in installation? Forboth  win and Mac cases.
    - Is CC a pure 64bit windows app or it also can be presented into both C:\Program files and C:\Program files(x86) folders?
    Thanks
    Maxim

    Thank, Bartek, for your responce
    I checked this approach for CS4. In my winRegistry there is not {06870682-6f3c-4b97-9143-f03e85c0 bd3e} key. Should it work only for CC?
    Previously, I checked "HKLM\Software\Adobe\Photohsop" and found all presented PSD versions, like #12 for CS5, #55 for CS5.5 #60 for CS6. And Wow6432Node accordingly
    Will this approach work if I will search for CC the key like "HKLM\Software\Adobe\Photohsop\80\PluginPath" ? (if I had PSD CC I could check it but I dont wan to install it yet for dont break my currect working environment)
    Also, could you advise what it default installation path for Mac? Some like "/Applications/Adobe/Adobe Photoshop CC" ? Will CC have same plug-ins subfolder like previously versions?
    Best regards
    Maxim
    PS. Ilya, it means what I should check bot 32 and 64 bit windows versions and for CC also? 32bit windows version of CC is still available? wot is <version> key for CC? 80? CC? Do you know what is default installation path for CC on Mac?

  • Help for javac task in ant? (urgent!!!!)

    Here I have 5+ folders, ervery has many java source files. And all the java source files in these folders is the same package name, also there may have same file name in different folder. And now I want the javac to compile these files and save the classes file to each own folder.
    folder--fd1
    | |--a1.java (package org.apache.jsp)
    | |--b1.java (package org.apache.jsp)
    | |--c1.java (package org.apache.jsp)
    |---fd2
    | |--a1.java (same file name as in fd1) (package org.apache.jsp)
    | |--b2.java (package org.apache.jsp)
    | |--c2.java (package org.apache.jsp)
    |--
    foler--fd1
    | |--a1.java
    | |--a1.class (also the package is org.apache.jsp, but it store in here.)
    | |--b1.java
    | |--b1.class
    | |--c1.java
    | |--c1.class
    |---fd2
    | |--a1.java (same file name as in fd1)
    | |--a1.class
    | |--b2.java
    | |--b2.class
    | |--c2.java
    | |--c2.class
    |--
    And now I can complete the compile work through 2 steps in up condition, first to compile fd1 folder, and then to compile fd2 folder. For if I just compile with folder(root folder), it will return duplicate class error. How could I do with this?
    below is my javac config in build.xml:
    <target name="compile" >
    <path id="javac.classpath">
    <fileset dir="${tomcat.home}\common\lib">
    <include name="*.jar"/>
    </fileset>
    <fileset dir="${tomcat.home}\server\lib">
    <include name="*.jar"/>
    </fileset>
    <pathelement location="${basedir}\classes" />
    <fileset dir="${basedir}\web\WEB-INF\lib">
    <include name="*.jar"/>
    </fileset>
    </path>
    <javac failonerror="true" debug="off" verbose="2" deprecation="off" classpathref="javac.classpath">
    <src path="${basedir}/folder/fd1"/>
    </javac>
    <javac failonerror="false" debug="off" verbose="2" deprecation="off" classpathref="javac.classpath">
    <src path="${basedir}/folder/fd1"/>
    </javac>
    </target>

    To compile recursively you'll need of these for each directory:
    <target name="compilef1" depends="init">
    <javac srcdir="f1/" destdir="f1/" debug="true" deprecation="true"/>
    </target>
    But, you'll need to set up the build tree correctly before it'll work:
    f1/org/apache/jsp defines the org.apache.jsp package in directory f1, so compiling in f1/ will correctly find other related files.
    Regards,
    Bhaveet

  • Help for javac task in ant?

    Here I have 5+ folders, ervery has many java source files. And all the java source files in these folders is the same package name, also there may have same file name in different folder. And now I want the javac to compile these files and save the classes file to each own folder.
    folder--fd1
    | |--a1.java (package org.apache.jsp)
    | |--b1.java (package org.apache.jsp)
    | |--c1.java (package org.apache.jsp)
    |---fd2
    | |--a1.java (same file name as in fd1) (package org.apache.jsp)
    | |--b2.java (package org.apache.jsp)
    | |--c2.java (package org.apache.jsp)
    |--
    foler--fd1
    | |--a1.java
    | |--a1.class (also the package is org.apache.jsp, but it store in here.)
    | |--b1.java
    | |--b1.class
    | |--c1.java
    | |--c1.class
    |---fd2
    | |--a1.java (same file name as in fd1)
    | |--a1.class
    | |--b2.java
    | |--b2.class
    | |--c2.java
    | |--c2.class
    |--
    And now I can complete the compile work through 2 steps in up condition, first to compile fd1 folder, and then to compile fd2 folder. For if I just compile with folder(root folder), it will return duplicate class error. How could I do with this?
    below is my javac config in build.xml:
    <target name="compile" >
    <path id="javac.classpath">
    <fileset dir="${tomcat.home}\common\lib">
    <include name="*.jar"/>
    </fileset>
    <fileset dir="${tomcat.home}\server\lib">
    <include name="*.jar"/>
    </fileset>
    <pathelement location="${basedir}\classes" />
    <fileset dir="${basedir}\web\WEB-INF\lib">
    <include name="*.jar"/>
    </fileset>
    </path>
    <javac failonerror="true" debug="off" verbose="2" deprecation="off" classpathref="javac.classpath">               
    <src path="${basedir}/folder/fd1"/>                         
    </javac>          
    <javac failonerror="false" debug="off" verbose="2" deprecation="off" classpathref="javac.classpath">               
    <src path="${basedir}/folder/fd1"/>                         
    </javac>
    </target>

    But the problem is that this project may have same
    e files in 5 folders, and another may more than 5,
    like 20+, then also step to compile it, I think it can
    not imagine.As I said, the basic problem is that the class path has to be different for each folder.
    So what I want is just compile once, and is there
    e any solution to escape the duplicate class error.
    And the jikes compile you refered, I don't know how
    w to call this task, for jikes is just a binary
    file.(how to set parameter in <javac/> in build.xml
    used by ant)
    Jikes is a compiler from IBM. If you look in the ant docs it tells you how to set it up.

  • URI path for htmlb.tld

    Dear Experts
    I am woking in NWDS 7.1 and SAP-EP 7.1. In this environment I have to create and deploy a simple jspDynpage with htmlb tags.
    For that I have created a JSPDynpage component and a jsp page. In my jsp page I have witten the taglib directive as
    "<%@ taglib uri= "tagLib" prefix="hbj" %>"
    And in my portalApps.xml I have given the path for htmlb.tld as
    <component-profile>
                    <property name="tagLib" value="/SERVICE/htmlb/taglib/htmlb.tld"/>
    </component-profile>
    The problem is, my application is not getting the tld file from the specified path in portalapps.xml.
    This code is working fine in  NWDS 7.0 and SAP-EP 7.0 environment.
    I am not sure if the path of the htmlb.tld file got changed in SAP-EP 7.1 or not, If so could you please give the correct path?
    Appreciate your response
    Thanks & Regards
    Shanmukha Rao Banisetti.

    hi,
    refer  this link
    /message/6473475#6473475 [original link is broken]
    mean while i check the possible areas to resolve the issue
    bvr

Maybe you are looking for

  • Easy read-only access for noobs

    Lightroom is a great product for the photographer, but for his spouse it's not so easy.  I'd like an easy way to copy an image to the clipboard or export it to iPhoto to be used in other apps like iWeb. My photos are stored on a server.  It should be

  • Thousands of failed login 4625 events, corresponding with 1003 events form Security-SSP

    I've got a server running Server 2012 R2, it's got a few services and such, but lately there have been thousand of failed logins, they seem to happen every 30 minutes and there is about 10 or so at a time. I checked the application logs and there see

  • How to we retrieve database content to a cell table?

    hi all, i am trying to let user to view the database data from Web dynpro through the use of table view in a web page. Was wondering where do i get start if i am using a MS SQL DB. Any beginner tutorial to guide me to that? thx~

  • Salary Administration

    Hi Guys,i am facing a strange problem,suppose i propose a salary increment for a guy from $2000 to $2500 with effect from 1 Apr 2006 with a status proposed and give him another increment of $500 with effect from 1 May with a status of approved , now

  • OUTPUT OF MUSIC AND SPEAKER

    Hi I am using a Iphone 4 and bought a bose head phone but when i connected the same to the device for listening to music the output is not loud, How should i rectify the same. Bought it from a authorised apple store. Kindly help in resolving the same