Export getting cancelled

Hi all,
Im working in  ECC 6.0 system. While transporting the development request to Quality server using Transport of copies,
the export  gets cancelled. The target system is configured as dummy.
I did the following things :-
1. Checked the transport log : It is not showing any errors
2. Checked the bacground job RDDFDBCK : The status is Finished but when I checked the Job Log there was an Information message 'Transport control program tp ended with error code 0016'.
What could be the reason for the export getting cancelled?
Regards,
Ramya Iyer

Hi all,
The problem was because of insufficient space in the /usr/sap/trans folder.
Resolved the issue by creating the required space in it.
Regards,
Ramya

Similar Messages

  • Report program when run in background job getting cancelled immediately

    Hi
    When i run a program in foreground i am able to see the output. But when run in background not able to run the job successfully. The job is getting cancelled immediately.
    I am using the below function module for output display. Should i need to pass any parameters in the below function module so that i can run the program in background  successfully.
      CALL METHOD DETAIL_GRID->SET_TABLE_FOR_FIRST_DISPLAY     
          EXPORTING                                            
            IS_LAYOUT         = IS_LAYOUT                    
            I_SAVE            = 'A'                        
            IS_VARIANT        = GS_VARIANT                   
          CHANGING                                           
            IT_FIELDCATALOG   = IT_FIELDCATALOG               
            IT_OUTTAB         = BLOCKED_STOCK_TAB_ALV[].     
    Please suggest.
    Thanks and regards
    Rajani Yeluri

    Hi Rajani.
      ALV require the DRYPOR(screen) for display but incase you run in back ground which have to write to spool but in spool we can only write in format of LIST REPORT not inter-active report like ALV. That why
    system cancelled your process immediately.
    Hope it helps.
    Sayan.

  • SAP_COLLECTOR_FOR_PERFMONITOR getting cancelled

    Dear All,
    The job SAP_COLLECTOR_FOR_PERFMONITOR is getting cancelled daily at 7.00 AM. It is scheduled to run hourly. All other times it finishes succesfully. But only 1 time at 7 it gets cancelled. The job log is :-
    Date       Time     Message text                                                Message class Message no. Message type                                                                               
    15.11.2007 07:00:17 Job started                                                      00           516          S       
    15.11.2007 07:00:17 Step 001 started (program RSCOLL00, variant , user ID DDIC)      00           550          S       
    15.11.2007 07:00:38 ABAP/4 processor: CONNE_IMPORT_WRONG_COMP_TYPE                   00           671          A       
    15.11.2007 07:00:38 Job cancelled                                                    00           518          A                                                                               
    the Dump is pasted below:-
                                                                                    ShrtText                                                                               
    Error when attempting to IMPORT object "HIST2".                                                                               
    What happened?                                                                               
    Error in ABAP application program.                                                                               
    The current ABAP program "RSORAT4M" had to be terminated because one of the                 
        statements could not be executed.                                                                               
    This is probably due to an error in the ABAP program.                                                                               
    When attempting to import data, it was discovered that the data                             
        type of the stored data was not the same as that specified in the                           
        program.                                                                               
    Error analysis                                                                     
        An exception occurred. This exception is dealt with in more detail below       
        . The exception, which is assigned to the class 'CX_SY_IMPORT_MISMATCH_ERROR', 
         was neither                                                                   
        caught nor passed along using a RAISING clause, in the procedure               
         "AKT_DAY_HIST2" "(FORM)"                                                      
    Since the caller of the procedure could not have expected this exception       
         to occur, the running program was terminated.                                 
        The reason for the exception is:                                               
        When importing the object "HIST2", the component no. 8 in the                  
        dataset has a different type from the corresponding component                  
        of the target object in the program "RSORAT4M".                                                                               
    The data type is "I" in the dataset, but "P" in the program.                   
    How to correct the error                                                               
        Try to find out why the type of the object is different.                           
        There are several possible reasons:                                                
    --- In the ABAP Dictionary, the type of the imported                               
    field has changed. Make sure that the type of the imported                     
    field matches the length of the Dictionary field.                              
    |   If the data could not be restored from another source, this data               
        |   must be read with the "old" structure, then converted and exported             
        |   back with the new structure, so that future IMPORTs always work                
        |   with the new structure.                                                        
        |                                                                               
    --- A new program version is active, and it no longer matches the                  
            dataset. Try to solve the error by generating the program "RSORAT4M" again     
            as follows:                                                                    
            In the SAP System, choose the transaction SE38. Enter the program              
            name "RSORAT4M". Then choose the "Activate" function.                                                                               
    ===
    It is saying
    The data type is "I" in the dataset, but "P" in the program.                              
    But it runs 23 times correctly except 1 time.
    Can Anyone help me in this please
    Thanks
    Tajinder

    Hi,
    Can u please suggest me what will be the monikey here. below is the dump for that
    154   DATA: FLAG VALUE ' '.                                                       
    155   LOOP AT HIST2.                                                              
    156     IF HIST2-DATE = DATE. DELETE  HIST2. FLAG = '*'. ENDIF.                   
    157   ENDLOOP.                                                                    
    158   IF FLAG NE SPACE. SUBTRACT 1 FROM LOGBUCH-ANZDAYS. ENDIF.                   
    159 ENDFORM.                                                                      
    160                                                                               
    161 FORM AKT_DAY_HIST2.                    " Aktualisiere Tage-Historie           
    162   PERFORM PREPARE_MONIKEY USING 36.    " Lese Historie                        
    >>>>   IMPORT HIST2 FROM DATABASE MONI(DB) ID MONIKEY.                             
    164   IF SY-SUBRC <> 0.                                                           
    165     REFRESH HIST2. CLEAR HIST2.                                               
    166     PERFORM LOGBUCH_INIT USING 1.                                             
    167     PERFORM TRANSFORM_ALL_HISTORIES.   " Strukturaenderung fuer Dynami        
    168     PERFORM PREPARE_MONIKEY USING 36.    " Lese Historie                      
    169     IMPORT HIST2 FROM DATABASE MONI(DB) ID MONIKEY.                           
    170   ENDIF.                                                                      
    171   READ TABLE HIST2 INDEX 1.                                                   
    172   IF SY-SUBRC <> 0.                                                           
    173     REFRESH HIST2. CLEAR HIST2.                                               
    174     PERFORM LOGBUCH_INIT USING 1.                                             
    175   ENDIF.                                                                      
    176   PERFORM DELETE_AKT_DAY_HIST2.        " Delete aktuellen Tag                 
    177   LOOP AT HIST2_DAY.                   " Füge neue Analyse an                 
    178     MOVE-CORRESPONDING HIST2_DAY TO HIST2.                                    
    179     APPEND HIST2.                                                             
    180   ENDLOOP.                                                                    
    181   ADD 1 TO LOGBUCH-ANZDAYS.                                                   
    182   MOVE DATE TO LOGBUCH-LASTDAY.                                               
    Thanks
    tajinder

  • How to send a mail to the user when a job gets canceled?

    Hi experts,
                      I need to send a mail when a job gets canceled to the user.I know the FM for sending mail and i can find if a job is canceled from tbtco,but i want to know how to send the mail from the same program ,once it got canceled ?
    thanks in advance,
    helpful answers will be awarded with points
    regards,
    ashwin

    Hi Ashwin
    Use the below peace of code:
    REPORT ZBCJOBMONITOR .
    TABLES: SOMLREC90,
            TBTCO.
    DATA: MAILDATA   LIKE SODOCCHGI1.
    DATA: MAILTXT    LIKE SOLISTI1 OCCURS 10 WITH HEADER LINE.
    DATA: MAILREC    LIKE SOMLREC90 OCCURS 0  WITH HEADER LINE.
    DATA: I_TBTCO    LIKE TBTCO OCCURS 0 WITH HEADER LINE.
    SELECTION-SCREEN BEGIN OF BLOCK B1 WITH FRAME TITLE TEXT-001 .
    SELECT-OPTIONS: S_JOB FOR TBTCO-JOBNAME.
    SELECT-OPTIONS: S_JOBC FOR TBTCO-JOBClass.
    SELECT-OPTIONS: S_REC FOR SOMLREC90-RECEIVER.
    SELECTION-SCREEN END OF BLOCK B1.
    START-OF-SELECTION.
      CLEAR:    MAILDATA, MAILTXT, MAILREC, I_TBTCO.
      REFRESH:  MAILTXT, MAILREC, I_TBTCO.
      PERFORM GET_ABENDED_JOBS.
      PERFORM BUILD_RECEIVERS.
      LOOP AT I_TBTCO.
        PERFORM BUILD_TEXT_MESSAGE.
        PERFORM SEND_MAIL_NODIALOG..
      ENDLOOP.
         Form  BUILD_TEXT_MESSAGE
    FORM GET_ABENDED_JOBS.
      SELECT * FROM TBTCO
              INTO CORRESPONDING FIELDS OF TABLE I_TBTCO
                         WHERE JOBNAME IN S_JOB
                           AND STATUS = 'A'
                           AND JOBCLASS IN S_JOBC
                           AND SDLSTRTDT = SY-DATUM.
    ENDFORM.
         Form  BUILD_TEXT_MESSAGE
    FORM BUILD_TEXT_MESSAGE.
      DATA: DATE(10) TYPE C.
      DATA: TIME(10) TYPE C.
      MAILDATA-OBJ_NAME = 'MONITOR'.
      MAILDATA-OBJ_DESCR = 'Batch Job Monitor'.
      MAILDATA-OBJ_LANGU = SY-LANGU.
      CONCATENATE 'Job Name:' I_TBTCO-JOBNAME
                  INTO MAILTXT-LINE SEPARATED BY SPACE.
      APPEND MAILTXT.
      PERFORM FORMAT_DATE USING I_TBTCO-SDLSTRTDT
                                DATE.
      CONCATENATE I_TBTCO-SDLSTRTTM+0(2) ':'
                  I_TBTCO-SDLSTRTTM+2(2) ':'
                  I_TBTCO-SDLSTRTTM+4(2)
                     INTO TIME.
      CONCATENATE 'Start Date/Time:' DATE TIME
                INTO MAILTXT-LINE SEPARATED BY SPACE.
      APPEND MAILTXT.
      CONCATENATE 'Job Class:' I_TBTCO-JOBCLASS
                INTO MAILTXT-LINE SEPARATED BY SPACE.
      APPEND MAILTXT.
      MAILTXT-LINE = 'Job has terminated abnormally'.
      APPEND MAILTXT.
    ENDFORM.
         Form  BUILD_RECEIVERS
    FORM BUILD_RECEIVERS.
      LOOP AT S_REC.
        CLEAR MAILREC.
        MAILREC-RECEIVER = S_REC-LOW.
        MAILREC-REC_TYPE  = 'U'.
        APPEND MAILREC.
      ENDLOOP.
    ENDFORM.
         Form  SEND_MAIL_NODIALOG
    FORM SEND_MAIL_NODIALOG.
      CALL FUNCTION 'SO_NEW_DOCUMENT_SEND_API1'
           EXPORTING
                DOCUMENT_DATA              = MAILDATA
                DOCUMENT_TYPE              = 'RAW'
                PUT_IN_OUTBOX              = 'X'
           TABLES
                OBJECT_HEADER              = MAILTXT
                OBJECT_CONTENT             = MAILTXT
                RECEIVERS                  = MAILREC
           EXCEPTIONS
                TOO_MANY_RECEIVERS         = 1
                DOCUMENT_NOT_SENT          = 2
                DOCUMENT_TYPE_NOT_EXIST    = 3
                OPERATION_NO_AUTHORIZATION = 4
                PARAMETER_ERROR            = 5
                X_ERROR                    = 6
                ENQUEUE_ERROR              = 7
                OTHERS                     = 8.
      IF SY-SUBRC <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    ENDFORM.
         Form FORMAT_DATE
    FORM FORMAT_DATE USING IN
                           OUT.
      CALL FUNCTION 'CONVERT_DATE_TO_EXTERNAL'
           EXPORTING
                DATE_INTERNAL            = IN
           IMPORTING
                DATE_EXTERNAL            = OUT
           EXCEPTIONS
                DATE_INTERNAL_IS_INVALID = 1
                OTHERS                   = 2.
    ENDFORM.
    Regards,
    Sree

  • All my renders get canceled when I try to start rendering

    I have a project that I left to render last night when I went to bed. I awoke this morning to a warning that my drive was full or whatever the disk warning was. I moved the Color Documents directory to another drive and opened the project. It seem to work fine for playing back. It wont render at all. When I Add Unrendered and then Start Render everything gets canceled.
    What I would like to do is just export the project again from FCP and reapply the treatments. It's just two different grades across about 18 clips or so. It wouldn't take long for me to do it again. The problem is that since I transferred the Color Documents folder to a new disk I can't get it to "Send to" color any more. I get to name the project dialog and then see the watch icon/cursor for a moment and then nothing else happens.
    What did I do and how do I get this working again? This is just one item in my life that is stressing me out today.
    Thanks, BB

    Fixed. Project settings was still pointing at a non existent folder since I had moved everything. Changed setting and moving on.

  • Report J_1IEWT_CERT getting cancelled, generating ABAP dump!

    A long running report J_1IEWT_CERT in background mode is getting cancelled after running for a while and generating the following dump :
    Error analysis
        When changing or deleting one or more lines of the internal table
        "\PROGRAM=J_1IEWT_CERT\DATA=PRINTTAB[]" or when inserting in the table
         "\PROGRAM=J_1IEWT_CERT\DATA=PRINTTAB[]", 0 was used as
        the line index. An index less than or equal to zero is not
        allowed.
        The error can occur when using the following options:
        1. "INDEX idx" for specifying the line number in the table
         "\PROGRAM=J_1IEWT_CERT\DATA=PRINTTAB[]"
           where you want to change, insert or delete.
        2. "FROM idx" for specifying the start index when deleting a line
           area from or inserting a line area into the table
         "\PROGRAM=J_1IEWT_CERT\DATA=PRINTTAB[]".
        3. "TO idx" for specifying the end index when deleting a line
           area from or inserting a line area into the table
         "\PROGRAM=J_1IEWT_CERT\DATA=PRINTTAB[]".
        At the time of the termination, the table contained 17008 lines.
    How to correct the error
        If the error occurred in your own ABAP program or in an SAP
        program you modified, try to remove the error.
        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:
        "TABLE_INVALID_INDEX" " "
        "J_1IEWT_CERT" or "J_1IEWT_CERT_F01"
        "FILTER_DATA"
        If you cannot solve the problem yourself and want to send an error
        notification to SAP, include the following information:
        1. The description of the current problem (short dump)
           To save the description, choose "System->List->Save->Local File
        (Unconverted)".
        2. Corresponding system log
           Display the system log by calling transaction SM21.
           Restrict the time interval to 10 minutes before and five minutes
        after the short dump. Then choose "System->List->Save->Local File
        (Unconverted)".
        3. If the problem occurs in a problem of your own or a modified SAP
        program: The source code of the program
           In the editor, choose "Utilities->More
        Utilities->Upload/Download->Download".
    Tried searching for some SAP Notes to fix the issue, no success as of now, Please help me out...

    Have you checked these notes ?
    363107 Short dump occurs during TDS certificate printing.
      803806  Error while genrating TDS certificate 03.01.2005
      1066049  J1INCERT - Error while generating TDS certificate
    Regards,
    Subhash

  • Report gets cancelled or terminated after eight hours

    While doing load testing of reports, all of my reports got cancelled or terminated after eight hours. I bang the report server and database with 30 long running reports using RWCGI60. The rwcgi60/showmyjobs shows that all are running for 8 hours and after that boom... all gets cancelled one by one with in a five minute period. I still see the SQL session activity on database. The report server log says the server engines are crashed one after the other. I have Maxengine set to 15. When I submit 30 reports I see 15 running and 15 enqueued.
    Is there any timeout parameter set on RWCGI60 where by it lost contact of database? RWCLI60 works fine and finished all reports.
    Thanks and Please let me know if you further information...

    Hi
    The timeout is a seeting in http server on which you host Reports CGI. Once that time limit is reached and no output is written, the web server would time out for that request. Reports CGI does not have any timeout parameter property.
    Thanks
    Rohit

  • Excise Invoice is not getting Cancelled

    Dear Friend
    When we create an invoice in vf01, excise invoice gets created automatically. But when we are cancelling the billing document excise invoice is not getting cancelled. Why its happening? Will you please tell if any customization is needed?
    IF I need to cancel excise invoice from j1ih, the system requires input for the following:
    Document Number
    Document Year
    Is this document number a customer invoice no or excise invoice no?
    Thanks
    Sangeeta

    The same question you have posted twise
    Excise Invoice is not getting Cancelled

  • SAP Standard Jobs are getting canceled

    Hi Basis Gurus,
    In our Quality BW 3.5 system the SAP Standard jobs are getting canceled.
    The jobs are as follows
    SAP_APPLICATION_STAT_COLLECTOR
    SAP_CCMS_CPH_HRCOLL
    SAP_CCMS_MONI_BATCH_DP
    SAP_COLLECTOR_FOR_JOBSTATISTIC
    SAP_COLLECTOR_FOR_NONE_R3_STAT
    SAP_COLLECTOR_FOR_PERFMONITOR
    SAPCONNECT ALL SEND
    SAP_REORG_ABAPDUMPS
    SAP_REORG_SPOOL
    SAP_RSICFDLT
    In SM37 when i click on the job log for the above mentioned jobs the system is promting a message saying as "Error reading job log"
    Please let me know how can troubleshoot it and resolve this issue.
    Our is qulaity BW 3.5 system
    Solaris OS
    Oracle Database
    Please help me.
    Regards,
    Anil.

    Hi ,
    For log display reason, try the note suggested. Jobs cancel reason may be due to that the user who schedule that job are locked or not exist on that client. Or other reason will be clear only after log display.
    Ankit

  • LANDSCAPE FETCH job gets cancelled

    Hello Guru's,
    The  LANDSCAPE FETCH job gets cancelled on solution manager system due to the below mentioned error and in order to fix it
    we have already applied the SAP note 1335225 but, the issue still persists.
    Right now, we have come across the SAP note 1108071 which says the job will get cancelled "if you made adaptive computing
    settings in SMSY and the SLD is not accessible".
    can any one help me with how to check the adaptive computing settings in the header data of the system.
    Also, the SLD check from system via tcode:sldcheck is sucessfull and we could access the SLD via browser. Please find the
    details below.
    Properties of RFC destination SAPSLDAPI
    RFC host:
    %%RFCSERVER%%
    program id:      SAPSLDAPI_MP0
    gateway host:
    gateway service:
    Testing the RFC connection to the SLD java client...
    RFC ping was successful
    SLD server access settings:
    host name:   ashb01wa06pr.global.aes.com
    port number: 59000
    user       : SLDAPIUSER
    Use transaction SLDAPICUST if you wish to maintain the SLD server access d
    Launching the SLD GUI in a separate browser window...
    => Verify in the browser GUI that the SLD is in a healthy running state!
    Calling function LCR_LIST_BUSINESS_SYSTEMS
    Retrieving data from the SLD server...
    Function call returned exception code     3
    => Check whether the SLD is running!
    Immediate reponse is highly appreciated
    Best Regards,
    S.Viswanathan

    Hello,
    Could you include the Landscape_fetch error you mentioned in your message?
    I think the issue is still your SLD.  At the bottom of SLDCHECK it tries to retreive business systems in SLD. 
    If it is successfull you will see something like:
    Calling function LCR_LIST_BUSINESS_SYSTEMS
    Retrieving data from the SLD server...
    Function call terminated sucessfully
    List of business systems maintained in the SLD:
       yoursystem1
       yoursystem2
       yoursystem3
      (more...)
    Your SLD check shows that it cannot retrieve systems from the SLD:
    Calling function LCR_LIST_BUSINESS_SYSTEMS
    Retrieving data from the SLD server...
    Function call returned exception code 3
    => Check whether the SLD is running!
    Please make sure that you have configured your SLD according to the post-installSLD setup and configuration guide.  If you still have problems, follow this toubleshooting process...
    http://help.sap.com/saphelp_nw70/helpdata/EN/78/20244134a56532e10000000a1550b0/frameset.htm
    Best Regards.
    Edited by: Phil May on Sep 2, 2009 10:31 AM

  • RDDGENOL job getting cancelled with huge number of ABAP dumps

    Hi,
    In our Production system, we had applied Kernel upto patch level 263 and while
    applying SPAM 30 for release 640 it failed. We tried applying Basis patch 15 still
    it did not went through.
    Since then we are getting around 1500-2500 dumps daily. The job RDDGENOLis getting cancelled and the dumps RAISE_EXCEPTION and SYNTAX_ERROR is displayed in ST22. Today, there were around 2500 dumps in the system.
    When I now run the Database <-> ABAP Dictionary consistency check in
    DB02, I see number of errors for missing objects in the database. There
    are around of dozens of Primary Indexes, secondary Indexes, Tables,
    Views listed in the result:
    Objects Missing in database No.
    =========================== ===
    Primary indexes 6
    Secondary indexes 14
    Tables 37
    Views 26
    When I try to create each of them using SE16 or using SQL utility on OS
    level, it gives an SQL system error. We are also getting thousands of
    dumps each day (attached alongwith this message). Also I see the CPF327E error
    in the OS Level Joblog.
    Also we cannot transport any requests. There is some problem with or
    due to the conversions. Is it a problem with Kernel, ABAP dictionary or
    database.
    Following is the extract of the dumps due to DDIC in 000:
    ============================================================
    Runtime Error          SYNTAX_ERROR
    Date and Time         
    ShrtText
    Syntax error in program "CL_WB_CROSSREFERENCE==========CP ".
    What happened?
    Error in ABAP application program.
    The current ABAP program "SAPLSEWB" 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 "CL_WB_CROSSREFERENCE==========CP ", the following syntax error
    occurred
    in the Include "CL_WB_CROSSREFERENCE==========CM00D " in line 8:
    |    "The type "KEYWORD_TAB" is unknown." 
    ============================================================
    ============================================================
    Runtime Error          RAISE_EXCEPTION
    Date and Time         
    ShrtText
    Exception condition "DESTINATION_NOT_OPEN" raised.
    What happened?
    The current ABAP/4 program encountered an unexpected
    situation.
    What can you do?
    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
    A RAISE statement in the program "SAPLCRFC" raised the exception
    condition "DESTINATION_NOT_OPEN".
    Since the exception was not intercepted by a superior program
    in the hierarchy, processing was terminated.
    Short description of exception condition:
    Specified destination is not open.
    For detailed documentation of the exception condition, use
    Transaction SE37 (Function Library). You can take the called
    function module from the display of active calls.
    How to correct the error
    You may able to find an interim solution to the problem
    in the SAP note system. If you have access to the note system yourself,
    use the following search criteria:
    "RAISE_EXCEPTION" C
    "SAPLCRFC" or "LCRFCU20"
    "RFC_CONNECTION_CLOSE"
    or
    "SAPLCRFC" "DESTINATION_NOT_OPEN"
    or
    "RADBAT01 " "DESTINATION_NOT_OPEN"
    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....... "TXTPDSAP"
    Network address.......... "172.16.0.140"
    Operating system......... "OS400"
    Release.................. "5.3"
    Hardware type............ "0065000655EC"
    Character length......... 8 Bits
    Pointer length........... 64 Bits
    Work process number...... 35
    Short dump setting....... "full"
    Database server.......... "TXTPDSAP"
    Database type............ "DB400"
    Database name............ "TXT"
    Database owner........... "R3TXTDATA"
    Character set............ "en_US.ISO8859-1"
    SAP kernel............... "640"
    Created on............... "Dec 11 2008 23:06:45"
    Created in............... "AIX 1 5 00538A4A4C00 (IBM iSeries with OS400)"
    Database version......... "DB4_52"
    Patch level.............. "263"
    Patch text............... " "
    Supported environment....
    Database................. "V5R2, V5R3, V5R4, V6R1"
    SAP database version..... "640"
    Operating system......... "OS400 2 5, OS400 3 5, OS400 4 5, OS400 1 6"
    Memory usage.............
    Roll..................... 696832
    EM....................... 16759712
    Heap..................... 0
    Page..................... 32768
    MM Used.................. 1383120
    MM Free.................. 3483600
    SAP Release.............. "640"
    User and Transaction
    Client.............. 000
    User................ "DDIC"
    Language key........ "E"
    Transaction......... " "
    Program............. "SAPLCRFC"
    Screen.............. "SAPMSSY0 1000"
    Screen line......... 6
    Information on where terminated
    The termination occurred in the ABAP program "SAPLCRFC" in
    "RFC_CONNECTION_CLOSE".
    The main program was "RADBAT01 ".
    The termination occurred in line 22 of the source code of the (Include)
    program "LCRFCU20"
    of the source code of program "LCRFCU20" (when calling the editor 220).
    The program "SAPLCRFC" was started as a background job.
    Job name........ "RDDGEN0L"
    Job initiator... "DDIC"
    |    Job number...... 00032101    
    ============================================================
    Kindly let me know the immediate fix. Thanks!
    Regards,
    Nick

    Hi Nick,
    I would say, you are having a slight missperception of this forum ... it should not replace your basis ressources in your company.
    What you are doing is pretty complex (and the mixtrure of SPAM Update AND Basis SP seems to be wrong to me) and therefore, it will not be possible, to help you, just based on such a short dump.
    Sorry,
    Volker Gueldenpfennig, consolut international ag
    http://www.consolut.net - http://www.4soi.de - http://www.easymarketplace.de

  • Background job getting CANCELLED

    hello,
    i have  a background job scheduled for a report program.it is getting cancelled and giving the following error:
    "TABLE_ILLEGAL_STATEMENT"
    You attempted to change, delete or create a line in the       
    internal table "???", but no valid cursor exists              
    for the table.                                                
    Possible reasons:                                             
    1. The relevent ABAP/4 statement does not include the addition
       "...INDEX...", although the statement is not               
       inside a "LOOP...ENDLOOP" loop processing this table.      
    2. The relevent ABAP/4 statement was called from within a     
       "LOOP...ENDLOOP" loop after a DELETE "???".                                                                               
    what could be the reason?

    it is also giving following error message:
    Caution: Program has changed
    Caution: At time of termination,  Active source code no longer available  and after above two statements its giving sign "?" before every statement in below manner:
    024300 ?     lit_ekpo_dummy1[] = it_ekpo[].                     
    024310 ?     DELETE lit_ekpo_dummy1 WHERE ebeln NE tab1-ebeln.  
    024320 ?     DESCRIBE TABLE lit_ekpo_dummy1 LINES count01.      
    024330 ?                                                        
    024340 ?     REFRESH lit_ematn_dummy[].                         
    024350 ?     lit_ematn_dummy[] = lit_ematn[].

  • Job getting cancelled

    Hi All,,
    We have a job" UPC_BUNDLE_EXECUTE" which is getting cancelled everyday
    here ar
    Job started
    Step 001 started (program UPC_BUNDLE_EXECUTE, variant &0000000000000, user ID )
    Global planning sequence was terminated with errors
    Job cancelled after system exception ERROR_MESSAGE

    Hi,
    I have already checked... but no dumps exits..
    but this job is getting cancelled daily...
    can anybody throw a light on this...
    appreciate your guidance
    Regds

  • Job getting cancelled with Tbale_illegal_statement dump

    hello,
    Hi Experts,
    i have a background job scheduled for a standard transaction SARA .it is getting cancelled and giving the following error:
    "TABLE_ILLEGAL_STATEMENT"
    Information on where terminated
    The termination occurred in the ABAP program "SAPLCKMLLAARCH" in
    "CKMLLA_INIT_READ".
    The main program was "RKSARCDL ".
    The termination occurred in line 253 of the source code of the (Include)
    program "LCKMLLAARCHF01"
    of the source code of program "LCKMLLAARCHF01" (when calling the editor 2530).
    The program "SAPLCKMLLAARCH" was started as a background job.
    The line it is giving Dump Is >       INSERT handle_tab.
    I have tried to debug the transaction but the execution is not ata all going to the program
    SAPLCKMLLAARCH where it is giving dump.Propably because that program is running in Background.
    So please let me know how I can fix this issue..Please

    Hi Prashanth,
    Were you able to resolve the issue ? Because, i am also facing the same problem, when I am triggering the Delete step for CO_CCMAST archiving object.
    Regards,
    Shail.

  • Background Job get Cancelled when executing the report. Reason?

    Hi All,
    I have scheduled a Back ground Job and executed Immediately.
    when checking transacion SM37 the job get canceled.
    How to find out the problem for the Job Cancellation.
    Regards,
    Viji

    hi
    After scheduling back ground job ( give a time laps of 2 min )
    then go to sm37 ( at this moment , the job is not yet started) .
    select ur job in sm 37 and when job starts processing , type JDBG as the command and press enter.
    Now it will go to the debugging screen, where u will find system program . Now set a break point at the stements used in ur program from the debugging screen itself.( menu - breakpoint- breakpoint at - statement ) and press F8 .
    Now you can start debug ur code.
    Revrt back if any issues.
    Regards,
    Naveen

