Can you modify the default columns displayed in standard lists?

Hi,
Is it possible to changes the columns displayed in the standard out of the box lists? e.g. All Companies.
After making our customisations most objects need to have their standard list columns modified and I do not really want to have to re-create all the standard lists we want to use in order to get relevant columns displayed?
Thanks for the help.

Hi,
I don't believe you can modify the out of the box lists without recreating them.
Not sure if this will work for you, but a possible workaround would be to use Search Layouts to achieve your desired result. For example, if you were to modify the Search Layout for accounts to reflect all the relevant columns you need to display, then a simple search for "*" as the Account Name would result in a search for All Accounts in the list format you wish to see.
Hope this helps.
Regards,
Cameron

Similar Messages

  • How can you modify the displayed columns on a Related Information List?

    How can you modify the displayed columns on a Related Information List? For example, how could you add the "Type" column to the List of columns displayed for Service Requests when you are viewing the Contacts Detail page?
    Thanks

    I'd have to say I think this is one of the biggest flaws in the OnDemand system currently. The solution I have come up with is to create reports and put them in webapplets showing the data I want to show. I have then removed the standard Related Info List Objects and added weblinks to create new records as the button on the List object is also gone.
    Keep in mind that doing this does slow things down a little, so it may not work if you have a big user base.
    RWB.

  • Can you modify the price of a contract in the ME32K directly from the item

    Hello,
    I am in ECC6.0
    I need to modify the price of an item in the contract (ME32K WK or MK) but it is grey (only in display). So I must do Item-Condition and then I can modify the price of the item.
    Can you modify the price of a contract in the ME32K directly from the item screen?
    I have try with several field selections but nothing.
    AKTV     Change
    MKK     Quantity contract (for MK)
    WKK     Value Contract (for WK)
    PT0K     Standard item contract
    Cheers,
    Marta

    HI,
    If you maintain any condition in the contract line item condition, like freight, discount etc. the landed price gets populated in the line item price field. So if you want to make any change in base price, it has to be changd in the line item condition.
    This is because, You can maintain different validity period in condition and maintain different price in each validity period. So which price you want to pick? So the system captures the price from condition and populate it in the item price field depending on the validity period price.
    Hope this helped you.
    Regards

  • How do you modify the default Execute thread count in Weblogic Server 9.2?

    How do you modify the default Execute thread count in Weblogic Server 9.2?
    How can you tune the starting number of weblogic.ExecuteThread on server startup and/or set minimum number?
    Is there an option from the console?
    Please let me know.
    Thanks

    Self tuning will automatically manage the threads but however you can still control the min and max by adding the min and max values for each instance either directly adding in config.xml or through JVM settings
    1) Modifying the config.xml
    Just add the following line(s) to each server definition :
    <server>
    <name>AdminServer</name>
    <self-tuning-thread-pool-size-min>100</self-tuning-thread-pool-size-min>
    <self-tuning-thread-pool-size-max>200</self-tuning-thread-pool-size-max>
    </server>
    2) Adding some JVM parameters
    It's safer the following way :
    add the following option in your command line : -Dweblogic.threadpool.MinPoolSize=100
    Regards
    RR

  • Can you change the DEFAULT VIEW of a published iCal to MONTH VIEW?

    Can you change the DEFAULT VIEW of a published iCal to MONTH VIEW? I use this for a vacation rental and people never ever ever ever need to see anything but the MONTH VIEW. I hate having to tell them to click MONTH view at the top of the page. Is there a way to force it to always appear in MONTH? Thanks!

    ddotcom,
    Welcome to Apple Discussions.
    Unfortunately no, but if they are repeat viewers why not tell them to change their view to "Monthly" using the "Preferences" button on that page?
    ;~)

  • Can you change the default font in an iPad mail account?

    I suspect you can't, but just checking: can you change the default font in an iPad mail account?

    There is no way to change the default font in the mail app. You can make the type larger by using the accessibility feature of larger text. Settings>General>Accessibility>Larger Text. There is an app that allows you to add fonts to the iPad, but I do not think this works with the built in iOS apps such as mail.
    You can check it out.
    https://itunes.apple.com/us/app/anyfont/id821560738?mt=8

  • Can you change the default image capture program in RH8?

    Can you change the default image capture program in RH8? I have used Snagit for sooo many years and I would like to use it by clicking the Caputre button.  I know how to change it to edit pictures with Snagit (Tools > Options > Associations), but not to capture.

    Looks like a feature request.
    Please follow this link.
    http://www.Adobe.com/cfusion/mmform/index.cfm?name=wishform&product=38
    See www.grainge.org for RoboHelp and Authoring tips
    @petergrainge

  • Can you reload the default HTTPS certificate for a Border Controller?

    The HTTPS page does not work for the Tandberg Border Controller (Q6.3). HTTP is fine. I believe that the customer uploaded their own certificate which has now “broken” the HTTPS page.
    So the question is – can you reload the default HTTPS certificate for a Border Controller?
    There’s a handy button to do this on the VCS but not on the BC it seems. The only option I can see is for the customer to generate a “working” certificate and upload it, is this the only option?
    Thanks,
    David

    Hi sherylz,
    It is also possible to edit the theme, but it may be wise to make a copy of it:
    *[https://support.mozilla.org/en-US/questions/940165]
    *[https://developer.mozilla.org/en-US/Add-ons/Themes/Background MDN Reference]
    *Add on to make own skin: [https://addons.mozilla.org/en-Us/firefox/addon/bt-canvas/]

  • How do I modify the Title Column of a Task List using JSLink

    I would like to modify the title column of a Task List in SharePoint 2013. I would like to make the title column different colors based on a selection in another field. For some reason I can run the TitleRendering function
     on a different filed and it works perfectly, but when I try to run it on the Title field it is completely ignored. Is there some kind of work around for this?
    var taskSample = taskSample || {};
    taskSample.CustomizeFieldRendering = function () {
    RegisterSod('hierarchytaskslist.js', '/_layouts/15/hierarchytaskslist.js');
    LoadSodByKey('hierarchytaskslist.js', null);
    // Intialize the variables for overrides objects
    var overrideCtx = {
    Templates: {
    Fields: {
    "Title": {
    'View' : taskSample.TitleRendering
    // Register the override of the field
    SPClientTemplates.TemplateManager.RegisterTemplateOverrides(overrideCtx);
    taskSample.TitleRendering = function (ctx) {
    var output = [];
    switch(ctx.CurrentItem.Unit) {
    case "Unit 1":
    output.push('<span style="color: blue;">');
    output.push(ctx.CurrentItem.Title);
    output.push('</span>');
    break;
    case "Unit 2":
    output.push('<span style="color: green;">');
    output.push(ctx.CurrentItem.Title);
    output.push('</span>');
    break;
    case "Unit 3":
    output.push('<span style="color: red;">');
    output.push(ctx.CurrentItem.Title);
    output.push('</span>');
    break;
    case "Unit 4":
    output.push('<span style="color: yellow;">');
    output.push(ctx.CurrentItem.Title);
    output.push('</span>');
    break;
    case "Unit 5":
    output.push('<span style="color: orange;">');
    output.push(ctx.CurrentItem.Title);
    output.push('</span>');
    break;
    case "Unit 6":
    output.push('<span style="color: pink;">');
    output.push(ctx.CurrentItem.Title);
    output.push('</span>');
    break;
    default:
    output.push(ctx.CurrentItem.Title);
    break;
    return output.join('');
    taskSample.CustomizeFieldRendering();

    Hi,
    Per my understanding, the TitleRendering function is not been applied to the Title column of the Task list.
    I suggest you replace the “Title” with “LinkTitle” in your .js file:
    var overrideCtx = {
    Templates: {
    Fields: {
    "LinkTitle": {
    'View' : taskSample.TitleRendering
    In IE Developer Tools, we can see that the “name” attribute of the Title column is “LinkTitle”:
    Best regards
    Patrick Liang
    TechNet Community Support

  • How can I modify the default styles or create new ones in pages for IPad?

    Hi, I have recently bought the pages for IPad App. It is nice, but I wonder How to modify the default styles or create My own ones...Can anyone help me?

    Unfortunately, pages on the iPad does not support editing styles. The mac version is an extremely powerful piece of software (I know someone who has recently completed their PhD thesis in it), but the iPad version has only a fraction of the features.
    The only word processor for the iPad I'm aware of that fully provides support for styles is UX Write - see http://www.uxproductivity.com (disclaimer: I've been involved with the development of this app). This is designed for the sort of high-end professional authoring tasks that you can do with Pages for Mac. Customisable styles are one of the most fundamental aspects of this app, and it provides extensive formatting options and the ability to define your own, new, custom styles.

  • Can you set the default Filter under Admin tab in UCSM?

    Such a minor and trivial question but just curious. It defaults to 'Faults, Events, and Audit Log'. A majority of the time that's all you'll need after initial setup, but I was wondering if I could somehow set the filter to 'All' as the default view.
    Is this possible?

    You can't, Apple would have to do this.

  • Can I modify the default text in an email submission?

    When I press the "submit email" button on my form, it opens Lotus Notes (yes, gag, corporate decision) and appends the XML file to an email that states:
    "The attached file contains data that was entered into a form. It is not the form itself.
    The recipient of this data file should save it locally with a unique name. Adobe Acrobat Professional 7 or later can process this data by importing it back into the blank form or creating a spreadsheet from several data files. See Help in Adobe Acrobat Professional 7 or later for more details."
    Can I modify this text somehow??
    And, yes, I'm a total newbie to LiveCycle ES forms...

    We ran into the same issue so we chose to create our own email submit button. We even allowed our users to enter their email, subject line and body using response boxes. We used the standard button and added the following Javascript on the click event.
    var mail;
    var vAddress = xfa.host.response ("Please enter the email address","EMAIL RECEIPIENT","[email protected]",0);
    var vSubject = xfa.host.response ("Enter subject line","WHAT IS EMAIL ABOUT","Here is the file you wanted",0);
    var vBody = xfa.host.response ("Enter body of email","Details", "Here is the file you requested. Thanks for your time",0);
    if (vAddress == 0 || vSubject == 0)
    xfa.host.messageBox ("Email Cancelled","This file will not be emailed",0,0);
    else
    mail = "mailto: " + vAddress + "?subject=" + vSubject + "&body=" + vBody;
    event.target.submitForm({
    cURL: mail,
    bEmpty: true,
    cSubmitAs: "XDP",
    cCharset: "utf-8"
    If you want the body of the email to be blank just remove:  + "&body=" + vBody
    Hope that helps

  • How can you set the default width of the 'Detailed Navigation iView'?

    Hello,
    we would like to reduce the default width of the 'Detailed Navigation iView' in order to save some screen space.
    So far, we havn't found the right item in the portal admin to do this.
    Any help would be much appreciated! Thanks in advance.
    Frank Schülke, E.ON Ruhrgas, Germany

    Hi Frank,
    You can change the width of this navigation iview  by changing the value of "defaultExpWidth" in the file WAandNAVPanel.js present in the par file com.sap.layouts.framework.par from default value 220 pixels to the value you want.
    upload the changed par file and restart the server.
    Hope this helps,
    (if not do get  back )
    Regards,
    Uma.
    Do award points for helpful answers in SDN!!!!!!!:-)

  • Can you edit the default link style in muse?

    I'm not doing anything special, but haven't been able to change the default link style OR insert another link style to override it. Any help out there? Thx in advance.

    Hi
    You can change the link style or create a new one :
    http://take.ms/p4xnO
    Thanks,
    Sanjit

  • How can you change the default from Numbers 3.0 to Numbers 09

    I unfortunately upgraded to Numbers 3.0 before checking to see if they ruined all the functionality. I still have Numbers 09 and use it, but I have to "open with" each time because 3.0 is now the default app. I can't find a preference setting to make 09 the default. Is there any way to do this?
    Thanks
    Eric

    If OS X has to choose, it will always open the most recent version of an app.
    If you want to use Numbers '09, the best thing you can do is to move Numbers 3.0 to an external drive or delete it. New features will be added in the upcoming months > http://support.apple.com/kb/HT6049?viewlocale=en_US&locale=en_US

Maybe you are looking for