Maintenance View Giving Short Dump DYNPRO_FIELD_CONVERSION

Hi,
Client has a maintenance view for the table J_2IRG1BAL. But the maintenance view is giving short dump DYNPRO_FIELD_CONVERSION. Can anyone please tell me what could be the reason? How to solve it?
Regards,
Sriram.

Hi,
DYNPRO_FIELD_CONVERSION dump may be due to the following reason, you can find few OSS notes
- Negative entry in Time confirmation
- Negative entry in cost
- Negative entry in reversation
Check these just for reference.
  Please Refer the below link it will useful for u.
DYNPRO_FIELD_CONVERSION
dump while entering enteries trough sm30
Regards,
Dhina..

Similar Messages

  • Custom error message in user exit is giving Short dump

    Hi All,
    We have a scenario where in if any user try to create/Change/Delete particular types of contract in SAP system we have to issue error message
    saying ZIN/ZIR contract creation/Change/Deletion is blocked in SAP. This has to be done from the web application. So we are putting below code
    in user exit MV45AFZZ in the form USEREXIT_SAVE_DOCUMENT_PREPARE.
    CONSTANTS: lc_vbcpic01 TYPE sy-uname VALUE u2018VBCPIC01u2019, u201CWeb application user ID
             lc_zin           TYPE vbak-auart VALUE u2018ZINu2019,
                         lc_zir            TYPE vbak-auart VALUE u2018ZIRu2019,
                         lc_text(32)    TYPE c VALUE u2018Check long text for more detailsu2019.
    DATA: l_uname TYPE sy-uname.
    CLEAR: l_uname.
    MOVE sy-uname TO l_uname.
    *If user ID is not the Web application ID then block the creation/Change/Deletion
    IF   l_uname NE lc_vbcpic01
    AND ( vbak-auart EQ lc_zin
    OR    vbak-auart EQ lc_zir ).
    MESSAGE e830(zv) WITH lc_text.
    ENDIF.
    This code is working fine while creating/Changing the contract i.e. Giving us error message so that user wonu2019t be able to create/change the contract.
    But when we delete the contract from VA42, Control is coming to this message statement and is giving Short dump. Below is the error analysis of the dump.
    Error Analysis:
    During "Exit Command" processing, the program tried to send a " " message.
    This is not allowed at this point in processing.
    The program had to be terminated.
    Screen name.............. "SAPMV45A"
    Screen number............ 4001
    If any one has come across such scenario/any work around for this problem please let me know your inputs. Your inputs are highly appreciated.
    I am working on 4.6C version of SAP.
    Note: When i issue information/Warning message contract is getting deleted after displaying the message.
    Thanks,
    Vinod.

    I exactly replicated the same in DELETE_DOCUMENT also
    I am getting the Dump. I tried with exit also , but it continued and deleted. To avoid deletion we have to use Leave program or LEAVE TO CURRENT TRANSACTION.
    Delete Function is Defined as EXIT command. so it is not possible to give error message. To convice you i just copied demo program and raised the error message.
    it is also giving the dump.
    copy the demo program DEMO_DYNPRO_AT_EXIT_COMMAND and make this change , information to error .
    MODULE cancel INPUT.
      MESSAGE e888(sabapdocu) WITH text-001 ok_code input1 input2.
      IF ok_code = 'CANCEL'.
        CLEAR ok_code.
        LEAVE PROGRAM.
      ENDIF.
    ENDMODULE.
    and see...

  • CL_GUI_CFW= FLUSH giving short dump

    hi,
    i have got two servers. one for development and other for quality. in development my CL_GUI_CFW=>FLUSH is working fine, but when i try to execute my prog in quality "flush method" is giving short dump, its returning sy-subrc <> 0.
    can anybody suggest possible causes of the same.
    The server status are all the same for quality as well as development.
    thanks
    pratyush

    Hello Pratyush
    You may want to have a look at my sample report ZUS_SDN_TWO_ALV_GRIDS_3 in thread
    [how to refresh the contents of a grid?|how to refresh the contents of a grid?;.
    Most control events do not trigger PAI of the dynpro. Thus, they behave similar like calling a search help or F1 help.
    The automatic flushing which occurs at PBO is done the following way:
    METHOD handle_user_command.
        * define local data
    DATA:
    ls_row TYPE lvc_s_row,
    ls_knb1 TYPE knb1.
    CHECK ( sender = go_grid1 ).
    CHECK ( e_ucomm = 'SAVE' ).
    CALL METHOD go_grid1->get_current_cell
    IMPORTING
    es_row_id = ls_row.
    READ TABLE gt_knb1 INTO ls_knb1 INDEX ls_row-index.
    CHECK ( ls_knb1-kunnr IS NOT INITIAL ).
    PERFORM entry_show_details.
    * Triggers PAI of the dynpro with the specified ok-code
    " CALL METHOD cl_gui_cfw=>set_new_ok_code( 'DETAIL' ).  " not on 4.6c
    CALL METHOD cl_gui_cfw=>set_new_ok_code
       EXPORTING
        ok_code = 'DETAIL'.
    ENDMETHOD. "handle_user_command
    Regards
      Uwe

  • Program giving short dump

    I have created an alv grid display .But when am pressing
    word processing or excel download buttons in the tool bar ,the program is giving short dump.The display and all are perfect the dump happens only if i press word processing or excel download buttons .Kindly help.
    You help will be greatly appreciated.
    The error is generated while in standard code.
    1095                                     using r_ucomm
    1096                                           ls_selfield.
    1097
    >>>>>   rs_stable-row = ls_selfield-row_stable.
    1099   rs_stable-col = ls_selfield-col_stable.
    1100
    1101   r_refresh = ls_selfield-refresh.
    1102   r_exit    = ls_selfield-exit.

    Hii
    plzz open excel in your computer .
    goto TOOLS>MACRO>SECURITY .Make sure that your security is set to Medium (or less). Microsoft has increased their default security setting to High. With the High setting, the output to Excel fails.
    plzz paste the part of the code where it is going for dump
    and also give the error analysis as mentioned in the dump report
    if you want i can give you a sample alv grid program for you can cross chk it
    for more refer to this guide
    <b>https://www.sdn.sap.com/irj/servlet/prt/portal/prtroot/com.sap.km.cm.docs/documents/a1-8-4/an easy reference for alv grid control.pdf</b>
    Regards
    Naresh

  • Func. Module - RH_EDITOR_SET giving Short Dump

    Hello ,
    I am using a container in my proogram.While running this my program calls this function module and then it is giving a shortdump.The short text of that dump says "Exception condition "INTERNAL_ERROR" raised."
    the dump is coming at the line:
      163     CALL METHOD control_tab-ctrl_new->set_text_as_r3table
      164       EXPORTING
      165         table           = lines[]
      166       EXCEPTIONS
      167         error_dp        = 1
      168                        error_dp_create = 2.
      169     IF sy-subrc <> 0.
    >>>>>       RAISE internal_error.
      171     ENDIF.
      172   ENDIF.
    While calling this function module i am passing these parameters.
    CALL FUNCTION 'RH_EDITOR_SET'
        EXPORTING
          REPID       = SY-CPROG "program name
          DYNNR       = '0100' "screen number
          CONTROLNAME = VAR " name of the custom control on screen
          MAX_COLS    = COL "variable value = 85
          MAX_LINES   = 10
          DISPLAY_MODE = ' '
          SHOW_TOOL = ' '
        TABLES
          LINES       = IT_LINES_CR. " table type TLINE
    The strange thing is that this works fine in 4.6c but is giving a dump in ECC 6.0
    Can u please tell me what is the problem.
    Thanks in advance.
    Kunal

    Hi,
    There are lot of changes happened between 4.6C and ECC 6.0. so make sure about the dump analysis.
    Regards,
    Kumar.

  • Csv file load related issue: giving short dump

    Hi Experts,
    In BPS I have created a load csv planning function which load data from csv file. While I am executing the function it is showing successful message 'dta records generated' but ehen I press the save button it is giving a dump 'Exception condition "ILLEGAL_INPUT" raised.'.The same planning level and package is working fine with manual planning. The load function modules are also working fine for some other plannig levels. Please suggest what could be the reason for this exception.
    Thanks,
    Saikat.

    I had  same problem.
    It s something wrong in the CSV files. What I mean is that sometimes it went something like a ',' or a '.' or other wrong characters in some characteristics that cannot accept like numbers or whatever, or something that to you looks a blank but for SAP is some special character.
    The way to find is very boring ! Be sure first of all that when you load you do not try to save also the HEADER with Titles of the CSV file. Anyway this was not my problem.
    To me happened as follow last time.
    " For one rcharacteristic it accept values '1'  '2'  '3' etc...until '9'. So just numbers.  In one of the record of the files it was written '1.' So just the '.' made this big problem. "
    To solve this last time, I just generated again the file and without to change the ABAP code it went ok.
    Anyway try to check again from benning all your levels and the ABAP code.
    I know what u mean, this error cause big headaches, I lost 3 hours to solve.
    Hope you are lucky.

  • Customized Table is giving Short Dump .Want to extract data in Production S

    Hi ,
    I have a problem in customized table .Table is giving a data after trying to access 185th record.There is some problem in the table.But I want to pull out all the data from the table..Is it possible to download it .Pls suggest..
    Even If I put one select query also it is givning dump..
    Pls suggest some other technique to download it..
    Regards
    Arun.P

    Hi Arun,
    Where there you are using WHERE condition  in select statement while fetching the records?
    if yes means check for the fields are primary key, available in WHERE condition, or else create secondary index for those
    non Primary key Fields in WHERE condition.
    This may help you.
    Thanks and Regards,
    Prakash.K

  • KCLJ giving short dump

    Hi Experts,
    I am using KCLJ to transfer file data into SAP system through BDT Direct input. I am doing this in Incentive Commission Management system.
    I created a sender structure for Commission contract bundle and used this in KCLJ transaction.
    But when I am executing the KCLJ transaction I am getting a Runtime error. The Error says that the program could not execute because one of the statements could not be executed.
    The Sender structure program is automatically getting generated when i execute the transaction KCLJ with corresponding sender structure. So the program which got generated for this contains syntax errors.
    Have you ever experienced any such issues?
    Please let me know how to solve this issue?
    Thanks & Regards,
    Sreejith A P
    Moderator message - Cross post locked
    Edited by: Rob Burbank on Nov 4, 2009 9:42 AM

    Are you sure your connected to the R3 System?
    Can you replicate just 1 node?
    Can you do any extractions?
    The only reference to your error message is below, but not related:
    Re: Cube Manage - Dump Error

  • Short Dump while fetching values from a Database view

    Hi ALL,
    Here is the code that is giving short dump
    SELECT * FROM ZVMATLMOVE INTO TABLE I_MATLMOVE
        WHERE BUDAT >= V_LASTRUN_DATE
        AND   WERKS IN S_WERKS
        AND   LIFNR IN S_LIFNR
        AND   EBELN IN S_EBELN
        AND   MATNR IN S_MATNR
        AND   BWART IN S_BWART
    (Please don't say that I am using * in the select query,
    I knew that it is not a good way of fetching values)
    Declaration of the internal table is:
    DATA  I_MATLMOVE LIKE ZVMATLMOVE OCCURS 0 WITH HEADER LINE.
    The variable V_LASTRUN_DATE is:
    DATA  V_LASTRUN_DATE LIKE SY-DATUM.
    We will be getting the lastrundate value from another table. And it is passing correct value (ex. 20060731)
    ZVMATLMOVE is a database view created for MKPF and MSEG table. And I checked both table were consistent.
    Dump Analysis:
    Runtime errors         DBIF_RSQL_SQL_ERROR          
    Exception              CX_SY_OPEN_SQL_DB
    Every thing is fine. But I don't know how it is going to dump. Any suggestions?

    Hi !
    It seams that your table is not correct / fully activated.
    To check it out you should try the following:
    - Go to the SE11
    - Give it your table name and go to "Display"
    - Check if the table is "active"
    - Choose "Utilities->Database Object->Check" and see
      if there are any errors
    - go back and choose "Utilities->Runtime Object->Check"
      and see if there are any errors
    If there are any errors - try to activate the table again. You may need the "Utilities->Database Utiliy" for that.
    After there are no more errors by checking all these your program should work.
    Regards
    Rainer
    Some points would be nice if thate helped a bit.

  • Short dump in production

    Hello Friends,
    I have a z table and it is working fine in development and quality system and it is giving short dump error when I try to maintain the same table in production using SM30 tcode. Please suggest me what would be the issue here?
    Thanks,
    Shreekant

    Please delete the existing table maintenance view and regenerate the same.
    1. SE11 > Table Name > MODIFY
    2. Menu.. UTILITIES > Table Maintenance Generator
    Keep a screen shot of this screen for future use.
    3. Click on DELETE in Apps tool Bar
    Then regenerate the Table Maintenance View, as usual.
    Regard
    Vishal

  • LDB short-dump

    Hi,
    My requirement is as below.
    We need to combine 3 multilevel reports into one multilevel report. The 3 multilevel reports transactions are 1)IL07 2)IW30 3)IE07
    So I have copied IL07 report into our Z report and then copying the other multilevel reports into the same Z report . Each standardreport has LDB(Logical database) maintained. In the LDB, nodes are created for Main objects and sub objects.
    If we see LDB name called "TPI" , it has Functional location at main level and remaining objects at sublevel. Now in functional location we have Notification as sub object. And for Notification we have other LDB called QMI in which Notification is maintained at Mianlevel and other objects are at sublevel. Now I need to combine these LDBs into one. So I have copied LDB into z LDB and then adding the same nodes for notification that are in QMI ldb .
    we have partner maintained for Both Functional Location and Notification at their respective level. And I have check boxes for the sub objects on the selection screen so that I user can select whichever he wants to view.
    The problem is If I select both the partners ( I mean for functional Location and Notification) then it is giving dump. If I select only one of them then it is not giving dump. and data is getting printed under their respective nodes.
    The DUMP I am getting is MESSAGE_TYPE_X .
    Please help if you have worked on LDBs.
    Note that : I have installed latest GUI patch levels and all . This is not related to any GUI upgrade or some thing , I am sure. So please dont give GUI related solutions.
    Regards,
    Nageswar

    Also check on AT SELECTION-SCREEN OUTPUT. You`re not selecting any of them too...
    Checkout this code ..
    I declare PNP in attributes and AT SELECTION-SCREEN OUTPUT.
      PNPTIMR5 = ' '.
      PNPTIMR3 = 'X'. ( Just comment it or give error message )
    its giving short dump ,if I try to do the same thing you describe in your post !
    Hope this’ll help you
    Thanks
    Saquib

  • Short dump error when using count(*)

    Hi Experts
    I am getting a short dump error when selecting the records >= current date - 30 see the coding and comment please correct the coding I want to know the ztable records it is important for command interface.
    I have 1402345 records available after deleting the records but as the memory is not enough it is giving short dump error
    select count(*) from ZINT_TABLE
    select count(*) from ZINT_MSGS
       select * from zint_data
                 nto table izint_d2 . "PACKAGE SIZE 20000
       where STATUS = 'OK' AND CREATED_ON >= w_date1.          " VALUE
    endselect.**
    report z_eslp_command_records.
    data: cnt type i.
    data: cnt2 type i.
    data: cnt3 type i.
    data: cnt4 type i.
    DATA:
         w_date1 like sy-datum .
    DATA:
         w_date2 like sy-datum.
    data: izint_msgs type table of zint_msgs.
    data: izint_data type table of zint_data.
    data: izint_m2 type table of zint_msgs.
    data: izint_d2 type table of zint_data.
    INITIALIZATION.
    w_date1 = sy-datum -  30.
    w_date2 = sy-datum -  30.
    select * from zint_data
                 into table izint_data PACKAGE SIZE 3000
                 where STATUS = 'OK' AND CREATED_ON <= w_date1.   " ZERO
    endselect.
    select * from zint_msgs
                 into table izint_msgs  PACKAGE SIZE 3000
                  where  CREATED_ON <= w_date2.              " ZERO
    endselect.
      select * from zint_data
                 into table izint_d2 PACKAGE SIZE 20000
       where STATUS = 'OK' AND CREATED_ON >= w_date1.          " VALUE
    endselect.
    select * from zint_msgs
                 into table izint_m2 PACKAGE SIZE 20000
      where CREATED_ON >= w_date2.                            " VALUE
      endselect.
    select * from zint_data
                into table izint_data2
    where STATUS = 'OK' AND CREATED_ON >= CONVERT(CHAR(8), GETDATE() - 30, 112)).
    ENDSELECT.
      select * from zint_msgs
                into table izint_msgs2
    where CREATED_ON >= CONVERT(CHAR(8), GETDATE() - 30, 112)).
    ENDSELECT.
    sort izint_data by created_on ascending.
    sort izint_msgs by created_on ascending.
    sort izint_d2 by created_on ascending.
    sort izint_m2 by created_on ascending.
    describe table izint_data lines cnt.
    describe table izint_msgs lines cnt2.
    describe table izint_d2 lines cnt3.
    describe table izint_m2 lines cnt4.
    write:/ ' Note: THE RECORDS COUNTED SHOULD SHOW ZERO ELSE THE SCRIPT FAILED TO RUN' color 3.
    skip.
    write:/ '1. Records counted in ZINT_DATA   <=current date - 30                   :' color 2,                        cnt color 4.
    write:/ '2. Records available in ZINT_DATA >=current date - 30                   'color 4,                   cnt3 color 4 .
    skip.
    write:/ '2. Records counted in ZINT_MSGS   <=current date - 30                   :' color 2                 ,                      cnt2 color 4.
    write:/ '4. Records available in ZINT_MSGS >=current date - 30                   'color 4  ,            cnt4 color 4 .
    TOP-OF-PAGE.
    WRITE:/55(60) ' WAGNERS INVESTMENT LIMITED  '.
    WRITE:/50(40) ' Command Interface Data' CENTERED .
      WRITE:/50(40) '----
    ' CENTERED .
      FORMAT INTENSIFIED ON.
      SKIP.
      "FORMAT COLOR COL_HEADING.
      ULINE.
      FORMAT COLOR 1.
    END-OF-PAGE.

    Answer

  • Short dump while executing info package in 3.5 data flow?

    Hi,
    i am getting short dump while executing info package while executing info package. it was working perfectly 2 days back suddenly it is giving this problem. it is a full load for info object text data and i have only 600 records. when i tried with " only info package" it is working perfectly n bringing the data into PSA. But when i use "PSA and the into data target" it is giving short dump.
    i replicated Data source and also i activated transfer rules, update rules still it is not working. When i check with another info objects it is working perfectly fine. i dont know what is wrong with only particular info object.
    Please find attached short dump.
    Thanks

    Hi,
    When you load transaction data I think there is a deadlock.
    Check in the process overview (transaction SM50) the waiting processes are in program SAPLSENA .
    The program SAPLSENA is the lock handler tool.
    Also check if  ACR is running on this target while your load is happening.
    Check in SM12 if there are any lock entries for the Infoobject to which you are loading data and on RSICCONT table .
    Try reloading after deleting the locks manually.
    Regards.

  • Short Dump issue

    Dear all,
    hi,
    i am working on upgrade from 4.6 to ECC6.
    during unicode this statement is not working in ZReports.
    IMPORT: it_vbrp          FROM   DATABASE indx(st) ID '1' ,
    It is giving short dump. with message When importing object "IT_VBRP", the structure did not match the
    structure of the target object. The error occurred in component
    no. 3.
    what should i do.
    any help would be fine for me.
    Thanks
    Jairaj kumar

    Dear all,
    hi,
    i am working on upgrade from 4.6 to ECC6.
    during unicode this statement is not working in ZReports.
    IMPORT: it_vbrp          FROM   DATABASE indx(st) ID '1' ,
    It is giving short dump. with message When importing object "IT_VBRP", the structure did not match the
    structure of the target object. The error occurred in component
    no. 3.
    what should i do.
    any help would be fine for me.
    Thanks
    Jairaj kumar

  • ABAP Program Short Dump in BW

    I have created a dynamic program which would read any table name as input parameter and print the contents. Its working if I use  a small table(3 fields) and the same program is throwing short dump if pass a big table.
    Shortdump
    "SAPSQL_SELECT_TAB_TOO_SMALL" C           
    "ZBW_DYNAMIC_ITAB1" or "ZBW_DYNAMIC_ITAB1"
    "START-OF-SELECTION"                      
    Error in the line below
       61                                  
       62 * Select Data from table.        
    >>>>> select * into table <dyn_table>  
       64            from (p_table).       
       65                                
    Program
    *& Report  ZBW_DYNAMIC_ITAB1
    REPORT  ZBW_DYNAMIC_ITAB1.
    type-pools: slis.
    field-symbols: <dyn_table> type standard table,
                   <dyn_wa>,
                   <dyn_field>.
    data: alv_fldcat type slis_t_fieldcat_alv,
          it_fldcat type lvc_t_fcat.
    type-pools : abap.
    data : it_details type abap_compdescr_tab,
           wa_details type abap_compdescr.
    data : ref_descr type ref to cl_abap_structdescr.
    data: new_table type ref to data,
          new_line  type ref to data,
          wa_it_fldcat type lvc_s_fcat.
    selection-screen begin of block b1 with frame title text .
    parameters: p_table(30) type c.
    selection-screen end of block b1.
    Get the structure of the table.
    ref_descr ?= cl_abap_typedescr=>describe_by_name( p_table ).
    it_details[] = ref_descr->components[].
    loop at it_details into wa_details.
      clear wa_it_fldcat.
      wa_it_fldcat-fieldname = wa_details-name .
      wa_it_fldcat-datatype = wa_details-type_kind.
      wa_it_fldcat-intlen = wa_details-length.
      wa_it_fldcat-decimals = wa_details-decimals.
      append wa_it_fldcat to it_fldcat .
    endloop.
    Create dynamic internal table and assign to FS
    call method cl_alv_table_create=>create_dynamic_table
                 exporting
                    it_fieldcatalog = it_fldcat
                 importing
                    ep_table        = new_table.
    assign new_table->* to <dyn_table>.
    Create dynamic work area and assign to FS
    create data new_line like line of <dyn_table>.
    assign new_line->* to <dyn_wa>.
    Select Data from table.
    select * from (p_table) into table <dyn_table>
    Write out data from table.
    loop at <dyn_table> into <dyn_wa>.
      do.
        assign component  sy-index  of structure <dyn_wa> to <dyn_field>.
        if sy-subrc <> 0.
          exit.
        endif.
        if sy-index = 1.
          write:/ <dyn_field>.
        else.
          write: <dyn_field>.
        endif.
      enddo.
    endloop.

    Hi,
    The dynamic table that is generated is not converting the exact output length in case of packed numbers.
    Foe eg : If there is an packed field of length 7 , the dynamic table is converting it to Char 7 , but the actual output length of Pack 7 is 15.Hence it is giving short dump saying that Internal Table length is not sufficient.
    Probably it might have worked for smaller tables for you because you might not have used Packed field in there.
    Regards,
    Vijay.

Maybe you are looking for

  • Problems with dark Artifacts on images when viewed on PC screens???

    I have a very urgent problem concerning Adobe Photoshop CS3, my Apple Cinema 20 inch Display and my SpyderPro2 on my Mac Pro Intel Dual Core Xeon 2x 2.66GHz. I have been using the Spyder for some years now, but recently I have been having big problem

  • Saving List as Local File

    hi   How to save Report output (i.e.,list) as local file that is Excel or Word Document to the system.    Is there any std procedure to save or we have to write logic using module pool by placing Save button(pushbutton). Thanks & Regards , sandhya

  • Shared Objects not imported properly

    I am moving from 6i to 9i. I exported my 6i applications. I imported them into 9i. The one application consists of some tables shared from another. I imported the source of the shares first. In the RON the shared objects show correctly under the "Tab

  • Basic Dreamweaver/Photoshop Question

    I understand that you can build a layout in Photoshop then cut up the layout into pieces to bring over to Dreamweaver. But then what? Do you set them as absolute/fixed/floating images? I have wotked with CSS, HTML and know basics to Photoshop. Thanks

  • What is the best Digital videocamera to use in iMovie?

    hey i was wondering on what will be the best Digital Video camera that i can use for my macbook pro that have either the firewire or usb connection to it. so that i don't have to buy the pinnacle studio and canopus. because they are just too expensiv