Create a new custom field

Hi Everyone
Can we create a custom field which will be updated in “Quotation Items” ?
By default a column is updated in “Quotations” Table.

Hi,

Please refer following link,it will be helpful
https://erpnext.com/user-guide/customize-erpnext/custom-field

Shraddha Ranjane
New Indictrans Technologies Pvt. Ltd

Thanks Shraddha
Its not helpful i think u didnt understood my requirement. As i want to add a field which should get updated in “Quotation Item” table usually field get updated in parent table.

Best to route it via a whitelisted method.

thank rishabh
I am able to do it via custom script, on frappe cloud client side scripting

You can update is before the document is sent to the server via

frappe.ui.form.on("Quotation", "validate", function() { ... 

  // loop over "items" and set custom field.

});