Convert Local to Global Policy

Hello,
I am trying to convert a local boot policy (or any for that matter) to a global policy.  Once I choose to "Use Global", it goes into a "Pending Global" state and never makes it to the "Global" state.
This is occurring from 2 different UCS domains.
I am using the latest UCS Central and 2.2.1c is installed on the FIs and IOMs.
Thanks.

Turns out there was a local policy that was named the same as a global policy that was holding things up.  Found mention of it in the DME log from a tech support bundle.

Similar Messages

  • Local attributes - global attributes tradeoff

    Hi, MDM experts.
    Can you, please, share your experience on business partners repository modeling.
    I build custom business partners repository. While creating it I came to a question - whether local system attributes of business partner should be modelled in that repository?
    Intrinsic attributes like Full Name, State Identity Number and so on should be definitely modeled. Attributes specific to our organization but those that span many of our systems should also be modeled I think.
    But what's about some specific attributes that are relevant only for one of the systems being integrated? To be concrete, imagine we have SAP ERP system as one of the systems in landscape and such attribute of our business partner as 'Purchasing organization'. In our case this table is SAP ERP specific and none of our other systems have such entity in their data model.
    <b>The question is - is it reasonable to have local system attributes and lookup tables implemented in central MDM repository?</b>
    If yes then isn't our repository going to be overloaded with all that local attributes and lookup tables of every client system?
    If no, then how should process of central creation of business partner look like? The problem is in this case Creator won't be be able to assign all attributes he would like to and he will have to login to each of local system and assign these values after central creation. Moreover, client systems can refuse to create new record automatically in case some of attributes are missing. For example such situation is typical for Idoc inbound processing .
    Have you any suggestions on streamlining the data model and BP central creation process ?
    Regards,
    Vadim Kalabin

    Hi vadim,
    These are my thoughts on your issue.
    I feel both the attributes should find place in the same repository.
    This is not going to overload the system. In some typical MDM Implementation the volume of Main table records will very huge and the Local and global attributes will only occupy a less share only on the total records.
    Also the practice is that MDM DB Server and the core server runs separately.
    Pl find if this Article is use for you.
    <a href="https://www.sdn.sap.comhttp://www.sdn.sap.comhttp://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/d0d8aa53-b11d-2a10-aca2-ff2bd42a8692">MDM Data modelling do's and dont's</a>
    Regards,
    Vijay

  • UCSM 2.1 Local disk configuration policy and raid volumes

    Hi!
    If i use Any configuration as local disk configuration policy and do the raid settings directly to the RAID-cards, am i able to have two raid volumes on C-series under UCSM management?
    What i would like to do with C240M3 with 6 local disks: 2 disk raid1 and 4 disk raid0
    So i would use:
    "Any Configuration—For a server configuration that carries forward the local disk configuration without any changes."
    As UCS servers Raid guide indicates:
    "Maximum of One RAID Volume and One RAID Controller in Integrated Rack-Mount Servers
    A rack-mount server that has been integrated with Cisco UCS Manager can  have a maximum of one RAID volume irrespective of how many hard drives  are present on the server. "
    Is this paragraph limitation of GUI not able to set several volumes or hard fact without "Any configuration" workaround?

    I did some testing about this issue:
    Changed Local Disk Configuration to "Any Configuration"
    Two virtual disks can be created from Raid card's WebBIOS
    These disks are visible to RedHat Installation.
    UCSM shows Any configuration for the Storage Local Disk policy
    Actual Disk Configuration has faulty information - WebBios is the only place to check the RAID status?
    Next step: I'll do the same for the production

  • Adding a Local disk Config policy

    I have a question regarding whether its possible to have more than one Local Disk configuration policy
    My scenario is I have just purchased 4 UCS 220 M3S which have SD cards instead of local drives and we have an existing UCS blades with a policy that uses local disk Raid 1 and I need to add to this config so Flex flash state enabled but I am a bit wary of making any changes that may impact production Chassis system.
    There is a policy that we use as default that uses the Local Disk policy Raid 1 settings, and the service profile template I have created for UCS 220s  is a copy of  our production blade policy so If I make a change on the UCS 220 Service profile to use a different local Disk policy which would be for SD Card will it have any impact ??
    Any help would be greatly appreciated :)

    Hi
    Just enabling the flex flash on your local policy doesn't cause any impact on any of your servers so it is safely to apply it even though this policy is used by your c and b series servers. 
      But if you want to use a new policy  and you only want to add this change to your c-series server, you need to make sure that your service profiles are not bound to an updating template because you will need to unbind them before you can apply make any changes to the service profiles.
    to answer your question:
    "its possible to have more than one Local Disk configuration policy?"
    it is possible to have multiple local disk policies created in UCSM, but you can't have multiple policies associated with a template.
    Let me know if this helps.

  • Local Vs Global Index on partitioned table?

    Hello All,
    DESC PS_P1_EMP_QRYSCRTY
    Name Null? Type
    EMPLID NOT NULL VARCHAR2(11)
    EMPL_RCD NOT NULL NUMBER(38)
    ROWSECCLASS NOT NULL VARCHAR2(30)
    ACCESS_CD CHAR(1)
    MY SQL QUERY IS:-
    SELECT DISTINCT OPR.OPRID , EMP.EMPLID ,EMP.EMPL_RCD , OPR.CLASSID ,'Y'
    FROM PS_SJT_OPR_CLS OPR , PS_P1_EMP_QRYSCRTY EMP
    WHERE EMP.ROWSECCLASS=OPR.CLASSID
    This query was taking around 15 mins to run at sql-prompt
    I have created a partitioned table based on PS_P1_EMP_QRYSCRTY :-
    CREATE TABLE PS_P1_EMP_QRYSCRTY_BAK
    TABLESPACE PSNEWTAB
    PARTITION BY HASH(ROWSECCLASS)
    ( PARTITION PART1 ,
    PARTITION PART2 ,
    PARTITION PART3 ,
    PARTITION PART4 ,
    PARTITION PART5 ,
    PARTITION PART6 ,
    PARTITION PART7 ,
    PARTITION PART8 ,
    PARTITION PART9 ,
    PARTITION PART10 ,
    PARTITION PART11 ,
    PARTITION PART12 ,
    PARTITION PART13 ,
    PARTITION PART14 ,
    PARTITION PART15 ,
    PARTITION PART16
    ENABLE ROW MOVEMENT
    AS SELECT * FROM PS_P1_EMP_QRYSCRTY
    I created a local index like on PS_P1_EMP_QRYSCRTY_BAK
    CREATE INDEX PS_P1_EMP_QRYSCRTY_BAK
    ON PS_P1_EMP_QRYSCRTY_BAK(ROWSECCLASS,EMPLID,EMPL_RCD)
    TABLESPACE PSINDEX
    LOCAL;
    The Following is an extract From PS_P1_EMP_QRYSCRTY_BAK
    1ST COLUMN =TABLE NAME
    2ND COLUMN = PARTITION NAME
    3RD COLUMN = NUM OF DISTINCT ROWSECCLASS IN THE PARTITION
    4TH COLUMN = NUM OF TOTAL ROWS IN THE PARTITION
    TABLE_NAME PARTITION_NAME NUM_OF_DISTINCT_ROWSECCLASS NUM_OF_ROWS
    PS_P1_EMP_QRYSCRTY_BAK | PART1 | 25 | 289058
    PS_P1_EMP_QRYSCRTY_BAK | PART2 | 25 | 154537
    PS_P1_EMP_QRYSCRTY_BAK | PART3 | 27 | 364219
    PS_P1_EMP_QRYSCRTY_BAK | PART4 | 33 | 204528
    PS_P1_EMP_QRYSCRTY_BAK | PART5 | 23 | 527974
    PS_P1_EMP_QRYSCRTY_BAK | PART6 | 22 | 277210
    PS_P1_EMP_QRYSCRTY_BAK | PART7 | 23 | 517125
    PS_P1_EMP_QRYSCRTY_BAK | PART8 | 30 | 307634
    PS_P1_EMP_QRYSCRTY_BAK | PART9 | 28 | 523169
    PS_P1_EMP_QRYSCRTY_BAK | PART10 | 38 | 192565
    PS_P1_EMP_QRYSCRTY_BAK | PART11 | 27 | 120062
    PS_P1_EMP_QRYSCRTY_BAK | PART12 | 33 | 407829
    PS_P1_EMP_QRYSCRTY_BAK | PART13 | 37 | 522349
    PS_P1_EMP_QRYSCRTY_BAK | PART14 | 25 | 275991
    PS_P1_EMP_QRYSCRTY_BAK | PART15 | 21 | 259676
    PS_P1_EMP_QRYSCRTY_BAK | PART16 | 23 | 468071
    SELECT DISTINCT OPR.OPRID , EMP.EMPLID ,EMP.EMPL_RCD , OPR.CLASSID ,'Y'
    FROM PS_SJT_OPR_CLS OPR , PS_P1_EMP_QRYSCRTY_BAK EMP
    WHERE EMP.ROWSECCLASS=OPR.CLASSID
    Now when i run this query it gives result in around 5-6 mins
    MY PS_P1_EMP_QRYSCRTY_BAK table contains sumwhat 6 million rows...
    Now My Questions are:-
    1) Is the number of partition done by me optimal under these circumstances...i mean can i get better performance By increasing or decreasing the number of partitions.
    2) I created local index on PS_P1_EMP_QRYSCRTY_BAK.
    Whether creating local or global index will be more beneficial keeping in mind the where clause and Select clause of the query....
    SELECT DISTINCT OPR.OPRID , EMP.EMPLID ,EMP.EMPL_RCD , OPR.CLASSID ,'Y'
    FROM PS_SJT_OPR_CLS OPR , PS_P1_EMP_QRYSCRTY_BAK EMP
    WHERE EMP.ROWSECCLASS=OPR.CLASSID
    i mean in where clause rowsecclass is used thats why i partitioned my table on ROWSECCLASS.
    And in select clause i m selecting EMPLID and EMPL_RCD
    Thats y i made a local index on ROWSECCLASS,EMPLID ,EMPL_RCD .
    Thanks
    --Pradeep                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                               

    1) Is the number of partition done by me optimal under these circumstances...i mean can i get better performance >By increasing or decreasing the number of partitions.
    2) I created local index on PS_P1_EMP_QRYSCRTY_BAK.
    Whether creating local or global index will be more beneficial keeping in mind the where clause and Select clause of >the query....You'll have to see for yourself what is optimal. Every system is different. Here are some ideas, though.
    Your query
    SELECT DISTINCT OPR.OPRID , EMP.EMPLID ,EMP.EMPL_RCD , OPR.CLASSID ,'Y'
    FROM PS_SJT_OPR_CLS OPR , PS_P1_EMP_QRYSCRTY_BAK EMP
    WHERE EMP.ROWSECCLASS=OPR.CLASSIDappears to read all qualifying rows across all qualifying partitions. Since you are partitioning by an id that would appear to exclude range and list partitioning instead so the hash partition is probably the best for your application.
    Regarding global vs local partitions, I have seen timings indicate that global indexes can improve cross-partition queries slighly. I have not worked with partitions for a while but remember that global partition maintenance is difficult; anything the partition structure changes the global index had to be rebuild. You can check the documentation to see if that has changed.
    If possible creating a unique index should give better performance than using an index allowing duplicates.

  • Global Policy Link Does Not Open A New Browser Window in IExpenses

    Hi All,
    On 11.5.10.2 version
    Global Policy Link which is located at the top of most iExpenses pages is
    supposed to open a dynamic web page (Core policy manuals) on a new browser when
    someone clicks on it. Currently this link, when clicked on it, brings the
    correct page on the same browser.
    I need the page to be opened in new window.
    if not so, i need a alternate solution to open in new window
    Thanks in advance,
    Vali

    Hi
      Accessing an application with the window name is not possible.The other possibility is accessing it using the application name.Follow the code...It will be
    useful for you.
    Thanks
    Anzy
    Data:    lo_cmp_api             TYPE REF TO if_wd_component,
              lo_window_manager      TYPE REF TO if_wd_window_manager,
              lo_ext_win             TYPE REF TO if_wd_window,
              lv_url type string.
    lo_cmp_api = wd_comp_controller->wd_get_api( ).
    lo_window_manager = lo_cmp_api->get_window_manager( ).
    CALL METHOD cl_wd_utilities=>construct_wd_url
          EXPORTING
           application_name = 'MYAPPLICATION'
          IMPORTING
           out_absolute_url = lv_url.
    lo_ext_win = lo_window_manager->create_external_window(
                                       url = lv_url
                                       title = 'My Application' ).

  • Converting local character styles (overrides) to proper styles

    Hi all,
    I've been handed a document that has no styles defined at all. All styling is done the local character styles ("overrides").
    This tutorial http://www.lynda.com/InDesign-tutorials/160-Convert-local-formatting-character-styles/8532 4/192449-4.html shows how to do a preflight, that detects all of the overrides, which is great, but you still have to manually fix them.
    The fastest way I've found so far is to do a search for a particular font-size/font-type, and then apply a proper character style to each match, until the overrides are all gone. But maybe there's a faster way? E.g. is it possible to "select all matching text" (as you can do in Google Docs), that would select all text matching that font-size/type, and then with one click apply a style to all selected text?
    Or maybe there's another way to convert all text matching e.g. font-size/font-type into a character style?
    Thanks!
    Bjoern

    The auto-char styles script tries to be semi-intelligent: It ignores the underlying paragraph style completely. Instead, for each paragraph, it checks which is the longest continuous run of formatting in that paragraph (textStyleRange). That formatting is considered the "underlying formatting of the paragraph", and any other formatting in that paragraph is considered an override, and has an appropriate character created (if necessary) and applied to it.
    The only exception to that is "italics", which is always considered an override, even there is more italics than regular in the paragraph (something that can happen in a bibliography entry, for instance).
    So, for instance, with the formatting you give as an example ("No style, + Arial Bold + size: 24 + Leading 28"), where everything but the final paragraph return has that applied, Auto-Char Styles will not apply a character style to most of the text, and apply an appropriate char style to the final enter only.
    That way, "all" that remains is to go through the document creating and applying paragraph styles as necessary, knowing that all local overrides have been styled with an appropriate char style.

  • Global Policy Link Does Not Open A New Browser Window

    Hi All,
    On 11.5.10.2 version
    Global Policy Link which is located at the top of most iExpenses pages is
    supposed to open a dynamic web page (Core policy manuals) on a new browser when
    someone clicks on it. Currently this link, when clicked on it, brings the
    correct page on the same browser.
    I need the page to be opened in new window.
    if not so, i need a alternate solution to open in new window
    Thanks in advance,
    Vali

    Respectfully, that answer isn't particularly helpful. I have already demonstrated that middle-clicking (mouse wheel click) will open a new instance of FF, and other programs. This was true before the upgrade from FF4 to FF6, and is true on all my VM builds (Windows 7 default install with nothing but FF installed).
    Nevertheless, I've tried shift-left-click, and it does not open a new instance. It will only open a new instance if I pin FF to the taskbar, which I have already stated I do not want to do. This new behaviour is unique to FF. Other applications (Word, Excel, Internet Explorer, whatever) all behave as expected. It is only Firefox that is misbehaving, and it is only misbehaving since the upgrade.
    My issue is that FF has changed its behaviour with respect to middle-clicking since upgrading from 4 to 6. I'd welcome helpful comments about getting FF to behave.
    Max

  • How to report with local and global currency in Deliveries?

    Dear all,
    i am working on a delivery scenario where i have in the datasource NETWR(Net value
    ), WAERK (Document currency).
    I would like to be able to report with local currency and global currency.
    Could you please help by explaining how to proceed?
    Thank you.
    Cheers

    Hi Gilo,
    You have to check with the business on the following.
    1) What would be the key date of currency conversion? Is this any document date from the transaction ( Delivery Date ) or report execution date?
    2) What would be the target currency ? ( for local and Global currency ). Whether this can be determined at the time of loading or should it be based on user selection criteria?
    3) What is the exchange rate type that has to be used? ( for example 'M' ).
    Once you have the answers to these questions, you can decide whether to do the currency conversion in the backend or front end in the report during runtime.
    For example, if the user wants to input the target currency on selection variable and wants to use the exchage rate as of the report execution date, then this currency onversion has to be done at runtime.
    For more details,Please check help.sap.com or SDN
    Thanks,
    Krishnan

  • How to convert Localized formatted String in Amount?

    Hello All,
    I have once scenario where I need to convert localized string amount to parse and make it long amount.
    Example: In russia, people write 1000 as "1 000".
    Now what I need to do is to parse this "1 000" and get 1000.
    Is there any way in java, which can identify if the particular string is localized price in some Locale and give us the normal long output?
    Thanks,
    Jenish

    The char after the 1 of 1 000 is not a space (value: 32) it's a no-break space (value 160). Copy this line and paste it into your code:System.out.println(nf.parse("1&#0160;000"));And please read the announcement(s) at the top of the forum listing, they're there for a purpose. Then edit your post and format the code correctly.
    db
    edit Dang, the forum parsing (or maybe the browser rendering) converts that to a normal space :( Trying again... and again ...
    No, it appears both &amp;nbsp; and &amp;#0160; are corrupted to a &amp;#0032; no matter how I try it. One more try, with pre tags instead of code tags
    System.out.println(nf.parse("1 000"));Nope. With noformat
    {noformat}System.out.println(nf.parse("1 000"));{noformat}
    On a Windows computer, you can type the no-break space using Alt-0160 or copy it from the Character Map. Other than that, here's my best attempt to illustrate what's going on:NumberFormat nf = NumberFormat.getInstance(new Locale("ru", "RU"));
    try {
      System.out.println("1 000".equals(nf.format(1000))); // false
      String thousand = "1" + ((char) 160) + "000";
      System.out.println(thousand); // looks like 1 000
      System.out.println(nf.parse(thousand)); // 1000
    } catch (ParseException e) {
      e.printStackTrace();
    }Edited by: Darryl Burke

  • Mix Local and Global Transaction using XA Driver for Oracle

    Hi all,
    We are trying to use a XA Driver which can support both local as well as global
    transaction. We tried using the Weblogic jDriver (XA Driver) type 2 that comes
    along with Weblogic installation but unfortunaltely it cannot mix local as well
    as global transaction.
    Please let me know in case we have any XA JDBC driver for Oracle Database which
    supports both local and global transaction together.
    Thnx,
    Kumar
    Environment:
    Weblogic 8.1 server
    Database used : Oracle8i

    Most database drivers can support local and global transactions, with some
    restrictions.
    The JDBC spec has been changed to require compliant drivers to let the
    application
    know if they try to start a global transaction while a local transaction has
    not been
    completed (or vice verse). So most of the database drivers have been
    changed to enforce
    this restriction (breaking a lot of code that is out there).
    "Kumar Raman" <[email protected]> wrote in message
    news:4033457c$[email protected]..
    >
    Hi all,
    We are trying to use a XA Driver which can support both local as well asglobal
    transaction. We tried using the Weblogic jDriver (XA Driver) type 2 thatcomes
    along with Weblogic installation but unfortunaltely it cannot mix local aswell
    as global transaction.
    Please let me know in case we have any XA JDBC driver for Oracle Databasewhich
    supports both local and global transaction together.
    Thnx,
    Kumar
    Environment:
    Weblogic 8.1 server
    Database used : Oracle8i

  • Best practice converting local laptop accounts to Mobile Accounts with PHD

    Hi,
    what is the best practice to convert local laptop users (with different UIDs than their network account) to mobile accounts? Especially when the local dir should not be synced in whole (just Documents, Library). Client and server are 10.5, network accounts are on NFS.
    I tried creating the mobile account with a minimal network directory (Library etc. ) and then move the original folders into place, but this didn't work out (the sync info was overwritte somewhere ..)
    Christian

    I think your best bet is to copy the home folder off the laptop to the user share on the server. Then with WGM create the same user and the apply all permissions of the network user to the copied folder.
    Once you have that create your settings for the PHD and then go to the laptop. There you will setup the laptop and bind it to the directory, have that user login (might want to do this on a lan, not airport) and then it will move all the data across to that laptop, and since the network user (same as the local) owns that folder everything should work. If the password is the same then OS X should fix the login and keychain password, so saved forms or email password would show up.
    I did this same thing for 20 OS 10.4 client laptops. Took me a while to get all of this in place but will spare you the running around...
    hope that helps

  • Local and global variables in ABAP Debugger

    hi guys.
    we have the following support package:
    SAP_BASIS     640     0025     SAPKB64025     SAP Basiskomponente
    I would like to use in the debugger the local and global variables tab strip, but I can not find it. Is it possible. that our support package is too low for this functionality?
    Thanks a lot.
    rudit
    Edited by: Rudolf Tremmel on Aug 17, 2010 8:35 AM

    Starting with SAP NetWeaver 6.40, SAP released a new version of the Debugger.
    The Debugger available in Release 6.40 was not considered complete (and was
    not the default debugger as a result)
    The Variable Fast Display tool currently has four tabs . The first
    two are provided empty, and you can either type or double click a name in the
    source code to add it to the list. The third tab (Locals) shows all local variables
    for the current program modularization unit, and the fourth (Globals) shows all
    global variables in the current program.

  • IExpenses Global Policy Link - Open web page

    in iExpenses there are some links at the very top and bottom of each page.
    One of these is the 'Global Policy' link.
    This link is not defined in a page - instead it is defined in the iExpenses application menu.
    The menu entry references function 'View Policy Guidelines' (OIE_POL_VIEW_GUIDELINES).
    The documentation states that you can modify the function HTML Call to call a static web page located
    under OA_HTML path.
    Instead Customer wants this link to open an intranet page in a new window i.e. Open a page that
    is not located under OA_HTML path.
    If I change the HTML call of the function to something like http://www.google.com then when the link
    is pressed the browser tries to open http://<host>:port/OA_HTML/www.google.com?menu=Y which
    obviously doesn't work.
    Any ideas as to how we can modify the Global Policy link so it will open a web page that is not located under OA_HTML path ?
    Regards
    Andy

    Hi,
    From AOL function form to call any page we give the path in "web HTML call" field. As per the apps standard and as name indicates it can call only those pages present under $OA_HTML.
    To call an OAF page, we give any page path as "OA.jsp?page=/oracle/apps/xxx/xxx/xxx/TestPG". Here "OA.jsp" is present in $OA_HTML and it will get parameter "page" value and route it accordingly.
    Coming to your requirement:
    Similar to above case you need to create a jsp file and keep it in $OA_HTML. Pass destinaltion URL into the page as a parameter and route it from there.
    Hope I am clear.
    -Anand

  • Create local or global variables ?!

    hey guys,
    I want to use variables instead of wires , which one you suggest , local or global variables? and why ? 
    thnxxx alot

    blue silver wrote:
    I want to use variables instead of wires , which one you suggest , local or global variables? and why ? 
    In LabVIEW, the wire is the variable.
    Local and global variables have their limited use in certain UI tasks, but lead to inefficient, error prone, and hard to maintain code.
    Local variables create extra data copies in memory, which can be expensive
    They break dataflow and thus lead to race conditions.
    To "fix" the race conditions, you need to clutter your code with sequences.
    ... it's an evil cycle!.
    Why do you think you need local and global variables?
    If you "want" to use them, you are probably misguided. Typically, you should only use them if you "need" to! There are legitimate uses for them.
    LabVIEW Champion . Do more with less code and in less time .

Maybe you are looking for

  • ICal - I want my iMac, MacBook Air, and iPad to all "talk" and share iCal entries.  How can I get this to happen?

    I am hesitant to run the Migration Assistant for this reason.  I just want to enter an appointment on my desktop iMac and for it to show up in iCal on both my MacBook Air and iPad as well.  Is this possible? Thanks, Jo Beth

  • Any known problem to support HD.323

    Hi, I have a client reported that when he was using HD.323, he found pkt loss about 8%. The network is consisted of cat6500 and cat3750, all of interface are 1G. The throughput for the application is about 2Mps. IOS version for 6500 is 12.2(33)SXH5.

  • Table lead selection

    Hi Colleagues, Here is the problem with tables selection Depending upon the node size in the context i.e. if the nof elements is 4 i am displaying 4 tables in the output, where each table has three culms and one row containing test, text and Button e

  • What is Importance of Financial Accounting in Result Analysis

    hi sap kings........ please give me details of result analysis in financial accounting.

  • Need help to change NAT to OPEN

    Hey guys, i was wondering if someone could help me get my NAT from moderate to open. But the weird thing is that it was i had someone help me before and it worked but my brother got the new xbox and the NAT went back to moderate. So now i have two xb