T.R | Title | User | Personal Name | Date | Lines |
---|
584.1 | instead of opening a new note... | NCBOOT::HARRIS | oooppps | Tue Jul 07 1992 23:41 | 51 |
| hi,
any ideas on this one?
customer has ALl-IN-1 2.4, INGRES 6.4 they have a business application
that calls a .com file that calls an exe file (ingres).
on the ingres menu, one of the choices is
to spawn to DCL level. this works if its is called from a DCL prompt, but
will not work when called from within ALL-IN-1.
what happens is the user is put back to the ALL-IN-1 BA screen.
the customer is SURE that it is an ALL-IN-1 problem. a trace shows nothing
as does a 'set verify'.
the ultimate goal is to be able to bring a user into the editor (edt) from the
ingres application that is called from ALL-IN-1. (does that make sense?)
here is the current .com file they are using. anyone have any ideas?
thanks - ann
_________________________________________________________________________________
$!WSP.COM 6-18-91
$!procedure to run WSP application from within ALL-IN-1
$!
$!get the current equivalence value for logical TT:
$ OLD_TT = F$LOGICAL("TT")
$!
$! ask AL-IN-1 parent process to tell subprocess the value of
$! symbol OS$TERM_DEVICE:
$!
$ WRITE OAMAILBOX "OA GET OA$TERM_DEVICE"
$@DCLMAILBOX:
$ING_TT = RESULT
$!
$!assign new value to logical TT based on results of preceding step:
$! preceding step
$!
$DEFINE/NOLOG/PROC TT 'ING_TT'
$!
$! set up app symbols
$RUNWSP = "$DIVISION$WSP:W0000.EXE W0000"
$set nocontrol =(y)
$RUNWSP
$set control =(y)
$!
$! Re-define TT to its previous value:
$ DEFINE/NOLOG/PROC TT 'OLD_TT'
$!
$EXIT
|
584.2 | Redefine SYS$INPUT | UTRTSC::BOSMAN | They sold you the view from a hill | Wed Jul 08 1992 07:59 | 5 |
| Hi,
Try $ DEFINE /USER_MODE SYS$INPUT SYS$OUTPUT
Sjaak.
|
584.3 | thanks! | NCBOOT::HARRIS | oooppps | Wed Jul 08 1992 16:39 | 8 |
| thanks for the help sjaak!
this almost works, i redefined the sys$input as in .2
now instead of being returned back to the ALL-IN-1 BA screen, the user
is returned to the INGRES screen. its getting closer. we'll keep
playing with it.
Thanks!!!!!! ann
|
584.4 | The story goes on. | UTRTSC::BOSMAN | They sold you the view from a hill | Thu Jul 09 1992 07:58 | 17 |
| And this one? Invoke with 'COMMAND mumble.COM \CLEAR'
Regards,
Sjaak.
$ main:
$ !
$ DEFINE /USER_MODE SYS$INPUT SYS$OUTPUT
$ !
$ runwsp = "$DIVISION$WSP:W0000.EXE W0000"
$ ctrl = F$ENVIRONMENT( "CONTROL" )
$ !
$ runwsp
$ !
$ IF ctrl .NES. "" THEN SET CONTROL = ( 'ctrl' )
$ !
$ EXIT
|
584.5 | | NCBOOT::HARRIS | oooppps | Tue Jul 28 1992 22:27 | 16 |
| well,
i was finally able to access the form and the ND behind it. the /CLEAR
is on the line that calls the command
.TYPE
ARG /PRE="COMMAND DIVISION$WSP:WSP.COM"\CLEAR
i found out that my predesesor had been given the same problem and
determined that this wasn't an ALL-IN-1 problem. my customer says that
another comapny has this working, so we'll tryto find out what the
diffs are between the 2 companies/systems.
thanks for the helpful suggestions!
ann
|
584.6 | \CLEAR within /PRE_FUNCTION | UTRTSC::BOSMAN | They sold you the view from a hill | Wed Jul 29 1992 08:30 | 10 |
| Hi,
� ARG /PRE="COMMAND DIVISION$WSP:WSP.COM"\CLEAR
Should be:
ARG /PRE="COMMAND DIVISION$WSP:WSP.COM \CLEAR"
Regards,
Sjaak.
|
584.7 | "further" clues to this INGRES mystery | OKBYUS::LUNDIN | | Wed Aug 26 1992 22:08 | 18 |
| A follow on to Ann's notes. We have done a little bit more research
and found that the programmer who wrote the INGRES application did not
really know of any other sites that were running this under the
ALL-IN-1 umbrella.
We have also found out that the INGRES application uses a command
within INGRESS called 'CALL SYSTEM' to access DCL. Again, from the DCL
prompt it works fine, but from within ALL-IN-1, when the user takes the
DCL option, the screen flickers and simply returns to the INGRES menu.
Does anyone know of a method that we can get this INGRES application to
access DCL from the BA menu within ALL-IN-1.
Any ideas would be much appreciated.
Thanks,
Sandy
|
584.8 | what about oaini.com | NCBOOT::HARRIS | oooppps | Thu Sep 24 1992 21:10 | 15 |
| still having nightmares on this one.....
a totally differenet problem (for the same customer) was corrected
witht the creationof OAINI.COM files in users .OA directorys. now, the
customer is asking if something needs to be inserted in the users or
system wide OAINI.COM for this INGRES application to work from withing
ALL-IN-1.
the system OAINI.COM runs the SYSYMBOLS.COM and a common-login.com for
all users. the personal OAINI.COM re-runs users personal login.com.
ALl-IN-1 2.4, VMS 5.5-1 (upgraded last weekend, but problem has been on
going)
ann
|