How to display default fields (Owner, Creation date) in the list view

Hello all,

I’m a new to ErpNext and I’d like to show system fields such as Owner, Creation date in the list view but I don’t see them on the Menu > Customization Form.

Does anyone know how to get them showed on the list view ?

Thanks in advanced.

Hi @hoanganhinfo,

  1. Go to Customise form
  2. Open that field i.e creation date and owner
  3. check “In List view” option(checkbox)
    4.save
  • System fields are not present in customize form.
  • Create a new field say “creator” in customize form. Set list view checked (note only 3 fields are allowed so you need to uncheck existing some other existing list view fields)
  • Go to custom script and add code to get value of owner and fill it up in creator
frappe.ui.form.on("Quotation", "validate", function(frm) {
    cur_frm.set_value("creator", frm.doc.owner);
});

Now, reload list view, you would see owner


@hoanganhinfo

5 Likes