System Setup (OS, Drives)

Hello all, and thanks in advance for your time. I am trying to prepare for Leopards arrival the best way I can and I need some input. I have (bare with me) :
System-
G5 Dual 2Ghz, 3GB RAM (not really pertaining to this but thought it may impact something)
Harddrives-
Maxtor MaxLine Plus 2 250GB Internal
7200RPM
Maxtor DiamondMax 10 160GB Internal
7200RPM
Lacie Mini 160GB FireWire400
7200RPM
Maxtor 1Touch 3 300 GB USB 2.0
7200RPM
Maxtor MyBook Pro 250GB FireWire 800
7200RPM
/// My Question is this: What should I use for what? I need 1 drive for Tiger, 1 for Leopard. A drive for both Leopard and Tiger Backups. And a drive for my files (3rd party apps, media etc-so as to not slow down the system drives). I'm just wondering what drive would serve what purpose the best as far as access times etc. I am open to any partition schemes or raid etc. option, whatever you bring to the table leaves me better off than before so throw your scenarios out, please. Pretty much, if you had leopard/tiger, and my drives, how would you arrange them? Thanks again, -Patiently Waiting

And all these drives are blank?
Your Firewire 800 will be your fastest for access speed and read and write, so if speed is important to you for backup, use it there.
Don't forget you can keep more than one OS on a drive as long as it is partitioned.
Just a couple of thoughts, I can barely keep my own scheme straight.
What I plan to do is to use a blank partition on one of my drives to install Leopard and put it through it paces. If it performs as well as Tiger did, it will be cloned onto my main drive in about 3 days
-mj
[email protected]

