Runtime error in My Query

HI!
I created a abap query and added few additional fields with codes in them and tried running the query. When I run teh query with selections on my selection screen it runs well and gives me output correctly but when I run it open without any selection I geta  runtime error with following description.
Short text
    Field symbol has not yet been assigned.
__What happened?__    Error in the ABAP Application Program
    The current ABAP program "AQZZZSD=========ZSD_LISTOFFLST" had to be terminat
     because it has
    come across a statement that unfortunately cannot be executed.
Error analysis    You attempted to access an unassigned field symbol
    (data segment 27).
    This error may occur if
    - You address a typed field symbol before it has been set with
      ASSIGN
    - You address a field symbol that pointed to the line of an
      internal table that was deleted
    - You address a field symbol that was previously reset using
      UNASSIGN or that pointed to a local field that no
      longer exists
    - You address a global function interface, although the
      respective function module is not active - that is, is
      not in the list of active calls. The list of active calls
      can be taken from this short dump.
How to correct the error
    If the error occures in a non-modified SAP program, you may be able to
    find an interim solution in an SAP Note.
    If you have access to SAP Notes, carry out a search with the following
    keywords:
    "GETWA_NOT_ASSIGNED" " "
I am not sure why its running ok when I provide selection and it gives error when I ran it open.
Thanks

The code where it shows error :
loop at gt_konv assigning <fs_konv>
   where kposn = vbrp-posnr
     and ( kschl = 'ZPRL' or kschl = 'ZWRO' or
           kschl = 'ZSPT' or kschl = 'ZWSU' or
           kschl = 'ZOTH' or kschl = 'ZQUA' or
           kschl = 'ZTAR' or kschl = 'ZCMD' ).
    add <fs_konv>-kwert to unitpr.
  endloop.
  unitpr = ( unitpr / vbrp-fkimg ).
  uomup = <fs_konv>-kmein.
  If lines( gt_konv ) gt 0.<<<<<<<<,<<<<<<<Runtime error point is here
  clear psagediff.
  IF ( PRICEDIFF <> '0.00' AND  LPRICE <> '0.00' ).
    PSAGEDIFF = ( PRICEDIFF / LPRICE ) * 100.
    else.
     PSAGEDIFF = '0.00'.
     endif.
     endif.
* Logic in code section
  case v_pricetype.
    when '00'.
      pricetype = 'Others'.
    when '01'.
      pricetype = 'List'.
    when '02'.
      pricetype = 'Off-List'.
    when '03'.
      pricetype = 'No Price'.
  endcase.

