Application Administrators can't see VLAN configuration on VMs in VMM 2012 R2

Hi, I have the following issue on my VMM 2012 R2 infrastructure.
I have created a cloud with a Hyper-V Cluster in it. Configured a Application Administrator Role (Self Service) and assigned all permissions related to this cloud and Hyper-V Cluster, including a couple of VM Templates and a VM Network.
They users can see the VMs, create VMs but they cannot configure the VLAN inside the VM.
If I go to the VM settings using the full VMM admin, I can do it, select the VM Network and then select the appropiate VLAN, but when I try to do this using the Application Administrator account I configured specifically to this Cloud and Cluster, I can
select the same VM Network but can't see any options related to VLAN configuration.
What am I missing? Is this the default behavior? Do I need an additional permission? Where?
Thank you for your responses.
Regards.
Eduardo Rojas

That is correct.
Application Admins 'consume' resources (compute and storage) and have no insight into the physical part.  Especially if you are using the cloud abstraction.  "Administrators" manage the physical layer of things - that is why you can see
/ set the VLAN ID directly.
I believe that you would need to create your Virtual Networks with the proper VLANs and the application admins can then choose based on the Virtual Network.
The worst case is that you define a Virtual Network per VLAN so that your application admins can select an item that correlates to a specific VLAN configuration.
Brian Ehlert
http://ITProctology.blogspot.com
Learn. Apply. Repeat.

