Previous | Contents | Index |
this section under construction...
VDE$UnreserveModule cancels a previous module reservation.
VDE$UnreserveModule context, itemlist, callback, callbackparam, flags
context
VMS usage: type: longword integer (signed) access: read-write mechanism: by reference
This is the address of a longword used by VDE to reference a context structure. This longword is optional.If this argument is specified, the first call must pass in the address of a longword zero. Once a VDE routine has been called, the contents of the address referenced by this longword must not be modified by the caller.
itemlist
VMS usage: type: itemlist access: read only mechanism: by reference
This is the address of an array of OpenVMS itemlist data structures.
struct VDEIL3 { unsigned short int VDE$W_ITEMLENGTH; unsigned short int VDE$W_ITEMCODE; char *VDE$A_ITEMPOINTER; short int *VDE$A_ITEMRETURNLENGTH; };The itemlist array must be terminated by a null-filled itemlist entry.
See Table C-1 for a list of the itemlist codes.
callback
VMS usage: type: function access: read only mechanism: by reference
The callback routine is called to process individual entries in a display operation. It is passed an itemlist containing information on each individual entry---the itemlist passed to the callback routine is distinct and seperate from the itemlist passed into the original request, though it does contain a pointer to the caller's original itemlist.An example of the declaration of the callback routine follows:
int VDE$InterfaceTestShow( int, struct VDEIL3 *, int )The first argument is not currently used. The second argument is the address of the itemlist. The third argument is the callback parameter.
The callback should return a successful status code.
callbackparam
VMS usage: type: longword access: read only mechanism: by value
The callback parameter is a longword value passed to the callback routine. It is not interpreted by VDE. The interpretation of the longword is left to the caller.flags
VMS usage: type: longword integer (signed) access: read-only mechanism: by value
This is a bitflag and all unused bits should be specified as zero. The only bit currently defined is VDE$V_CI_FLAG_SIGNAL: this bit causes internal signals to generate text messages to SYS$OUTPUT: and SYS$ERROR:. If clear---the default---no messages will be displayed.
VDE$UnreserveModule cancels a previous reservation on the specified module. To perform the operation, the library, stream, facility and module must be specified.As parameters specified to VDE callback routines are "sticky", if a required parameter is not specified, it will be defaulted to the value used on a preceeding call.
|
this section under construction...
The OpenVMS Development Environment (VDE) tool VDE$UPLOAD assist OpenVMS engineers in uploading the contents of multiple CMS libraries into VDE.
VDE$UPLOAD requires information on environment to be created and the CMS information to be uploaded, and the location(s) where the VDE database is to be created. VDE$UPLOAD will then create a new VDE database based on the specified CMS libraries. As part of this, specified CMS classes from the specified CMS libraries will form the basis of new VDE streams, the users from the CMS libraries will be created in the VDE database, and the CMS command notification ACLs will be uploaded into VDE.
VDE$UPLOAD does not alter the CMS libraries in any way. As a consequence, the manual deletion of CMS command notification ACLs may be required.
To use VDE$UPLOAD, you must create a control file describing the requested operation. See Table D-1 for the syntax, and see the attached example file.
Library Block | |
---|---|
The library block contains general information on the library, including both descriptive and location information. The library block begins a new library creation operation, and subsequent literal and stream blocks apply to the VDE database created by the immediately previous library block. Multiple creation operations can be accomplished in a single data file. | |
BEGIN LIBRARY | |
END LIBRARY | |
Library block delimiters. Cause the creation of a VDE library, using the other parameters in this section of the table. | |
MNEMONIC FOOBAR | |
The mnemonic name to be associated with the new library. This name must meet VDE naming requirements. | |
CMS FOOBAR_CMS_LIB_ROOT$:[000000] | |
The full specification of the CMS library (libraries) to be uploaded. This directory contains one or more CMS library subdirectories, each of these subdirectories with a [.CMS] subdirectory containing a CMS library. | |
IDENTIFIER VMS_IDENTIFIER_NAME | |
The name of an OpenVMS security identifier required for access to the created VDE libary. | |
ROOT $11$DUA113:[VDE.FOOBAR.DBROOT] | |
The root directory specification for the new database. This is the area that contains the VDE$DATABASE.RDB file. | |
DATA $11$DUA113:[VDE.FOOBAR.DBDATA] | |
The data directory specification for the new database. This is the area that contains the VDE$DATABASE.RDA file. | |
SNAPSHOT $11$DUA113:[VDE.FOOBAR.DBSNP] | |
The snapshot directory specification for the new database. This is the area that contains the VDE$DATABASE.SNP file. | |
JOURNAL $11$DUA113:[VDE.FOOBAR.DBJNL] | |
The journal directory specification for the new database. This is the area that contains the VDE$DATABASE.JNL file. | |
STAGING $11$DUA113:[VDE.FOOBAR.VDE$STAGING] | |
The staging directory specification for the new database. This area will contain the staging area subdirectories. | |
BUILDING $11$DUA113:[VDE.FOOBAR.VDE$BUILDING] | |
The building directory specification for the new database. This area will contain the building area subdirectories. | |
Stream Block | |
The stream block contains stream-related information, including the specific CMS classes that will be uploaded into VDE streams. | |
BEGIN STREAM | |
END STREAM | |
Stream block delimiters. Cause the creation of a VDE stream, using the other parameters in this section of the table. | |
NAME V6.1_SSB | |
The name of the new stream. Must meet VDE naming requirements. Must also match the name of a CMS class that is present in the specified CMS libraries. | |
MAINLINE TRUE | |
Indicates the stream is (TRUE) or is not (FALSE) a member of the main line of descent in the VDE database. | |
PARENT MAIN | |
The name of the parent of the new stream, or MAIN for the first stream in the database. | |
SUCCESSORS V6.2_SSB | |
The name of a successor stream, a comma-seperated list of successor streams, or the keyword NONE if there are no successors to this stream. | |
CONFERENCE V61-YELLOW | |
The name of the notes conference used internally by VDE to track all activity for this stream. This conference is not the SCT (Source Code Tracking) notes conference. | |
Literal Block | |
The literal block contains VDE commands that are to be directly executed as part of the database creation operation. | |
BEGIN LITERAL | |
END LITERAL | |
Literal block delimiters. This block causes the procedure to emit the specified VDE commands that were specified in this block after the creation of the VDE library and the associated streams. Most often used to update replacement policy and pre-created users and user privilege profiles. |
! ! Example VDE$UPLOAD.DAT control file ! BEGIN LIBRARY MNEMONIC FOOBAR CMS FOOBAR_CMS_LIB_ROOT$:[000000] IDENTIFIER VMS_IDENTIFIER_NAME ROOT $11$DUA113:[VDE.FOOBAR.DBROOT] DATA $11$DUA113:[VDE.FOOBAR.DBDATA] SNAPSHOT $11$DUA113:[VDE.FOOBAR.DBSNP] JOURNAL $11$DUA113:[VDE.FOOBAR.DBJNL] STAGING $11$DUA113:[VDE.FOOBAR.VDE$STAGING] BUILDING $11$DUA113:[VDE.FOOBAR.VDE$BUILDING] END LIBRARY BEGIN STREAM NAME V6.1_SSB MAINLINE TRUE PARENT MAIN SUCCESSORS V6.2_SSB CONFERENCE V61-YELLOW END STREAM BEGIN STREAM NAME V6.2_SSB MAINLINE TRUE PARENT V6.1_SSB SUCCESSORS NONE CONFERENCE V62-YELLOW END STREAM BEGIN LITERAL CREATE USER SYSTEM /NAME="System Manager"/DEF_P=ALL/AUTH_P=ALL/REMARK="System Deity" Modify Stream V6.1_SSB/replacement=immediate/notify=marshall /Remark="VAX V6.1 Stream" Modify Stream V6.2_SSB/replacement=immediate/notify=marshall /Remark="VAX V6.2 Stream" END LITERAL ! ! End VDE$UPLOAD.DAT ! |
This appendix describes the error messages that can be reported by VDE.
ABKEYW, ambiguous qualifier or keyword 'text' - supply more characters
ABTBADST, VDE may be in an inconsistent internal state
ABTCNTLC, command aborted by Control-C
ADATETIME, accepted.checkin.datetime: datetime
AERRORS, accepted.checkin.defectsfixed: defects
AGROUP, accepted.checkin.group: group
AITEM, accepted.checkin.item: item
AMODULE, accepted.checkin.module: modname
ANOTE, accepted.checkin.note: topic.reply
ARCHADDED, architecture architecture added to the database
ARCHDEL, architecture architecture deleted from the database
ARCHEXISTS, architecture architecture already exists in database; not changed
ARCHMOD, information for architecture architecture modified in the database
ARCHNOTDEL, architecture architecture not deleted
ARCHNOTFOUND, architecture architecture not found in database; parameter ignored
ARCHSYNTAX, invalid architecture name syntax: name
AREASON, accepted.checkin.reasonmask: reason
AREPLID, accepted.checkin.replacementid: replid
AREPLNAME, accepted.checkin.replname: replname
ARMPBCMSDIR, accepted.module.cmslibrary: cmsdir
ARMPBCOUNT, accepted.module.count: count
ARMPBGENNEW, accepted.module.newgeneration: newgen
ARMPBGENOLD, accepted.module.oldgeneration: oldgen
ARMPBMODFLAG, accepted.module.modflags: modflags
ARMPBMODNAME, accepted.module.modname: modname
ARMPBREPLREMARK, accepted.module.replaceremark: replaceremark
ARMPBRESREMARK, accepted.module.reserveremark: reserveremark
ARMPBSTAGING, accepted.module.staging: staging
ASTREAM, accepted.checkin.stream: stream
ATTACHED, terminal now attached to process process-name
ATYPCOD, accepted.checkin.typecode: type
ATYPNAM, accepted.checkin.typename: type
AUSERNAME, accepted.checkin.username: username
BADASSUMPTION, bad assumption, name, value, value
BADCHAR, illegal character encountered
BADFILNAM, illegal file specification 'text'
BADIMAFLA, bad image flavor detected
BADMARKER, bad marker file format for generation generation
BADQUESTAT, bad status for batch queue queue-name
BADSCRATCH, bad SYS$SCRATCH directory
BADSTATUS, bad status returned from routine-name
BADVMSVERS, unable to interpret OpenVMS version string: VMS-version
BINSRCMOD, binary source modules cannot be displayed or differenced
BITRANGE, bit range out of limits
BLDALRSTART, build job job for stream stream already started; build job cannot be started again
BLDALRSTOP, build job job for stream stream has already stopped; build job cannot be stopped again
BLDINIFAIL, build initialization completed with errors
BLDJOBACT, build job already active for stream stream; new job not created
BLDJOBAFTER, build job to be started after time
BLDJOBCRE, build job job for stream stream has been created
BLDJOBDEL, build job job for stream stream deleted from database
BLDJOBENT, entry number entry submitted to queue queue
BLDJOBERR, error queuing build job on queue queue; process not queued
BLDJOBMOD, build job job for stream stream modified in database
BLDJOBSIZ, build job job for stream stream consists of steps steps
BLDJOBSTARTED, build job job for stream stream started with processes processes
BLDJOBSTARTING, starting build job job for stream stream
BLDJOBSTOP, build job job for stream stream stopped
BLDJOBSUSP, build job job for stream stream suspended
BLDNOTRUN, build job job for stream stream is not queued or running; build job cannot be suspended
BLDSTEPNEED, build step needed to make inputs up-to-date: step step
BLDSTEPNOTSHO, steps additional needed build steps not shown
CMSBADGEN, bad CMS generation generation found for module module possible CMS error
CMSCLASSEXIST, CMS class class already exists for CMS facility facility
CMSCRECLASS, CMS error when creating CMS class class in facility facility
CMSCREELEM, CMS error when creating CMS element for module module
CMSCRELIB, CMS error when creating CMS library for facility facility
CMSDELELEM, CMS error when deleting element element
CMSDELGEN, CMS error when deleting generation generation (generation)
CMSDUPGEN, duplicate CMS generation generation found for module module possible CMS error
CMSFETCH, CMS error when fetching CMS element for module module
CMSINSGEN, CMS error inserting generation generation of element element into class class
CMSLIBEMPTY, the CMS library library contains no elements
CMSMODCLASS, CMS error modifying the class name class to class in facility facility
CMSNOCLASS, CMS class class does not exist for facility facility Unable to modify CMS class name
CMSREMGEN, CMS error removing element element from class class
CMSREPLACE, CMS error when replacing CMS element for module module
CMSRESERVE, CMS error when reserving CMS element for module module
CMSSETLIB, CMS error when setting CMS library for facility facility
CMSSHOWCLASS, CMS error when retrieving CMS class information in library library
CMSSHOWDESGEN, CMS error when retrieving CMS generation of element element
CMSSHOWELEM, CMS error when retrieving CMS element in library library
CMSSHOWHIST, CMS error when retrieving CMS history in library library
CMSSHOWRES, CMS error when retrieving CMS reservations in library library
CMSSTART, starting retrieval of CMS information for facility facility
CMSVARLET, all CMS variant letters in use; none left for module module
CMSVERGEN, CMS error reading class membership list when verifying generation generation (spec)
COMMAND, command command
COMMIT, database transaction has successfully committed
COMNOTDEF, command "command-text" not defined
COMPFAIL, compilation of module completed with errors
COMPSUCC, compilation of module completed successfully
COMSTEPADDED, compile step for module added to database
COMSTEPDEL, compile step for module module deleted from database
COMSTEPMOD, compile step for module module modified in database
COMTERMEOF, command terminated by CTRL/Z or end-of-file on input
CONCURRES, concurrent reservation reservation of module by user user already present
CONFACC, unable to access notes conference
CONFLICT, conflicting qualifers and/or keywords specified
CONFMEM, check conference file accessability and membership
CONFNAM, conference file name name
CONKEYATR, conflicting key attributes key-attribute and key-attribute
CONQUAL, conflicting qualifiers /qualifier and /qualifier
CONRESDEL, concurrent reservation reservation of module for user user has been deleted
CONTINUE, attempting to continue
COPSTEPADDED, copy step for step added to database
COPSTEPDEL, copy step for module module deleted from database
COPSTEPMOD, copy step for module module modified in database
COPYFAIL, copy of module completed with errors
COPYSUCC, copy of module completed successfully
CREDIRFAI, create directory failed
CRELNMFAI, failed to define logical name lnmdsc
CTXADDED, context context added to the database
CTXDEL, context context deleted from the database
CTXDELARCH, context ## contains deleted architecture architecture
CTXDELFAC, context context contains deleted facility facility
CTXDELSTRM, context context contains deleted stream context
CTXEXISTS, context context already exists in database; context not changed
CTXMOD, information for context context modified in the database
CTXNOTFOUND, context context not found in database; parameter ignored
CTXSYNTAX, invalid context name syntax: name
CULPRIT, reserved by user user
DATETOOLONG, date-time value is too long; maximum length is 24: date...
DBCNV, converting database format from oldver to newver
DBCREATED, database db has been created
DBFMT, database format is ver
DBGCMSGEN, at codept, letflg bool, item1 itm1, item2 did
DBGCMSTXT, at codept, expected gen
DBGDB, debugging database: param1, param2
DBGLNMBAT, debug logical name VDE$BATCH_MODE: mode
DBGLNMDAT, debug logical name VDE$DATE_TIME: mode
DBGLNMUSR, debug logical name VDE$USERNAME: mode
DBGNOLNM, unable to translate logicalname
DBGQUALMSK, qualifier mask qualmsk1 qualmsk2
DBGWAYPT, debug waypoint waypoint reached
DBGXLAC, debug waypoint reached; text: text
DBGXLXL, debug waypoint reached; value: value
DCLBUFOVFL, DCL command line being generated is too long for buffer
DCLERROR, error status returned by spawned DCL DCL command
DCLTRUNC, DCL command line from script truncated; line too long
DEFARCH, architecture architecture not deleted; you cannot delete default architecture
DEFKEY, state-name key key-name has been defined
DEFKEYERR, error defining state-name key key-name
DELKEY, state-name key key-name has been deleted
DELKEYERR, error in processing DELETE/KEY command
DEPNOTUPDATE, dependency information not updated for build step
DEPUPDATE, dependency information updated for build step
DEVOSYNCH, executing synch command: dclcmd
DIRADDED, directory specification spec added to the database
DIRCREATED, directory directory has been created
DIRDEL, directory specification spec deleted from database
DIREXPBAD, directory filename expansion bad
DIREXPFAI, directory filename expansion failed
DIRFILFAI, directory filename conversion failed
DIRFILNOTDEL, unable to delete directory file directory
DIRNOTFOUDCL, directory location not found for script's DCL command file
DIRNOTFOULOG, directory location not found for build-step log file
DIRNOTFOUND, directory specification to cancel not found in database
DIRNOTFOUSCRP, directory location not found by script function function
DIRSPECREQ, directory specification required for stream stream
DIRTOOLONG, directory specification is too long; maximum length is 255
DIRTREFAI, directory tree conversion failed
DIRTRENOTDEL, not all files deleted in directory tree tree
DUPLNAME, duplicate name in list not allowed: name
EDITUNDEF, your editor is undefined; editor cannot be invoked
EDITUPDATE, default editor definition updated in the VDE database
ELENOTFOUNDCMS, element element not found in CMS library
ERRASSIGN, the attempt to acquire an I/O channel for VDE failed
ERRCRELNM, unable to create a logical name
ERRDEASSIGN, attempt to deassign an I/O channel acquired by VDE failed
ERRDIRSPEC, error in directory or file specification file-name
ERRFAO, unable to format output string
ERRQIOW, error from SYS$QIOW
ERRSMG, error returned from a call to the Screen Management Facility (SMG)
ERRWRIFIL, error writing file file-name
EXARANGE, hexadecimal number not valid; valid range is number to number
EXPGENDIFF, expected generation expression expression differs from actual expression
EXPGENEXPR, expected generation expression at replacement is generation
EXPGENLONG, expected CMS generation expression is too long
FACADDED, facility facility added to the database
FACDEL, facility facility deleted from the database
FACEXISTS, facility facility already exists in database
FACMOD, information for facility facility modified in the database
FACNOTDEL, facility facility not deleted
FACNOTFOUND, facility facility not found in database; parameter ignored
FACNOTMT, facility contains modules
FACSYNTAX, invalid facility name syntax: name
FAMILY, unable to deallocate: siblings or children present
FCBERR, internal VDE FCB error in VDE-internal-identifier
FCBWRONG, internal error; access access failed in VDE-internal-identifier
FETCHED, generation generation fetched from library
FILCOPLIB, file file copied to library
FILCOPSTAG, file file copied to staging area
FILENOTFOUND, file not found: file
FILQUE, print file queued to queue-name
FILREADERR, unable to read file file
FILWRITERR, unable to write file file
FIRGENNODEL, generation generation is first generation of module; cannot be deleted
FIRNUMMAY, first number of a range may not be less than number
FIRNUMRAN, first number of a range must be less than the second
FLAVORPIDS, flavor flavor, pid pid, master mpid, parent ppid
FOLDADDED, fold record record for module module added to database
FOLDDEL, fold record record for module module has been deleted
FOLDEXP, fold record for fold expected for stream stream
FOLDIDREQ, fold identifier required for module module
FOLDIDUSED, fold identifier identifier already used for module module attempt to create fold record has failed
FOLDINSTRM, generation generation must be folded into stream stream
FOLDMOD, fold record record for module module modified in database
FOLDNOTFOUND, fold record record not found for module module and stream stream
FROMDIREMPTY, the directory directory specified with /FROM_DIRECTORY is empty
GBLSECNAM, communications global section name: gblsecnam
GENDEL, generation generation deleted from stream stream
GENDELLIB, generation generation deleted from library
GENINSERT, generation generation inserted into stream stream
GENMOD, information for generation generation modified in the database
GENNODEL, generation generation cannot be deleted
GENNOPRED, generation generation of module has no predecessor
GENNOTCLASSMEM, generation generation is not a member of CMS class class
GENNOTFOUNDCMS, generation generation not found in CMS library
GENNOTINSTAGE, generation not found in staging area area
GENNOTQUEREPL, replacement was not queued; no staging area exists
GENNOTRECOVERED, generation generation not recovered
GENRECCLASSMEM, generation generation successfully recovered into CMS class class
GENRECOVERED, generation generation successfully recovered from source
GENREM, generation generation removed from stream stream
GENREPLDNF, staging directory directory not found
GENRETAINED, generation generation retained in library
GENSUCVERIFY, generation generation successfully verified
GETJPI, SYS$GETJPI system service failed, unable to attach
GETQUIERR, get queue information system service error for queue queue
GRPADD, module module is added to group group
GRPADDED, group group added to the database
GRPALRMEM, module module is already a member of group group
GRPDEL, group group deleted from the database
GRPEXISTS, group group already exists in database; group not changed
GRPMOD, information for group group modified in the database
GRPNOTFOUND, group group not found in database; parameter ignored
GRPNOTMEM, module module is not a member of group group
GRPREM, module module is removed from group group
GRPSYNTAX, invalid group name syntax: name
HELLO, Motif vdeversion starting up
ICIBOGUS, intermediate conference information invalid
ICIGONE, intermediate conference information not found
ICIPARSE, parse of intermediate conference information failed
ILLDEPFUN, Illegal dependency function passed to module VDE$REC_DEPENDENCY. The illegal dependency function value is value
ILLFORUSE, ill-formed user defined name
INCNOTVAL, INPUT not valid on streams marked for queued replacement
INMODNOTFOU, input module module of build step not found in database; ignored
INPNOTNAME, input string text is not syntactically valid
INPTOOLONG, input string too long; maximum length is number characters
INPTOOSHORT, input string too short; minimum length is number characters
INTERR, internal VDE error in VDE-internal-identifier
INTERR_AZ, internal VDE error in VDE-internal-identifier
INTFUNCERR, internal script function error
INTMEMERR, internal memory-pool error at hex-virtual-address VDE-internal-identifier
INTTOOBIG, integer too large
INVALANS, answer is an invalid answer
INVDATLNM, invalid VDE$DATE_TIME; use DD-MMM-YYYY:HH:MM:SS.CC format: time
INVDATTIM, invalid date-time; use DD-MMM-YYYY:HH:MM:SS.CC format: time
INVDBFORM, invalid database format; VDE is unable to access library
INVDIGDEC, invalid decimal number: number
INVDIRSPEC, invalid directory specification: text
INVGENEXPR, invalid CMS generation expression: expression
INVHISCHAR, invalid history or notes character following poundsigninvalid string is: string
INVINPUT, invalid interactive command input; command aborted
INVINTVAL, invalid integer value on command line: integer
INVIPMTNAM, invalid IPMT/CLD number syntax
INVKEYNAM, invalid or missing key name
INVNUMRNG, number not valid; number is number, valid range is number to number
INVNUMSTG, invalid numeric string: string
INVPAGE, invalid screen height, value must be between minimum_height and maximum_height
INVPARAM, invalid parameter passed to routine-name-plus-info
INVQARDB, invalid QAR database name syntax
INVQARNO, invalid QAR entry number syntax
INVRANGE, no values in inverted range number to number
INVSOURCE, Invalid source of information specified: code
INVWIDTH, invalid screen width, value must be between minimum_width and maximum_width
INVWILDSPEC, invalid wildcard specification in script selector: selector
IPMTAGAIN, please re-enter the IPMT or CLD number
IPMTFMT, use ABC.12345, ABC-12345, ABC.123456 or ABC-123456
IPMTSYNTAX, invalid IPMT/CLD name syntax: name
ITEMLIST, unable to parse itemlist list entry at offset offset
IVQLOC, invalid qualifier location - place after each dependency file parameter
IVQUAL, unrecognized qualifier 'qualifier' - check validity, spelling, and placement
JOURDISA, database journalling disabled for VDE library
JOURENA, database journalling enabled for VDE library
KEYADDED, keyword keyname added to note noteID in conference conference
LIBCONV, library format converted for new version of VDE
LIBINDRAN, Library index value of value out of range for library dependency or module dependency.
LIBLABEL, library (mnemonic) contents: label
LIBMOD, library attributes modified in database
LIBNOTSET, library not set; no VDE database found in directory directory
LIBREQ, specification of library mnemonic required
LIBRESET, library reset
LINKFAIL, link of module completed with errors
LINKSUCC, link of module completed successfully
LNKSTEPADDED, link step for module added to database
LNKSTEPDEL, link step for module module deleted from database
LNKSTEPMOD, link step for module module modified in database
LOASTLM, recommended free ASTLM value is value
LOBIOLM, recommended free BIOLM value is value
LOBYTLM, recommended free BYTLM value is value
LOCKED, library write access is disabled
LODIOLM, recommended free DIOLM value is value
LOENQLM, recommended free ENQLM value is value
LOFILLM, recommended free FILLM value is value
LOGNAMUNDEF, logical name logical undefined; operation cannot complete
LOJTQUOTA, recommended free JTQUOTA is value
LOPGFLQUOTA, recommended free PGFLQUOTA value is value
LOPRCLM, recommended free PRCLM value is value
LOQUOTA, one or more process quotas is too low
LOTQELM, recommended free TQELM value is value
MAILERR, error from MAIL routine routine-name
MAILSENT, mail message sent to user user
MATQUOMIS, matching quote is missing
MAXIDVAL, maximum allowed Id value in database exceeded: ID
MAXPARM, too many parameters - reenter command with fewer parameters
MERGEGEN, merging generation generation(this) into that
MISCONTSCRP, missing continuation line in script
MISHISPARM, missing history parameter in string "string"
MISTYPNAM, missing type name for module string; type name required
MNEMONIC, library (mnemonic) library available
MNETOOLONG, library mnemonic too long; maximium length: length
MODADDED, module module added to the database
MODALRINSTEP, module module is already an input to build step
MODALROUTSTEP, module module is already an output from build step
MODALRQUEREP, module module already queued for replacement replacement
MODALRRES, module module already reserved; reservation has failed
MODDEL, module module deleted from the database
MODEXISTS, module module already exists in database; module not changed
MODINSTEP, module module is an input to the build step
MODLOCKED, module module locked for replacement by another user
MODMODIF, information for module module modified in the database
MODNOTDEL, module module not deleted
MODNOTFOUND, module module not found in database; parameter ignored
MODNOTINSTEP, module module is not now an input to build step
MODNOTINSTRM, generation generation not in stream stream
MODNOTOUTSTEP, module module is not now an output from build step
MODNOTRES, module module is not currently reserved
MODNOTREV, module module not found in review list
MODOBS, module module-name superceded or marked obsolete
MODOUTSTEP, module module is an output from the build step
MODREMINSTEP, module module removed as an input to build step
MODREMOUTSTEP, module module removed as an output from build step
MUSTREPL, you must replace the new module to create its first generation
NAMTOOLONG, name is too long: text; maximum length is number
NEEDFACILITY, this request requires a facility
NEEDLIBRARY, this request requires a library
NEEDMOD, module must be specified on command
NEEDMODULE, this request requires a module
NEEDMORE, unexpected end of command line
NEEDSTEP, build step must be specified on command
NEEDSTREAM, this request requires a stream
NETERROR, network error; component: id, code: errcod
NEWDBGMSK, debug mask switching from oldmask to newmask
NOACCLIB, no access to library allowed for user username
NOARCHSPEC, no architecture specified for operation
NOATTACH, failed to attach to process PID !XL
NOAUTOCONV, automatic conversion to current database format disabled
NOBASENOTE, no base note found for replacement replacement_id
NOBLDJOB, no build jobs found for stream stream
NOBLDSTEPS, build job contains no build steps; build job is not created
NOBUILD, no BUILD privilege; cannot create build jobs in this library
NOCANRES, cannot cancel reservation to create first generation of module
NOCAUSE, replacement cause not known; module not replaced
NOCLOSEQ, no closing quotation mark for a quoted string
NOCONFNAM, no notes conference name specified in call to routine-name
NOCREARCH, no CREARCH privilege; cannot create or modify architectures
NOCRECTX, no CRECTX privilege; cannot create or delete contexts
NOCREFAC, no CREFAC privilege; cannot create or modify facilities
NOCREGRP, no CREGRP privilege; cannot create or delete groups
NOCREMOD, no CREMOD privilege; cannot create or modify modules
NOCRESCRP, no CRESCRP privilege; cannot create or delete scripts
NOCRESTEP, no CRESTEP privilege; cannot create or delete steps
NOCRESTRM, no CRESTRM privilege; cannot create or modify streams
NOCREUSR, no CREUSER privilege; cannot create or delete users
NODELARCH, no DELARCH privilege; cannot delete architectures
NODELDEF, Attempt to delete default prohibited
NODELFAC, no DELFAC privilege; cannot delete facilities from library
NODELMOD, no DELMOD privilege; cannot delete modules from library
NODELREP, no DELREP privilege; cannot delete replacements
NODELSET, marked /NODELETE
NODELSTRM, no DELSTRM privilege; cannot delete streams from library
NODELTAROOT, no delta-file root directory exists for library
NODIRDELTA, no delta-file directory found for facility facility
NODIRMARKER, no marker-file directory found for facility facility
NOFACSPEC, no facility specified for operation
NOFREE, no free storage available
NOFROZEN, no FROZEN privilege; cannot replace modules into frozen streams
NOGENSTRM, generation generation not found in stream stream
NOKEYPAD, unable to set up keypad definitions
NOKEYW, qualifier name is missing - append the name to the slash
NOLIBDEF, no VDE library defined
NOLIBROOM, too many libraries in default file
NOMAIL, no message sent; MAIL messages are disabled
NOMAILSENT, failure to send mail message to user user
NOMATCHARCH, no architecture name matches the wildcarded string string
NOMATCHCTX, no context name matches the wildcarded string string
NOMATCHFAC, no facility name matches the wildcarded string string
NOMATCHGEN, no generation matches wildcarded string string
NOMATCHGENS, no generation matches wildcarded string string in stream string
NOMATCHGRP, no group name matches the wildcarded string string
NOMATCHMOD, no module name matches the wildcarded string string
NOMATCHREP, no replacement name matches the wildcarded string string
NOMATCHSCRP, no scripts match the specification
NOMATCHSES, no session name matches the wildcarded string string
NOMATCHSTEP, no build steps for modules matching string found in database
NOMATCHSTRM, no stream name matches the wildcarded string string
NOMATCHUSER, no user name matches the wildcarded string string
NOMEMGRP, no members specified for group group
NOMODLIB, no MODLIB privilege; cannot modify attributes of this library
NOMODMEMGRP, no modules are members of group group
NOMODSTRM, no MODSTRM privilege; cannot modify most stream attributes
NOMOREMOD, no more modules in review list
NOMORESTEP, no more build steps in review list
NONNULLARG, argument specfied MBZ has non-zero value in routine VDE-routine
NONOTE, no note topic entered; note entry is disabled
NONOTESENT, note NOT posted to conference conference
NOPARSTRM, no parent stream specified for new stream
NOPERFREP, no PREFREP privilege; cannot perform replacements
NOPNAM, unknown project name specified for the stream
NOPNAMS, no projects defined for the stream
NOPRIVQUAL, insufficient privilege to use qualifer qualifier
NOPRIVS, insufficient VDE privilege(s) for attempted operation
NOPROMPT, no prompt specified; using default prompt
NORESFORMOD, no reservations exist for module module
NORESREP, no RESREP privilege; cannot reserve and replace modules
NOSCRATCH, no SYS$SCRATCH translation
NOSCRIPTYP, no script type specified on command
NOSCT, replacement cause not known; module not replaced
NOSCTSRC, source file record for SCT note not found
NOSETLIB, the SET LIBRARY command is locked out
NOSETTERM, the SET TERMINAL command is not supported on this terminal
NOSPAWN, spawn command failed
NOSTAGROOT, no staging area root directory exists for library
NOSTRMROOT, no stream root directory exists for stream stream
NOSTRMSPEC, no stream specified for operation
NOSUCHARCH, architecture architecture not found in database
NOSUCHCTX, context context not found in database
NOSUCHDIRSYM, directory symbol symbol not found in database
NOSUCHFAC, facility facility not found in database
NOSUCHFOLD, fold record record not found for module module and stream stream
NOSUCHFUNC, no such script function exists: function
NOSUCHGEN, generation generation not found in database
NOSUCHGRP, group group not found in database
NOSUCHMOD, module module not found in database
NOSUCHPRIV, no such privilege name exists: priv-name
NOSUCHQUE, batch queue queue does not exist; check spelling
NOSUCHREP, replacement replacement not found in database
NOSUCHRES, reservation reservation for module module not found
NOSUCHSCRP, script script not found in database
NOSUCHSES, session session not found in database
NOSUCHSTEP, no build step for module module found in database
NOSUCHSTRM, stream stream not found in database
NOSUCHSYM, no such symbol 'text' exists
NOSUCHUSER, user user not found in database
NOTCONNLIB, you are not connected to a VDE library; command not performed
NOTEID, topic major.minor entered in conference
NOTESCONF, accessing notes conference conference
NOTESENT, note posted in conference conference
NOTESENTID, note noteID posted in conference conference
NOTESERR, error from DEC Notes at routine-name
NOTESID, unable to parse DEC Notes topic note-number
NOTEXTSTR, text string argument missing in call to routine-name
NOTIMPL, this feature is not currently implemented
NOTINRANGE, integer value number not in valid range of low-bound to high-bound
NOTPROP, generation generation not propagated past stream stream
NOTRESINSTRM, module module not reserved in stream stream
NOTREVREP, you are not a reviewer for replacement replacement
NOUNCLOSE, no UNCLOSE privilege; cannot unclose a closed stream
NOUSERNAME, no USERNAME privilege; cannot reserve and replace for other users
NOVDEDEVO, no VDEDEVO privilege; access to dungeon restricted
NULSTRNOT, a null string is not allowed
NYI, feature not yet implemented
OFFLINE, source code control system offline, try again later
OUTFILE, output file is file
OUTMODSRC, output module module of build step is a source module; ignored
OUTNLA0, if /OUTPUT=NLA0: was used, respecify with non-null output
OVERRIDE, VDE library controls overridden via OpenVMS privileges
OVFLOWBUF, overflow of the input buffer, command ignored.
PREFIXNOTALL, prefix VDE$ not allowed in facility or stream names
PROTOLIB, using prototype library library
PROTOTYPE, this is a prototype version of VDE
QARDBSYNTAX, invalid QAR database name syntax: name
QCHECKCOUNT, queued.checkin.count: count
QDATETIME, queued.checkin.datetime: datetime
QERRORS, queued.checkin.defectsfixed: defects
QGROUP, queued.checkin.group: group
QITEM, queued.checkin.item: item
QLIBMNE, queued.library.mnemonic: libmnemonic
QMODULE, queued.checkin.module: modname
QNOTE, queued.checkin.note: topic.reply
QPROJECT, queued.project.name: project
QREASON, queued.checkin.reasonmask: reason
QREPLID, queued.checkin.replacementid: replid
QREPLNAME, queued.checkin.replname: replname
QRMPBCOUNT, queued.module.count: count
QRMPBMODFLAG, queued.module.modflags: modflags
QRMPBMODNAME, queued.module.modname: modname
QRMPBREPLREMARK, queued.module.replaceremark: replaceremark
QRMPBRESREMARK, queued.module.reserveremark: reserveremark
QRMPBSTAGING, queued.module.staging: staging
QSTREAM, queued.checkin.stream: stream
QTYPCOD, queued.checkin.typecode: type
QTYPNAM, queued.checkin.typename: type
QUALDISALL, qualifier qualifier is disallowed for the command command
QUALNOTALL, qualifier qualifier is not allowed when a parameter is specified
QUALTOOMANY, qualifier qualifier has been specified too many times
QUECLOSED, batch queue queue is closed and cannot accept jobs
QUEPAUSED, batch queue queue is paused or pausing; job execution is halted
QUESTOPPED, batch queue queue is stopped or stopping; job execution is halted
QUOCHECK, performing a quota check operation
QUOLOW, quota quota set to: old, recommended: new
QUORESET, performing a quota check and update operation
QUOSTREXP, quoted string expected
QUOUSER, user user below recommended quota setting(s)
QUSERNAME, queued.checkin.username: username
READERR, VDE input read error, forced to exit
REGRESSION, operating in mode suitable for regression tests
REPACCEPT, replacement replacement marked as accepted in database
REPADDED, replacement replacement added to the database
REPBELUSER, replacement replacement belongs to another user
REPCAN, replacement replacement cancelled
REPDEL, replacement replacement deleted from the database
REPEXISTS, replacement replacement already exists; replacement not changed
REPLACED, generation generation replaced into stream stream
REPLQUE, module module queued for replacement replacement
REPMOD, information for replacement replacement modified in the database
REPNOTFOUND, replacement replacement not found in database; parameter ignored
REPNOTPERF, replacement replacement for stream stream not performed; does not match stream stream
REPPERF, replacement replacement performed
REPREJECT, replacement replacement marked as rejected in database
REPSYNTAX, invalid replacement name syntax: name
REQQUAMIS, required command qualifier missing
RESDEL, reservation reservation of module for user user has been deleted
RESERVED, generation generation reserved from stream stream
RESERVSES, generation generation reserved from stream stream for session session
RESIDREQ, reservation identifier required for module module
RESIDUSED, reservation Id ID already used for module module attempt to reserve module has failed
RESMOD, reservation reservation for module module modified in database
RESQUEUED, reservation request for module queued for stream stream
RETURNED, control returned to process process-name
RIGIDNOTFOU, required rights identifier ID not found in rights database
RIGIDNOTHELD, you do not hold required rights identifier ID
ROLLBACK, database transaction has been rolled back
SCRDONE, completed wait for script
SCRIPTONLY, VDE/STATUS is invoked only within scripts
SCRLOAD, loading script into subprocess
SCRPADDED, script from file file added to the database script script
SCRPCMDTOOLONG, script command is too long; it exceeds count characters
SCRPDEL, script deleted from the database script script
SCRPEXTR, script extracted to file file script script
SCRPFACFAIL, script for facility facility terminated with errors
SCRPFILE, script produced DCL command file file script script
SCRPFUNCUNDEF, script function function is undefined in the current script
SCRPMOD, script information modified in the database script script
SCRPMODFAIL, script script for module module terminated with errors
SCRPUSED, script stript was used
SCRQUOERR, no closing quotation mark in script command:!/cmd
SCRWAIT, commencing wait for script
SCTCONF, SCT note conference null; module not replaced
SCTCONFSYN, SCT note conference syntax error; module not replaced
SCTFCMT, SCT fold comment required; module not replaced
SCTFNF, unable to locate notes conference confname
SCTNOTE, SCT note number null; module not replaced
SCTNOTESYN, SCT note number syntax error; module not replaced
SECMERFAI, secondary merge failure
SEECONLIB, see the VDE CONVERT LIBRARY command
SESADDED, session session added to the database
SESBELUSER, session session belongs to another user
SESCAN, session session cancelled
SESEXISTS, session session already exists in database; session not changed
SESMOD, information for session session modified in the database
SESNOMODS, session session contains no module reservations
SESNOTFOUND, session session not found in database; parameter ignored
SESTERM, session session terminated
SETKEY, keypad state has been set to state-name
SETKEYERR, error in processing SET KEY command
SETLIB, use SET LIBRARY, VDE$LIBRARY, or /LIBRARY
SETUNAUTH, attempt to set unauthorized privileges; privileges not set
SHOKEYERR, error in processing SHOW KEY command
SHORESFUL, use SHOW RESERVATION/FULL to check reservation stream
SNDJBCERR, job controller error status for queue queue
SPARE_1, placeholder for VDE$_MODEXISTS (module) message
SPARE_2, placeholder for VDE$_INVALANS (answer) message
SPARE_3, was FACNOTDEL; replaced
SPARE_4, was STRMNOTDEL
SPARE_5, was FOLDNOTFOUND
SPARE_6, was BADSTATUS; replaced
SPARE_8, was FOLDNOTFOUND
SPAWNED, subprocess spawned
SPEMERFAI, specification merge failure
SRCNOTOUT, source module module cannot be an output from build step
STATNOTSPEC, the kind of statistics to display was not specified
STEPNOTCRE, build step not created; module module not found in database
STEPNOTFOUND, build step for module module not found in database
STEPNOTMOD, build step not modified; module module not found in database
STEPNOTREV, build step for module module not found in review list
STGTRUNC, string truncated
STKOVF, command procedures too deeply nested; limit is 16 levels
STRMADDED, stream stream added to the database
STRMCLOSED, stream stream is permanently closed; state not changed
STRMDEL, stream stream deleted from the database
STRMEXISTS, stream stream already exists in database
STRMMOD, information for stream stream modified in the database
STRMNOTCLOSED, stream stream can not be deleted because it is not closed
STRMNOTDEL, stream stream not deleted
STRMNOTFOUND, stream stream not found in database; parameter ignored
STRMNOTOPEN, stream stream is not open; operation not allowed
STRMNOTPOP, stream stream is not allowed to be populated
STRMPOP, stream stream populated from stream stream
STRMPOPCOUNT, populate module counts: update count, insert count, remove count
STRTOOLONG, quoted string too long; must be shortened
SUCGENEXIST, successor generation for module already exists in library
SUCLNKADD, successor link from stream stream to stream stream added
SUCLNKREM, successor link from stream stream to stream stream removed
SYNTAX, command syntax error at or near: 'text'
TOOMANPARM, too many poundsign parameters in history or notes stringinvalid string is: string
TRANTOODEEP, translation of logical name logical more than 7 deep
UIDSKEW, possible UID skew detected; check for correct UID file.
UIDSKEWCODE, UID skew code value
UNACLOFIL, unable to close file file-name
UNACLOLOG, unable to close log file file-name
UNACONLOG, unable to connect log file file-name
UNACONVDBFORM, unable to convert database format due to access conflict with another user
UNACREFIL, unable to create file file-name
UNACRELOG, unable to create log file file-name
UNACREMBX, unable to create temporary mailbox
UNADELFIL, unable to delete file file-name
UNAOPEFIL, unable to open file file-name
UNAOPEINP, unable to open input stream 'text'
UNAPARFIL, unable to parse file name name with default string name
UNAREPNOTECONF, unable to reply to note in notes conference conference
UNDKEY, state-name key key-name is undefined
UNKCOMSTA, unknown completion status value status passed to VDESTATUS
UNKEPT, unable to opnam to kept subprocess section
UNKEYW, unrecognized keyword 'text' - check validity and spelling
UNKFILEXT, Unknown file extension in analysis file; the complete filespecification found was spec
UNKPNAM, unable to locate project projnam in stream streamnam
UNKPROJ, unable to locate a project name
UNKQARCLD, internal VDE coding error
UNLOCKED, overriding library lockout
UNMATQUO, unmatched quote or missing quote at end of string
UNRESERVED, reservation for module module cancelled
USEDELMOD, to unreserve a CREATE MODULE reservation, use DELETE MODULE
USERADDED, user user added to the database
USERDEL, user user deleted from the database
USEREXISTS, user user already exists in database; user not changed
USERMOD, information for user user modified in the database
USERNOTDEL, user user not deleted; you cannot delete yourself
USERNOTFOUND, user user not found in database; parameter ignored
USERNOTUAF, user user not found in system User Authorization File
USEVERSLNM, use logical name VDE$VMS_VERSION to override OpenVMS version
VALREQ, missing qualifier or keyword value - supply all required values 'text'
VDECLUSTER, vde.cluster: cluster
VDECONTACT, vde.contact: please contact VDE support for assistance
VDEDATETIME, vde.datetime: datetime
VDEFORMAT, vde.format: the format of this file is subject to change
VDENAME, vde.product: vdename
VDENODE, vde.node: node
VDEPROJECT, vde.project: project
VDERDBBKP, VDE$DATABASE$db_BCKP_type
VDERDBBKP_FULL, FULL
VDERDBBKP_INCR, INCR
VDEVERSION, vde.version: version
VERBOTEN, direct ATTACH to a VDE kept subprocess is forbidden
WHEREIS, component comp is value
WHYOFF, reason: !AD
WILDGENNUM, wildcarded generation number not allowed in module
WILDNOTALL, wildcard characters not allowed in name: name
XMERROR, Motif interface error detected
Previous | Next | Contents | Index |