Payroll Runtime error - Division by 0 (type P) in program "RPCTX0KC"

Dear All,
I am running Canadian Payroll on ECC 6.0 (Curent HRSP level is 40 SAPKE60040) . when I run the transaction : PC00_M07_CALC_SIMU it throws ABAP Dump.
Standard Schema (Tcode : PE01) --> K000 is used in running payroll. Currently if I dont want this dump to occur I will have to put a line in comments. -> " 000200 COPY KTX0 * Calculate taxes ". But this line is important for Calculation of Taxes.
Can you please let me know what can be done about it? Is this anything to be done with any Patch or Note or ABAP correction?
ABAP Dump Error :
Runtime Errors BCD_ZERODIVIDE
Except. CX_SY_ZERODIVIDE
Date and Time 17.07.2009 11:53:58
Short text
Division by 0 (type P) in program "RPCTX0KC"
What happened?
Error in the ABAP Application Program
The current ABAP program "RPCTX0KC" had to be terminated because it ha
come across a statement that unfortunately cannot be executed.
Error analysis
An exception occurred that is explained in detail below.
The exception, which is assigned to class 'CX_SY_ZERODIVIDE', was not caught in
procedure "PP_CONTRIBUTIONS_EE" "(FORM)", nor was it propagated by a RAISING
clause.
Since the caller of the procedure could not have anticipated that the
exception would occur, the current program is terminated.
The reason for the exception is:
In the current program "RPCTX0KC", an arithmetic operation ('DIVIDE',
'/', 'DIV' or 'MOD') with a type P operand attempted to divide
by 0.
Missing RAISING Clause in Interface
Program RPCTX0KC
Include RPCTXSK3
Row 75
Module type (FORM)
Module Name PP_CONTRIBUTIONS_EE
Trigger Location of Exception
Program RPCTX0KC
Include RPCTXSK3
Row 117
Module type (FORM)
Module Name PP_CONTRIBUTIONS_EE
Source Code Extract
Line SourceCde ......................... ( This starts at Line 87 - goes to Line 136)
Regards

Dear Monu,
IS this hapening after recent patch updates or after any Notes application ?
The exception is at reading PC294 i.e., Payroll results from Infotypes 0461-463...
Please check it again..
Regards
...Sadhu

