Where are the custom print formats stored?

I’m making custom print formats for Sales Invoice, Sales Order, etc., with HTML. I’d like to know exactly where it is stored. I have read that it is stored in the database but I cannot locate it. Any help is appreciated.

Stored in the App “Print Format”.

After that select the print format you want to edit, duplicate it and “Edit Format”.

From there you can insert custom html Blocks.

Thank you for your answer.

This is how I made the custom formats, yes, but I wanted to know where all this HTML is actually stored, possibly in a file or the database.

Custom print format HTML is stored in the MySQL database.

SELECT
    name, doc_type, `module`, standard, custom_format, print_format_type, html
FROM
    `tabPrint Format`
1 Like