Forum Discussion
QuickBaseCoachD
8 years agoQrew Captain
If you want to print a traditional PO, add lookup fields to the purchase order table and then the PO form from a the Vendor Table
Then put the report link field [Purchase Items] on the P.O. form and set the form properties to show the purchased items directly in the form.
Then put the report link field [Purchase Items] on the P.O. form and set the form properties to show the purchased items directly in the form.
- AyoubSalhi8 years agoQrew TraineeThanks for answering,
I've done all that, I clicked on "More" then Print, but it doesn't let me customize the form before printing, neither it removes the buttons "Add Purchase Order" etc.. Is there an option to customize the form before printing it ?
Is there a way I can have a 'print Order' button that takes the user to a customized form. And he'll be able to print. - ChrisChris8 years agoQrew Assistant Captain
you can create a form for printing.
Make a new form in PO having only the fields you want to print.
Make a new URL field in PO with the code below:
URLRoot()&"db/"& Dbid()&"?a=printr&dfid=##&rid="&[Record ID#]
dfid=## << put the form ID# of the print form you want to use for printing.
The form ID can be found in your list of forms for the PO table.
- AyoubSalhi8 years agoQrew TraineeGreat it works!! Thanks a lot Sir.