I can create Sales Order PDFs using ```const pdf_...
# suitescript
m
I can create Sales Order PDFs using
Copy code
const pdf_file = render.transaction({
    entityId: parseInt(so_id),
    printMode: render.PrintMode.PDF
});
Is it possible to do the same but for the delivery note which you would do by clicking the Print Picking Ticket on the SO
n
there is render.pickingTicket
m
Ace, thanks