'CONVT_NO_NUMBER'  run time error in custom program of upgraded ECC system.

Hi,
I am getting a run time error in custom program and st22 shows 'CONVT_NO_NUMBER' as the cause.
We have just upgraded system to ECC6 and with 4.7 we were not getting this error.
Can you please let me know if there is any SAP note to address this ?
Thanks,
Avinash

Hi Avinash,
Please see the below link for Sap Notes:
[Program is giving a Short Dump u201CCONVT_NO_NUMBERu201D.;
Regards,
Md Ziauddin

Similar Messages

  • Run Time Error in My Program

    I am javing difficulty with a program I am working on and would be grateful if somebody could point me in the right direction as to how to correct my program. I will put the four source files on this post to allow you to have a look at the code I am trying to sort out. It compiles for me but when I try to run it I get the following error:
    java.lang.ArrayIndexOutOfBoundsException: 4      
    at LayoutGUI.<init>(LayoutGUI.java:63)      
    at RunGUI.main(RunGUI.java:9)

    import java.awt.*;
    import java.awt.event.*;
    import javax.swing.*;
    import java.io.*;
    public class LayoutGUI extends CloseableFrame implements ActionListener
         private final int MAX_SIZE = 50;
         private int total = 0;
         private JTextArea questionArea;
         private JTextArea answerArea;
         private JLabel answerLabel;
         private Choice answerChoice;
         private JButton submitButton;
         private JButton clearFormButton;
         private JLabel resultsLabel;
         private JTextArea resultsTextArea;
         private JScrollPane sp_resultsTextArea;
         private int totalQuestions = 0;
         protected Question[] thequestions = new Question[MAX_SIZE];
         public LayoutGUI()
              boolean done;
              String question;
              String[] choice = new String[4];
              String correctAnswer;
              int total = 0;
              String TEXT_FILE = "questions.txt";          
              // question descriptions from file
              // open BufferedReader connection to text file
              File file = new File(TEXT_FILE);
              BufferedReader in = null;
              try
                   in = new BufferedReader(new FileReader(file));
              catch (FileNotFoundException e)
                   System.err.println("Error opening text file, file not found!");
                   System.exit(1);
              // read next question description (repeat the following
              // as often as necesary to process all text content)
              done = false;
              while (!done)
                   try
                        question = in.readLine();
                        choice[1] = in.readLine();
                        choice[2] = in.readLine();
                        choice[3] = in.readLine();
                        choice[4] = in.readLine();
                        correctAnswer = in.readLine().trim();
                        if (question==null || choice[1]==null || choice[2]==null || choice[3]==null || choice[4]==null || correctAnswer==null)
                             done = true;
                        else total++;
                   catch(IOException ioex)
                        System.err.println("problem reading text file");
                        ioex.printStackTrace();
                        System.exit(1);
              try
                   in.close();
              catch(IOException ioex)
                   System.err.println("problem closing text file");
                   ioex.printStackTrace();
                   System.exit(1);
              // end of reading text file
              competenceTestLayout customLayout = new competenceTestLayout();
              getContentPane().setFont(new Font("Helvetica", Font.PLAIN, 12));
              getContentPane().setLayout(customLayout);
              // component 0
              questionArea = new JTextArea("");
              getContentPane().add(questionArea);
              //component 1
              answerArea = new JTextArea("");
              getContentPane().add(answerArea);
              // component 2
              answerLabel = new JLabel("");
              getContentPane().add(answerLabel);
              // component 3
              answerChoice = new Choice();
              answerChoice.addItem("A");
              answerChoice.addItem("B");
              answerChoice.addItem("C");
              answerChoice.addItem("D");
              getContentPane().add(answerChoice);
              // component 4
              submitButton = new JButton("Search");
              getContentPane().add(submitButton);
              // component 5
              clearFormButton = new JButton("Clear");
              getContentPane().add(clearFormButton);
              //component 6
              resultsLabel = new JLabel("Please find below the results from your search:");
              getContentPane().add(resultsLabel);
              // component 7
              resultsTextArea = new JTextArea("");
              sp_resultsTextArea = new JScrollPane(resultsTextArea);
              resultsTextArea.setEditable(false);
              getContentPane().add(sp_resultsTextArea);
              submitButton.addActionListener(this);
              clearFormButton.addActionListener(this);
         public void actionPerformed(ActionEvent e)
              Object source = e.getSource();
              if (source == clearFormButton)
              // Reset all fields back to their original state
              questionArea.setText("");
                   answerArea.setText("");
                   answerChoice.select(0);
                   resultsTextArea.setText("");
              if (source == submitButton)
                   total = 0;
         class competenceTestLayout implements LayoutManager
              public competenceTestLayout()
              public void addLayoutComponent(String name, Component comp)
              public void removeLayoutComponent(Component comp)
              public Dimension preferredLayoutSize(Container parent)
                   Dimension dim = new Dimension(0,0);
                   Insets insets = parent.getInsets();
                   dim.width = 725 + insets.left + insets.right;
                   dim.height = 406 + insets.top + insets.bottom;
                   return dim;
              public Dimension minimumLayoutSize(Container parent)
                   Dimension dim = new Dimension(0,0);
                   return dim;
              public void layoutContainer(Container parent)
                   Insets insets = parent.getInsets();
                   Component c;
                   c = parent.getComponent(0);
                   if (c.isVisible()){c.setBounds(insets.left+8,insets.top+4,312,24);}
                   c = parent.getComponent(1);
                   if (c.isVisible()){c.setBounds(insets.left+320, insets.top+6,20,20);}
                   c = parent.getComponent(2);
                   if (c.isVisible()){c.setBounds(insets.left+8,insets.top+96,288,24);}
                   c = parent.getComponent(3);
                   if (c.isVisible()){c.setBounds(insets.left+336,insets.top+96,136,24);}
                   c = parent.getComponent(4);
                   if (c.isVisible()){c.setBounds(insets.left+216,insets.top+224,96,24);}
                   c = parent.getComponent(5);
                   if (c.isVisible()){c.setBounds(insets.left+336,insets.top+224,96,24);}
                   c = parent.getComponent(6);
                   if (c.isVisible()){c.setBounds(insets.left+184,insets.top+264,336,24);}
                   c = parent.getComponent(7);
                   if (c.isVisible()){c.setBounds(insets.left+24,insets.top+296,688,104);}
    }

  • Run time eroor for customer report after upgrade DYNP_TOO_MANY_RADIOBUTTONS

    Hi friends,
                   I am getting runtime error after upgrade of our systems from sap 4.7 to ECC 6.0.There is a report which has three radio butons,in which third radio button is set as default .there are 5 variants for the report.If select any variant which selects the second radio button.Getting runtime error.
    The error is DYNP_TOO_MANY_RADIOBUTTONS_ON.
    Thanks & Reghards,
    Manoj

    Might be case two buttons are set on at single time....
    see this:
    handle the exception on radibutton.
    DYNP_TOO_MANY_RADIOBUTTONS_ON

  • Getting run time errors while executing the copied SAP programs

    Hi folks,
    i want to copy an sap program.after coping i need to change some coding there.then i have to create a new transaction for that.
    i am just copying the sap program RQEEAL10(transaction-QA32) to Z_RQEEAL10. it has 4 include  programs.i am copying them to z programs like
    RQ00MF10 copied to z_RQ00MF10
    RQALVF14 copied to z_RQALVF14
    RQALVF16 copied to z_RQALVF16
    RQALVTOP copied to z_RQALVTOP.
    now i am executing that program Z_RQEEAL10.but i am getting run time errors as given below.
    <b>runtime error---</b>
    The termination occurred in the ABAP program "Z_RQEEAL10" in           
    "SELECT_FIELDS_MANIP2_F16".                                           
    The main program was "Z_RQEEAL10 ".                                                                               
    The termination occurred in line 257 of the source code of the (Include)
    program "RQALVF16"                                                    
    of the source code of program "RQALVF16" (when calling the editor 2570).
    --Error in ABAP statement when processing an internal table.  
    --When changing or deleting one or more lines of the internal table         
    "\PROGRAM=Z_RQEEAL10\DATA=SELECT_FIELDS" or when inserting in the table   
    "\PROGRAM=Z_RQEEAL10\DATA=SELECT_FIELDS", 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=Z_RQEEAL10\DATA=SELECT_FIELDS"                                 
       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=Z_RQEEAL10\DATA=SELECT_FIELDS".                                
    3. "TO idx" for specifying the end index when deleting a line             
       area from or inserting a line area into the table                      
    "\PROGRAM=Z_RQEEAL10\DATA=SELECT_FIELDS".                                                                               
    When the program terminated, the table had 2 lines.                       
    these r the runtime errors what i am getting.where is the problem?i have activated all interface & includes.plz advice.
    Thanks & regards

    Hi Madhu,
    I will give you one more check point where you have to give your concentration while copying the standard programs....
    Call Customer-Function (Function Exists) if any in the Program when copied will not get executed. Instead you need to call the FM Directly.
    one more is also here
    You are likely to have some problems with the text-elements and translation that may have been maintained for the original report.
    ~~Guduri

  • ABAP Run time error when display the Customs Export declarations

    Hi,
    I'm receiving ABAP Run time error when display the Customs Exp. Declarations Under SAP Customs Processing -> Customs Processing - Import / Export -> Monitoring.
    Error messaging point to Function Module - /SAPSLL/CUHD_LOAD_SELECTION.
    While debugging we found that Primary Key of the below structures are not the same
    lt_corpar                              type      /sapsll/corpar_t
    lt_corpar_ht       type      /sapsll/corpar_k02_ht
    Does anyone has the SAP Notes or solution to this issue other than changing the structures manually. I'm not sure about the impact if i change manually
    Error message short details
    Termination occurred in the ABAP program "/SAPSLL/SAPLCUHD_SELECTION" - in
         "/SAPSLL/CUHD_LOAD_SELECTION".
        The main program was "/SAPSLL/CULO_DISPLAY_CUS_EXP ".
        In the source code you have the termination point in line 144
        of the (Include) program "/SAPSLL/LCUHD_SELECTIONU01".
    We are on GTS Release 8.0 and Support Package SAPK-80014INSAPSLL (Support pack level 14).
    Regards,
    Pradeep Maddi

    Hi,
    I have implemented SAP Note 1531799, but it hasn't resolved the current issue.
    For Our GTS instance, there are 2 Feeder Systems (ECC) attached, but document transfer in one of the system has not been activated. Both having the same partner functions ( We copied the sandbox into 2 different instances for different business Testings and now these 2 instances attached to GTS for testing). These feeder systems have different Logical system names and Logical system groups.
    Recently i have implemented SAP Corrections manually for one the issue, Please see below thread for the detail information
    Proforma Invoice not transferred to GTS
    After implementing the corrections, i have created Pro-forma invoice in ECC system. When i tried to display, i'm facing the ABAP Dump issues.
    Error details
    Runtime Errors         ITAB_DUPLICATE_KEY
    ABAP Program           /SAPSLL/SAPLCUHD_SELECTION
    Application Component  SLL-LEG
    You tried to insert an entry into table  "\FUNCTION=/SAPSLL/CUHD_LOAD_SELECTION\DATA=LT_CORPAR_HT". However, updating the unique table key "PRIMARY_KEY" resulted in a duplicate entry. The key concerned may be either the primary key or a secondary key.
    Regards,
    Pradeep

  • Run-time error "CONVT_NO_NUMBER" occurred

    Hi,
       When I checked my Development System for logs (using SM21)I got the logs
    which are as follows :
    02:16:33 DIA 001 100 KMENON       VF02 AB0 Run-time error "CONVT_NO_NUMBER" occurred
    02:39:27 DIA 000 100 KMENON            AB0 Run-time error "OBJECTS_NOT_CHAR" occurred
    Can someone please help me to know what the above logs describe and what are  the reasons for these Run-time errors and suggest the solution for these runtime errors.
    Below is the description of the above logs which I can see in my Development System:
    Details Page 2 Line 7 System Log: Local Analysis of SAPECCDEV                 1
    Time     Ty. Nr  Cl. User         Tcod MNo Text                                                                   Date : 10.09.07
    02:16:33 DIA 001 100 KMENON       VF02 AB0 Run-time error "CONVT_NO_NUMBER" occurred
    Details
    Recording at local and central time........................ 10.09.2007 02:16:33
    Task................ 05532  /  Dialog work process No. 01
    User................ KMENON
    Client.............. 100
    Terminal............ alpha-pa
    Session............. 2
    Transaction code.... VF02
    Program name........ SAPMV60A
    Problem class....... T    Transaction Problem
    Development class... SABP
    Further details for this message type
    Module name......... abmove1
    Line................ 1892
    Error text.......... ab_Zappy
    Documentation for system log message AB 0 :
    The specified runtime error has occurred in the system.
    Parameter
      a.. CONVT_NO_NUMBER
    Technical details
    File................ 000008
    Position............ 0000235800
    Entry type.......... l      ( Error (Module, Row)            )
    Message ID.......... AB 0
    Variable parts...... ab_Zappy                                            abmove1 1892
    Details Page 2 Line 10 System Log: Local Analysis of SAPECCDEV                1
    Time     Ty. Nr  Cl. User         Tcod MNo Text                                                                   Date : 10.09.07
    02:39:27 DIA 000 100 KMENON            AB0 Run-time error "OBJECTS_NOT_CHAR" occurred
    Details
    Recording at local and central time........................ 10.09.2007 02:39:27
    Task................ 05576  /  Dialog work process No. 00
    User................ KMENON
    Client.............. 100
    Terminal............ alpha-pa
    Session............. 2
    Transaction code....
    Program name........
    Problem class....... T    Transaction Problem
    Development class... SABP
    Further details for this message type
    Module name......... abtchk
    Line................ 0543
    Error text.......... ab_jtychk
    Documentation for system log message AB 0 :
    The specified runtime error has occurred in the system.
    Parameter
      a.. OBJECTS_NOT_CHAR
    Technical details
    File................ 000008
    Position............ 0000236520
    Entry type.......... l      ( Error (Module, Row)            )
    Message ID.......... AB 0
    Variable parts...... ab_jtychk                                           abtchk  0543

    Hi Joerg,
             Actually I don't know about ABAP Programming but I can send you the ABAP source code which is as follows:
           Modulpool zur Fakturierung
           Report-Header / Tabellen / Daten / Field-Symbols
             INCLUDE MV60ATOP.
           PBO - Module alphabetisch geordnet
             INCLUDE MV60AO0C.
             INCLUDE MV60AO0D.
             INCLUDE MV60AO0F.
             INCLUDE MV60AO0I.
             INCLUDE MV60AO0R.
             INCLUDE MV60AO0S.
             INCLUDE MV60AO0T.
             INCLUDE MV60AO0V.
             INCLUDE MV60AO0X.
             INCLUDE MV60AOTX.             "Textverarbeitung
           PAI - Module alphabetisch geordnet
             INCLUDE MV60AI0B.
             INCLUDE MV60AI0D.
             INCLUDE MV60AI0F.
             INCLUDE MV60AI0K.
             INCLUDE MV60AI0N.
             INCLUDE MV60AI0R.
             INCLUDE MV60AI0V.
             INCLUDE MV60AI0X.
             INCLUDE MV45AITX.             "Textverarbeitung
           PAI - Module alphabetisch geordnet
             include mv60av0v.
           FORM-Routinen alphabetisch geordnet
             INCLUDE MV60AF0B.
             INCLUDE MV60AF0C.
             INCLUDE MV60AF0E.
             INCLUDE MV60AF0F.
             INCLUDE MV60AF0K.
             INCLUDE MV60AF0N.
             INCLUDE MV60AF0S.
             INCLUDE MV60AF0T.
             INCLUDE MV60AF0V.
             INCLUDE MV60AF0X.
           INCLUDE-Baustein zur Nachrichtensteuerung
             INCLUDE FV61BF00.
    INCLUDE MV60AI0P_PASS_FCODE.
    INCLUDE MV60AI0G_GET_FCODE.
    INCLUDE MV60AO0P_PRICING_SET_DATA.
    INCLUDE MV60AI0P_PRICING_GET_DATA.
    INCLUDE MV60AI0S_STATUS_6900.
    INCLUDE MV60AO0F_TABLECONTR.
    INCLUDE MV60AO0P_PBO_TABSTRIP.
    INCLUDE MV60AF0P_PBO_TABSTRIP.
    INCLUDE MV60AI0P_PAI_TABSTRIP.
    INCLUDE MV60AF0P_PAI_TABSTRIP.
    INCLUDE MV60AO0R_REGULIERER_ADRESSE.
    INCLUDE MV60AI0X_XVBRP_INIT.
    INCLUDE MV60AF0X_XVBRP_INIT.
    INCLUDE MV60AF0P_PBO_TABSTRIP_EXPORT.
    INCLUDE MV60AF0P_PBO_TABS_INIT_EX_ITEM.
    INCLUDE MV60AF0P_PBO_TABS_EX_ITEM.
    INCLUDE MV60AI0P_PAI_EXPORT_HEADER.
    INCLUDE MV60AF0P_PAI_EXPORT_HEADER.
    INCLUDE MV60AI0P_PAI_EXPORT_ITEM.
    INCLUDE MV60AF0P_PAI_EXPORT_ITEM.
    INCLUDE TCRTDATA.
    INCLUDE MV60AF0K_KURGV_TXTPA_ERMITTELN.
    INCLUDE MV60AI0S_SD_PARTNER_GET_FCODE.
    INCLUDE MV60AF0S_SD_PARTNER_GET_FCODE.
    *INCLUDE MV60AF0X_XVBRP_TCTRL_SCROLLEN.
    INCLUDE MV60AO0X_XVBRP_CTRL_INIT.
    INCLUDE MV60AO0X_XKOMFK_TCTRL_INIT.
    INCLUDE MV60AF0X_XKOMFK_TCTRL_SCROLLEN.
    *INCLUDE MV60AO0X_XVBRK_TCTRL_INIT.
    INCLUDE MV60AF0X_XVBRK_TCTRL_SCROLLEN.
    *INCLUDE MV60AO0X_XKOMFK_TCTRL_INIT.
    INCLUDE MV60AO0X_XVBRK_TCTRL_INIT.
    *INCLUDE MV60AF0X_XVBRK_TCTRL_SCROLLEN.
    *INCLUDE MV60AO0X_XVBRP_CTRL_INIT.
    INCLUDE MV60AF0X_XVBRP_TCTRL_SCROLLEN.
    INCLUDE MV60AF0X_XVBPA_KURGV_ERMITTELN.
    INCLUDE MV60AO0C_CUST_HEAD_SET_DATA.
    INCLUDE MV60AF0C_CUST_HEAD_SET_DATA.
    INCLUDE MV60AI0C_CUST_HEAD_PASS_FCODE.
    INCLUDE MV60AF0C_CUST_HEAD_PASS_FCODE.
    INCLUDE MV60AI0C_CUST_HEAD_GET_DATA.
    INCLUDE MV60AF0C_CUST_HEAD_GET_DATA.
    INCLUDE MV60AO0C_CUST_ITEM_SET_DATA.
    INCLUDE MV60AF0C_CUST_ITEM_SET_DATA.
    INCLUDE MV60AI0C_CUST_ITEM_PASS_FCODE.
    INCLUDE MV60AF0C_CUST_ITEM_PASS_FCODE.
    INCLUDE MV60AI0C_CUST_ITEM_GET_DATA.
    INCLUDE MV60AF0C_CUST_ITEM_GET_DATA.
    INCLUDE MV60AO0C_CUST_HEAD_ACTIVATE.
    INCLUDE MV60AF0C_CUST_HEAD_ACTIVATE.
    INCLUDE MV60AO0C_CUST_ITEM_ACTIVATE.
    INCLUDE MV60AF0C_CUST_ITEM_ACTIVATE.
    Regards,
    Ashish Thakkar

  • Portal Run time error after deploying custom logon page par file in portal

    Hi Experts,
       We have customized the standard portal logon par file for client XYZ and imported it with the same name (com.sap.portal.runtime.logon.par)  in portal.
       It is working fine for XYZ . And another client ABC wants the same customization for them also. So we took the par file from XYZ and imported it in ABC system. But in ABC system, we are getting Portal Run time Error. When we checked the logs, it is showing error in LogonBean class.Wwe have included the necesary jar files. Could anyone help us in identifying what is missing?
    Thanks
    VJ

    Hello Vijay,
    Please paste or attach the error log.
    Regards,
    Haseena

  • Break execution after custom run-time error handler callback

    I am using Teststand 2010 SP1 and have written a custom runtime error handler based on the ErrorHandlerExample example that ships with TestStand. It has been implemented as a StationPostStepRuntimeError callback in my Station Callbacks folder.  I have modified the example as follows:
    (1) Added code to turn off the UUT transmitter if it was on.
    (2) Added a call to an executable that sends an email to the currently logged in user.
    (3) Calls the standard TestStand run-time error dialog using the Engine DisplayRunTimeErrorDialog method.
    (4) Processes the user's selection, then turns on the UUT transmitter for any option other then Abort.
    The callback also checks the status of the Break and "Don't Show again for this execution" options selected by the user.  If the user selects Break then the only option I can find is to call the API Execution.Break() method which breaks the execution right there in my callback. The user then has to single step there way out of the callback.   Is there a way of instructing TestStand to complete the callback execution and break immediately after completing the callback (i.e.at the step following the error)?  I've zipped up and attached my modified sequence.
    Alternatively, is there a better way of doing this?
    Regards,
    David
    Solved!
    Go to Solution.
    Attachments:
    StationCallbacks.7z ‏13 KB

    Didn't have a chance to try it yet but maybe StepOut is your solution?
    From the TS Help:
    StepOut Method
    Syntax
    Execution.StepOut
    Purpose
    Resumes the execution from a suspended state and then suspends the execution again after execution of the current sequence completes.
    jigg
    CTA, CLA
    teststandhelp.com
    ~Will work for kudos and/or BBQ~

  • Run time error for program: RPCALCU0_CE

    Hi Abapers,
    When we execute the standard program: RPCALCU0_CE from SE38. Below run time error is getting trigerred before selection screen is displayed. Below are the run time error details -
    Runtime Error          UNCAUGHT_EXCEPTION
    Exception              CX_HRPA_INVALID_PARAMETER
           Occurred on     08/04/2010 at   01:22:17
    What happened?
    The exception 'CX_HRPA_INVALID_PARAMETER' was raised but was not caught at any
    stage in the
    call hierarchy.
    Since exceptions represent error situations, and since the system could
    not react adequately to this error, the current program,
    'CL_HRPA_RESOLVE_EXCEPTION=====CP', had to
    be terminated.
    Error analysis
    An exception occurred. This exception is dealt with in more detail below
    . The exception, which is assigned to the class 'CX_HRPA_INVALID_PARAMETER',
    was neither
    caught nor passed along using a RAISING clause, in the procedure
    "RESOLVE_EXCEPTION" "(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:
    Invalid parameter EXCEPTION, value
    The occurrence of the exception is closely linked to the occurrence of a
    previous exception, "CX_HRPA_VIOLATED_PRECONDITION", which occurred in the
    program "CL_HRPA_MASTERDATA_FACTORY====CP" -
    specifically in line 6 of the (Include) program
    "CL_HRPA_MASTERDATA_FACTORY====CM004".
    The reason for the exception was:
    Precondition violated
    Please suggest the solution to overcome this.

    Hey,
        I could not figure your exact problem. But you can go to the transaction ST22 to take a better look at the error that you got. This gives a detailed explanation of the exact error that you are getting. The moment you enter this transaction, you will see the number of runtime errors you got today. Just click on 'Today'. This will give you the list of runtime errors. Click on the relevent error and you can get a much more detailed explanation of the same.
    Hope this helps.

  • Run time error (short dump) executing program SCAN_BW_REFERENCES in SE80

    Hi experts,
    I am not an ABAPer, or Basis person, rather a hybrid functional/technical Key User for our Business Warehouse system (BW 3.5, Netweaver 2004).  We have a user who cannot save BW reports to his favorites and he is getting a number of error messages.  OSS note 887002 seems to address this and indicates that I should run program SCAN_BW_REFERENCES from transaction SE80.  The program is supposed to perform the checks for BW objects assigned to the Favorites and identify situations causing terminations in BW frontend applications.  I have attempted to execute this program on several occassions and always get run-time errors (short dumps).  Here is the error:
    Runtime Errors         TSV_TNEW_PAGE_ALLOC_FAILED
    Date and Time          2008.09.17 19:00:49
    ShrtText
         No storage space available for extending an internal table.
    What happened?
         You attempted to extend an internal table, but the required space was
         not available.
    I have been informed by our Basis group that I have reached a memory limit, but they will not extend the memory paramters.  Any ideas on a work-a-round or a way to minimize the number of records this program is pulling in, in an attempt to get it to run?
    Thanks,
    HC

    Hi,
    The only response I got from Basis was that they would not extend the memory parameters because they are for all users in the system.  Not sure what that means. 
    The full dump is too large to paste here.  I think what I will do is to see if our ABAPers can create a modified version of this program to include selection by user.  Typically it is for only one user that I need to run the program, and that surely would fall within the space requirements.
    Thanks for your answer.
    //HC

  • Trying to upgrade my i-phone 3 operating system to ios-5.  The program seems to download fine, but at the end it says network run time error and then I have to cancel it out and try again.  Tried 5 times and I can't upgrade the system.  help?

    I am trying to upgrade the operating system on my i-phone 3 to ios-5.  I download the program and it runs and downloads.  When almost finished, an error occurs that says Network run time error.  This cancels out the download.  I have tried 5 times with the sdame result.  Can anyone help?  Thanks

    This is asked and answered frequently... a simple search of the forums would have revealed that disabling any Anti-Virus and Firewall software on the computer prior to downloading will rectify the issue.

  • Kp26 getting run time error  in program "COCC2009 "

    Dear all
    Im getting run time error massage once the KP26 running . "The data object "ITDAT1" has no component called "TXTUPL", but there is a component called "TXTUP".
    The following syntax error occurred in program "COCC2009 " in include "RKCCAI02
    We are working on upgraded system. please hep me to solve this issue.
    Regard,
    nawa

    Hi
    I am using ECC 6.0 and when I checked the field mentioned TXTUPL, it is available there.
    Can you check the COCC2009 program whether the field is there or not.
    Shiva

  • Program run time error

    Hi Experts  !
    I have transported a request to prd. server . while executing the t.c error is comming " object hrpyoo11 of class RE and language EN dosent exist " but its not so in dev. server . also , when i am executing it by variant its showing run time error   { message type " " is unknown}  .plz help me in removing these error .
    thanks .
    ranjana

    hi,
    what ur program has
    for ex: if it is a smart form then while executing u get a name for a smartform [Function module name] and u use it in program in development server. when same program transported to production server there u might not be having the FM which leads to a error there so. in such situations if it is smart forms
    then create a variable which holds the name of smartform and pass that variable. in production the smart form when executed creates a FM which is in the variable created by you.'
    if it is in bdc then transport the flat file to production  system --- it might be one cause......
    if helpful reward some points.
    with regards,
    Suresh Aluri.

  • Run time error has requested that this program be closed in an unusual way

    i keep getting this message when i am using firefox. it says run time error has requested that this program be closed and it says it is the c drive firefox. what can i do to fix this? it has happened about 10 times a day for the last 3 days.
    thank you

    Hi there
    log in as administrator and kill all processes not needed and try again. I've seen cases where one of these free download tweak applications (like "Memory Defragmentation" and stuff like that) caused that error. 
    Best regards
    chris
    CL(A)Dly bending G-Force with LabVIEW
    famous last words: "oh my god, it is full of stars!"

  • Run time error for  program /MRSS/SAPLRSG_PM_ORDER

    Hi All,
    When I am confirming the service order through transaction code IW41, I am getting a run time error which says " Error in Program  /MRSS/SAPLRSG_PM_ORDER". In this client MRS is active.
    Some details of Runtime error is as follows.
    Trigger Location of Runtime Error
        Program                                 /MRSS/SAPLRSG_PM_ORDER
        Include                                 /MRSS/LRSG_PM_ORDERU03
        Row                                     1.224
        Module type                             (FUNCTION)
        Module Name                             /MRSS/RSG_PM_ORDER_PUSH_TO_MRS
    Source Code Extract
    Line  SourceCde
    1194
    1195     CLEAR: lv_failed, lt_messages.
    1196
    1197     lt_assignment_rfc[] = lt_assignment[].
    1198     CALL FUNCTION '/MRSS/RSG_MAINTAIN_MRS'
    1199       EXPORTING
    1200         it_dem_h          = lt_dem_h
    1201         it_adm            = lt_adm
    1202         it_plr            = lt_plr
    1203         it_plrs           = lt_plrs
    1204         it_info           = lt_info
    1205         it_tool           = lt_tool
    1206         it_relat          = lt_rel_dem
    1207         it_qualif         = lt_qualif_dem
    1208         it_assignment     = lt_assignment_rfc
    1209 *        iv_no_save        = no_save
    1210         iv_no_save        = true
    1211         iv_no_commit      = no_commit
    1212         it_status         = lt_status_abst
    1213         it_partner        = lt_partner_ext
    1214         it_address        = lt_address
    1215         it_operations     = lt_opera_activity
    1216         iv_no_authority_check = lv_no_authority_check
    1217         it_split_upd_number = lt_split_upd_number
    1218       IMPORTING
    1219         et_demands        = lt_demand_mrs
    1220         ev_failed         = lv_failed
    1221         et_messages       = lt_messages.
    1222
    1223     IF lv_failed = true.
    >>>>>       MESSAGE x000(/mrss/sge).
    1225     ENDIF.
    1226

    Hi,
    Can you try with T-code /n/MRSS/WFM_HR.
    Make sure to open only one SAP session to run this.
    Ask yor basis admin to look in to error details ,related SM21 logs,cancel jobs, Job logs and report analysis.
    Regards
    Nagaraju

