<?xml version="1.0" encoding="UTF-8"?>
<rss xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:taxo="http://purl.org/rss/1.0/modules/taxonomy/" version="2.0">
  <channel>
    <title>topic Re: Problem reading infocube in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-reading-infocube/m-p/4923501#M1148847</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When you say it doesn't work, you mean it returns no records, correct?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This function module requires that you look through it as below.  Have you done that, and then looped through and collected the results?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;WHILE g_end_of_data = rs_c_false.
  CALL FUNCTION 'RSDRI_INFOPROV_READ'
    EXPORTING
      i_infoprov             = 'ZBCS_C50'
      i_th_sfc               = g_th_sfc
      i_th_sfk               = g_th_sfk
      i_t_range              = g_th_range
      i_reference_date       = sy-datum
      i_packagesize          = ' '
      i_authority_check      = 'R'
    IMPORTING
      e_t_data               = g_t_data
      e_end_of_data          = g_end_of_data
    CHANGING
      c_first_call           = g_first_call
    EXCEPTIONS
      illegal_input          = 1
      illegal_input_sfc      = 2
      illegal_input_sfk      = 3
      illegal_input_range    = 4
      illegal_input_tablesel = 5
      no_authorization       = 6
      ncum_not_supported     = 7
      illegal_download       = 8
      illegal_tablename      = 9.
ENDWHILE.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 08 Dec 2008 15:39:02 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-12-08T15:39:02Z</dc:date>
    <item>
      <title>Problem reading infocube</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-reading-infocube/m-p/4923500#M1148846</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi gurus i have this problem, i use the RSDRI_INFOPROV_READ' for retrieving data from an infocube for&lt;/P&gt;&lt;P&gt;the year 2007, and it works fine, but when i use the same function for retrievieng data for the year 2008, it doesnt work, what should i do?  i use the following funtion and i only change the year it works fine with 2007, but id doesnt work for 2008.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'RSDRI_INFOPROV_READ'&lt;/P&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;P&gt;        i_infoprov             = 'ZBCS_C50'&lt;/P&gt;&lt;P&gt;        i_th_sfc               = g_th_sfc&lt;/P&gt;&lt;P&gt;        i_th_sfk               = g_th_sfk&lt;/P&gt;&lt;P&gt;        i_t_range              = g_th_range&lt;/P&gt;&lt;P&gt;        i_reference_date       = sy-datum&lt;/P&gt;&lt;P&gt;        i_packagesize          = ' '&lt;/P&gt;&lt;P&gt;        i_authority_check      = 'R'&lt;/P&gt;&lt;P&gt;      IMPORTING&lt;/P&gt;&lt;P&gt;        E_T_DATA               = g_t_data&lt;/P&gt;&lt;P&gt;        e_end_of_data          = g_end_of_data&lt;/P&gt;&lt;P&gt;      CHANGING&lt;/P&gt;&lt;P&gt;        c_first_call           = g_first_call&lt;/P&gt;&lt;P&gt;      EXCEPTIONS&lt;/P&gt;&lt;P&gt;        illegal_input          = 1&lt;/P&gt;&lt;P&gt;        illegal_input_sfc      = 2&lt;/P&gt;&lt;P&gt;        illegal_input_sfk      = 3&lt;/P&gt;&lt;P&gt;        illegal_input_range    = 4&lt;/P&gt;&lt;P&gt;        illegal_input_tablesel = 5&lt;/P&gt;&lt;P&gt;        no_authorization       = 6&lt;/P&gt;&lt;P&gt;        ncum_not_supported     = 7&lt;/P&gt;&lt;P&gt;        illegal_download       = 8&lt;/P&gt;&lt;P&gt;        illegal_tablename      = 9&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Dec 2008 15:32:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-reading-infocube/m-p/4923500#M1148846</guid>
      <dc:creator>alejandro_romero2</dc:creator>
      <dc:date>2008-12-08T15:32:38Z</dc:date>
    </item>
    <item>
      <title>Re: Problem reading infocube</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-reading-infocube/m-p/4923501#M1148847</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When you say it doesn't work, you mean it returns no records, correct?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This function module requires that you look through it as below.  Have you done that, and then looped through and collected the results?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;WHILE g_end_of_data = rs_c_false.
  CALL FUNCTION 'RSDRI_INFOPROV_READ'
    EXPORTING
      i_infoprov             = 'ZBCS_C50'
      i_th_sfc               = g_th_sfc
      i_th_sfk               = g_th_sfk
      i_t_range              = g_th_range
      i_reference_date       = sy-datum
      i_packagesize          = ' '
      i_authority_check      = 'R'
    IMPORTING
      e_t_data               = g_t_data
      e_end_of_data          = g_end_of_data
    CHANGING
      c_first_call           = g_first_call
    EXCEPTIONS
      illegal_input          = 1
      illegal_input_sfc      = 2
      illegal_input_sfk      = 3
      illegal_input_range    = 4
      illegal_input_tablesel = 5
      no_authorization       = 6
      ncum_not_supported     = 7
      illegal_download       = 8
      illegal_tablename      = 9.
