data = frappe.get_all(“Doctype Name”,fields=[“*”])
print(data)
Not able to get table multi select values
-
frappe.get_all()
does not return child table (multi-select) data. -
Use
frappe.get_doc()
to access full document details, including Table MultiSelect contents.
Hi @management,
You can do something like this :
Example :
frappe.get_all("Child Table Name", filters={"parent" : "Your Parent Doctype"}, fields="*")