Maybe you are looking for

  • Brand new iPod Touch 4g won't sync music from iTunes?

    Every time I plug my iPod into my laptop to add more music I get an error saying iTunes cannot read the contents and I need to restore it. Last week I got a new white iPod Touch 8gb 4g. I had the same problem with my last iPod and when I bought the n

  • Adobe Reader X (free) -- "Do you want to save changes" prompt

    Why is this prompt always coming up when I close a PDF document? "Do you want to Save Changes to  X   Before closing?" I am using the free Adobe Reader X 10.1.1.  I can't make any changes to the file since it's the free version, so why is it asking m

  • [ASK] How to know the number of usage of each Atomic Service ??

    I correct my question: *How to know the number of usage of each Atomic Service by the Domain & Enterprise Services?* I want to see the number of usage of each atomic service(AS) by other services (DS & ES) ex: es_A  ----->  ds_B   (1x)    ----->    a

  • I have iphone 4 factory unlock why not active 5.1.1

    i have iphone 4 factory unlock why not active 5.1.1

  • Expression yyyymm with mm-1

    In My derived column I want expression for getting yyyymm ( where mm is mm-1) Expression in Derived Column (DT_STR,4,1252)DATEPART("yyyy",GETDATE()) + RIGHT("0" + (DT_STR,2,1252)DATEPART("mm",GETDATE()),2) Result : 201407 Expected Result : 201406 Sha