Dump on DBIF_RSQL_INVALID_RSQL se14 pooled table adjustment

I have been trying to adjust table T157T in SE14 and I get a short dump that says:
Runtime Error          DBIF_RSQL_INVALID_RSQL
Exception              CX_SY_OPEN_SQL_DB
Occurred on     08.03.2008 at   15:06:58
Error in the module RSQL accessing the database interface.
What happened?
Error in ABAP application program.
The current ABAP program "%_T002S0" had to be terminated because one of the
statements could not be executed.
This is probably due to an error in the ABAP program.
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.
Error analysis
An exception occurred. This exception is dealt with in more detail below. The exception, which is assigned to the class 'CX_SY_OPEN_SQL_DB', was neither caught nor passed along using a RAISING clause, in the procedure "DATA_COPY"  "(FORM)".
Since the caller of the procedure could not have expected this exception to occur, the running program was terminated.
The reason for the exception is:
The data read during a SELECT access could not be inserted into the target field. Either conversion is not supported for the target field's type or the
target field is too short to accept the value or the data are not in a form that the target field can accept
How to correct the error
The exception must either be prevented, caught within the procedure "DATA_COPY"
"(FORM)", or declared in the procedure's RAISING clause. To prevent the exception, note the following:
Check the entries in the developer trace (Transaction ST11) This contains details about the type and length of the database field, and the field in ABAP in which the database field should
have been placed.
Assistance will be greatly appreciated and rewarded.
Regards.

DURING ADJUST THERE ARE PRIMARLY MANY STEPS INVOLVED
LOCKING THE TABLE
1.CREATING A TABLE WITH SAME NAME SPACE Q*
2.CREATING THE STRCUTRE OF THE TABLE
3.DELETING INDEXES
4.MOVING THE DATA FROM TABLE ORIGINAL TO TEMP TABLE.
5.DELETING THE TABLE OLD
6.CREATING NEW STRUCTURE WITH ORGINAL NAME.
7.MOVING THE DATA.
8.DELETING ALL THE TEMP TABLE & STRUCTURES.
UNLOCKING THE TABLE
U R ERROR PRETAINS TO EITHER DURING THE DATA_COPY U R SELECT QUERIE RUNS IN LOOPS
SO THE AUM-->> AUTOMATIC UNDO MANAGEMENT IS NOT SO ADEQUATELY SUPPORTED
SO IT TRIES TO RETAIN THE RECORD BUT IT COULDNT RETAIN BECAUSE OF IT NON AVAILBILITY OF BUFFERS SO SEE THE AUM-->> REDO PARAMETERS ARE AT HIGHEST AND THEN TRY YOUR ACIVITY U CAN ALSO GET THE LOG PARAMETERS IN ALERT.LOG FILE IN THE BACKEND ASK UR BASIS CONSULTANT TO LOOK INTO IT.
REGARDS
DEVANAND

