Program terminated with dump SYNTAX_ERROR

Hi
When updating Solution Manager patches, program terminated and went on to dump.
Now I am not able to login into system with GUI to do any other thing.
It also showing "Status LIVE of the User interface SAPLSRABAX_EXC missing". With this message I got the following link.
SYNTAX_ERROR when executing any transaction
But, I am not able to login into the system now.
I need to do at OS level something to overcome this problem.
Can any one faced same problem.... Plz help me.
Dump:
Runtime Errors         SYNTAX_ERROR
Date and Time          14.10.2008 19:11:44
Short text
     Syntax error in program "SAPLSUNI ".
What happened?
     Error in the ABAP Application Program
     The current ABAP program "SAPMSPAM" had to be terminated because it has
     come across a statement that unfortunately cannot be executed.
     The following syntax error occurred in program "SAPLSUNI " in include
      "CL_ABSTRACT_ENH_TOOL==========CU " in
     line 24:
     "The type "CX_ENH_SPOT_IS_INTERNAL" is unknown."
     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 "SAPMSPAM" 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 SAPLSUNI :
     "The type "CX_ENH_SPOT_IS_INTERNAL" is unknown."
Regards
Jayakar

Hi @all, Iu2019ve had the same error but I fixed it without restore as follows:
Error Messages:
before you login to SAP you can see in sap logon:
Status 0020 of the user interface SAPMSYST missing
after login in status bar:
Status LIVE of the user interface SAPLSRABAX_EXC missing
In SLOG1234.SID:
WARNING:       Background job RDDIMPDP could not be started or terminated abnormally.
      Please check that the R/3 system is running.
      Please check the system. Use transactions SM21, SM37, SM50.
WARNING:       (This warning is harmless if no further warnings follow.)
WARNING: System SID. Warning.        20081211092715 :
Please find and solve the problem, which was the cause for it. In my case it was an ORA dead lock.
You can find the transport (support package or add on installation transport file) with errors in support package queue as follows:
hostname:sidadm 63> tp showbuffer SID tag=spam pf=/usr/sap/trans/bin/TP_DOMAIN_SID.PFL
Or you can find return codes with grep; for example:
hostname:sidadm 54> tp showbuffer SID tag=spam pf=/usr/sap/trans/bin/TP_DOMAIN_SID.PFL | grep 0012
SIDK001215          .100|SID_P00003          | |will not be imported because it is not tagged.
SAPK-701DRINSAPBASIS.ALL|                    | |0012 |0004 |0004 |0012 |      |      |      |      |      |      |     |D
Kill all tp prozesses and clean tables TRBAT and TRJOB in DB:
hostname:sidadm 63> ps -ef | grep tp
ntp       4124     1  0 Jul12 ?        00:00:01 /usr/sbin/ntpd -p /var/lib/ntp/var/run/ntp/ntpd.pid -u ntp -i /var/lib/ntp
sidadm    6216 28099  0 Dec10 ?        00:00:05 /usr/sap/SID/DVEBMGS01/exe/tp hostname.domain.de hostname 55855300 IDX=1
hostname:sidadm 64> kill 6216
Import in command line the abordet transport in r3i mode:
hostname:sidadm 73> tp r3i SAPK-701DRINSAPBASIS SID pf=/usr/sap/trans/bin/TP_DOMAIN_T1D.PFL tag=spam -Dclientcascade=yes -Drepeatonerror=8
After finished import with RC = 0 or 4 you can normally login correctly to SAP system and restart the import in SPAM or SAINT again in last stopped phase.
Edited by: Rene Schulz on Dec 12, 2008 2:27 PM

