A
Akshay Guleria
Guest
Below is a simple example of 4GL code to start a PASOE instance (depending on OS). DEF VAR lcCommand AS CHAR NO-UNDO. IF OPSYS = "UNIX" THEN lcCommand = " /bin/tcman.sh pasoestart -timeout 120 -json -silent -archive". ELSE IF OPSYS = "WIN32" THEN lcCommand = " \bin\tcman.bat pasoestart -timeout 120 -json -silent -archive". ELSE MESSAGE OPSYS "is an unsupported operating system". OS-COMMAND VALUE(lcCommand). // default in windows (OE ver 11.7) -> C:\OpenEdge\WRK\oepas1. Check you own.
Continue reading...
Continue reading...