Best practise to change new SUP on 6509

Best practise to change new SUP on 6509, currently we have dual sup. is it we need to power down the switch and install ne sup?

Hi,
Below are few methods which you can choose:
It really depends on which Sup you want to replace ( I mean the one which is currently Active or the Standby sup).
Lets go step by step:
1st-- Think you want to replace the Standby Sup in the working chasis:
Answer: You need not have to worry, just remove the Standby Sup and install the new sup , Make sure the standby sup is running the same software version which Active has.
2nd- Replacing the Active Sup:
Answer: To avoid any distruption, failover to the Standby Sup so that the STandby Sup takes over the active role and then proceed with replacing the Active Sup.
Few reference which  might help you:
https://supportforums.cisco.com/discussion/11640021/replace-failed-sup-6500-sup32
http://www.cisco.com/c/en/us/support/docs/switches/catalyst-6500-virtual-switching-system-1440/109334-replace-vss-sup-proc-v1.html
HTH

Similar Messages

  • Best practise to add new domain controller 2008r2 and de-promote 2003 x86

    Depending on the size of the environment and the complexity determines where the roles should be held.The PDCe role should be held on a machine that has the better hardware. It will resolve any password conflicts and account lockouts. It also keeps the time clocks synchronized across the domain.The other roles are responsible for kind of basic housekeeping across the domain and forest. Such as the Domain Naming master it is responsible for name changes across the domain.The Schema Master which is responsible for updates to the directory and the RID master which issues pools of IDs for DCs to issue for new users or computers.The infrastructure master is responsible for keeping multiple domains and forests in sync. The infrastructure master does not do a lot in a single forest single domain environment and can be placed on any DC....

    Also if you are upgrading why not go right to 2012. 
    Might save a few years on having to upgrade again.
    Here is a great guide from MS
    http://community.spiceworks.com/how_to/57636-migrate-active-directory-from-server-2003-to-server-201...
    

  • Best Practises for a New Repository

    Hello All,
    I am about to begin development of a brand new repository.
    I was wondering if there are any guidelines I can follow right at the onset to ensure good performance and an easy to maintain repository/catalog.
    I don't want to keep performance tuning as the last step, but want to design keeping performance as a key requirement.
    Thanks!

    Hi...
    check these..
    http://education.oracle.com/pls/web_prod-plq-dad/show_desc.redirect?dc=D53149GC10&p_org_id=1001&lang=US&source_call=
    http://www.oracle.com/technology/obe/obe_bi/bi_ee_1013/saw/saw.html
    http://www.biconsultinggroup.com/training.asp?CategoryID=291&SubCategoryID=296
    http://www.biconsultinggroup.com/knowledgebase.asp?CategoryID=193&SubCategoryID=236
    Thanks & Regards
    Kishore Guggilla

  • Best practise to detect changes between two tables

    Hi,
    I try to write a query, that shows me the differences between a table in my DWH and the table in the source system. It should show me new, deleted and updated rows.
    My approach is to do a full outer join based on the key and then check if any of the columns changed (source.A!=DWH.A or Source.B!=DWH.B, etc.) to get the updated rows.
    My problem is now that my table has millions of rows und more than 100 columns (number, nvarchar, etc.). So the query takes hours.
    Is there any best practise solution to optimize that query, by rewriting it, setting indexes or using hash code? I played around with hash code, but it wasn't really faster.
    (BTW: CDC, etc are not allowed)
    Thanks for any ideas!

    890408 wrote:
    So i guess I can't use the merge statement, as it is just for SCD1.
    Yes you can:
    create table products(
                          name varchar2(20),
                          price number,
                          effective_from date,
                          effective_to date,
                          active number
    insert
      into products
      values(
             'Samuel Adams, 6-pack',
             6.99,
             null,
             sysdate - 51,
             0
    insert
      into products
      values(
             'Samuel Adams, 6-pack',
             7.29,
             sysdate - 50,
             null,
             1
    create table product_updates(
                                 name varchar2(20),
                                 price number
    insert
      into product_updates
      values(
             'Samuel Adams, 6-pack',
             7.49
    insert
      into product_updates
      values(
             'Corona, 6-pack',
             6.49
    select  *
      from  products
    NAME                      PRICE EFFECTIVE EFFECTIVE     ACTIVE
    Samuel Adams, 6-pack       6.99           13-OCT-11          0
    Samuel Adams, 6-pack       7.29 14-OCT-11                    1
    select  *
      from  product_updates
    NAME                      PRICE
    Samuel Adams, 6-pack       7.49
    Corona, 6-pack             6.49
    merge
      into products p
      using (
              select  name,
                      price,
                      'update' flag
                from  product_updates
             union all
              select  chr(0) || name name,
                      price,
                      'insert' flag
                from  product_updates
            ) u
      on (
          p.name = u.name
      when matched
        then update
                 set effective_to = sysdate,
                     active = 0
               where active = 1
      when not matched
        then insert
               values(
                      substr(u.name,2),
                      u.price,
                      sysdate,
                      null,
                      1
               where flag = 'insert'
    3 rows merged.
    select  *
      from  products
    NAME                      PRICE EFFECTIVE EFFECTIVE     ACTIVE
    Samuel Adams, 6-pack       6.99           13-OCT-11          0
    Samuel Adams, 6-pack       7.29 14-OCT-11 03-DEC-11          0
    Samuel Adams, 6-pack       7.49 03-DEC-11                    1
    Corona, 6-pack             6.49 03-DEC-11                    1
    SQL> SY.
    SY.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                       

  • Best practise to versioning Web Service WCF

    I've a web service SOAP developed with WCF, there is a best practise to versioning it? when I change the contract I don't want to update all the client's referiments but I want simply publish a new version that coexists with the old.
    STUDY-CASE: I've a web service with one endpoint, all clients point to it, soon I will have to change the contract and I search a way to avoid that all clients crash. I know two ways to avoid this:
    publish the web service with the new contract in another server
    create a new file svc with the new contract
    there are other ways?

    It depends on many things such as what changes you are going to make, what platform your clients are built on, what's your change tracking policy, etc.
    For example if you just want to add a new property to a data contract or a new operation to a service contract it's safe to add it to your current implementation as long as the clients are version tolerant (DataContractSerializer is version tolerant) and it
    complies with your change tracking policy. However you would better stick to strict versioning strategy which requires creating a new contract and exposing it with a new endpoint in case the changes are more serious.
    I suggested reading these articles:
    Versioning Strategies
    Best Practices: Data Contract Versioning
    This should help you to choose the right version strategy and provide your with the best practices to follow.

  • Best Practise for rebooting ISE Nodes?

    Hello Community,
    I administer an ISE installation with two nodes (I am not an ISE Specialist, my job is just to manage the user/mac-adresses... but now I have to move my ISE Nodes from one VMWare Cluster to another VMWare Cluster.
    (Both VMWare environments are connected to our enterprise network, but are different environments. vMotion not possible)
    I would shutdown ISE02, move it to our new VMWare environment and start it again.
    Than I would do this with our ISE01 Node...
    Are there any best practises for doing this? (Shutdown application first, stopl replikation etc)?
    Can I really simply reboot an ISE Node - or have I consider something bevor I doing this? After I doing this?
    Any tasks after reboot?
    Thank you for any answer!
    ISE01    
    Administration, Monitoring, Policy Service    
    PRI(A), SEC(M)
    ISE02    
    Administration, Monitoring, Policy Service    
    SEC(A), PRI(M)

    There is a lot to consider here.  If changing environments means changing IP Address and IP Scopes, then your policies, profiles, and dACLs would also have to change among other things.  If this is the case, create a new ISE VM in the new environment using the built in evaluation license and recreate the deployment from the old environment using the addressing scheme of the new environment.  Then spin-up a new Secondary node and register it on the Primary.  Once this is done, you can re-host the license from your old environment onto your new environment.  You can use this tool to re-host:
    https://tools.cisco.com/SWIFT/LicensingUI/loadDemoLicensee?FormId=3999
    If IP Addressing is to remain the same, it gets simpler. 
    First, and always, perform a configuration and operational backup.
    If downtime is not an issue, or if you have a maintenance window of an hour or so: Simply shut down both nodes.  Transfer them to the New Environment and turn them on, Primary Node first, of course.
    If downtime is an issue, shut down the Secondary Node and transfer it to the New Environment.  Start the Secondary Node and when it is up, shut down the Primary Node.  Once services on the primary node have stopped, promote the Secondary Node to Primary Node.
    Transfer the OLD Primary Node to the New Environment and turn it on.  It should assume the role of Secondary Node.  If it does not, assign that role through the GUI.
    Remember, the correct way to shut down an ISE node is:
    application stop ise
    halt
    By using these commands, the risk of database corruption decreases by about 90% (Remember to always backup).
    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

  • I18N - Translation Best Practises?

    Hi.
    I always wanted to ask this, now my level of desperation is high enough again. Are there any translation best practises?
    Background: I've developed countless multi-language applications on NW2004s (7.0).
    I always tried to do the translation job at the end of the development phase, because I have the following pain points:
    1) Initial translation is easy (but really a joke): copy xlf file, rename it, translate contents, etc. That's fine. But if I add further elements, e.g. adding some UI elements to a view's layout, it's pain to add the deltas to the other xlf files. There is no automated way of adding the missing keys, at least I do not know a tool for eclipse. Is there one? Does SAP plan to provide such a tool? What's your best practise when it comes to translation of deltas?
    2) What I do is the following: I check out all xlf files and their corresponding property bundles (for what are they checked in anyways?), add the missing keys to all xlf files and generate the property bundles with right mouse click -> I18N tools -> Create properties file
    When I rebuild the web dynpro and test it, I often get a wild mixture of e.g. english and german texts on the same view. Even if all files are correct. Does anybody know this problem and can explain it?
    Thanks, Karsten

    Karsten,
    That is the standard approach for the Translations.
    1) - With my best of knowledge, there are no tools to copy the keys for .xlf files for other languages than english. You can write a simple java application, where it compares source and target files and inserts the missing keys in the .xlf file.
    2) May be the keys are not mapped properly to the new elements. That is the reason, you are seeing some in english and some in other languages. We will have the same problem quite often.
    From your NWDS - go to package Explorer - go your project - src folder.
    Open your .xlf file in Text Editor(Not in S2X editor)- copy the new element from english to german(.xlf ) file , change the text and rebuild the application.
    Now you will see correct results. Usual reason for this, missing keys or misplaced keys.
    these days, i am working new approach for translation, let me know how is this approach.
    Need your opinion on Web Dynpro Translations Approach
    Regards,
    Sridhar

  • [IS-Retail] - IS Retail + Best Practise Installation

    Hello all,
    I would like to know where i can made a start on installing the IS Retail with Best Practises on my own machine/laptop, which is purely for self-study and understand the basis purpose. I have tried to read a number of document regarding to the IDES Demo, Solution Manager and Best Practise Installation guide in the service market place, but it still got nowhere I can make a start on it.
    Highly appreciate if anyone can give me some lights or share your thoughts here. Thanks.
    Please forgive me if I ask a silly question here.....
    Regards,
    Tony

    Hi my answers for your qestions as follows
    1) In IS Retail Site is a master data, but to create Site/DC/stores need to do some config in SPRO, Like...
    Number ranges for Sites, Account groups, create DC and site profiles and assign account groups to them.
    then you Create DC or site using WB01, now site master data will consider.
    2) yes you should have all Sites in golden client ( i am not clear this questn)
    3) After golive better need to create new stores on devleopment in then export (using WBTI/WBTE) to prodcution, in case any future changes requires to do something on stores like assign/delete merch category etc... you can do its easliy to aviod data mismatch in the production.
    regards
    satish

  • Oracle Tuxedo Security Best Practises

    Hi,
    I am new in Oracle Tuxedo. I searching about Tuxedo Security best practises. I found many informations in Tuxedo Documentation but if anybody have more informations, i am very interested.
    Such as:
    - ULOG files permissions => The Tuxedo administrator must not have write acces on this files but if I remove this right, does Tuxedo can write in this files ?
    - tlisten.pw => What is the encryption type and can i add only one user password or more ? It's true that there is no user login ?
    - tpsysadm and tpsysop => What do they serve ? and where are stored their passwords ant how can i change it ?
    - Use of LLE/SSL => What is the best practise, use of LLE and SSL or just LLE, just SSL ?
    Thanks a lot !
    Best regards

    Hi,
    welcome to the wonderful (and sometimes byzantine) world of Tuxedo!
    You have a couple of interesting questions and I'll try to shed some light on some of them. Disclaimer: I'll assume that you run Tuxedo on some flavor of Linux or Unix. If you're running on Windows, some of these thoughts won't make much sense to you, sorry about that.
    When I install the Tuxedo software, I usually let a dedicated user (e g "tuxedo") be the owner of the installed software and files (include files, FML field definitions and so on).
    When I create a Tuxedo application, I have a separate user account (e g "some_application") running each application. In this way, an application running wild cannot overwrite or delete any Tuxedo system files, neither another application's files, only its own files, due to file system permissions. In this case, "some_application" will execute your Tuxedo servers and also need to be the owner of the directory where the ULOG will reside (remember that the application need to be able to create a new file every new day).
    The tlisten.pw file is not for "user" passwords, it's primary use is to authenticate the different (physical) machines working together in a bridged (clustered) Tuxedo application. It is also used in conjunction with TSAM monitoring, although I have no first-hand experience with that (yet). I've had problems trying to have more than one secret in the tlisten.pw file, your mileage may vary...
    When it comes to tpsysadm and tpsysop, you should think of them more as roles rather than actual users. These roles may perform special actions (such as starting/stopping/re-configuring) in your application. Depending on your security settings, any user may (try to) act as tpsysadm and/or tpsysop. Any user passwords you may have are connected to the actual users rather than the roles tpsysadm or tpsysop. All this depends on your settings for SECURITY and AUTHSVC in your ubbconfig. There is no simple/easy answer here, I'm afraid... it all depends on how you have set up your security (USER_AUTH is a good start, but you need to supply an AUTHSVC in that case).
    When it comes to encryption, my experience is only with LLE. It simply works. Using SSL I suspect there will be more challenges setting up certificates and such things. The way I understand it you either use LLE or SSL for a given type of communication (i e WSL or TDOMAIN), you can't use both simultaneously.
    Hope this helps and I may be able to elaborate further if there's a particular area that seems particularly foggy :-)
    /Per

  • Best practise in SAP BW master data management and transport

    Hi sap bw gurus,
    I like to know what is the best practise in sap bw master data transport. For example, if I updated my attributes in development, what are the 'required only' bw objects should I transport?
    Appreciate advice.
    Thank you,
    Eric

    Hi Vishnu,
    Thanks for the reply but that answer may be suitable if I'm implementing a new BW system. What I'm looking for is more on daily operational maintenance and transport (a BW systems that has gone live awhile).
    Regards,
    Eric

  • Advice or best practise information about 1 or 2 clients in SAP R/3 DEV

    I'm searching for advice or best practise information about clients in a SAP R/3 development system.
    Reason for this is that we are up to refresh our SAP R/3 development system and up to now we have two clients on it:
    -     One customizing/development client without master data, transaction data et cetera
    -     One local test client with master data, transaction data and so on
    One of our developers suggested to only have one client on development, where we could customize, program and test. So that client would be with master data, transaction data et cetera.
    What would be your advice or what would be best practise for the development system: 1 client (with data) or 2 clients (one clean customizing and one with data). And what are the most important reasons to do it so.
    Maybe there is already some good (SAP) information about this specific subject, but up to now I havenu2019t found it yet.

    Maybe I've asked my question too broad. I'll try to narrow it down.
    Up to now we always had two clients on our SAP R/3 development system:
    - Client 200 - Customizing/development only. No other data in this client
    - Client 400 - Local test client with master data and transaction data. New customizing is copied from client 200 to test
    The reason for having those two clients are:
    - It feels someway good to have a customizing-only client
    - We've always done this before
    A developer suggested to only have one client in our SAP R/3 development system for the following reason:
    - You'll never need to copy the customizing (tr.SCC1) first to be able to test it
    - You can work in one client and don't need to login in the other client to test it (for example: ABAP reports)
    - For customizing of easy setting (for example producthiërarchie, as we don't test it everytime in client 400) it is possible to forget copying it into client 400 (test client). With one client, you can not forget it
    The reasons of this developer seems very valid and up to now we haven't found a convincing/compelling reason to make a good choice for one or two clients.
    Please, try to convince us with good reasons to choose for one or two clients.

  • Experiences on SAP Best Practise packages?

    We are considering applying a specific SAP Best Practise package on top of ECC6. It will be a new ECC6 installation.
    I have read the BP faq pages http://help.sap.com/bp_bw370/html/faq.htm and read note 1225909 - How to apply SAP Best Practices - and the specific note and the specific installation guide for required Best Practise package.
    I understand that applying a BP package is something not that easy but should speed up the implementation process.
    If you have been participating in a project that implemented SAP Best Practises on ERP, would you please share your experiences with me.
    Here are some topics for discussion:
    (BP=SAP Best Practise package)
    BP implementation could make constraints to your future EHP or SP upgrades, while BP is tightly linked to certain EHP and SP-level?
    SAP support?
    Installation process including config steps according BP installation guide is longer than usual, while there can be multiple activation and configuration steps done by others than basis consultants?
    BPs are country dependent. What if your application is used multinationally?
    What if you later find BP unneccessary?
    generate difficulties in the beginning but did considerably speed up reaching the final goal compared to ECC6 without BP.
    traps to fall in?
    typical issues that basis staff has to notify when preparing/installing a ERP system to be with BP?
    positive/negative things
    I am not saying above statements are true or false. Just wanted to charge you giving comments.
    Br: KimZi
    Edited by: Kimmzini Siewoinenski on Aug 11, 2009 8:35 PM

    Hi,
    Make sure your web service URL correct in Live Office connection and also in Xcelsius data manager.
    Did you check all connection in refresh button proprties? you may try selecting "Refresh after component are Loaded" in Refresh button properties Behavior tab.
    I think Xcelsius refresh are serial refresh so it may be possible that first component refresh is still in progress but you are expecting other component to refresh.
    Click on "Enable Load Cursor" in data manager's Usage tab, it will give you visibility of refresh. If anything refreshing you will see hour glass.
    Cheers

  • New super router now shoutcast not working in firefox but does in chrome. Problem?

    Updated my connection to Fibre so have new super router (still ADSL I think). Now my Internet access - no problem with all my other sites. Shoutcast displays OK but no sound, analyzer shows flat line. No other changes have been done on computer. What can be the problem?
    cheers Omhie

    Hi omhie2,
    It is possible to check how Firefox connects to the internet: [[Advanced settings for accessibility, browsing, system defaults, network, updates, and encryption]] specifically [https://support.mozilla.org/en-US/kb/advanced-settings-browsing-network-updates-encryption#w_network-tab this section] will help troubleshoot the network that may not be detected.
    After trying each one, doe Firefox connect to the new connection?

  • Newbie Quesion: Best way to change colour of a movie

    Hi,
    Could someone tell me the best way to change the colour of
    one element of a
    movieclip in AS2?
    Say for example I had a filled white circle in the middle of
    a black square,
    how can I change just the colour of the circle?
    I have tried this.myColor.setRGB( color ); but that sets the
    entire clip to
    be of one colour. Do I need ( as I suspect ) one clip on top
    of another or
    is there any way of keeping details of the clip being
    changed?
    TIA
    Wil

    Cheers jdh,
    This is one method I'd considered.
    I'll give it a bash.
    Wil
    "jdh239" <[email protected]> wrote in
    message
    news:ens1vd$ahn$[email protected]..
    > Don't know if this will help, but this code changes the
    color of my
    > "LOADING"
    > text while it is loading. Should have the essential code
    to do what you
    > are
    > looking for.
    >
    > Make the white circle a movie clip and pick the
    following code apart to
    > get it
    > to change colors:
    >
    >
    >
    > stop();
    > loading.gotoAndPlay(1);
    > import flash.geom.ColorTransform;
    > import flash.geom.Transform;
    > var colorTrans:ColorTransform = new ColorTransform();
    > var trans:Transform = new Transform(loading);
    > trans.colorTransform = colorTrans;
    > loadI = setInterval(loadF, 100);
    > function loadF() {
    > percent =
    Math.floor(_root.getBytesLoaded()/_root.getBytesTotal()*100);
    > if (percent<=39) {
    > colorTrans.rgb = 0x0000FF;
    > // blue
    > trans.colorTransform = colorTrans;
    > } else if ((percent>39) && (percent<60)) {
    > colorTrans.rgb = 0x00FF00;
    > // green
    > trans.colorTransform = colorTrans;
    > } else if ((percent>60) && (percent<80)) {
    > colorTrans.rgb = 0xFF8000;
    > // orange
    > trans.colorTransform = colorTrans;
    > } else if ((percent>80) && (percent<99)) {
    > colorTrans.rgb = 0xFF0000;
    > // red
    > trans.colorTransform = colorTrans;
    > } else if (percent>=99) {
    > clearInterval(loadI);
    > _root.gotoAndPlay(16);
    > } else {
    > loading.gotoAndPlay(1)
    > }
    > }
    >

  • BEST PRACTISE on users deletions HR/SU01

    Hi
    we use CUA/SSO.
    The records are fed from HR records and sent to Active Directory (AD) 
    AD brings backs the records and creates/changes users in SU01
    A function module populates the CVR (timesheet) parameter dependent on whether you are an employee or a contractor 
    Occasionally, our HR department request records to be deleted from the SAP Support team - for example if the employee or contractor hasn't in fact joined the company.
    Until some time ago, the deletion was causing problems because:
    a) the record does not get deleted in AD and there is  no way to send the deletion across after
    b) when AD tries to reprocess that specific record, LDAP connector will not find it as HR record so what happens in SU01 for some reasons, the VALID from field gets wiped out and the CVR parameter for Timesheet also...
    We have changed the process for the deletion however, I would like to ask if you know what is the best practise for this?? HR want to delete the record so it can be re-utilised
    I cannot delete those records from UMR unless I am 100% sure they have never used the system (will have to check that)
    I hope I have provided enough info on what the issue is..
    Thank you
    Nadia

    Best practice is not to delete.
    > HR want to delete the record so it can be re-utilised
    So many people with the same name? Perhaps a suffix of 2 numbers when the ID naming convention produces a clash. Besides, do your AD admins not want unique names in the AD as well?
    E.g. (just an imperfect example)
    MUSTERMA = Alfred MUSTERMan
    MUSTERMM = Manfred MUSTERMan
    MUSTER01 = Mechtilde MUSTERMuller
    > I cannot delete those records from UMR unless I am 100% sure they have never used the system (will have to check that)
    Surest way is to determine that they have never logged on before. But that does not exclude that records might exist for them, which may eventually do a "user existence check" to be read. One such example is the Security Audit Log, e.g. there may have been failed login attempts.
    Good luck,
    Julius

Maybe you are looking for

  • Problem in sales order replication from CRM to R/3

    Hi experts As per the best practices I have done number range setting and  other settings for sales order transction in both CRM and R/3 system.Though few errors the sales order doc is saved in CRM but it is not replicating to R/3 system.Can anybody

  • Report or FM to Upload and save a file to SAP

    Hello All, I have a requirment to upload a file and save it into SAP ( Something similar to attaching a Document to a standard SAP transaction say IE01/IE02 transaction ). I want to store a document for each record of an ALV grid report. That is, eac

  • Custom Infotype error in upgrade.

    Hi, We did a upgrade from 4.6C to 5.0. When we are doing syntax check for one of the program which has used custom infotype 9002 it is giving following error "Include report "%_HR9002" not found." What could be the reason for this ?

  • Balance Sheet and Profit and Loss

    Dear experts, I've posted a thread just like this but I've closed it, because the info needed changed. Now I open this one so it will be easier to follow. I need to extract data from tables BKPF and BSEG. So I thought in extractor 0FI_GL_4. This mean

  • Solution Manager 7.1 IT Service Management: IRT, MPT new status

    Hello everyone, I am wondering, if  in SAP Solution Manager 7.1 IT Service Management I can customize new status into SLA measurement, for example 'Customer action' duration time at Web browser (similiar fuctionality as IRT(The initial response time)