Similar Messages

  • Getting Runtime error while executing Query on Multiprovider

    Hi ALL,
    When i m executing a query on multiprovider it is giving me runtime error as:
    *Error Reading the data of the infoprovider
    An Exception with the type CX_SY_ARITHMATIC_OVERFLOW occured
    overflow in the operation.*
    I ran this query today morning also it ran successfully, now it is giving this error.
    Please help me.
    Thank you.
    REDDY

    Hi check
    http://sap.ittoolbox.com/groups/technical-functional/sap-basis/sapsys-000-compute_int_times_overflow-cx_sy_arithmetic_overflow-1704462
    Thanks
    Reddy

  • Runtime Error when executing Query in the web

    Hello,
    when i try to execute a query on the  web, i get the error
    Exception in BI runtime
    Log ID: 005056BD15DA005E000000A900000A3400043C8F00E4DD8B
    Initial cause
    Message:
    'user' missing
    Stack trace:
    com.sap.mw.jco.JCO$Exception: (101) RFC_ERROR_PROGRAM: 'user' missing
    Message:
    No connection possible to BI master system VB0CLNT800
    Stack trace:
    com.sap.ip.bi.base.service.connection.ConnectionException: No connection possible to BI master system VB0CLNT800
    Can anyone please tell me , how to fix this ..
    Thanks
    Raj

    you mwy check this to trouble shoot front end
    Troubleshoot the SAP NetWeaver 2004s BI Frontend Installation

  • Abap runtime error in sap query

    hi all,
    i was using a query to generate a specific report for quite some time. and it was running well. but since yesterday morning the query started giving the following error msg while executing:
    "variant STANDARD not created"
    i tried giving other variant but failed. so i decided to run te report witout variant. for this i went for CHANGE mode of query and i removed query and made the report RUN WITHOUT VARIANT. after tat system didnt asked for variant but while executing it started giving ABAP dump.
    where to check? please suggest
    Warm regards,
    BKR

    Hi,
    When it give dump,it is clearly display which & where it is unable to execute ststement.
    Take help ogf ABAPer.
    Kapil

  • Portal runtime error while executing BI report through BEx Query designer

    I want to execute a query from query designer but when I execute it the following error occurs -
    Portal runtime error.
    An exception occurred while processing your request. Send the exception ID to your portal administrator.
    Exception ID: 04:30_30/04/11_0008_35740651
    Refer to the log file for details about this exception.
    I have checked log, the error displayig in log is,
    ACCESS ERROR: Authorization check for caller assignment to J2EE security role SAP_J2EE_Engine:administrator
    Kindly help me.
    regards
    nk

    Dear Friends
    I have the same with this problem
    Please help us to resolve this problem
    Thanks and best regards

  • Can't find answer to Query Of Queries runtime error

    Not only I browsed this forum but also googled this problem but unfortunnately I have no luck in finding the answer.
    All I did was writing this simple query:
    <cfquery name="test" dbtype="query">
    select SSN,BirthDate from myquery where SSN <> '' OR BirthDate <> ''
    </cfquery>
    and I got this error:
    Query Of Queries runtime error.
    Comparison exception while executing <>.
    Unsupported Type Comparison Exception: The <> operator does not support comparison between the following types:
    Left hand side expression type = "DOUBLE".
    Right hand side expression type = "STRING".
    I tried the following and did not work either, still got the same error.
    <cfquery name="test" dbtype="query"> 
    select SSN,BirthDate from myquery
    where SSN <> <cfqueryparam cfsqltype="CF_SQL_VARCHAR" value=""/>  
    OR BirthDate <> <cfqueryparam cfsqltype="CF_SQL_VARCHAR" value=""/></cfquery>
    Has someone ever encountered the same problem and know how to solve it?

    HELP ! ! !  Going into testing soon. I need this to work to get correct report results ! ! ! !
    My issue seems similar to the one under discussion and the reply from lawhite01 caught my eye. Can you roll my issue into this discussion?
    This is a 2 parter. The second part is the QoQ part, but the 1st part has a line in the query that is similar to the QoQ one and it uses the same data. Part 1 also throws an error.
    PART # 1.
    I'm trying to use a query table created through QueryNew and then query it.
    I need multiple columns in the query table I create:
    <cfscript>
            tot_AllCurrentDraftListing = QueryNew("AnnounceNum, JP_PDLoc, JP_JS_Title, JP_JS, JP_KW_1, JP_JobTitle, JP_Open, JP_Close, JP_CloseType, JP_CloseName, JP_PosNeed, JP_DirectHire, JP_Desc, JP_Draft, JP_Archived, JP_State, JP_AreaName, JP_AreaID, JP_AreaAlias, JP_Fac_SU, JP_Fac_Facility, JP_FAC_ID, JP_Grade1, JP_sal_low1, JP_sal_high1, JP_Grade2, JP_sal_low2, JP_sal_high2, JP_Grade3, JP_sal_low3, JP_sal_high3, JP_Grade4, JP_sal_low4, JP_sal_high4, JP_Grade5, JP_sal_low5, JP_sal_high5, JP_Posted, JP_TypeHire, JP_HRemail");
        </cfscript>
    Then I populate all the cells of the query table.
    Then I set up to use the created query table.
    I do this first:
        <cfquery name="qAltPostID" datasource="#at_datasource#">
             SELECT AltPoster, fk_Job_AnnounceNum
             from JOB_JPContacts
             Where AltJPContactType = 'AltPosterID'
             and AltPoster = '#session.IHSUID#'
             </cfquery>
    Then, in my first query using the created query, I expect to need to choose from multiple values, so I'm using this line in the query (this is NOT a QoQ query):
                and AnnounceNum IN (<cfqueryparam cfsqltype="CF_SQL_varchar" value="#ValueList(qAltPostID.fk_Job_AnnounceNum)#">)
    I've also tried:
                   and AnnounceNum IN (#ValueList(qAltPostID.fk_Job_AnnounceNum)#)   
    and:
                   and JOB_AnnounceNum IN
                    SELECT fk_Job_AnnounceNum
                    from JOB_JPContacts
                    Where AltJPContactType = 'AltPosterID'
                    and AltPoster = '#session.IHSUID#'
    ERROR is: one record should return. I get 0.
    PART # 2: Here's the QoQ part.
    I get the error:
    Query Of Queries runtime error.
    Comparison exception while executing IN.
    Unsupported Type Comparison Exception: The IN operator does not support comparison between the following types:
    Left hand side expression type = "LONG".
    Right hand side expression type = "STRING".
    A tutorial I found gave an example using only one column for this part of the fix:
         tot_AllCurrentDraftListing = QueryNew("AnnounceNum", "CF_SQL_VARCHAR")
    How would I set up the query with the datatype when I'm using multiple columns:
    <cfscript>
            tot_AllCurrentDraftListing = QueryNew("AnnounceNum, JP_PDLoc, JP_JS_Title, JP_JS, JP_KW_1, JP_JobTitle, JP_Open, JP_Close, JP_CloseType, JP_CloseName, JP_PosNeed, JP_DirectHire, JP_Desc, JP_Draft, JP_Archived, JP_State, JP_AreaName, JP_AreaID, JP_AreaAlias, JP_Fac_SU, JP_Fac_Facility, JP_FAC_ID, JP_Grade1, JP_sal_low1, JP_sal_high1, JP_Grade2, JP_sal_low2, JP_sal_high2, JP_Grade3, JP_sal_low3, JP_sal_high3, JP_Grade4, JP_sal_low4, JP_sal_high4, JP_Grade5, JP_sal_low5, JP_sal_high5, JP_Posted, JP_TypeHire, JP_HRemail");
        </cfscript>
    I used this code after all the cells contained values and before running my QoQ query:
            <cfloop index="intID" from="1" to="#tot_AllCurrentDraftListing.recordcount#" step="1">
                <cfset tot_AllCurrentDraftListing["AnnounceNum"] [intID] = JavaCast("string", intID) />
            </cfloop>
              Is that correct?
    Thanks.
    Whoever can help me with this should be awarded extra points ! ! ! !

  • SAP Query and runtime error CREATE_OBJECT_CLASS_NOT_FOUND

    Dear ABAP gurous,
    I have created a query connected to an infoset. It worked fine. When I made a minor change to the infoset (checked, saved and generated afterwards) I couldn't run the query. Now, the problem is, when I run the query, the ABAP runtime error occurs:
    Runtime Errors         CREATE_OBJECT_CLASS_NOT_FOUND
    Except.                CX_SY_CREATE_OBJECT_ERROR
    Can somebody tell me what causes the problem? Did I miss to do something after introducing this minor change to the infoset?
    Thank you in advance and regards
    Rafal Kosinski

    In the infoset I had tables join (FEBKO+T001) and additional field group. For the field group I defined a field for which a code was created (a function module call). It worked for this setup.
    Then, I just made a change in the code: in the function module call, I changed
    sy-datum to febko-azdat for parameter DATE of the function module.

  • Runtime error(Time limit exceeds)after executing select query

    Dear experts, whenever i executing the select query in this zprogram i am getting runtime error that time limit exceeds.i am using inner join and into table.after that also i am geetting error. how can i resolve it??
    SELECT LIKP~VBELN LIKP~WADAT_IST LIKP~VEHICLE_NO LIKP~TRNAME
              LIKP~VEHI_TYPE LIKP~LR_NO LIKP~ANZPK LIKP~W_BILL_NO
              LIKP~SEALNO1                                       " Seal NO1
              LIKP~SEALNO2                                       " Seal NO2
              LIPS~LFIMG
              VBRP~VBELN VBRP~VGBEL VBRP~MATNR VBRP~AUBEL VBRP~FKIMG
              VBAK~AUART
              VBRK~FKART VBRK~KNUMV VBRK~FKSTO
              FROM LIKP INNER JOIN LIPS ON LIKP~VBELN EQ LIPS~VBELN
                        INNER JOIN VBRP ON LIKP~VBELN EQ VBRP~VGBEL
                        INNER JOIN VBAK ON VBRP~AUBEL EQ VBAK~VBELN
                        INNER JOIN VBRK ON VBRP~VBELN EQ VBRK~VBELN
              INTO TABLE  I_FINAL_TEMP
              WHERE LIKP~VSTEL = '5100' AND
                 LIKP~WADAT_IST IN S_WADAT  AND
                    VBRP~AUBEL IN S_AUBEL AND
                    VBAK~AUART IN ('ZJOB','ZOR') AND
                    VBRK~FKART IN S_FKART AND
    *               VBRK~FKART IN ('ZF8','ZF2','ZS1') AND
                    VBRK~FKSTO NE 'X'.
    When I am debugging the select query.the cursor will not go to next step.after 15-20 minutes i am getting runtime error(time limit exceeds).
    how can i resolve it for that scenario??

    Looks like whole SD flow you trying to fetch in single query
    First you check the database statistic of these table are upto date in system ( Check with basis team )
    if this query was working fine earlier.
    Most of table involved are huge volume tables which queried with any primary key
    Any secondary index on created for LIKP on VSTEL WADET ?
    My suggestion would be split the selection queries and make use of primary or existing secondary index to fetch the desired result if possible. For testing purpose split the queries and find which is taking more time and which needs index by taking squel trace in ST05.
    Also take ST05 trace of this query in debugger ( New debugger -> special tool -> trace > ST05/SE30)

  • Query of Queries Runtime error

    I have a query pulled from an XML file, with a column that
    contains mixed numeric and alphanumeric strings, like 103, 112,
    A12,
    etc.
    When running a QofQ on this query, I get this error:
    Query Of Queries runtime error.
    Can't convert the string A1 to java type LONG
    Apparently, according to a livedocs comment I found here
    http://tinyurl.com/y24qda
    =====
    if the column's value in the first row of the recordset is
    something that is all numeric, like: 123456 When an all-numeric
    value
    like this is encountered as the first value, CF assumes that
    ALL values in that column are numeric... thus, it errors out if it
    comes accross a record containing both numbers and letters,
    since a mix of letters and numbers will be considered a string.
    =====
    Is there any known way around this?
    Michael Evangelista
    Evangelista Design
    www.mredesign.com

    Yes, running CFmx7... didnt stop to think this might be
    different in each, but found something to that effect last night...
    also, Dan's link gave me a clue... thanks.
    Michael Evangelista
    Evangelista Design
    www.mredesign.com
    "Adam Cameron" <[email protected]> wrote in message
    news:[email protected]..
    >> Ok.. will do, thanks
    >
    > Note that the advice Dan gives is specific to CFMX7,
    whereas it seems you
    > have been looking at the CFMX6 documentation... which
    version of CF are you
    > running?
    >
    > --
    > Adam

  • When executing a query showing as ABAP runtime error RAISE_EXCEPTION

    Hi all,
    When i executed a query, it is showing as ABAP runtime error RAISE_EXCEPTION in the short dump.
    This is the Analysis in Short dump (ST22)...............
    Exception condition "DATE_BEFORE_RANGE" raised.   
    What happened?                                                                               
    The current ABAP/4 program encountered an unexpected  
    situation. 
    Error analysis                                                                               
    A RAISE statement in the program "SAPLSCAL" raised the exception
    condition "DATE_BEFORE_RANGE".                                  
    Since the exception was not intercepted by a superior program   
    in the hierarchy, processing was terminated.                                                                               
    Short description of exception condition:                                                                               
    Date is earlier than factory calendar definition                                                                               
    For detailed documentation of the exception condition, use      
    Transaction SE37 (Function Library). You can take the called    
    function module from the display of active calls.               
    How to correct the error                                                                               
    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:                                                                               
    "RAISE_EXCEPTION" C                                                           
    "SAPLSCAL" or "LSCALU06"                                                      
    "DATE_CONVERT_TO_FACTORYDATE"                                                                               
    or                                                                               
    "SAPLSCAL" "DATE_BEFORE_RANGE"                                                                               
    or                                                                               
    "WRITEQUERY " "DATE_BEFORE_RANGE"                                                                               
    Could you pls any one tell me what could be the problem and how to reslove this issue.
    Thanks & Regards,
    Ravi Kumar.

    Hi Andre,
    Maintain your factory calendar idents Valid To year field (BJAHR) in Table TFACD
    You can do this via tcode SCAL, or navigate through SPRO.
    Most likely you have your factory calendars set with Valid To dates as 2010. You may also be encountering some load issues depending on exit routines used in transformations in determining workdays/factory days etc.
    Thanks,
    Eric Filmer

  • Runtime error using range table in select query

    I have to select tcodes from table tstc, based on the entries in ust12,
    the entries in ust12-von and ust12-bis, these contains wild charcters also,  and i have to selct all the tcodes  from von to bis.
    so ia m preparing a range table for the entries in ust12, and querying table tstc, then i am getting a runtime error with following description.
    'If the problem occurred because an excessively large table was used
    in an IN itab construct, you can use FOR ALL ENTRIES instead.'
    but how can i use FOR ALL ENTRIES here, because if von = A* and bis = AB*,then i ahve to read all the entries from AAAA till ABZZ (may be something like this),
    is there any way to write this query, with out runtime error.
    there are total 15000 entries in ust12, i am preparing range table for 3000 entries each and querying tstc.
    Thanks in advance
    Best Regards
    Amarender Reddy B

    Hi,
    first write a select on ust12 based on ust12-von and ust12-bis.
    eg: select von bis from ust12 into table gt_ust12
                               where von LIKE 'A%'
                                   and bis LIKE 'AB%'.
    now write another select for tstc for all entries in gt_ust12...
    Hope it helps
    Regards,
    Pavan

  • Query Designer, Execute fails with missing iView (Portal Runtime Error)

    Hi,
    I have followed all steps to integrate Sap NetWeaver 2004s BI into EP. Checks done so far indicate that all is well between the EP and BI.  From within the EP, I can execute the Bex Web Analyser iView and from there I can execute a query on the BI backend.  From the BI backend, executing the function module RSWR_RFC_SERVICE_TEST returns the 'BI test service' success message.  SSO is working fine as no user/passwords were prompted for. From the trace file, I can see no errors appear but I do see authentication success messages.  So far, so good
    But, when I execute a query from within the Query Designer, it calls the browser and then errors with the following error:
    <b><i>Portal Runtime Error
    An exception occurred while processing a request for :
    iView : N/A
    Component Name : N/A
    iView not found: pcd:portal_content/com.sap.pct/platform_add_ons/com.sap.ip.bi/iViews/com.sap.ip.bi.bex.
    Exception id: 10:06_03/03/06_0012_26285450
    See the details for the exception ID in the log file</i></b>
    Looking at the trace file, all it tells me is the same, that this iView is not found.
    If I logon to the portal and have a look at the iViews within the 'platform-add-ons/bi' folder, I can see the following 4 iViews:
    BEx Broadcaster (com.sap.ip.bi.bexbroadcaster)
    BEx Portfolio (com.sap.ip.bi.bexportfolio)
    BEx Web Analyser (com.sap.ip.bi.bexwebanalyzer)
    My Portfolio (com.sap.ip.bi.myportfolio)
    I cannot find the missing iView (com.sap.ip.bi.bex).
    Any ideas/suggestions would be appreciated.
    Thanks in advance.

    Hi Ashish,
    Thanks for the suggestions.  Here is what happened:
    1. I have run the deploy and change template again (BIPostInstall).  Step 10 failed but I am not too concerned as it does appear that SSO is working both directions.  Also, step 13 failed which is the 'Configure Repository Manager'.  The error I got here was USER_AUTH_FAILED: User account for logonid "" not found.  I am not sure where it is getting the blank userid from. 
    2. The 'com.sap.ip.bi.business_explorer_showcase' role suggestion looked very promising.   I found some doco on it and it does mention this role and when assigned, then you see the Business Explorer tab.  I assigned it to all users and to all groups.  When I went back into the portal, sure enough, the Business Explorer tab was visible.  From within there, I could run query which all worked fine.
    BUT, when executing a query from within the BEx Query Designer, I still got the same error:
    <i><b>Portal Runtime Error
    An exception occurred while processing a request for :
    iView : N/A
    Component Name : N/A
    iView not found: pcd:portal_content/com.sap.pct/platform_add_ons/com.sap.ip.bi/iViews/com.sap.ip.bi.bex.
    Exception id: 11:25_05/03/06_0003_26285450
    See the details for the exception ID in the log file</b></i>
    Do you know if this is an actual iView that should exist in the portal content ?  If you have this working, can you see this iView in the portal?
    3. I had a look at this note (872043) but I could not get the sap download manager to work to get the zip files attached to the note download.  If you have it still, could you email it to me ([email protected]) and I will try that. Did you apply the zip file?
    I can't find any further trace information on why this missing iView error is happening.  I've amended the severity level on the areas which a SAP note detailed but the only information I get is that a missing iView was called.
    Function module RSWR_RFC_SERVICE_TEST still works fine and I can execute a query from the Web BEx Analyser iView.
    I just can't execute a query from the BEx query designer due to the missing iView.
    I don't know whether it is a communication problem even though SSO both directions seem to work OR whether I do have some content missing from my portal. 
    Regards

  • Runtime error Bex Query Execution

    Hi guys,
    I'm facing an BW-BEX error, when I Execute a Bex Query that supposed to
    make some time to retreive data, about 30000 records, un Excel runtime
    error occurs
    with the same query but enough restricted to retreive less than 5000
    records, this time it works fine
    This bug occurs on any PC workstation not only on my computer.
    ST22 shows no thing abnormal.
    ON RSRT, it works fine
    Any Idea ?

    I had this in the Bex Log file
    ListSeparator: ,
    ExcelVersion: 11.0
    AddinVersion: 7005.5.1502.949
    GetSystemInformation
    SUNI Const: 0
    CommunicationFactory.GetSystemInformation (Setting Conn 1)): 0
    CommunicationFactory.GetSystemInformation (Setting Conn 2)): 0
    CommunicationFactory.GetSystemInformation (Setting init Propties)): 0
    CommunicationFactory.GetSystemInformation (SUNI.FUNCTION_EXISTS)): 0.779665
    RSR_XLS_RFCtrc: 3.898325
    CommunicationFactory.GetSystemInformation (RSR_XLS_NET_INTERFACE)): 6.393253
    CommunicationFactory.GetSystemInformation (XML Stuff)): 8.576315
    CommunicationFactory.GetSystemInformation (Prop Stuff)): 8.576315
    CommunicationFactory.GetSystemInformation (Version)): 8.576315
    CommunicationFactory.ObtainSystemInformationandCheckVersion (GetSysInfo)): 8.732248
    CommunicationFactory.ObtainSystemInformationandCheckVersion (CheckAfterLogin)): 0.155933
    CommunicationFactory.LogOnUsingComConnection (ObtainSystemInfo)): 8.888181
    CommunicationFactory.LogOnUsingComConnection (MainConnectionChangedEvent)): 0.935598
    CommunicationFactory.LogOn: 10.135645
    BExCheckFrontend.CheckFrontend: No Check performed (20071119) 0
    RSR_XLS_RFCtrc: 0.467799
    BExThemes.LoadFromBackend: 2.338995
    BExThemes.LoadFromBackend: 0
    BExConnect.LogOn: 91.220805
    RSR_XLS_RFCtrc: 0.155933
    RSR_XLS_RFCtrc: 0.155933
    OpenWorkbookGetTheMimeAndStoreItOnTemp
    BExProperties.CreateFromDeSer: CompId was not provided!
    BExItems.CreateFromDeSer: Trying to deserialize the Items...
    BExApplication.AfterRender: 01Pas de cellules correspondantes.
    BExApplication.AfterRender: 01Pas de cellules correspondantes.
    OpenWorkbookOpenTheSavedWorkbook 4
    RSR_XLS_RFCtrc: 1.091531
    RSR_XLS_RFCtrc: 0.935598
    RSR_XLS_RFCtrc: 0.623732
    BExProperties.CreateFromDeSer: CompId was not provided!
    RSR_XLS_RFCtrc: 0
    RSR_XLS_RFCtrc: 0.311866
    RSR_XLS_RFCtrc: 0.467799
    RSR_XLS_RFCtrc: 0.155933
    RSR_XLS_RFCtrc: 2.338995
    RSR_XLS_RFCtrc: 0
    RSR_XLS_RFCtrc: 0.311866
    RSR_XLS_RFCtrc: 0.155933
    RSR_XLS_RFCtrc: 0.779665
    RSR_XLS_RFCtrc: 2.338995
    RSR_XLS_RFCtrc: 0.311866
    RSR_XLS_RFCtrc: 282.082797
    RSR_XLS_RFCtrc: 1.403397
    RenderIndent: 1.24736
    RenderBorders: 0.156032
    RenderHierarchyShapes: 0
    7.0 Workbook : SAPBEXonRefresh exit called
    BExApplication.AfterRender: 01Pas de cellules correspondantes.
    BExApplication.AfterRender: 01Pas de cellules correspondantes.
    RSR_XLS_RFCtrc: 0.155933
    RSR_XLS_RFCtrc: 3.898325
    RSR_XLS_RFCtrc: 0.155933
    RSR_XLS_RFCtrc: 0.155933
    RSR_XLS_RFCtrc: 0.155933
    RSR_XLS_RFCtrc: 0.467799
    RSR_XLS_RFCtrc: 1.871196
    RSR_XLS_RFCtrc: 0.155933
    RSR_XLS_RFCtrc: 2448.469559
    11/20/2007 5:07:42 PM----
    System.Exception: BExConnect.BExWorkbook: Exception ---> System.OutOfMemoryException: Exception of type System.OutOfMemoryException was thrown.
       --- End of inner exception stack trace ---
       at com.sap.bi.et.analyzer.addin.BExConnect.get_BExWorkbook(String iWorkbookName, Boolean iConstruct)
       at com.sap.bi.et.analyzer.addin.BExMenu.UpdateMenuSubMenuControls()
       at com.sap.bi.et.analyzer.addin.BExMenu.UpdateMenu()
       at com.sap.bi.et.analyzer.addin.BExMenu.Update()
       at com.sap.bi.et.analyzer.addin.BExMenu.CommunicationFactory_MainConnectionChanged(BExCommunicationEventArgs iArguments)
       at com.sap.bi.et.Communication.MainConnectionChangedEventHandler.Invoke(BExCommunicationEventArgs iArgs)
       at com.sap.bi.et.Communication.CommunicationFactory.LogOff()
       at com.sap.bi.et.analyzer.api.BExConnectionLostException..ctor(Exception iException, BICS_PROV_T_MESSAGE itMessage)
       at com.sap.bi.et.analyzer.api.BExDataProvider.RetrieveResultSet()
       at com.sap.bi.et.analyzer.api.BExApplication.GetTemplate(Boolean iDoNotReadData)
    BExConnect.BExWorkbook: Exception
       at com.sap.bi.et.analyzer.addin.BExConnect.get_BExWorkbook(String iWorkbookName, Boolean iConstruct)
       at com.sap.bi.et.analyzer.addin.BExMenu.UpdateMenuSubMenuControls()
       at com.sap.bi.et.analyzer.addin.BExMenu.UpdateMenu()
       at com.sap.bi.et.analyzer.addin.BExMenu.Update()
       at com.sap.bi.et.analyzer.addin.BExMenu.CommunicationFactory_MainConnectionChanged(BExCommunicationEventArgs iArguments)
       at com.sap.bi.et.Communication.MainConnectionChangedEventHandler.Invoke(BExCommunicationEventArgs iArgs)
       at com.sap.bi.et.Communication.CommunicationFactory.LogOff()
       at com.sap.bi.et.analyzer.api.BExConnectionLostException..ctor(Exception iException, BICS_PROV_T_MESSAGE itMessage)
       at com.sap.bi.et.analyzer.api.BExDataProvider.RetrieveResultSet()
       at com.sap.bi.et.analyzer.api.BExApplication.GetTemplate(Boolean iDoNotReadData)

  • Bex Query runtime error '457'

    Hi,
    whenver iam trying to restrict a Fisical year/period time characterstic in query designer iam getting a runtime error with the message "Query run time error'457' This key is already asssociated with an element of this collection".
    Does any one know what might be the reason and how to resolve this issue.
    Thanks,
    Vaka.

    Hi,
    Check SAP Note - 517232
    hope it helps
    regards
    Vikash

  • Infoset query: Runtime Errors  TSV_TNEW_PAGE_ALLOC_FAILED

    Hi
    I have searched the forum and could not find suitable solution for my problem.
    We have an infoset query whose data source is an ABAP program and this is within our BW system only. Earlier it used to run perfectly fine. Recently, due to the increasing data, the load for the same is failing because of memory issue with runtime Error  TSV_TNEW_PAGE_ALLOC_FAILED . The dump occurs within 5-7 minutes of the data load. Once, we give some more filter selections in the infopackage, it runs fine.
    Our problem is neither we can increase the memory any further nor we want to give filter selections in the infopackage. Also, once we execute the ABAP program alone, it runs fine.
    Any help to solve this problem is appreciated.
    Cheers
    Chanda

    Hi,
    There are 3 ways to avoid this kind of problem:
    1) Reduce the data set - if it is possible to process this in smaller
    chunks then please do. This is an infoset query - please be more restrictive in your selections
    - please refer to note 354657.
    When you work with infosets that use tables or joins then it is
    possible to read packages (from Rel. 6.10 on). When you work with
    infosets that use logical databases or data retrieval programs than
    it is not possible to read packaged - by technical restrictions.
    That means that the query is executed completely taking all restrictions
    into account and the result is stored internally.
    2) Re-allocate some of the unused shared memories to program memory.
    A prime candidate for this is Roll and Page "In Memory" values.
    Alternative memory management via PHYSMEMSIZE generally overallocates
    roll and page memory. Please reduce the amounts allocated to the "in
    memory" part (see ST02) using the parameters below, for instance:
    rdisp/ROLL_MAXFS....Total amt of ROLL (Filesystem+SHM); in 8KB blocks
    rdisp/ROLL_SHM......Shared memory element of Roll; in 8KB blocks
    rdisp/PG_MAXFS......Total amt of Page (Filesystem+SHM); in 8KB blocks
    rdisp/PG_SHM........Shared memory element of Roll; in 8KB blocks
    =>Filsystem amt = MAXFS - SHM
    60MB or so each in memory should be sufficient.
    This should allow an extra 260Mb or so for process memory.
    Bear in mind however that Roll_SHM MUST be greater than 10% of
    Roll_MAXFS.
    This will not affect alternative memory management operation in any way.
    3) Reduce the em/global_area_MB from 128 to 64MB.
    These measures should give you ~320MB additionally per work process.
    To get even more - if there is a 64 bit machine in the landscape then
    redirect the load there.
    I would like for you to review the SAP Note 712664. Although
    the Notes 20527, 369726 and 166551 specifically refers to this
    and has helped resolve multiple performance problems.
    I hope it can help you.
    Fran.

Maybe you are looking for

  • Cell Definition in the query

    Hi Experts, Iam new cell definitions in the query. can anyone please explain an easy example scenario using cell definition and the reason why we go for it eventhough we can do all the filters in the query definition windows as well. Thanks, DV

  • Satellite L555-D- 7005

    Turned machine on, got black and white screen stating boot failure...press (key) to reformat and reset to factory default. Did that...Restarted machine and looked ok. Attempted to run MS Word, asked for key. Entered key which was on the bottom of mac

  • Link for how to kill spindump -- Apple please fix this infuriating software

    People have been complaining about spindump (stuttering audio, spindump taking over the entire processor and thrashing the disk when Leopard thinks a program "is not responding") for well over a year and it seems like Apple has done nothing to mitiga

  • Adobe Livecycle online/video trainings

    Hi, I would like to know if there are any online trainings available for Adobe Livecycle, covering Adobe Designer, Process Management & Reader Extension in the coming few weeks. We would like to nominate 2 folks from Capgemini, India.

  • Could not initiate language services

    I get the error message below when i create an index on a clob- field. I'm using Oracle RDBMS 8.1.7 installed with all options. create index my_clob_idx on my_table(my_clob_field) indextype is ctxsys.context; ORA-29855: an error occured when the rout