Similar Messages

  • T4850CT: Error message: "HDC Error - Insert System Disk in Drive"

    Hi there...
    Can anyone help? I think I know what the error message means...but don't quite know how to fix it. Any Ideas? I am currently trying to find a system disk online - for this old laptop
    On startup...the laptop counts up its memory and displays this error message:
    HDC Error
    Insert system disk in drive
    I can access the Setup System and that seems to be about all!!? On the QuickRead Status Bar...it recognises/activates the Hard Drive and the Floppy Drive.
    Any help is totally appreciated ([email protected])
    Message was edited by: anjasomething

    Hello
    I have seen this problem when there is not enough power coming from the Ac adapter or when the machine is being used with a battery only and the battery is too weak.
    Hope this help
    Bye

  • Setup and driver q

    I've been reading the tutorial
    I'm afraid it has confused me much more.
    First I'm not sure if I have the JDBC API. There are many files in my Sun folder named jdbc and some html files . How do I know if I have the proper files?
    Second, If I don't, where do I get them? Whenever I navigate Sun's website I get lost every time.
    The tutorial also tells me I must have the proper drivers. But which ones do I need? where do I get them? how do I install them with the command they give? Do I make a .java file first or do I install it straight from the dos cmd?
    Also, where is the coffeebreak db that is mentioned?
    I'm very familiar with the SQL language and connectivity via Sql Server, MySql
    Php, Asp etc... I'm by no means new to the database or programming world but java has confused me. However I really enjoy it, it is different and intruiging not to mention I love a challenge.
    Can anyone baby-step me throught this setup so I can finally write a few select statements?

    Duffymo;
    I have a file called: jdbcodbc.dll is that the one?No, a .dll is a Windows dynamic link library.
    The JDBC-ODBC bridge driver is part of the Java JDK that you downloaded. It's in the rt.jar that's part of your JDK, and the name of the class is sun.jdbc.odbc.JdbcOdbcDriver.
    it is the only one with an odbc reference. Should I
    download more from the link you gave me? I'm trying
    to be careful because I don't want to mess anything
    up.No, you don't need to download anything else. If you wish to connect to Microsoft Access, the way they did in the tutorial, all you need is sun.jdbc.odbc.JdbcOdbcDriver.
    Here's a class that I wrote that might be some help. Feel free to study it, use it, or throw it away if you decide you don't care for it:
    import java.sql.*;
    import java.util.*;
    * Command line app that allows a user to connect with a database and
    * execute any valid SQL against it
    public class DataConnection
        public static final String DEFAULT_DRIVER   = "sun.jdbc.odbc.JdbcOdbcDriver";
        public static final String DEFAULT_URL      = "jdbc:odbc:DRIVER={Microsoft Access Driver (*.mdb)};DBQ=c:\\Edu\\Java\\Forum\\DataConnection.mdb";
        public static final String DEFAULT_USERNAME = "admin";
        public static final String DEFAULT_PASSWORD = "";
        public static final String DEFAULT_DRIVER   = "com.mysql.jdbc.Driver";
        public static final String DEFAULT_URL      = "jdbc:mysql://localhost:3306/hibernate";
        public static final String DEFAULT_USERNAME = "admin";
        public static final String DEFAULT_PASSWORD = "";
        /** Database connection */
        private Connection connection;
         * Driver for the DataConnection
         * @param command line arguments
         * <ol start='0'>
         * <li>SQL query string</li>
         * <li>JDBC driver class</li>
         * <li>database URL</li>
         * <li>username</li>
         * <li>password</li>
         * </ol>
        public static void main(String [] args)
            DataConnection db = null;
            try
                if (args.length > 0)
                    String sql      = args[0];
                    String driver   = ((args.length > 1) ? args[1] : DEFAULT_DRIVER);
                    String url      = ((args.length > 2) ? args[2] : DEFAULT_URL);
                    String username = ((args.length > 3) ? args[3] : DEFAULT_USERNAME);
                    String password = ((args.length > 4) ? args[4] : DEFAULT_PASSWORD);
                    System.out.println("sql     : " + sql);
                    System.out.println("driver  : " + driver);
                    System.out.println("url     : " + url);
                    System.out.println("username: " + username);
                    System.out.println("password: " + password);
                    db = new DataConnection(driver, url, username, password);
                    System.out.println("Connection established");
                    Object result = db.executeSQL(sql);
                    System.out.println(result);
                else
                    System.out.println("Usage: db.DataConnection <sql> <driver> <url> <username> <password>");
            catch (SQLException e)
                System.err.println("SQL error: " + e.getErrorCode());
                System.err.println("SQL state: " + e.getSQLState());
                e.printStackTrace(System.err);
            catch (Exception e)
                e.printStackTrace(System.err);
            finally
                if (db != null)
                    db.close();
                db = null;
         * Create a DataConnection
         * @throws SQLException if the database connection fails
         * @throws ClassNotFoundException if the driver class can't be loaded
        public DataConnection() throws SQLException,ClassNotFoundException
            this(DEFAULT_DRIVER, DEFAULT_URL, DEFAULT_USERNAME, DEFAULT_PASSWORD);
         * Create a DataConnection
         * @throws SQLException if the database connection fails
         * @throws ClassNotFoundException if the driver class can't be loaded
        public DataConnection(final String driver,
                              final String url,
                              final String username,
                              final String password)
            throws SQLException,ClassNotFoundException
            Class.forName(driver);
            this.connection = DriverManager.getConnection(url, username, password);
         * Get Driver properties
         * @param database URL
         * @return list of driver properties
         * @throws SQLException if the query fails
        public List getDriverProperties(final String url)
            throws SQLException
            List driverProperties   = new ArrayList();
            Driver driver           = DriverManager.getDriver(url);
            if (driver != null)
                DriverPropertyInfo[] info = driver.getPropertyInfo(url, null);
                if (info != null)
                    driverProperties    = Arrays.asList(info);
            return driverProperties;
         * Clean up the connection
        public void close()
            close(this.connection);
         * Execute ANY SQL statement
         * @param SQL statement to execute
         * @returns list of row values if a ResultSet is returned,
         * OR an altered row count object if not
         * @throws SQLException if the query fails
        public Object executeSQL(final String sql) throws SQLException
            Object returnValue;
            Statement statement = null;
            ResultSet rs = null;
            try
                statement = this.connection.createStatement();
                boolean hasResultSet    = statement.execute(sql);
                if (hasResultSet)
                    rs                      = statement.getResultSet();
                    ResultSetMetaData meta  = rs.getMetaData();
                    int numColumns          = meta.getColumnCount();
                    List rows               = new ArrayList();
                    while (rs.next())
                        Map thisRow = new LinkedHashMap();
                        for (int i = 1; i <= numColumns; ++i)
                            String columnName   = meta.getColumnName(i);
                            Object value        = rs.getObject(columnName);
                            thisRow.put(columnName, value);
                        rows.add(thisRow);
                    returnValue = rows;
            else
                int updateCount = statement.getUpdateCount();
                returnValue     = new Integer(updateCount);
            finally
                close(rs);
                close(statement);
            return returnValue;
         * Close a database connection
         * @param connection to close
        public static final void close(Connection connection)
            try
                if (connection != null)
                    connection.close();
                    connection = null;
            catch (SQLException e)
                e.printStackTrace();
         * Close a statement
         * @param statement to close
        public static final void close(Statement statement)
            try
                if (statement != null)
                    statement.close();
                    statement = null;
            catch (SQLException e)
                e.printStackTrace();
         * Close a result set
         * @param rs to close
        public static final void close(ResultSet rs)
            try
                if (rs != null)
                    rs.close();
                    rs = null;
            catch (SQLException e)
                e.printStackTrace();
         * Close a database connection and statement
         * @param connection to close
         * @param statement to close
        public static final void close(Connection connection, Statement statement)
            close(statement);
            close(connection);
         * Close a database connection, statement, and result set
         * @param connection to close
         * @param statement to close
         * @param rs to close
        public static final void close(Connection connection,
                                       Statement statement,
                                       ResultSet rs)
            close(rs);
            close(statement);
            close(connection);
    }%

  • Aperture system setups?

    Hi all,
    I'm interested in finding out what kind of system setup's Pro Photographers use for there editing. I'm about to change my system and I'm looking at spending more time on photography and would be interested in tailoring my system to photography use.
    Current System:
    iMac 2.0 Ghz, 4 GB Ram, with extra 20" Cinema Display
    Thanks,
    Greg

    Hi Greg,
    Well, no one bit on this topic so I feel compelled to jump in.... Here's my Aperture setup:
    • MacPro with two, 2.66 dual core processors.
    • OS: 10.5.1
    • Aperture 1.5.6
    • Nine gb RAM.
    • Thirty-inch Apple Cinema Display.
    • NVIDIA GeForce 7300 GT video card. This is Apple's stock video card.
    • Four, 750 gb Seagate internal drives. Two are raided together using Disk Utility. This is my storage area for Aperture files. Another is used for the OS while the fourth drive is used for backup files.
    • Two external Firewire drives for daily backup of Aperture vaults. I do not use Time Machine to back up files on my computer.
    My system runs Aperture quite well as it should with this much hardware being thrown at it. I noticed some slowdown after I added the 30-inch ACD. I originally built my system with a 20-inch ACD and Aperture ran really fast with that. I suspect the NVIDIA card I have may be somewhat lacking when supporting the 30-inch monitor. The only time I really noticed less than fluid behavior from Aperture on my system is when Aperture is processing a large number of files. Let's say I'm importing files from a hard drive. If I try to edit files when this is happening Aperture will become sluggish. My solution is to give Aperture a few minutes to finish building the previews before I start editing. No problems with slow performance then.
    I shoot RAW files exclusively with a Nikon D200. I am planning the purchase a D300 the day Apple provides support for the file format in Aperture.
    On a final note: I'm always amazed at how little time I have to spend editing and organizing photos in Aperture. I spend far more time shooting now than messing around with the files on the computer.

  • Tecra 8000: Can't boot - Message "Insert system disc in drive" comes on

    I have a Tecra 8000 that I have not used for about two months. Now when I try to boot up the message 'Insert system disc in drive' comes on to the screen. I have tried three system disks but they have not been accepted and the same message appears. I have been in to the 'setup' and changed the priorities and tried FDD, HDD, CD-ROM and the same message appears each time. Is it possible that the internal 'backup battery' is totally discharged?

    Hi Alan
    maybe it doesn't sound so cool in your current situation, but there is actually something really good with the Toshiba's. It doesn't matter how bad the CMOS-battery becomes or even if you remove it. The system will always automatically detect the installed HDD (as long as it is working and within the specs) and set it up for you.
    That means in your case that there might be something that is physically defective. But before accepting that, please try to use the Boot device selection menu.
    Please grab a diskette or CD that you KNOW are bootable (best by testing on another system).
    Power on the Tecra 8000 and while seeing the TOSHIBA-logo, press F2 repeatedly. You should now get a textlist with bootable devices to choose from.
    Pick the one that you have a bootable media in (f.ex. the recovery CD's in the CD or a clean Windows media).
    Good luck
    Tom

  • How to do initialization for new system setup?

    Hi, Experts:
    I need your help! Can you tell me your suggestion please?
    This is a new system setup. We are about to test on the Initialization/Delta process.
    The data source is 2LIS_13_VDITM 7.0 version. The test is on the PSA.
    I have done an EARLY Initialization. On R3 system, if a billing record is canceled, we are able to capture it in the RSA7. Then, we did a delta load which were successfully tranferred to BW system.
    However, if I created a new order and push it to Billing, I am NOT able to find it on RSA7 of the Delta queue.
    That would mean, the delta queue could not capture any new billing records.
    Then, besides the early init, we tried to do an Initialization without Data Transfer in the hope that this could resolve the new records issue, it doesn't allow to do it, saying "no 2 initialization".
    What is the right way to do initialization??
    Thanks guys!!

    Hello Sylvia,
    Changing it to new delta mode need not clean out everything in BW.
    its a change in R/3 side on how delta records will be pushed.
    Delta queue will remain the same in R/3.
    But since you have already missed some records and you are not sure which one.
    Also the existing records in the delta queue are not the correct one as these are not bringing new records according to you.
    So I will suggest you after you have done the changes to queued delta....do a fresh start.
    Delete the data from the DSO.
    1)delete the existing and do a new init without data transfer so that a new delta queue is created.
    2)Fill the set up tables first and start the full repair loads to DSO.
    3)once all the history is loaded then you can schedule the delta.
    Thanks
    Ajeet

  • My screen says boot device not found. Please install an operating system on hard drive,

    My screen says boot device not found. Please install an operating system on hard drive. What could have caused this problem? Help!!!!!

    Hi,
    Can you post back with the following.
    1.  The full Model No. and Product No. of the notebook - see Here for a further explanation.
    2.  The full version of the operating system you are using ( ie Windows 7 32bit ).
    3.  Shut down the notebook.  Tap away at f10 as you start the notebook to enter the bios menu.  Under the Advanced or Diagnostic tab you should find the facility to run a test on the Hard Drive.  Post back with the details of any error messages.
    Regards,
    DP-K
    ****Click the White thumb to say thanks****
    ****Please mark Accept As Solution if it solves your problem****
    ****I don't work for HP****
    Microsoft MVP - Windows Experience

  • Third party dropshipment process and system setup

    Hi gentlemen,
    I have a few question to check with you.
    1 - What is the difference between Third Party Shipment, and Third Party Drop Shipment in term of process?
    2 - What is the system setup requirement for Third Party Drop shipment (I know TAS is require for 3rd party, but what about 3rd party drop shipment)?
    thanks
    tuff

    Hi Tuffy,
    I did'nt quite get the context of what you mean by third party in this case. Is it a third party delivery which uses TAS item cat on the sales order.
    Or we have scenarios where order is done by for example my company but there is an external ware house which receives my dleivery number probably through EDI who does the shipment and confirms back to SAP to trigger PGI.
    Drop shipment in general business terms is used reduce the cost of inventory stocking. Like I just take orders and book it to a company, they do the shipment to the address I mention ( this goes as part of ship to party address ). Since the company does not from who all I can book orders they just maintain a drop ship customer.
    You might find the below blog useful:
    [One Time Ship To Party|/people/sadhu.kishore2/blog/2008/12/12/working-with-one-time-ship-to-party]
    Regards
    Sadhu Kishore

  • How to create a system recovery USB drive?

    My U845-S406 crashes every 15 minutes with a BSOD referencing iastor.sys.
    Multiple diagnostics say it is all good.
    Multiple virus softwares say it is clean.
    It crashes even quicker in safe mode.
    I have the latest Toshiba raid drivers, but updated to a more recent Intel set.  The error changes to iastora.sys, and goes back to iastor.sys when I switch back to the Toshiba drivers.
    I booted holding down 0, and told it to restore; but it promptly crashes.
    I made a W7 disk and tried to load it, but it promptly crashes.
    As a last resort before throwing the computer out,  I want to create a system recovery USB drive, format the harddrive and try recovering from the USB; but I don't have the Toshiba Recovery Media Creator (or any Toshiba software at all...)  I downloaded a copy and ran it, but it says I don't have a HDD Recovery Area.
    I know I have one because 1) I can access it by hold down 0, and 2)Partition Wizard showes it.
    So, how can I create a system recover USB drive (or make Recovery Media Creator find the HDD recovery Area...)
    Interestingly, the other day it spent 90 minutes installing a W7 update without a problem, but crashed immediately when done.  Maybe that means something.

    Satellite U845-S406
    Downloads here.
    Please zip up a few of the corresponding *.dmp files from the C:\Windows\Minidump folder and attach them to your reply.
    So the procedure in the section Creating recovery media (p. 53 in the User's Guide) doesn't work? Exactly where does it go wrong?
       Satellite/Satellite Pro U800W Series User’s Guide
    -Jerry

  • SSD for system directory (boot drive)?

    I'm curious why anyone would recommend an ssd drive for the system directory (boot drive). From what I read about ssd's, if there is a lot of (re)writing to the drive, the performance will degrade with time due to the way ssd's (re)allocate free space. Given that the paging space (backing store) would be on that drive (unless you go out of your way to place it elsewhere) and also the system caches, wouldn't you expect the performance to degrade with time? Yes, you can stick a bunch of memory on the machine and that may reduce paging. But still, over time, I would still expect the performance to still degrade.
    So explain to me what's the _long term_ benefit of a ssd drive for your boot device?

    Most people when it comes to storage know about StorageReview.
    That's you're assumption.
    I've only started researching this question since last week. There's nothing at that site that specifically answers it so I wouldn't be attracted there.
    And because I just posted on Thursday a couple long replies on
    SSD in another thread with a link, that I would hope was picked
    up and read by others
    A search of "storagereview" yields a hit on one of your posts On Sept 4 ("Are SSD harddrives faster ?"), four days before I even joined these forums! Searches here didn't yield anything and I wasn't about to wade through 200 pages of titles if searches didn't yield anything. And I don't know you from Adam so there would be no reason to look for your posts.
    Sheesh

  • T8000 not booting: Insert system disk in drive

    I hope anybody can help me with the following problem on my T8000 (W2K)
    From one day to another I was not able to start/boot the system. Immediately it comes with the message:
    Insert system disk in drive
    Press any key when ready
    I replaced twice the HD but it did not help.
    Could anybody assist me with this issue?
    Thanks and regards,
    rjanagac

    Hi Rodrigo
    Its not easy to say why you unit cant boot. It will be interesting to know some more details. Did you try to make some changes in BIOS Boot Priority? Did you set right the settings (jumper) on HDD to master or slave?
    Did you try to reinstall your OS with recovery CD/DVD?
    Bye

  • I can't see my Canon MG5220 printer... Initially I was getting "there is a communication error" so I rebooted everything, reset the printing system, reinstalled the driver and still NO luck! It seems to see the scanner, but never the printer. HELP!

    I can't see my Canon MG5220 printer... Initially I was getting "there is a communication error" so I rebooted everything, reset the printing system, reinstalled the driver and still NO luck! I see no printers available in the Print & Scan area. If I click "+" it seems to see the scanner, but never the printer. HELP!

    The printer component uses a different protocol to advertise itself on the network compared to the scanner component and it can take several seconds longer to appear after the scanner has.
    That said, with the introduction of AirPrint, the MG should be seen as Bonjour Multifunction in the Add Printer window, as shown below.
    Selecting this Bonjour Multifunction entry will create a printer using AirPrint and a scanner using the iCA driver.
    So do you see the MG5220 as Bonjour Multifunction or just Bonjour?

  • Ecc 6.0 file system setup in solaries

    Hi,
       I want to install ecc 6.0  on solaries system.
    Can any one provide file system setup before starting the installation. Like /usr/sap this kind of file setup.
    It will help ful to our installation.
    Regards,
    Venkat

    Hi,
    I think you are not clear, you have not reade upgrade guide. Please reade upgrade guide so many other thing to be require in installation. All are depend on the your company requirement and how much data will grow per month etc.
    Regards,
    Anil

  • Now that CS5 has arrived, what does it mean for your system setup?

    Apart from nice added features, improved stability and increased speed, there are two major factors that impact on your system setup:
    1. 64 bit
    2. Mercury Playback Engine
    64 Bit only
    This means a couple of things:
    You need a 64 bit OS, you need 64 bit plug-ins and you can use much more memory than the 4 GB limitation that applied to 32 bit OS'es (with effective memory in the 2 - 3 GB range, depending on the Boot.ini switch).
    In practice, to benefit from the move from 32 bit to 64 bit, the recommended memory needs to be around 8 or 12 GB, depending on your mobo and chipset and the number of DIMM slots available. With current prices (May 2010) it is not yet economical to opt for 4 GB sticks.
    If you have a dual socket board with 12 or more DIMM slots, 24 GB is optimal.
    Mercury Playback Engine
    This is where it gets interesting.
    In the past, up to and including CS4 4.2.1, performance was largely impacted by:
    1. CPU
    2. Memory
    3. Disk setup
    4. OS & Tuning
    5. ...
    and finally by the video card. It did not really matter what video card you had installed. There never was any discernable performance gain from expensive video cards.
    The tables have turned.
    With CS5, installing a CUDA enabled video card has a large impact on performance and lessens the burden on the CPU. The GPU does a lot of the work.
    However, since the CPU gets a lot more breathing space, the CPU will no longer be the primary bottelneck, as was often the case in the past.  And since all DIMM slots in the average machine will be occupied, it is a costly exercise to exchange the DIMM sticks with larger capacity ones. People who have only 3 slots in use on a X58 motherboard can directly benefit from adding three more sticks, but this does not happen very often.
    So with the CPU running with a relatively low load and memory more or less a given, the only thing that may be a bottleneck to be improved upon is the disk setup. This can be seen easily by scrubbing fast through the time line with the popular AVCHD material. Due to the MPEG nature, while scrubbing one needs to look backwards and forwards to create the image under the CTI and that means a lot of disk activity. CPU is not a bottleneck, memory is not a bottleneck and the GPU is not the bottleneck, it is the disk setup.
    Do not be fooled by the claims that SATA2 or SATA3 have enough bandwidth to support the data rate of AVCHD or other MPEG streams. Tests have shown that significant performance gains can be achieved by using a large number of disks, preferably in a raid. This is especially true when one has multiple tracks.
    SSD's are not yet an economical alternative for conventional hard disks, with prices that are a factor 30 - 50 higher per gigabyte than conventional disks.
    Conclusion
    To fully benefit from the performance gains that CS5 allows, it may be that using a MPE supported card will lead to the disk setup being the new bottleneck. Be aware of that fact.

    at this point we are still trying to figure out whats up.
    bear in mind DV VS AVCHD or Red is a completely different animal. there is a lot to process on encoding vs DV
    we think the processors and HDDs are sitting there waiting on CS5
    even with Dual Xeon 2.8GHz 12 cores its no faster than the 980x niether are CPU pegging, HDD pegging or ram..
    interesting is the Dual Xeons will use about 10G (with 24G installed) ram vs the 980x using 6 (with 12 installed)
    dual Xeons have dual memoery pipe lines 1 for each cpu so we think thats where its coming from
    but we are still scratching our heads with a good deal of what we are finding in these benchmarks.
    most is pointing to CS5 coding.
    i am sure Eric will poke his head in here...
    Scott
    ADK

  • SAP Business One Best-Practice System Setup and Sizing

    <b>SAP Business One Best-Practice System Setup and Sizing</b>
    Get recommendations from SAP and hardware specialists on system setup and sizing
    SAP Business One is a single, affordable, and easy-to-implement solution that integrates the entire business across financials, sales, customers, and operations. With SAP Business One, small businesses can streamline their operations, get instant and complete information, and accelerate profitable growth. SAP Business One is designed for companies with less than 100 employees, less than $75 million in annual revenue, and between 1 and 30 system users, referred to as the SAP Business One sweet spot. The sweet spot covers various industries and micro-verticals which have different requirements when it comes to the use of SAP Business One.
    One of the initial steps during the installation and implementation of SAP Business One is the definition of the system landscape and architecture. Numerous factors affect the system landscape that needs to be created to efficiently run SAP Business One.
    The <a href="http://wiki.sdn.sap.com/wiki/display/B1/BestPractiseSystemSetupand+Sizing">SAP Business One Best-Practice System Setup and Sizing Wiki</a> provides recommendations on how to size and configure the system landscape and architecture for SAP Business One based on best practices.

    For such high volume licenses, you may contact the SAP Local Product Experts.
    You may get their contact info from this site
    [https://websmp209.sap-ag.de/~sapidb/011000358700001455542004#India]

Maybe you are looking for

  • How to cancel an edit to an iCal event with attendees

    I keep running into this-- - Open an existing event with attendees - Make an edit of some kind - Change your mind - Forget what changes you made and/or not wish to let everyone already invited know that iCal is sometimes as crappy as Outlook. - Only

  • Username and workflow problems

    For my site the username of some workflows are changed to and also new workflows use io#|member|[email protected] as the modified user of a workflow   Workflows which have that username also don't show up in the allfiles>workflows list in sharepoint

  • MouseDragged on canvas, and JScrollPane

    Hi, I have created a canvas which appear transparent in front of the JScrollPane. How to make the ScrollBar in JScrollPane scrolling down while the mouse is drag on the canvas? Here is my code: import javax.swing.*; import java.awt.*; import java.awt

  • Connecting AirPort Extreme to my Windows desktop PC and MacBook

    First I'd like to mention that I'm a brand new user of Macs so please excuse my ignorance. Is it at all possible to hook up my Windows PC and my Macbook Pro to the Airport Extreme so they can both share the same internet connection? I'm also pretty s

  • Can two server farm share the same VIP?

    Hello, Can i create two server farm and share the same VIP? for example: is posible this configuration? rserver host des1   ip address 10.24.18.34   inservice rserver host des2   ip address 10.24.18.35   inservice rserver host was1   ip address 10.24