Show TOC

Background documentationUsing the Start Profile Locate this document in the navigation structure

 

There are one or more calls for sapcpe included in the start profile of every SAP system instance. Program sapstart is started with an SAP system instance is started. This program automatically calls program sapcpe. Program sapcpe ensures the automatic synchronization of executables using copies of them from the central directory to the local directory. At all future start-ups, sapcpe checks that the local executables are still current and copies any new or changed executables from the central directory.

Example

  • Calling from the start profile profile_1. sapcpe, the default list file processes:

    Syntax Syntax

    1. […]
    2. DIR_CT_RUN = $(DIR_EXE_ROOT)/run
    3. DIR_EXECUTABLE = $(DIR_INSTANCE)/exe
    4. _PF = $(DIR_PROFILE)/profile_1
    5. […]
    6. Execute_25 = immediate $(DIR_CT_RUN)/sapcpe$(FT_EXE) pf=$(_PF)
    7. […]
    End of the code.
  • A call from a start profile profile_2. sapcpe processes a list file with the name example.lst:

    Syntax Syntax

    1. […]
    2. DIR_CT_RUN = $(DIR_EXE_ROOT)/run
    3. DIR_EXECUTABLE = $(DIR_INSTANCE)/exe
    4. _PF = $(DIR_PROFILE)/profile_2
    5. _CPARGO = $(DIR_PROFILE)/example.lst
    6. […]
    7. Execute_00 = immediate $(DIR_CT_RUN)/sapcpe$(FT_EXE) pf=$(_PF) $(_CPARG0)
    8. […]
    End of the code.