Edit macro SUBMITIT Edit macro SUBMITIT Author: David McRitchie formatted on 1995/04/01 06:54 for assistance contact: D. McRitchie DMcRitchie@hotmail.com -------------------------------------------------------------------------------- Macro name. SUBMITIT users. PDF EDIT users type. Edit Macro resides in SYS1.TSOCLIST -------------------------------------------------------------------------------- SUBMITIT Submit job displayed in PDF edit followed by PDF edit CANCEL -------------------------------------------------------------------------------- related to the vanilla PDF EDIT submit command -------------------------------------------------------------------------------- This edit macro will submit job being viewed and immediately issue an ISPF can- cel so that you will cannot accidentally change the content later when no change is intended. -------------------------------------------------------------------------------- ISREDIT SUBMITIT -------------------------------------------------------------------------------- Examples: SUBMITIT Internal Aspects: Since this edit macro is very small the entire clist has been included below. ISREDIT MACRO ISREDIT SUBMIT ISREDIT AUTOSAVE ON ISREDIT CANCEL The new SUBMITIT edit macro written in REXX also fits on this page, so here it is. /*SUBMITIT Author: David McRitchie, created 1987/03/13 IS03 -REXX */ /* At Our Company in New Jersey */ /* SUBMIT with CANCEL prevents making an unwanted save later*/ Address "ISREDIT" "MACRO" /* converted to REXX 1994/05/19*/ Address "ISREDIT" "SUBMIT" Address "ISREDIT" "AUTOSAVE ON" Address "ISREDIT" "CANCEL" It could also be written as follows: Address "ISREDIT";"MACRO";"SUBMIT";"AUTOSAVE ON";"CANCEL" /*rexx*/