Fetch Child table values from a Parent Doctype

@MartinHBramwell @gsarunk @trentmu
Hi there;
Parent Doctype: Engineering | Child table: quotation(field_name) | child doctype: Quotation
How can I fetch the values of child table from a parent doctype in Server script. If anybody knows the solution?

The specific parent document needs to be specified by name in the filters on the query in your server script.

hi,

try this:

quotations = doc.quotation
for quot in quotations:
frappe.errprint(quot.title)