..          INFOAS4 CODE BASE II09999 2924 R07M00    0003
.,
*** Last Updated 05/20/99 ***

VRM = 370

INFORMATION APAR II09999
IAV = 1

                       V3R7 Required PTFs for R/3
 Customer is required to load CUMPKG C8314370 + PTF's below.

(5716SS1)
TC98314 CUMPKG
SF55916
SF54901
SF54726 (DO NOT order this PTF, this is a marker only) This
 marker is installed when you have the latest DB Fix pack
 installed.  The DB Fix pack, SF99100, is required.  The
 current fix pack date is 3/19/99.
SF48144


(5716999)
TL98314

(5799FWQ)
SF50277  -- Required for 3-Tier only, Opticonnect PTF
SF47068  -- Required for 3-Tier only, Opticonnect PTF

*************************************************************
NOTE:  A problem has been identified with the RCLSPACE tool
that could result in data loss and system errors.  Any
customer using the RCLSPACE tool available via QUSRTOOLS,
IBM PTF SF38832, or the 'SAP R/3 Implementation for AS/400'
redbook tools CD, should take the following action.  If you use
this tool you should immediately download the latest version
from the following internet site:
      http://service.software.ibm.com/dl/sap/saptools-d
to ensure you have a version of this tool which has been
corrected.
The following PTF's may be of value but are not required.

NOTE:   There may be times that you receive a different PTF
        then you request due to the requested PTF being
        superceded.  Please install the supercede PTF.
*************************************************************

After installing the above PTFs, we recommend that you delete
all of the SQL packages created by the SAP R/3
product before restarting R/3.
The packages created by the SAP R/3 product are in
libraries that begin with the characters 'R3'. Below is
the source for a CL program that will delete all SQL
packages which exist in libraries that begin with 'R3".
You may copy and compile this source and then call the
program to delete the packages.  We recommend that you
run this program in batch, especially if you have an
AS/400 server model.

NOTE: SAP R/3 version 30F and later, contains a program to do
      this.  The program name is, 'DLTR3PKG' and can be
      called from the command line instead of compiling the
      source below.

WARNING: Initial response time may be longer on some
transactions due to the rebuilding of the SQL packages.

/***********************************************************/
/* This AS/400 CL program will delete all packages that    */
/* exist in libraries that begin with the characters 'R3'. */
/***********************************************************/
PGM

DCLF       FILE(QADSPOBJ)

MONMSG     MSGID(CPF0000) EXEC(GOTO CMDLBL(ERROR))
/**************************************************/
/* Create an output file containing the names of  */
/* all SQL packages on the system.                */
/**************************************************/
DSPOBJD    OBJ(*ALL/*ALL) OBJTYPE(*SQLPKG) +
             OUTPUT(*OUTFILE) OUTFILE(QTEMP/TEMP)

/********************************************************/
/* Loop through the output file and delete all *SQLPKG  */
/* objects that are in libraries that begin with "R3".  */
/********************************************************/

RCVF:       RCVF
            MONMSG     MSGID(CPF0864) EXEC(GOTO CMDLBL(EXIT))
          IF     COND(%SUBSTRING(&ODLBNM 1 2) *EQ "R3") THEN(DO)
               DLTSQLPKG  SQLPKG(&ODLBNM/&ODOBNM)
            ENDDO
            GOTO       CMDLBL(RCVF)
/* Normal termination. */
EXIT:       SNDPGMMSG  MSG('R/3 packages successfully deleted.')
            RETURN

/* An error occurred. */
ERROR:    SNDPGMMSG  MSG('An error occurred while deleting R/3 +
                         packages. See previous messages in the
                         job log.')
ENDPGM