My Java Dev. System Has No Class

I'm installing j2sdk1.4.2_03 and it's NOT creating a class directory.
Took me a bit of time to figure that out.
Any clues? (This is on a Win XP Home system).

Here is the directory structure that is created by an install of the current SDK on a Windows machine. There is no folder named "classes". (This information is from the Sun installation document, viewable from where you downloaded the SDK
Installed Directory Tree
The Java 2 SDK has the directory structure shown below.
                  j2sdk1.4.2_<version>
                       |
|    |    |    |    |   |     |      |   |
|    |    |    |   bin lib    |    demo  |
|    |    | LICENSE |   |     |         jre
|    | COPYRIGHT              |        __|__
|  README.txt              include    |-----|
readme.html                           bin   lib

Similar Messages

  • Java.lang.system and InputStream

    java.lang.system has 3 fields defined:
    static PrintStream err;
    static InputStream in;
    static PrintStream out;
    As InputStream is a abstract class, can it be used to declare a variable? If so, how to instantiate?
    Thanks

    java.lang.system has 3 fields defined:
    static PrintStream err;
    static InputStream in;
    static PrintStream out;
    As InputStream is a abstract class, can it be used to declare a variable? If so, how to instantiate?You cannot create an object from an abstract class; you can create an object from a sub class of
    that abstract class, and that's exactly what that Stystem.in is refering to, an object from a sub
    class of the abstract class InputStream. This sub class still IS-A Inputstream and all you have
    to know that it behaves exacty as an InputStream.
    Think of it this way -- 'birds' by themselves do not exist; sparrows exist and parrots and penguins exist.
    Still you can point to a penguin and say "hey! That's a bird". And so is the object refered to by the
    System.in variable an InputStream.
    kind regards,
    Jos

  • CE 7.30, CM Services/CTS+: Error when creating DEV system in STMS

    Hi,
    first of all: Happy new year
    This is our scenario:
    CM Services are running under CE 7.30 and CTS+ is running on PI 7.11 system (Support Package 7).
    I followed this guide to configure CTS+ on our PI 7.11 system:
    [http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/b08abb67-0e34-2d10-78b8-e7246ad93fb2|http://www.sdn.sap.com/irj/scn/index?rid=/library/uuid/b08abb67-0e34-2d10-78b8-e7246ad93fb2]
    When we create the DEV system in STMS, we tick the checkbox "Development configuration" and give the URL to the SLD of our CE system (http://sapt62.xxx.com:56200/sld/).
    But when the changes are distributed (I guess that's the time when the CM development configuration is created in the CE system), we get the following error message:
    com.sap.di.cts.config.service.core.exception.DIConfReadNameServerException: "Unable to read name server from landscape directory "http://sapt62.xxx.com:56200/sld" using user "NWDI_CMSADM" [DICONF_READNAMESERVER]: Received response is not a CIM Operation Response! Check "http://sapt62.xxx.com:56200/sld/" is the correct URL for the SLD CIM Object Manager (default is "http://sapt62.xxx.com:56200/sld/cimom") and that user "NWDI_CMSADM" has access to the SLD via http and is not required to change his/her password.
    What can be the reason for that?
    The password for user NWDI_CMSADM is configured correctly on the CTS+ system.
    Could it be that the username/password for NWDI_CMSADM is configured somewhere in SLD?
    After the DEV system has been created we click on the "Development Configuration" button in STMS, the browser pops up with the CM Services and the following message:
    Missing application ID
    Thanks in advance!

    I've seen now that a Development configuration has been created in our CE system.
    But I cannot open it from STMS on our CTS+ system, because it gives me the "Missing application ID" message in the popping up browser.
    Is that normal?
    Another thing I've discovered:
    When I try to use the "Synchronize service" functionality for my CTS Dev Conf to load the missing SCA files, I always get this message when I click on "next":
    Failed to process the request: Request refers to an unknown session
    When I use the "Import service" instead, it gives me a NullPointer exception:
    java.lang.NullPointerException: while trying to invoke the method java.lang.String.hashCode() of an object loaded from field com.sap.engine.session.AbstractSessionHolder.sessionId of an object loaded from local variable 'this'

  • Clients in DEV system

    Dear experts!  We have standard 3-tiers SAP landscape: DEV- QAS - PRD systems in separate servers. My question is about DEV system clients. By now we have 3 clients in DEV system: 100 client (only Customizing, transport allowed, "Golden" client without any data),300 client (Sandbox) and 500 client (ABAP programming, some application data present, transport allowed). Now we're implementing Change Management with SAP Solution Manager. CHaRM supposes only one dev client with "transport allowed". So, we decided that our ABAP-programmers have to develop their programs in 100 client. But they are not very happy to develop programs in the client without any data! I 've read in SAP Help that DEV system has to consist of Golden(Customizing) client, Sandbox and Unit Test. But I can't find out the answer: where ABAP programmers have to work? Please, suggest me the right answer. Thanks.

    If this modification is included in a transport request:
    In STMS you will need to add the transport to the DEV buffer by opening up the DEV buffer first, then choosing Extras -> Other Requests -> Add (input the transport number that contains the client-specific changes)
    Then highlight that transport in the buffer and hit the import button (little truck) and specify the client you need it to go to in the dialog box.
    If the request also needs to go to other clients inside the same system, then choose the options "Leave transport in queue for later import" and "import transport request again" and that will prevent you from having to add the request to the buffer again.

  • Java can't find main class when manifest has certain JARs on it

    I recently wrote an Ant script that builds my application and jars it up, creating a manifest in the process. The manifest specifies the main class and a classpath that mentions other jars that exist in the same directory. Everything works as expected and I am able to run the program using "java -jar abc.jar".
    However, I recently started using classes in my program that come from a jar that should (according to the company I work for) reside in a central location rather than each application having its own copy. So, I changed my build script to reference those shared jars in a common location. But now when I run "java -jar abc.jar", I get a java.lang.ClassNotFoundException: com.example.Main. If I edit the jar's manifest and manually remove the new jars from the classpath, the ClassNotFoundException error goes away (although obviously that causes other problems.) Is there something about adding those new jars to the manifest classpath that would prevent Java from finding my main class? My manifest looks something like this and the last two jars (the ones with the absolute paths) are the jars that seem to be the root of the problem.
    Manifest-Version: 1.0
    Ant-Version: Apache Ant 1.7.0
    Created-By: 1.5.0_04-b05 (Sun Microsystems Inc.)
    Main-Class: com.uprr.app.rsa.Main
    Class-Path: acegi-security-1.0.6.jar commons-codec-1.4.jar commons-htt
    pclient-3.1.jar commons-lang-2.4.jar commons-logging-1.1.1.jar common
    s-pool-1.5.4.jar dom4j-1.6.1.jar jakarta-oro-2.0.8.jar jaxen-1.1.1.ja
    r jibx-run-1.2.1.jar joda-time-1.6.jar jsr173_1.0_api.jar log4j-1.2.1
    5.jar opensaml-1.1.jar spring-2.5.2.jar stax-api-1.0.1.jar wstx-asl-3
    .2.9.jar xmf-3.0.2.jar xmlsec-1.4.1.jar C:\software\tibco\ems\clients
    \java\jms.jar C:\software\tibco\ems\clients\java\tibjms.jarAny ideas?
    Brandon

    I still don't know why giving the absolute classpath entry like that would cause Java to be unable to find the jar's main class, but I did make an interesting discovery. If I give the absolute path without the drive letter, is able to find the main class again. Something like this won't work...
    Class-Path: C:\software\tibco\ems\clients\java\tibjms.jarBut something like this will...
    Class-Path: \software\tibco\ems\clients\java\tibjms.jarBut I'd still like to know why Java doesn't accept drive letters when running on a Windows machine. After all, what if my manifest needed to reference a jar that was on a different drive, like a network drive (since this whole problem came up as a result of shared common jars that need to exist outside of the project.)

  • Has anyone used Oberthur Java Card System?? Is it reliable??

    I've been using Schlumberger java card system, but its so unstable and full of bugs that I want to switch to another provider. I've been considering Oberthur, is it reliable?? Does it work correctly?? Does it work as it should?? Any comments are welcome.
         Gonzalo

    Have you found something that really works??? Please let me know if you have.
    Thankyou.

  • Java and system registry

    where can i learn everything there is to know about a system registry of a computer. any websites that give detailed information on this issue?
    Is there a java class which i can use to access the system registry and make changes to it. for the time being, assume i have admin access to a system.
    i am new to this forum. just joined. so pls xcuse me if i have done anything i am not supposed to or in any way not followed any rules while posting this question.
    thank you
    Edited by: avi.cool on May 28, 2008 6:14 PM

    avi.cool wrote:
    where can i learn everything there is to know about a system registry of a computer.Computers don't have registries. A type of operating system has a registry.
    any websites that give detailed information on this issue?I don't know. What did google suggest?
    Is there a java class which i can use to access the system registry Not really no. You should use Google to search for something. You'll need native code and it will only work on Windows.
    and make changes to it. for the time being, assume i have admin access to a system.Regardless this does not seem like a very good idea for a Java project at all. Why do you feel you want to do this? If you want to make a Windows registry editor you would be better off doing it C# or something.
    i am new to this forum. just joined. so pls xcuse me One thing that is strongly encouraged here is for posters to use real words. So write please and pls, plz or the ever popular plzzzzzzzzzzzz for example.

  • ConnectionException: Name space accessor for the java: name space has not b

    Hi,
    While running JUnti test cases I am getting the following. Can anyone help?
    com.deere.u90.iaf.jdbc.connection.ConnectionException: Name space accessor for the java: name space has not been set. Possible cause is that the user is specifying a java: URL name in a JNDI Context method call but is not running in a J2EE client or server environment.
    IAF JDBC Connection Management Framework exception in JNDI lookup of DataSource.
    Source of configuration data = C:\starteam\JDPS - Software Delivery system\3123_CanDB\sds\WebContent\WEB-INF\classes\config\SDSConnectionManagerLocal.properties
    Dynamic Properties = false
    Property Name Suffix = SDS
    Connection Pooling Enabled = true
    JNDI Provider URL = corbaloc:iiop:wpuds90700.jdnet.deere.com:2811
    DataSource Name = java:comp/env/jdbc/SDSDEVLDataSource
         at com.deere.u90.iaf.jdbc.connection.ConnectionManager.initializeEnvironment(ConnectionManager.java:282)
         at com.deere.u90.iaf.jdbc.connection.ConnectionManager.<init>(ConnectionManager.java:224)
         at sds.view.intranet.servlets.SDSGenericServlet.getConnectionManager(SDSGenericServlet.java:192)
         at junittest.ProgrammedECUAddComponentTest.setUp(ProgrammedECUAddComponentTest.java:75)
         at junit.framework.TestCase.runBare(TestCase.java:125)
         at junit.framework.TestResult$1.protect(TestResult.java:106)
         at junit.framework.TestResult.runProtected(TestResult.java:124)
         at junit.framework.TestResult.run(TestResult.java:109)
         at junit.framework.TestCase.run(TestCase.java:118)
         at junit.framework.TestSuite.runTest(TestSuite.java:208)
         at junit.framework.TestSuite.run(TestSuite.java:203)
         at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.runTests(RemoteTestRunner.java:392)
         at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.run(RemoteTestRunner.java:276)
         at org.eclipse.jdt.internal.junit.runner.RemoteTestRunner.main(RemoteTestRunner.java:167)
    Thanks in advance,
    Dhir

    I also get the same problem, this is very tedious but if you edit the song somehow and re-save it then it will copy. Not sure what the problem is at all, tried contacting Apple about this to no avail.

  • Long time to import SCA into DEV System

    Hi Experts,
    I have done a system upgrade from NWDI 7.1 to NWDI 7.4.
    Now i am having a problem when import SCA in DEV system. This process run forever...
    The log is:
    20140729101501 Info :Starting Step CBS-make at 2014-07-29 10:15:01.0294 -3:00
    20140729101501 Info :wait until CBS queue of buildspace DN1_TRAF2P_D is completely processed, before starting the import
    20140729101501 Info :waiting for CBS queue activity
    20140729101533 Info :build process already running: waiting for another period of 30000 ms
    20140729101603 Info :build process already running: waiting for another period of 30000 ms
    20140729101633 Info :build process already running: waiting for another period of 30000 ms
    20140729101704 Info :build process already running: waiting for another period of 30000 ms
    20140729101734 Info :build process already running: waiting for another period of 30000 ms
    20140729101804 Info :build process already running: waiting for another period of 30000 ms
    20140729101834 Info :build process already running: waiting for another period of 30000 ms
    20140729101904 Info :build process already running: waiting for another period of 30000 ms
    20140729101934 Info :build process already running: waiting for another period of 30000 ms
    20140729113122 Info :build process already running: waiting for another period of 30000 ms
    20140729113152 Info :build process already running: waiting for another period of 30000 ms
    20140729113152 Fatal :build processing for buildspace: DN1_TRAF2P_D is not enabled, cannot continue without NWDI administrator action
    20140729113152 Info :Step CBS-make ended with result 'fatal error' ,stopping execution at 2014-07-29 11:31:52.0295 -3:00
    I have found a lot of threads here, but no one help me.
    The parameter idleStart is configured to false.
    I try to keep BUILD_TOOL_JDK_HOME and JDK_HOME_PATHS as default, and try to set to java 6.
    The build variant in CMS was configured too.
    After the changes i restated the CBS service and try to import again in DEV system. But nothing happens.
    If i import just one or all the components, it get a long time and catch the error showed above.
    I have restarted the server a lot of time too.
    Can someone have any idea how to fiz it?
    Best Regards
    Marcos Brandão

    Hi Marcos,
    changing the domain user might have consequences, please take a look at the note:
    #896427 - NWDI Admin User/Password update
    What I suggest in short is this:
    1. restart the server
    2. once the server is up and running, re-save the track in question in cms webui
    3. restore system state on dev and cons tabs of cms webui
    4. trigger first re-import of SCs on dev tab (import SCs one by one, and do not care of broken DCs until everything is imported).
    When I mean one by one I mean that you select an SC on developent tab of the cms webui, press Import, wait what happens to it, and if it failed, let me know. If not, then select the next SC for import.
    5. wait until it finishes (depending on the size of your development it can be hours, even up to 4 hours).
    If you still got long import and broken DCs, then let me know, this case also take a look at the
    1. Import logs which is usually at /usr/sap/JTrans/CMS/log/*
    Notice, this can be different in your case, check the location of the transport folder under the CMS WebUI (/devinf – Landscape Configurator – Domain Data Tab)
    2. the latest defaultTrace you find at
    -...\j2ee\cluster\server<n>\log\defaultTrace.<n>.trc
    I also send you another guide for Broken DCs, here you go:
    (NWDI)(CBS) the CBS-make log and-or CBS Web UI report broken DCs - Technology Troubleshooting Guide - SCN Wiki
    Regards,
    Ervin
    Message was edited by: Ervin Szolke

  • How to check  wether local system has blocked by firewall  from program.

    i am a user in my LAN area. i don't have admin rights. in our LAN few system has blocked by firewall others not blocked .
    how can i check wether local host is blocked or not by firewall from java network program ?.

    You can execute some kind of firewall util (if any) and parse output to receive configuration and check is address blocked or no. But if you have no admin rights - it will not help you.
    Actually there is no clear way to detect was packet blocked by FW or just lost somethere.

  • HT1926 My iTunes installer was interrupted & now it's telling me "Your system has not been modified.  To complete these operations at a later time, please run the installer again". The only problem is, I've tried to run it about six or seven times.  Can s

    My iTunes installer was interrupted &amp; now it's telling me "Your system has not been modified.  To complete these operations at a later time, please run the installer again". The only problem is, I've tried to run it about six or seven times.

    I'm not sure anyone here knows more about the Java plugin than you do...
    Were you starting the control panel from disk as administrator because it didn't work starting it through the Start menu (if you have Control Panel set to View by Category, the Java control panel is under "Programs").

  • Error in import-check of ESS SC in dev system CMS

    Hi all,
    Im facing some error msgs while performing an import-check of the ESS SC in Dev system of cms. i had no probs in importing other scs for sap-jtech, pcui_gp and others. i downladed ESS 600 SP 10 frm servicemktplace. however the file downloads as a .zip file. after placing this zip file in the cms\inbox folder, i was unable to view the sc in cms/check-iin..i tried renaming the file to .sca. i was then able to view the SC in check-in..my qn is what is the right procedure to convert the .zip -->.sca? i did not encounter this issue when downloading the other files like pcui_gp, they saved as .sca files...would really appreciate any inputs on this. Thanks!
    the error msg is as follows:
    20080206162200 Info   :Starting Step Repository-check at 2008-02-06 16:22:00.0203 -5:00
    20080206162200 Info   :Component:sap.com/SAP_ESS
    20080206162200 Info   :Version  :MAIN_ERP05VAL_C.20070718120624
    20080206162200 Info   :1. propagation request is of type TCSSoftwareComponent
    20080206162200 Info   :propagatable:4dbb761a352711dc848f0030057116fe not known in
    repository:http://sapportal7:50000/dtr
    20080206162200 Info   :Import propagatable:4dbb761a352711dc848f0030057116fe from archive:SAP_ESS into
    repository:http://sapportal7:50000/dtr
    20080206162200 Detail :start of importing propagatable:4dbb761a352711dc848f0030057116fe to
    repository:http://sapportal7:50000/dtr
    20080206164221 Detail :start of importing propagatable:4dbb761a352711dc848f0030057116fe to
    repository:http://sapportal7:50000/dtr
    20080206164221 Fatal  :VcmFailure received
    20080206164221 Fatal  :caused by Exception:com.tssap.dtr.client.lib.deltavlib.CommunicationException:
    Communication error [cause: number of bytes written to stream less than specified limit.]:Communication error [cause: number of bytes written to stream less than specified limit.]
    com.tssap.dtr.client.lib.deltavlib.CommunicationException: Communication error [cause: number of bytes written to stream less than specified limit.]
    java.io.IOException: number of bytes written to stream less than specified limit.
         at
    com.sap.dtr.client.lib.protocol.streams.ChunkedOutputStream.disableLimit(ChunkedOutputStream.java:473)
    prachi

    Hi Prachi,
    Instead of renaming the zip file to sca, try unzipping the file. It might contain the SCA you are looking for.
    Regards,
    Sangeeta

  • Configuring Outbound and Inbound SMTP mails with SUN Java messaging system

    hi all,
    i am new to Solaris i have deployed SUN java comuunication Suite. How do i configure my messaging server to send outgoing mails through existing gateway and recieve inbound mails from the same gateway?
    Currently my server is connected to the internet directly i am able to send a mail to an external domain for example gmail. Can anyone help me out in understanding the default functioning of external mail routing and how do i point to a gateway?
    Thanks,
    Zafrul

    Hi,
    zkhan wrote:
    i am new to Solaris i have deployed SUN java comuunication Suite. Welcome. Some good resources you should look at are the following:
    http://www.sun.com/bigadmin/hubs/comms/overview/index.jsp
    http://msg.wikidoc.info/
    http://blogs.sun.com/factotum/
    How do i configure my messaging server to send outgoing mails through existing gateway and recieve inbound mails from the same gateway?There is two steps to this.
    To configure outgoing emails to be relayed through a gateway, you need to modify the <msg_base>/config/imta.cnf MTA configuration file and add "deamon <gateway hostname>" to your tcp_local channel configuration e.g.
    ! tcp_local
    tcp_local smtp mx single_sys remotehost inner switchchannel identnonenumeric subdirs 20 maxjobs 7
    pool SMTP_POOL maytlsserver maysaslserver saslswitchchannel tcp_auth missingrecipientpolicy 0
    loopcheck daemon mygateway.com
    tcp-daemonTo allow the gateway system to send emails to your host unconditionally, modify the <msg_base>/config/mappings MTA configuration fail and add the gateway's IP address to the INTERNAL_IP mapping table e.g. (where the gateway has an IP of 1.2.3.4 and your system has an IP of 192.168.1.20)
    INTERNAL_IP
      $(192.168.1.20/24)  $Y
      $(1.2.3.4/32)            $Y
      127.0.0.1  $Y
      *  $NOnce you have done this you will need to rebuild the MTA configuration cache and restart the MTA processes.
    <msg_base>/sbin/imsimta cnbuild
    <msg_base>/sbin/imsimta restart
    Currently my server is connected to the internet directly i am able to send a mail to an external domain for example gmail. Can anyone help me out in understanding the default functioning of external mail routing and how do i point to a gateway?For the understanding, you will need to read-up the manuals. Messaging server is a flexible and powerful product for sending/processing emails, but with that flexibility comes complexity. I suggest you start by reading the Messaging Server Administration Guide:
    http://docs.sun.com/app/docs/doc/819-4428
    Regards,
    Shane.

  • Java stored procedures and referencing classes

    We are referencing to some classes/libraries which are not present in the database. In normal java world, you specify the libraries/classes needed to run your piece of code in the CLASSPATH and that forms part of your complete code.
    Can java stored procedures in the database refer to libraries or class files it requires on the file system rather than the database? Is it possible to make this happen?
    Thanks

    pshiva,
    Posting the same question to multiple forums usually doesn't increase your chances of getting an answer, and it just frustrates those wishing to answer you with the result being that any future questions you post may have less chance of being answered -- because of your uncourteous, initial behaviour.
    I have answered your other thread:
    java stored procedures and referencing classes
    In my opinion, that forum (the Database JVM forum) is the most appropriate for your question.
    Good Luck,
    Avi.

  • How to import corrections in to DEV system ?

    Hi All,
    I have to apply the corrections for FI module to my DEV system.
    FI Consultant has downloaded that SAP NOTE in to DEV system thru SNOTE, and its status = can be implemented.
    NOTE = 1015410 has SAR files as attachements and I have downloaded the corrections [SAR files].
    The correctin is for = "Additional Field added for withholding tax codes"
    It has 3 SAR files which contains some new Screens and Screen Elements introduced in the Program = J_1IEWT_PROVISIONS.
    In the Note = 1015410, it is mentioned that " to apply SAR files, refer to Related notes=  480180,13719. "
    Note 480180 says that if it is a correction, " you must follow the installation instructions in the long text of the
    respective SAP note in order to implement the correction in your system ".
    In the NOTE - 13719, it says we need to open the ftp connection to sapservX [userid/pswd=sapservX] and download the data,
    cofiles ?
    Iam not sure how we can do this.
    And i have Uncared the 3 SAR files and i got the following files :
    k003805.CVD - cofile
    R003805.CVD - datafile
    K087494.P7D
    R087494.P7D
    K906169.Q3A
    R906169.Q3A
    In the R/3 DEV server, in /usr/sap/trans,i have a old SAR file = TDS_SAPScript_470.SAR. It had 2 files in it =
    K209581.P6B - cofile
    R209581.P6B - data file
    And K209581.P6B is found in /usr/sap/trans/cofiles/
    But R209581.P6B is not found.
    Does this means that i have to copy the files of the SAR files to /usr/sap/trans/cofiles/ and /usr/sap/trans/data/ ???
    Do i have to copy these files to /usr/sap/trans, and then " tp ADDTOBUFFER ","tp Import ".
    And if i go to correction instruction in the SAP NOTE, i have a Transport Request = CVDK003805 in it. Now what do i have to
    do with that ?
    I have access to OS [hp unix] as root user and also i got access SAP in 000 client.
    Please guide me how i can apply these corrections.
    sap - mySAP ERP ECC 5.0
    Kernal - 640 patch # - 155
    Basis - Package level - 19.
    db - ora 10.2g
    os - hp ux 11.23b ia64
    FI component = SAP_APPL
    LEVEL - 14
    RELEASE - 500
    Regards,
    Shyamsundar G C

    Hi Hariprasad,
    i copied the files to cofiles and data files in my DEV system.
    i tried to do this, iam getting err msg...wht shud i check now.
    tp ADDTOBUFFER K087494.CVD GRD pf=/usr/sap/trans/bin/TP_DOMAIN_GRD.PFL
    ERROR: Parameter for transport request (K003805.CVD) is invalid.
           Either use "ALL" as transport request or
           make sure the fourth character of the transport request is a 'K'.
    ERROR: : transport request parameter is invalid [tp.c,10528]
    tp returncode summary:
    TOOLS: Highest return code of single steps was: 0
    ERRORS: Highest tp internal error was: 0203
    tp finished with return code: 203
    meaning:
      wrong syntax in tp call
    tp ADDTOBUFFER ALL GRD pf=/usr/sap/trans/bin/TP_DOMAIN_GRD.PFL
    ERRORS: Highest tp internal error was: 0247
    tp finished with return code: 247
    meaning:
      addtobuffer has problems with data- and/or cofile
    If i go the STMS_IMPORT in my DEV system, i can see that there is  TR - P6DK105630 which has been imported to my DEV system from a system = P6D. Plz let me know how it is done ?
    Also i have a cofile which i got after UNCAR, which has the same number as that of an existing one....how to copy it now with out overwriting ?

Maybe you are looking for

  • Mount partition in solaris 11

    hi , I have an unallocated space 11 gb in solaris 11. Using GParted i have created an extended partition then make an logical partition of it. It make an ntfs file system by default. Now my question is where i see this partition i have use the mount

  • Problem adding custom area to ESS

    Hi All, I have created an Area in SPRO and done all the sub area, service assignment with the PCD page path. When I click the link on the Portal I get an exception saying Fatal error: Area ZNEWAREA does not exist In the XssMenu iview, when I change t

  • Satellite Pro A300 - I get the "Windows search" if I left click any folder

    I have just purchased a Satellite Pro A300 and downgraded it to Windows XP SP3. When I left-click any folder icon on my hard drive I get the 'Windows Search' window displayed instead of opening the folder. When I right-click any folder icon, the firs

  • Taxes in pricing procedure

    Hello friends, My client requirement is in invoice he wants to see taxes seperately .for example total line items value is 10,000.00 On this amount he wants to see VAT , TOT , service tax, octroi tax seperately. suppose total amount of all line items

  • Visual Basic making pdf with hyperlink Acrobat 9 / Office 2003

    hello, I try to make document with VBA and I can't use the same references. AdobePdfMakerForOffice seems don't work since Acrobat 6 ( an object seems to have disappear) I have try with pdfmakerapilib an have an error (-10) If someone has an Idea for