| It seems to me the culprit is the Named Data of the SETFOLDER field of
the DOCDSC form which says
/PRE="GET OA$DISPLAY=OA$_DOCDSC_ENTERINFO_SETUP". My V2.4 doesn't have
that symbol defined, so it's overlaying the other message (with
nothing).
Since the symbol doesn't exist, I would say to remove that line and your
message should now display.
-- Paul
|
| Hi
regarding to my Note 931.0 my customer wants to know, what he can
do, to prevent falling back to FORM DOCDSC if the templatedocument
can't be found (from FORM DOCDS2). Using ALL-IN-1 V2.4 up to K603.
I've reproduced this in our Office, too.
See following example:
WP C
Creating New Document
Folder: TEST
Title: Test
Keywords:
Enter information and press RETURN,
or press NEXT SCREEN for more fields (more...)
Additional Fields for Create
Author: Karl EHRLICH @AUI
Handling:
Template Document
Folder: SDSDFSDSD >>>> doesn't exist
Title: ssss >>>> Warning appears, doesn't exist
Number:
and here after pressing RETURN again, you'll get back to DOCDSC Form.
Creating New Document
Folder: TEST
Title: >>>>> Field is blank
Keywords:
Enter information and press RETURN,
or press NEXT SCREEN for more fields (more...)
Input Required <<<<<<
Many thanks for your suggestions and I am very happy about every kind of help
Best regards
Charly_from_CSC Vienna / Austria
|
| Hi,
here's what the customer and I have found.
If there's something wrong with the templatedocument then
the form DOCDSC will be called from DOCCREATE.SCP again.
But here the field TITLE is initialized by /GET_SAVE=#CREATE_TITLE
If this field is empty and you press RETURN you'll get back to
form DOCDSC because TITLE must be specified (message: input required!)
Solution: Insert this in DOCCREATE.SCP before the form DOCDSC is executed:
.LABEL SET_UP_DOC
CAB SELECT #SETFOLDER,#SETDOCNUM,#SETTITLE,#SETDOC
.IF OA$STATUS == 1 THEN .GOTO GOT_DOC
! FORM DOCDSC/BEGIN=SETFOLDER/PRE="DISPLAY Can't find that template document"
GET #CREATE_TITLE = #TITLE !<<<<< This is it >>>>>
FORM DOCDSC/BEGIN=SETFOLDER/PRE="GET OA$DISPLAY=OA$_WP_NOTEMPDOC"
.GOTO TOP
Have fun
Charly_from_CSC Vienna /Austria
|