T.R | Title | User | Personal Name | Date | Lines |
---|
3809.1 | Not a known problem | IOSG::NEWLAND | Richard Newland, IOSG, REO2-G/L2 | Tue Jan 25 1994 14:47 | 9 |
| It's not a known problem so please submit an SPR.
I can't see a label called EXIT_PROCEDURE in the V3.0 version of
OA$DO:WPSLPS.SCP. Your workaround will be work for foreground operation but
other changes will be required for background operation.
Richard
|
3809.2 | More details | BERN01::MUELLERS | Stefan A Mueller 761-4864 | Wed Jan 26 1994 08:07 | 26 |
| Richard,
The name of the label in OA$DO:WPSLPS.SCP is .LABEL DONE_EXIT.
My workaround:
.LABEL DONE_EXIT
.IF #WPLFLG EQS "SORT" -
THEN GET $WPDOC=$WPSODOC \ GET $WP_DRAWER=$WPSODWR
.IF #WPLFLG EQS "LIST" -
THEN GET $WPDOC=$WPLODOC \ GET $WP_DRAWER=$WPLODWR
CABINET SELECT $WPDOC:30,$WPDOC:6:30,,$WPDOC
GET #CURDOC="$WPDOC"
!%%%1+%%%
! The following line has been added to purge the output document file
GET OA$FUNCTION="PURGE " OA$CURDOC_FILENAME
!%%%1-%%%
.EXIT
It works in forground and background processing.
How do I submit an SPR?
Stefan
|
3809.3 | I will create an IPR | IOSG::NEWLAND | Richard Newland, IOSG, REO2-G/L2 | Wed Jan 26 1994 11:15 | 8 |
| I will create an IPR (Internal Problem Report) for this problem.
I can't see how your change will work for background processing because in
that case the exit is performed by code at the label SECONDARY_EXIT.
Richard
|
3809.4 | background processing works without a workaround | BERN01::MUELLERS | Stefan A Mueller 761-4864 | Wed Jan 26 1994 15:19 | 14 |
| Richard,
I wasn't sure if background processing also created multiple versions.
Looking into OA$DO:WPSLPS.SCP I found the command which submits the
jobs for background processing. Looking into the files
OA$LIB:BGSORT.COM and OA$LIB:BGLIPS.COM I found in both cases a purge
command:
line 29 in OA$LIB:BGSORT.COM: $ PURGE/LOG 'new_out_file
line 28 in OA$LIB:BGLIPS.COM: $ PURGE/LOG 'new_out_file
Thank you for submitting an IPR!
Stefan
|
3809.5 | Use OA$TEMP for temporary files | BERN01::MUELLERS | Stefan A Mueller 761-4864 | Wed Jan 26 1994 15:40 | 8 |
| Another question:
What happens with the WPL$_nnnnnn.LOG files in SYS$LOGIN? Who purges
them? I think it's better to place them into OA$TEMP. The same for all
the files reference by P2,P3,P4 in the SEND_JBC commands in WPSLPS.SCP
Stefan
|