Standard Tcode : VA01 is going for Dump

Hi all,
  While creating sales order in VA01,  the screen number 4003 having arrow Buttons Shift + f5 , Shift + f6 , Shift + f7 , and Shift + f8. If i am pressing that it is going for dump can any body help me why it is going for dump in ECC 6.0 . But it wont happend in 4.5B. Can any body help me in this problem.
Thanka & Regards,
Rajasekhar.

What is the error from the dump?
Rob

Similar Messages

  • Call for adobe form is going for dump for multiple users

    hi,
    i am calling an adobe form in a program i.e. for multiple users. now my problem is.....
    3 people are using same tcode to generate the adobe form output for different data. but when they click at a time on the button to generate the adobe output, then adobe form is coming for only one user and it is going for dump for other users.
    and this dump is coming because of exception "CX_FP_API_INTERNAL" in funtion module FP_FUNCTION_MODULE_NAME which i am using to get the function module name of the adobe form in my program.
    can u please give me some solution to rectify this issue....

    That's nothing!
    An engineer and I contacted Adobe technical support by phone to ensure the PC I was having custom built was configured to its optimum. They advised XP64 as the best operating environment. After that discussion we had to completely revise procurement, etc to get the bits and compatible XP64 compatible software, putting the build project back a few weeks as well, Imagine how I laughed when I found out on one of these forums that XP64 is the worst choice and totally unsupported by CS4!
    I have written to Shantanu Narayen, Adobe CEO and didn't even get an acknowledgement I raised this last week on the Adobe stand at BVE and was told they'd get someone to contact me asap but guess what, niet...! To be fair there has been one Adobe executive that recognises the problem and the damage poor customer support is causing the company; he has been as helpful as he can. Unfortunately, it seems the overall Adobe culture at the top is "get the money and run". If your problem goes beyond what's already on their web pages, tough luck!
    Regards,
    Graham

  • Function module going for DUMP

    Hi ALL,
    I have import request and i got sucess .My 3 function modules are import to client system.2 FM are working properly but 1 function module is going for DUMP.
    When iam Executing this FM through SE37 F8 its running but iam not able to display or change this ZFM.
    In our DEV sytem it is working properly.but Client system it is going for DUMP.
    I have gone dump analysis its saying
    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
    MO_IMPORT_MODIFICATIONS" "(METHOD
    Length error occurred during the IMPORT statement
    *The system found when importing that the target object was longer or
    shorter than the object to be imported*
    Thanks in Advance,
    Madhu.
    Edited by: madhubabu rao on Apr 23, 2009 10:34 AM
    Edited by: madhubabu rao on Apr 23, 2009 10:36 AM

    Hi sekhar,
    I did not transport individually.I have transport 3 FM in a function group and it is assigned to a Package.
    First i have 2 FM in my function group after that i have copied one more FM from another Function group.
    in SE80 right click -->copy it asked me function group name only .not transport number.
    After copy the FM i have transport total package.2 FM are working properly .The FM which i have copied it is not able to display or edit.
    Madhu

  • Import FM is going for DUMP

    Hi All,
    I have import request and i got sucess .My 3 function modules are import to client system.2 FM are working properly but 1 function module is going for DUMP.
    I have gone dump analysis its saying
    "Length error occurred during the IMPORT statement."
    "The system found when importing that the target object was longer or
    shorter than the object to be imported."
    where did i mistake while import ? or while transport?
    That FM is working properly in our DEV.
    Thanks in Advance,
    Madhu.

    Hi Madhu,
    Suggested to post this in logistics forum for better answer.
    Software Logistics
    Regards,
    Debasis.

  • Duplicate records in PO scheduled line for framework order (going for dump)

    Hi all,
    i am creating framework purchase order with item category B. I am assigning external number range for PO. This PO is created with respect to expense PR. i just found there is duplicate records are appearing in schedule line for the same item.
    Then, after i save the PO, it is going for dump & sending some message to SAP inbox that there is duplicate records.
    later i can not find those PO in the system. Please let me know where i am doing mistake ? why duplicate records are appearing in PO scheduled line ?
    Thanks a lot
      pabi

    Hi,
    Once you please debug the particular program with the help of ABAPer. That may resolve your issue. Thanking you

  • At F4IF_INT_TABLE_VALUE_REQUEST program goes for dump

    Hi,
    The following piece of code in my program goes for dump.Please help:
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR s_screen-low.
      SELECT FIELD1 FROM TXXX INTO TABLE T_field.
        IF SY-SUBRC = 0.
          CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
            EXPORTING
              RETFIELD               = s_screen
            TABLES
              VALUE_TAB              = T_field.
        ENDIF.

    Hi,
    I think you need to write
    Try with the below code.
    PARAMETERS: p_bukrs(4).
    DATA: BEGIN OF itab OCCURS 0,
           bukrs LIKE t001-bukrs,
          END OF itab.
    AT SELECTION-SCREEN ON VALUE-REQUEST FOR p_bukrs.
      SELECT bukrs FROM t001 INTO TABLE itab.
      CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
        EXPORTING
          retfield        = 'BUKRS'  ---> Field from internal table Itab
          dynpprog        = sy-repid
          dynpnr          = sy-dynnr
          dynprofield     = 'P_BUKRS' --> Screen field
          value_org       = 'S'
        TABLES
          value_tab       = itab
        EXCEPTIONS
          parameter_error = 1
          no_values_found = 2
          OTHERS          = 3.
      IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    If it is a select option is s_bukrs then
    CALL FUNCTION 'F4IF_INT_TABLE_VALUE_REQUEST'
        EXPORTING
          retfield        = 'BUKRS'
          dynpprog        = sy-repid
          dynpnr          = sy-dynnr
          dynprofield     = 'S_BUKRS-LOW'
          value_org       = 'S'
        TABLES
          value_tab       = itab
        EXCEPTIONS
          parameter_error = 1
          no_values_found = 2
          OTHERS          = 3.
      IF sy-subrc <> 0.
    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO
            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.
      ENDIF.
    Regards,
    Kumar Bandanadham
    Edited by: Velangini Showry Maria Kumar Bandanadham on Jun 12, 2009 7:00 AM

  • How to restrict  tcode va01/va02/va03 for a particular role

    hi ,
    I have a requirement . I need to restric user fro VA01/VA02/VA03 if the user has role and Sales order customer group is related to a particular group .
    Do we have a Function module to get a role for a user  or can we write a code as authorization level or do we need to write it as user exits of va01/va02/va03 .
    Regards ,
    Prakash

    hi All ,
    My issue is I need to restrict the tcodes for a particular customer group is there in the sales order , that means it is order specific and I already know for which roles it is to be checked .
    Now can  we write any check in pfcg tcode so that we can check at particular group or need to handle at user exit level .
    Thanks in advance .
    prakash

  • Going for dump while using field symbols

    Hi all,
       I am using field symbols in my program. Program is going dump for some company codes and working fine for some company codes.
    I am confused. Please check this code where the error is shown.
    LOOP AT i_final ASSIGNING <fs_final>.
        AT NEW belnr.
         if  <fs_final>-wt_withcd  = 'SF' or  <fs_final>-wt_withcd  = 'XF' OR  <fs_final>-  wt_withcd  = 'WF'.
          MOVE <fs_final> TO wa_final1.
          g_qsatz = wa_final1-qsatz.
          APPEND wa_final1 TO i_final1.
          CLEAR wa_final1.
         ENDIF.
        ENDAT.
        READ TABLE i_final1 ASSIGNING <fs_final1> WITH KEY belnr = <fs_final>-belnr.
        IF <fs_final>-wt_withcd  = 'SF'.
          <fs_final1>-wt_withcd1 = <fs_final>-wt_withcd.
          <fs_final1>-wt_qbshb1  = <fs_final>-wt_qbshb.
          <fs_final1>-qsatz      = <fs_final1>-qsatz + <fs_final>-qsatz.
        ENDIF.
        IF <fs_final>-wt_withcd  = 'XF'.
          <fs_final1>-wt_withcd2 = <fs_final>-wt_withcd.
          <fs_final1>-wt_qbshb2  = <fs_final>-wt_qbshb.
          <fs_final1>-qsatz      = <fs_final1>-qsatz + <fs_final>-qsatz.
        ENDIF.
        IF <fs_final>-wt_withcd = 'WF'.
          <fs_final1>-wt_withcd = <fs_final>-wt_withcd.
          <fs_final1>-wt_qbshb  = <fs_final>-wt_qbshb.
          <fs_final1>-qsatz      = <fs_final1>-qsatz + <fs_final>-qsatz.
        ENDIF.
        AT END OF belnr.
          <fs_final1>-qsatz = <fs_final1>-qsatz - g_qsatz.
          clear g_qsatz.
        ENDAT.
      ENDLOOP.
    Please check the code and help me.
    Thanks in advance,
    Shalem

    HI Shalem
    Please check this code:
    LOOP AT i_final ASSIGNING <fs_final>.
      AT NEW belnr.
         if <fs_final>-wt_withcd = 'SF' or
            <fs_final>-wt_withcd = 'XF' OR
            <fs_final>- wt_withcd = 'WF'.
            MOVE <fs_final> TO wa_final1.
            g_qsatz = wa_final1-qsatz.
            APPEND wa_final1 TO i_final1.
            CLEAR wa_final1.
         ENDIF.
      ENDAT.
      READ TABLE i_final1 ASSIGNING <fs_final1> WITH KEY belnr = <fs_final>-belnr.
      IF sy-subrc EQ 0.
         CASE <fs_final>-wt_withcd.
         WHEN 'SF'.
              <fs_final1>-wt_withcd1 = <fs_final>-wt_withcd.
              <fs_final1>-wt_qbshb1 = <fs_final>-wt_qbshb.
         WHEN 'XF'.
              <fs_final1>-wt_withcd2 = <fs_final>-wt_withcd.
              <fs_final1>-wt_qbshb2 = <fs_final>-wt_qbshb.
         WHEN 'WF'.
              <fs_final1>-wt_withcd = <fs_final>-wt_withcd.
              <fs_final1>-wt_qbshb = <fs_final>-wt_qbshb.
         ENDCASE.
         <fs_final1>-qsatz = <fs_final1>-qsatz + <fs_final>-qsatz.
         AT END OF belnr.
            <fs_final1>-qsatz = <fs_final1>-qsatz - g_qsatz.
            clear g_qsatz.
         ENDAT.
      ENDIF.
    ENDLOOP.
    Kind Regards
    Eswar

  • GGB0 is going for Dump

    *Hi Freinds,
    *When i enter the transaction code  GGB0 it is giving the dump at  class    *cl_badi_flt_data_trans_and_d*   method ACT_IMPS_PER_FLT_VA is giving the error like   Multiple Active Implementations for Single BAdI .
    Please let me know what does it mean and how can i solve this issue.
    When enter the class  cl_badi_flt_data_trans_and_d  in SE24 and try to display or tring to activate it is gonig for the dump and showing the error Multiple Active Implementations for Single BAdI .
    Please let me know if any body has face the same error .
    Regards,
    Tirumal.

    Hi Tirumal,
    I kept a debug point in the class CL_BADI_FLT_DATA_TRANS_AND_DB  method ACT_IMPS_PER_FLT_VALthen i got this badi CTS_CURRENT_PROJECT which is called in the transaction. I think this badi implemented multiple times in your system.Please check and see and post.
    Regards,
    Madhu.

  • MIGO screen goin for dump

    Hi All,
    My MM consultant is getting this error
    Runtime Errors         SAPSQL_INVALID_TABLENAME
    Except.                    CX_SY_DYNAMIC_OSQL_SEMANTICS
    i have no idea where to start from... can anyone guide me...

    Hi Dez,
    I debugged the program.
    In
    If t681-ksdat is initial.
    if se_read_all_prestep is initial.
    no value is passed to ksdat and se_read_all_prestep.
    and when the command goes to select query it goes for dump.
    t681-kotab value is B570.
    <cond_tab> only field name DATA is visible.
    se_kschl   =   GRDO.
    se_kappl   =  ME.
    When i checked error analysis, it showed "An invalid table name "B570" was specified".

  • Prob in getting Mail body for the standard tcode F150(Dunning).

    Hello all,
    I am using F150 for the dunning notice print out.After seeing the display of the dunning notice once we come back it populates a popup window where it asks to send the mail to the particular mailid or not. I have used the BTE ---  SAMPLE_PROCEE_00001040 and copied it as z function module and customised according to my requirement in order to get the mail id of the customer in the pop up.My mail is going to the customers mail id properly only but my prob is that we are not able to get any mail body for that particular mail.Where can we add the mail body text to that mail in the standard tcode f150.can any one suggest is it possible or not.
    Regards,
    Pavani.
    Edited by: Pavani Rayappureddi on Aug 11, 2009 11:21 AM

    solved my self.
    added         C_ITCPO-TDTITLE  = 'Pending Receivables Statement-XXX GROUP'.
    in the bte code.

  • Standard tcode FBL5N dump in pre production.

    I am getting a dump when I execute the standard tcode FBL5N (Customer line item) with one company code.  FBL5N tcode is not at all giving dump in production system, however it dumps in pre production.
    The dump exists in the function module : fdm_local_get_objects_range while executing the SELECT stmt
      *SELECT * FROM  fdm_dcobj*
               INTO  CORRESPONDING FIELDS OF TABLE et_object_data
               WHERE logsys        LIKE i_logsys
               AND   obj_type      LIKE i_obj_type
               AND   obj_key       IN   it_range_obj_key
               AND   relation      LIKE i_relation
               AND   case_guid_loc IN   it_guid
               AND   is_confirmed  LIKE i_confirmed
               AND   is_voided     LIKE i_voided.
    Do I need to search for sap note ?
    Below is dump analysis
    Error analysis
        An exception occurred that is explained in detail below.
        The exception, which is assigned to class 'CX_SY_OPEN_SQL_DB', was not caught
         in    procedure "FDM_LOCAL_GET_OBJECTS_RANGE" "(FUNCTION)", 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:
        The SQL statement generated from the SAP Open SQL statement violates a
        restriction imposed by the underlying database system of the ABAP
        system.
    Possible error causes:
         o The maximum size of an SQL statement was exceeded.
         o The statement contains too many input variables.
         o The input data requires more space than is available.
         o ...
    You can generally find details in the system log (SM21) and in the
        developer trace of the relevant work process (ST11).
        In the case of an error, current restrictions are frequently displayed
        in the developer trace.
    How to correct the error
        The SAP Open SQL statement concerned must be divided into several
        smaller units.
        If the problem occurred due to the use of an excessively large table
        in an IN itab construct, you can use FOR ALL ENTRIES instead.
        When you use this addition, the statement is split into smaller units
        according to the restrictions of the database system used.
        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:

    Note Still Valid in Market place.
    "SAP Note 1111155 - FSCM-DM: Termination "Open SQL
    statement is too large."
    Note Language: English Version: 10 Validity: Valid Since 07-28-2010
    Summary
    Symptom
    When you access dispute case using the integration (creating dispute case
    using FI transactions (for example, FBL5N), clearing items to which dispute
    case have been assigned), the system issues the dump "Open SQL statement is
    too large".
    The error occurs if there are many (more than 1000) dispute cases for a
    customer.
    Other terms
    FBL5N, FBZ1, F-32, integration
    Reason and Prerequisites
    This problem is due to a very large dispute case volume.
    Solution
    Import the relevant Support Package or implement the attached correction
    instructions.
    Header Data
    Release Status: Released for Customer
    Released on: 07-28-2010 08:02:45
    Master Language: German
    Priority: Correction with medium priority
    Category: Program error
    Primary Component: FIN-FSCM-DM Dispute Management
    Valid Releases
    Software Component Release From
    Release
    To
    Release
    and
    Subsequent
    SAP_APPL 600 600 600
    SAP_APPL 602 602 602
    SAP_APPL 603 603 603
    SAP_APPL 604 604 604
    SAP_APPL 605 605 605
    PI 2004.1 2004_1_47"

  • Reg: VA01 sales order going to dump

    Dear all,
    In our develpment server(ecc 6.0),while creating sales order in VA01 for a sales area, when ever entering material number(variant configuration material)  and quantity and press enter, it is giving runtime error as i shown below.
    The following syntax error occurred in program
    "CL_LORD_OBJECT================CP " in include
    "CL_LORD_OBJECT================CM005 " in
    line 40:
    ""OBJECT-" expected, not "IF_OBJECT_""
    method class_constructor.
    Register to event CHANGED of all LORD object instances
      set handler on_lord_object_changed for all instances activation 'X'.---->VA01 is going dump from here
    Register to event AUART_CHANGED of all LORD header instances
      set handler on_lord_auart_changed for all instances activation 'X'.
    endmethod.
    can any one guide me in this issue

    Check
    Note 1304648 - SAP ERP Enhan.Pk.5 SP Stack 01(07/2010) - Release Info. Note
    There is one internal note (0001460737) mentioned there which talks about syntax error in CL_LORD_OBJECT class. This is enhancement package 5 for ECC 6
    The note 1304648  is talking about applying enhancement package 5, so it is not just syntax issue that it will resolved. You need to get your BASIS team involved as this issue it seems can be resolved by applying EhP5

  • Implementing GOS for standard transaction VA01/VA02/VA03

    Hi Experts,
    I need  to implement GOS ( Generic Object Services ) for  standard transaction VA01/VA02/VA03 .
    Can anyone tell me how to achieve this ?
    I have seared for this and found  the badi GOS_MULT_PUBLISH could be useful for this purpose.
    But  I don't know how to implement this so that GOS button will be visible for  tcode VA01/VA02/VA03.
    Thanks and regards,
    SNJY

    Hi there,
    the most typical reason why the GOS button does not appear is because the user is not of Dialog type. Please go to SU01 and make sure that your user is a Dialog user (not Service, nor System, etc.)
    And, the parameter Patrick is talking about is called SGOSNOBUT.
    Cheers,
    Juan
    Edited by: Juan Pablo Barcenas on Jun 8, 2011 4:50 PM

  • Is there ant standard tcode for list of vendors, suppliers in ECC 6.0

    can any body tell me is there ant standard tcode for list of vendors, suppliers in ECC 6.0

    Hi
    The standard Tcode for list of vendors is S_ALR_87012086 - Vendor List .
    Check whether it is helpful to you or not.
    Plz assign points if it is helpful.
    Regards
    Tapan

Maybe you are looking for

  • Issue in Iviews creation in portal

    Hi, I am working on Portal 7.01 SP3.I am facing problem in creating iviews. When I want to create new iviews I go to "Content Administration"  >  Select appropriate folder under PCD  >  Right-click, select "New" > "iView"  >  Here I get the option to

  • How to use FM IDOC_INPUT_COND_A in a loop

    Hi Gurus, I am trying to use IDOC_INPUT_COND_A function module in a loop basically this FM is used to create/update pricing condition for Purchase Info Record looping at ta_a018 into wa_a018. then i am populating structures E1KONH E1KOMG and E1KONP N

  • My old email is inactive, can't remember password

    I started an Apple account a long time ago. My old email account is inactive and I can't remember the password. I've tried to reset it but it says my birthday is incorrect.

  • Is this possible - Import Flash swf which then imports an external swf

    Hi, I was wondering if it's possible to (as the title says) to import an swf which itself imports an external swf? Explanation - I've got an scrollbar created in flash...and to keep it tidy i've created the scroll 'content' as another swf which is im

  • Please help me solve the problem.

    I am using a sample code- VideoTransmit.java-from SUN.COM to transmit a *.avi file displayed by QuickTime,which version is 5.0.1. But there seems to be some settings in QuickTime that are compatible with the given codec plugin. And I don't know what