cancel
Showing results for 
Search instead for 
Did you mean: 

Importing Support Pack stuck at phase IMPORT_PROPER.

Former Member
0 Kudos

While upgrading Support Pack  import stuck at phase IMPORT_PROPER.

System is generating SYNTAX_ERROR dump. System is not in consistent state.

  

Log File:

Runtime Errors         SYNTAX_ERROR

Date and Time          09.09.2012 15:33:46

Short text

     Syntax error in program "SAPLTMSM ".

What happened?

     Error in the ABAP Application Program

     The current ABAP program "SAPLTMSC" had to be terminated because it has

     come across a statement that unfortunately cannot be executed.

     The following syntax error occurred in program "SAPLTMSM " in include "LTMSMU15

      " in

     line 278:

     "The data object "LS_TP_TEST" has no component called "DS_TEST", but th"

     "ere is a component called "TEST"."

     " "

     " "

     The include has been created and last changed by:

     Created by: "SAP "

     Last changed by: "SAP "

     Error in the ABAP Application Program

     The current ABAP program "SAPLTMSC" had to be terminated because it has

     come across a statement that unfortunately cannot be executed.

Error analysis

    The following syntax error was found in the program SAPLTMSM :

    "The data object "LS_TP_TEST" has no component called "DS_TEST", but th"

    "ere is a component called "TEST"."

    " "

    " "

Trigger Location of Runtime Error

    Program                                 SAPLTMSC

    Include                                 LTMSCU41

    Row                                     21

    Module type                             (FUNCTION)

    Module Name                             TMS_CI_GET_SYSTEM_PER_GROUP

Source Code Extract

Line  SourceCde

    1 function tms_ci_get_system_per_group.

    2 *"----

--------------------------------------------------------------------------------

    3 ""Lokale Schnittstelle:

    4 *"       CHANGING

    5 *"             REFERENCE(IT_SYSLIST) TYPE  TMSCSYSLST_TYP

    6 *"       EXCEPTIONS

    7 *"              TMS_NOT_CONFIGURED

    8 *"              LIST_INCOMPLETE

    9 *"----

--------------------------------------------------------------------------------

   10

   11 data: lt_tmscsys             like tmscsys occurs 0 with header line.

   12

   13 data: ls_syslist             like tmscsyslst.

   14

   15 data: ls_tmsmconf            like tmsmconf,

   16       lv_local_grp           like tmscsys-nfsgrp,

   17       lv_subrc               like sy-subrc,

   18       lv_incomplete.

   19

   20 * get local domain first

>>>>>   call function 'TMS_CFG_READ_LOCAL_CONFIG'

   22        importing

   23             es_conf          = ls_tmsmconf

   24        exceptions

   25             others           = 99.

   26   if sy-subrc <> 0.

   27     message id sy-msgid type sy-msgty number sy-msgno

   28             with sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4

   29                               raising tms_not_configured.

   30   endif.

   31

   32 * get domain name of each system

   33   loop at it_syslist into ls_syslist

  34           where domnam = space.

  35     call function 'TMS_CFG_GET_DOMAIN_NAME'

  36          exporting

  37               iv_system      = ls_syslist-sysnam

  38          importing

  39               ev_domain_name = ls_syslist-domnam.

  40     modify it_syslist from ls_syslist.

Please suggest.

Accepted Solutions (1)

Accepted Solutions (1)

shashisingh
Participant
0 Kudos

Use this command

tp r3i <Patch no> <SID> pf=<transport profile> tag=spam

Thanks,
Shashi

Answers (0)