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.

Similar Messages

  • ABAP program showing dump in Portal

    Hi,
    When we are trying to run an ABAP program in Portal its generating a dumb and a part of the message is
    "The termination was triggered in function "getwa_abswa" of the SAP kernel, in line 1044 of the module "//bas/700_REL/src/krn/runt/abgetwa.c#4".
    The internal operation just processed is "PAR2".
    Internal mode was started at 20080115115135."
    Error in the ABAP Application Program
    The current ABAP program "SAPLSLVC" had to be terminated because it has come across a statement that unfortunately cannot be executed.
    When the selection criteria is reduced the report is running. Can anyone suggest to how to overcome this problem.
    Thanks n Regards,
    Sasha.

    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.

  • Zci type ADOBE Interactive Form in ABAP Webdynpro short dump

    Adobe Reader version 8.1.2
    Life Cycle Designer version 7.1.4270.1.421766
    ECC 6.0 patch 13
    When I ran the 'FP_PDF_TEST_00' , it shows
    Version Information: 710.20061024154505.342190
    In my ABAP Webdynpro app., it has 3 inputfields.
    In the Form layout, I changed the form layout type to 'ZCI' for interactive form, and Insert the WebDynpro Script.
    And in the ABAP Webdynpro view layput designer, I enabled the pdf form element.
    All objects compiled without any problem.
    During the runtime, it got the following short dump:
    21 METHOD       CX_WD_GENERAL=================CP    CX_WD_GENERAL=================CM003     5
        CX_WD_GENERAL=>RAISE                                                                     
    20 METHOD       CL_WD_ADOBE_SERVICES==========CP    CL_WD_ADOBE_SERVICES==========CM008   193
        CL_WD_ADOBE_SERVICES=>CREATE_PDF                                                         
    19 METHOD       /1WDA/LADOBE==================CP    /1WDA/LADOBE==================CCIMP  1955
        CL_INTERACTIVE_FORM_ZCI=>IF_WDR_VIEW_ELEMENT_ADAPTER~SET_CONTENT                         
    Our BASIS sent me the ADS trace:
    SAP Interactive Forms by Adobe
    Render Error Report
    'pdf' Log Entries
    restoreState is not a valid attribute of subform, Attribute not loaded. Line 5.
    Invalid node type: dataGroup
    The fault occurred on line 0.
    The SOM expression '$record.BAPIBNAME' for the dataRef specified on field 'BAPIBNAME', resolved to an incompatible node type of 'dataGroup'.
    Any comment or advise?

    Hi,
    As far as i know when you use Adobe forms in a WD4A application, language is your "web" connection language.
    You can have a look at standard class CL_WD_ADOBE_SERVICE, it's used when generating an adobe forms from WD4A. , more particulary look at method DETERMINE_DOCPARAMS.
    regards

  • HR-ABAP Infotype short dump

    Hi
    I have created a custom infotype and I had added some additional logic in the module pool in PM01. Nw whn try to open the module by double clickin on it , it is goin for dump.
    I'm gettin the followin error..
    TSV_TNEW_PAGE_ALLOC_FAILED
    No more storage space available for extending an internal table.
    I jus want to know whether it is the problem of my object or shd I take the help of basis for this....

    Hi Prabhu,
    But I never got this error before...I had worked on 3 to 4 custom infotypes...For all infotypes im gettin the same thing...even for those for which I had not inserted any logic...
    This z my code which I had written in PBO of module pool, that to to disable the field.
    *&      Module  DIS_DTYP  OUTPUT
          text
    MODULE DIS_DTYP OUTPUT.
      loop at screen.
        check screen-group1 = 'SHW'.
        screen-input = '0'.
        modify screen.
      endloop.
    ENDMODULE.

  • Short dump with decimal issue

    Now I want to get total weight of the material as weight * quantity. When I doing this process the program short dump.
    If my user setting in su01 is 1,234,567.89 it will work normally, but if I changed my user setting to 1.234.567,89 it will get weight like 6,55 which cause short dump in total weight get. Please help me for solution that no mater user setting is dot or comma it will work successfully. thanks.

    I think the problem lies in fact that you are treating this variable as character one (of type c or string ) . This is not correct. You should use only packed numbers (of type p ) for calculation.
    The user settings has nothing to do with the calculation. These are purely for displaying data, not for calculating them. So what you need is something like
    data: weight type p decimals 2 value '1234567.89',
             quantity type i value 3,
             result(10) type p decimals 2.  
    result = weight * quantity. "the value stored in variable has form 3703703.67
    "only when you display your data it will receive the format of user settings
    write: weight,  "displayed as 1,234,567.89 or 1.234.567,89 -> depending on the settings
              result.    "displayed as 3,703,703.67 or 3.703.703,67 -> depending on the settings
    Regards
    Marcin

  • What are the major situations  to go to the short dump in abap programming?

    What are the major situations  to go to the short dump in abap programming?

    Hi,
    The major situations that an ABAP Program can result a dumb are as follows...
    1) Poor coding i.e., if the data in the data base is less, then even a poor code can give you the result.  But when you transport the program into Production, then there the same program will give you a dump, resulting 'TIMED OUT' error.  So performance tunning is required for each and every program.
    2) while calling a function module.
    3) extracting of data into fields which are not type casted.
    4) in case of x/y value, one should check the value of 'y' should not be zero, else a dump will result.
    these are few which i can give for time being........

  • Short Dump in ABAP program "SAPLOLEA" - in "AC_SYSTEM_FLUSH

    Hi Can You tell me the reason and solution for this dump,
    Information on where terminated
        Termination occurred in the ABAP program "SAPLOLEA" - in "AC_SYSTEM_FLUSH".
        The main program was "ZXXX ".
        In the source code you have the termination point in line 29
        of the (Include) program "LOLEAU02".

    The only input I got from production is
    User and Transaction
        Client.............. 300
        User................ "xxxxx"
        Language key........ "E"
        Transaction......... "Zaaa"
        Program............. "SAPLOLEA"
        Screen.............. "SAPLSLVC_FULLSCREEN 0500"
        Screen line......... 0
       Information on where terminated
        Termination occurred in the ABAP program "SAPLOLEA" - in "AC_SYSTEM_FLUSH".
        The main program was "Zaaaa ".
        In the source code you have the termination point in line 29
        of the (Include) program "LOLEAU02".

  • Short dump in standard program

    Hi Friends,
    below description is short dump for standard program.
    Please see the below and help me how to correct the program.
    The current application triggered a termination with a short dump.            
    What happened?
    The current application program detected a situation which really             
    should not occur. Therefore, a termination with a short dump was              
    triggered on purpose by the key word MESSAGE (type X).                      
    Error analysis
    Short text of error message:                                                  
    Internal error: Program   , include   , form   .                                                                               
    Technical information about the message:                                      
    Diagnosis                                                                    
         An unexpected error has occurred.                                        
    Procedure                                                                    
         If you can reproduce the error, contact the SAP Hotline quoting the      
         error number.                                                            
    Message classe...... "GR"                                                     
    Number.............. 214   
    How to correct the error
    Probably the only way to eliminate the error is to correct the program.       
                                                                                    You may able to find an interim solution to the problem                       
    in the SAP note system. If you have access to the note system yourself,       
    use the following search criteria:                                                                               
    "MESSAGE_TYPE_X" C                                                            
    "SAPFGRWE" or "FGRWEF80_F80_FILL_COL_TAB"                                     
    "F80_FILL_COL_TAB"                                                            
    If you cannot solve the problem yourself, please send the                     
    following documents to SAP:                                                                               
    1. A hard copy print describing the problem.                                  
       To obtain this, select the "Print" function on the current screen.         
                                                                                    2. A suitable hardcopy prinout of the system log.                             
       To obtain this, call the system log with Transaction SM21                  
       and select the "Print" function to print out the relevant                  
       part.                                                                               
    3. If the programs are your own programs or modified SAP programs,            
       supply the source code.                                                    
       To do this, you can either use the "PRINT" command in the editor or        
       print the programs using the report RSINCL00.                                                                               
    4. Details regarding the conditions under which the error occurred            
       or which actions and input led to the error.                               
    Thanks & Regards,
    Sree
    Edited by: adepus on Oct 7, 2009 12:39 PM
    Edited by: adepus on Oct 7, 2009 12:39 PM

    Hi Clemens,
    I am getting a dump error as shown below. Could you please find some resolution for this issue. we just made some changes to the transaction GS02(Just added a GL account to one of the sets).
    Runtime Error MESSAGE_TYPE_X
    ShrtText
    The current application triggered a termination with a short dump.
    What happened?
    The current application program detected a situation which really
    should not occur. Therefore, a termination with a short dump was
    triggered on purpose by the key word MESSAGE (type X).
    What can you do?
    Print out the error message (using the "Print" function)
    and make a note of the actions and input that caused the
    error.
    To resolve the problem, contact your SAP system administrator.
    You can use transaction ST22 (ABAP Dump Analysis) to view and administer
    termination messages, especially those beyond their normal deletion
    date.
    is especially useful if you want to keep a particular message.
    Error analysis
    Short text of error message:
    Internal error: Program , include , form .
    Technical information about the message:
    Diagnosis
    An unexpected error has occurred.
    Procedure
    If you can reproduce the error, contact the SAP Hotline quoting the
    error number.
    Message classe...... "GR"
    Number.............. 214
    Variable 1.......... " "
    Variable 2.......... " "
    Variable 3.......... " "
    Variable 4.......... " "
    Variable 3.......... " "
    Variable 4.......... " "
    to correct the error
    Probably the only way to eliminate the error is to correct the program.
    You may able to find an interim solution to the problem
    in the SAP note system. If you have access to the note system yourself,
    use the following search criteria:
    "MESSAGE_TYPE_X" C
    "SAPFGRWE" or "FGRWEF80_F80_FILL_COL_TAB"
    "F80_FILL_COL_TAB"
    If you cannot solve the problem yourself and you wish to send
    an error message to SAP, include the following documents:
    1. A printout of the problem description (short dump)
    To obtain this, select in the current display "System->List->
    Save->Local File (unconverted)".
    2. A suitable printout of the system log
    To obtain this, call the system log through transaction SM21.
    Limit the time interval to 10 minutes before and 5 minutes
    after the short dump. In the display, then select the function
    "System->List->Save->Local File (unconverted)".
    3. If the programs are your own programs or modified SAP programs,
    supply the source code.
    To do this, select the Editor function "Further Utilities->
    Upload/Download->Download".
    4. Details regarding the conditions under which the error occurred
    or which actions and input led to the error.
    Source Code
    79 MESSAGE x214.
    80 ENDIF.
    81 PERFORM e08_read_object_index(sapfgsb0)
    82 USING fcolumns-dim_index.
    83 IF c-subrc 0. MESSAGE x214. ENDIF.
    84 c_dsentry = c-tval-from.
    85 IF c_dsentry '='.
    86 READ TABLE data_fields BINARY SEARCH
    87 WITH KEY tab = rep_table
    88 dsentry = c_dsentry.
    >>>> IF sy-subrc 0. MESSAGE x214. ENDIF.
    90 ENDIF.
    91 WHEN OTHERS.
    92 c_dsentry = '*'.
    93 ENDCASE.
    94 ENDIF.
    Regards,
    Pavan

  • Short Dump While selecting Variant for ABAP query

    Hi,
    ABAP query is going to short dump (CONNE_IMPORT_WRONG_COMP_LENG) while selecting a Variant. If i create and use variant then i am able to see Output of Variant.But not able to use Earlier created variants .
    I think some mismatch between variant values and selection screen fields.Can anyone tell me how to rectify this ?
    I am not able to debug the code as dump is coming in a System program(RSDBSPVD).Can anyone tell me which database table i can use to get values of the Variant.
    Thanks in Advance.
    Nirmala K

    Hi nirmala,
    chk the links:
    http://help.sap.com/saphelp_webas620/helpdata/en/c0/980398e58611d194cc00a0c94260a5/content.htm
    http://help.sap.com/saphelp_webas620/helpdata/en/c0/9803a7e58611d194cc00a0c94260a5/content.htm
    regards,
    keerthi.

  • Short Dump while activating Transformation through Program

    HI All,
    I am getting short dump while activating - Inactive Transformation through Program RSDG_TRFN_ACTIVATE.
    However while i can activate single Transformation but if run without selection, I am getting this dump.
    Short Description of Dump -
    Category          
    ABAP Programming Error
    Runtime Errors    
    ASSERTION_FAILED
    ABAP Program      
    CL_RSAR_FORMULAS==============CP
    Application Component  BW-WHM-DST
    Date and Time     
    Please Guide.
    Prasad

    Hi Prasad,
    Have you changed the 'Object Status' from INA to ACT when using the program RSDG_TRFN_ACTIVATE?
    You can also refer to the note SAP Note 1030987 - Activation of transformations dumps
    regards,
    Ashvin

  • Short Dump-Syntax error program"CL_RSD_MULTIPROV==CP" after EHP1SP5 upgrade

    Hi,
         MultiProvider Activation/Display data is resulting into short dump with following text
    Error in the ABAP Application Program
    The current ABAP program "CL_RSD_MULTIPROV_CHECK========CP" had to be
    terminated because it has
    come across a statement that unfortunately cannot be executed.
    The following syntax error occurred in program
    "CL_RSD_MULTIPROV==============CP " in include
    "CL_RSD_MULTIPROV==============CM010 " in
    line 1:
    "Method "CHECK_LINITFL" is not declared or inherited in class "CL_RSD_M"
    "ULTIPROV". -"
    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 "CL_RSD_MULTIPROV_CHECK========CP" had to be
    terminated because it has
    come across a statement that unfortunately cannot be executed.
              We have recently upgraded to EHP1SP5. We noticed this issue just after that.
    Regards,
    PD

    Hi,
    Please check the note 1461401.
    1461401 - System error in the program CL_RSD_MULTIPROV_CHECK
    This note should help you.
    Regards,
    Rafael

  • Short dump Error during VM container communication between ABAP and JAVA.

    Hello All,
    Can anybody please help with resolving the following issue:
    Short dump is displayed, when I try to insert CRM product (type: material) in the document (opportunity). This CRM product was created in CRM directly.
    When I try to insert ECC migrated material, everything works fine.
    Here is the details of dump:
    Short text
        Error during VM container communication between ABAP and JAVA
    Information on where terminated
        Termination occurred in the ABAP program "SAPLPRC_INT" - in "GET_PRICING_PROCEDURE_INFO".
        The main program was "SAPMHTTP ". In the source code you have the termination point in line 100 of the (Include) program "LPRC_INTF35".
    Thank you!

    hi Willie,
         this is the dump, and i have used the t-code sm52 . the VMC is not active.
    |Short Text                                                                                        |
    |    Error during VM Container communication between ABAP and JAVA.                                |
    |What happened?                                                                                    |
    |    The current program had to be terminated because of an                                        |
    |    error when installing the R/3 System.                                                         |
    |    Error in the RFC layer.                                                                       |
    |What can you do?                                                                                  |
    |    Note which actions and entries caused the error to occur.                                     |
    |                                                                                                  |
    |    Consult your SAP administrator.                                                               |
    |                                                                                                  |
    |    Using transaction ST22 for ABAP dump analysis, you can view, manage,                          |
    |    and retain termination messages for longer periods.                                           |
    |Error analysis                                                                                    |
    |    An error has occurred in the RFC layer during communication between                           |
    |    JAVA and the ABAP stack. This prevents data from being passed correctly                       |
    |    between the two stacks.                                                                       |
    |                                                                                                  |
    |    Message    = TH_VMC_SERV_NOT_ACTIVE                                                           |
    |    Return code = -1007                                                                           |
    |    Pointer    = "000007DD348F6138"                                                               |
    |How to correct the error                                                                          |
    |    Check whether the VMC is active on your application server. To do this,                       |
    |    run transaction SM52. If the VMC is not active, contact your SAP                              |
    |    administrator.                                                                                |
    Regards
    Charles

  • SPAM update of DMIS stalled with ABAP Short Dump

    Hi Experts,
    Was wondering if someone could help me. I am trying to install DMIS on my NW 702 system. The installation sort of halted half way and now I am just not able to get into SPAM. Everytime I try to start SPAM the system loops for a good few minutes and it short dumps as below:
    Category          
    ABAP Programming Error
    Runtime Errors    
    TIME_OUT
    ABAP Program      
    SAPLOCS_SEMAPHORE
    Application Component  BC-UPG-OCS
    Trigger Location of Runtime Error
        Program                                 SAPLOCS_SEMAPHORE
        Include                                 LOCS_SEMAPHOREU02
        Row                                     85
        Module type                             (FUNCTION)
        Module Name                             OCS_QUEUE_SEMAPHORE
    55 *   OCS is locked, remember this
    56     ev_locked = on.
    57 *   check if OCS is locked by other (OCS) tools
    58     IF iv_tool = space.   "maybe were are called in batch, check
    59       IF sy-batch = off OR
    60          ls_pat10-btch_state NA gc_batch_states.
    61 *       IV_TOOL = space but no batch processing
    62 *       -> foreign lock, you are not allowed to proceed
    63         cs_sema = ls_pat10.
    64         RAISE foreign_lock.
    65       ENDIF.
    66     ELSE.
    67       IF ls_pat10-ocs_tool <> iv_tool.
    68 *       foreign lock, you are not allowed to proceed
    69         cs_sema = ls_pat10.
    70         RAISE foreign_lock.
    71       ENDIF.
    72     ENDIF.
    73
    74 *   we are either in batch processing or IV_TOOL matches PAT10
    75 *   --> own lock, return it
    76     IF iv_read_only <> space.
    77       cs_sema = ls_pat10.
    78       EXIT.
    79     ENDIF.
       79
    ENDIF.
       80 *   update it
       81
    ls_pat10 = cs_sema.
       82
    ls_pat10-responsibl = sy-uname.
       83
    ls_pat10-imple_date = sy-datum.
       84
    ls_pat10-imple_time = sy-uzeit.
    >>>>>
    UPDATE pat10 FROM ls_pat10.
       86
    cs_sema = ls_pat10.
       87   ENDIF.   "sy-subrc = 4
       88
       89 ENDFUNCTION.
    4 FUNCTION
    SAPLOCS_SEMAPHORE              
    LOCS_SEMAPHOREU02                 
    85
       OCS_QUEUE_SEMAPHORE
    3 FUNCTION
    SAPLOCS_BATCH                  
    LOCS_BATCHU07                    
    186
       OCS_DELETE_BATCH_SEMAPHORE
    2 FORM    
    SAPMSPAM                       
    MSPAMF06                         
    190
       READ_N_CHECK_BATCH_JOBS
    1 MODULE (PBO) SAPMSPAM                       
    MSPAMO01                         
    776
       READ_BATCH_JOBS
    Would appreciate if someone can help and has faced something similar.
    Regards,
    Manish

    Hi
    The Abap programs get a timeout when trying to update table PAT10 ( OCS Semaphore).
    Check in SM12 if there are locks on that table
    Check also that table contents, there should be only one entry, what is in field OCS_TOOL ?
    DMIS should be installed using transaction SAINT (in client 000) and not SPAM.
    Regards
    1468391 - Installation and delta upgrade of DMIS 2010_1

  • Short dump due termination in the program SAPLSNR3

    Hi Experts,
    While running an IP I am getting short dump, and error analysis says
    An ASSIGN statement in the program "SAPLSNR3" contained a field symbol with
    length 0. This is not possible. length 0.This is not possible.
    can any one exlain why the IP is going for short dump,rectify the error and make the IP to run sucessful.
    Regards,
    Siddhardh

    Hi Suresh,
    Your dump is occuring due to database limit of sql statment (Native SQL) that is generated from your abap sql. The range is killing him (as you already notice).
    The thread bellow have some info about this, but the solution can't be applyed to you:
    To update 1 field of ztable(60 fields) for 2000 records in minimum DB hit
    Maybe you can build some logic to reduce the value of two ranges (also concatenating them). Anyway, due to amount of lines involved (24.500 lines).... I don't think it is possible.
    One option is filter the result on ABAP, after your SQL w/o the ranges you may try:
    DELETE FROM TABLE i_glpct2
    WHERE NOT ( racct IN r_profloss OR racct IN r_balsheet ).
    This can raise a performance problem if the number of returned rows from database is to high.
    Another option is change your database access. Where the values of the two ranges came from ? database ? If they came from database try to use INNER JOIN, this will solve the problem w/o performance problem.
    Best Regards, Fernando Da Ró

  • Short Dump : ABAP/4 Processor:Syntax_Error

    Hello All,
    I scheduled one chain and while activating the ODS it gave the Short Dump
    ABAP/4 Processor:Syntax_Error.
    Then i tried to change the delete the request freom ODS after changing its status to RED.
    But while deleting also it is giving the same dump.
    I am unable to delete the request also.
    In sm37 following messeges were there in logs.
    Job started
    Step 001 started (program RSODSACT1, variant &0000000005515, us
    Activation is running: Data target MPU09O74, from 19.886 to 19.
    Data to be activated successfully checked against archiving obj
    SQL: 20.11.2007 09:02:49 PJAIN
    ANALYZE TABLE "/BIC/AMPU09O7440" DELETE
    STATISTICS
    SQL-END: 20.11.2007 09:02:49 00:00:00
    SQL: 20.11.2007 09:02:49 PJAIN
    BEGIN DBMS_STATS.GATHER_TABLE_STATS ( OWNNAME =>
    'SAPEBF', TABNAME => '"/BIC/AMPU09O7440"',
    ESTIMATE_PERCENT => 1 , METHOD_OPT => 'FOR ALL
    INDEXED COLUMNS SIZE 75', DEGREE => 1 ,
    GRANULARITY => 'ALL', CASCADE => TRUE ); END;
    SQL-END: 20.11.2007 09:02:51 00:00:02
    SQL: 20.11.2007 09:02:51 PJAIN
    ANALYZE TABLE "/BIC/AMPU09O7400" DELETE
    STATISTICS
    SQL-END: 20.11.2007 09:02:51 00:00:00
    SQL: 20.11.2007 09:02:51 PJAIN
    BEGIN DBMS_STATS.GATHER_TABLE_STATS ( OWNNAME =>
    'SAPEBF', TABNAME => '"/BIC/AMPU09O7400"',
    ESTIMATE_PERCENT => 1 , METHOD_OPT => 'FOR ALL
    INDEXED COLUMNS SIZE 75', DEGREE => 1 ,
    GRANULARITY => 'ALL', CASCADE => TRUE ); END;
    SQL-END: 20.11.2007 09:02:51 00:00:00
    ABAP/4 processor: SYNTAX_ERROR
    Job cancelled

    See the dump in ST22 for details.

Maybe you are looking for

  • Download the alv report in excel

    dear experts I am creating ALV report and working fine, i want the report sould be viewed in excel format when i click the icon on AlV display with regards. Ajay Kumar.

  • Command To ID File System Type

    I was found a server running Arch. Powered on fine and seems to be running great. I was able to recover the root login however I would like to know what command I can run in a terminal to identify the file system type on the disk partitions. [root@ti

  • Filter by default in ALV

    Hi, My requirement is when ALV is displayed first time, it should come up with filter. Could you please let me know how to set filter row by default in ALV. Thanks,

  • Developer 6i / Developer 2000 ?

    I have a project with Oracle 8i with Developer 6i. I am not sure if Developer 6i is same as Developer 2000. Any pointers will be helpful.

  • Can you link / connect sony smartband to other apps such as : endomodo, MyFitnessPal, MapMyRun ?

    Can you link or connect sony smartband with/to other apps such as : Endomodo, MapMyRun, MyFitnessPal ? Is Does the sony smartband work for the lifelog ONLY? Thank you!