[Search for users] [Overall Top Noters] [List of all Conferences] [Download this site]

Conference iosg::all-in-1_v30

Title:*OLD* ALL-IN-1 (tm) Support Conference
Notice:Closed - See Note 4331.l to move to IOSG::ALL-IN-1
Moderator:IOSG::PYE
Created:Thu Jan 30 1992
Last Modified:Tue Jan 23 1996
Last Successful Update:Fri Jun 06 1997
Number of topics:4343
Total number of notes:18308

3975.0. "Remove Resource Schedular" by MISFIT::KINNEYD (All Mach, No Vector) Mon Mar 14 1994 20:27

    Now that v3.0 renders the assets package Resource Schedular unusable,
    is there any graceful way to get rid of the resource schedular?
    I need to remove the form library from every profil record, but leave the
    form library references for other applications in tact. 
    
    Suggestions?
    
    Dave Kinney
T.RTitleUserPersonal
Name
DateLines
3975.1Oh no the Upgrade from Hell isn't over!AIMTEC::WICKS_AAtlanta's Most (In)famous WelshmanMon Mar 14 1994 20:5214
    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.2Hackimo UniveristyMISFIT::KINNEYDAll Mach, No VectorMon Mar 14 1994 21:0214
    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.3RIPPER::JOYCEBurn me kangaroo down sportMon Mar 14 1994 23:2023
        
    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