WCS + can't recreate the 'any' group in ACL template

ON WCS, I'd like to configure an ACL by using a template.
When I go to Configure > Controller Template Launch Pad > Security > Access Control > IP Groups,
we can find, normally,  a group named "any" to use in the rules.
On one of my WCS, this 'any' group has been deleted.
It seems impossible to recreate a new one because an IP Adress must be provided in the format [1-255].[0-255].[0-255].[0-255]
Do you an idea on the way to solve this problem ??
Herve

You could try to discover templates from one of your WLC that has the any group.
Steve
Sent from Cisco Technical Support iPhone App

Similar Messages

  • How can I get the second group and report totals in Matrix report?

    Hi,
    I have created a matrix report with 2 break Groups.
    Iam getting columns totals for the first group, but not for the second group and the report totals.
    How can I get the second group and report totals for each month?
    Thanks.
    Ram.

    Hi Ram,
    If you want a total at any group-level, go to the particular group in the data model, insert a summary column in the group, and select
    Reset At > appropriate Group Name
    For report level summaries, you must create the summary column outside of all groups.
    Navneet.

  • Where can i find the created group in portalcontent of content admin?

    Hi all,
    I have created a group with name Group1.  I assigned some users to the group one by one.  Is there any method to add 5 users at a time?
    How can i store the created groups in the folder & where can i find the Group1in the portalcontent?
    thanks & regards,
    vila

    You can assign multiple users to a group by using the User Data Import option. Navigate to User Adminstration --> Import.
    Create a file with the following entries and upload it for group assignments
    [Group]
    gid=YourGroupName
    gdesc=...
    user=User1;User2;User3...
    To know the users assigned to a group,
    1. Navigate to User Administration --> Identity Management.
    2. Put your group name and search.
    Regards,
    Prasanna Krishnamurthy

  • Can we change the Record Group Type through Custom.pll

    Hello All,
    I have a small requirement on Changing the Record Group Dynamically.
    Can i set the Record group type to 'Query' from 'Static'. i.e Can i change the Record group type dynamically through custom.pll. I know that we can dynamically change the Record group query.
    Please help me its a bit urgent.
    Thanks inadvance,
    Amarnadh Js

    you can control your record group runtime without create any recordgroup at design time..
    1.static group
    declare
       rg_name         VARCHAR2 (40)  := 'Global_Rgp_Menu';     --global record group name for menu use
       rg_id           recordgroup;                                            --global record group id
       gc_id           groupcolumn;                                     --global record group coulmn id
       errcode         NUMBER;                                                             --error code
       grp_row         PLS_INTEGER    := 0;                             --global record group row count
    begin
      rg_id := FIND_GROUP (rg_name);
       IF NOT ID_NULL (rg_id)
       THEN
          DELETE_GROUP_ROW (rg_id, all_rows);
       ELSE
          rg_id := CREATE_GROUP (rg_name, global_scope);
          gc_id := ADD_GROUP_COLUMN (rg_id, 'menu_item', char_column, 100);
          gc_id := ADD_GROUP_COLUMN (rg_id, 'p_type', char_column, 100);
          gc_id := ADD_GROUP_COLUMN (rg_id, 'p_no', char_column, 100);    
       END IF;
      grp_row := 0;
      for 1 in 1..10 loop
           grp_row := grp_row + 1;
          ADD_GROUP_ROW (rg_id, grp_row);
          SET_GROUP_CHAR_CELL (rg_name || '.menu_item', grp_row, 'menu' || to_char(i) );
          /*type*/
          SET_GROUP_CHAR_CELL (rg_name || '.p_type', grp_row,  'type' || to_char(i) );
          /*program_no */
          SET_GROUP_CHAR_CELL (rg_name || '.p_no', grp_row,  'programno' || to_char(i) ); 
      end loop;
    end;
    2. query group
    declare
       FACT_SQL VARCHAR2(500) :=NULL;
       rg_name1       VARCHAR2(40) := 'Global_Rgp_fact';
       rg_id1   RecordGroup;
       Error_Flag number:=0;
       group_error exception;
    begin
       rg_id1 := Find_Group( rg_name1 ); IF NOT Id_Null(rg_id1) THEN Delete_Group( rg_id1 ); END IF;     
       FACT_SQL := ' SELECT *   FROM MYFACTORY  ' ;      
       rg_id1 := Create_Group_From_Query( rg_name1,FACT_SQL ,global_scope);
        Error_Flag := POPULATE_GROUP(rg_id1);
        IF Error_Flag <>0 THEN     
               error_msg:='Error while populating factory group';   
               raise group_error;
        END IF; 
    exception
      when group_error then
         message(error_msg);
        raise;
    end;Edited by: nolemlin on 2010/3/23 上午 7:50

  • Can we change the payscale group text in V_T510?

    Hi All,
    Can we change the Payscale Group text which is stored in V_T510 field TRFGR?
    is there any other way that we can change them?
    Regards
    Rahul

    Hi,
    Yes if client want new description for the PS Group, you have to create new only and assign the wage types to them and so on..... you have to do all the configurations regarding the PS Group. Here the main point is be careful with the start date of the PS Group for newly created records and assignments.
    Best Regards.

  • How can we change the purchasing group which it is maintained in R/3?

    Hello All.
    In case of MM, purchasing group is assigned to material master.
    It means purchasing group is maintained based on material code.
    But SRM has different maintenance level.
    As you know that purchasing group has the responsibility based on material group (Product category).
    So we should change the purchasing group from R/3, when end user create shopping cart.
    How can we change the purchasing group which it is maintained in material master?
    Thank you,
    Best regards,
    SH.

    Hello So Hee,
    I am not a technical guy.
    But for your requirement i am building a logic.
    I am not sure whether it will work.
    You need to check with your ABAPER.
    It is as below:
    When the SC is approved and the other configuration is correct ,
    PR is created in ECC by the virtue of BAPI.
    You want that the pur grp should be populated on the base of matl code and not on matl grp.
    Hence in SC you will not fill up pur grp.
    In the programme for BBPSC01 i.e. SC creation you will add modification that it will call a custom FM.
    This custom FM will get the matl code from SC and will find the value of pur grp from R/3 MM01i.e. matl master(you may get in MARA).
    Now in the BAPI you need to incorporate this additional value of yr pur grp field.
    So the desired pur grp as per yr R/3 matl master will be populated in yr R/3 PR.
    Again: this is all hypothesis.
    That's all I can help you.
    BR
    Dinesh
    <b>Reward if helps</b>

  • How can i transfer the 'Authorization Group'(SE54) to another client?

    In project i must define an 'Authorization Group' in T-Code SE54---The 3rd radiobutton.
    But there is no message to me to entry the Request NO.?
    How can i transfer the 'Authorization Group' ?
    I konw the date can be show from view 'V_BRG_54' ,but how to transport the data of the view?
    TKS a millon~~

    Hi,
    If your client is set for automatic recording of changes it should prompt for a transport, check there is not another client where you should make config changes.  If not, the menu option Table View -> Transport will let you assign the Auth group to a transport.
    Regards,
    Nick

  • Since updating to Mavericks I can't use the smart groups in Contacts to send emails.  How do I fix this?

    Since updating to OSX Mavericks I can't use the smart groups in Contacts to address emails. This was not a problem previously.  How do I get the functionality of smart groups restored?

    I discovered this problem this morning after upgarding to Mavericks.
    I've found an easy answer: Apple have changed the way it confirms the addition of Groups it seems.
    Type the name of the group in the Cc: or Bcc: field, hit the Space bar, then hit Enter. Vavoom!!
    Hope this helps.

  • TS1649 Hi, can I merge the contacts groups on my iPhone 4 into one group?

    Hi, can I merge the contacts groups on my iPhone 4 into one group?

    You can't merge chat threads.

  • How can I get the standard Adobe CS4 sample templates, like the photo slideshow?  Thanks

    I just got Flash CS4.  I think it is supposed to have several categories of templates.  I only have the advertising category. How can I get the standard Adobe CS4 sample templates, like the photo slideshow? I cannot find anyplace on the Adobe.com site for template downloads.
    Thanks
    Mark

    I have the same question-- I don't see any template categories apart from "Advertising"-- where are they?
    - Jesse

  • Can I customize the history grouping?

    If I select Show All History, the history is grouped into TODAY, YESTERDAY, LAST 7 DAYS, THIS MONTH, LAST MONTH etc.
    The first issue I have with this is that the groups are not mutually exclusive.... eg. I can't delete everything but TODAY and YESTERDAY because those sites are included in LAST 7 DAYS and THIS MONTH. The only point the history becomes exclusive is LAST MONTH.
    If the grouping can't be mutually exclusive, then I'd rather just be able to show the whole history without any group, sort by date and then I can just scroll to the point I want to keep and delete everything below that point.

    I think you will need to find an add-in for this.
    The reason is that the History list is page oriented rather than visit oriented: it only shows the most recent visit to a page rather than all visits. If you click September, you probably will see some dates in October, too, when you revisited a page that you had visited in September. Since these are grouped together by page, wherever you view it, deleting a recent visit to the page probably will also clear the September visit, and deleting an October-dated entry under September probably will remove the more recent visit.

  • Can I delete the hierarchy groups and reload again from R/3

    Hello all,
    I am having some issue in my reports because of the hierarchy groups. Can i just delete the entire hierarcgy groups from "production" and reload again from R/3 will that cause any issue?
    Thanks in advance

    Hi,
       I think u can delete the Master Data Hierarchies. I dont see any issue in the production .
    Rgds,
    Ravi.

  • How can I remove the entire group "On My iPhone" under contact and notes?

    I am using iCloud to sync my contact and notes. It's pretty good right now since it can maintain a signle copy of each without duplicate entries.
    However, the outstanding issue is that I want to remove the entire group "On My iPhone" under contact and notes as a lot of duplicates inside there.
    How can I do that? Or de-duplicateing the entries there is also fine.  Thanks.

    I found a solution for this by using iCloud and iTunes. It is applicable to Mac users.
    For Contacts
    1. Make a source copy of contacts without any duplication in iCloud contact.
    2. Remove any groups in Address Book in your Mac, so that the number of contacts in iCloud is equal to that in All Contacts in Address Book.
    3. Launch iTunes. Connect your iOS device. Go to Summary tab. Mark "Back up to iCloud" button
    4. Go to Info tab, Click "Sync Address Book Contact" and then select "All contact"
    5. Check "Contacts" under "Replace information on this iPhone" at the bottom.
    6. Click "Apply" button at the bottom of the iTunes.
    Your iOS device will be replaced with the "Contacts" from Address Book with "On My Mac" group, which contains zero contacts records.
    7. Uncheck "Sync Address Book Contact" again. A dialog box appears, stating that iTunes will no longer sync contacts to your iOS device. Click "Remove contacts" button in the dialog box.
    8. Click "Apply" button at the bottom of the iTunes.
    9. After sync, you will get a "All on My iPhone" group on your iOS device with zero contacts, one All Contacts showing all contacts records, and the other is the "All iCloud" group containing the source copy from iCloud.
    For Notes
    1. Make sure you have a me.com account enabled in your iCloud for Mail & Notes sync
    2. Using Mail, you can move and de-duplicate the notes and make a final copy in the Notes under iCloud. Clear all notes records under other sources. e.g. On My Mac, Gmail, etc.
    3. Launch iTunes. Connect your iOS device. Go to Summary tab. Mark "Back up to iCloud" button
    4. Go to Info tab, Click "Sync notes" under Other section
    5. Check "Contacts" under "Replace information on this iPhone" at the bottom.
    6. Click "Apply" button at the bottom of the iTunes.
    Your iOS device will be replaced with the "notes" from Mac with "On My Mac" group, which contains zero notes records.
    7. Uncheck "Sync notes" again. A dialog box appears, stating that iTunes will no longer sync notes to your iOS device. Click "Remove notes" button in the dialog box.
    8. Click "Apply" button at the bottom of the iTunes.
    9. After sync, you will no longer get any accounts in Notes. The only copy of Notes is from iCloud.

  • How can I recreate the Clarity effect in Photoshop CS6?

    Hi,
    I want to recreate the Clarity effect but in Photoshop CS6.. I know I have it in Lightroom and Camera Raw, but for academic purposes I need to create the same effect but using ONLY Pohotoshop CS6...
    Thanks,
    Juan Dent
    Message title was edited by: Brett N

    The original "clarity" technique is just a Midtone contrast adjustment, the original idea as far as I know is from Mac Holbert formally of Nash Editions. Recipe is below but Mac used to have an action on his web site (I have it too and could send). Or build your own. Here's the steps:
    Mac Holbert's Midtone Contrast 
    1. Highlight your top layer in your Layers Palette then: 
    2a. In CS I: Select Layer->New->Layer to create a new, blank layer at the top of your Layer Stack. Then, holding down 
    your Opt Key (Mac) / Alt Key (PC), select Merge Visible from the fly-down menu on the right side of your Layers Palette. 
    Be sure to keep the Opt/Alt depressed until you see the blank layer update. You should now have an additional layer at the 
    top of your layer stack. It represents how the image would appear if you had flattened your layers. Rename this layer 
    “Midtone Contrast” 
          -OR- 
    2b. In CS II: Holding down your Opt Key (Mac) / Alt Key (PC), select Merge Visible from the fly-down menu on the right 
    side of your Layers Palette. Be sure to keep the Opt / Alt depressed until you see the blank layer update. You should now 
    have an additional layer at the top of your layer stack. It represents how the image would appear if you had flattened your 
    layers. Rename this layer “Midtone Contrast” 
    3. Next double-click on the Midtone Contrast layer icon to bring up the Layer Style Palette. Change the Blend Mode to 
    Overlay and lower the Blend Mode Opacity to 20%. Now move the left “This Layer” slider to 70. Now Split away the left 
    side of that slider by holding down the Opt / Alt key and move it to 50. Repeat the same process on the right “This Layer” 
    slider, moving the sliders to 185 and 205 respectively. Then select “OK”. 
    4. Now select Filter->Other->High Pass. In the High Pass Palette set the radius to 50 and select “OK”. Now select Image- 
    >Adjustments->Desaturate. The Midtone Contrast layer is now complete. At 20% opacity it should be very subtle, but 
    noticable. The effect can be decreased or increased by raising or lowering the Midtone Contrast Layer opacity. I’ve found 
    that the proper setting can usually be found between 20% and 40% opacity. Above 40% one risks creating “halo” artifacts 
    that are visually distracting. 

  • How can I set the "tab groups" page as my home page?

    I've searched for about:config options, and even installed Customizable Shortcuts 0.5.11.1 with the hopes that there would be a shortcut for "options" or "preferences", so that I could simply click "set as home page" while in the tab groups page. No dice. I've just started working with tab groups again (I was away on Chrome for maybe a year... but I'm back), and I think it would be great if I could simply have all my tab groups displayed when I start firefox up. How do I do it?

    The tab view page is dynamically populated based on the tab groups in the current window. Although the "page" has an address, opening that address directly yields a blank tab, so I think that's a dead end.
    Since the keyboard shortcut is Ctrl+Shift+e, maybe you can find a way to send that automatically?
    Also, if you rely heavily on tab groups, I assume you are using something like the [https://addons.mozilla.org/en-US/firefox/addon/session-manager/ Session Manager extension] to protect against data loss. Because tab groups (and of course the tabs themselves) are stored only long enough to restore the immediately previous session, it's not too difficult to accidentally lose them all.

Maybe you are looking for

  • How do I see recipients name in sent mail folder in mails?

    Hello I just bought Mac book pro Retina with OS X , and I noticed that with all my different email address's in sent folder I am just seeing my name as sender instead of whom I am sending the emails! I would like to see receiver's name in sent folder

  • Good issue on production ordre using different serial number

    Hi expert, I have a production order with several serial number of FG to be manufactured. Material with batch number have been assigned and reserve for the production order. I would like to perform a good issue of raw material with batch number and d

  • Passing Pl/Sql variables into shell variables.

    I have written a file that ftp information from one pc to another in unix. All you have to do is supply a user_name/password and machine name to which ftp program will connect to. All connection information like user_id,password, machine name are sto

  • How can I compress a large .mov file 19 GB

    Hi all , I need to reduce this Qucktime mov from 19GB to 8GB so it will fit on a disc, it is a HD 1920x1080 movie with audio , I need to keep the same aspect ratio, is this possible to do , which software would do the best compression ? thanks for an

  • Print black

    using HP1410 all in one printer. trying to print in black only from computer. have searched all sources with no luck. if you can help, thanks.