Interactive Reporting:Error reading data of InfoProvider /CRMBW/CSAL_C01

Hi Forum,
I configured an interactive reporting to read interaction record data.
When I execute the reporting, I am getting the following error message: 
             +Error reading the data of InfoProvider /CRMBW/CSAL_C01+
             +No destination exists to source system YYYCLNT999+
The RFC mentioned in the error message is not the correct one. But I checked the configuration in RSA1 and the RFC mentioned there is the correct one. So, I think I am missing a customizing that is pointing to the wrong client...
Any idea ?
Thanks a lot and best regards.

Hi,
first you should check the overall configuration. Go to your CRM client and run transaction /CRMBW/CONFIG_WIZARD. If there are errors or warnings, solve them step by step. The transaction should be self-explaining but may require some expertise (the documentation provided should help, though).
Best regards

Similar Messages

  • Error reading data of infoprovider

    My query contains no data when i execute the bex analyzer. The popup message error was
    " Error reading data of infoprovider "
    " Error while reading data;navigation is possible"
    please advise

    Hi,
    Check following:
    1. If there is any data in the cube.
    2. If the cube is having any authorization InfoObjects which are not assigned to you.
    3. The query returns the data for the filters and restrictions that you might have specified in Query Designer.
    4. Test your query in RSRT to check if actually returns any data.
    Regards,
    Deepti

  • Error reading data from Info Provider

    Hi Folks,
    I am executing a report and am getting the following error message:
    Error reading data of Info Provider.
    System Error: Whole Number Overflow on Multiplication.
    The infoprovider being read is a Virtual Info provider Based on DTP/3.x InfoSource.
    Let me know what could be the potential problem here ? How would I fix such issues.
    Regards
    Arjun

    Hello,
    There is some problem in data. Check if in transformation u have any formulas or routines.
    regards,
    Shashank

  • Error reading data from static cursor cache.

    Hi,
    Does anyone know what causes this error below. It just started happening out of the blue. I'm running Apache Tomcat 4.1 on Win 2000 server with MS SQL Server 2000 database.
    Error:
    java.sql.SQLException: [Microsoft][SQLServer JDBC Driver]Error reading data from static cursor cache.
    Thanks,
    TR

    hi,
    i had a similar sort of error, something along the lines of "error setting up static cursor cache" using the SQL JDBC drivers on Win2K. i deleted the file entries in the TEMP folder of c:\documents and settings\<user>\Local Settings\TEMP and everything was cool after it. i'm not sure what the exact issue is (probably something like maximum folder size had been reached). i ran the FileMon utility from www.sysinternals.com and it reported a DISK_FULL error on a temporary file being read by the process. to cut a long story short, everything is NOW cool.
    cheer,
    dara

  • Error reading data from CLOB column into VARCHAR2 variable

    Hi all,
    Am hitting an issue retrieving data > 8K (minus 1) stored in a CLOB column into a VARCHAR2 variable in PL/SQL...
    The "problem to be solved" here is storing DDL, in this case a "CREATE VIEW" statement, that is longer than 8K for later retrieval (and execution) using dynamic SQL. Given that the EXECUTE IMMEDIATE statement can take a VARCHAR2 variable (up to 32K(-1)), this should suffice for our needs, however, it seems that somewhere in the process of converting this VARCHAR2 text to a CLOB for storage, and then retrieving the CLOB and attempting to put it back into a VARCHAR2 variable, it is throwing a standard ORA-06502 exception ("PL/SQL: numeric or value error"). Consider the following code:
    set serveroutput on
    drop table test1;
    create table test1(col1 CLOB);
    declare
    cursor c1 is select col1 from test1;
    myvar VARCHAR2(32000);
    begin
    myvar := '';
    for i in 1..8192 loop
    myvar := myvar || 'a';
    end loop;
    INSERT INTO test1 (col1) VALUES (myvar);
    for arec in c1 loop
    begin
    myvar := arec.col1;
    dbms_output.put_line('Read data of length ' || length(myvar));
    exception when others then
    dbms_output.put_line('Error reading data: ' || sqlerrm);
    end;
    end loop;
    end;
    If you change the loop upper bound to 8191, all works fine. I'm guessing this might have something to do with the database character set -- we've recently converted our databases over to UTF-8, for Internationalizion support, and that seems to have changed underlying assumptions regarding character processing...?
    As far as the dynamic SQL issue goes, we can probably use the DBMS_SQL interface instead, with it's EXECUTE procedure that takes a PL/SQL array of varchar2(32K) - the only issue there is reading the data from the CLOB column, and then breaking that data into an array but that doesn't seem insurmountable. But this same basic issue (when a 9K text block, let's say, turns into a >32K block after being CLOBberred) seems to comes up in other text-processing situations also, so any ideas for how to resolve would be much appreciated.
    Thanks for any tips/hints/ideas...
    Jim

    For those curious about this, here's the word from Oracle support (courtesy of Metalinks):
    RESEARCH
    ========
    Test the issue for different DB version and different characterset.
    --Testing the following PL/SQL blocks by using direct assignment method(myvar := arec.col1;) on
    different database version and different characterset.
    SQL>create table test1(col1 CLOB);
    --Inserting four CLOB data into test1.
    declare
    myvar VARCHAR2(32767);
    begin
    myvar := RPAD('a',4000);
    INSERT INTO test1 (col1) VALUES (myvar);
    myvar := RPAD('a',8191);
    INSERT INTO test1 (col1) VALUES (myvar);
    myvar := RPAD('b',8192);
    INSERT INTO test1 (col1) VALUES (myvar);
    myvar := RPAD('c',32767);
    INSERT INTO test1 (col1) VALUES (myvar);
    commit;
    end;
    --Testing the direct assignment method.
    declare
    cursor c1 is select col1, length(col1) len1 from test1;
    myvar VARCHAR2(32767);
    begin
    for arec in c1 loop
    myvar := arec.col1;
    --DBMS_LOB.READ(arec.col1, arec.len1, 1, myvar);
    dbms_output.put_line('Read data of length: ' || length(myvar));
    end loop;
    end;
    The following are the summary of the test results:
    ===================================
    1. If the database characterset is WE8ISO8859P1, then the above direct assignment
    method(myvar := arec.col1;) works for database version 9i/10g/11g without any
    errors.
    2. If the database characterset is UTF8 or AL32UTF8, then the above direct assignment method(myvar := arec.col1;) will generate the "ORA-06502:
    PL/SQL: numeric or value error" when the length of the CLOB data is greater
    than 8191(=8K-1). The same error can be reproduced across all database versions
    9i/10g/11g.
    3. Using DBMS_LOB.READ(arec.col1, arec.len1, 1, myvar) method to read CLOB data into a VARCHAR2 variable works for both WE8ISO8859P1 and UTF8
    characterset and for all database versions.
    So - it seems as I'd surmised, UTF8 changes the way VARCHAR2 and CLOB data is handled. Not too surprising, I suppose - may you all be lucky enough to be able to stay away from this sort of issue. But - the DBMS_LOB.READ workaround is certainly sufficient for the text processing situations we find ourselves in currently.
    Cheers,
    Jim C.

  • HTTP-500 Error Reading Data from Client!!

    I'm trying to create a page where by clients are able to contact us through the portal. So, it's a pretty basic form where I have a text box for the subject, and a text area for the message body.
    My problem is when the message body is over a certain size, I'm getting a "portlet cannot be contacted" on my screen. The Apache log comes up with the error:
    [error] mod_plsql: /pls/portal/!PORTAL.wwpob_page.show HTTP-500 Error Reading Data from Client!!
    I'm not using a windows OS, so the bug that has been talked about previously talked about shouldn't be the problem.
    Also, I am using a POST rather than a GET, so I don't think it has to do with the browser (and I have tested this on Firefox and IE 5.5 and IE 6).
    Would appreciate any advise.
    Thanks, Nicky

    Are you using SSL? Maybe, it has to do with it. I encountered a similar problem. It turned up that this read error occurred inside Apache and was caused by a nonstandard-SSL-request by Internet Explorer. te remedy was to add this to the Apache configuration:
    SetEnvIf     User-Agent     ".*MSIE.*"     \
    nokeepalive ssl-unclean-shutdown downgrade-1.0 force-response-1.0
    It tells Apache to switch to HTTP/1.0 and to never keep open socket connections with MSIE on SSL connections.
    Lycka till!

  • Error reading data from the MS Dos Console.

    Hi,
    We have a legacy application which is launched via a 3rd-party Telnet Server - the app acts as a remote shell for an RF device. The system has been functioning for many years but now we have migrated to Server 2012 the system no longer launches.
    The RF device successfully connects to the telnet server, logs-in with embedded credentails but drops the connection when the shell application is launched.
    The server has the following Application error
    Error reading data from the MS Dos Console.
    The pipe has been ended. 109 (0x6d)
    The application can successfully be launched locally outside of the shell on the server. The error is reproducable across RF devices and desktop telnet connections.
    The firewalls are off.
    Are there some additional protections in Server 2012 which would cause the pipe-based link to be stopped when launching the exe? Am I missing something? The 3rd-party telnet server is certified for Server 2012.
    Thnak you

    I'd ask in the
    Windows Server General Forum, or ask the third party vendor.
    Karl
    When you see answers and helpful posts, please click Vote As Helpful, Propose As Answer, and/or Mark As Answer
    My Blog: http://unlockpowershell.wordpress.com
    My Book:
    Windows PowerShell 2.0 Bible
    My E-mail: -join ("6B61726C6D69747363686B65406D742E6E6574"-split"(?<=\G.{2})",19|%{[char][int]"0x$_"})

  • Interactive reporting : error while refreshing MSSQL data in Workspace

    Hi all,
    I recently work with Hyperion and I am facing an issue that makes me crazy.
    My configuration is simple :
    - 1 win2003 server with Hyperion Interactive Reporting services and workspace installed (both works properly)
    - 1 winXP machine with MS Sql Server 2005
    - My dev PC an winXP with IR studio.
    I created an IR report with a MSSQL query that retrieves data into a Table.
    The report is displayed properly and the data is OK.
    When I refresh the data in IR studio, everything is OK.
    I import the OCE file into the the workspace, following by the BQY file.
    The report is displayed properly in workspace with the correct data.
    I change the data in the MSSQL server and I try to refresh the report in the workspace.
    So, I open the report in the workspace and I click on the refresh button.
    But when I do that, I get an error message.
    I read somewhere that we have to configure the DAS.
    I assume that the configuration is made via the Administer/Database connection management (sorry if names are not correct, but I have a french version).
    But when I try to add a new connection, I have only 4 choices for the type of database : Essabse, Financial Management, Planning and SAP BW.... No MSSQL Server.
    I hope that anyone among you can help me, but anyway, thanks for reading my post.

    You need to enter DATABASE details in DAS (Data Access Services) by running Service Configurator.
    Then run Remote and Local Service configurator to enter database details.
    ##I assume that the configuration is made via the Administer/Database connection management (sorry if names are not correct, but I have a french version).
    This is something related to Financial Reporting.
    Hope this helps.
    Regards,
    Manmohan Sharma

  • Interactive report error when filter

    Hi,
    I'm new to Apex and get the following error when I create an interactive report:
    "Invalid set of rows requested, the source data of the report has been modified.
    reset pagination"
    This error occurs when I scroll through the pages of the report and get to say the third page of data. I then apply a filter to restrict the data returned to less than a page worth of data, click "Go" and get the error.
    I've searched the forum and understand that this is occurring as Apex is still trying to display 3 pages of data when there is only one page worth of data and I know that I somehow need to reset the pagination, but I cannot find a way to do this. I have tried creating a process to reset the pagination, but this does not seem to fire when the "Go" button is clicked on the interactive report search bar.
    I have tried to reproduce this in my online Apex workspace, but it works fine there. I think this is probably down to using version 4.0 online, but my company is still on version 3.1.0.00.32.
    Is this a bug in the version of Apex that I'm using or is there a way that I can reset the pagination on an interactive report (when the "go" button is clicked)?
    thanks
    Adrian

    The best thing is to run the page with debug and see if the reset pagination is firing or not. Its been a long time since I used 3.1.x but I think reset pagination 3.1 works.
    Maybe something to do with the condition on the reset pagination that prevents it from running? Make reset pagination 'unconditional' and see the result.
    Regards,

  • Error reading data of virtual provider.

    Hi,
    I am receiving the below error message when reporting on a virtual provider/remote cube and unable to identify the root cause. Same error message is displayed when trying to view content of virtual provider/remote cube via listcube T-code or report created directly on remote cube or report created on a multiprovider which has this virtual provider.
    Error Message:
    An exception has occured
    Error in substep
    Error in substep
    Error reading the data of Infoprovider
    Thanks and Regards
    Vikram Reddy

    Hi Vishwa,
    The extraction checker on the data source in RSA3 in R3 is fine. Can you please ellobrate on how to check if the custom view on the table GLPCA is active or not.
    Just to clarify, below steps have a been successfully carried in R3 and BW:
    1. R3- Creation of view on table GLPCA
    2. R3- Creation of reconciliation direct access data source based on this view
    3. BW- Replication of this data source in BW and activation of data source.
    4. BW- Linked the virtual provider with the data source through transformation and created and activated a DTP process.
    5. BW- Context menu of the virtual provider and clicked on activate direct access and save the selection.
    After all these steps when i try reading data through the virtual provider, i the recieve the error msg.
    Thanks and Regards
    Vikram Reddy

  • Interactive report filtered by date/time ?

    Hi All,
    I have an interactive report in my application.
    Sql query of the report having start date ,end date column name.E.g.The values of start date and end date are like 16-NOV-2009 12:00AM and 16-NOV-2009 12:00AM.
    I have 2000 records in my report.
    When I go to Filter on the column, I can only pick the Date and not the Time. Is there a way so I can enter Date/Time as the Filter?
    I need your help.Please suggest some solution.
    Thanks,
    Ramya.

    Hi All,
    Apex gurus please suggest some solution.Is it possible to do this below task?
    In an interactive report
    Click actions -> click filter -> select 'Start date' ||select operator 'between'||select click expression calender.
    In the calender ,i want to display bath time and date.If its a user defined item like P2_START_DATE then i can set the format mask and check the date and time ,but its a in built one!! appearing from Action menu.
    Am using APex 4.0,Is it a known apex issue or we can do it by adding some custome code or plugin?
    Thanks
    with Regards,
    Ramya.

  • Interactive report errors when trying to query external table.

    I'm trying to create an interactive report against an external table and getting the following error. I see a note in metalink the describes its cause, but I doesn't seem to apply here.
    Query cannot be parsed, please check the syntax of your query. (ORA-06550: line 2, column 17: PLS-00302: component 'ODCIOBJECTLIST' must be declared ORA-06550: line 2, column 13: PL/SQL: Item ignored ORA-06550: line 4, column 18: PLS-00302: component 'ORACLE_LOADER' must be declared ORA-06550: line 4, column 6: PL/SQL: Statement ignored ORA-06550: line 5, column 12: PLS-00320: the declaration of the type of this expression is incomplete or malformed ORA-06550: line 5, column 6: PL/SQL: Statement ignored)
    Metalink Note:437896.1 identifies this same error related to external tables. It says the cause is an object named 'sys' that exist in the user's schema and must be removed. I checked dba_objects and there is no object named 'sys'

    Please ignore thread - operator error. There was an object named sys.

  • Error reading data from an infocube

    Hello,
    I want to read data from a remote infocube in tcode listcube, and I get this 2 error messages: "Error reading the data of InfoProvider IC_SNP_DR" and "Error when generating program". This is a remote cube reading data from a SNP Planning Area.
    I´ve already activated Plng Object Strucuture 9ASNPBAS and repair all infoobject but in tcode /SAPAPO/MSDP_ADMIN in 9ASNPBAS I get message "Not All InfoObjects Can Be Read". Is this why I get the error in reading the infocube?
    Does anyone know why I get this errors and how to solve them?
    Thanks and Regards,
    Teresa Lopes

    Teresa
      From   /SAPAPO/MSDP_ADMIN go to extras/data extraction tools.  This gives you all the things you need to manage the extractors on the snp planning areas.  you can use RSA3 to test the extractor and pull data to a list.  Are you sure you want to extract using the total POS  (9SNPBAS).  Based on the data you need you might want to extract based on one of the standard SNP aggregates.  MALO  (material location) for example.
    You mention that the POS was active.  Make sure you Planning area is also initialized
    George

  • Interactive Report uses XML data saved in database for creating PDF files?

    Hello all,
    I installed Apache FOP to allow a PDF "Download" in the Interactive Reports.
    Correct me if i'm wrong, when a PDF file is created with the Interactive Report option "Download", it uses a XML data to make it. Right ??
    I would like know where in the database is this XML code located.
    Regards Pedro.

    After some searching i found that XML its stored as a BLOB and it is used as XML based report data and RTF or XSL-FO based report layout.
    I didn't find yet where is located the XML used by Interactive Reports. If someone knows where in the APEX database is the XML located please share.
    Regards Pedro.

  • Interactive report filter for date not working correctly

    Hi,
    I am having an interactive report. I tried to give a filter for a column(created_on) as created on>29-oct-2009 17:17
    but i am getting the row containing created on as *29-oct-2009 17:17* in the report result. How can i correct this
    problem
    Thanks,
    TJ

    Hi,
    I think it is because seconds.
    So it is 29-oct-2009 17:17:00 and your record is e.g. 29-oct-2009 17:17:02
    br, Jari
    Edit
    You can use trunc function in your select so that it round date to minutes
    TRUNC(created_on,'MI') AS created_onBr, Jari
    Edited by: jarola on Nov 5, 2009 3:02 PM

Maybe you are looking for

  • Invoking an external web service through a JCD with Basic Authentication

    Group, I am trying to invoke an external web service (written in ASP.Net) from a jcd (5.1.2). The web service is guarded by Basic Authentication. I have entered the crudentials into the External Web service environment component and deployed the proj

  • Why do I get "The system has recovered from a serious error" after system shut down

    Every time when start/restarting the computer using the attached .vi I get a window with "The system has recovered from a serious error." Although this does not seems to have any effect on application and I am able to use the test equipment but could

  • How to change labels in pivot tabls

    I have created a report combining two cubes. From one cube I select the total room nights and total revenue, and from the other cube I filter on room nights and room revenue for a certain company. The goal is two compare how much revenue and room nig

  • Palm Z22 frozen touch screen

    Hi -- I can turn on my Palm Z22, I can reset it, i can use the buttons, but the touch screen doesn't work at all.  Does anyone know a fix for this? Thanks, Betsy Post relates to: Palm Z22

  • Stored Proc after Allocation

    Is there a way to run a stored procedure (using *RUN_STORED_PROCEDURE) only after a certain allocation has run? // Default base level logic - applies to all base members in all dimensions //Contract Allocation *IGNORE_STATUS *XDIM_MAXMEMBERS ENTITYDI