Hi Jeffrey Bostoen, Thanks for your reply. Here's the complete XML file. I'm still having the same problem. I've also seen that it's possible to create a custom portal, but I don't understand if that would mean creating a new portal or modifying an existing one. I apologize if the message isn't clear; I'm using Google Translate. Thank you very much. Version 3.1.1-1-12561 <?xml version="1.0" encoding="UTF-8"?> <itop_design xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="3.0"> <profiles>...
Hi Jeffrey Bostoen, Thanks for your reply. Here's the complete XML file. I'm still having the same problem. I've also seen that it's possible to create a custom portal, but I don't understand if that would mean creating a new portal or modifying an existing one. I apologize if the message isn't clear; I'm using Google Translate. Thank you very much. <?xml version="1.0" encoding="UTF-8"?> <itop_design xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="3.0"> <profiles> <profile id="2" _delta="define">...
Good morning. I've been trying for a while to remove the "New Requirements" button from the portal for profile 2, but I haven't been able to. I created the following configuration in a new extension, which installed without problems, but I still couldn't get the button to disappear. If anyone can help me, thank you very much. ` <itop_design xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="3.0"> </itop_design> <profiles> <profile id="2" _delta="define"> <classes> <class id="UserRequest">...
Good morning, I am creating tickets through API/REST and assigning them. I have the notifications configured and they work correctly when I do the steps through iTop, but it does not send emails when I do the same from API/REST. With API/REST I was able to create and assign, it works correctly, the version I have is 3.1. 1. If someone can tell me how to do it if it is possible or if I should send the email through the personal application and notify iTop of the sending of it. The problem with that...
Thanks for responding. I'm telling you, I found this way to do it. So far, I've got it figured out. $userData = array('itop_user' => $_SESSION['auth_user'] //$oUser->Get('login') Thank you very much.
Good morning. Thanks to anyone who can help me. I have the following problem. I was able to open a page encapsulated in an iframe from the portal. However, I couldn't pass the UserRequest to my home page. I looked for information, but it's clearly not that simple. In my data model, I have the following code; the iTop version is 3.1.1. If you could help, I'd be grateful. datamodel.xml <?xml version="1.0" encoding="UTF-8"?> <itop_design xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.3">...
Good morning. Thanks to anyone who can help me. I have the following problem. I was able to open a page encapsulated in an iframe from the portal. However, I couldn't pass the UserRequest to my home page. I looked for information, but it's clearly not that simple. In my data model, I have the following code; the iTop version is 3.1.1. If you could help, I'd be grateful. datamodel.xml <?xml version="1.0" encoding="UTF-8"?> <itop_design xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" version="1.3">...
I tell you, I was able to make an intermediate page that then calls my site, in it I wanted to use UseRights: in the following way <?php require_once('../../approot.inc.php'); require_once(APPROOT.'/application/application.inc.php'); // Obtener el usuario actual $oUser = UserRights::GetUser(); // Datos a enviar $userData = array( 'itop_user' => oUser->Get('login'), 'user_id' => $oUser->GetKey(), 'user_name' => $oUser->Get('friendlyname'), 'user_email' => $oUser->Get('email'), 'token' => md5($oUser->Get('login')...