Similar Messages

  • SM69-Can't exec external program ( External program terminated with ecode1)

    Hi All,
    Client requirement is to Move File from Presentation Server to Application Server.
    I am executing UNIX script on AIX OS via SM69.
    But I am getting the  following error:
    Can't exec external program (No such file or directory)
    External program terminated with exit code 1
    Also getting same error with FM-SXPG_COMMAND_EXECUTE .
    Below is the code..
    data: l_exitcode type btcxpgexit,
            l_parms type btcxpgpar,
            l_status type btcxpgstat.
    data: lt_protocol type standard table of btcxpm,
            l_protocol type btcxpm.
    concatenate 'C:\Venkat1\PARBIND.BMP'
                          'D:\Venkat2\PARBIND.BMP'
                          into l_parms
                          separated by space.
    * External command:
    * - Unix - mv
    call function 'SXPG_COMMAND_EXECUTE'
      exporting
        commandname                   = 'Z_MV'
        additional_parameters         = l_parms
      importing
        status                        = l_status
        exitcode                      = l_exitcode
      tables
        exec_protocol                 = lt_protocol
      exceptions
        no_permission                 = 1
        command_not_found             = 2
        parameters_too_long           = 3
        security_risk                 = 4
        wrong_check_call_interface    = 5
        program_start_error           = 6
        program_termination_error     = 7
        x_error                       = 8
        parameter_expected            = 9
        too_many_parameters           = 10
        illegal_command               = 11
        wrong_asynchronous_parameters = 12
        cant_enq_tbtco_entry          = 13
        jobcount_generation_error     = 14
        others                        = 15.
    if sy-subrc ne 0
    endif.
    Can any one guide what is the cause of error....
    Any help will be appreciated.
    Regards
    Arbind

    Hi Paul,
    Thanks.
    But still Basis Consultants are telling it is correct from there side.
    Is there any other way to move files from Presentaion Server to Application Server in Background Processing.
    I have used CL_GUI_FRONTEND_SERVICES=>FILE_COPY
    It is working fine in Foreground but in Background Proceesing, it is not working.
    Can u provide any solution ?
    Thanks
    Arbind

  • FUNCTION SXPG_COMMAND_EXECUTE External program terminated with exit code 2

    HI,
    I am using the below Function Module
    gv_ap = '/nfs/ficheiros/FicheiroExtraccaoSIF/outbox'
    CALL FUNCTION 'SXPG_COMMAND_EXECUTE'                 
          EXPORTING                                       
               commandname                   = 'Z_LS'     
               additional_parameters         = gv_ap      
          TABLES                                          
               exec_protocol                 = t_fich     
          EXCEPTIONS                                      
               no_permission                 = 1          
               command_not_found             = 2          
               parameters_too_long           = 3          
               security_risk                 = 4          
               wrong_check_call_interface    = 5          
               program_start_error           = 6          
               program_termination_error     = 7          
               x_error                       = 8          
               parameter_expected            = 9          
               too_many_parameters           = 10         
               illegal_command               = 11         
               wrong_asynchronous_parameters = 12         
               cant_enq_tbtco_entry          = 13         
               jobcount_generation_error     = 14         
               OTHERS                        = 15.        
    with this folder '/nfs/ficheiros/FicheiroExtraccaoSIF/outbox' return the error:
    /nfs/ficheiros/FicheiroExtraccaoSIF/outbox not found and
    External program terminated with exit code 2
    but if i map other directory the function return the files and folders that directory have.
    Anyone could help me.
    Thanks and Regards.
    Eduardo Paiva

    Hi,
    Yes i have read access to this directory and the command 'Z_LS' exists.
    Best Regards,
    Eduardo Paiva

  • Error Message: External program terminated with exit code 2

    Hi ALL
    We are doing REORG tablespace in DB13 and i am getting below error message. Please help us to resolve the issue.
    20100430     113234     DB6PM     000     Reorg_Tbspc:Command DB6CLP failed on server
    20100430 103959 DB6PM 000 Reorg_Tbspc:Exitcode:Error
    20100430 103959 DB6PM 000 Reorg_Tbspc:ERRORMESSAGE: An SQL error occured. Will print output of the command
    20100430 103959 DB6PM 000 Reorg_Tbspc:External program terminated with exit code 2
    20100430 103959 DB6PM 000 REASON=C call failed
    Regards
    K.Gunasekar
    Edited by: KGUNASEKAR on Apr 30, 2010 6:55 AM

    Exitcode 2, if returned from the OS, means "No such file or directory". Note that as of SAP kernel release 7, you usually do not have DB6CLP any more. Can you check if the executable is available in the SAP exe directory ?
    If running SAÜ kernel 700 or higher, I suggest to apply a recent SP level.
    Malte

  • Program terminated with exit code 84

    Hi All,
    We are facing a issue in Production.
    The scheduled jobs for today did not start today
    Using export execution command we have exported the jobs and on completion of the first job we call the second one using the below command in script      
    //Example
    exec('E:
    Program Files
    Business Objects
    BusinessObjects Data Services
    log
    JOB_STAGING_TO_ODS.bat','',1);
    As the schedule did not start the first job today we manually executed the first job , while calling the next job is sequence using the above command we received an error message as stated below
    Program terminated with exit code <84>.
    We have gone live with these jobs for few weeks now.
    It was running fine until today.
    we dont see a problem with the script.
    If this the problem with access revoked to execute a batch file or something of that sort?
    Request all your help in this regard.
    Thanks in advance

    Was this issue resolved for you?
    We are also facing a similar kind of issue..
    Job not executing when scheduled and not able to execute the job using exec command..
    When used print command on the exec, we received the same error message "not able to execute the job" with the same exit code 84..
    Can you please advice us on the same?
    Thanks in Advance!

  • Program termination with activation of the slideshow

    Helo
    Can somebody tell me, what happend, beause, whenevver i started the slideshow of iphoto 11 , the programm stopps, i have to start again, i can used all other functions, but not the slideshow. What can i do?

    Another test: Create a new account on the Mac and repeat the test. If it crashes there too then reinstall.
    To re-install iPhoto
    1. Put the iPhoto.app in the trash (Drag it from your Applications Folder to the trash)
    2a: On 10.5:  Go to HD/Library/Receipts and remove any pkg file there with iPhoto in the name.
    2b: On 10.6: Those receipts may be found as follows:  In the Finder use the Go menu and select Go To Folder. In the resulting window type
    /var/db/receipts/
    A Finder Window will open at that location and you can remove the iPhoto pkg files.
    3. Re-install.
    If you purchased an iLife Disk, then iPhoto is on it.
    If iPhoto was installed on your Mac when you go it then it’s on the System Restore disks that came with your Mac. Insert the first one and opt to ‘Install Bundled Applications Only.
    If you purchased it on the App Store you can find it in your Purchases List.
    Regards
    TD

  • BRCONNECT terminated with errors

    HI,
    Please help me in trouble shooting this problem
    Ext. prog.: BR280I Time stamp 2008-04-15 04.48.00
    Ext. prog.: BR848I Thread 2 terminated with return code 0
    Ext. prog.:
    Ext. prog.: BR280I Time stamp 2008-04-15 04.48.00
    Ext. prog.: BR848I Thread 3 terminated with return code -1
    Ext. prog.:
    Ext. prog.: BR280I Time stamp 2008-04-15 04.48.00
    Ext. prog.: BR848I Thread 4 terminated with return code -1
    Ext. prog.: BR280I Thread 1: time stamp 2008-04-15 04.48.58
    Ext. prog.: BR884I Statistics collected for table: SAPBP1.TST03, rows old/new: 1645/38415
    Ext. prog.:
    Ext. prog.: BR280I Time stamp 2008-04-15 04.48.59
    Ext. prog.: BR848I Thread 1 terminated with return code 0
    Ext. prog.:
    Ext. prog.: BR280I Time stamp 2008-04-15 04.48.59
    Ext. prog.: BR879I Statistics checked for 13452 tables
    Ext. prog.: BR878I Number of tables selected to collect statistics after checking: 317
    Ext. prog.: BR880I Statistics collected for 1374/13479 tables/indexes
    Ext. prog.:
    Ext. prog.: BR806I End of BRCONNECT processing: cdxrzenr.sta 2008-04-15 04.48.59
    Ext. prog.: BR280I Time stamp 2008-04-15 04.49.00
    Ext. prog.: BR804I BRCONNECT terminated with errors
    Ext. prog.: External program terminated with exit code 5
    External program was cancelled
    Job status was manually set to 'cancelled'
    Thanks,
    Sujith

    Hello Sujith,
    I am experiencing the same error.  It seems that when the BRCONNECT program detects a warning or error (ie. Tablespace_full) the job cancels.  The program actually finishes successfully, but if an error is detected, for some reason, the job feels the need to cancel.  I have not been able to find any info in OSS or the SDN forums.  I'm curious to learn if you have resolved this issue.  Again, I think the program finishes successfully, it's a matter of how the job handles the warning/error within the program.  Our system logs and job overview has been peppered with these errors for the last week or so.
    A couple options we've done to eliminate the errors is to change the threshold of the BRCONNECT warnings for Tablespace limits exceeded.  This is only a temporary fix.  I really think SAP needs to make a correction to resolve this.
    Let me know what you find out.  Thanks.
    Paul

  • Application triggered a termination with a short dump(Assessment error)

    Hi,
    I created one accessment cycle with couple of segments. While executing this assessment cycle one of the segment is erroring out and it's throwing a runtime error. I searched in OSS and didn't find the right one. I really appreciate your thoughts and answers.
    Short text                                                                                |
    The current application triggered a termination with a short dump.
    Error analysis
    Short text of error message:
    Error ERROR_BW_REFBZ
    Long text of error message:
    Diagnosis
    The following program error or handling error has occurred.
    Error information:
    ERROR_BW_REFBZ
    System Response
    |         Processing is terminated. 
    Thanks
    Br

    Thanks for your quick response Baranyai and we set transfer prices indicator at controlling area level and it's related to profit center valuation. How is going to impact on Assessment cycle and it doesn't appear while creating and executing assessment cycle. I may be wrong and really appreciate your help.
    Thanks
    Br

  • SAP CRM middleware problem (sysfail ) The current application has triggered a termination with short dump

    i'm having a proplem during  starting initial load although i'm using the best practice documents C71 and B09 and all the configration was done by them .... could any one help ??

    this is the first dump error for my RFCUSER on the ECC server
    Category               ABAP Programming Error
    Runtime Errors         MESSAGE_TYPE_X
    ABAP Program           SAPLCRMC
    Application Component  CA
    Date and Time          05.03.2014 17:50:47
    Short Text
         The current application has triggered a termination with a short dump.
    What happened?
         The current application program has detected a situation that should
         not occur. A termination with short dump has therefore been triggered
         by the key word MESSAGE (type X).
    What can you do?
         Note down which actions and inputs caused the error.
         To process the problem further, contact you SAP system
         administrator.
         Using Transaction ST22 for ABAP Dump Analysis, you can look
         at and manage termination messages, and you can also
    Error analysis
        Short text of the error message:
        See SAP Note 1498111
        Long text of the error message:
         Diagnosis
         System Response
         Procedure
             Refer to the SAP Note that was mentioned.
         Procedure for System Administration
        Technical information about the message:
        Message class....... C_
        Number.............. 330
        Variable 1.......... 1498111
        Variable 2..........
        Variable 3..........
        Variable 4.......... " "
    How to correct the error
        Probably the only way to eliminate the error is to correct the program.
        If the error occurs in a non-modfied SAP program, you might be able to
        find a solution in the SAP Notes system. If you have access to the SAP
        Notes system, check there first using the following keywords:
        "MESSAGE_TYPE_X"
        "SAPLCRMC" bzw. LCRMCF0C
        "CHECK_CRMATAB"
        If you cannot solve the problem yourself, please send the following
        information to SAP:
        1. This description of the problem (short dump)
        To do this, choose  System -> List -> Save -> Local File (unconverted)
        on the screen you are in now.
        2. A suitable system log
        To do this, call the system log in transaction SM21. Restrict the time
        interval to ten minutes before the short dump and five minutes after
        it. In the display, choose System -> List -> Save -> Local File
        (unconverted).
    3. If these are programs of your own, or modified SAP programs: Source
    code of these programs
    To do this, choose  More Utilities -> Upload/Download -> Download in
    the Editor.
    4. Details regarding the conditions under which the error occurred or
    which actions and input caused the error.
    thanks

  • How to troubleshoot runtime error (termination with short dump)

    hi all,
    i'm new comer on crm. and i got a problem when i accessed tx: segment builder (runtime error: termination with short dump).
    i've tried to troubleshoot this problem by set the java2 SDK GUI path on the client side.but it still didn't work.then i tried to activate the automation trace (just perform the procedure which wrote down on error analysis), but i confused when tried to read the trace file and still didn't get the point. FYI, i 'm using sap logon 710 and SAP crm 5.0.
    what i've should to do?
    should i have to re install my sap logon?
    i really need ur assistance!
    best regards,  
    agung

    Hi Agung,
    Please refer the following SAP Note for your information:
    <b>SAP Note: 990263</b>
    Best Regards,
    Johnny.
    Reward with points if it helps.

  • Will all of the CS4 programs work with Terminal Services?

    I think the title sums up my question...
    Will all of the CS4 programs work with Terminal Services?

    You should be able to solve that problem.
    MiFis have a default power setting on them that turns off the device after XX minutes of no use (As determined by the MiFi).  You can find and modify this setting in the MiFi Admin webpage.  It should be under the advanced area and can be configured to leave the MiFi on all the time.
    That being said, no MiFi model will behave very well as an always on home internet replacement device.  Dedicated home cable routers and modems will always perform better, they are designed for that scenario.  By comparison MiFis are designed to be light weight travel devices, they simply do not have the hardware necessary to be left online all day long with acceptable results.  MiFis are more appropriate as a backup, mobile or temporary internet solution.
    If you are looking for a home internet always on internet connection device you would be safer going with stronger hardware like a USB Modem+CradlePoint router, the VZW 4G LTE router or VZW HomeFusion.  Any of those devices are going to provide you with a better experience for your home than the MiFis without additional equiptment like boosters and antennas.  Some CradlePoint routers can be expensive but perform very well, the 4G LTE router has mixed review and the nice thing about HomeFusion is the special data plan and high powered equiptment.

  • DTP run Time Error : Dump: Internal session terminated with a runtime error

    Hi Experts,
    I'm facing a problem during loading data from PSA to DSO from DTP. It gives Dump: "Internal session terminated with a runtime error".
    When i went to PSA and see the no. of data packages, it is 1532.
    Could anybody please help me how to load the data.
    Thanks
    Ajay

    Thanks Srini!!
    the load is running for 15 min and then it is throwing dump without a single package extract.
    Ok...the same I'm also thinking to selective upload but can you please explain me how do i do that as it has only request in PSA.
    and it is a pricing data.
    Thanks
    Ajay

  • Program terminated error after entering sold to party no. in sales order

    hello friends,
                      can any help me, i was doing the topic of user exit for pre-defined sold to party using v45a0002 in cmod and i wrote a program for include 'if sy-uname= 'sapuser'.
    message e000(0) with ' you are not authorised to create so'
    endif
    while activating i got error msg 'The last statement is not complete (period missing)."  & i have saved inspite error
    after i tried create a order
    program terminated error after entering sold to party no. in sales order
    so i have deactivated the project created in cmod & deleted the project inspite i am getting the program terminated error
    i am sending total error plz reply quickly urgent friends
    Runtime Errors         SYNTAX_ERROR
    Date and Time          19.04.2008 17:51:58
    ShrtText
    Syntax error in program "SAPLXVVA ".
    What happened?
    Error in ABAP application program.
    The current ABAP program "SAPLVKMP" had to be terminated because one of the
    statements could not be executed.
    This is probably due to an error in the ABAP program.
    In program "SAPLXVVA ", the following syntax error occurred
    in the Include "ZXVVAU04 " in line 5:
    "The last statement is not complete (period missing)."
    Author and last person to change the Include are:
    Author "SAPUSER "
    Last changed by "SAPUSER "
    What can you do?
    Please eliminate the error by performing a syntax check
    (or an extended program check) on the program "SAPLXVVA ".
    You can also perform the syntax check from the ABAP/4 Editor.
    If the problem persists, proceed as follows:
    Print out the error message (using the "Print" function)
    and make a note of the actions and input that caused the
    error.
    To resolve the problem, contact your SAP system administrator.
    You can use transaction ST22 (ABAP Dump Analysis) to view and administer
    termination messages, especially those beyond their normal deletion
    date.
    is especially useful if you want to keep a particular message.
    Error analysis
    In program "SAPLXVVA ", the following syntax error occurred:
    "The last statement is not complete (period missing)."
    How to correct the error
    Probably the only way to eliminate the error is to correct the program.
    If you cannot solve the problem yourself and you wish to send
    an error message to SAP, include the following documents:
    1. A printout of the problem description (short dump)
    To obtain this, select in the current display "System->List->
    Save->Local File (unconverted)".
    2. A suitable printout of the system log
    To obtain this, call the system log through transaction SM21.
    Limit the time interval to 10 minutes before and 5 minutes
    after the short dump. In the display, then select the function
    "System->List->Save->Local File (unconverted)".
    3. If the programs are your own programs or modified SAP programs,
    supply the source code.
    To do this, select the Editor function "Further Utilities->
    Upload/Download->Download".
    4. Details regarding the conditions under which the error occurred
    or which actions and input led to the error.
    System environment
    SAP Release.............. "640"
    Application server....... "mtpl7"
    Network address.......... "192.100.10.1"
    Operating system......... "Windows NT"
    Release.................. "5.1"
    Hardware type............ "2x Intel 801586"
    Character length......... 8 Bits
    Pointer length........... 32 Bits
    Work process number...... 0
    Short dump setting....... "full"
    Database server.......... "MTPL7"
    Database type............ "ORACLE"
    Database name............ "ERP"
    Database owner........... "SAPERP"
    Character set............ "English_United State"
    SAP kernel............... "640"
    Created on............... "Nov 4 2004 23:26:03"
    Created in............... "NT 5.0 2195 Service Pack 4 x86 MS VC++ 13.10"
    Database version......... "OCI_920_SHARE "
    Patch level.............. "43"
    Patch text............... " "
    Supported environment....
    Database................. "ORACLE 8.1.7.., ORACLE 9.2.0.."
    SAP database version..... "640"
    Operating system......... "Windows NT 5.0, Windows NT 5.1, Windows NT 5.2"
    Memory usage.............
    Roll..................... 8112
    EM....................... 8362368
    Heap..................... 0
    Page..................... 122880
    MM Used.................. 4229224
    MM Free.................. 995472
    SAP Release.............. "640"
    User and Transaction
    Client.............. 800
    User................ "SAPUSER"
    Language key........ "E"
    Transaction......... "VA01 "
    Program............. "SAPLVKMP"
    Screen.............. "SAPMV45A 4701"
    Screen line......... 16
    Information on where terminated
    The termination occurred in the ABAP program "SAPLVKMP" in
    "SD_DETERMINE_KKBER".
    The main program was "SAPMV45A ".
    The termination occurred in line 0 of the source code of the (Include)
    program " "
    of the source code of program " " (when calling the editor 00).
    Contents of system fields
    Name
    Val.
    SY-SUBRC
    0
    SY-INDEX
    0
    SY-TABIX
    1
    SY-DBCNT
    1
    SY-FDPOS
    4
    SY-LSIND
    0
    SY-PAGNO
    1
    SY-LINNO
    8
    SY-COLNO
    1
    SY-PFKEY
    U
    SY-UCOMM
    SY-TITLE
    Create Standard Order kb: Overview
    SY-MSGTY
    E
    SY-MSGID
    VP
    SY-MSGNO
    106
    SY-MSGV1
    BUS2032
    SY-MSGV2
    SY-MSGV3
    SY-MSGV4
    Active Calls/Events
    No.   Ty.          Program                             Include                             Line
    Name
    13 FUNCTION     SAPLVKMP                            LVKMPU41                               91
    SD_DETERMINE_KKBER
    12 FUNCTION     SAPLVKMP                            LVKMPU41                               91
    SD_DETERMINE_KKBER
    11 FUNCTION     SAPLV09B                            LV09BU30                              148
    SD_PCHECK_PAYER_IN_CREDITAREA
    10 FUNCTION     SAPLV09B                            LV09BU26                              296
    SD_PARTNER_EXECUTE_CHECKS
    9 FUNCTION     SAPLV09B                            LV09BU25                               57
    SD_PARTNER_CHECK_BEFORE
    8 FUNCTION     SAPLV09A                            LV09AU26                              342
    SD_PARTNER_SINGLE_MODIFY
    7 FORM         SAPLV09A                            LV09AF39                              176
    PARTNER_SELECTION
    6 FUNCTION     SAPLV09A                            LV09AU29                              820
    SD_PARTNER_DETERMINATION
    5 FUNCTION     SAPLV05E                            LV05EU01                              654
    VIEW_KUAGV
    4 FORM         SAPMV45A                            MV45AF0K_KUAGV_SELECT                  40
    KUAGV_SELECT
    3 FORM         SAPMV45A                            MV45AF0A_AUFTRAGGEBER_PRUEFEN          46
    AUFTRAGGEBER_PRUEFEN
    2 FORM         SAPMV45A                            MV45AF0K_KUNDEN_PRUEFEN               454
    KUNDEN_PRUEFEN
    1 MODULE (PAI) SAPMV45A                            MV45AI0K_KUNDEN_PRUEFEN                15
    KUNDEN_PRUEFEN
    Chosen variables
    Name
    Val.
    No.      13 Ty.          FUNCTION
    Name  SD_DETERMINE_KKBER
    I_KKBER_KNVV
    2222
    0000
    I_KKBER_T001
    8888
    3333
    8888
    I_KKBER_TVTA
    2222
    0000
    I_KUNNR
    7000000000
    3333333333
    7000000000
    I_SPART
    SM
    54
    3D
    I_VKORG
    T000
    5333
    4000
    I_VTWEG
    S4
    53
    34
    XVBAK
    00000000000000            000000000000000000000000         00000000
    2222222222222333333333333332222222222223333333333333333333333332222222223333333322222222222222
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    E_KNVV_FLG
    2
    0
    RC
    0
    0000
    0000
    XVBKD[]
    Table[initial]
    XVBPA[]
    Table IT_1743[2x542]
    FUNCTION=SD_PCHECK_PAYER_IN_CREDITAREADATA=LVT_CREDIT_XVBPA
    Table reference: 275
    TABH+  0(20) = 70A2883B388BC43B0000000013010000CF060000
    TABH+ 20(20) = 020000001E020000FFFFFFFF04910100D82F0000
    TABH+ 40( 8) = 02000000C1248400
    store        = 0x70A2883B
    ext1         = 0x388BC43B
    shmId        = 0     (0x00000000)
    id           = 275   (0x13010000)
    label        = 1743  (0xCF060000)
    fill         = 2     (0x02000000)
    leng         = 542   (0x1E020000)
    loop         = -1    (0xFFFFFFFF)
    xtyp         = TYPE#000209
    occu         = 2     (0x02000000)
    access       = 1     (ItAccessStandard)
    idxKind      = 0     (ItIndexNone)
    uniKind      = 2     (ItUniqueNon)
    keyKind      = 1     (default)
    cmpMode      = 2     (cmpSingleMcmpR)
    occu0        = 1
    collHash     = 0
    groupCntl    = 0
    rfc          = 0
    unShareable  = 0
    mightBeShared = 1
    sharedWithShmTab = 0
    isShmLockId  = 0
    gcKind       = 0
    isUsed       = 1
    >>>>> Shareable Table Header Data <<<<<
    tabi         = 0x28C1883B
    pghook       = 0x00000000
    idxPtr       = 0x00000000
    refCount     = 1     (0x01000000)
    tstRefCount  = 0     (0x00000000)
    lineAdmin    = 2     (0x02000000)
    lineAlloc    = 2     (0x02000000)
    store_id     = 690   (0xB2020000)
    shmIsReadOnly = 0     (0x00000000)
    >>>>> 1st level extension part <<<<<
    regHook      = 0x00000000
    hsdir        = 0x00000000
    ext2         = 0x28A4883B
    >>>>> 2nd level extension part <<<<<
    tabhBack     = 0x109C883B
    delta_head   = 000000000000000000000000000000000000000000000000000000000000000000000000
    pb_func      = 0x00000000
    pb_handle    = 0x00000000
    I_KKBER
    2222
    0000
    FCODE_KOMM_LIEF_MENGE_SICH
    MOD2
    44432222222222222222
    DF420000000000000000
    SYST-REPID
    SAPLVKMP
    5454544522222222222222222222222222222222
    310C6BD000000000000000000000000000000000
    %_SPACE
    2
    0
    FCODE_KONFIGURATION1
    POKO
    54442222222222222222
    0FBF0000000000000000
    CREDIT_CHECK
    2222222222222222222222222222222222222222222
    0000000000000000000000000000000000000000000
    SY-REPID
    SAPLVKMP
    5454544522222222222222222222222222222222
    310C6BD000000000000000000000000000000000
    SAV_BUKRS
    SS00
    5533
    3300
    CHAR_
    2
    0
    %_DUMMY$$
    2222
    0000
    AUTOMO_VOLVO
    08
    33
    08
    SPACE
    2
    0
    FCODE_ABRUF_GENERIEREN
    PABG
    54442222222222222222
    01270000000000000000
    XVBRK
    00000000          0000000
    2222222222222222222222222222222222222222222222223333333322222222223333333222222222222222222222
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    KOPGR_LIEFERPLAN
    LL
    4422
    CC00
    FCODE_ZUSAETZE_FAB
    PFZU
    54552222222222222222
    06A50000000000000000
    FCODE_REPARATUR
    PREP
    55452222222222222222
    02500000000000000000
    XVBKD
    000000                                                 #####0000000000       ####
    2222222222222333333222222222222222222222222222222222222222222222222200000333333333322222220000
    000000000000000000000000000000000000000000000000000000000000000000000000C000000000000000000000
    FCODE_GEFAHRGUT
    KGGP
    44452222222222222222
    B7700000000000000000
    I_KKBER_HELP
    2222
    0000
    T001
    800SS00SRIYA TEXTILES           HYDERABAD                IN INR  EINT 10K41      0000050495DE1
    3335533554542545544452222222222245445444422222222222222224424452244452334332222223333333333443
    800330032991045849C530000000000089452121400000000000000009E09E20059E4010B410000000000050495451
    FCODE_STOFFBERICHTE
    IEHS
    44452222222222222222
    95830000000000000000
    T001-BUKRS
    SS00
    5533
    3300
    No.      12 Ty.          FUNCTION
    Name  SD_DETERMINE_KKBER
    I_KKBER_KNVV
    2222
    0000
    I_KKBER_T001
    8888
    3333
    8888
    I_KKBER_TVTA
    2222
    0000
    I_KUNNR
    7000000000
    3333333333
    7000000000
    I_SPART
    SM
    54
    3D
    I_VKORG
    T000
    5333
    4000
    I_VTWEG
    S4
    53
    34
    XVBAK
    00000000000000            000000000000000000000000         00000000
    2222222222222333333333333332222222222223333333333333333333333332222222223333333322222222222222
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    E_KNVV_FLG
    2
    0
    RC
    0
    0000
    0000
    XVBKD[]
    Table[initial]
    XVBPA[]
    Table IT_1743[2x542]
    I_KKBER
    2222
    0000
    XVBKD
    000000                                                 #####0000000000       ####
    2222222222222333333222222222222222222222222222222222222222222222222200000333333333322222220000
    000000000000000000000000000000000000000000000000000000000000000000000000C000000000000000000000
    I_KKBER_HELP
    2222
    0000
    No.      11 Ty.          FUNCTION
    Name  SD_PCHECK_PAYER_IN_CREDITAREA
    FIC_OBJECTKEY
    2222222222222222222222222222222222222222222222222222222222222222222222
    0000000000000000000000000000000000000000000000000000000000000000000000
    FIC_OBJECTTYPE
    BUS2032
    4553333222
    2532032000
    FIF_CHECKTYPE
    I
    4
    9
    FIF_MSGTYPE
    E
    4
    5
    FIF_NRART
    KU
    45
    B5
    FIF_PARGR
    TA
    5422
    4100
    FIF_PARNR
    7000000000
    3333333333
    7000000000
    FIF_PARVW
    RG
    5422
    2700
    FIF_POSNR
    000000
    333333
    000000
    FIF_RTYPE
    0003
    3333
    0003
    FIS_SDORGDATA
    T000S4SMZSOR
    533353545545222222
    4000343DA3F2000000
    FRF_MESSAGES
    0
    0000
    0000
    FRF_MESSAGE_COUNT
    0
    0000
    0000
    LVF_KKBER2
    2222
    0000
    LVF_KUNNR
    7000000000
    3333333333
    7000000000
    SYST-REPID
    SAPLV09B
    5454533422222222222222222222222222222222
    310C609200000000000000000000000000000000
    LVF_KURGV2
    2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    SY-MSGV4
    22222222222222222222222222222222222222222222222222
    00000000000000000000000000000000000000000000000000
    SY-MSGV2
    22222222222222222222222222222222222222222222222222
    00000000000000000000000000000000000000000000000000
    FIS_SDORGDATA-SPART
    SM
    54
    3D
    FIS_SDORGDATA-VKORG
    T000
    5333
    4000
    FIS_SDORGDATA-VTWEG
    S4
    53
    34
    %_O_SD_PARTNER_CONTEXT-HEX_0004
    1
    0
    LVT_CREDIT_XVBPA
    Table IT_1743[2x542]
    LVF_KKBER1
    2222
    0000
    GCS_HERTAB
    ABCDEFG
    24444444
    01234567
    %_DUMMY$$
    2222
    0000
    SY-SUBRC
    0
    0000
    0000
    LVF_BEFORE_PARVW
    2222
    0000
    No.      10 Ty.          FUNCTION
    Name  SD_PARTNER_EXECUTE_CHECKS
    FIC_OBJECTKEY
    2222222222222222222222222222222222222222222222222222222222222222222222
    0000000000000000000000000000000000000000000000000000000000000000000000
    FIC_OBJECTTYPE
    BUS2032
    4553333222
    2532032000
    FIF_BEFORE
    2
    0
    FIF_CHECKTYPE
    I
    4
    9
    FIF_DIALOG
    2
    0
    FIF_MSGTYPE_TO_EXEC
    E
    4222
    5000
    FIF_NRART
    KU
    45
    B5
    FIF_PARGR
    TA
    5422
    4100
    FIF_PARNR
    7000000000
    3333333333
    7000000000
    FIF_PARVW
    RG
    5422
    2700
    FIF_POSNR
    000000
    333333
    000000
    FIF_RTYPE
    0003
    3333
    0003
    FIS_SDORGDATA
    T000S4SMZSOR
    533353545545222222
    4000343DA3F2000000
    FRF_MESSAGES
    0
    0000
    0000
    FRF_MESSAGE_COUNT
    0
    0000
    0000
    LVF_ALL_PREDECESSORS_SUCCEEDED
    X
    5
    8
    FALSE
    2
    0
    GS_MARKED_PARTNERS
    222222222222
    000000000000
    LVT_CHECKCALLSTACK
    Table IT_1515[21x52]
    FUNCTION=SD_PARTNER_EXECUTE_CHECKSDATA=LVT_CHECKCALLSTACK
    Table reference: 219
    TABH+  0(20) = E8C3863B0000000000000000DB000000EB050000
    TABH+ 20(20) = 1500000034000000F00000000491010058090000
    TABH+ 40( 8) = 15000000C1248000
    store        = 0xE8C3863B
    ext1         = 0x00000000
    shmId        = 0     (0x00000000)
    id           = 219   (0xDB000000)
    label        = 1515  (0xEB050000)
    fill         = 21    (0x15000000)
    leng         = 52    (0x34000000)
    loop         = 240   (0xF0000000)
    xtyp         = TYPE#000033
    occu         = 21    (0x15000000)
    access       = 1     (ItAccessStandard)
    idxKind      = 0     (ItIndexNone)
    uniKind      = 2     (ItUniqueNon)
    keyKind      = 1     (default)
    cmpMode      = 2     (cmpSingleMcmpR)
    occu0        = 1
    collHash     = 0
    groupCntl    = 0
    rfc          = 0
    unShareable  = 0
    mightBeShared = 0
    sharedWithShmTab = 0
    isShmLockId  = 0
    gcKind       = 0
    isUsed       = 1
    >>>>> Shareable Table Header Data <<<<<
    tabi         = 0x90BF863B
    pghook       = 0x00000000
    idxPtr       = 0x00000000
    refCount     = 0     (0x00000000)
    tstRefCount  = 0     (0x00000000)
    lineAdmin    = 21    (0x15000000)
    lineAlloc    = 21    (0x15000000)
    store_id     = 595   (0x53020000)
    shmIsReadOnly = 0     (0x00000000)
    >>>>> 1st level extension part <<<<<
    regHook      = Not allocated
    hsdir        = Not allocated
    ext2         = Not allocated
    >>>>> 2nd level extension part <<<<<
    tabhBack     = Not allocated
    delta_head   = Not allocated
    pb_func      = Not allocated
    pb_handle    = Not allocated
    LVS_CHECKCALLSTACK_WA
    80000018BUS2030   SD_PCHECK_PAYER_IN_CREDITAREA   XX
    3333333345533332225455444445545455445454445454422255
    80000018253203000034F03853BF01952F9EF325494125100088
    GT_MARKED_FOR_DEL_PARTNERS
    Table[initial]
    LVS_CHECKCALLSTACK_WA-FUNCNAME
    SD_PCHECK_PAYER_IN_CREDITAREA
    545544444554545544545444545442
    34F03853BF01952F9EF32549412510
    GC_NO_ACTION
    2
    0
    GC_NEW_PARTNER
    I
    4
    9
    GVC_PARTNER_CONTEXT
    CONTEXT_X_SD_PARTNER_CONTEXT            fò####################################################
    44454555555455455445544454552222222222226F0000000000000000000000000000000000000000000000000000
    3FE4584F8F34F0124E52F3FE4584000000000000620000000000000000000000000000000000000000000000000000
    GC_ERROR
    E
    4
    5
    GC_PROCESSMODE_DIALOG
    D
    4
    4
    LVF_MSGTYP
    E
    4
    5
    BUFFER_FULL_FILLED
    F
    4
    6
    POS_NUL
    000000
    333333
    000000
    BUFFER_PARTITIAL_FILLED
    P
    5
    0
    %_ARCHIVE
    2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    GCS_PARTNER_ROLETYPES
    0001000200030004000500060007000800090010001100120013NONE
    33333333333333333333333333333333333333333333333333334444
    0001000200030004000500060007000800090010001100120013EFE5
    GCS_PARTNER_TYPE
    KUAPLIPE
    45454454
    B510C905
    LVF_RTYPE
    0003
    3333
    0003
    GCS_PARTNER_CALL_BACK_EVENTS
    CHANGE    DELETE    NEW
    444444222244445422224452222222
    381E75000045C5450000E570000000
    %_PRINT
    000                                                                                0 ##
    2222333222222222222222222222222222222222222222222222222222222222222222222222222222222222223200
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    GCF_INITIAL_PARTNER
    0
    32
    00
    GCF_CALLER_TRANSPORT
    T
    5
    4
    TPACHECKRELATION
    0000000000
    2223333333333
    0000000000000
    GC_APPL_LOG
    SDBFPD
    54445422222222222222
    34260400000000000000
    SY-REPID
    SAPLV09B
    5454533422222222222222222222222222222222
    310C609200000000000000000000000000000000
    GVC_PARTNER_CONTEXT-B0007-PARVW
    RG
    54
    27
    No.       9 Ty.          FUNCTION
    Name  SD_PARTNER_CHECK_BEFORE
    FIC_OBJECTKEY
    2222222222222222222222222222222222222222222222222222222222222222222222
    0000000000000000000000000000000000000000000000000000000000000000000000
    FIC_OBJECTTYPE
    BUS2032
    4553333222
    2532032000
    FIF_BEFORE
    2
    0
    FIF_CHECKTYPE
    I
    4
    9
    FIF_DIALOG
    2
    0
    FIF_NRART
    KU
    45
    B5
    FIF_PARGR
    TA
    5422
    4100
    FIF_PARNR
    7000000000
    3333333333
    7000000000
    FIF_PARVW
    RG
    5422
    2700
    FIF_POSNR
    000000
    333333
    000000
    FIF_RTYPE
    0003
    3333
    0003
    FIS_SDORGDATA
    T000S4SMZSOR
    533353545545222222
    4000343DA3F2000000
    FRF_MESSAGES
    0
    0000
    0000
    FRF_MESSAGE_COUNT
    0
    0000
    0000
    LS_STATISTICS
    ########################4   ################
    00000000000000000000000032220000000000000000
    00000000000000000000000040000000000000000000
    No.       8 Ty.          FUNCTION
    Name  SD_PARTNER_SINGLE_MODIFY
    FIC_OBJECTKEY
    2222222222222222222222222222222222222222222222222222222222222222222222
    0000000000000000000000000000000000000000000000000000000000000000000000
    FIC_OBJECTTYPE
    BUS2032
    4553333222
    2532032000
    FIF_BOKRE
    2
    0
    FIF_CLEAR_APPL_LOG
    X
    5
    8
    FIF_DIALOG
    2
    0
    FIF_HARD_DELETION
    2
    0
    FIF_HISTUNR
    00
    33
    00
    FIF_HZUOR
    00
    33
    00
    FIF_INITIAL_VALUE
    X
    5
    8
    FIF_KNREF_PARNR
    2222222222
    0000000000
    FIF_KUNNR_NEW
    7000000000
    3333333333
    7000000000
    FIF_KUNNR_OLD
    2222222222
    0000000000
    FIF_LISTPROCESSING
    2
    0
    FIF_MANUAL_ADDRESS
    2222222222
    0000000000
    FIF_MANUAL_ADDRESS_ORIGIN
    2
    0
    FIF_NO_CPD_DIALOG
    2
    0
    FIF_NO_DIALOG
    2
    0
    FIF_NO_MESSAGES
    2
    0
    FIF_PARGR
    TA
    5422
    4100
    FIF_PARTIAL_NEW_DETERMINATION
    2
    0
    FIF_PARVW
    RG
    5422
    2700
    FIF_POSNR
    000000
    333333
    000000
    FIF_PRFRE
    2
    0
    FIF_VKORG
    2222
    0000
    FIS_SDORGDATA
    T000S4SMZSOR
    533353545545222222
    4000343DA3F2000000
    FEV_ACTION_DONE
    I
    4
    9
    FRF_LOG_COUNT
    0
    0000
    0000
    SYST-REPID
    SAPLV09A
    5454533422222222222222222222222222222222
    310C609100000000000000000000000000000000
    GVT_LOCAL_CALL_BACK_MEMORY[]
    Table[initial]
    %_SPACE
    2
    0
    SY-REPID
    SAPLV09A
    5454533422222222222222222222222222222222
    310C609100000000000000000000000000000000
    LVF_ACTION_TODO
    I
    4
    9
    GC_UPD_PARTNER
    U
    5
    5
    %_VIASELSCR
    0
    4
    %_ARCHIVE
    2222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222222
    0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    GCS_PARTNER_ROLETYPES-SHIP_TO
    0002
    3333
    0002
    LVF_NRART
    KU
    45
    B5
    LVF_KUNNR_NEW
    7000000000
    3333333333
    7000000000
    GCS_ADDRESS_GROUP
    SD01CA01
    54334433
    34013101
    GCF_APPL_TABLE_SD
    VBUK
    5454222222
    625B000000
    LVF_ROLETYPE
    0003
    3333
    0003
    RSJOBINFO
    00000000000000                                  ####
    222222222222222222222222222222223333333333333322222222222222222222222222222222220000
    000000000000000000000000000000000000000000000000000000000000000000000000000000000000
    LVF_MESSAGE_COUNT
    0
    0000
    0000
    %_DUMMY$$
    2222
    0000
    GCF_ADDRESS_TYPE_CONT_PERSON
    3
    3
    3
    No.       7 Ty.          FORM
    Name  PARTNER_SELECTION
    TVTA
    000
    222222222222222222222222222222222333222222222222222
    000000000000000000000000000000000000000000000000000
    TPAER
    00
    22222222222222332222
    00000000000000000000
    LVS_XVBPA
    000000RG7000000000          0000000000000000000000050510
    2222222222222333333543333333333222222222233333333333333333333333333332222222222222222222222222
    0000000000000000000277000000000000000000000000000000000000000000505100000000000000000000000000
    LVF_PARNR
    7000000000
    3333333333
    7000000000
    PIC_OBJECTKEY
    2222222222222222222222222222222222222222222222222222222222222222222222
    0000000000000000000000000000000000000000000000000000000000000000000000
    PIC_OBJECTTYPE
    BUS2032
    4553333222
    2532032000
    PIF_NO_DIALOG
    2
    0
    PIF_PARGR
    TA
    5422
    4100
    LVF_PARVW
    RG
    5422
    2700
    PIF_POSNR

    Hi Kartik,
    Could you please be more clearer as to how do you want me to proceed so that this syntax error stops bothering me while creating a standard order thru TCode VA01.Also what do you mean by "well comment the code in the include and activate the include"
    I created a projet in CMOD and than added the enhancement  V45A0002.The components shown as EXIT_SAPMV45A_002(Predefined sold to party when making the standard order),i double click on the exit and entered into the function module.After that i double clicked on the include ZXVVZU04 and entered in and wrote E_KUNNR=100171
    While activating i got error msg 'The last statement is not complete (period missing)." & i have saved inspite the error .After that i tried to create a order and program terminated error came after entering sold to party no. in sales order
    so now i have deactivated the project which i created in CMOD & deleted the project also inspite of this i am getting the program terminated error while making the order
    I would be great ful if somebody helps me *** out of this syntax error.
    Thanks
    Rishi

  • Job_open FM called in output type is ending with dump

    Hi All,
    I have a job_open FM called in output type is ending with dump, In dump analysis its given as "Statement "COMMIT" is not allowed in this form." and "There is probably an error in the program
    "SAPLSYDB".
    This program is triggered in the update task. There, the
    following ABAP/4 statements are not allowed:
    -  CALL SCREEN
    -  CALL DIALOG
    -  CALL TRANSACTION
    -  SUBMIT
    Kindly advise me to avoid this.
    Thaks in advance.
    Joshi

    Hi,
    This update termination occurs when a DB commit occurs in update task.......and probably job_open FM must hav done the DB commit.....
    So issuing the output while saving the transaction is not possible with job_open FM in output program.....
    try putting 3 (send with application own transaction)  in  despatch time of output and issue it manually.....
    Cheers,
    Jose.

  • R3 4.7 upgrade to ECC 60 EHP5 spam error Program terminated jobRDDMNTAB

    We're run upgrade procedure for development source system R/3 4.7 set 2.00 to ECC 6.0 EHP 5
    on HP-UX 11.31, Oracle 9.2.0.8:
    Latest version of SAPEXEDB-378 and SAPEXE-378 levels patch are installed.
    -R3trans version 6.13 (release 640 - 19.01.11)
    -tp version 340.16.67 (release 640)
    -disp+work information
    kernel release                640
    kernel make variant           640_REL
    compiled on                   HP-UX B.11.23 U ia64 for "hpia64"
    compiled for                  64 BIT
    compilation mode              Non-Unicode
    compile time                  Oct 23 2011 20:47:12
    update level                  0
    patch number                  389
    source id                     0.389
    - BRCONNECT 6.40 (52)
    - spam version 6.20/0038
    -SAPKB62068, SAPKA62068, SAPKH47021, SAPKE47018, SAPKIPYH52,
    SAPKITLRB4,SAPK-10008INHRCEE, ST-A/PI 01N_620_R3 0000,SAPKGPIB04,
    SAPKIPZH52 of support packages installed.
    Result of manual running tp commands with options:
    tp showbuffer SID pf=/usr/sap/SID/trans/bin/TP_DOMAIN_SID.PFL
    This is tp version 340.16.67 (release 640)
    Warning: Parameter DBLIBPATH is no longer used.
    Warning: Parameter DBSWPATH is no longer used.
    SID buffer:
    SAPKD62044  |will not be imported because it is tagged.
      that makes 0 transports to be imported.
    tp finished with return code: 0
    meaning:  Everything OK
    When we're try install latest spam version 6.20/044, next 2 error's
    occured at IMPORT_PROPER step:
    Import steps not specific to transport request:
    -Activate inactive runtime objects->Program terminated (job: RDDMNTAB,
    no.: 20543600), Ended with return code:  ===> 12 <===
    in SM21:
    14:50:48 BTC 15 000 DDIC Q0 E Signal 11 received by operating system
    14:50:58 BTC 15 Q0 1 Start Workproc15, 7 times since system startup. PID 1104
    14:50:58 BTC 15 000 DDIC F3 T Invalid object name for TemSe object: " "
    14:50:58 BTC 15 000 DDIC EC F Failed to create log for job RDDIMPDP
    14:50:58 BTC 15 000 DDIC F2 0 Calling program reports invalid handle for TemSe object
    (magic==X'NULL-ptr')
    14:52:53 BTC 16 000 DDIC Q0 E Signal 11 received by operating system
    14:52:58 BTC 16 Q0 1 Start Workproc16, 7 times since system startup. PID 1179
    14:52:58 BTC 16 000 DDIC F3 T Invalid object name for TemSe object: " "
    14:52:58 BTC 16 000 DDIC EC F Failed to create log for job RDDMASGL
    14:52:58 BTC 16 000 DDIC F2 0 Calling program reports invalid handle for TemSe object
    (magic==X'NULL-ptr')
    14:53:53 DIA 02 000 DDIC Q0 E Signal 11 received by operating system
    14:53:54 DIA 02 Q0 1 Start Workproc 2, 3 times since system startup. PID 1233
    14:53:54 DIA 03 000 DDIC Q0 E Signal 11 received by operating system
    14:53:54 DIA 03 Q0 1 Start Workproc 3, 3 times since system startup. PID 1236
    14:53:55 DIA 04 000 DDIC Q0 E Signal 11 received by operating system
    14:53:55 DIA 04 Q0 1 Start Workproc 4, 3 times since system startup. PID 1239
    14:54:07 RD S2 3 Connection to CPI-C client 050 was closed
    14:54:07 RD S7 4 > Partner LU name:
    14:54:07 RD S0 R > Host: yyyhost
    14:54:07 RD S0 I > Partner TP Name: tp
    14:54:07 DIA 01 000 DDIC SPAM R4 9 Communication error, CPIC return code 020, SAP return code 223
    14:54:07 DIA 01 000 DDIC SPAM R5 A > Conversation ID: 76517657
    14:54:07 DIA 01 000 DDIC SPAM R6 4 > CPI-C function: CMSEND(SAP)
    14:54:07 DIA 01 000 DDIC SPAM TP 0 Tp call failed (RFC RC = 4: RFC message = ...)
    В se37:
    RDDIMPDP DDIC Complete 22.11.2011 14:54:04 -!!
    RDDIMPDP DDIC Canceled 22.11.2011 14:50:48 -?
    RDDMASGL DDIC Complete 22.11.2011 14:53:53  -!!
    RDDMASGL DDIC Canceled 22.11.2011 14:52:53  -?
    When we 'e try istall another component path (EA-APPL200 for example ), inspam 0038 we 'e see:
    Error in phase: IMPORT_PROPER
    Reason for error: TP_STEP_FAILURE
    Return code: 0012
    1 ETP108 tp path : "tp"
    1 ETP109 version and release : "340.16.67" "640"
    1 ETP198
    4 EDA506 -> "/SDF/SWCM_PAT03D" Activation - - -
    4 EDA492 Warnings: "0"
    4 EDA483 Errors: "0"
    4 EDA495 Total runtime: " "
    1 ETP173 DISTRIBUTION OF DD-OBJECTS
    1 ETP110 end date and time : "20111122145403"
    1 ETP111 exit code : "0"
    4 EDA492 Warnings: "0"
    4 EDA483 Errors: "0"
    4 EDA495 Total runtime: " "
    1AETR012XProgram terminated (job: "RDDDIS0L", no.: "15141800")
    4 EDA492 Warnings: "0"
    4 EDA483 Errors: "0"
    4 EDA495 Total runtime: " "
    1 ETP173 DISTRIBUTION OF DD-OBJECTS
    1 ETP110 end date and time : "20111122151518"
    1 ETP111 exit code : "12"
    SM21 the job RDDDIS0L canceled:
    15:14:18 BTC 16 000 DDIC Q0 E Signal 11 received by operating system
    15:14:19 BTC 16 Q0 1 Start Workproc16, 9 times since system startup. PID 1946
    15:14:19 BTC 16 000 DDIC F3 T Invalid object name for TemSe object: " "
    15:14:19 BTC 16 000 DDIC EC F Failed to create log for job RDDDIS0L
    15:14:19 BTC 16 000 DDIC F2 0 Calling program reports invalid handle for TemSe object
    (magic==X'NULL-ptr')
    In 000-client under ddic i'm report RDDMNTAB scheduled( RDDNEWPP),class A(High).
    for messages : "Failed to create log for job XXXX" for /usr/sap/YYY/SYS/global/000JOBLG directory( owner: yyyadm:sapsys) next command exeuted: chmod 777 /usr/sap/YYY/SYS/global/000JOBLG
    Very difficult situation with this SPAM step's!...
    How solve this problem?
    PS. sorry for conjoint  text, forums' bugs...
    Edited by: Baurzhan Lekerov on Nov 22, 2011 4:05 PM

    We're getting queue of required packages,new tp and R3trans versions, ABAP nad JAVA corrections for 702,stack.xml and stack_for_slm.xml from MOPZ and put this files under <sid>adm into download directory:
    /backup_SID/INSTALL/EHP5_UPGRADE  on server:
    ll /backup_SID/INSTALL/EHP5_UPGRADE:
    in this directory 6 directories with unzipped DVD:
    drwxr-x--- BS7i2010_Java_Comp
    drwxr-x--- exp_lang
    drwxr-x---  exp_pack_all_components
    drwxr-x--- export_ehp5  -> 2 Export DVD
    drwxr-x--- ecc60_ehp5_components
    drwxr-x--- upgr_master -> Upgrade Master
    and other files from MOPZ queue:
    -rw-rr  SAPEXE_90-20006757.SAR
    -rw-rr  NW70BICNT70504_0-10007518.ZIP
    -rw-rr XI7_1_SEM-BW_605-sp5.dlt
    -rw-rr sidadm     sapsys     2499937 Jun  9 12:14 XI7_1_SEM-BW_605-sp5.tpt
    ...... and more
    We're started upgrade procedure with STARTUP script and on PREP_EXTRACT/KEY_CHK phase next error occured:
    "ERROR: Scanning of download directory failed with the following error: No fix archive found in download directory"
    in KEYCHK.LOG:
    1 ETQ399 Scanning directory '/backup_SID/INSTALL/EHP5_UPGRADE/EHP5_SPackages'.
    1 ETQ399 Found 697 files.
    2WETQ399 File '/backup_SID/INSTALL/EHP5_UPGRADE/EHP5_SPackages/BSFOUND70205_0-20004435' could not be recognized!
    2WETQ399 File '/backup_SID/INSTALL/EHP5_UPGRADE/EHP5_SPackages/BSFOUND70205_0-20004435.ZIP' could not be recognized!
    2 ETQ399 Found #1 'EPS/in' in '/backup_SID/INSTALL/EHP5_UPGRADE/EHP5_SPackages/EA-DFPS603.SAR'.
    2 ETQ399 File '/backup_SID/INSTALL/EHP5_UPGRADE/EHP5_SPackages/EA-DFPS603.SAR' determined as 'type=ABAPPACK'.
    we're unzipped *.ZIP packages into download directory manually, but next error with *.tpt extensions occured again:
    2WETQ399 File '/backup_SID/INSTALL/EHP5_UPGRADE/XI7_1_FINBASIS_605-sp5.tpt' could not be recognized!
    2 ETQ399 Setting action for '/backup_SID/INSTALL/EHP5_UPGRADE/K-604DHINISPSCA.SAR' to 'UNPACK_TRANS'.
    2 ETQ399 Setting action for '/backup_SID/INSTALL/EHP5_UPGRADE/KW70205.SAR' to 'UNPACK_TRANS'
    /upg/abap/log/CHECKS.LOG is empty.
    cat PHASES.LOG :
    1 ETQ201 Entering upgrade-phase "BEGIN_PRE" ("20111126195508")
    4 ETQ399 Set environment for standard connect:
    2 ETQ367 Connect variables are set for standard instance access
    4 ETQ399 System-nr = '00', GwService = ''
    4 ETQ399 Environment variables:
    4 ETQ399   auth_shadow_upgrade=0
    1 ETQ200 Executing actual phase 'PREP_EXTRACT/BEGIN_PRE'.
    4 ETQ010 Date & Time: 20111126195508
    cat SAPupchk.log :
    This is SAPup release lmt_001 version 40.024 compile time 03:26:32 Nov 23 2011.
    This is UNICODE SAPup!
    ..finished at 20111126195508 with status SUCCEEDED.
    CURRENTPHASE PREP_EXTRACT/KEY_CHK
    ...started at 20111126195508
    Using phase log file 'KEYCHK.LOG'.
    ...begin dialogue at 20111126195508
    ...end dialogue at 20111126204132
    ...begin dialogue at 20111126204449
    ...end dialogue at 20111126205544
    ...begin dialogue at 20111126205902
    ...end dialogue at 20111126212808
    ...begin dialogue at 20111126213133
    ...end dialogue at 20111126215359
    ...begin dialogue at 20111126215736
    cat SCANCAR.LOG:
    drwxr-xr-x        4096    20 Oct 2011 23:40 igs/dump
    drwxr-xr-x        4096    20 Oct 2011 23:40 igs/log
    -rwxr-xr-x           4    20 Oct 2011 23:44 igs/igshelper.lst
    cat SCANCAR.SAV:
    ENV: SAPSYSTEMNAME=KDV
    ENV: auth_shadow_upgrade=0
    ENV: dbms_type=ORA
    ENV: dbs_ora_schema=SAPKDV
    ENV: dbs_ora_tnsname=KDV
    EXECUTING /oracle/KDV/usrsap/upg/abap/tools/SAPCAR (/oracle/KDV/usrsap/upg/abap/tools/SAPCAR) -tvf /backup_KDV/INSTALL/EHP5_UPGRADE/igsexe_3-20007786.sar
    SAPCAR: processing archive /backup_KDV/INSTALL/EHP5_UPGRADE/igsexe_3-20007786.sar (version 2.01)
    -rwxr-xr-x    31880896    30 Sep 2011 00:22 bwgis.so
    -rwxr-xr-x    31720200    30 Sep 2011 00:22 bwgis_c.so
    -rwxr-xr-x    36529288    30 Sep 2011 00:24 gfwchart.so
    -rwxr-xr-x    36434128    30 Sep 2011 00:25 gfwchart_c.so
    -rwxr-xr-x         189    30 Sep 2011 00:32 igsexe.lst
    -rwxr-xr-x         438    30 Sep 2011 00:32 igsmanifest.mf
    -rwxr-xr-x    34465896    30 Sep 2011 00:31 igsmux_mt
    -rwxr-xr-x    15608480    30 Sep 2011 00:31 igspw_mt
    -rwxr-xr-x    13518008    30 Sep 2011 00:32 igswd_mt
    -rwxr-xr-x    12428336    30 Sep 2011 00:25 imgconv.so
    -rwxr-xr-x    19683776    28 Sep 2011 02:20 libsapnwrfc.so
    -rwxr-xr-x    10839352    30 Sep 2011 00:25 rspoconnector.so
    -rwxr-xr-x    25510112    30 Sep 2011 00:19 sgxgis.so
    -rwxr-xr-x    35754952    30 Sep 2011 00:23 xmlchart.so
    -rwxr-xr-x    35659800    30 Sep 2011 00:23 xmlchart_c.so
    -rwxr-xr-x     6072600    30 Sep 2011 00:25 zipper.so
    Are ./STARTUP script can not find 6 DVD-directories in download directory?
    or some problems with *>ZIP packages files? we're unzipped *.ZIP and getting *.tpz, *.tpt files in download directory.
    What is *.tpz and *tpt-extensions files?
    Cai I to ignore this messages in KEYCHK.LOG:
    "2WETQ399 File '/backup_SID/INSTALL/EHP5_UPGRADE/EHP5_SPackages/BSFOUND70205_0-20004435.ZIP' could not be recognized!
    2WETQ399 File '/backup_SID/INSTALL/EHP5_UPGRADE/XI7_1_FINBASIS_605-sp5.tpt' could not be recognized!
    At CURRENT PHASE  PREP_EXTRACT/KEY_CHK next error message occured:
    "Please enter mount points for the DVDs required for the upgrade.
    Enter at least the mount point containing "Kernel DVD for OS HPUX_IA64 and Non-Unicode"
    In donwload directory we're don/t have a Kernel DVD for EHP 5 HPUX_IA64 and Non-Unicode.
    What is the DVD Kernel (7.01,702, 7.20 releases) we're need to download now?
    Edited by: Baurzhan Lekerov on Nov 27, 2011 9:35 AM

Maybe you are looking for