ENDWHILE.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Dec 2008 15:39:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-reading-infocube/m-p/4923501#M1148847</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-08T15:39:02Z</dc:date>
    </item>
    <item>
      <title>Re: Problem reading infocube</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-reading-infocube/m-p/4923502#M1148848</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks for your answer, and yes i have looped through this function, but i dont get any data for the year 2008&lt;/P&gt;&lt;P&gt;but if i change the yer for 2007 i get the data.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Dec 2008 15:41:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-reading-infocube/m-p/4923502#M1148848</guid>
      <dc:creator>alejandro_romero2</dc:creator>
      <dc:date>2008-12-08T15:41:52Z</dc:date>
    </item>
    <item>
      <title>Re: Problem reading infocube</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-reading-infocube/m-p/4923503#M1148849</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do you have a reason to use &lt;STRONG&gt;i_reference_date&lt;/STRONG&gt;?  That is optional, and I don't use it in the one routine in which I call this function.  You might see what happens if you take that out.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Dec 2008 15:47:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-reading-infocube/m-p/4923503#M1148849</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-08T15:47:52Z</dc:date>
    </item>
    <item>
      <title>Re: Problem reading infocube</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-reading-infocube/m-p/4923504#M1148850</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i have took out the i_reference_date but i have the same problem only get records for year 2007 but nothing for the year 2008, and i dont know why because the cube has records for 2008 year&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Dec 2008 15:58:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-reading-infocube/m-p/4923504#M1148850</guid>
      <dc:creator>alejandro_romero2</dc:creator>
      <dc:date>2008-12-08T15:58:16Z</dc:date>
    </item>
    <item>
      <title>Re: Problem reading infocube</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-reading-infocube/m-p/4923505#M1148851</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What do you have for your range table?  I.e., what are you supplying to the parameter i_t_range?  Do you have more than one InfoObject in the table?  Could there be a conflict?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I.e. year = 2007 and zobj2 = 'abc' works, but there is no 'abc' for zobj2 for year 2008?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Dec 2008 16:06:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-reading-infocube/m-p/4923505#M1148851</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-08T16:06:33Z</dc:date>
    </item>
    <item>
      <title>Re: Problem reading infocube</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-reading-infocube/m-p/4923506#M1148852</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have this data in the g_th_range for both cases&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Parametros de entrada&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;*Unidad de consolidacion&lt;/P&gt;&lt;P&gt;  IF NOT p_uni IS INITIAL.&lt;/P&gt;&lt;P&gt;    g_s_range-chanm = '0CS_UNIT'.&lt;/P&gt;&lt;P&gt;    g_s_range-sign = 'I'.&lt;/P&gt;&lt;P&gt;    g_s_range-compop = 'EQ'.&lt;/P&gt;&lt;P&gt;    g_s_range-low = p_uni.&lt;/P&gt;&lt;P&gt;    INSERT g_s_range INTO TABLE g_th_range.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Periodo&lt;/P&gt;&lt;P&gt;  IF NOT p_per IS INITIAL.&lt;/P&gt;&lt;P&gt;    g_s_range-chanm = '0FISCPER3'.&lt;/P&gt;&lt;P&gt;    g_s_range-low = p_per.&lt;/P&gt;&lt;P&gt;    INSERT g_s_range INTO TABLE g_th_range.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Ejercicio&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  IF NOT p_ejer IS INITIAL.&lt;/P&gt;&lt;P&gt;    g_s_range-chanm = '0FISCYEAR'.&lt;/P&gt;&lt;P&gt;    g_s_range-low = p_ejer.&lt;/P&gt;&lt;P&gt;    INSERT g_s_range INTO TABLE g_th_range.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Parametros fijos para la consulta de infocubo&lt;/P&gt;&lt;P&gt;*no esta incluido en el documento, se debe agregar&lt;/P&gt;&lt;P&gt;*0CS_PLEVEL Nivel de imputacion, valor constante 00&lt;/P&gt;&lt;P&gt;    g_s_range-chanm = '0CS_PLEVEL'.&lt;/P&gt;&lt;P&gt;    g_s_range-low = '00'.&lt;/P&gt;&lt;P&gt;    INSERT g_s_range INTO TABLE g_th_range.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*0CS_DIMEN (Vista de Consolidación, con valor constante = ?ZD?)&lt;/P&gt;&lt;P&gt;    g_s_range-chanm = '0CS_DIMEN'.&lt;/P&gt;&lt;P&gt;    g_s_range-low = 'ZD'.&lt;/P&gt;&lt;P&gt;    INSERT g_s_range INTO TABLE g_th_range.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;**0CS_VERSION (Versión de Consolidación, con valor constante = ?001?)&lt;/P&gt;&lt;P&gt;    g_s_range-chanm = '0CS_VERSION'.&lt;/P&gt;&lt;P&gt;    g_s_range-low = '003'.&lt;/P&gt;&lt;P&gt;    INSERT g_s_range INTO TABLE g_th_range.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;**0CS_CHART (Plan de Posiciones, con valor constante = ?ZP?)&lt;/P&gt;&lt;P&gt;    g_s_range-chanm = '0CS_CHART'.&lt;/P&gt;&lt;P&gt;    g_s_range-low = 'ZP'.&lt;/P&gt;&lt;P&gt;    INSERT g_s_range INTO TABLE g_th_range.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;**0FISCVARNT (Variante del Ejercicio, con valor constante = ?K4?)&lt;/P&gt;&lt;P&gt;    g_s_range-chanm = '0FISCVARNT'.&lt;/P&gt;&lt;P&gt;    g_s_range-low = 'K4'.&lt;/P&gt;&lt;P&gt;    INSERT g_s_range INTO TABLE g_th_range.&lt;/P&gt;&lt;P&gt;*&lt;/P&gt;&lt;P&gt;**0CURKEY_GC (Moneda de Grupo, con valor constante ?MXN?)&lt;/P&gt;&lt;P&gt;    g_s_range-chanm = '0CURKEY_GC'.&lt;/P&gt;&lt;P&gt;    g_s_range-low = 'MXN'.&lt;/P&gt;&lt;P&gt;    INSERT g_s_range INTO TABLE g_th_range.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; Tomar solo información histórica si la empresa no es MQM&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    If p_uni NE cMQM.&lt;/P&gt;&lt;P&gt;      g_s_range-chanm = '0CS_ITEM'.&lt;/P&gt;&lt;P&gt;      g_s_range-compop = 'CP'.&lt;/P&gt;&lt;P&gt;      g_s_range-low = '1*'.   "cuentas 1+++++&lt;/P&gt;&lt;P&gt;      INSERT g_s_range INTO TABLE g_th_range.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Dec 2008 16:25:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-reading-infocube/m-p/4923506#M1148852</guid>
      <dc:creator>alejandro_romero2</dc:creator>
      <dc:date>2008-12-08T16:25:28Z</dc:date>
    </item>
    <item>
      <title>Re: Problem reading infocube</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-reading-infocube/m-p/4923507#M1148853</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;does anyone have an idea ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Dec 2008 17:32:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-reading-infocube/m-p/4923507#M1148853</guid>
      <dc:creator>alejandro_romero2</dc:creator>
      <dc:date>2008-12-08T17:32:00Z</dc:date>
    </item>
    <item>
      <title>Re: Problem reading infocube</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-reading-infocube/m-p/4923508#M1148854</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Remove all other ranges from the internal table. Pass only year int the range table.&lt;/P&gt;&lt;P&gt;May be the values you are currently passing in the range table are not present for the year 2008.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Dec 2008 18:48:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-reading-infocube/m-p/4923508#M1148854</guid>
      <dc:creator>monalisa_biswal</dc:creator>
      <dc:date>2008-12-08T18:48:50Z</dc:date>
    </item>
    <item>
      <title>Re: Problem reading infocube</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-reading-infocube/m-p/4923509#M1148855</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks for your answere but the values are present for year 2008 and 2009 also but i cant get data from this years, only i can get data from year 2007&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Dec 2008 19:18:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-reading-infocube/m-p/4923509#M1148855</guid>
      <dc:creator>alejandro_romero2</dc:creator>
      <dc:date>2008-12-08T19:18:42Z</dc:date>
    </item>
    <item>
      <title>Re: Problem reading infocube</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-reading-infocube/m-p/4923510#M1148856</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;To ensure that all your selection parameters are valid across years, you could right click on your cube to "Display Data", and enter the selection criteria for each of your characteristics, and then vary just the year characteristics to see if you still get back data for each year.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Dec 2008 19:46:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-reading-infocube/m-p/4923510#M1148856</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-08T19:46:33Z</dc:date>
    </item>
    <item>
      <title>Re: Problem reading infocube</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-reading-infocube/m-p/4923511#M1148857</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi i have used the tx listcube and in this transaction y fill the same characteristics for years 2007,2008,2009&lt;/P&gt;&lt;P&gt;and i only change the year but the others characteristics still the same.&lt;/P&gt;&lt;P&gt;In the listcube transaction i can get the data from 2007,2008 and 2009 but in my report when i use the function RSDRI_INFOPROV_READ i only get data from 2007 year but nothing from 2008 and 2009 i dont know why, do you have any idea?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Dec 2008 20:17:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-reading-infocube/m-p/4923511#M1148857</guid>
      <dc:creator>alejandro_romero2</dc:creator>
      <dc:date>2008-12-08T20:17:04Z</dc:date>
    </item>
    <item>
      <title>Re: Problem reading infocube</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-reading-infocube/m-p/4923512#M1148858</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;any idea guys????????????&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Dec 2008 22:17:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-reading-infocube/m-p/4923512#M1148858</guid>
      <dc:creator>alejandro_romero2</dc:creator>
      <dc:date>2008-12-08T22:17:52Z</dc:date>
    </item>
    <item>
      <title>Re: Problem reading infocube</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-reading-infocube/m-p/4923513#M1148859</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;is there any posibility that years 2008 and 2009 were unavailable in any way?.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can some one post an example using the same function i am using for year 2008 or 2009?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Dec 2008 15:50:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-reading-infocube/m-p/4923513#M1148859</guid>
      <dc:creator>alejandro_romero2</dc:creator>
      <dc:date>2008-12-09T15:50:13Z</dc:date>
    </item>
    <item>
      <title>Re: Problem reading infocube</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-reading-infocube/m-p/4923514#M1148860</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks i solved by my self&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 19 Mar 2009 16:51:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-reading-infocube/m-p/4923514#M1148860</guid>
      <dc:creator>alejandro_romero2</dc:creator>
      <dc:date>2009-03-19T16:51:30Z</dc:date>
    </item>
    <item>
      <title>Re: Problem reading infocube</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-reading-infocube/m-p/4923515#M1148861</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;  I have same problem as you had in past.&lt;/P&gt;&lt;P&gt;Please suggest me for the same . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am getting x_message exception while executing the rsdri_infoprov_read Function Module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please suggest me so that i can solve my problem .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rohit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 19 Nov 2011 07:02:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-reading-infocube/m-p/4923515#M1148861</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-11-19T07:02:21Z</dc:date>
    </item>
  </channel>
</rss>