Similar Messages

  • In applications , I can't see my purchases,

    In applications , I can't see my purchases,

    No even I sign out and sign in in settings @ in store. In stores it's accepting, but in purchase the same password not accepting

  • CCX 7.0(1) HA - can't see personnal configuration in Desktop Admin

    Hi,
    I have CCX 7 with HA,
    with desktop administrator I can't see the personnal configuration menu, the only way to see that is with the web interface of Desktop admin.
    In desktop admin I can see Call center 1, Workflow config, but not the personnal config where all user are regually store.
    See screenshot

    This functionality has moved to the web Desktop Administrator interface
    On Mon, Mar 1, 2010 at 1:54 PM, philippe.cousineau

  • Using VB application, how can one see pl/sql dbms_output output?

    Hi guys,
    Someone wrote a pl/sql procedure, using dbms_output to debug, now we promoted them to PROD, these dbms_output statements are still there in the code.
    Q1. is there any performance issue, having these statements still in code, while they are there in PROD.
    Q2. these procedures have been called by VB application in PROD, now what we are looking for, is there any way to capture those errors which may be raised, there in PROD, if some weird work done by this VB application, what we
    are looking for is to see those errors or whatever be the output of those dbms_output.
    Do inform, is there any possibility to see those output using this VB application, coming out by dbms_output.
    Please ask for clarification, if need be.
    Thanks.

    user8604530 wrote:
    Q1. is there any performance issue, having these statements still in code, while they are there in PROD.
    1) I don't think there will be a big performance issue, i.e. it won't consume noticeable cpu resources.
    2) It might cause more memory consumption of your database sesssions, as all output is temporarily buffered in memory at the database server side.
    1 + 2 heavily depend on how many times the dbms_output.put(_line) procedures are actually called.
    3) It might cause failure of your application, as at some point in time the buffer for storing the output temporarily will fill up. And from that point onwards, all put(_line) calls will result in an error.
    Q2. these procedures have been called by VB application in PROD, now what we are looking for, is there any way to capture those errors which may be raised, there in PROD, if some weird work done by this VB application, what we
    are looking for is to see those errors or whatever be the output of those dbms_output.
    Do inform, is there any possibility to see those output using this VB application, coming out by dbms_output.
    No. Not without you doing some effort at the VB side. dbms_output data is buffered at the server side, and you will have to retrieve its contents yourself. SQLplus (and dome other adhoc sql tooling) will do this automatically for you. But I bet your VB application doesn't. Read up on the dbms_output.get(_lines) procedures on how to retrieve the contents of the buffered output.
    Toon

  • Can't see files that are backedup

    I have a G4 iMac that has both an internal (small) and external (large) drive that I use for data. I am using a time capsule to backup the whole system.
    When I run Time Machine it appears to backup both disks, the log file shows both drives having many GBs of data being transferred without any errors.
    However, when I go into the TM application, I can only see files that are on the internal drive. I can only see my external 'LaCie HFS' in the Now view, going back in time that drive is greyed out.
    If I use the finder when the TC is mounted, I can traverse into 'Backup.backupdb/iMac/2009-08-074700' and I can see the 'LaCie HFS' folder and in it are all my backed up files.
    I have looked through the FAQ and various postings but cannot find an answer.
    The closest thing that I can see as being a potential problem is that my old internal drive uses an Apple Partition Map while my new external drive uses a GUID Partition Table.
    Why would backupd created backups that Time Machine cannot see?

    Hi, and welcome to the forums.
    Try this: Open a Finder window and press ShiftCmdC (or select your computer name in the Finder Sidebar).
    Then +Enter Time Machine.+
    On the first Finder window in the "cascade," labelled Now, you'll see all the volumes currently attached to your Mac.
    Select the Finder window for any backup, and you'll see a folder for each drive/volume that was backed-up, including any that are no longer connected. Navigate from there to whatever you're looking for.

  • Can you see the problem?

    i'm trying to write a simple image viewer application.
    Can you see the problem. i can't. i'll appreciate any advice or help?
    import java.awt.*;
    import java.awt.image.*;
    import java.awt.event.*;
    import java.io.*;
    public class SimpleViewer extends Frame {
         protected Image awtImage;
         public void loadAndDisplay(String filename) {
              Image img = readImage(filename);
              awtImage = img;
              int width = img.getWidth(this);
              int height = img.getHeight(this);
              displayImage(img, width, height);
         public void displayImage(Image img, int width, int height) {
              addWindowListener(
                   new WindowAdapter() {
                        public void windowClosing(WindowEvent e){
                             System.exit(0);
              setTitle("Simple Viewer ");
              pack();
              setSize(new Dimension(width, height));
              show();
              repaint();
         public image readImage(String filename) {
              Image image = Toolkit.getDefaultToolkit().getImage(imageName);
              MediaTracker imageTracker = new MediaTracker(this);
              imageTracker.addImage(image, 0);
              try{
                   imageTracker.waitForID(0);
              }catch(InterruptedException e){ return null;}
              return image;
         public void paint(Graphics g){
              Rectangle rect = this.getBounds();
              if(awtImage != null) {
                   g.drawImage(awtImage, 0,0,rect.width, rect.height, this);
         public static void main(String[] args){
              SimpleViewer ip = new SimpleViewer();
              if(args.length <1) {
                   System.out.println("Enter a valid image file name");
                   System.exit(0);
              ip.loadAndDisplay(args[0]);
    }

    check this line and tell me what you see... after all, it's the source of your compiler errors...
    public image readImage(String filename) {
              Image image = Toolkit.getDefaultToolkit().getImage(imageName);once you figure that out, it will work...
    ( hint : check variable names and capitalization of names )
    - MaxxDmg...
    - ' He who never sleeps... '

  • Can't see webdynpro applications in webdynpro administration

    Hi all,
    I've installed ess and mss business packages on portal. But I can't see the respective applications nd jco connections in webdynpro administration. Any clue what could be wrong here. I am using EP 7.0.
    thanks,

    Hi,
    Have you deployed these webdynpro applications on you server where the portal is installed?while deploying WebDynpro application, in J2EE configuration, configure the J2EE engine.
    Regards,
    Ameya

  • I can't see my virtualhost when I deploy my application.

    Hi,
    Weblogic version: 10.3.6
    I followed this article steps by steps, but I can't see virtualHost.
    Why I can't see my virtualhost when i want deploy my application?
    http://weblogic-wonders.com/weblogic/2010/11/19/virtual-hosts-configuration-with-weblogic-server/
    Thanks in advance.
    Regards Salim.

    hi,
    can you say which step you stuck up?
    thanks

  • I am running out of memory on my hard drive and need to delete files. How can I see all the files/applications on my hard drive so I can see what is taking up a lot of room?

    I am running out of memory on my hard drive and need to delete files. How can I see all the files/applications on my hard drive so I can see what is taking up a lot of room?
    Thanks!
    David

    Either of these should help.
    http://grandperspectiv.sourceforge.net/
    http://www.whatsizemac.com/
    Or search 'disk size' in the App Store.
    Be carefull with what you delete & have a backup BEFORE you start, you may also want to reboot to try to free any memory that may have been written to disk.

  • Can you see which apps are open and/or running like you can on an android phone by going to settings applications running services?

    can you see which apps are open and/or running (like you can on an android phone by going to settings>applications>running services)?

    Hi wjosten,
    thank you for the help.  I should have said I had a iphone 3.  A friend has the same phone and she showed me how she can see what web pages are open when she double taps the home button.  Mine is set to bring up favourites when I double tap (chosen from settings>general>home button).. BUT my choices are only HOME; SEARCH; PHONE FAVORITES; CAMERA or IPOD.  I changed my choice to HOME but that just defeats the purpose as when I am at the home page and double tap nothing happens.  Am I making sense?

  • Trying to install MS Office 2011 for Mac SP 2 on my Macbook Air (Lion 10.7.3). I have to close Microsoft Database Daemon and SyncServicesAgent but can not see how to do so.  I have closed all applications.  Can anyone help? Many thanks

    Trying to install MS Office 2011 for Mac SP 2 (14.2.0) on my Macbook Air (Lion 10.7.3). I have to close Microsoft Database Daemon and SyncServicesAgent but can not see how to do so.  I have closed all applications.  Can anyone help? Many thanks

    Thanks Kurt!  I had tried all that and had tried closing both programmes from the application monitor, but SyncServices Agent refused to close.  I tried closing Launchd which is their mother application, but that just caused the screen go go blank.  In the end the two programmes let themselves be closed next time I tried the installation process so all was well.  Thanks for your help!

  • Can't see EJB objects in Application Navigator after migration

    Hello
    I can't see any objects in Application Navigator after migration from previous version of JDeveloper (9.2.0.5), in System Navigator view I can see all sources. Has somebody any idea what the reason is?
    Tom

    In the application navigator you should see one node per EJB, when you stand on it you'll see the various source files in the structure window.

  • Applications missing from EAS and can't see designated HBR on forms in workspace

    Hi!
    Just finished patching our EPM system;
    11.1.2.1.600: Oracle Hyperion EPM Workspace, HSS and Planning, fusion edition.
    11.1.2.1.103: EAS
    After installing the patches the systems were up and running and everything was just fine until yesterday around noon, when suddenly all of our applications disappeared from EAS.
    At the same time HBR Associated to the different forms was\is nowhere to be seen (in Workspace) when opering the planning forms.
    If I try opening forms in planning (not via WS), I can see all of the HBR associated to the forms, run them and push data back to essbase.
    Regards, Tom L

    We are currently using approximately 25 applications. I can only see the server in EAS, but no apps.
    Also create application is greyed out so it would seem that I don't have the sufficient rights which would be strange due to
    the face that I've got admin rights.
    Regarding HBR we have no problems seeing and running HBR for our classic apps in planning. The problems with HBR is related to WS.
    Thx!

  • HT4559 i have a new ipad 3rd G and i can't see the facetime application, but i can see the icon in the sitting notification

    i have a new ipad 3rd G and i can't see the facetime application, but i can see the icon in the sitting>notification
    how can i work with the facetime app??? plz reply me

    FaceTime is not available in KSA or UAE.
    See this -> http://support.apple.com/kb/HT1937

  • Can't see the "keynote" folder in application supports iwork

    I'm trying to uninstall some purchased themes that I don't like. As instructed, I followed the path library>application supports>iwork>keynote>theme. However, I can't see the "keynote" folder, although I showed hidden files. There is only the "pages" folder in that "iwork" folder. Can anyone please help me out?

    There are 3 Libraries on the computer. Go to Macintosh HD > Library > application support > iwork > Keynote > themes.

Maybe you are looking for

  • Vendor evalution report in SAP BUSINESS ONE

    We require Vendor Evalution report in SAP BUSINESS ONE which has information about receipt(GRPO) perfomance against purchase order issued.  We require item code, item description, p.o.no., p.o.qty, delivery date, GRPO NO., GRPO Date, GRPO QTY, Delay

  • QA32: Stock In Quality But no Inpsection Lot

    Greeting..             I have raw maetrial which i recievd against Purchase order , and its showing under qulity stock in stock overview.....But in QA32 i m not getting the Lot for this..no where i m founding the Lot of this material.. How to make th

  • Still no Outlook toolbar, x64, Office 2010?

    A while ago I installed Acrobat 9 on Windows 7, 64 bit with Office 2010. One thing that annoyed me was the lack of an Acrobat toolbar within Outlook, and no way to click a PDF button from within Office applications to create a PDF file through Acroba

  • Include command line args in jar file

    If I make and executable jar file, how can I make it so that when it runs certain comman line arguments are included

  • Build and Capture - waiting to install

    I am using SCCM 2012 RTM and have started seeing an issue with our Build and Capture Task Sequence.  When performing a build and capture the system will not install anything for a day or so and anything that is advertised to it gets stuck in a "Waiti