Hello! Is this a complete new deployment or have you migrated from 7.3 to 7.6 with the migration wizzard? We migrated from 7.4 to 7.6 and had the same issue. The solution: /var/lib/vco/tool...
See more...
Hello! Is this a complete new deployment or have you migrated from 7.3 to 7.6 with the migration wizzard? We migrated from 7.4 to 7.6 and had the same issue. The solution: /var/lib/vco/tools/configuration-cli/bin/vro-configure.sh sync-local service vco-server restart Robert
Hello Tim! Your Installation looks like to be 7.5? In 7.6 this issue seems to be fixed. We are on 7.4 and the suggestion from GSS: install latest Hotfix (7.4 -> https://kb.vmware.com/s/article...
See more...
Hello Tim! Your Installation looks like to be 7.5? In 7.6 this issue seems to be fixed. We are on 7.4 and the suggestion from GSS: install latest Hotfix (7.4 -> https://kb.vmware.com/s/article/60310 and 7.5 -> https://kb.vmware.com/s/article/60310). Robert
Hello Tim! Same Problem here... Tested with a more then simple DataGrid and Action: val2return = [] val2return.push({"id" : 1, "name" : "one"}) val2return.push({"id" : 2, "name" : "two"})...
See more...
Hello Tim! Same Problem here... Tested with a more then simple DataGrid and Action: val2return = [] val2return.push({"id" : 1, "name" : "one"}) val2return.push({"id" : 2, "name" : "two"}) val2return.push({"id" : 3, "name" : "three"}) return val2return It looks like a rendering Issue - if I edit a row the values are ok: I'm curious what GSS will say to this Robert
I just checked this in our 7.5 test environment and there is no "Value" and "Constrains" Tab anymore. Maybe the ~storage field is now updated out of the box?
Hello! Look for entries like Sysprep_Generalize_MiStreamProv: RegDeleteValue for target uri failed with error = 2[gle=0x00000002] Sysprep_Generalize_MiStreamProv: RegDeleteValue for full p...
See more...
Hello! Look for entries like Sysprep_Generalize_MiStreamProv: RegDeleteValue for target uri failed with error = 2[gle=0x00000002] Sysprep_Generalize_MiStreamProv: RegDeleteValue for full payload time failed with error = 2[gle=0x00000002] If yes then you need to set this RegKey: [HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Windows\StreamProvider] "LastFullPayloadTime"=dword:00000000 This fixes our problem with Windows Server Templates but in your case this is just guessing Can you upload the sysprep logs? Robert
I opened a SR on Monday - Status: Open (Wait on Engineering). The CF is actually loaded but it stays in the back of "Loading...". You can see the form when you enable the debug mode in you bro...
See more...
I opened a SR on Monday - Status: Open (Wait on Engineering). The CF is actually loaded but it stays in the back of "Loading...". You can see the form when you enable the debug mode in you browser and pull the debug frame up to the "Loading..." Icon.
I had a talk with VMware BCS and the Custom-Form-Loads-Forever-Problem was passed on to Engineering. If you are using Custom Forms i would not recommend an Upgrade to 7.5 at the moment...
Just upgrade from 7.4 to 7.5 and have the same "running for ever" problem with Custom Forms. I think this is an internal vRA problem and has nothing to do with the Custom Form. Even a complete em...
See more...
Just upgrade from 7.4 to 7.5 and have the same "running for ever" problem with Custom Forms. I think this is an internal vRA problem and has nothing to do with the Custom Form. Even a complete empty CS will not load.
Hello! The in_DC and in_StorageReservation_* Values are only used for the Storage Reservation Policy. I changed the Code a bit - now you only need the "in_template_disks" and the "in_diskX_siz...
See more...
Hello! The in_DC and in_StorageReservation_* Values are only used for the Storage Reservation Policy. I changed the Code a bit - now you only need the "in_template_disks" and the "in_diskX_size" parameters. The "in_template_disks" Values depends on your base Template. If the Template has one Disk with 80 GB you set the Value to "80". If your Template has multiple Disks (for example four Disks with 80, 20, 10 and 30 GB) set the value to "80|20|10|30" - the "|" is the delimiter. Robert
Hello! The "vSphere_Machine_1" is the Name of one Component of the Blueprint and its defined by the user who created the Blueprint (in your Case: CENTOS_7_POSIX). A Blueprint can have more tha...
See more...
Hello! The "vSphere_Machine_1" is the Name of one Component of the Blueprint and its defined by the user who created the Blueprint (in your Case: CENTOS_7_POSIX). A Blueprint can have more than one Component but the Name must be unique within one Blueprint. You can get all Component Names from the json response with "$Form.data.psobject.properties.name". Robert
Hello! In vRA 7.4 you can do this quite easily with Custom Forms. As far as I know in versions < 7.4 there is no out-of-the-box Solution for this. Robert
Our Users do not see the DataGrid at all. I placed it in a new Tab and hide the Tab from the Users. The Grid Values are generated from a vRO Action based on Custom Form Fields and Custom Properti...
See more...
Our Users do not see the DataGrid at all. I placed it in a new Tab and hide the Tab from the Users. The Grid Values are generated from a vRO Action based on Custom Form Fields and Custom Properties.
function AddLeadingZero(number) { return (number < 10 ? '0' : '') + number } var day = date.getDate() var month = date.getMonth() + 1 // getMonth() -> 0 = jan var year = date.getF...
See more...
function AddLeadingZero(number) { return (number < 10 ? '0' : '') + number } var day = date.getDate() var month = date.getMonth() + 1 // getMonth() -> 0 = jan var year = date.getFullYear() var fulldate = AddLeadingZero(day) + "." + AddLeadingZero(month) + "." + year System.log(fulldate)