Maybe you are looking for

  • Upgrade to 10.4.7, now USB flash drive isn't recognized

    I upgraded to 10.4.7 the other night, but the installation was interrupted. Apple Support got the machine up and running by doing a safe boot and removing some corrupted start up files. Problem is that my USB memory key isn't recognized. It works fin

  • PID motor control

    VTrying to implement system similar to https://decibel.ni.com/content/docs/DOC-16983 with a9 volt DC motor max speed 350 rpm  The problem that I am facing in here is that 1.>when i set a desired speed more than 200 rpm the controller output oscillate

  • Dolby Digital Audio AC3

    What do I do to fix the sound for my Quicktime, I'm not able to watch some of the videos on my computer because I do not have this component. How do I fix this?

  • 2500 WLC ports auto negotiate?

    I see the 2500 porst are 1 Gigabit ports. Are they 10/100/1000 ports though? Have an older switch that only has 10/100 ports. Thanks

  • Rc file configuration after new network connection

    Hi all, last week we add a new network adapter to the netapp filers fas 2240 with HA Pair ( OnTap 8.2.3 P4) on e1a (10g). I do this on both filer. e0a: flags=0x9f4c867<UP,BROADCAST,RUNNING,MULTICAST,TCPCKSUM> mtu 1500 ether 02:a0:98:53:36:7e (auto-10