Customized table transfer(Client 1 to Client 2)(ALE)

Hi Dear,
How can i transfer my ZTable from on client to another Client.
1>I require to create same ZTable in both client?
2>do i require to user ABAP Program?
or any other way I can follow.
plz suggest me the best way.
and provide docs if possible.
thanks
RP

rp
you can also have a query in ur program as below:
SELECT * FROM <table> CLIENT SPECIFIED INTO TABLE lt_tbale
        WHERE <field>l = <condition> AND client = sy-mandt.
and start processing the data...for update try this:
UPDATE <table> CLIENT SPECIFIED
SET <field> = <val> WHERE mandt = sy-mandt
AND conditions
and similarily for modify
i'll also lukinto the other stuf i had pointed out in my prev post. But this wud be relativly easy

Similar Messages

  • ALE/IDOC[custom table transfer]

    Hi All,
    I have a doubt regarding the type of programs used to post the idocs using ALE in the outbound process.
    Please also tell me which program I will use to post a custom table of mine to another server using ALE/IDOC.
    Please also tell me the procedure to do the same mentioned above.
    Please help. Its a urgent requirement...........................
    Thanks in advance......................................................

    Hi Guru,
    if you cannot use a standard idoc then you´ll need to create a custom one starting from the segment (WE31) where you can create an Idoc segment starting from your own Z table structure using the wizard.
    Then you´ll need to also create the idoc type (WE30) and link the segment to the IDoc.
    Then you´ll need to create a message type and link the message type to the Idoc type (WE81, WE82).
    Then you´´ll use RFC "MASTER_IDOC_DISTRIBUTE" to populate the IDOC and send the data.
    This is a sample code just to give you an idea:
    DATA:          
      Z_SEGNAME(7) TYPE C VALUE 'SEGMENT',
      Z_MESTYPE(9) TYPE C VALUE 'MESSAGE',
      Z_IDOC_TYPE(8) TYPE C VALUE 'IDOC'.
    DATA:
      IDOC_CONTROL LIKE EDIDC,
      T_COMM_CONTROL LIKE EDIDC OCCURS 0 WITH HEADER LINE,
      IDOC_DATA LIKE EDIDD OCCURS 0 WITH HEADER LINE.
    *Reads data from Z table
    SELECT *
    FROM ZTABLE
    INTO TABLE L_ZTABLE.
    *Set the control data info required for the distribution
    IDOC_CONTROL-MESTYP = Z_MESTYPE.
    IDOC_CONTROL-DOCTYP = Z_IDOC_TYPE.
    *Populate the IDoc
    LOOP AT L_ZTABLE.
      CLEAR IDOC_DATA.
      IDOC_DATA-SEGNAM = Z_SEGNAME.
      IDOC_DATA-SDATA = ZTABLE.
      APPEND IDOC_DATA.
    ENDLOOP.
    *Deliver the IDOC as defined in distribution model/partner profile
    CALL FUNCTION 'MASTER_IDOC_DISTRIBUTE' IN UPDATE TASK
      EXPORTING
        MASTER_IDOC_CONTROL          = IDOC_CONTROL
      TABLES
        COMMUNICATION_IDOC_CONTROL     = T_COMM_CONTROL
        MASTER_IDOC_DATA               = IDOC_DATA
      EXCEPTIONS
        ERROR_IN_IDOC_CONTROL               = 1
        ERROR_WRITING_IDOC_STATUS          = 2
        ERROR_IN_IDOC_DATA               = 3
        SENDING_LOGICAL_SYSTEM_UNKNOWN      = 4
        OTHERS                         = 5.
    IF sy-subrc = 0.
      COMMIT WORK.
    ENDIF.

  • Client Independent custom table create

    Hi ,
    As per the requiremnts i have created a custom table in Client DEV1... and updated the table through an interface.
    The custom table have 12 entries in that Client.
    Now the same custom table when checked in another DEV Client DEV2 which is almost the replica of DEV1.. i.e if any custom table or custom program is ctreated in DEV1 it reflects in DEV2,,,,  the entries are not found.
    COuld anybody let me know incase some settings needs to be checked for checking the same entries in Client DEV2 as in Client DEV1 for the same custom table?
    Or there are some steps included while creating thre custom table so that its entries are found in both clients ?
    Or execute the interface in DEV2 can create entries.
    Which odf the above approach needs to be considered ?
    Thanks
    Kritika

    Hi Kritika !!
    If you want to reflect the same records in different clients, you have to delete the MANDT field from your Custom table. then only the records will reflect in all the clients of the same Custom Table.
    If you are not willing to remove the Field MANDT from Custom table and U need the same records in all the clients, U have to create records through Utilities -> Table Contents -> Create Entries or with the Help of TMG or with the help of Ur Interface.
    Regards
    valluru

  • Include customer tables  : TDMS HCM

    Hi,    
    I'm using the PA & PD Scnerario. I would like to include client table "HRP9508". But when I execute the activity "Transfer Selection Criteria" I've the next warning "Table HRP9508 is not registered as being released".
    To include this table I execute the next activities in the DEV system and transport to PRD system :
    Define Customer Table Transfer,
    Define Tables for Customer Table
    Transfer and Table Transfer Status.
    But after do that, the warning shows again.
    Anybody had tried to include customer tables with TDMS & HCM (because I think the process to do it with TDMS and ECC is different).
    Thank's in advanced

    Hi,
    just for information. You said that you had maintained the following:
    Define Customer Table Transfer,
    Define Tables for Customer Table
    Transfer and Table Transfer Status.
    For your self-defined infotypes you need only maintain the last table. This is described in the documentation though........
    Regards, Gerard.

  • Transporting custom table with entries

    Hi,
         I need to convert one custom table to client specific, I deleted entries in table and added MANDT field in development server. In Production already entries are there in the table, can i transport the table from development now? will it affect the entries? or if i enter all the entries in development and transport, will the table get all the entries with MANDT field?

    Hi,
    Please enter all entries in dev(take ALL form Prod), then trasnport new version of table to Q->P.
    By doing so, your existing data in P will be retained and u'll have client spec. table in P.
    Regards
    Bin
    Edited by: Bindu Bala on Dec 19, 2008 1:24 PM

  • Deleting entries from custom tables....

    Hello,
    I have a custom table ZCUST (client dependent) from where I want to delete all entries. How do I achieve this ? There are two key fields in this table key1 and key2.
    Regards,
    Rajesh.

    Hi Rajesh,
    try this one...
    DATA: lt_add TYPE zadd OCCURS 0 WITH HEADER LINE.
    SELECT *
    FROM zadd
    INTO TABLE lt_add.
    DELETE zadd FROM TABLE lt_add.
    IF sy-subrc = 0.
      ULINE.
    ENDIF.
    Best regards,
    raam

  • ALE/IDOC[custom table]

    Hi All,
    I have a doubt regarding the type of programs used to post the idocs using ALE in the outbound process.
    Please also tell me which program I will use to post a custom table of mine to another server using ALE/IDOC.
    Please also tell me the procedure to do the same mentioned above.
    Please help. Its a urgent requirement...........................
    Thanks in advance......................................................

    hi,
    u can do it using CHANGE POINTERS method.For this u need to do the following configurations.
    1>WE81
    2>WE31
    3>WE30
    4>WE82
    5>SCDO
    6>BD61
    7>BD52
    8>BD50
    9>BD60
    10>WE20
    11>BD64.
    First create an object in tcode -SCDO,there u specify ur tablename.
    now the fields which are there in the ztable,in the further characteristics of the dataelement u need to check the check box CHANGE DOCUMENT HEADER.Now in SCDO u need to generate the upgarde program,the sap will generate four includes,u need to call them in ur program.
    U need to write one FM ,where u need to use the FM's.
    CHANGE_POINTERS_READ,
    CHANGE_POINTERS_STATUS_WRITE.
    Regards,
    nagaraj

  • Customer tables in $TMP missing after client copy

    We did a client copy Data+Customizing and on the targer client we noticed after some table has been simply cleaned up, not copied.
    Are all customer tables (tables like Sxxxx) defined as local objects , $TMP development class, both on the source client and on the target client.
    I found note 69556 and it seems infact tables in $TMP are not copied, but this note is very very old and written for release 30C - 4x systems.
    Is that still true ? Is this the reason why $TMP tables are not copied ?
    regards

    Hi,
    Check below link:
    client copy
    Thanks
    Sunny

  • Customizing changes transfer to another client automatically

    Hi,
    In our development system, client 100 is for customizing, and no applicaiton data, client 200 for testing, with application data.
    When we made the customizing changes in client 100, I should transfer the changes to client 200 with SCC1, and then do the testing in client 200.
    How can I do the configuration, when I made the changes in client 100, the changes will be transferred to client 200 automatically?
    Thanks in advance,
    Best regards,
    Randy

    Hi,
    Check SAP  Note 398589 - TMS_BCI_START_SERVICE has no selection screens
    Also check this [link|http://sap.ittoolbox.com/groups/technical-functional/sap-basis/automatic-transport-from-a-client-to-another-942355]
    Thanks
    Sunny

  • Missing record in customizing tabele after client copy

    Hi,
    A box with Solaris 10 X64, SAP ECC 6.03, SAP AFS 6.03 and MaxDB 7.6.
    In a just installed system we have crate two client as copy from 000 .... in this two client some customizing tables has missing records. In 000 client all is OK.
    Have you have any idea ?
    Regards.
    Ganimede Dignan.

    Hi,
    You have said customizing tables, are those the default one or build by you. If they are given default from SAP, please note that ceratin data  content is not copied even by Client copy (SAP_ALL profile) you have to do a manual entry.
    Since CCopy have ended with no error and you ahve selected SAP_ALL profile but you dont see the data in the table, which means they cannot be moved by C.Copy and you have enter them manually.
    Regards,
    Raju.

  • Custom OIM java client not working

    Hi all,
    I am trying to execute a custom OIM java client in my server. The java file just has the code to connect to the OIM server and it is failing at the line
    ConfigurationClient.ComplexSetting config = ConfigurationClient.getComplexSettingByPath("Discovery.CoreServer");
    The basic content of the java file OIMTry.java is given below:
    env.put("java.security.auth.login.config", "/u01/apps/resetpwd/config/auth.conf");
    env.put("java.security.policy", "/u01/apps/resetpwd/config/xl.policy");
    env.put("XL.HomeDir", "/u01/apps/resetpwd");
    ConfigurationClient.ComplexSetting config = ConfigurationClient.getComplexSettingByPath("Discovery.CoreServer");
    env = config.getAllSettings();
    I have set the OIM related jar files in classpath in .bash_profile and able to echo the classpath as well.
    However, the file is executing perfectly in Eclipse tool but not from command prompt.The file is getting compiled properly at command prompt.
    I have tried various options of executing the java file as shown below.
    java -Djava.security.manager -DXL.HomeDir=/u01/apps/oim_server/xellerate -Djava.security.policy=/u01/apps/oim_server/xellerate/config/xl.policy -Djava.security.auth.login.config=/u01/apps/oim_server/xellerate/config/auth.conf -Djava.naming.provider.url=jnp://oim_server_host:12401/ OIMTry
    java -Dclasspath=/u01/apps/resetpwd/lib/xlUtils.jar:/u01/apps/resetpwd/lib/xlAPI.jar:/u01/apps/resetpwd/lib/xlCrypto.jar OIMTry
    The error we are getting is given below:
    Exception in thread "main" java.lang.NoClassDefFoundError: while resolving class: com.thortech.xl.util.config.ConfigurationClient
    at java.lang.VMClassLoader.resolveClass(java.lang.Class) (/usr/lib/libgcj.so.5.0.0)
    at java.lang.Class.initializeClass() (/usr/lib/libgcj.so.5.0.0)
    at JvResolvePoolEntry(java.lang.Class, int) (/usr/lib/libgcj.so.5.0.0)
    at OIMTry.main(java.lang.String[]) (Unknown Source)
    Caused by: java.lang.ClassNotFoundException: javax.crypto.Cipher not found in [file:/u01/apps/resetpwd/lib/activation.jar, file:/u01/apps/resetpwd/lib/ojdbc14.jar, file:/u01/apps/resetpwd/lib/XLCustomClient.ear, file:/u01/apps/resetpwd/lib/commons-beanutils.jar, file:/u01/apps/resetpwd/lib/oscache.jar, file:/u01/apps/resetpwd/lib/xlDataObjectBeans.jar, file:/u01/apps/resetpwd/lib/commons-collections.jar, file:/u01/apps/resetpwd/lib/sax.jar, file:/u01/apps/resetpwd/lib/xlDataObjects.jar, file:/u01/apps/resetpwd/lib/commons-dbcp-1.2.1.jar, file:/u01/apps/resetpwd/lib/wlXLSecurityProviders.jar, file:/u01/apps/resetpwd/lib/xlDDM.jar, file:/u01/apps/resetpwd/lib/commons-digester.jar, file:/u01/apps/resetpwd/lib/xalan.jar, file:/u01/apps/resetpwd/lib/xlGenConnector.jar, file:/u01/apps/resetpwd/lib/commons-logging.jar, file:/u01/apps/resetpwd/lib/XellerateClient.jar, file:/u01/apps/resetpwd/lib/xlGenericUtils.jar, file:/u01/apps/resetpwd/lib/commons-pool-1.2.jar, file:/u01/apps/resetpwd/lib/xercesImpl.jar, file:/u01/apps/resetpwd/lib/xliGCProviders.jar, file:/u01/apps/resetpwd/lib/commons-validator.jar, file:/u01/apps/resetpwd/lib/xerces.jar, file:/u01/apps/resetpwd/lib/xlInputPreprocessor.jar, file:/u01/apps/resetpwd/lib/crimson.jar, file:/u01/apps/resetpwd/lib/XIMDD.jar, file:/u01/apps/resetpwd/lib/xlInstaller.jar, file:/u01/apps/resetpwd/lib/csv.jar, file:/u01/apps/resetpwd/lib/XL10SecurityProviders.jar, file:/u01/apps/resetpwd/lib/xlLogger.jar, file:/u01/apps/resetpwd/lib/dom.jar, file:/u01/apps/resetpwd/lib/xlAdapterUtilities.jar, file:/u01/apps/resetpwd/lib/xlRemoteManager.jar, file:/u01/apps/resetpwd/lib/ejb.jar, file:/u01/apps/resetpwd/lib/xlAPI.jar, file:/u01/apps/resetpwd/lib/xlRequestPreview.jar, file:/u01/apps/resetpwd/lib/jakarta-oro-2.0.8.jar, file:/u01/apps/resetpwd/lib/xlAttestation.jar, file:/u01/apps/resetpwd/lib/xlSampleApp.jar, file:/u01/apps/resetpwd/lib/javagroups-all.jar, file:/u01/apps/resetpwd/lib/xlAuditor.jar, file:/u01/apps/resetpwd/lib/xlScheduler.jar, file:/u01/apps/resetpwd/lib/jaxp-api.jar, file:/u01/apps/resetpwd/lib/xlAuthentication.jar, file:/u01/apps/resetpwd/lib/xlUtils.jar, file:/u01/apps/resetpwd/lib/jhall.jar, file:/u01/apps/resetpwd/lib/xlBackOfficeBeans.jar, file:/u01/apps/resetpwd/lib/xlVO.jar, file:/u01/apps/resetpwd/lib/log4j-1.2.8.jar, file:/u01/apps/resetpwd/lib/xlBackofficeClient.jar, file:/u01/apps/resetpwd/lib/xlWebClient.jar, file:/u01/apps/resetpwd/lib/mail.jar, file:/u01/apps/resetpwd/lib/xlCache.jar, file:/u01/apps/resetpwd/lib/xlWSCustomClient.jar, file:/u01/apps/resetpwd/lib/oc4jclient.jar, file:/u01/apps/resetpwd/lib/xlCrypto.jar, file:/u01/apps/resetpwd/lib/xml-apis.jar, file:/usr/share/java/libgcj-3.4.6.jar, file:./, core:/]
    at java.net.URLClassLoader.findClass(java.lang.String) (/usr/lib/libgcj.so.5.0.0)
    at gnu.gcj.runtime.VMClassLoader.findClass(java.lang.String) (/usr/lib/libgcj.so.5.0.0)
    at java.lang.ClassLoader.loadClass(java.lang.String, boolean) (/usr/lib/libgcj.so.5.0.0)
    at JvFindClass(_Jv_Utf8Const, java.lang.ClassLoader) (/usr/lib/libgcj.so.5.0.0)
    at java.lang.Class.forName(java.lang.String, boolean, java.lang.ClassLoader) (/usr/lib/libgcj.so.5.0.0)
    at JvBytecodeVerifier.type.compatible(_Jv_BytecodeVerifier.type&, JvBytecodeVerifier) (/usr/lib/libgcj.so.5.0.0)
    at JvBytecodeVerifier.verify_instructions_0() (/usr/lib/libgcj.so.5.0.0)
    at JvVerifyMethod(_Jv_InterpMethod) (/usr/lib/libgcj.so.5.0.0)
    at JvPrepareClass(java.lang.Class) (/usr/lib/libgcj.so.5.0.0)
    at JvWaitForState(java.lang.Class, int) (/usr/lib/libgcj.so.5.0.0)
    at java.lang.VMClassLoader.linkClass0(java.lang.Class) (/usr/lib/libgcj.so.5.0.0)
    at java.lang.VMClassLoader.resolveClass(java.lang.Class) (/usr/lib/libgcj.so.5.0.0)
    ...3 more
    Please let me know if I have to set something else in the environment to get rid of this error.
    Thanks,
    Mahendra.

    Hi,
    We were unable to create tcUtilityFactory instance when the env variables are set using the hashmap.
    Instead it is working when we set using System.setProperty() as shown below:
    System.setProperty("XL.HomeDir", "/u01/apps/OIMPwdReset");
    System.setProperty("java.security.policy", "/u01/apps/OIMPwdReset/config/xl.policy");//server or client
    System.setProperty("java.security.auth.login.config", "/u01/apps/OIMPwdReset/config/auth.conf");//server or client
    Hope this helps other guys..
    -Mahendra.

  • Construing a report writer with a table of client - Table YSCO_BASE_ALOCAC

    I am construing a report writer with a table of client - Table YSCO_BASE_ALOCAC
    When I definition the library, the message is show...
    Table YSCO_BASE_ALOCAC is not installed in Report Writer.
    Message no. GR 493
    Diagnosis
    The Report Writer can only report on tables if the attributes of these tables that are relevant for reporting are defined in control tables. This is not the case for table YSCO_BASE_ALOCAC.
    Where I can to make this configuration?

    hey thanks again
    i tried it it works fine..
    WITH     e     AS
         SELECT     consultant , client , project
         ,     task , effort ,date_  , billable
         FROM    trial_3_details
    SELECT     *
    FROM     e
    PIVOT     (     sum (effort)
              FOR     date_     IN     ( '07/22/2013'     AS monday ,
                                         '07/23/2013'    as tuesday,
                                        '07/24/2013'    as wednesday,
                                         '07/25/2013'     as thrusday,
                                         '07/26/2013'     as friday,
                                          '07/27/2013'     as saturday,
                                          '07/28/2013'     as sunday                        
    CONSULTANT
    CLIENT
    PROJECT
    TASK
    BILLABLE
    MONDAY
    TUESDAY
    WEDNESDAY
    THRUSDAY
    FRIDAY
    SATURDAY
    SUNDAY
    Syed
    Facebook
    Security
    Privacy Settings
    N
    Syed
    Google
    Security
    gmail privacy features
    Y
    8
    Patel
    Dell
    Recruitment
    Profile Detailing
    Y
    Sanjay
    Google
    Software
    Webpage development
    Y
    John
    Dell
    Hardware
    Processors
    Y
    Steve
    Lenovo
    Administration
    Attendance
    N
    Syed
    Yahoo
    Security
    Firewall Check
    Y
    Sanjay
    Google
    Software
    debugging
    N
    Steve
    Microsoft
    Adminstration
    Attendance
    N
    Steve
    Yahoo
    Adminstration
    Attendance
    N
    One more question how do i automatically set the days instead of explicitly declaring it every time?? and also i want to add one more column
    which gives overall week 'effort' of a consultant..

  • Is it possible to export (expdp) oracle table from client machine ?

    Is it possible to export (expdp*) oracle table from client machine, without using Remote desk top connection ?*
    1) Database-10g server is in America
    2) client machine is in India
    3) Oracle client-10g software is installed in my machine
    4) I am able to connect to the server, could see all tables
    5) one table is with 35 million record, I wanted to export this table using data pump, is it possible?
    note: without using Remort desk top connection.

    Hi
    I used the following syntax , but I am getting error
    6) connect sys as sysdba
    create directory test_dir as '/dbusr1/exp_test'
    grant read, write on directory test_dir to user1;
    7) expdp user1/pwd1@xyz tables=test_1 directory=test_dir dumpfile=test_file.dmp logfile=test_file.log
    8) Errors
    In linux prompt I am getting this error
    -bash: expdp: command not found
    In windows cmd prompt I am getting this error
    ORA-39002: invalid operation
    ORA-39070: Unable to open the log file.
    ORA-29283: invalid file operation
    ORA-06512: at "SYS.UTL_FILE";, line 488
    ORA-29283: invalid file operation
    9) why ?
    -- Does the user ( "user1") should have any system level privilege ? to export his own table?
    -- This folder ('/dbusr1/*exp_test'*) has write privilege in os level.
    Thanks in advance
    sbmk_design
    Edited by: sbmk_design on Aug 24, 2009 12:06 AM

  • Import mails from customized e-mail client into Oultook interface

    The client has a customized e-mail client with a web interface.
    It is required to import the e-mails and folder structure into Outlook 2013 interface in a separate tab, without connecting the e-mail account to Outlook (as usually connect an yahoo or gmail account).
    The import will be made using methods from a web service which provides information like folder structure, From, To, Date etc. The service returns this in DataTable format.
    How can I display the e-mails form the custom e-mail client into Outlook interface, using the information from the web service?

    How can I display the e-mails form the custom e-mail client into Outlook interface, using the information from the web service?
    You're going to have to be a little (lot?) more specific then the info already provided - such as
    - You're saying that you have a web service function that can import data directly into Outlook - is that correct? (Suspect the answer is no) so
    - Not sure what you mean by "DataTable" format unless you're using programming terminology. If you want to use the standard Outlook import wizard, the data will have to be converted to a CSV file which will restrict you to the fields supported via
    that process. Anything else will require a custom developed solution (outside the scope of this forum). If you need programming advice - better forum would be "Outlook for Developers" -
    http://social.msdn.microsoft.com/Forums/en-US/outlookdev
    - As for folder structure - that can easily be replicated in Outlook by creating a new PST file and adding any folders as required either manually or programmatically
    Karl Timmermans [Outlook MVP] "Outlook Contact Import/Export/Data Mgmt" http://www.contactgenie.com

  • Custom Workflow Service Client

    Dear All,
    I develop custom workflow service client with simple servlet and workflow API, when i finished i deploy it in OAS. I just created simple human task in BPEL and assign it to user jcooper at defaul oc4j realm. I run the servlet but it's has trown exception when i want to create context:
    Exception not handled by the Collaxa Cube system.An unhandled exception has been thrown
    Error in authenticating and creating a workflow context for user jcooper
    exception.30501
    I just read manual i must deploy custom workflow client as child application of the hw_services application. I set it in my jdeveloper and deploy again but this time deployment is failed cause :
    Binding webapp web-module for application WorkflowUI to site default-web-site under context root WorkflowUI
    Exception: NoClassDefFoundError: null
    Operation failed with error:
    java.lang.NoClassDefFoundError
    I don't know what class is missing i already try put all required jar in lib. Just anyone can give me a solution about that?
    Or just anyone has already build custom workflow service client with workflow API + Servlet/JSF ? can i get some tips to develop custom workflow client?
    Thanks Before
    Regards,
    Yohanes W S

    Hi Yohanes,
    You'll probably have more luck checking in on the
    [url
    BPEL
    ]BPEL forum for this one.Best regards,
    John
    Thank for the advise, i will post in BPEL forum

Maybe you are looking for

  • My ipad 4 is dying,

    why my ipad 4 is always dying for 5minutes?? if its already died it has the symbol apple and black background for 5 minutes but why ?

  • I have the Insurance Plan..but old Phone (Samsung Saga I-770)

     I've had insurance for 2 years. It looks like they don't even sell that model on the Verizon Website or store. It's been lost, will Verizon send me the exact same model  or give me a choice for replacement?

  • Cannot paste text from Safari as PLAIN TEXT

    Safari 2.0.4 on Mac OS X 10.4.9. Text copied from some web pages like http://www.eloquentsw.com/livedictionary.html cannot be pasted as plain unformated text. For instance, into Eudora Headings (which should paste it as plain text) or using Shift Com

  • Audigy 4 pro in Vi

    My client has an Audiyg 4 pro that they wish to install in their system using Vista Home premium. The audigy 4 pro was isntalled in a windows XP. . can anyone tell me if their is an isntallation CD for Audigy 4 pro ?available for Vista and how I may

  • Leopard on external drive, whilst leaving current data alone

    hi, I wish to install leopard on an external hard drive, so i can keep Tiger on the internal computer drive. But I want to partition the drive for time machine as well, I have already used about 70gigs of 500gigs on the drive but i don't want to eras