Can someone provide the scripte necessary to trigger a "Release" and then a "Issue final" in PO23 once you have successfully create a PO after you have selected the "Add" button in PO23?
Made need to tweak this, but the general format is:
function FORM_onAfterTransaction() { fc = tranMagic.FC tranMsg = lawForm.getMessage() if (fc == "A" && tranMsg == "Add Complete - Continue") { lawformDoFunction("R") // put a check here to make sure the release worked lawformDoFunction("F") // put a check here to make sure the issue final worked } }