Removing Buttons from Button Group

Hi
I am new to WAD 2004s, and am in the process of customising templates.
I would like to remove some buttons from the button group, but so far the only way I can do this is to go in the XHTML and remove the code segments from there. Surely I should be able to do this from the layout view?
Cheers,
Andrew

Hi,
As Deepu says, in general everything is possible in the properties (you have to switch to "web item parameters" tab -> you will see all parameters for the web item.
Regards, Karol Kalisz
SAP NetWeaver BI Development

Similar Messages

  • How am I able to add and remove people from a group message?

    How am I able to add and remove people from a group message?

    You'd need to start a new thread.

  • HT5760 You need to make the function available to remove yourself from iMessage groups.

    It's so annoying you can't remove yourself from iMessage groups, is this something you will ever allow?

    WE don't have to do anything.
    WE are users.
    WE are NOT Apple.

  • Removed myself from users group

    Yesterday, I was trying to setup a mail server following this: http://www.howtoforge.com/arch-linux-ma … nd-dovecot and I accidentally removed myself from users group
    [yasar@yasar-laptop ~]$ id
    uid=1000(yasar) gid=12(mail) gruplar=12(mail)
    Now, I am thinking to issue this command:
    usermod -g users -G audio,lp,optical,storage,video,wheel,power yasar
    Is this command good? I just wanted to be sure. I don't want to break stuff again.

    Just run this command as root:
    gpasswd -a yasar users
    Last edited by anonymous_user (2012-01-12 16:40:45)

  • My wife's Apple ID is shown as belonging to a family sharing group, but we can't determine what is the id of the owner.  How can she remove herself from the group?

    my wife's apple ID is shown as belonging to another family sharing group. We can' t figure out the  Apple ID of the 'owner' of the group.  Is there any way to remove oneself from a family sharing group when you are not the owner?  Or how can we find the log in id (Apple ID) of the owner?

    i partially solved the problem, however still need some help.  My wife has made purchases under two different Apple ids.  I tried t re-set her iPad with her main ID but it is apparently part of a family.  I re-set  her iPad iCloud using her secondary ID.  The sharing of iTunes shows her main apple ID.  The settings iTunes is also set to her main Apple id.  I sent an invite from her iPad icloud family sharing to her main Apple ID, but when I attempted to consent to join it says she is already a member.  So I am guessing this is because in the family set up under her secondary ID that her main id is the iTunes account that is shared.  My question is could I change the iTunes shared under her name as owner to her secondary account, then invite her main account to join as a distinct member?  I am nervous about doing this for two reasons 1.  There is a warning when changing the shared iTunes account that says you can't join another group for 90 days. 2. I may still get the message that her main account is still a member of the group even though it doesn't show up, and then not able to revert back.
    if you follow this can someone offer some help,
    thanks
    note. This whole problem when we had to change a Apple id when we changed Internet service providers.

  • How to tell if someone removed you from a group co...

    I'm new to skype so I apologize if this is a dumb question! When I go to "participants" it doesn't show I'm there, and the group hasn't been active in 3 days, which is odd since they are usually very active. Does it say you have been removed from the group or anything like that when the admin removes you? How can you tell if someone removes you? Thanks

    If your plugin is doing the exporting, just record which collections are in active sources upon export.
    PS - I'm not aware of any problems with catalog:getActiveSources(), other than differences in what's returned for the special collections (e.g. all-photos and recent-imports collections) vs. non-special collections.
    Of course you can't add photos to smart collections, so if collection is smart, consider an option for tagging in such a way that it will be auto-added (food for thought anyway, maybe doesn't apply...).
    Rob

  • Remove contact from Smart Group???

    How do I remove cards from a Smart Group without totally deleting them from the address book?
    Here's my situation: I've got all my media contacts in a smart group by adding "media" to notes; but now I've also got several contact cards in the group that have the word media in their address, but who aren't media-related (i.e. [email protected]) or who have "mediator" elsewhere in their card.
    I don't want to have to cull out 20 -25 addresses everytime I mail to this group.
    thanks

    You should be able to select them and drag them to the group you want them in; for example, from "Smart Group" to another group name you have or create.
    Mulder
    If my answer helped solve your problem, please consider awarding some points. Why Reward Points?

  • Remove user from multiple groups

    Hello everyone, first time posting here with a question and I apologize if I'm asking in the wrong location.
    To give an idea of what I'm attempting to do, I've recently been developing a vbscript that will take a nightly csv export from my student information system and either create or deactivate student accounts based upon their enrollment status.  I have
    this function working great now, another function I've been developing is to have accounts moved between OU's based upon the school building code assigned to students which I have working as well.  The problem I'm running into right now is having students
    removed from existing active directory groups when they move between OU's.  Essentially what I would like to do is have the script load the users group membership into an array and then remove any groups that end with STUDENTS, below is the code I have
    been working on to accomplish this but have literally hit a brick wall.  If it helps all my student groups for each location runs in this fashion.
    ABCD_STUDENTS
    ABCE_STUDENTS
    Any suggestions would be greatly appreciated.
    ' Student changing OU then we need to update their account to reflect appropriate group memberships.
    Set UserObj = GetObject("WinNT://server.domain.net/" & ADusrname) 'This must be hardcoded to domain controller
    strUserDN = DN
    strUserCN = objuser.cn
    'Add user to the school group if not correct
    Set objGroup = GetObject(varSchoolGroup)
    strUserDN = DN ' Bind to the user object.
    strGroupDN = varSchoolGroup ' Specify group Distinguished Name and check for membership.
    Set objADObject = GetObject("LDAP://"& strUserDN)
    objmemberOf = objadobject.GetEx("memberOf")
    If Not (funIsMember (GetObject("LDAP://" & strUserDN),varSchoolGroup)) Then
    objmemberOf = objadobject.GetEx("memberOf")
    For Each objGroup in objmemberOf
    Set objGroupDelete = GetObject ("LDAP://" & objGroup)
    If Mid(objgroup,7,8) = "STUDENTS" Then
    msgbox "test remove"
    objGroupDelete.PutEx ADS_PROPERTY_DELETE,"member",Array(strUserDN)
    objGroupDelete.setinfo
    subUpdateLogFile studentcounter & " - Removed from student group " & objgroup,student_guid,student_username,student_fullname,"removed group"
    End If
    Next
    'Add user to school group
    Set objGroup = GetObject(varSchoolGroup)
    objGroup.PutEx ADS_PROPERTY_APPEND, "member", Array(struserdn)
    objGroup.SetInfo
    subUpdateLogFile studentcounter & " - Updated school group to " & student_schoolgroup_ldap,student_guid,student_username,student_fullname,"school group"
    objUser.SetInfo
    updated = "yes"
    End If
    Any suggestions would be greatly appreciated.

    With Bill.  This can be done with AD and PowerShell in a couple of lines for reach item.
    You are taking an incorrect approach which is making this much harder than it needs to be.  Your question is also hard to understand.
    Each AD usre object obtained via ADSI will have a list of groups the account is a member of.  You use this to remove the user from the group.  How you choose this is up to you.  You can use an array or a file.  You can also =just use
    OU associated groups.  A user then is added to all or some groups associated with the OU and removed from the groups associated with the OU by just returning the OU associated group list from the OUs.
    Designing AD systems is a specialty.  Once you fully understand the features and capabilities of AD these things are usually simple and painless.  If the design is not done well they are painful and faulty.
    We can answer specific questions.  Understaning the design and capabilities of AD is mostly up to you.
    Start with a tool that is designed to work well with AD like PowerShell. VBScritp is onluy useful to those who are skilled with AD and scripting in VBSdcript.  From your script we can see you are a beginner at both.  As Bill notes...do yourself
    a favor and switch to PowerShell.
    ¯\_(ツ)_/¯

  • VBS Script to add and remove computers from a group

    Good Morning everyone I need some help, I need to develop a script with excel vb + to do the following: 
    I select a group of ad through a comboBox and that in another box I specify the computers, just below dde has 2 buttons to add or remove these computers that were selected. 
    Thank you for now ... 
    sorry for my basic english

    Hi,
    We're definitely willing to help, but you need to ask a question first. Please note that we don't write scripts on demand here.
    If you're looking to use VB.Net (not VBScript), that forum is this way:
    http://social.msdn.microsoft.com/Forums/en-us/home?forum=vbgeneral&filter=alltypes&sort=lastpostdesc
    Don't retire TechNet! -
    (Don't give up yet - 12,830+ strong and growing)

  • How to remove prefix from AD group names in ldap auth. provider?

    Hi all,
    I'm using weblogic 10.3.5 and LDAP authentication provider for accessing microsoft AD.
    Group names in AD are created and look like this: PREFIX_basic_user, PREFIX_advanced_user...
    but enterprise roles in ADF application are created like this: basic_user, advanced_user...
    Is there a way to map AD groups to enterprise roles trough LDAP Authentication provider without adding PREFIX_ on enterprise roles in ADF application?
    Thanks in advance

    Powershell (or vbscript if you want to be old school).
    You can trigger a powershell script which will remove the offending user(s) easily enough with out resorting to a TOLDAP pass.  Nearly any script type thing would work but powershell is preferred.  It can be triggered separately from the TO AD stuff and will take multiple objects to run in one pass if you can construct the command line (or create a text file and feed it in).
    Otherwise, TOLDAP is the way to write to AD...
    Peter

  • What will happen when I remove controllers from mobility groups?

    Hi,
    I'm wondering what exactly will happen when I remove a controller from a mobility group?
    1) Will it require a reboot? (I don't think so, nothing I've found says so)
    2) Will it deauth/reauth the AP's connected (I don't think so, nothing I've found says so)
    3) Will it do anything else goofy?
    I have 2 RF groups spanning continents over low speed links. All that is transmitted over mobility groups is session data correct? Not usernames, not ??? What am I missing here? I'm banging my head against the wall because I can't figure out why someone would configure the system in this way.
    Setup:
    WLC 4404, WLC 2100's
    WCS 5.2.148
    11xx series AP's
    Radius Auth for domain users
    a few SSID's, one guest SSID, no DHCP on any of the controllers
    Thanks in advance,

    Hi,
    I'm wondering what exactly will happen when I remove a controller from a mobility group?
    1) Will it require a reboot? (I don't think so, nothing I've found says so)
    2) Will it deauth/reauth the AP's connected (I don't think so, nothing I've found says so)
    3) Will it do anything else goofy?
    I have 2 RF groups spanning continents over low speed links. All that is transmitted over mobility groups is session data correct? Not usernames, not ??? What am I missing here? I'm banging my head against the wall because I can't figure out why someone would configure the system in this way.
    Setup:
    WLC 4404, WLC 2100's
    WCS 5.2.148
    11xx series AP's
    Radius Auth for domain users
    a few SSID's, one guest SSID, no DHCP on any of the controllers
    Thanks in advance,

  • Remove user from multiple Group

    Hi All,
    Can any one help me on this . 
    we have around 100 different  SSLVPN AD security groups. Need a script or command to remove 790 users
    from all these groups.
    we have list of user in excel sheet we want to remove from group only. 
    Regards, Triyambak

    Hi,
    Just checking in to see if the suggestion was helpful. Please let us know if you would like further assistance.
    TechNet Subscriber Support
    If you are
    TechNet Subscription
    user and have any feedback on our support quality, please send your feedback
    here.
    Regards, Yan Li

  • Removing port from channel-group

    I've run into an odd issue with port aggregation where I decided to remove a port from a port channel and put it into another but in my SNMP tool it still belongs to the old port channel and the new simultaneously.
    The port channel was created by using:
    (config)#interface gigabitEthernet 1/0/22
    (config-if)#switchport mode trunk           
    (config-if)#channel-group 1 mode active
    And then changed through
    (config)#interface gigabitEthernet 1/0/22    
    (config-if)#no channel-group 1 mode active
    (config-if)#channel-group 2 mode active
    I also get this when I pull information on etherchannel.
    #show interfaces gigabitEthernet 1/0/22 etherchannel 
    Port state    = Up Mstr Assoc In-Bndl 
    Channel group = 2           Mode = Active          Gcchange = -
    Port-channel  = Po2         GC   =   -             Pseudo port-channel = Po2
    Port index    = 0           Load = 0x00            Protocol =   LACP
    Flags:  S - Device is sending Slow LACPDUs   F - Device is sending fast LACPDUs.
            A - Device is in active mode.        P - Device is in passive mode.
    Local information:
                                LACP port     Admin     Oper    Port        Port
    Port      Flags   State     Priority      Key       Key     Number      State
    Gi1/0/22  SA      bndl      32768         0x2       0x2     0x117       0x3D  
    Partner's information:
                      LACP port                        Admin  Oper   Port    Port
    Port      Flags   Priority  Dev ID          Age    key    Key    Number  State
    Gi1/0/22  SA      32768     0817.35e4.2c80  26s    0x0    0x2    0x118   0x3D  
    Age of the port in the current state: 164d:21h:32m:44s
    Could this be an issue with my snmp tool (observium) or are there any additional steps for removing a port from a channel-group? Switch restart?
    System image file is "flash:c2960s-universalk9-mz.150-2.SE4.bin"

    Hi,
    I would say that this is related to the snmp tool, once you remove the port from the previous channel and added to the new it will belong to that one only, there is no way that an interface will below to 2 different port channels.
    Also there is no need to restart the switch or anything like that, you can use the following commands to confirm that the interface is now part of the new channel group:
    Show etherchannel summary 
    Show run interface gi1/0/22
    With those commands you will see that the interface belongs to channel group 2, and the command you attached above shows that the interface belongs to po2.
    Hope this helps

  • Unable to remove user from SharePoint Group using PowerShell

    I am trying to remove a user from a SharePoint Group using PowerShell.
    I can see the user in the Site Collection as part of the SharePoint Group, however, when I attempt to run the script, I get an error message stating "Can not find the user with ID: 10"
    Below is the PowerShell script that I am using:
    $url = "https://sharepointdev.spfarm.spcorp.com/sites/desitecoll"
    $userName = "spfarm\sp2013_svc"
    #$userName = "spfarm\spprofileimport";
    $site = New-Object Microsoft.SharePoint.SPSite($url)
    $web = $site.OpenWeb()
    $siteGroups = $web.SiteGroups;
    Clear-Host
    $mySiteGroups = @();
    foreach($group in $siteGroups)
    Write-Host $group
    $mySiteGroups += $group;
    }#foreach
    $members = $web.SiteGroups[$mySiteGroups[0]];
    $owners = $web.SiteGroups[$mySiteGroups[1]];
    $visitors = $web.SiteGroups[$mySiteGroups[2]];
    #Remove the user from the specified SharePoint Group
    $spUser = Get-SPUser -Identity $userName -Web $url
    Write-Host $spUser.ID
    Remove-SPUser -Identity $spUser -Web $url -Group $owners
    $web.Update();
    $web.Dispose();
    Write-Host "User " $userName "removed from " $owners
    Please advise.

    I had to update the code to the following because Get-SPUser was not working properly:
    $url = "https://sharepointdev.spfarm.spcorp.com/sites/desitecoll"
    $userName = "spfarm\spprofileimport";
    $site = New-Object Microsoft.SharePoint.SPSite($url)
    $web = $site.OpenWeb()
    $siteGroups = $web.Groups;
    Clear-Host
    $mySiteGroups = @();
    foreach($group in $siteGroups)
    Write-Host $group
    $mySiteGroups += $group;
    }#foreach
    $members = $web.Groups[$mySiteGroups[0]];
    $owners = $web.Groups[$mySiteGroups[1]];
    $visitors = $web.Groups[$mySiteGroups[2]];
    #Convert the user name to an SPUser account
    $spUser = $web.Site.RootWeb.EnsureUser($userName);
    Write-Host $spUser.ID
    Remove-SPUser -Identity $spUser -Web $url -Group $owners
    $web.Update();
    $web.Dispose();
    Write-Host "User " $userName "removed from " $owners
    Was I not using Get-SPUser correctly?

  • TS2755 Remove yourself from specific group message, not all group messages?

    How do you block or stop receiving a group message from a specific thread of people, without disabling all group messaging?  I got put on a thread of 10 people and can't stop receiving all the messages.  I'd still like to keep group messaging enabled though as there are other group messages I use. 
    Thanks

    As a recipient in the thread, you have no control about receiving messages. The person that starts the thread is the only one in control, as they add people to the post. You need to ask all of the people in the thread to delete the thread and use a different one, and ask the starter not to add you to a group message.

  • How do I remove an address from a group without deleting it from my address book?

    I'd like to send out a group email about the death of the mother of one of the group members. I need to temporarily remove him from the group. How do I do that? I cant display all of the group in my address line so I can cut his out, & can't figure out how to remove him from the group. (I'm afraid the delete button in his info will take his info out permanently, not just out of the group.

    Install the AddExpandedList add-on allow the removal of select contacts from a mailing list addressing:
    https://nic-nac-project.org/~kaosmos/index-en.html#explist
    http://chrisramsden.vfast.co.uk/3_How_to_install_Add-ons_in_Thunderbird.html
    Press F9 in a Write window to show the Contacts sidebar, then right-click a mailing list.

Maybe you are looking for

  • XML Publisher Report Question

    Hi, can anyone tell me where do the report definition files get stored when we create a custom report? Where does it store the xml file after creating the data definition and where the rtf file after creating the template? Thanks.

  • Inserting Glyphs in Text

    Hi, I'm want to use star glyph (star operator) in a text layer in Ai CS4 but when I insert one of these characters a box with a cross in it appears instead. Any ideas what I am doing wrong and what I can do? Thanks

  • Certain keys not working. (backspace, brightness, volume)

    Recently, the keys on my Macbook Air (mid-11') has not been working properly and I'm unsure as to why this happened. I noticed in the keyboard viewer that sometimes when I press the arrow keys or such, the fn keys stick and doesn't unstick until i us

  • Need Help for New Purchase - Macbook Pro 8gb & express slot

    Hello All, I needed some advise or rather clarification on a new purchase of a Macbook Pro. I became a bit disheartened ever since the new Macbook Pros replaced the express slot with the SD card reader. I want a 15" Macbook Pro , with 8gb of expandab

  • NullPointer exceptiuon on deploy

    I am getting an error on a deploy. I have reduced the BPEL script to a minimum, this being, a) client invokes WS A (sync) b) WS A invokes WS B (async) c) WS A receives from WS B d) WS A replies to client When I deploy WS A the server log gives me the