Sim Greenbaum
10/04/2021, 10:31 PMprint_shipping_label( saleorderId,IFid)
however, this won't work in a Suitelet .These are the two options 1. is there a way to print the integrated shipping label from that record not using the above function 2. let the Suitelet return HTML with a script tag and try to load that function there
var html = `<!DOCTYPE html><html>
<body>
<p>Shipping label is printing .............</p>
</body>
<script type="text/javascript">
window.addEventListener('load', (event) => {
console.log('page is fully loaded');
});</script>
</html>`