ASSERTION_FAILED with program RGIMOVV0 during XPRA PHASE ; LEDGER SCENARIOS

Hello guys, i'm having a problem applying support package EHP3 into an ECC system . some short part of the dump text : Runtime Errors ASSERTION_FAILED Date and Time 17.09.2009 15:05:51 -
|Short text | | The ASSERT condition was violated. | -
|How to correct the error | | Probably the only way to eliminate the error is to correct the program. | | - | | | | If the error occures in a non-modified SAP program, you may be able to | | find an interim solution in an SAP Note. | | If you have access to SAP Notes, carry out a search with the following | | keywords: | | | | "ASSERTION_FAILED" " " | | "RGIMOVV0" or "RGIMOVV0" | | "FILL_LEDGER_SCENARIOS" | -
|Information on where terminated | | Termination occurred in the ABAP program "RGIMOVV0" - in | | "FILL_LEDGER_SCENARIOS". | | The main program was "RGZZGLUX ". | | | | In the source code you have the termination point in line 1724 | | of the (Include) program "RGIMOVV0". | | The program "RGIMOVV0" was started as a background job. | | Job Name....... "RDDEXECL" | | Job Initiator.. "DDIC" | | Job Number..... 15054200 | -
|Source Code Extract | -
|Line |SourceCde | -
| 1694| | | 1695|ENDFORM. " create_add_mov_for_gl_ledger | | 1696| | | 1697|&---- | | 1698|& Form fill_ledger_scenarios | | 1699|&--* | | 1700|* text | | 1701|*--
* | | 1702|FORM fill_ledger_scenarios USING iv_fieldmovement TYPE feldmodif | | 1703| iv_interface TYPE gl_interface | | 1704| is_t881 TYPE t881 | | 1705| it_ledger_scen TYPE ty_ledger_scen_tab | | 1706| it_scen_fields TYPE ty_scen_fields_tab | | 1707| it_cust_fields TYPE ty_cust_fields_tab. | | 1708| | | 1709| DATA: ls_ledger_scen TYPE fagl_ledger_scen, | | 1710| ls_scen_field TYPE fagl_scen_fields, | | 1711| ls_field_move TYPE fagl_field_move, | | 1712| ls_field_movec TYPE fagl_field_movec, | | 1713| ls_cust_field TYPE fagl_cust_fields, | | 1714| lv_lfieldname TYPE dfies-lfieldname. | | 1715| | | 1716| LOOP AT it_ledger_scen INTO ls_ledger_scen. | | 1717| LOOP AT it_scen_fields INTO ls_scen_field | | 1718| WHERE scenario = ls_ledger_scen-scenario | | 1719| AND interface = iv_interface. | | 1720| READ TABLE gt_field_move INTO ls_field_move | | 1721| WITH TABLE KEY totable = is_t881-tab | | 1722| tofield = ls_scen_field-field | | 1723| interface = iv_interface. | |>>>>>| ASSERT sy-subrc = 0. | | 1725|* co-pa interface table is generated, so first check if field really exists | | 1726| IF iv_interface = gc_copa_interface. | | 1727| MOVE ls_field_move-fromfield TO lv_lfieldname. | | 1728| CALL FUNCTION 'DDIF_NAMETAB_GET' | | 1729| EXPORTING | | 1730| tabname = ls_field_move-fromtable | | 1731| lfieldname = lv_lfieldname | | 1732| EXCEPTIONS | | 1733| OTHERS = 1. | | 1734| CHECK sy-subrc = 0. | | 1735| ENDIF. | | 1736| PERFORM append_field USING ls_ledger_scen-client iv_fieldmovement ls_scen_field-field | | 1737| ls_field_move-fromtable ls_field_move-fromfield ls_field_move-exitname. | | 1738| ENDLOOP. | | 1739| ENDLOOP. | | 1740| | | 1741| LOOP AT it_cust_fields INTO ls_cust_field. | | 1742| READ TABLE gt_field_movec INTO ls_field_movec | | 1743| WITH TABLE KEY totable = is_t881-tab | -
did someone of you experience a problem of this kind?
Even performing a local copy I experienced the same and running the program RGIMOVV0 from se38 leads to the same dump. Our development is in stuck .
Regards to all

we have deleted three entries from a table cuasing the dump. ALL the entries with to field PROJK .
Do not know but somone maybe started a project in the ledger scenario that put those entries in the table.
If you go in spro at the voice" assign ledger scenario" it should lead you to the same dump.
try !