Similar Messages

  • How can i decleare select-options in module pool table control?

    Hi everybody!!
    Can anyone tell me how can I decleare select-options in module pool table control screen?. I have declared it in a screen with a table control but a dump is triggered due to an error when generating the selection screen.
    Regards...

    My suggestion will be try to use fm
        call function 'FREE_SELECTIONS_DIALOG'
    Please search this forum you can find lot of threads related to this.

  • How to get the data from Pooled Table T157E.

    Hi Experts,
    How to get the data from Pooled Table T157E.
    Any help.
    Thanks in Advance,
    Ur's Harsha.

    create some internal table similar to T157E and pass all data as per SPRAS.
    After that use internal table in your program as per the requirement.
    Regds,
    Anil

  • Select query taking too much time to fetch data from pool table a005

    Dear all,
    I am using 2 pool table a005 and a006 in my program. I am using select query to fetch data from these table. i.e. example is mentioned below.
    select * from a005 into table t_a005 for all entries in it_itab
                       where vkorg in s_vkorg
                       and     matnr in  s_matnr
                       and     aplp   in  s_aplp
                       and     kmunh = it_itab-kmunh.
    here i can't create index also as tables are pool table...If there is any solutions , than please help me for same..
    Thanks ,

    it would be helpful to know what other fields are in the internal table you are using for the FOR ALL ENTRIES.
    In general, you should code the order of your fields in the select in the same order as they appear in the database.  If you do not have the top key field, then the entire database is read. If it's large then it's going to take a lot of time.  The more key fields from the beginning of the structure that you can supply at faster the retrieval.
    Regards,
    Brent

  • Use of "Pool Table(s)" in Module Pool Program

    Hi,
    I often see/hear that Pool tables play an important role in Module Pool Programs.
    anybody please explain me how Pool tables are used in Module Pools?? => Did you look for any documentation?
    if possible with code snippets. =>NO.
    Thanks,
    Kranthi.
    Edited by: kishan P on Nov 14, 2010 7:23 PM

    Hi,
    I often see/hear that Pool tables play an important role in Module Pool Programs.
    anybody please explain me how Pool tables are used in Module Pools?? => Did you look for any documentation?
    if possible with code snippets. =>NO.
    Thanks,
    Kranthi.
    Edited by: kishan P on Nov 14, 2010 7:23 PM

  • How can I get data in flat file from Pool table and cluster table ?

    Hi,
    I am working in one Achiving project. My requirement is to get data into flat file from Cluster table and pool table.
    Is there any tool avilable to download data into flat file from pool table and cluster table ?
    if table name given in the selection screen then data will be downloaded into flat file.
    waiting for quick response.
    Best Regards,
    Bansidhar

    Data cannot be retrived directly form the cluster table
    as the Cluster results are stored in Cluster Key say for example PCLkey
    and form that Key we need to fetch the data
    these clustes are not the part of PNP or PNPCE tables
    for ur info kindly check

  • View, Clustur & Pooled Table

    Hi,
    I have few questions on the above topics.
    How can we retreive data from View , Clustur & Pooled Table using Select statements.
    If possible can you explain me with an example.
    what kind of data can we retreive from them . for example BSEC - how can we use it .
    Thank you in advance.
    Ry

    hi,
    You can access them using SELECT statements,  you CAN NOT use joins though.
    For example, BSEG is a cluster table.
    report znave_0003 .
    data: ibseg type table of bseg with header line.
    parameters: p_bukrs type bseg-bukrs.
    select * into table ibseg from bseg
            up to 100 rows
               where bukrs = p_bukrs.
    loop at ibseg.
      write:/ ibseg-bukrs, ibseg-belnr.
    endloop.
    to retrieve the data from a view....
    Declare the internal table with the type of View.
    Data : itab type table of zview001.
    or write select query as
    select * from zview001 into corresponding fields of itab.
    Also you can uncheck the Unicode checks active (checkbox) in the program attributes.
    {When you check that unicode checkbox, you should use an internal table without a header line. Instead you should declare a work area)
    Hope it helps...
    ~~Guduri

  • How to extract data from a pool table?

    Hello,
    I want to create an generic extractor for table T030, but this is a pool/cluster table and it is not possible to create a view for such a table.
    Do somebody know how to solve this problem? Does there exist function modules to read the data from a pool data?
    Thanks
    Theodor

    Function Module would be your best bet..considering thats the best way as far as performance is taken into consideration.
    But there is a work around too...
    If the other table u use in the join is not a clusture table then u can create a view on that table and u can add append structure to this  with fields from the clusture table and use an exit to populate it.
    Try it Will Work...used this technique when I used KONV.* This Procedure does not decrease performance considerably.
    at least in my case as thre were only a few fields i needed from pool table
    Hope this Helps
    Anand Raj

  • Is it possible to use a pooled table when creating a view?

    Hi,
    I am trying to create a view based on table A005 but this table is a Pooled table and the system wont allow me to create a view on it.
    Is there any way to do this?
    Thanks,

    Hi,
      Join stmt can not be executed on Cluster tables & pooled tables.
    regards,
    ajit.

  • Pool Table Creation in ABAP Dictionary

    Please Help
    How to create Pool table in ABAP DDIC ? I Tried with the Existing Transparent Table
    Changing Its Category to Pool Table by going through EXTRA menu and then Change Table Category Option but After this
    it is asking for Table Pool name in Delivery and Maintaince Tab what should be the name of table pool ?
    How to assign pool table in Table Pool?

    hi,
    u will have to create your own ztable pool/cluster anad assign your table to that .
    eg.
    refer to table A005 its a pool table ...

  • Event Pooling Table doesn't work

    I have created Event Pooling Table and registered it. When I insert correct name into field TABLENAME nothing happens - when I look at BI Administrator - Manage - Cache - the table still has entry in cache (and record is deleted from EPT table). When I insert incorrect name info field TABLENAME, I can see message in errorlog (The physical table misstat1_db::MIP:MV_E_HIMA in a cache polled row does not exist.) and I suppose that it is working. But cache not purged.
    Can you someone tell me why?
    Thx.

    Hi,
    Stale cache entries are purged automatically at the specified polling intervals. As your saying record has deleted, it means that polling has occured.
    Are you sure that the cache entry you are looking at is the same table which has been modified?
    If possible, not a solution just for debugging, try to create sample request in Answers and check whether it's been changing when the table get modified.
    -Vency

  • Dynamic text in module pool table control

    Hi ,
    Can we have dynamic header text in module pool table control. Like dynamic header text in ALV report.
    Thanks,
    Prem.

    Hi,
    Populate an internal table with the header text that you want.
    Replace the headers with I/O fields.
    Populate the Headers in the PBO.

  • Alternative for Pooled table M_VMVAC in ECC 5 version

    Hi,
    Pooled table M_VMVAC in version 3.1i does not exist
    in ECC 5.Can anyone tell me the alternative for this?
    Pool/cluster is M_VMVA in 3.1i version
    Helpful answers will be rewarded
    Thanks
    Kiran

    Check data base view V_VMVAC.
    Regards
    Sridhar

  • Alternative for Pooled table M_VMVLA in ECC 5 version

    Hi,
    Pooled table M_VMVLA in version 3.1i does not exist
    in ECC 5.Can anyone tell me the alternative for this?
    <b>Pool/cluster  M_VMVL in 3.1i version</b>
    Helpful answers will be rewarded
    Thanks
    Kiran

    Hai Kiran
    Check the following Code in program 'RVV50L21'.
    the following Code is present in ECC 5.0
    select * from <b>shp_idx_gdsi</b> where wadat in i_datum     "470
                                     and   vstel in i_vstel
                                     and   route in i_route
                                     and   vbeln eq vttp-vbeln.
    simillar code in 3.1 version is
    select * from <b>m_vmvla</b> where wadat in i_datum
                           and   vstel in i_vstel
                           and   route in i_route
                           and   vbeln eq vttp-vbeln.
    Replacent table for m_vmvla is shp_idx_gdsi
    Regards
    Sreeni

  • Normal query on cluster/pooled tables...

    Hi experts,
    Can i write a normal sql query on cluster or pooled tables?
    Will it create any sort of problem?
    Regards,
    Viswanathan .S

    Hi Viswanathan,
    It is not recommended to access them directly due to there size like tables BSEG, CDPOS.
    Report may run smooth on dev but will slow down as data increases in case of production server.
    There are alternative tables available for their substitution. Which table(s) are you trying to access anyways ?
    Regards,
    Naveen

Maybe you are looking for

  • Mail program wont open

    Hi all I have recently reinstalled OSX 10.4.7 after a HD crash and found that although everything is as it was before....the Mail program crashes upon opening. Every 3rd attempt at opening, it takes me through the POP/SMTP setup, but then crashes whe

  • Service Tax & VAT or CST in Service Purchase Order

    Dear sappers, We've this requirement. For some service like Genset repair, the Service Vendor is charging Service Tax (10%2%1%) and VAT or CST for the components he is added for the repair service.For VAT or CST he will charge ( Excise + Cess + VAT o

  • Open a document and go to a specific page.

    Hello. Is there any way to tell the Reader that opens a document and go to a specific page? I want to do it from FileMaker, Mac and Windows. Regards..

  • Logistics purchase order

    I want to create logistics purchase order with reference to purchase order. FOR EX: A- is my supplying vendor B-customer C-My company D-Transporter My company C is suppling a material to customer B, directly from vendor A through transpoter D. I am c

  • Report Bursting in BIP

    I am new to BIP. We have a scheduled report that bursts different pdfs every week on friday. These pdfs are bursted to an ECM folder through WebDAV.This folder is static. But I have to burst the pdfs to a different new folder everyweek. Is there a wa