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.

Similar Messages

  • 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.

  • 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

  • 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

  • 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

  • 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

  • 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

  • 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".

  • Dump error while going for a change mode in MIR4 for parked document

    Hi  All,
    After doing some GR and MIRO for one PO, there was some GR qty was left and I have parked new invoice document in MIRA. If I go for change mode MIR4 for the same parked document it is going to dump error as message type unknown, saying entry is not maintained table TTXD for Tax procedure. This table indicates that Tax jurisdiction, but we are not maintaining the Tax at Jurisdiction level. I found that user has activated calculate tax in MIRA and posted with some amount, here system will not calculate the tax in Tax field because base amount is not there to calculate, so that field shows "zero". For the same parked document in MIR4 I can see some lines which has value 0 in amount & quantity(already cleared GR's for the same PO) and also GR lines.
    Can anyone tell me how can I solve this dump error, I want to delete the parked document in legal way.
    Regards
    Shanu

    Hi Shanu,
    Please extract complete dump error by T code ST22 and take a help of your ABAP Team for an analyse the possible cause of dump and also check the relevant note for resolving this dump error.
    Regards,
    Santosh

  • SM30 going to dump for a Ztable whose fields I recently changed

    Hi All,
    Need to resolve a very urgent issue. We added a new field to a Ztable in DEV & hit the table maintenance generator with screen 8. However when I transport these  changes to TS1, the SM30 transaction goes into dump with the error stating screen "009" missing.
    When I created screen "0009" in DEV and retransport to Test, I still get the same error.
    what can the error be here?
    Thanks,
    Tejas

    Hello,
    Once the fields of the table is changed then u need to adjust it in SE14 Tcode.
    Then delete the existing Table main. and recreate it.
    Vasanth

  • Depot Sales -J1IJ while choosing excise invoice going to dump

    Hi Gurus,
    In Depot Sales: while doing excise invoive from T-code  J1iJ  Go to delivery -RG23D selection select the delivery number XXXXX  Excise Group 51 and series Group: 50  ENTER -  select the line item and click on F6 and here we have to click on excise invoice Button for capturing the Input excise duties for taking the reference.
    we are facing issue  in J1IJ,  when we click on the Choose button (first button below select Excise invoice for delivery statement), we need to get the Excise Invoice number reference which is captured at Plant. When we tried to click on that Choose button, we are not getting any excise invoice numbers and instead itu2019s going to dump .
    Dump analysis says:
    Runtime Errors         SYNTAX_ERROR
    Date and Time          14.09.2009 16:43:01
         Short text
              Syntax error in program "SAPMJ1IK ".
         What happened?
              Error in the ABAP Application Program
              The current ABAP program "????????????????????????????????????????" had to be
               terminated because it has
              come across a statement that unfortunately cannot be executed.
              The following syntax error occurred in program "SAPMJ1IK " in include "MJ1IKF01
               " in
              line 38:
              "Field "IT_FILTLIST[]" is unknown. It is neither in one of the specifie"
              "d tables nor defined by a "DATA" statement. ."
              The include has been created and last changed by:
              Created by: "SAP "
              Last changed by: "SAP "
              Error in the ABAP Application Program
              The current ABAP program "????????????????????????????????????????" had to be
               terminated because it has
              come across a statement that unfortunately cannot be executed.
         Error analysis
              The following syntax error was found in the program SAPMJ1IK :
              "Field "IT_FILTLIST[]" is unknown. It is neither in one of the specifie"
              "d tables nor defined by a "DATA" statement. ."
         Trigger Location of Runtime Error
             Program     ????????????????????????????????????????
    Could any body help me out to come out of this issue.
    Thanks&Regards
    Sreekanth

    Hi Sreekanth,
    If this is first time you are doing look for OSS notes, Please escalate this issue to your basic and apap consultants.
    R u following the following flow in case of stock transfer from mfg plant to depot plant.
    PlantA:
    ME21N 
    VL10B
    VL02N
    VF01
    J1IIN
    Plant B:
    MIGO - (Goods Reciept & Excise Capture)
    VA01
    VL01N
    J1IJ
    VF01
    Here at goods reciept you need to capture excise inviove same will populate when you make a sales from plant B using J1IJ transaction.
    Thanks,
    Swamy H P

  • Sales order going to dump when we enter product in the transcation

    Hello Gurus,
    I am facing a problem in the sales order, when i enter a product in the transcation(TA) it going to dump........It is showing the message like this.........,
    What happened?......
        Error in the ABAP Application Program
        The current ABAP program "SAPLCRM_MKTTG_PF_SEL_INFOSET" had to b
         because it has come across a statement that unfortunately cannot be      
         executed.
    Error analysis......
        An error occurred when executing a Remote Function Call.
        "CPIC-CALL: 'ThSAPOCMINIT'#Unable to determine host address: 
          NiHostToAddr failed "
        Status of connection.... "CODE=CM_PRODUCT_SPECIFIC_ERROR -1 -1  
        SAPCODE=497
         CONV= " Internal error code.... "RFC_IO5"
        There is an error in the communication system. To clarify
        and resolve the error, contact your system administrator.
        Last error logged in SAP kernel
        Component............ "NI (network interface)"
        Place................ "SAP-Gateway on host IGINXMIEP / sapgw00"
        Version.............. 38
        Error code........... "-2"
        Error text........... "hostname 'iwdf7yte.wdf.sap.corp' unknown"
        Description.......... "NiHsLGetNodeAddr: hostname cached as unknown"
        System call.......... " "
        Module............... "nixxhsl.cpp"
        Line................. 223
        The error reported by the operating system is:
        Error number..... " "
        Error text....... " "
        Please provide me the solution...........its very urgent
    Thanks and Regards
    Chandramohan
    I dont Mind to reward full points............

    Hi julius,
    Thanks for the reply,
    The settings in the SAP Note, which you have given....they are in already in place.
    Regards
    Chandramohan

  • PPOME - Org.Unit (Acount assignment) goes into DUMP

    Hello Gurus,
    ive got a Big issue, concerning SAP HR module.
    When we start the TC: PPOME we select org.unit from the structure.
    It is beeing showed normaly, but only when we select Acount assignment it goes straight into DUMP,
    saying:
    Runtime Errors         STORAGE_PARAMETERS_WRONG_SET
    What can you do?                                                                 
        Note which actions and input led to the error.   
        For further help in handling the problem, contact your SAP administrator     
        You can use the ABAP dump analysis transaction ST22 to view and manage       
        termination messages, in particular for long term reference.                 
        In the system profile, set the parameters                                    
        -abap/heap_area_dia and                                                      
        -abap/heap_area_nondia                                                       
        to a maximum of 189714480. To be on the safe side, reduce the value by 10,000,
        000.                                                                         
        Then restart the SAP system.       
    These corrections are not needed since the system for every other purpose (SD, MM, FI) is working, only for HR module during acount assignment is going into DUMP.
    Any advice why this happens to some of the Org.Units?
    Regards,
    Laurynas Prikockis

    Hi ,
    Please check this thread might be helpful.
    Runtime Errors STORAGE_PARAMETERS_WRONG_SET
    Regards,
    Siraj.

  • While drill down a char system going into dump

    Hi,
    We have changed 0COUNTRY as a navigation attr to the 0COMPANY and added to the Muti provider.
    In query level initially for 0COMPANY data is paulating while trying to drill down 0COUNTRY with 0COMPANY then system is going into dump.
    Thes system message;
    The current application triggered a termination with a short dump.
    An error occurred while communicating with the BI server.
    As a result of this error, the system has been disconnected from the BI server.
    Detailed description
    can any one let me know the reason.
    Regards,
    Sharma.

    Hi,
    The problem is resolved in my self.
    Regards,
    Sharma

Maybe you are looking for

  • Error I don't know how to fix myMessage.text

    Hi, I am getting an error on the below piece of code, the error is showing on the myMessage.text:@"hello xcode"; can anyone see where I'm going wrong?, I am following a self teach manual. Thanks in advace. UILabel *myMessage;    myMessage=[[UILabel a

  • Solaris 10 on HP Intel Xeon Box

    Hi there, i am trying to install the Solaris 10 on HP intel Xeon server. but i get error message during the installaion configuration that hard disk not found. while i had win2003 on it before and drives are okay. i get this error message when i do t

  • Photo display problem

    All photos uploaded to my iPod Touch are displayed as if they are in Landscape orientation even if they are actually in Portrait orientation. The same photos are correctly orientated when viewed in Preview on my iMac (running OS X 10.4.10). All photo

  • Where can I buy Photoshop? CS6 too expensive.

    I have a copy Photoshop Elements 13 and in order to learn how to use it I have had to depend all that is available in Photoshop. I thought of buying CS6 but it's too expensive. What version of Photoshop would you suggest I buy at a reasonable cost?

  • Standalone window title is now file name

    The window title for standalone movies used to come from File - Properties - Project Name. Now the standalone window gets the title from Project Title (i.e. exported filename) that you enter when you publish. This is not true for swf files - they sho