Similar Messages

  • ASSERTION_FAILED with program RGIMOVV0 during XPRA PHASE

    Hello guys,
    i'm having a problem applying support package EHP3 into an ECC system .
    some short part of the dump text :
    Runtime Errors         ASSERTION_FAILED
    Date and Time          17.09.2009 15:05:51
    Short text
    The ASSERT condition was violated.
    How to correct the error
    Probably the only way to eliminate the error is to correct the program.
    If the error occures in a non-modified SAP program, you may be able to
    find an interim solution in an SAP Note.
    If you have access to SAP Notes, carry out a search with the following
    keywords:
    "ASSERTION_FAILED" " "
    "RGIMOVV0" or "RGIMOVV0"
    "FILL_LEDGER_SCENARIOS"
    Information on where terminated
    Termination occurred in the ABAP program "RGIMOVV0" - in
    "FILL_LEDGER_SCENARIOS".
    The main program was "RGZZGLUX ".
    In the source code you have the termination point in line 1724
    of the (Include) program "RGIMOVV0".
    The program "RGIMOVV0" was started as a background job.
    Job Name....... "RDDEXECL"
    Job Initiator.. "DDIC"
    Job Number..... 15054200
    Source Code Extract
    Line
    SourceCde
    1694
    1695
    ENDFORM.                    " create_add_mov_for_gl_ledger
    1696
    1697
    1698
    *&      Form  fill_ledger_scenarios
    1699
    1700
          text
    1701
    1702
    FORM fill_ledger_scenarios  USING  iv_fieldmovement TYPE feldmodif
    1703
    iv_interface TYPE gl_interface
    1704
    is_t881 TYPE t881
    1705
    it_ledger_scen TYPE ty_ledger_scen_tab
    1706
    it_scen_fields TYPE ty_scen_fields_tab
    1707
    it_cust_fields TYPE ty_cust_fields_tab.
    1708
    1709
    DATA: ls_ledger_scen TYPE fagl_ledger_scen,
    1710
    ls_scen_field TYPE fagl_scen_fields,
    1711
    ls_field_move TYPE fagl_field_move,
    1712
    ls_field_movec TYPE fagl_field_movec,
    1713
    ls_cust_field TYPE fagl_cust_fields,
    1714
    lv_lfieldname TYPE dfies-lfieldname.
    1715
    1716
    LOOP AT it_ledger_scen INTO ls_ledger_scen.
    1717
    LOOP AT it_scen_fields INTO ls_scen_field
    1718
    WHERE scenario = ls_ledger_scen-scenario
    1719
    AND interface = iv_interface.
    1720
    READ TABLE gt_field_move INTO ls_field_move
    1721
    WITH TABLE KEY totable = is_t881-tab
    1722
    tofield = ls_scen_field-field
    1723
    interface = iv_interface.
    >>>>>
    ASSERT sy-subrc = 0.
    1725
        co-pa interface table is generated, so first check if field really exists
    1726
    IF iv_interface = gc_copa_interface.
    1727
    MOVE ls_field_move-fromfield TO lv_lfieldname.
    1728
    CALL FUNCTION 'DDIF_NAMETAB_GET'
    1729
    EXPORTING
    1730
    tabname    = ls_field_move-fromtable
    1731
    lfieldname = lv_lfieldname
    1732
    EXCEPTIONS
    1733
    OTHERS     = 1.
    1734
    CHECK sy-subrc = 0.
    1735
    ENDIF.
    1736
    PERFORM append_field USING ls_ledger_scen-client iv_fieldmovement ls_scen_field-field
    1737
    ls_field_move-fromtable ls_field_move-fromfield ls_field_move-exitname.
    1738
    ENDLOOP.
    1739
    ENDLOOP.
    1740
    1741
    LOOP AT it_cust_fields INTO ls_cust_field.
    1742
    READ TABLE gt_field_movec INTO ls_field_movec
    1743
    WITH TABLE KEY totable = is_t881-tab
    did someone of you experience a problem of this kind?
    Even performing a local copy I experienced the same  and running the program RGIMOVV0 from se38 leads to the same dump. Our development is in stuck .
    Regards to all

    Dear sirs -
    Were you able to solve your problem?  We are trying to execute a client copy and cannot finish post processing steps.
    We have a note into SAP as well.
    Brenda

  • Error in AGR_XPRA_REGENERATE_SAP_NEW during XPRA Phase

    I'm upgrading from BI 3.1 to NW2004s SR2 and currently in XPRA phase when I hit an error
    2 EPU115XReport "AGR_XPRA_REGENERATE_SAP_NEW" started: "20071030054220"
    1AETR012XProgram terminated (job: "RDDEXECL", no.: "05422001")
    1AEPU320 See job log"RDDEXECL""05422001""<SID>"
    1 ETP162 EXECUTION OF REPORTS AFTER PUT
    1 ETP110 end date and time   : "20071030054235"
    1 ETP111 exit code           : "12"
    I tried executing the AGR_XPRA_REGENERATE_SAP_NEW report in SE38 and prompts me this:
    "You are using the Profile Generator for the first time"
    When I went to PFCG, it looks ok.
    SAPup - Release Build 24.098,  TP - Release 700 with Patch 120 and R3trans - Release 700 Version 6.14 program

    <b>XPRASUPG.ELG - Log File
    </b>**************************************************
      LIST OF ERRORS AND RETURN CODES  *******
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    XPRA ERRORS and RETURN CODE in SAPR700XD1.WT3
    ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
    1AETR012XProgram terminated (job: "RDDEXECL", no.: "08095701")
      Long text:
        Cause
          Program "&V#&", which was started in the background, was terminated
          abnormally.
        System Response
          The system created a job log for the terminated program.
        What to do
          Proceed as follows:
          Log onto the system in which the program was executed. The system is
          specified at the beginning of the transport log.
          Then call transaction SM37 to display the job log.
          Enter "&V#&" as job name and "DDIC" as user name.
          Restrict the starting date to the starting date specified in the
          transport log.
          For the other selection criteria, select only jobs with the status
          "cancelled". Then press <LS>Execute</>.
          A list of the jobs satisfying the selection criteria is displayed.
          You can display the log by pressing <LS>Job log</>.
          If the list contains several jobs, you can select the job with the ID "
          &V#&" with <LS>Display</> -> <LS>Job details</> or define further
          details for the selection criteria in the initial screen of transaction
          SM37.
          If the ABAP processor reports cancellation, double-clicking on the
          corresponding message in the job log branches to the display of the
          corresponding short dump.
    1AEPU320 See job log"RDDEXECL""08095701""WT3"
    1 ETP111 exit code           : "12"
    >>> PLEASE READ THE REPORT DOCUMENTATION OF THE REPORTS MENTIONED ABOVE <<<
    XPRAs are application reports that run at the end of an upgrade.
    Most XPRA reports have a report documentation that explains what
    the report does and how errors can be corrected.
    Call transaction se38 in the SAP system, enter the report name,
    select 'Documentation' and click the 'Display' button.
    >>> The problematic XPRAs are mentioned in messages of type PU132 above <b><<<
    SAPR700XD1.WT3</b>
    4 EPU201XBEGIN OF SECTION BEING ANALYZED
    1 ETP199X######################################
    1 ETP162 EXECUTION OF REPORTS AFTER PUT
    1 ETP101 transport order     : "SAPK700XD1"
    1 ETP102 system              : "WT3"
    1 ETP108 tp path             : "J:\usr\sap\WT3\SYS\exe\run\tp.exe"
    1 ETP109 version and release : "372.04.04" "700"
    1 ETP198
    2 EPU126XPost-import methods for change/transport request: "SAPK700XD1"
    4 EPU111    on the application server: "CPAFISWN"
    2 EPU131 No objects requiring post-import methods exist
    2 EPU127 Post-import methods of change/transport request "SAPK700XD1" completed
    2 EPU128      Start of subsequent processing ... "20071030054220"
    2 EPU129      End of subsequent processing... "20071030054220"
    3 ETP000
    3 ETP000 **************************************************
    3 ETP000
    2 EPU115XReport "AGR_XPRA_REGENERATE_SAP_NEW" started: "20071030054220"
    1AETR012XProgram terminated (job: "RDDEXECL", no.: "05422001")
    1AEPU320 See job log"RDDEXECL""05422001""WT3"
    1 ETP162 EXECUTION OF REPORTS AFTER PUT
    1 ETP110 end date and time   : "20071030054235"
    1 ETP111 exit code           : "12"
    1 ETP199 ######################################
    1 ETP199X######################################
    1 ETP162 EXECUTION OF REPORTS AFTER PUT
    1 ETP101 transport order     : "SAPK700XD1"
    1 ETP102 system              : "WT3"
    1 ETP108 tp path             : "J:\usr\sap\WT3\SYS\exe\run\tp.exe"
    1 ETP109 version and release : "372.04.04" "700"
    1 ETP198
    2 EPU126XPost-import methods for change/transport request: "SAPK700XD1"
    4 EPU111    on the application server: "CPAFISWN"
    2 EPU131 No objects requiring post-import methods exist
    2 EPU127 Post-import methods of change/transport request "SAPK700XD1" completed
    2 EPU128      Start of subsequent processing ... "20071030054455"
    2 EPU129      End of subsequent processing... "20071030054455"
    3 ETP000
    3 ETP000 **************************************************
    3 ETP000
    2 EPU115XReport "AGR_XPRA_REGENERATE_SAP_NEW" started: "20071030054455"
    1AETR012XProgram terminated (job: "RDDEXECL", no.: "05445401")
    1AEPU320 See job log"RDDEXECL""05445401""WT3"
    1 ETP162 EXECUTION OF REPORTS AFTER PUT
    1 ETP110 end date and time   : "20071030054509"
    1 ETP111 exit code           : "12"
    1 ETP199 ######################################
    1 ETP199X######################################
    1 ETP162 EXECUTION OF REPORTS AFTER PUT
    1 ETP101 transport order     : "SAPK700XD1"
    1 ETP102 system              : "WT3"
    1 ETP108 tp path             : "J:\usr\sap\WT3\SYS\exe\run\tp.exe"
    1 ETP109 version and release : "372.04.04" "700"
    1 ETP198
    2 EPU126XPost-import methods for change/transport request: "SAPK700XD1"
    4 EPU111    on the application server: "CPAFISWN"
    2 EPU131 No objects requiring post-import methods exist
    2 EPU127 Post-import methods of change/transport request "SAPK700XD1" completed
    2 EPU128      Start of subsequent processing ... "20071030061226"
    2 EPU129      End of subsequent processing... "20071030061226"
    3 ETP000
    3 ETP000 **************************************************
    3 ETP000
    2 EPU115XReport "AGR_XPRA_REGENERATE_SAP_NEW" started: "20071030061226"
    1AETR012XProgram terminated (job: "RDDEXECL", no.: "06122501")
    1AEPU320 See job log"RDDEXECL""06122501""WT3"
    1 ETP162 EXECUTION OF REPORTS AFTER PUT
    1 ETP110 end date and time   : "20071030061240"
    1 ETP111 exit code           : "12"
    1 ETP199 ######################################
    1 ETP199X######################################
    1 ETP162 EXECUTION OF REPORTS AFTER PUT
    1 ETP101 transport order     : "SAPK700XD1"
    1 ETP102 system              : "WT3"
    1 ETP108 tp path             : "J:\usr\sap\WT3\SYS\exe\run\tp.exe"
    1 ETP109 version and release : "372.04.04" "700"
    1 ETP198
    2 EPU126XPost-import methods for change/transport request: "SAPK700XD1"
    4 EPU111    on the application server: "CPAFISWN"
    2 EPU131 No objects requiring post-import methods exist
    2 EPU127 Post-import methods of change/transport request "SAPK700XD1" completed
    2 EPU128      Start of subsequent processing ... "20071030062509"
    2 EPU129      End of subsequent processing... "20071030062509"
    3 ETP000
    3 ETP000 **************************************************
    3 ETP000
    2 EPU115XReport "AGR_XPRA_REGENERATE_SAP_NEW" started: "20071030062509"
    1AETR012XProgram terminated (job: "RDDEXECL", no.: "06250901")
    1AEPU320 See job log"RDDEXECL""06250901""WT3"
    1 ETP162 EXECUTION OF REPORTS AFTER PUT
    1 ETP110 end date and time   : "20071030062524"
    1 ETP111 exit code           : "12"
    1 ETP199 ######################################
    1 ETP199X######################################
    1 ETP162 EXECUTION OF REPORTS AFTER PUT
    1 ETP101 transport order     : "SAPK700XD1"
    1 ETP102 system              : "WT3"
    1 ETP108 tp path             : "J:\usr\sap\WT3\SYS\exe\run\tp.exe"
    1 ETP109 version and release : "372.04.04" "700"
    1 ETP198
    2 EPU126XPost-import methods for change/transport request: "SAPK700XD1"
    4 EPU111    on the application server: "CPAFISWN"
    2 EPU131 No objects requiring post-import methods exist
    2 EPU127 Post-import methods of change/transport request "SAPK700XD1" completed
    2 EPU128      Start of subsequent processing ... "20071030064533"
    2 EPU129      End of subsequent processing... "20071030064533"
    3 ETP000
    3 ETP000 **************************************************
    3 ETP000
    2 EPU115XReport "AGR_XPRA_REGENERATE_SAP_NEW" started: "20071030064533"
    1AETR012XProgram terminated (job: "RDDEXECL", no.: "06453201")
    1AEPU320 See job log"RDDEXECL""06453201""WT3"
    1 ETP162 EXECUTION OF REPORTS AFTER PUT
    1 ETP110 end date and time   : "20071030064547"
    1 ETP111 exit code           : "12"
    1 ETP199 ######################################
    1 ETP199X######################################
    1 ETP162 EXECUTION OF REPORTS AFTER PUT
    1 ETP101 transport order     : "SAPK700XD1"
    1 ETP102 system              : "WT3"
    1 ETP108 tp path             : "J:\usr\sap\WT3\SYS\exe\run\tp.exe"
    1 ETP109 version and release : "372.04.04" "700"
    1 ETP198
    2 EPU126XPost-import methods for change/transport request: "SAPK700XD1"
    4 EPU111    on the application server: "CPAFISWN"
    2 EPU131 No objects requiring post-import methods exist
    2 EPU127 Post-import methods of change/transport request "SAPK700XD1" completed
    2 EPU128      Start of subsequent processing ... "20071030065634"
    2 EPU129      End of subsequent processing... "20071030065634"
    3 ETP000
    3 ETP000 **************************************************
    3 ETP000
    2 EPU115XReport "AGR_XPRA_REGENERATE_SAP_NEW" started: "20071030065634"
    1AETR012XProgram terminated (job: "RDDEXECL", no.: "06563301")
    1AEPU320 See job log"RDDEXECL""06563301""WT3"
    1 ETP162 EXECUTION OF REPORTS AFTER PUT
    1 ETP110 end date and time   : "20071030065648"
    1 ETP111 exit code           : "12"
    1 ETP199 ######################################
    1 ETP199X######################################
    1 ETP162 EXECUTION OF REPORTS AFTER PUT
    1 ETP101 transport order     : "SAPK700XD1"
    1 ETP102 system              : "WT3"
    1 ETP108 tp path             : "J:\usr\sap\WT3\SYS\exe\run\tp.exe"
    1 ETP109 version and release : "372.04.04" "700"
    1 ETP198
    2 EPU126XPost-import methods for change/transport request: "SAPK700XD1"
    4 EPU111    on the application server: "CPAFISWN"
    2 EPU131 No objects requiring post-import methods exist
    2 EPU127 Post-import methods of change/transport request "SAPK700XD1" completed
    2 EPU128      Start of subsequent processing ... "20071030072728"
    2 EPU129      End of subsequent processing... "20071030072728"
    3 ETP000
    3 ETP000 **************************************************
    3 ETP000
    2 EPU115XReport "AGR_XPRA_REGENERATE_SAP_NEW" started: "20071030072728"
    1AETR012XProgram terminated (job: "RDDEXECL", no.: "07272701")
    1AEPU320 See job log"RDDEXECL""07272701""WT3"
    1 ETP162 EXECUTION OF REPORTS AFTER PUT
    1 ETP110 end date and time   : "20071030072742"
    1 ETP111 exit code           : "12"
    1 ETP199 ######################################
    1 ETP199X######################################
    1 ETP162 EXECUTION OF REPORTS AFTER PUT
    1 ETP101 transport order     : "SAPK700XD1"
    1 ETP102 system              : "WT3"
    1 ETP108 tp path             : "J:\usr\sap\WT3\SYS\exe\run\tp.exe"
    1 ETP109 version and release : "372.04.04" "700"
    1 ETP198
    2 EPU126XPost-import methods for change/transport request: "SAPK700XD1"
    4 EPU111    on the application server: "CPAFISWN"
    2 EPU131 No objects requiring post-import methods exist
    2 EPU127 Post-import methods of change/transport request "SAPK700XD1" completed
    2 EPU128      Start of subsequent processing ... "20071030073925"
    2 EPU129      End of subsequent processing... "20071030073925"
    3 ETP000
    3 ETP000 **************************************************
    3 ETP000
    2 EPU115XReport "AGR_XPRA_REGENERATE_SAP_NEW" started: "20071030073925"
    1AETR012XProgram terminated (job: "RDDEXECL", no.: "07392501")
    1AEPU320 See job log"RDDEXECL""07392501""WT3"
    1 ETP162 EXECUTION OF REPORTS AFTER PUT
    1 ETP110 end date and time   : "20071030073939"
    1 ETP111 exit code           : "12"
    1 ETP199 ######################################
    1 ETP199X######################################
    1 ETP162 EXECUTION OF REPORTS AFTER PUT
    1 ETP101 transport order     : "SAPK700XD1"
    1 ETP102 system              : "WT3"
    1 ETP108 tp path             : "J:\usr\sap\WT3\SYS\exe\run\tp.exe"
    1 ETP109 version and release : "372.04.04" "700"
    1 ETP198
    2 EPU126XPost-import methods for change/transport request: "SAPK700XD1"
    4 EPU111    on the application server: "CPAFISWN"
    2 EPU131 No objects requiring post-import methods exist
    2 EPU127 Post-import methods of change/transport request "SAPK700XD1" completed
    2 EPU128      Start of subsequent processing ... "20071030080958"
    2 EPU129      End of subsequent processing... "20071030080958"
    3 ETP000
    3 ETP000 **************************************************
    3 ETP000
    2 EPU115XReport "AGR_XPRA_REGENERATE_SAP_NEW" started: "20071030080958"
    1AETR012XProgram terminated (job: "RDDEXECL", no.: "08095701")
    1AEPU320 See job log"RDDEXECL""08095701""WT3"
    1 ETP162 EXECUTION OF REPORTS AFTER PUT
    1 ETP110 end date and time   : "20071030081012"
    1 ETP111 exit code           : "12"
    1 ETP199 ######################################
    4 EPU202XEND OF SECTION BEING ANALYZED

  • Unable to send keystrokes and Mouse strokes in during WinPE phase with iDRAC7

    Primary Site running SCCM 2012 R2
    Unable to send keystrokes and Mouse strokes in during WinPE phase. The system is awaiting response "password" on Task Sequence step however the machine won't accept keyboard and mouse inputs. This happens with iDRAC7 Version1.0.
    Trying to image Dell servers with SCCM 2012 R2. The desktops work fine and able to image.

    Download and install iDRAC7 firmware to revision 1.57.57 or later.

  • When I try to install the latest version (10.5) of iTunes, the following message appears: "There was a problem with this Windows Installer package. A program running during installation is terminated unexpectedly." Is there somebody who can help me?thanks

    When I try to install the latest version (10.5) of iTunes, the following message appears: "There was a problem with this Windows Installer package. A program running during installation is terminated unexpectedly." Is there somebody who can help me?thanks

    I used this site and it fixed my problems. Hoping it will help with yours too
    http://support.microsoft.com/mats/Program_Install_and_Uninstall

  • Execution of programs after import (XPRA) error during transports

    Hi Experts
    I am applying the support stack level from 18 to 19. On applying the ABAP support pack i am getting the error.  (Ehp1- support pack)
       Execution of programs after import (XPRA)
       Transport request   : SAPKNA7013
       System              : RIS
       tp path             : tp
       Version and release: 372.04.40 701
       Post-import methods for change/transport request: SAPKNA7013
          on the application server: mel-srv-sap1
       Post-import method ENHS_AFTER_IMPORT started for ENHS L, date and time: 20090820182438
       Post-processing for ENHS /SAPCND/CONFIGURATION was already performed successfully earlier
       Post-processing for ENHS /SAPCND/GEN_AFTER_IMPORT was already performed successfully earlier
       Post-import method ENHS_AFTER_IMPORT completed for ENHS L, date and time: 20090820182438
       Post-import method ENHO_AFTER_IMPORT started for ENHO L, date and time: 20090820182438
       Post-processing for ENHO PRT_CONFIGURATION_EXIT was already performed successfully earlier
       Post-processing for ENHO REF_AFTER_IMPORT_EXT was already performed successfully earlier
       Post-processing for ENHO REF_CONFIGURATION_EXIT was already performed successfully earlier
       Post-processing for ENHO TTE_CONFIGURATION_EXIT was already performed successfully earlier
       Post-import method ENHO_AFTER_IMPORT completed for ENHO L, date and time: 20090820182438
       Post-import method /SAPCND/TRN_AFTER_IMPORT_OW started for CTAP L, date and time: 20090820182438
       Transport: Execution of method /SAPCND/TRN_AFTER_IMPORT_OW
       Mass activation off
       Transport: Execution of method /SAPCND/TRN_AFTER_IMPORT_O_OW
       End of processing of condition tables for order SAPKNA7013, time 18:24:38
    Program terminated (job: RDDEXECL, no.: 18243800)
       See job log
    Execution of programs after import (XPRA)
    End date and time : 20090820182453
    Ended with return code:  ===> 12 <===
    When i click on the job log i get the following details:
    Job log overview for job:    RDDEXECL / 18245300
    Date       Time     Message text
    20.08.2009 18:24:53 Job started
    20.08.2009 18:24:53 Step 001 started (program RDDEXECL, variant , user ID DDIC)
    20.08.2009 18:24:53 All DB buffers of application server mel-srv-sap1 were synchronized
    20.08.2009 18:24:53 ABAP/4 processor: SYNTAX_ERROR
    20.08.2009 18:24:53 Job cancelled
    Please help me to resolve the issue. Thanks in advance.
    Thanks & Regards

    Hello Folks,
                       Thank you all for your help. I apologize for the delay. Apparently SAP had a few SAP notes to suggest for my issue and once the notes were implemented, the problem got resolved. Here are the notes for your reference:
    1114409
    1113718
    1059837
    1055217
    Regards,
    Prashant

  • G580 Upgrade to Windows 10 failed in the SAFE_OS phase with an error during BOOT operation

    0xC1900101-0x20017 I could not successfully upgrade from windows update, nor from the straight download site.   The installation failed in the SAFE_OS phase with an error during BOOT operation.  I see w10 bios updates for other models.  Has anyone been successful in upgrading to W10 from W8?

    2015-07-31 21:36:19, Error CDiagnosticsHelper:etSQMDatapoint: Attempting to set a datapoint in an invalid SQM session
    2015-07-31 21:36:19, Error CDiagnosticsHelper:etSQMDatapoint: Attempting to set a datapoint in an invalid SQM session
    2015-07-31 21:36:21, Error MOUPG CDlpActionImpl<class CDlpErrorImpl<class CDlpObjectInternalImpl<class CUnknownImpl<class IMoSetupDlpAction> > > >:uspend(1066): Result = 0xC18001042015-07-31 21:36:21, Error MOUPG CSetupManager::ExecuteInstallMode(656): Result = 0x800705BB
    2015-07-31 21:36:21, Error MOUPG CSetupManager::ExecuteDownlevelMode(376): Result = 0x800705BB
    2015-07-31 21:36:21, Error MOUPG CSetupManager::Execute(222): Result = 0x800705BB
    2015-07-31 21:36:21, Error MOUPG CSetupHost::Execute(370): Result = 0x800705BB
    2015-07-31 21:36:21, Error MOUPG CDlpManager::AsyncSerializeDisable(471): Result = 0x80070216
    2015-07-31 21:36:36, Error CallPidGenX: PidGenX function failed on this product key. (hr = 0x8a010101)
    2015-07-31 21:36:40, Error CallPidGenX: PidGenX function failed on this product key. (hr = 0x8a010101)
    2015-07-31 21:37:02, Error CDiagnosticsHelper:etSQMDatapoint: Attempting to set a datapoint in an invalid SQM session
    2015-07-31 21:37:03, Error CDiagnosticsHelper:etSQMDatapoint: Attempting to set a datapoint in an invalid SQM session
    2015-07-31 21:37:04, Error CDiagnosticsHelper:etDeferredSQMDatapoint: Attempting to set a deferred SQM datapoint in an invalid SQM session[gle=0x000000b7]
    2015-07-31 21:37:04, Error CDiagnosticsHelper:etDeferredSQMDatapoint: Attempting to set a deferred SQM datapoint in an invalid SQM session[gle=0x000000b7]
    2015-07-31 21:37:11, Error CDiagnosticsHelper:etSQMDatapoint: Attempting to set a datapoint in an invalid SQM session
    2015-07-31 21:39:15, Error CDiagnosticsHelper:etSQMDatapoint: Attempting to set a datapoint in an invalid SQM session
    2015-07-31 21:39:18, Error CDiagnosticsHelper:etDeferredSQMDatapoint: Attempting to set a deferred SQM datapoint in an invalid SQM session[gle=0x000000b7]

  • The import was stopped, an error occurred during the phase DDIC_ACTIVATION

    Dear all,
    When I import the SAP_BASIS support package SAPKB70019 , it appears the error as below :
    The import was stopped, since an error occurred during the phase
    DDIC_ACTIVATION, which the Support Package Manager is unable to resolve
    without your input.
    After you have corrected the cause of the error, continue with the
    import by choosing Support Package -> Import queue from the initial
    screen of the Support Package Manager.
    The following details help you to analyze the problem:
         -   Error in phase: DDIC_ACTIVATION
         -   Reason for error: TP_STEP_FAILURE
         -   Return code: 0008
         -   Error message: OCS Package SAPKB70019, tp step A, return code
             0008
    Notes on phase DDIC_ACTIVATION
    In this phase the imported Dictionary objects are activated. This phase
    can terminate due to the following reasons:
    o   TP_INTERFACE_FAILURE: The tp interface could not be called.
    o   TP_FAILURE: The program tp could not be executed. For more
         information, see the SLOG or ALOG log file.
    o   TP_STEP_FAILURE: The tp step DDIC activation could not be performed
         successfully. To see the cause of the error in the activation log,
         choose  Goto -> Log -> Queue.
         If you import two or more Support Packages in one queue, and you do
         not activate them in the correct sequence, activation errors may
         occur. In this case, the activation errors disappear when you repeat
         the activation run. To do this, choose Support Package -> Import
         Support Package Queue.
        A prerequisite of the Support Package Manager is that the Change and
        Transport System (CTS) is configured correctly. For more detailed
        information, read the online documentation available from Help -> SAP
        Library -> mySAP Technology Components -> SAP Web Application Server ->
        Change and Transport System .
        A list of the most important SAP Notes for Online Correction Support
        (OCS) is available in SAP Note 97620, which is updated regularly.
    I have used se11 to avtive the domain SEFS_CRAWL_ALGORITHM , but the error still exist.
    Hope anyone can help. Thanks!
    B.R
    Michael

    P762713 wrote:>
    > Hi ,
    >
    >     This is general issue now a days occuring in Support Packs .The only solution for this issue is to delete structure ::
    >
    > these were the structure deleted from system afterwards patches were installed successfully.
    >
    > /1PYXXFO/SAP_PAYSLIP_____L0001
    > /1PYXXFO/SAP_PAYSLIP_____T0001
    > /1PYXXFO/SAP_PAYSLIP
    >
    > /1PYXXFO/SAP_PAYSLIP_____L0020
    > /1PYXXFO/SAP_PAYSLIP_____T0020
    >
    > You can do this via Tcode se11 .give these info in data type & in turn you have to delete 1PYXXFO/SAP_PAYSLIP also.This has solved my issue & after this support pack went fine.
    >
    > Thanks..
    > Mohit
    >
    > Edited by: mohit gupta on Sep 23, 2009 9:15 AM
    Hi, mohit
          I have tried to use the t-code se11 to delete the structures, but the system telled me that they are all not exist .
    A part of the queue log as below:
       Field name KEY is reserved (Do not use structure as include in DB table)
       Field name PRIOR is reserved (Do not use structure as include in DB table)
       Field KEY: Component type or domain used not active or does not exist
       Exactly one field SPRAS of type LANG: Selection as text language possible
      Nametab for table /1PYXXFO/SAP_PAYSLIP_____L0001 cannot be generated
       Enhancement category for table missing
       Enhancement category for include or subtype missing
       Field name KEY is reserved (Do not use structure as include in DB table)
       Field name PRIOR is reserved (Do not use structure as include in DB table)
       Field KEY: Component type or domain used not active or does not exist
       Nametab for table /1PYXXFO/SAP_PAYSLIP_____L0020 cannot be generated
       Enhancement category for table missing
       Enhancement category for include or subtype missing
       Field name KEY is reserved (Do not use structure as include in DB table)
       Field name PRIOR is reserved (Do not use structure as include in DB table)
       Exactly one field SPRAS of type LANG: Selection as text language possible
       Enhancement category for table missing
    who can help me ?
    thank you very much
    BR.
    Michael
    Edited by: Michael Hong on Sep 23, 2009 12:36 PM

  • SWO_OBJTYPE_AFTER_IMPORT error in XPRA phase.

    Hi All,
    getting below error while applying the abap patch SAPKA71101 in XPRA Phase.
       Post-import method SWO_OBJTYPE_AFTER_IMPORT started for SOBJ L, date and time: 20100728183538
       Object type 'BUS7030' generated successfully
       Object type 'EMMAJOB' could not be generated
       Function module 'BAPI_EMMA_JOB_JOBS_SELECT' is not defined
       Function module 'BAPI_EMMA_JOB_CASES_CREATE' is not defined
       Function module 'BAPI_EMMA_JOB_CASES_GET' is not defined
       Function module 'BAPI_EMMA_JOB_DELETE' is not defined
       Function module 'BAPI_EMMA_JOB_MESSAGES_GET' is not defined
       Function module 'BAPI_EMMA_JOB_INTERVALS_GET' is not defined
       Field BAPI_EMMA_JOB-BUSINESS_PROCESS_CODE is not defined in the Data Dictionary
       Field BAPI_EMMA_JOB-BUSINESS_PROCESS_AREA is not defined in the Data Dictionary
       Field BAPI_EMMA_JOB-EXTERNAL_JOB_NUMBER is not defined in the Data Dictionary
       Field BAPI_EMMA_JOB-TRANSACTION is not defined in the Data Dictionary
       Field BAPI_EMMA_JOB-DATE is not defined in the Data Dictionary
       Field BAPI_EMMA_JOB-TIME is not defined in the Data Dictionary
       Field BAPI_EMMA_JOB-USER is not defined in the Data Dictionary
       Field BAPI_EMMA_JOB-FIELDNAME is not defined in the Data Dictionary
       Field BAPI_EMMA_JOB-FIELDNAME is not defined in the Data Dictionary
       Field BAPI_EMMA_JOB-FIELDNAME is not defined in the Data Dictionary
       Errors occurred during post-handling SWO_OBJTYPE_AFTER_IMPORT for SOBJ L
       SWO_OBJTYPE_AFTER_IMPORT belongs to package SWO
       The errors affect the following components:
          BC-DWB-TOO-BOB (Business Object Builder)
       Post-import method SWO_OBJTYPE_AFTER_IMPORT completed for SOBJ L, date and time: 20100728183538
    please guide me on how to proceed further.

    Hi Draviya,
    Same issue I have faced already in patching SAP CE 711 and I made a mistake that I was applying the SP one by one I mean first I have finished Basis and then I started ABAP, the solution for the same is in ABAP patch 3 I guess (till I remember), we were not able to solve it with the following steps given in SAPnote 415682
    The error is not that serious that the upgrade needs to be halted. It is sufficient to perform an error analysis once the upgrade is complete. For each object type with errors, you can proceed as follows:
    Start transaction SWO1.
    Enter the name of the object type.
    Choose 'Generate'.
    If you are able to generate the object type, you can ignore the error in the transport log.
    If you are unable to generate the object type, choose 'Display'. Check the status of the object type. To do this, choose 'Basic data'. If the object type has the status 'Modelled' (third field), you can ignore the error in the transport log. The reason is that modelled object types have no effect on the running system. The generation of these object types will be enhanced in Release 6.10.
    If the object type does not have the status 'Modelled', choose 'Check'.
    Analyze the error messages.
    If the error was caused by a dependency on a customer object type (object type Z, Y), correct the customer object type.
    We just took our last successfull backup and restored it and then I applied the patches in whole Stack for ABAP (all components) and it worked ...
    All the best !

  • SUM issue with XSS components during maintenance on NDWI controlled landscape

    Hello,
    This is our first time using SUM/MOpz for a release upgrade procedure as the last JSPM update disabled the launch program.
    During our test upgrade of our Enterprise Portal HUB landscape (source NW 7.02 -> target NW 7.4) with EHP5 for ERP 6.0 - XSS Self Services for backend ERP system installed. I've encountered an issue with SUM in the Configuration stage - Target Release Components screen. the only 5 objects SUM cannot handle automatically are the XSS Self Services target release components:
    SAPPCUI_GP         633
    SAP_ESS               633
    SAP_ESS_LGP     633
    SAP_MSS               630
    UTXSSLGP             633
    The only option I have is to scan inbox to rebuild the component list. I'm assuming, since these components are being modified by us and delivered/deployed thru NWDI track, their source location on the system is now the track name instead of the SAP delivered MAIN_ERP53VAL_C. Which means that SUM is expecting updated modified SCAs from NWDI for new 633 versions in the download directory before proceeding to next phase. However, in NWDI landscape configurator for this track, I have checked the option to mark system in NWDI control and verified SUM recognizes the system as NWDI controlled.
    I'm struggling to understand the where the disconnect is between SUM and NWDI for theses components as I thought that SUM is supposed to ignore the DEV NWDI developed and wait for updates modified SCAs only in QA and PROD. Does anyone else have experience with this process to help me?
    Regards,
    Paul

    Hi Paul,
    We are facing the same issue although we can see in the process Overview of SUM that the system is not ticked as under NWDI Control.
    But we are facing problem only for SAP ESS and SAP MSS not other components. Other three components are coming up fine and ready for deployment. This is due to the issue that only these components are identified in the BUILD COMPONENT LIST UPGRADE step as modified.
    Detailed checking of the logs led us to errors identical to the KBA 2034886 - Error: Dialog eliminator ConfirmComponentsDialogEliminator does not allow to omit dialog ConfirmComponents
    The system should get picked as under NWDI control and following all steps of the upgrade for NWDI driven system landscapes
    Thanks and Regards,
    Karan Shah
    Message was edited by: Karan Shah

  • Error occurred during the phase IMPORT_PROPER

    Hi All,
    We are currently installing Add-on ST-PI Rel.2008_1_620 SAPKITLRBA, and the corresponding 3 support packages SAPKITLRB1 to SAPKITLRB3, in one of the quality systems. However, an error is encountered during the installation which is as follows:
    The installation was stopped, since an error occurred during the phase
    IMPORT_PROPER, which the Add-On Installation Tool is unable to resolve
    without your input.
    After you have corrected the cause of the error, continue with the
    import by choosing Continue in the queue display.
    The following details help you to analyze the problem:
        -   Error in phase: IMPORT_PROPER
        -   Reason for error: TP_BUFFER_INCONSISTENCY
        -   Return code: 0008
        -   Error message: Pkgs. in queue don"t exist in the tp buffer (e.g.
            SAPKITLRBA)
    Also, below is the SLOG of the system:
    ERROR SAPKITLRBA ST6 I 0016 20110602203832 STPIUSER INUP
    cpafisr5 20110602203531
    STOP MAIN IMPORT ST6 I 20110602203833 INUP
    cpafisr5 20110602203531
    ERROR: stopping on error 16 during MAIN IMPORT
    STOP imp all ST6 0016 20110602203833 INUP
    cpafisr5 20110602203531
    START MAIN IMPORT ST6 I 20110602203943 INUP
    cpafisr5 20110602203943
    START TRANSMIT BUFFER ENTR ST6 g 20110602204020 INUP
    cpafist0
    STOP TRANSMIT BUFFER ENTR ST6 g 0000 20110602204020 INUP
    cpafist0
    START COMMIT BUFFER ENTRIE ST6 g 20110602204020 INUP
    cpafisk0
    HALT 20110602204020
    ERROR: tpsettainfo: Cofile /usr/sap/trans/cofiles/KMARK.SYN does not
    exist!
    ERROR: EXIT(16) -> process ID is: 10932
    WARNING: TA SAPKITLRB1 not found via index, reading whole buffer
    The same add-on and support packages we successfully installed in its respective developement system and in other systems as well.  However, request you all to kindly assist in resolving the error.
    Thanks in advance.
    Regards,
    Indraneel Upponi

    ERROR: tpsettainfo: Cofile /usr/sap/trans/cofiles/KMARK.SYN does not exist!
    Does this file exist on this location ? It seems buffer insoncistency from the error message.
    Regards,
    Subhash

  • SAP_APPL(SAPKH60012)-eroor during Import_Proper phase

    Hello All,
    I has an ECC 6.0 sytem and was applying SAPKH60012-SAPKH60013 together.
    During the TEST-IMPORT i got the following error for both the support package
    "R3TRMSAGME was repaired in this system".
    I had ignored the error during TEST_IMPORT.
    But now i am stuck with this in my IMPORT_PROPER phase.
    Please suggest, I did not find any SAP Notes for this error.
    Also the main error
    Error in phase :IMPORT_PROPER
    Reason of the ERROR:TP_STEP_FAILUER
    Return Code: 0008
    Error Message :OCS Package SAPKH60012 , tp step "I",return Code 0008
    Also i found in the log this error
    Start import LIMUDOCUNAME818
    R3TRMSAGME was repaired in this system
    LIMUDOCUNAME818
    Regards
    Anthony
    Edited by: Anthony D'souza on Mar 6, 2009 11:11 PM

    Hi,
    For this error "R3TRMSAGME was repaired in this system". You need to reset the repair fag by using tcode se03.
    Also this error "TP_STEP_FAILUER" says that  tp failed. If you have upgraded kernel level before sp upgrade then check current tp's version. If you have not upgraed tp.exe  then download latest tp.exe & put it in your kernel path & restart the sp upgrade.
    Please check ksap note for known problem in Support packs for your SAP release
    Also check below threads. It will help you
    Re: spam error in IMPORT_PORPER
    tp
    Thanks,
    Sushil

  • EBS 12.1.1 failed during autoconfig phase of upgradation

    Hi,
    I'm in process of upgradation of ebs 11.5.9 to r12.1.1 on solaris 9. database is 9.2.0.8.
    during the upgradation phase autoconfig is failed with errors.
    ADX Database Utility
    getConnectionUsingAppsJDBCConnector() -->
    APPS_JDBC_URL='jdbc:oracle:thin:@(DESCRIPTION=(LOAD_BALANCE=YES)(FAILOVER=YES)(ADDRESS_LIST=(ADDRESS=(PROTOCOL=tcp)(HOST=scciapps)(PORT=1571)))(CONNECT_DATA=(SID=test)))'
    Trying to connect using APPS_JDBC_URL
    Exception occurred: java.sql.SQLException: ORA-01017: invalid username/password; logon denied
    Trying to get connection using SID based connect descriptor
    getConnection() -->
    sDbHost : scciapps
    sDbDomain : sharjah.gov.ae
    sDbPort : 1571
    sDbSid : test
    sDbUser : APPS
    Trying to connect using SID...
    getConnectionUsingSID() -->
    JDBC URL: jdbc:oracle:thin:@scciapps.sharjah.gov.ae:1571:test
    Exception occurred: java.sql.SQLException: ORA-01017: invalid username/password; logon denied
    Trying to connect using SID as ServiceName
    getConnectionUsingServiceName() -->
    JDBC URL: jdbc:oracle:thin:@(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=scciapps.sharjah.gov.ae)(PORT=1571))(CONNECT_DATA=(SERVICE_NAME=test)))
    Exception occurred: java.sql.SQLException: ORA-01017: invalid username/password; logon denied
    Trying to connect using SID as ServiceName.DomainName
    getConnectionUsingServiceName() -->
    JDBC URL: jdbc:oracle:thin:@(DESCRIPTION=(ADDRESS=(PROTOCOL=tcp)(HOST=scciapps.sharjah.gov.ae)(PORT=1571))(CONNECT_DATA=(SERVICE_NAME=test.sharjah.gov.ae)))
    Exception occurred: java.sql.SQLException: Listener refused the connection with the following error:
    ORA-12514, TNS:listener does not currently know of service requested in connect descriptor
    Connection could not be obtained; returning null
    where i use the same username and password of apps of existing database/application.
    anyone have idea about that...?
    Thanks,

    yes, all the values are correct.
    As I've given existing database port number, sid and server info of 11.5.9.
    below are some information from installation log.
    Oracle Applications Rapid Install Wizard Install log
    >> Using Rapid Wizard Version : 12.1.1.9
    >> Install session started : Mon Jan 31 13:35:43 GST 2011
    >> Rapid Wizard source location : /oracle/StageR12/startCD/Disk1/rapidwiz
    >> Command Line arguments for this run :
    =================================================================
    Install Session Information
    Host Name : scciapps.sharjah.gov.ae
    Host Operating System : Solaris SPARC
    User running Install : appltest
    =================================================================
    InstUpgPanel
         User action : Upgrade Oracle Applications file System
         Install type : Upgrade
    PortPanel
              Selected port pool:
                   Database Port : 1571
    ADX Database Utility
    getConnectionUsingAppsJDBCConnector() -->
    APPS_JDBC_URL='null'
    Trying to get connection using SID based connect descriptor
    getConnection() -->
    sDbHost : scciapps
    sDbDomain : sharjah.gov.ae
    sDbPort : 1571
    sDbSid : test
    sDbUser : APPS
    Trying to connect using SID...
    getConnectionUsingSID() -->
    JDBC URL: jdbc:oracle:thin:@scciapps.sharjah.gov.ae:1571:test
    Connection obtained
    but it fails during autoconfig phase.
    Thanks,

  • SPAM update during prepare phase

    Hi all,
    I am doing an upgrade from 40B to 4.7 and finished my preparation before Prepare phase.
    Initialization phase is also completed successfully during prepare phase.
    Unfortunately i forgot to upgrade my SPAM to the latest and now i am unable to continue with Prepare
    phase because it is asking me to upgrade SPAm.
    And when i am performing SPAM update , it is giving warning and unable to continue further
    as " Caution: Upgrade is still running. Patches may be lost.
    Message no. TN 153 "
    Please let me know the way out , as i have also restarted my SAP and database but same warning still appear.
    Regards,
    RR

    I suggest to cancel PREPARE, apply SPAM update and after that start PREPARE from scratch.
    Cheers

  • CHARM during implementation phase possible?

    Hi Gurus
    I would like to know the constraints of implementing CHARM during the implementation phase of the project.
    I am aware that, charm functionality is best suitable for post go live change tracking tool and it is not recommended during the implementation phase. But I would like to know the reasons behind not recommending CHARM during implementation phase.
    Please provide your valuable inputs.
    Thanks.

    Hi,
    The following may not be the detailed reasons behind not recommending CHARM during implementation phase.
    Implementation Project u2013 A project to implement SAP solution as a part of regular implementation or a roll out. This is considered for single-site implementations. Predefined scenarios can be selected from template projects.
    Change Request Management (ChaRM) is an SAP tool to manage all those activities performed between the design of a change and the final promotion to a productive system
    ChaRM can:
    o Improve efficiency and transparency of change management processes
    o Minimize business disruptions
    o Store documentation of implemented changes
    o Track and monitor changes
    o Improve audit process
    o Reduce risk of correction and project failures
    ChaRM benefits are:
    o Allow the Organization to control and manage changes in the SAP system effectively
    o Guarantee that any change to the SAP system follows the standard process flow and procedures with mandatory controls and documented steps
    o Effectively adheres to requirements for SOX compliance
    Please also go through [this|http://www.sap.com/community/webcast/2009_06_worldtour_fr/2009_06_Worldtour_SOL1_SAP_fr.pdf] document.
    Hope it helps.
    Cheers,
    Satish

Maybe you are looking for