Similar Messages

  • Runtime Error Contract -System attempted dynpro 0201 in program "SAPLXM06"

    Hi Experts,
    While Creating Contract in Me31k transaction in IS-Retail server ,
    I am getting a ABAP Runtime Error :
    "The system attempted to use dynpro 0201 in program "SAPLXM06".This dynpro does not exist".
    Program SAPMM06E
    Include MM06EO0C_CUSTSCR1_HEAD_SET_DAT
    Row 10
    Module type (MODULE PBO)
    Module Name CUSTSCR1_HEAD_SET_DATA
    Please suggest how to solve the issue ???
    Any Input is Highly Appreciated.
    Thanks and Regards,
    Selva

    SOLVED BY SAP NOTES

  • Runtime error when i try to execute this program

    I get a runtime error when i run this file using appletviewer. Please help me in getting out of this problem.
    The runtime errror is:
    C:\prashanth>appletviewer HelloMedia.java
    java.lang.NoClassDefFoundError: javax/media/ControllerListener
    at java.lang.ClassLoader.defineClass0(Native Method)
    at java.lang.ClassLoader.defineClass(ClassLoader.java:486)
    at java.security.SecureClassLoader.defineClass(SecureClassLoader.java:11
    1)
    at sun.applet.AppletClassLoader.findClass(AppletClassLoader.java:142)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:297)
    at sun.applet.AppletClassLoader.loadClass(AppletClassLoader.java:108)
    at java.lang.ClassLoader.loadClass(ClassLoader.java:253)
    at sun.applet.AppletClassLoader.loadCode(AppletClassLoader.java:373)
    at sun.applet.AppletPanel.createApplet(AppletPanel.java:579)
    at sun.applet.AppletPanel.runLoader(AppletPanel.java:515)
    at sun.applet.AppletPanel.run(AppletPanel.java:293)
    at java.lang.Thread.run(Thread.java:484)
    The code is :
    <applet code=HelloMedia.class width=500 height=400>
    <param name=FILE value="globe.avi">
    </applet>
    import java.applet.*;
    import java.awt.*;
    import java.net.*;
    import javax.media.*;
    public class HelloMedia extends Applet implements ControllerListener
    Player player;
    public void init()
    setLayout(new BorderLayout());
    String mediaFile = getParameter("FILE");
    try
    URL mediaURL = new URL(getDocumentBase(), mediaFile);
    player = Manager.createPlayer(mediaURL);
    catch(Exception e)
    System.err.println("Exception : " + e);
    player.addControllerListener(this);
    public synchronized void controllerUpdate(ControllerEvent event)
    if(event instanceof RealizeCompleteEvent)
    Component compVisual = player.getVisualComponent();
    Component compControl = player.getControlPanelComponent();
    if(compVisual != null)
    add("Center", compVisual);
    if(compControl != null)
    add("South", compControl);
    validate();
    public void start()
    player.start();
    public void stop()
    player.stop();
    player.deallocate();
    public void destroy()
    player.close();

    My classpath has the following value
    .;.;.;C:\PROGRA~1\JMF21~1.1\lib\sound.jar;C:\PROGRA~1\JMF21~1.1\lib\jmf.jar;C:\Program Files\CosmoSoftware\CosmoPlayer\npcosmop211.zip;%systemroot%\java\classes;.;
    Please help me out.
    Prashanth

  • How to catch CONVT_NO_NUMBER runtime error in ABAP Proxy

    Hi all,
           In our abap proxy program, sometimes the CONVT_NO_NUMBER will happen and cause the program dump and then stuck the whole queue. I noticed that this error cannot be caught by CX_ROOT exception class. So, how can I catch this runtime error and avoid the dump of our program?
    Thanks,
    YiNing

    Hi,
    While Executing the proxy,first give \h TC and then execute the proxy then it will automatically got to debugging mode.
    I think ur data is worng,if it is wrong then only u will get this type of errors.
    Regards,
    Phani

  • Catch CONVT_NO_NUMBER runtime error in OO ABAP Program

    Hi all,
           In our abap proxy program, sometimes the CONVT_NO_NUMBER will happen and cause the program dump. I noticed that this error cannot be caught by CX_ROOT exception class.
           Some told me I can use the CATCH SYSTEM-EXCEPTIONS sentence to catch this runtime error, but it is a old-way syntax and cannot be used with the "try" and "catch".
           So, how can I catch this runtime error and avoid the dump of our program?
    Thanks,
    YiNing

    Hi,
    You are not checking for conversion.
    You are checking ofr logical expression.
    Try below code, it works
    DATA error_ref TYPE REF TO cx_sy_conversion_no_number.
    DATA err_text TYPE string.
    DATA a TYPE i.
    TRY.
        MOVE 'A' TO a.
      CATCH cx_sy_conversion_no_number INTO error_ref.
        err_text = error_ref->get_text( ).
        WRITE err_text.
    ENDTRY.
    Regards,
    Atish

  • Runtime Errors STORAGE_PARAMETERS_WRONG_SET

    Hi,
    My functional team had run customized program in dialog, but after few minutes the error occured as below:-
    Runtime Errors STORAGE_PARAMETERS_WRONG_SET
    What happened?
    The current program had to be terminated because of an
    error when installing the R/3 System.
    The program had already requested 344148608 bytes from the operating
    system with 'malloc' when the operating system reported after a
    further memory request that there was no more memory space
    available.
    What can you do?
    Make a note of the actions and input which 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.
    Set the system profile parameters
    - abap/heap_area_dia
    - abap/heap_area_nondia
    to a maximum of 344148608. Then reduce the value by 10.000.000 to be on the
    safe side.
    Then restart the SAP System.
    SAP Release.............. "620"
    Application server.......
    Network address..........
    Operating system......... "Windows NT"
    Release.................. "5.2"
    Hardware type............ "8x Intel 80686"
    Character length......... 8 Bits
    Pointer length........... 32 Bits
    Work process number...... 15
    Short dump setting....... "full"
    Database server..........
    Database type............ "MSSQL"
    Database name............ "PRD"
    Database owner........... "prd"
    Supported environment....
    Database................. "MSSQL 7.00.699 or higher, MSSQL 8.00.194"
    SAP database version..... "640"
    Operating system......... "Windows NT 5.0, Windows NT 5.1, Windows NT 5.2"
    Then we try run in background job, but error occurred show as below:-
    Runtime Errors         TSV_TNEW_PAGE_ALLOC_FAILED
           Occurred on     25.03.2010 at 16:51:02
    No storage space available for extending the internal table.
    What happened?
    You attempted to extend an internal table, but the required space wa
    not available.
    What can you do?
    Make a note of the actions and input which caused the error.
    To resolve the problem, contact your SAP system administrator.
    You can use transaction ST22 (ABAP Dump Analysis) to view and admini
    termination messages, especially those beyond their normal deletion
    date.
    Try to find out (e.g. by targetted data selection) whether the
    transaction will run with less main memory.
    If there is a temporary bottleneck, execute the transaction again.
    If the error persists, ask your system administrator to check the
    following profile parameters:
    o  ztta/roll_area            (1.000.000 - 15.000.000)
           Classic roll area per user and internal mode
           usual amount of roll area per user and internal mode
    o  ztta/roll_extension       (10.000.000 - 500.000.000)
           Amount of memory per user in extended memory (EM)
    o  abap/heap_area_total      (100.000.000 - 1.500.000.000)
           Amount of memory (malloc) for all users of an application
           server. If several background processes are running on
           one server, temporary bottlenecks may occur.
           Of course, the amount of memory (in bytes) must also be
           available on the machine (main memory or file system swap
           Caution:
           The operating system must be set up so that there is also
           enough memory for each process. Usually, the maximum addr
           space is too small.
           Ask your hardware manufacturer or your competence center
           about this.
           In this case, consult your hardware vendor
    abap/heap_area_dia:        (10.000.000 - 1.000.000.000)
           Restriction of memory allocated to the heap with malloc
           for each dialog process.
    Parameters for background processes:
    abap/heap_area_nondia:        (10.000.000 - 1.000.000.000)
           Restriction of memory allocated to the heap with malloc
           for each background process.
    Other memory-relevant parameters are:
    em/initial_size_MB:         (35-1200)
           Extended memory area from which all users of an
           application server can satisfy their memory requirement.
    I had check parameter value in RZ10 and below is the result:-
    1.abap/heap_area_dia = 2000683008
    2.abap/heap_area_dia = 2000683008
    3. ztta/roll_area = 2000896
    4.ztta/roll_extension   = 2000683008
    5.abap/heap_area_total   = 2000683008
    6.em/initial_size_MB = 20000
    I need advice on this.
    Thank you
    Regards,
    Anang78
    Edited by: anang78 on Mar 25, 2010 10:14 AM

    Hi,
    Your customized program execution is demanding more heap memory. It may be pointing to memory re-configuration.
    Please refer the following SAP Notes and compare your exiting memory parameter settings and do the adjustment according to the available RAM.
    [SAP Note 425207 - SAP memory management, current parameter ranges|https://service.sap.com/sap/support/notes/425207]
    [SAP Note 88416 - Zero administration memory management as of 4.0A/ Windows|https://service.sap.com/sap/support/notes/88416]
    Also analyze the execution of that Customized Program, weather the Coding is optimized, weather the program is executing any Expensive SQL Statement or not.
    Refer SAP Note 129813, one alternative is mentioned to deal with this memory related issue by activating 3GB feature in your existing Windows OS. Please refer Microsoft KB article 283037 and KB 268363 for the same. You will have to edit your boot.ini file to append /PAE switch.
    Regards,
    Bhavik G. Shroff

  • Catching a runtime error

    Hi,
    A runtime error for overflow (type p) occurs with the following details:
    Runtime Errors         COMPUTE_BCD_OVERFLOW    
    Exception              CX_SY_ARITHMETIC_OVERFLOW
    Date and Time          06/12/2007 11:33:13     
    Instead of displaying the dump screen, i'd like to catch the runtime error and display a message instead. The following is the code that causes the error (onhand is too large):
          REQRMENT = FORECAST - ONHAND - OPENQTY.
    Please help,
    Points will be rewarded and all help will be greatly appreciated.
    Thanks,
    John

    According to help, these are the catchable exceptions for a form call:
    Catchable Exceptions
    CX_SY_PROGRAM_NOT_FOUND
    Cause: The specified program was not found.
    Runtime Error: LOAD_PROGRAM_NOT_FOUND
    Cause: The specified program cannot exist because the program name is longer than 40 characters.
    Runtime Error: PERFORM_PROGRAM_NAME_TOO_LONG
    CX_SY_DYN_CALL_ILLEGAL_FORM
    Cause: The specified subroutine was not found.
    Runtime Error: PERFORM_NOT_FOUND
    Cause: The specified index was too small.
    Runtime Error: PERFORM_INDEX_0
    Cause: The specified index was negative.
    Runtime Error: PERFORM_INDEX_NEGATIVE
    Cause: The specified index was too large.
    Runtime Error: PERFORM_INDEX_TOO_LARGE
    CX_SY_DYN_CALL_PARAM_MISSING
    Cause: The called FORM expects more parameters than were specified.
    Runtime Error: PERFORM_PARAMETER_MISSING
    CX_SY_DYN_CALL_PARAM_NOT_FOUND
    Cause: More parameters were specified than expected by FORM.
    Runtime Error: PERFORM_TOO_MANY_PARAMETERS
    CX_SY_DYN_CALL_ILLEGAL_TYPE
    Cause: In the parameter transfer using the addition STRUCTURE, the addressing offsets/> do not match in the current and target structures.
    Runtime Error: PERFORM_BASE_WRONG_ALIGNMENT
    Cause: The deep components contained in the current and target structures cannot be passed to each other. This error can only occur in parameter transfer using STRUCTURE.
    Runtime Error: PERFORM_CAST_DEEP_MISMATCH
    Cause: During the transfer of a generically defined type to the form, a type conflict occurred.
    Runtime Error: PERFORM_CONFLICT_GENERIC_TYPE
    Cause: The table type of the current parameter does not match the table type of the parameter defined in the form.
    Runtime Error: PERFORM_CONFLICT_TAB_TYPE
    Cause: The type of current parameter does not match the type of parameter defined in the form.
    Runtime Error: PERFORM_CONFLICT_TYPE
    Cause: The current parameter occupies less storage space than the target parameter defined in the form. This error occurs only with parameter specification using STRUCTURE.
    Runtime Error: PERFORM_PARAMETER_TOO_SHORT
    Cause: During parameter transfer with the addition STRUCTURE, the fragment views of the current and target parameters do not match. This error only occurs in Unicode programs in
    Runtime Error: PERFORM_CONFLICT_UC_STRUCT
    Cause:When the form is called, an internal table is expected as current parameter.
    Runtime Error: PERFORM_TABLE_REQUIRED
    Cause: A hash table was passed to a parameter defined using TABLES.
    Runtime Error: PERFORM_STD_TAB_REQUIRED

  • Whenever I try to print a pdf document I get a message saying there  a runtime error, I have adobe r

    Whenever I try to print a PDF document, I get a message indicating there is a runtime error, and for me to contact you. My system is Adobe reader 9.3

    A runtime error is a computer error that appears in the form  of a message box consisting of a particular code along with its  corresponding definitions. Usually, a user will notice that the computer  becomes noticeably slow before a runtime error appears.
    After the runtime error message has been displayed and closed, the software that shows this error would  normally close or freeze. In some cases, the operating system will  reboot.
    A wide variety of errors cause these problems. These include:
    conflicts between the TSR (Terminate and Stay Resident Program)
    currently running applications
    software issues
    memory problems
    and harmful applications such as computer viruses
    With this, the procedures necessary to correct this type of error  differs from one case to another. If the runtime error you are  experiencing were caused by a TSR then you can simply use the "end task"  function of the Task Manager.
    If you consequently encounter a runtime error  that is persistent, the software that displays the error message has  certain issues and problems. You can resolve this problem by visiting  the website of the software's developer and downloading and installing  all the updates and patches needed for the smooth running of the  software. However, if you have already installed all updates and patches  and the runtime error message still appears, you can opt to uninstall  and reinstall the program.
    Another type of runtime error is usually caused by memory issues. In  this case, it is a good idea to first contact the developer of the  application that caused the error message. More often than not, they can  provide you with a possible set of solutions. But if their given  solutions cannot resolve the issues, you need to contact the  manufacturer of your computer or motherboard and ask for a technician or  someone from the company who can assess your hardware.
    A different type of runtime error is caused by harmful programs such  as viruses and other malicious processes. These harmful programs are  capable of altering the computer's settings. With this, they are very  much capable of generating runtime errors. In order to prevent runtime  errors that are caused by such malicious programs, you need to  frequently update your antivirus software. If your PC does  not have a good software security program, you need to install one and scan your computer for possible threats  to the stability of your system and the security of your private data.
    What all that means is: There is something in the Adobe Reader that is not functioning properly once it is opened.
    The best way to resolve this is to:
    1. Uninstall Reader (using the Control Panel).
    2. Download and install the Windows Installer Cleanup Utility (msicuu2.exe)
    3. Run the Windows Installer Cleanup Utility to remove the installer for Reader 9 (and previous versions if they are still installed).
    4. Download and install a new copy of Reader, and update it (if required) to 9.3.1.

  • Runtime Errors       " UNCAUGHT_EXCEPTION ...... While loading data

    Hi Gurus:  Need yoyur help to resolve the loading issue (Data Mart)
    Scenario:
        Loading data from BW layer to BI layer - Cube to Cube loading of data.
        Data loaded in DW layer cube with no issues.  However, gives the following error when loading to
        BI layer cube (It is 1:1 mapping excpt for couple of convesrion routines on satndard objects such
        as Material Division, periods and Unit).
    Message:
         *Runtime Errors         UNCAUGHT_EXCEPTION*
         *Exception               CX_RSR_X_MESSAGE*   
    This happens in Program - 'SAPLRRMS'; Include -"LRRMSU13"
    What happened?
        The exception 'CX_RSR_X_MESSAGE' was raised, but it was not caught anywhere 
        along the calhierarchy Since exceptions represent error situations and this error was
        not adequately responded to, the running ABAP program 'SAPLRRMS' has to be
        terminated.
    We are aware of the following 2 OSS notes reference:
    855424 - Error in Formula Compiler
    872193 - Run Time Error 'UNCAUGHT_EXCEPTION' during upload
    Any other solution for this?  please let me know.
    Thanks.......SMaalya

    please replicate DM system.
    -- sameer

  • Runtime Error : ASSERTION_FAILED while clicking on shop button to create SC

    Hi Experts.
    We are using SRM 7.0
    When i am clicking on shop button to create shopping cart getting
    RUNTIME ERROR : ASSERTION_FAILED
    Termination occurred in the ABAP program "/SAPSRM/CL_CH_WD_GAF_FACTORY==CP" -
    in "SET_GAF_PROVIDER".
    The main program was "SAPMHTTP ".
    In the source code you have the termination point in line 29.
    Please suggest what should I do ?
    Thanks and Regards
    Bumhwan oh

    Hi Venkatesh.
    Thanks for your reply.
    But Note 1341605 has nothing to do with what we are discussing.
    My problem is why runtime error result when I click Shop button in Employee Self-Service.
    Here is source code in method SET_GAF_PROVIDER.
      IF io_fpm_gaf IS NOT BOUND. "SRM 6.0 coding (without FPM)
    Get Class Name from explicit configuration (stored in mapped context)
        lo_context_node = io_wd_context_node->get_child_node( name = 'CONFIGURATION_NODE' ).
        lo_context_element = lo_context_node->get_element(  ).
        lo_context_element->get_attribute(
          EXPORTING
            name =  `CLASS_NAME`
          IMPORTING
            value = lv_class_name ).
        CATCH SYSTEM-EXCEPTIONS create_object_class_not_found = 4.
          CREATE OBJECT lo_gaf_provider
            TYPE
              (lv_class_name)
            EXPORTING
              io_wd_context_node = io_wd_context_node.
        ENDCATCH.
        " Cause: The class specified in the TYPE addition does not exist
        " [..]  handle exception / abort use case
          ASSERT FIELDS 'GAF Provider Class Name is not valid' lv_class_name
               CONDITION  sy-subrc = 0.

  • NoSuchElementExists runtime error

    This is going to be a bit long, so bear with me. I'm getting the following runtime error when I try to run the program:
    at java.util.StringTokenizer.nextToken(StringTokenizer.java:332)
    at MeetingMaker.load(MeetingMaker.java:185)
    at MeetingMaker.<init>(MeetingMaker.java:32)
    at MeetingMaker.main(MeetingMaker.java:19)
    This is the class in question, with lines 19, 32 and 185 in bold:
    import java.io.*;
    import java.util.*;
    public class MeetingMaker
    private ListOfTables list;
    public static void main(String[] args) throws IOException, EOFException
    MeetingMaker m = new MeetingMaker();
    public MeetingMaker( ) throws FileNotFoundException, IOException, EOFException
    <other coding here>
    load()
    <other coding here>
    public void load() throws IOException
    Scanner in = new Scanner(new File("bookingDetails.txt"));
    String name;
    int capacity = 0;
    char[][] timetable = new char[5][8];
    String day;
    String time;
    String venue;
    String[] compulsary = new String[15];
    char[] compulsarytimes = new char[15];
    String[] preferred = new String[15];
    char[] preferredtimes = new char[15];
    String input = in.nextLine();
    int counter = 0;
    StringTokenizer st;
    while(!(input.equalsIgnoreCase("meetingroom1")))
    name = input;
    input = in.nextLine();
    st = new StringTokenizer(input, " ");
    for(int a = 0; a < 5; a++)
    for(int c = 0; c < 8; c++)
    *timetable[a][c] = st.nextToken().charAt(0);*
    input = in.nextLine();
    st = new StringTokenizer(input, " ");
    TimeTable newTimeTable = new TimeTable(name, timetable);
    list.addNode(newTimeTable);
    input = in.nextLine();
    while(!(input.equals("meeting")))
    name = input;
    input = in.nextLine();
    capacity = Integer.parseInt(input);
    input = in.nextLine();
    st = new StringTokenizer(input, " ");
    for(int a = 0; a < 5; a++)
    for(int c = 0; c < 8; c++)
    timetable[a][c] = st.nextToken().charAt(0);
    input = in.nextLine();
    st = new StringTokenizer(input, " ");
    BookingTable newMeetingroom = new BookingTable(name, capacity, timetable);
    list.addNode(newMeetingroom);
    while(!(input == null))
    input = in.nextLine();
    day = input;
    input = in.nextLine();
    time = input;
    input = in.nextLine();
    venue = input;
    input = in.nextLine();
    st = new StringTokenizer(input, " ");
    while(st.hasMoreTokens())
    compulsary[counter] = st.nextToken();
    compulsarytimes[counter] = st.nextToken().charAt(0);
    input = in.nextLine();
    st = new StringTokenizer(input, " ");
    counter++;
    counter = 0;
    while(st.hasMoreTokens())
    preferred[counter] = st.nextToken();
    preferredtimes[counter] = st.nextToken().charAt(0);
    input = in.nextLine();
    st = new StringTokenizer(input, " ");
    counter++;
    Meeting newMeeting = new Meeting(day, time, venue, compulsary, compulsarytimes, preferred, preferredtimes);
    list.addNode(newMeeting);
    in.close();
    The text file looks like this:
    John
    3 3 3 3 3 3 3 3
    1 3 1 1 2 2 2 3
    2 2 2 2 2 3 2 1
    1 3 3 3 2 3 2 1
    3 1 2 2 2 1 3 1
    Aaron
    3 3 3 3 3 3 3 3
    1 1 3 1 2 2 3 2
    1 1 2 2 3 2 3 1
    1 3 3 3 2 3 1 3
    1 1 2 3 3 1 2 2
    Rachel
    1 1 1 3 2 3 3 1
    3 3 2 2 2 2 2 2
    2 2 2 2 2 2 2 2
    3 3 3 3 2 3 3 3
    2 2 2 3 2 2 2 2
    Michael
    3 3 3 3 3 3 3 3
    3 3 1 1 3 3 3 3
    3 3 3 3 3 3 3 3
    2 2 2 2 3 3 3 1
    1 1 2 3 2 2 2 1
    MeetingRoom1
    3
    1 1 1 3 1 3 3 1
    3 1 3 1 1 1 1 1
    3 3 1 1 1 1 1 1
    1 1 3 3 1 1 1 1
    1 1 1 3 1 3 1 1
    MeetingRoom2
    15
    1 1 1 3 1 3 3 1
    3 1 1 1 1 1 1 1
    3 3 1 1 1 1 1 1
    1 1 3 3 1 1 1 1
    1 1 1 3 1 3 1 1
    meeting
    Tuesday
    11:00
    MeetingRoom1
    Lucy 1 Aaron 1 Rachel 1
    Again, I apologize for how long this is, but I don't know if the error is just from one line, or if it's from somewhere else in the class, so I put it all in to be safe. Also, I don't know if it makes a difference, but the LinkedList class is not standard. It's a linked list of Objects, since it has to store three different types in the one list. And I am well aware that it isn't all that great to have the stuff that should be in main in the constructor, but my tutor told me that was the easiest way to fix the "cannot call a static method from a non-static context" error I was getting beforehand.
    EDIT: I'm using Scanner to read the file because I'm not allowed to use anything else.
    Edited by: skenasis on Oct 20, 2007 9:00 PM

    I know that's where the problem is, but I don't know why. I do know that it's good practice to check if there are more tokens, but we were told to assume that all input is correct, so no error checking is required. That's why I didn't bother with a hasMoreTokens() check.
    I'm pretty sure it's reading the right line, so they only thing I can think of is that it's trying to insert elements into the array the wrong way around. That is, it's a 5x8 array and I'm trying to read in elements in an 8x5 fashion (or the other way around). Is that what's happening? If so, would I just have to switch around the 8's and 5's in the nested for loop to fix it?

  • Reg runtime error

    hai to all,
    i am trying to run PO bapi. suddenly i am getting runtime error as
    "Data objects in a Unicode program are not convertible"
    Error in ABAP application program.                                                                               
    The current ABAP program "SAPLGRAP" had to be terminated because one of the  statements could not be be executed.                                                                               
    This is probably due to an error in the ABAP program.                        
    i tried to debug the entire program , runtime error occurs immediately after executing.
    please let me know how to correct the error
    regards
    vijay

    Hi,
    This may be due to some structure incompatibility. use function module 'pi_bp_move_unicode' to move the structures, there by avoiding dumps. The imported parameter from the FM should be sent to the BAPI.
    If this is useful, award points pls..
    Regards,
    Bharadwaj

  • Hit Runtime ERROR

    HI,
    This message appears at the bottom of the screen when i execute my program.
        "Runtime error TIME_OUT has occurred"
    When i debug the program, it seems to take longer time than expected at this FM
        "HR_INFOTYPE_OPERATION"
    When i try to run this FM at foreground, my data is uploaded successfully to the Infotype that i wanted but when i did this at background.. the above runtime error were shown.
    I have never been hit with this runtime error message all these while in my program. Only today when i tried to execute my program, the above message is sown.
    Please assist me as i needed the explanation / solution ASAP.
    Thanks,
    Loo

    Hi Atish,
    Its at this :-
    CALL FUNCTION 'HR_INFOTYPE_OPERATION'
    where its taking a long time.......
    Please advise for further steps.
    Thanks,
    Loo

  • Runtime Error : ASSERTION_FAILED while resubmit the SC to create FOD

    Hi
    We are using SRM 5.00 classic scenario.
    When i am clicking on resubmit button to create follow on document getting
    RUNTIME ERROR : ASSERTION_FAILED
    Termination occurred in the ABAP program "CL_BBP_BS_MAP_SC2RQ===========CP" -
    in "MAP_DELIVERY_ADDRESS".
    The main program was "SAPLBBP_MON_SC ".
    In the source code you have the termination point in line 20
    of the (Include) program "CL_BBP_BS_MAP_SC2RQ===========CM00J".
    Please suggest what should i do ?
    Thanks and Regards
    Ruma Paul.

    Hi Ruma,
    Please check the following OSS Notes:
    Note 1169451 - ASSERTION_FAILED: Shopping stuck in Error in transmission
    Note 980296 - ASSERTION_FAILED dump upon resubmitting the shopping cart.
    Note 996674 - Check status of shopping cart raise short dump
    Note 1027966 - ASSERTION_FAILED dump for shopping cart items in spool
    Thanks,
    Pradeep

  • ABAP Runtime Error : RAISE_EXCEPTION

    Hi Friends,
    I am getting the below dump.
    Runtime Error: RAISE_EXCEPTION
    A RAISE statement in the program "SAPLRSDU_PART" raised the exception condition "TABLE_NOT_EXISTS".
    Can any body help me to understand why this error occured.
    Thanks & Regards
    Prasanth

    Friends,
    Below is the place where it got terminated.But the issue solved by rerunning the process chain. We have to provide report on why this error occured. So please tell me could be is the reason behnd this error.
    Information on where terminated                                                                  
        Termination occurred in the ABAP program "SAPLRSDU_PART" - in                                
         "RSDU_PARTITIONS_INFO_GET".                                                                 
        The main program was "RSPROCESS ".                                                           
         In the source code you have the termination point in line 47                                 
        of the (Include) program "LRSDU_PARTU02".                                                    
        The program "SAPLRSDU_PART" was started as a background job.                                 
        Job Name....... "BI_PROCESS_REPA_BC"                                                         
        Job Initiator.. "MAESTRO"                                                                    
        Job Number..... 06564401

Maybe you are looking for