Re: How to remove fields from the default user portal page ?

Try some of these plugins.
https://community.spiceworks.com/appcenter/app/plugin_696
https://community.spiceworks.com/appcenter/app/plugin_1105

I like to remove the right hand side ticket history field that displays after user submit a new issue.
This topic first appeared in the Spiceworks Community

Similar Messages

  • How to remove fields from the default user portal page ?

    Hi Travis,
    How do I modify the page that display after submitting the ticket. These plugins are helpful to modify portal's home page only. Please advise if I'm missing anything.
    Thank you

    I like to remove the right hand side ticket history field that displays after user submit a new issue.
    This topic first appeared in the Spiceworks Community

  • HT1386 The first time I synced my iphone with my mac, I didn't realize that all of my photos from iphoto would transfer over to the phone.   Now, I need to remove some, as they are taking up too much space.  I cannot figure out how to remove them from the

    The first time I synced my iphone 4 with my mac, I didn't realize that all of my photos from the iphoto library would transfer over to the phone (more than 3,000).   Now, I need to remove some, as they are taking up too much space.  I cannot figure out how to remove them from the phone.  I tried to uncheck boxes and sync again, but I get a message that there is no room on the iphone.  I've read as many articles as I can find, but still cannot manage this.  Thanks for any help.

    Open itunes, connect iphone, select what you want, sync

  • Need to know how to iterate a list of field from the req xml in page servic

    Hi All,
    Please help me out with java code in which i am able to iterate a list of field coming in the request xml to my page service class under read(Pageheader header) method of mine queryPagemaintenace class.
    package com.splwg.cm.domain.pageService;
    import java.util.ArrayList;
    import java.util.Collection;
    import java.util.Iterator;
    import java.util.List;
    import com.ibm.icu.math.BigDecimal;
    import com.splwg.base.api.businessObject.BusinessObjectDispatcher;
    import com.splwg.base.api.businessObject.BusinessObjectInstance;
    import com.splwg.base.api.businessObject.COTSInstanceListNode;
    import com.splwg.base.api.datatypes.Date;
    import com.splwg.base.api.lookup.BusinessObjectActionLookup;
    import com.splwg.base.api.service.DataElement;
    import com.splwg.base.api.service.ItemList;
    import com.splwg.base.api.service.PageHeader;
    import com.splwg.shared.common.ApplicationError;
    import com.splwg.shared.environ.FieldDefinition;
    import com.splwg.shared.environ.ListDefinition;
    import com.splwg.shared.logging.Logger;
    import com.splwg.shared.logging.LoggerFactory;
    * @author
    @QueryPage (program = CMUSER, service = CMUSER,
    * body = @DataElement (contents = { @ListField (name = USER_GROUP_LIST)
    * , @ListDataField (name = USR_GRP_ID)
    * , @DataField (name = MESSAGE_TEXT)
    * , @DataField (name = USER_ID)
    * , @DataField (name = PASSWORD)
    * , @DataField (name = LAST_NAME)
    * , @DataField (name = FIRST_NAME)
    * , @DataField (name = USER_TYPE_FLG)
    * , @DataField (name = EMAILID)}),
    * actions = { "add"
    * ,"read"
    * , "delete"
    * , "change"},
    * header = { @DataField (name = USER_TYPE_FLG)
    * , @DataField (name = EMAILID)
    * , @DataField (name = LAST_NAME)
    * , @DataField (name = FIRST_NAME)
    * , @DataField (name = PASSWORD)
    * , @DataField (name = USER_ID)},
    * headerFields = { @DataField (name = USER_TYPE_FLG)
    * , @DataField (name = USR_GRP_ID)
    * , @DataField (name = EMAILID)
    * , @DataField (name = LAST_NAME)
    * , @DataField (name = FIRST_NAME)
    * , @DataField (name = PASSWORD)
    * , @DataField (name = USER_ID)},
    * lists = { @List (name = USER_GROUP_LIST, size = 100, includeLCopybook = false,
    * body = @DataElement (contents = { @DataField (name = USR_GRP_ID)}))},modules = {})
    public class CMUSER extends CMUSER_Gen {
    public static final Logger logger = LoggerFactory.getLogger(CMUSER.class);
         DataElement root = new DataElement();
         PageHeader page = new PageHeader();
         protected DataElement read(PageHeader header) throws ApplicationError{
    I want to know how can i iterate this USER_GROUP_LIST in my read method and get the USR_GRP_ID field data from it.
    A Prompt reply from your end will help me to resolve this issue

    Guru Sir,
    i tried to override the add() method of the framework in that i was able to iterate the field from the list. But now the i am facing there is that i am not able to send back the response to the external system in XML format. I am getting a blank response in my SOAP UI Tool while testing here is the code:
    import java.util.ArrayList;
    import java.util.Collection;
    import java.util.Iterator;
    import java.util.List;
    import com.ibm.icu.math.BigDecimal;
    import com.splwg.base.api.businessObject.BusinessObjectDispatcher;
    import com.splwg.base.api.businessObject.BusinessObjectInstance;
    import com.splwg.base.api.businessObject.COTSInstanceListNode;
    import com.splwg.base.api.datatypes.Date;
    import com.splwg.base.api.lookup.BusinessObjectActionLookup;
    import com.splwg.base.api.service.DataElement;
    import com.splwg.base.api.service.ItemList;
    import com.splwg.base.api.service.PageHeader;
    import com.splwg.shared.common.ApplicationError;
    import com.splwg.shared.logging.Logger;
    import com.splwg.shared.logging.LoggerFactory;
    * @author
    @QueryPage (program = CMUSER4, service = CMUSER4,
    * body = @DataElement (contents = { @DataField (name = MESSAGE_TEXT)
    * , @DataField (name = PASSWORD)
    * , @DataField (name = USER_ID)
    * , @DataField (name = LAST_NAME)
    * , @DataField (name = FIRST_NAME)
    * , @DataField (name = USER_TYPE_FLG)
    * , @DataField (name = EMAILID)
    * , @ListDataField (name = USR_GRP_ID)
    * , @ListField (name = USER_GROUP_LIST)}),
    * actions = { "add"
    * , "delete"
    * , "change"
    * , "read"},
    * header = { @DataField (name = USER_ID)
    * , @DataField (name = MESSAGE_TEXT)},
    * headerFields = { @DataField (name = USER_ID)
    * , @DataField (name = MESSAGE_TEXT)},
    * lists = { @List (name = USER_GROUP_LIST, size = 100,
    * body = @DataElement (contents = { @DataField (name = USR_GRP_ID)}))}, modules = {})
    public class CMUSER4 extends CMUSER4_Gen {
         public static final Logger logger = LoggerFactory.getLogger(CMUSER4.class);
         DataElement root = new DataElement();
         PageHeader page = new PageHeader();
         protected PageHeader add(DataElement item) throws ApplicationError{
              BusinessObjectInstance boInstance = BusinessObjectInstance.create("CM-USER");
              String USR_GRP_ID = null;
              try{
              logger.info("Data coming from the Service into the Application is :"+item.get(STRUCTURE.USER_ID));
              logger.info("Data coming from the Service into the Application is :"+item.get(STRUCTURE.FIRST_NAME));
              logger.info("Data coming from the Service into the Application is :"+item.get(STRUCTURE.LAST_NAME));
              logger.info("Data coming from the Service into the Application is :"+item.get(STRUCTURE.EMAILID));
              // logger.info("Data coming from the Service into the Application is :"+getInputHeader().getString(STRUCTURE.list_USER_GROUP_LIST.USR_GRP_ID));
              // Iterator it = STRUCTURE.
              ItemList sourceList = item.getList(STRUCTURE.list_USER_GROUP_LIST.name);
              List userGrpID = new ArrayList();
              logger.info("The Size of the User Group List here is :"+sourceList.size());
              Iterator iter;
              if ((sourceList != null) &&
              (sourceList.size() > 0)) {
              for (iter = sourceList.iterator(); iter.hasNext(); ) {
              DataElement myItem = (DataElement)iter.next();
              USR_GRP_ID = myItem.get(STRUCTURE.list_USER_GROUP_LIST.USR_GRP_ID);
              logger.info("The User Group Id coming in the List here is :"+USR_GRP_ID);
              logger.info("Data coming from the Service into the Application is :"+item.get(STRUCTURE.PASSWORD));
              boInstance.set("user", item.get(STRUCTURE.USER_ID));
              boInstance.set("firstName", item.get(STRUCTURE.FIRST_NAME));
              boInstance.set("lastName", item.get(STRUCTURE.LAST_NAME));
              boInstance.set("emailAddress", item.get(STRUCTURE.EMAILID));
              // COTSInstanceList userGrpList = boInstance.getList("userGroupUser");
              // COTSInstanceListNode userGroupList = userGrpList.newChild();
              COTSInstanceListNode userGroupList = boInstance.getList("userGroupUser").newChild();
              userGroupList.set("userGroup", USR_GRP_ID);
              logger.info("Data coming from the Service into the Application is :"+userGroupList.toString());
              /*boInstance.set
              boInstance.set("userGroup", getInputHeader().getString(STRUCTURE.HEADER.USR_GRP_ID));*/
              // UserTypeLookup.constants.TEMPLATE_USER
              //if(element.get(STRUCTURE.USER_TYPE_FLG))
              //boInstance.set("user", element.get(STRUCTURE.));
              boInstance.set("dashboardWidth","200");
              boInstance.set("homeNavigationOption","CI0000000574");
              boInstance.set("language","ENG");
              boInstance.set("toDoEntriesAge1", new BigDecimal(50));
              boInstance.set("toDoEntriesAge2",new BigDecimal(100));
              boInstance.set("displayProfileCode", "NORTHAM");
              String expirationDate = "2100-12-31";
              String[] array = expirationDate.split("-");
              userGroupList.set("expirationDate",new Date(Integer
                             .parseInt(array[0]), Integer
                             .parseInt(array[1]), Integer
                             .parseInt(array[2])));
              //boInstance.set("userGroupUser", userGroupList);
              COTSInstanceListNode roleUserList = boInstance.getList("roleUser").newChild();
              roleUserList.set("toDoRole","F1_DFLT");
              COTSInstanceListNode dataAccessList = boInstance.getList("dataAccessUser").newChild();
              dataAccessList.set("dataAccessRole","***");
              String expiryDate = "2100-01-01";
              String[] array1 = expiryDate.split("-");
              dataAccessList.set("expireDate",new Date(Integer
                             .parseInt(array1[0]), Integer
                             .parseInt(array1[1]), Integer
                             .parseInt(array1[2])));
              BusinessObjectDispatcher.execute(boInstance,
                             BusinessObjectActionLookup.constants.FAST_ADD);
              page.put(STRUCTURE.HEADER.MESSAGE_TEXT, "User Added Successfully");
              page.put(STRUCTURE.HEADER.USER_ID,item.get(STRUCTURE.USER_ID));
              }catch(Exception e){
                   e.printStackTrace();
                   page.put(STRUCTURE.HEADER.MESSAGE_TEXT, "Caught Exception in the ORMB System. Please reach out to the Admin"+e.getMessage());
                   page.put(STRUCTURE.HEADER.USER_ID,item.get(STRUCTURE.USER_ID));
              return page;
    If you can help me to find out what went wrong here while sending the response back it can close my issue.

  • How to remove photos from the photo library

    How can I remove photos from the photo library?
    I searched and tried the below method.
    I connected to the PC and open iTunes. I clicked "photos" on the top. Then clicked the box "Sync Photos with" and choose the dropdown and "choose folder"
    Then I clicked "desktop" option and chose an empty file and click "apply", "sync".
    However, it doesn't work. Nothing has been removed.
    I saw there is another method - deselecting the checkbox of the photo files. However, in my iTunes, there is no files has been selected.
    How can I delete photos from the photo library? Thank you.

    How did the photos get onto your device (and is it an iPad, iPhone, iPod Touch ?) ? Only photos that were synced from a computer can be deleted via iTunes, photos that were taken with it or saved from emails/websites on the iPad (or if it's an iPad copied to it via the camera connection kit) can be deleted directly in the Photos app, or you might be able to delete the via the import process : Import photos and videos from your iPhone, iPad, or iPod touch to your Mac or Windows PC.

  • How to remove "help" from the menu bar?

    I'm using a landscape monitor in vertical mode, so I have a very narrow top of the screen. I never use the help button, ever. How can I remove it from the menu bar, freeing up some space? I need more space in the menu bar for MenuMeters etc. Thanks.
    MacBook Pro Retina 15" (mid-2014) 2.5 GHz Intel Core i7
      OS X 10.9.5

    Usually the apps belonging to these icons have an option that allows you to hide the Menu Bar icon by allowing them to run as an app in the dock. However, certain applications like Caffeine must show their icons as otherwise you wouldn't be able to access them.
    For example, Dropbox doesn't allow you to remove its menu bar icon:

  • How to remove xmlns="" from the message

    some reason on the header node in the below message gets xmlns="" when the message is generated from BPEL.
    below is the output that generated. I want to remove xmlns="" from the message.
    <?xml version="1.0" ?><ProductMovementReport xmlns="urn:cidx:names:specification:ces:schema:all:4:0" Version="4.0">
    <Header xmlns="">
    <ThisDocumentIdentifier>
    <DocumentIdentifier>42519</DocumentIdentifier>
    </ThisDocumentIdentifier>
    <ThisDocumentDateTime>
    Can anybody help me please ?

    It's is missing my blog article :-)
    Here it is:
    <?xml version="1.0" encoding="UTF-8" ?><xsl:stylesheet version="1.0" xmlns:xsl="http://www.w3.org/1999/XSL/Transform"><xsl:template match="comment()|processing-instruction()|/"><xsl:copy><xsl:apply-templates/></xsl:copy></xsl:template><xsl:template match="*"><xsl:element name="{local-name()}"><xsl:apply-templates select="@*|node()"/></xsl:element></xsl:template><xsl:template match="@*"><xsl:choose><xsl:when test="name() != ''xmlns''"><xsl:attribute name="{local-name()}"><xsl:value-of select="."/></xsl:attribute></xsl:when></xsl:choose></xsl:template></xsl:stylesheet>';

  • I have an iPhone 4 and I am wondering how I remove emails from the "All Mail" .  I have over 8,000 emails and want to free up storage but it will take forever to delete them 1 at a time!  Help!

    Is there a way to remove emails from the Exchange Account "All Mail"?  I have over 8 thousand emails and want to clear them out.  It looks as though I have to delete them one by one!

    Since it's an Exchange account, it sounds like the way to do this would be to remove them using a computer.

  • How to remove fields from Standard Screen

    Hi,
        I Have faced one problem in screens(se51). When apply one SAP Note i have to change the screen manually(as per Note ) . My requirement is to remove some text fields and label fields. But I cant delete the Fields.
       Normally just select the object and Press delete Key to remove one object from screen. But here it is not working.
      How can i remove the objects from the screen as per SAP Note.
    Thanks in Advance,
    WIth Regards,
    Neptune.M

    Hi,
    T.code SHD0 helps you control which fields to appear, suppress and make mandatory in Standard Screen.
    refer
    https://forums.sdn.sap.com/click.jspa?searchID=4359065&messageID=2961760
    Regards

  • Does anyone know how to remove sundays from the datepicker in BC?

    I have a client that is closed on Sundays and occasionally gets an irate customer that books late saturday and is upset that no one is there on Sundays. So I would really like to remove the option of Sundays from the date picker.

    Hi guys,
    I had the same problem as jbyrom and found a work-around using a bit of jQuery. Before I begin...
    Downsides
    It's a bit of a pain if you have tons of date fields, as you'll need to add a class to each datepicker field
    Because you need to add a class to each datepicker field, you'll need to add the Web Form as HTML (ie make sure "insert as module instead" is unchecked when adding the form to a page)
    As mentioned, it's a work-around - may stop working in the future if Adobe changes the way the datepicker works
    Users could still put in "restricted" dates by manually typing the date instead of clicking the date in the datepicker
    How-To
    Add a class to each datepicker field you want to restrict days on (I'm using "datepickerhack").
    Add the script below the form (ie at least after the closing </form> tag). This is so jQuery and BC's Java_Datepick.js are loaded before the script.
    Add some CSS to your stylesheet to make it obvious to them they can't click certain dates.
    Script
    <script type="text/javascript">
    $(document).ready(function(){
         $(".datepickerhack").focus(function(){
              // Grab the ID of the relevant date field and use it to call the built-in BC displayDatePicker function
              var datetable = $(this).attr("id");
              displayDatePicker(datetable);
              // Now the date table is in the DOM, remove the onclick events of the appropriate TDs
              // In this example I'm removing the onclick event of the first TD in each row (ie Sunday)
              $(".date tr td:first-child").attr("onclick","");
              return false;
    </script>
    CSS
    Last step is something simple for usability, so users know they can't click the unclickable days. I just used:
    .date tr td:first-child{background-color:#CCC;}
    .date tr:last-child td{background-color:#FFF;}
    The second line is needed as the last row contains the "Today"/"Clear"/"Close" buttons (as opposed to dates)
    Edit: fixed formatting, added last "Downside"

  • ISE 1.3 Remove fields from the Sponsorportal

    Hello,
    we´ve recently upgraded our ISE 1.2 to version 1.3 and now I need to remove the Fields "Phone number", "Reason for visit" and Group Tag from the Sponsorportal. I couldn´t find it in the backend or in the CSS-File.
    Where can I do that? Help is much appreciated!

    When providing guest access, you may want to collect information from your guests beyond just their names, email addresses, and phone numbers. Cisco ISE provides custom fields that you can use to collect additional information about guests that is specific to your company’s needs. You can associate the custom fields with guest types and with the Self-Registered Guest and Sponsor portals. Cisco ISE does not provide any default custom fields.
    http://www.cisco.com/c/en/us/td/docs/security/ise/1-3/admin_guide/b_ise_admin_guide_13/b_ise_admin_guide_sample_chapter_01111.html#task_ECADC256FED4471CA91171397E58405E
    Procedure
    Step 1  
    To add, edit, or delete custom fields for all Guest and Sponsor portals, choose Guest Access > Settings > Custom Fields.
    Step 2  
    Enter the Custom Field Name, pick a Data Type from the drop-down list, and enter Tip Text to help provide additional information about the custom field. For instance, if you enter Date of Birth, pick Date-MDY, and enter a tip for the date format as MM/DD/YYYY.
    Step 3  
    Click Add. The custom field appears in the list in alphabetical order or in the context of the sorted order.
    Step 4  
    Click Save. If you do not want to save any updates you made to the settings, click Reset to revert to the last saved values.
    Note   
    If you delete a custom field, it will no longer be available for selection in the Custom Fields list for guest types and in the Self-Registered Guest and Sponsor portals settings. If the field is being used, Delete will be disabled.

  • How to remove SANE from the list of scanners that are shared in Preferences

    So I installed SANE for an old scanner, which is now replaced by a new Canon that is supported by native OSX and canon drivers. I therefore uninstalled SANE, the prefpane and all occurrences in the /Library and so on, however it is still being listed as an option in the scanners that can be shared i.e. in System Preferences>Sharing>Scanner sharing.
    How do I go about removing this, any hints?
    I also have this suspicion that this is the root of major issues I have accessing the scanner on my system some times, since I get "scanner communication errors" quite frequently, which are in turn resolved my plugging my scanner off and back on again...I did reinstall the software and drivers that came with the scanner to no avail.
    Thanks

    Hey, I used wonder as well where the information was stored regarding the scanner sharing and I think I found a solution. Here's what I found. Download an application that can edit .plist files, such as Martin Bresink's "Prefedit" or "PlistEdit Pro".
    Go to this location: ~/Library/Preferences/ByHost and find the file "com.apple.ImageCaptureExtension2.[xxxxxxxxxxxx].plist" where X's stands for your specific Ethernet/Airport Mac address.
    Edit the file using the application mentioned and remove your scanner/device (SANE) from the Devices list (remove the device number, ie. 0 or 1 or 2, etc). Save the file. If unable to save, change permissions to own the file, save it, and reset the permissions.
    That removed the shared scanner from my list of scanners in the sharing preference.
    Hope it works.

  • How to remove Babylon from the search engine menu?

    My OS is Windows 7 Pro 64 bit; using Firefox ver 15.0. I downloaded Babylon tool bar and related apps because they were associated with a tool manual that I wanted to review. I then discovered how invasive these apps are. Successfully removed Babylon downloader and Tool bar via Start | Control Panel | program menu. However I notice that "Search the web (Babylon)" is still listed in the drop down menu of search engine options. I have defaulted my search engine to Google, and I can delete the Babylon option, but it returns every time when I close my browser and then return to my FF Mozilla home page. How can I permanently remove Babylon as a search engine option?

    '''edit'''<sub>( comments by a forum moderator - J99 )</sub> COMMENT: everyone;
    *I realise there may be a good deal of frustration is some situations, and some comment may be intended as hyperbole or humour, but please try to follow [[Forum rules and guidelines]]. There is otherwise a risk that action will be taken against infringers, that could include deletion of whole posts or even account deactivation.
    * I have let this post stand, it is quote by Babylon in a [https://support.mozilla.org/en-US/questions/935739#answer-372309 rebuttal] lower down in this thread
    * as an aside, note that I understand Firefox management staff are currently co-ordinating improvement in documentation relating to removal of software extensions.
    Babylon is the most pernicious, invasive, intrusive, manipulative and misleading software company on the internet. They pretend to be legitimate but their practices, actions and tactics are in the same league as spyware, viruses and malware. If there is a way to block them I want to know how. Legal action is the only way companies like this one can be controlled. I volunteer as lead plaintiff.

  • Caching issue - How ro remove cache from the portal iview

    Hi,
    I am facing problem of caching.In my application I am substituting one user(user 1) to some other user(user 2).Based on the substitution(latest substitute user 2),I should get the values for the User 2.
    But after substitution,I am getting the values for the user 1 and after some time(2/3 second) I am able to get all the values for the User 2.The application is working fine.But some how its retaing the previous values of the user 1.
    Can anyone please suggest me how to remove the cache from the iview.
    Regards
    -Sandip

    Hi Sandip,
    Enterprise Portal caching can be taken care or in a number of ways, all these are listed in the doc below:
    https://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/71d7b8dc-0701-0010-dfba-881dba1b5b95
    - Regards, Dibya

  • OAM: dunno how to remove objectclass from the tab Employee

    Hi,
    I have the default tab "Employee" under "Identity System Console"->"User Manager Configuration" -> Tabs.
    I added an objectclass created by me for test purpose and now I'd like to remove it, but it seams impossible from the console... I achieved this modifying the object in the LDAP server and restarting the Identity server.
    Is there a more friendly way to do this? Same question for the list of objectclasses under "Identity System Console"->"Common configuration"->"Objectclasses".
    Thanks.
    Cheers.

    Case 1)If your are LDAP server is Oracle Internet Directory, Go to Schema Managment--> delete the corresponding objectclass from OID.
    Restart your Identity Server and OID server.
    Case 2) Under o=oblix,dc=myorg,dc=com, delete your customized objectclass obclass=<customizedobjectclass>
    Restart your Identity Server and OID server.
    Regards,
    Ajay Babu Pentela

Maybe you are looking for

  • Is there a way to monitor audio while recording video on iphone?

    I use an external microphone with a y-splitter for plugging in the mic but I can't get any sound out of the headphone side. Don't know if it's the adapter or if the phone just doesn't do that.

  • Firefox won't update because I have Mac OSX 10.4.11

    I keep getting prompts saying that a website is unsecure and not protected. I also get prompts telling me to update, but when I follow them I'm told my operating system is too old and that I should go to Mozilla's website to get the latest version wh

  • R12 SUPPLIER SITE UPDATE API

    Hi Gurus, Currently I'm developing Supplier Site Update Program, I need to update Supplier Site level liability account information. I found an API (AP_VENDOR_PUB_PKG.Update_Vendor_Site), please confirm is this right API to update vendor sites? As I

  • Working with imported Word documents

    I've noticed that Pages (for iOS) gets very slow and laggy -- especially the on--screen keyboard -- when working with imported Word documents. Is there a method to convert imported files to native Pages documents, and thereby maybe speed up the app?

  • Navigation keys does not work

    The following navigation keys does not work. - Task navigation key - Home navigation key - Back navigation key The rest of the keyboard work