T.R | Title | User | Personal Name | Date | Lines |
---|
3975.1 | Oh no the Upgrade from Hell isn't over! | AIMTEC::WICKS_A | Atlanta's Most (In)famous Welshman | Mon Mar 14 1994 20:52 | 14 |
| Dave,
Wonder who the customer is?? has Chris left yet?
No there's no graceful way to remove it other than write a script
using those funky new string handling things doing an f$Thingy for
OAX$RES_SCHEDULER and then chopping the left and right of it and
glueing it back together and then rewriting it to frmlib..
you will be removing the RS stuff from CM also won't you..
Regards,
Andrew.D.wicks
|
3975.2 | Hackimo Univeristy | MISFIT::KINNEYD | All Mach, No Vector | Mon Mar 14 1994 21:02 | 14 |
| Chris is gone, and I'm sure she is relieved. I got a call today about
some small problems. No way she would have caught them without
exorcising(sic) the whole system. One thing for sure is that I will have
to back out RS. I took it off the main menu just to keep folks out for
now, but am looking for an easy way out. I thought note 259 would help
me, if I could just figure out how to apply it here. 90% of the
profiles will only have the RS form library defined, so all I have to
do, I suppose it write blanks for them.
Still looking for help though!! Say hey to Paul!!!
Dave Kinney
|
3975.3 | | RIPPER::JOYCE | Burn me kangaroo down sport | Mon Mar 14 1994 23:20 | 23 |
|
Removing a specific form-library from FRMLIB field in PROFIL?
Look at the way that the V3.0 post-install SFCP_MIGRATE.SCP does it...
!+
! Remove the OAX$SFCP_LIB:SFCP form lib from the frmlib field.
!-
for profil do -
get #new_frmlib = #comma = "" \\ -
get #frmlib = .frmlib \\ -
get #user = .user \\ -
for oa$table:#frmlib do -
.if .%key <=> "SFCP" -
then oa$null -
else -
get #new_frmlib = #new_frmlib #comma .%key \\\\\\\\ -
get #comma = "," \\ -
write change profil user= #user ,frmlib = #new_frmlib
Pretty slick, huh?
Andy
|