Wism Replacement Procedure

Hi,
As I am new to wism, I was wondering if there is a procedure to replace a faulty wism? Are the vlan configurations stored on the switch or i would need to resetup a wism module from the intial guide (Example putting in the ip address/service port/vlans/etc...)
I do understand that I would need to restore the wism configuration(wlans/etc...), however not too sure on the initial replacement procedure as in do i need to setup the vlans/ip address/etc... ?
Thanks.

Hi Nicolas,
Thanks for the informaiton. Can I say that for the initial config; I would just need to setup the service and management ip address? The management ip address is for web gui to restore the backup configuration while the service ip address is to allow it to communicate to the switch to grab the configured auto-lag config?
If auto-lag has previously been enabled on the switch and if i am replacing the wism on the same slot, I do not need to be concern with the switch configuration? (example wism module xx controller 1/2 allowed-vlan xxx/etc...)
For clarification, access points will fail over(AP fallback configured) to the replacement wism (primary) once the ap-manager ip address is reachable? (not too sure the time)
Thanks.

Similar Messages

  • CREATE OR REPLACE PROCEDURE return data like SELECT statement

    "SELECT * FROM SEARCH_KEYWORD" is successfully done and return the data of the tables. Now, I want to run that on server side using PROCEDURE.
    I successfully executed the below scripts. Please teach me how to call the sp_test procedure. OR if you have other way or maybe my scripts are wrong.
    CREATE OR REPLACE PACKAGE GLOBALPKG
    AS
         TYPE RCT1 IS REF CURSOR;
         TRANCOUNT INTEGER := 0;
         IDENTITY INTEGER;
    END;
    CREATE OR REPLACE PROCEDURE LPG.sp_test
         RCT1 IN OUT      GLOBALPKG.RCT1
    AS
    BEGIN
         OPEN RCT1 FOR
         SELECT *
         FROM SEARCH_KEYWORD;
    END;
    Here is my table definition:
    CREATE TABLE LPG.SEARCH_KEYWORD
    FRACTION VARCHAR2(50),
    KEYWORD VARCHAR2(50),
    PURPOSE VARCHAR2(50),
    REMARKS VARCHAR2(50),
    DATE_INSERTED DATE DEFAULT sysdate
    PCTFREE 10
    PCTUSED 40
    MAXTRANS 255
    TABLESPACE SYSTEM
    STORAGE(INITIAL 64K MINEXTENTS 1 MAXEXTENTS 2147483645 FREELISTS 1 FREELIST GROUPS 1 BUFFER_POOL DEFAULT)
    NOCACHE
    LOGGING
    Eros
    Japan

    Wrong forum. You should ask this question in the SQL and PL/SQL forum.
    Couple of comments though. Oracle is not SQL-Server. So calling a procedure that returns a ref cursor is different from a T-SQL macro procedure that functions like a view.
    Also, there is no need to use the SQL-Server standard (and silly one at that) of prefixing stored procedures using the text "sp_". In fact, the whole concept of Hungarian-like notation is something of the past and has no place in today's paradigm of software engineering.
    As for calling a a proc that returns a ref cursor, from SQL*Plus it will look as follows:
    SQL> var c refcursor
    SQL>
    SQL> exec LPG.sp_test( :c )
    SQL> print c
    Ref cursor needs to be supported by the client language you use to make this call to Oracle.

  • CREATE OR REPLACE PROCEDURE dq_setAllCollOptionsForColl (srcCollId INT, s

    CREATE OR REPLACE PROCEDURE dq_setAllCollOptionsForColl
    (srcCollId INT,
    collId INT)
    AS
    BEGIN
    INSERT INTO dq_spidering_options
    SELECT collId, id_type, file_types, file_extns, sub_directories,
    max_files, min_file_size, max_file_size, protocols_to_fetch, reanalysis_option,
    page_download_timeout, page_download_retries, page_download_pause, thread_count FROM dq_spidering_options
    WHERE id = srcCollId AND id_type = 'S';
    INSERT INTO dq_exclude_includes
    SELECT collId, id_type, entity, type from dq_exclude_includes WHERE id = srcCollId AND id_type = 'S'
    EXEC dq_setSiteOptionsForSites srcCollId, collId
    END dq_setAllCollOptionsForColl;
    how do i fix this?

    how do i fix this? Well, for us to say how, you need to tell what's wrong?
    To start with, EXEC is a SQL*Plus command not to be used within stored procedures. also, you seem to be calling another stored procedure with two parameters. you need to change that line as:
    dq_setSiteOptionsForSites(srcCollId, collId) ;

  • Can't replace procedure

    Hi:
    I am using Squirrel as the client tool using JDBC RAC driver against Oracle 11.1. I am trying to replace an existing Oracle procedure with:
    CREATE OR REPLACE PROCEDURE MY_PROC
    AS
    BEGIN
    DELETE FROM table1 WHERE IEX_DATE >= (select max(idate) from table1) - 20;
    DELETE FROM table2 WHERE IEX_DATE >= (select max(idate) from table2) - 20;
    DELETE FROM table3 WHERE IEX_DATE >= (select max(idate) from table3) - 20;
    DELETE FROM table4 WHERE IEX_DATE >= (select max(idate) from table4) - 20;
    END;
    It fails with the error:
    Query 1 of 5, Rows read: 0, Elapsed time (seconds) - Total: 0.047, SQL query: 0.047, Building output: 0
    6,326 Row(s) Deleted
    Query 2 of 5, Rows read: 0, Elapsed time (seconds) - Total: 0.672, SQL query: 0.672, Building output: 0
    12,097 Row(s) Deleted
    Query 3 of 5, Rows read: 0, Elapsed time (seconds) - Total: 1.25, SQL query: 1.25, Building output: 0
    5,040 Row(s) Deleted
    Query 4 of 5, Rows read: 0, Elapsed time (seconds) - Total: 0.531, SQL query: 0.531, Building output: 0
    Error: ORA-00900: invalid SQL statement
    SQLState: 42000
    ErrorCode: 900
    Error occured in:
    END
    What am I doing wrong? I've tried different things but nothing seems to give me an executable procedure.

    Looks to me like Squirrel (whatever tool that is) processes SQL statements, so has performed the DELETE statements it's found, but doesn't know about PL/SQL code.
    What happens if you run the same create procedure statement through SQL*Plus instead?

  • Ampersand substitution in create or replace procedure statement

    Hi Guys,
    I wonder why my ampersand substitution does not work in a create or replace stored procedure statement.
    CREATE OR REPLACE PROCEDURE UPDATE_DIM_SALES AS
    UNDEFINE DimSales;
    UNDEFINE FactTable;
    DEFINE DimSales = 'TESTTAB';
    DEFINE FactTable = myfact;
    BEGIN
    Error(5,20): PLS-00103: Encountered the symbol "=" when expecting one of the following: := . ( @ % ; not null range default character
    If I then assign the value with := I get the error "invalid table" later on for the INSERT statemnt:
    CREATE OR REPLACE PROCEDURE UPDATE_DIM_SALES AS
    UNDEFINE DimSales;
    UNDEFINE FactTable;
    DEFINE DimSales := 'x2';
    DEFINE FactTable := 'x1';
    BEGIN
    INSERT INTO &DimSales  (column1, column2,...)
    Why does ampersand substitution not work within a stored procedure?

    Hi,
    Thanks for the suggestion.
    The IF---ELSE Logic I have to write is quite complex.
    I dont think joins will not do the trick and limiting the collection size to smaller than 4000 seems not very practical. there
    is no poin using a collection if I have to use X amout of them.
    UNDEFINE DimSALES;
    UNDEFINE FactTable;
    DEFINE DimSALES = 'TESTTAB';
    DEFINE FactTable = 'testfact';
    --Collect all distinct SELLERNr into materialized views
    CREATE MATERIALIZED VIEW v1 AS select distinct SELLERnr from &FactTable;
    CREATE MATERIALIZED VIEW v2 AS select distinct SELLER_ID from &DimSALES;
    DECLARE
    v_SELLERNr VarChar(9);
    CURSOR v1_cursor IS Select * from v1;
    l_exists INTEGER;
    BEGIN
    OPEN v1_cursor;
    LOOP
    FETCH v1_cursor INTO v_SELLERNr;
    EXIT WHEN v1_cursor%NOTFOUND;
    SELECT COUNT(*) INTO l_exists FROM v2 WHERE SELLER_id =v_SELLERNr AND ROWNUM = 1;
    IF l_exists <> 1 THEN
    INSERT INTO &DimSALES (K_SALES,REG,BVL,DS, VS,RS,SELLER_ID,VK,VALID_FROM)
    (SELECT SEQ_DIM_SALES.NEXTVAL ,REG, BVL,DS, VS,RS,SELLERNR,VK,sysdate from &FactTable where SELLERNR =v_SELLERNr);
    commit;
    ELSE
    --Update old combination(s), invalidate (DATE)
    UPDATE &DimSALES SET VALID_TO = SYSDATE -1 WHERE REG||BVL||DS||VS||RS||SELLERNR||VK IN(
    --In case the SELLER and combinations exists and differs from what is in the dimension then invalidate old combinations and insert new ones
    SELECT * FROM(
    SELECT REG||BVL||DS||VS||RS||SELLERNR||VK WHERE SELLERNR = v_SELLERNr FROM &FactTable;
    MINUS
    SELECT REG||BVL||DS||VS||RS||SELLERNR||VK WHERE SELLERNR = v_SELLERNr FROM &DimSALES;)
    commit;
    --Insert new combination
    INSERT INTO &DimSALES (K_SALES,REG,BVL,DS, VS,RS,SELLER_ID,VK,VALID_FROM)
    (SELECT SEQ_DIM_SALES.NEXTVAL ,REG, BVL,DS, VS,RS,SELLERNR,VK,sysdate from &FactTable where SELLERNR =v_SELLERNr) subselect;
    WHERE &DimSALES.SELLER_Id=v_SELLERNr AND subselect.REG||BVL||DS||VS||RS||SELLERNR||VK NOT IN &DimSALES.REG||BVL||DS||VS||RS||SELLERNR||VK
    commit;
    END IF;
    END LOOP;
    CLOSE v1_cursor;
    END;
    DROP MATERIALIZED VIEW v1;
    DROP MATERIALIZED VIEW v2;
    -----------------

  • Disk replacement procedure for cluster

    Hi,
    I have a clustered duplex server with 2 shared external disk shelves.
    The disks are striped and then mirrored.
    There was a hard disk failure with one of the mirrored disks.
    I've found two different disk replacement procedures from the Sunsolve site that people say is the "correct" procedure to replace a disk.
    # Doc ID 77375
    http://sunsolve.sun.com/search/document.do?assetkey=1-9-77375-1
    # Doc ID 70849
    http://sunsolve.sun.com/search/document.do?assetkey=1-9-70849-1
    I've used the 77375 procedure before but had some trouble with it.
    I haven't tried the 70849 procedure yet.
    My question:
    Has anyone used better/correct procedure than these to replace a hard disk?
    I would greatly appreciate if I can get some recommendations based on successful experiences.
    Thank you
    Host details:
    # OS
    #uname -a
    SunOS xxxx 5.8 Generic_117350-19 sun4u sparc SUNW,Sun-Fire-V440
    # Clustering
    #scinstall -pv
    SunCluster 3.0
    SUNWscr: 3.0.0,REV=2000.10.01.01.00
    SUNWscu: 3.0.0,REV=2000.10.01.01.00
    SUNWscdev: 3.0.0,REV=2000.10.01.01.00
    SUNWscgds: 3.0.0,REV=2001.09.14.00.00
    SUNWscman: 3.0.0,REV=2000.10.01.01.00
    SUNWscsal: 3.0.0,REV=2000.10.01.01.00
    SUNWscsam: 3.0.0,REV=2000.10.01.01.00
    SUNWscvm: 3.0.0,REV=2000.10.01.01.00
    SUNWmdm: 4.2.1,REV=2000.08.08.10.01
    SUNWscva: 3.0.0,REV=2001.05.29.11.07
    SUNWscvr: 3.0.0,REV=2001.06.18.15.51
    SUNWscvw: 3.0.0,REV=2001.06.18.15.51
    # Solstice Disksuite
    #pkginfo -l SUNWmdr
    PKGINST: SUNWmdr
    NAME: Solstice DiskSuite Drivers
    CATEGORY: system
    ARCH: sparc
    VERSION: 4.2.1,REV=1999.12.03.10.00
    BASEDIR: /
    VENDOR: Sun Microsystems, Inc.
    DESC: Solstice DiskSuite Drivers
    PSTAMP: 11/04/99-18:30:51
    INSTDATE: Apr 24 2006 11:33
    VSTOCK: 258-6252-11
    HOTLINE: Please contact your local service provider
    STATUS: completely installed
    FILES: 28 installed pathnames
    8 shared pathnames
    8 directories
    11 executables
    1044 blocks used (approx)
    #

    Hi,
    I have a clustered duplex server with 2 shared external disk shelves.
    The disks are striped and then mirrored.
    There was a hard disk failure with one of the mirrored disks.
    I've found two different disk replacement procedures from the Sunsolve site that people say is the "correct" procedure to replace a disk.
    # Doc ID 77375
    http://sunsolve.sun.com/search/document.do?assetkey=1-9-77375-1
    # Doc ID 70849
    http://sunsolve.sun.com/search/document.do?assetkey=1-9-70849-1
    I've used the 77375 procedure before but had some trouble with it.
    I haven't tried the 70849 procedure yet.
    My question:
    Has anyone used better/correct procedure than these to replace a hard disk?
    I would greatly appreciate if I can get some recommendations based on successful experiences.
    Thank you
    Host details:
    # OS
    #uname -a
    SunOS xxxx 5.8 Generic_117350-19 sun4u sparc SUNW,Sun-Fire-V440
    # Clustering
    #scinstall -pv
    SunCluster 3.0
    SUNWscr: 3.0.0,REV=2000.10.01.01.00
    SUNWscu: 3.0.0,REV=2000.10.01.01.00
    SUNWscdev: 3.0.0,REV=2000.10.01.01.00
    SUNWscgds: 3.0.0,REV=2001.09.14.00.00
    SUNWscman: 3.0.0,REV=2000.10.01.01.00
    SUNWscsal: 3.0.0,REV=2000.10.01.01.00
    SUNWscsam: 3.0.0,REV=2000.10.01.01.00
    SUNWscvm: 3.0.0,REV=2000.10.01.01.00
    SUNWmdm: 4.2.1,REV=2000.08.08.10.01
    SUNWscva: 3.0.0,REV=2001.05.29.11.07
    SUNWscvr: 3.0.0,REV=2001.06.18.15.51
    SUNWscvw: 3.0.0,REV=2001.06.18.15.51
    # Solstice Disksuite
    #pkginfo -l SUNWmdr
    PKGINST: SUNWmdr
    NAME: Solstice DiskSuite Drivers
    CATEGORY: system
    ARCH: sparc
    VERSION: 4.2.1,REV=1999.12.03.10.00
    BASEDIR: /
    VENDOR: Sun Microsystems, Inc.
    DESC: Solstice DiskSuite Drivers
    PSTAMP: 11/04/99-18:30:51
    INSTDATE: Apr 24 2006 11:33
    VSTOCK: 258-6252-11
    HOTLINE: Please contact your local service provider
    STATUS: completely installed
    FILES: 28 installed pathnames
    8 shared pathnames
    8 directories
    11 executables
    1044 blocks used (approx)
    #

  • Executing create or replace procedure statement from plsql script

    Hi ,
    I want to execute create or replace procedure from pl/sql block without using execute immediate or dbms_sql, please let me know if feasible.
    Eg:
    declare
    begin
    create or replace procedure .....
    if v_temp = 4 then
    end if;
    end;
    Thanks for help.
    Regards,
    RK

    user588487 wrote:
    Actual requirement is I have .sql file which has Create procedure command in it
    and i have to conditionally execute the above .sql file so going for a pl/sql block.
    Eg:
    begin
    if variable1 <> variable2 then
    @xyz.sql -- contains create or replace procedure statement
    insert into tablexyz.....
    end if;
    end;
    Won't work. The PL/SQL code block (also called an anonymous block) is shipped from the client (e.g. SQL*Plus) to the database server. There it is parsed and executed.
    It cannot execute SQL*Plus code.
    There are 2 basic approaches to address this requirement.
    Method 1. Use PL/SQL and SQL to perform the conditional logic checks that SQL*Plus cannot. Use bind variables to "copy" the results between SQL*Plus and PL/SQL, use substitution variables to execute the conditional branch (as a script) in SQL*Plus.
    Basic example:
    SQL> --// bind variable for passing data to PL/SQL code and
    SQL> --// to receive data from PL/SQL code
    SQL> var status varchar2(100)
    SQL>
    SQL> declare
      2          function ExistsTable( tableName varchar2 ) return boolean is
      3                  i       integer;
      4          begin
      5                  select 1 into i
      6                  from    user_objects
      7                  where   object_type = 'TABLE'
      8                  and     object_name = tableName;
      9                  return( true );
    10          exception when NO_DATA_FOUND then
    11                  return( false );
    12          end;
    13  begin
    14          --// determine if table exists
    15          if not ExistsTable( 'FOOTAB' ) then
    16                  --// table does not exists and SQL*Plus client
    17                  --// needs to run the footab client script
    18                  :status := 'footab.sql';
    19          else
    20                  :status := 'do-nothing.sql';
    21          end if;
    22  end;
    23  /
    PL/SQL procedure successfully completed.
    SQL>
    SQL> --// use a substitution variable to determine what to do
    SQL> set define on
    SQL> col STATUS new_value SCRIPT
    SQL> select :status as STATUS from dual;
    STATUS
    footab.sql
    SQL>
    SQL> --// execute the relevant script (i.e. execute the conditional
    SQL> --// branch of the PL/SQL IF condition
    SQL> @ &SCRIPT
    SQL> --// file: footab.sql
    SQL>
    SQL> create table footab(
      2          id      number primary key,
      3          col1    number,
      4          col2    date
      5  ) organization index
      6  /
    Table created.
    SQL>
    SQL> --//eof
    // running the same steps when the table does exist
    SQL> --// bind variable for passing data to PL/SQL code and
    SQL> --// to receive data from PL/SQL code
    SQL> var status varchar2(100)
    SQL>
    SQL> declare
      2          function ExistsTable( tableName varchar2 ) return boolean is
      3                  i       integer;
      4          begin
      5                  select 1 into i
      6                  from    user_objects
      7                  where   object_type = 'TABLE'
      8                  and     object_name = tableName;
      9                  return( true );
    10          exception when NO_DATA_FOUND then
    11                  return( false );
    12          end;
    13  begin
    14          --// determine if table exists
    15          if not ExistsTable( 'FOOTAB' ) then
    16                  --// table does not exists and SQL*Plus client
    17                  --// needs to run the footab client script
    18                  :status := 'footab.sql';
    19          else
    20                  :status := 'do-nothing.sql';
    21          end if;
    22  end;
    23  /
    PL/SQL procedure successfully completed.
    SQL>
    SQL> --// use a substitution variable to determine what to do
    SQL> set define on
    SQL> col STATUS new_value SCRIPT
    SQL> select :status as STATUS from dual;
    STATUS
    do-nothing.sql
    SQL>
    SQL> --// execute the relevant script (i.e. execute the conditional
    SQL> --// branch of the PL/SQL IF condition
    SQL> @ &SCRIPT
    SQL> prompt Nothing to do...
    Nothing to do...
    SQL> Method 2. Move all "client scripting" to the server. You can still use .sql files. These need to contain valid DDL that can be parsed and executed. On the server, the .sql files are loaded into a table.
    This can be a physical load (e.g. using <i>DBMS_LOB.LoadFromFile()</i>). Or you can keep the .sql files on the server and use BFILE pointers instead to the files.
    You can now use execute immediate to execute the contents of a .sql file as a CLOB that was read from the table containing the .sql scripts.
    To be honest - I have used both methods extensively in the past and no longer bother using either. Table exists when running the table create script? So what. If the table should not exist, use server exceptions in SQL*Plus to cease processing and exit. If it does not matter whether the table exists or not, why be concern with running the script to create the table if the table already exists?

  • Replacement procedure

    Hi all,
    I am new to Apple. What is the normal replacement procedure for a Apple laptop?
    The call centre told me that I will have to go to the Apple Service Store first to get the Technician to proof the faulty part. And then I will get my replacement MBP. Is that right?

    mine had the right speaker issue, the cpu whine and the TmOP hardware error...called Apple...waited 2 weeks...heard nothing...called back and explained everything ...Tier 2 product specialist offered me a repair or replacement...I took the replacement and shipped it out this AM.

  • Disk Array 2530-M2 disk replacement procedure via CLI

    Hi,
    I wish to know the procedure to replace the Sun/Oracle Storage Disk Array 2530-M2's disk.
    From the manuals it can be seen that the expected way is via the WEB based GUI. But the problem is that we haven't installed that, we are using only the CLI based commands (CAM) .
    So it will be a great help if I can get any pointers in this regard. Awaiting eagerly.
    Thanks,
    Savvy

    If you want to see what the alarm looks like, you can run the following command on your CAM server:
    # ras_admin advisor -e <event type>
    /* `ras_admin` is under:
    /* Solaris: /opt/SUNWsefms/bin/
    /* Linux: /opt/sun/cam/private/fms/bin/
    /* Windows: C:\Program Files\Sun\Common Array Manager\Component\fms\bin\
    We have three type of PFA, Risk Low, Risk Medium, Risk High.
    Example for a 6180 (90.xx.xxxx):
    Event Code : 90.66.1026
    Event Type : 6180.ProblemEvent.REC_IMPENDING_DRIVE_FAILURE_RISK_LOW
    Severity : 0
    Sample Description : Impending drive failure for disk {0} (Low Data Availability
    Risk).
    Probable Cause : A drive is reporting internal errors that could cause the
    drive to fail. If the affected drive is an unassigned
    drive, it will not be available for volume configuration.
    If the affected drive is a Standby hot spare drive, it will
    not be available to take over for a failed drive.
    Recommended Action : Refer to the Service Advisor procedure for recovering from
    this problem.
    Event Code : 90.66.1025
    Event Type : 6180.ProblemEvent.REC_IMPENDING_DRIVE_FAILURE_RISK_MED
    Severity : 0
    Sample Description : Impending drive failure in Virtual Disk {0} (Medium Data
    Availability Risk), affected drive(s): {1}
    Probable Cause : A drive is reporting internal errors that could cause the
    drive to fail. If this drive fails, the volumes in the
    volume group will become degraded.
    Recommended Action : Refer to the Service Advisor procedure for recovering from
    this problem.
    Event Code : 90.66.1024
    Event Type : 6180.ProblemEvent.REC_IMPENDING_DRIVE_FAILURE_RISK_HIGH
    Severity : 0
    Sample Description : Impending drive failure in Virtual Disk {0} (High Data
    Availability Risk), affected drive(s): {1}
    Probable Cause : A drive is reporting internal errors that could cause the
    drive to fail. If this drive fails before you follow the
    recovery steps, the volumes in the volume group will fail
    and all data on the volumes will be lost.
    Recommended Action : Refer to the Service Advisor procedure for recovering from
    this problem.

  • Unity, hardware replacement procedure

    Hi,
    I need Unity7.0 hardware replace to new one and follows the instruction,
    1. old server, run DiRT backup and disconnect the old server from production
    2. new hardware, install OS and join to domain
    3. install Unity application
    4. run DiRT restore on the new hardware
    Q1) when the new hardware join to domain (step 2), join as same host name of old server or new one which is unique on the domain?
    -if I need same host name of old Unity server, I need delete the old server host name on the domain controller to able to join the new hardware with same host name (domain controller is not allow joining the new hardware with same host name if already exist same host name which is for old Unity server)
    -if I can join the new hardware with different host name, can I DiRT restore to the new hardware? if yes, automatically mapping all Unity database to new hardware while DiRT restore then?
    Q2) when I roll back to old Unity server in the case something problem on the new hardware, can I just reconnect the old Unity server to production with disconnecting the new hardware?
    -I think its depends on the answer of Q1 that the new hardware with same host name versus different host name
    Advise please,
    John

    Hello
    How are you?
    Answers are inline below:
    Q1: DIRT restore only requires that the system be on the same exact version of unity so the name can be different when installing a new server. Dirt will sync all the users to the new server.
    Q2: There is no documentated procedure for this but I suspect you need to do the same steps you did to setup the new hardware.
    install unity cleanly on that old server then use the dirt backup to restore to the old hardware. You will need a clean install on that system in order to run dirt. And dirt needs to run in order to sync the users back to this unity server.
    Hope this helps
    Thank you

  • 600X Drive Replacement Procedure

    I have a 600X with a 20GB drive which is starting to make noise. I would like to replace the drive by cloning the contents to a new drive. I have a 2nd drive option for the accessory slot but 1) I'm not sure what PROCEDURE/SOFTWARE would be used to clone the drive. The system is running Windows NT and is used for developing a legacy application. Also, 2) do you know where I have purchase a replacement drive?
    Thanks.

    I would recommend using Easeus Disk Copy to clone the hard drive. It is extremely easy to use, and it's free.
    You can purchase a hard drive online. You need to purchase a PATA hard drive.
    For removing the hard drive, you can refer to the HMM.
    \\ I do not respond to PM regarding individual tech support. Keep discussions in the forum for the benefit of others //

  • Battery Replacement procedure

    What is the proper procedure to follow to get a new battery?

    I would make an appointment online for the Genius Bar or call Apple if your not near an Apple retail store they should be able to assist you with your battery issue from my understanding I doubt the Apple retail stores make actual repairs in the store they'll just give you a replacement iPhone.

  • NAC replacement procedure

    Hi Experts ,
    Our NAC 3315 is not working due to some hardware failure . So we are going to replace that .Hence kindly confirm the steps to take backup and procedure to install it?
    Thanks,
    Regards,
    Vijay.

    Since there seems to be no method of performing a CLI backup on the 3315 appliance, we must go the route of the workaround. This may seem a bit out there, but is the only way that I can see a backup being created without using the WebGUI.
    First and foremost, do you have any IP access to the NAC appliance?
    If not, quit reading and contact TAC.
    If you have setup backups in the past, they are stored in the /guest/bakcups directory and can be transferred via FTP, SFTP, etc..
    If not, then download an upgrade file that is newer than the release you are running (if you are running the latest release, download the upgrade file to get to that release). In this case, v2.1.  Transfer the file to your repository and initiate the upgrade on the NAC Guest server.
    Note Before the 2.1 upgrade, a backup snapshot of the existing 1.x or 2.0.x database is automatically created and stored in the /guest.bak directory. In the event of an upgrade failure, Cisco recommends making a local backup of this directory.
    http://www.cisco.com/en/US/docs/security/nac/guestserver/release_notes/21/gsrn21.html#wp111257
    Otherwise, I am at a loss on this issue.
    Please Rate Helpful posts and mark this question as answered if, in fact, this does answer your question.  Otherwise, feel free to post follow-up questions.
    Charles Moreton

  • Satellite 1410 dvd rom / cdrw combo replacement procedure

    How do you replace the dvd/cdrw combo drive in a Satellite 1410?
    There is only one visible screw on the bottom that is fastened to the drive. 
    I also removed the hard disk and battery, and the other covers on the bottom and did not find any other screws. 
    I removed the keyboard and did not find any additional visible screws that hold in the cd drive.
    Does anyone know the removal procedure, or have a link to a maintenace manual?

    lahave wrote:
    How do you replace the dvd/cdrw combo drive in a Satellite 1410?
    There is only one visible screw on the bottom that is fastened to the drive. 
    I also removed the hard disk and battery, and the other covers on the bottom and did not find any other screws. 
    I removed the keyboard and did not find any additional visible screws that hold in the cd drive.
    Does anyone know the removal procedure, or have a link to a maintenace manual?
    Toshiba doesn't make maintenance manuals available to anyone other than ASPs.
    Unofficial instructions are at:
    http://www.irisvista.com/tech/laptops/Toshiba1415/sat1415_1.htm

  • Merge Fields in Word Templates are still showing after replaceing procedure

    Hi all,
    we are using CRM 7.0 and we are using the BAdI CRM_OFFICE_TEMPLATE_BADI to replace the Merge Fields which are placed in Word  Template!
    Normaly it works very fine, but in some cases if there is no value to fill into the merge field, the merge field is shown like it is created in the template.
    In most of the other cases the not replaced merge field is not shown in the created document.
    Does anybody has got the same issue? If yes, how do you solve it?
    Every answer is very welcome!
    Best regards
    Michael

    Hi Michael / Carsten,
    I have some problems in implementing CRM_OFFICE_TEMPLATE_BADI. I have redefine method for get_attributes :
    method IF_EX_CRM_OFFICE_TEMP_BADI~GET_ATTRIBUTES.
      DATA: ls_attr TYPE CRM_KW_TEMP_ATTR,
            lt_attr TYPE CRM_KW_TEMP_ATTR_TAB.
    *  IF iv_wsname = 'ZTESTQUO001'.
        ls_attr-NAME = 'CustomAddr'.
        ls_attr-DESCRIPTION = 'Custom Address'.
        INSERT ls_attr INTO TABLE lt_attr.
        ct_attributes = lt_attr.
    *  ENDIF.
    endmethod.
    and redefined method get_values also:
      DATA: ls_val TYPE CRM_KW_TEMP_VALUE,
            lt_val TYPE CRM_KW_TEMP_VALUE_TAB.
    *  IF iv_wsname = 'ZTESTQUO001'.
        ls_val-NAME = 'CustomAddr'.
        ls_val-VALUE = 'Sudirman Street 20' .
        INSERT ls_val INTO TABLE lt_val.
        ct_values = lt_val .
    *  ENDIF.
    The field has shown when I click "Call BADI" on Document templates, but I couldn't click CustomAddr field (no hyperlink in it). could you explain to me what steps are wrong ? How to make this field shown in the schema structure in Microsoft Word 2007 ?
    Your help is greatly appreciated.
    Thank you.
    Agus

Maybe you are looking for

  • Creation of new opertaion

    Hi , I Have an requirement where i need to create a Custom Operation which reads data from one field in IT2002 and the value should refernced  to HRS .. Because we have an PCR(TIME MANEGMENT ) which genrates the quotas .. The std operation HRS=PNUM i

  • Opening pdf files stored on server

    Hi We have an application in which we display pdf files stored on the server. Pdf files opens in a new browser. User selects the invoice number from a list and based on the invoice selected, we get a pdf file from R/3 system. This file is stored in a

  • Multicash - Outgoing Payments

    Hey guys, Does anyone have any documentation on how Multicash works with SAP i.e. configuration, file formats, interfaces (if applicable).  This is in relation to outgoing payments and not incoming bank statement (alot of entries on th later on vario

  • Reading voltages into a USB6210 using CVI

    I have had this board working ok until I connected it to some other equipment. the first 3 inputs are connected to load cell amps and the fourth to measure the output of the test machine appling load to the load cells. Its when I conect to this test

  • Postings to Non Leading Ledger

    Hi, My client requires 3 different non leading ledgers for management reoporting & stauatory reporting along with the leading ledger. For that i have created 1L,2L & 3L as non leading ledger in the system. Now the purpose of different ledgers is to p