<?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: Facing Problem in Importing USR02 using RFC_Read_Table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/facing-problem-in-importing-usr02-using-rfc-read-table/m-p/11528346#M1935044</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The easiest way to check if it is working is &lt;STRONG&gt;transaction SE37&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;function module: RFC_READ_TABLE:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you only insert the query_table (in your cas USR02) you will get a DATA_BUFFER_EXCEEDED exception. If you add a field (or some fields to the Field table you will get the desired results.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When calling the function module in the code you have to set the table parameter FIELDS with the values. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps, Andreas&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/jiveimages/869580" width="450" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/jiveimages/869581" width="450" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 18 Jan 2016 08:22:51 GMT</pubDate>
    <dc:creator>former_member183045</dc:creator>
    <dc:date>2016-01-18T08:22:51Z</dc:date>
    <item>
      <title>Facing Problem in Importing USR02 using RFC_Read_Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/facing-problem-in-importing-usr02-using-rfc-read-table/m-p/11528340#M1935038</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am trying to import USR02 table of child system&amp;nbsp; from the parent system.But getting Error as Table Not available in my main program.Kindly help.&lt;/P&gt;&lt;P&gt;Code :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;lv_table type DD02L-TABNAME,&lt;/P&gt;&lt;P&gt;lv_rfcdest type&amp;nbsp; RFCDEST,&lt;/P&gt;&lt;P&gt;lt_options type STANDARD TABLE of rfc_db_opt,&lt;/P&gt;&lt;P&gt;lt_fields type STANDARD TABLE of rfc_db_fld,&lt;/P&gt;&lt;P&gt;lt_data type STANDARD TABLE of tab512.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;lv_rfcdest = 'SR4CLNT800'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WRITE : /.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;lv_table&amp;nbsp; = 'USR02'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'RFC_READ_TABLE'&lt;/P&gt;&lt;P&gt;&amp;nbsp; DESTINATION lv_rfcdest&lt;/P&gt;&lt;P&gt;&amp;nbsp; IMPORTING&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; QUERY_TABLE = lv_table&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ex_usr02&amp;nbsp;&amp;nbsp;&amp;nbsp; = lv_table&lt;/P&gt;&lt;P&gt;&amp;nbsp; TABLES&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; OPTIONS&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; = lt_options&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; FIELDS&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; = lt_fields&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; DATA&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; = lt_data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;* MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;P&gt;*&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;exit.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jan 2016 04:41:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/facing-problem-in-importing-usr02-using-rfc-read-table/m-p/11528340#M1935038</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-01-14T04:41:34Z</dc:date>
    </item>
    <item>
      <title>Re: Facing Problem in Importing USR02 using RFC_Read_Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/facing-problem-in-importing-usr02-using-rfc-read-table/m-p/11528341#M1935039</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;are you sure it's not an authorization problem ? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Fred&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jan 2016 09:24:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/facing-problem-in-importing-usr02-using-rfc-read-table/m-p/11528341#M1935039</guid>
      <dc:creator>FredericGirod</dc:creator>
      <dc:date>2016-01-14T09:24:02Z</dc:date>
    </item>
    <item>
      <title>Re: Facing Problem in Importing USR02 using RFC_Read_Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/facing-problem-in-importing-usr02-using-rfc-read-table/m-p/11528342#M1935040</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi..No its not.Runtime Exception "Table not available" was encountered.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jan 2016 13:28:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/facing-problem-in-importing-usr02-using-rfc-read-table/m-p/11528342#M1935040</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-01-14T13:28:34Z</dc:date>
    </item>
    <item>
      <title>Re: Facing Problem in Importing USR02 using RFC_Read_Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/facing-problem-in-importing-usr02-using-rfc-read-table/m-p/11528343#M1935041</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes but TABLE_NOT_AVAILABLE is the generic "other error" of the FM, so check following in destination system?&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
&lt;P style="font-family: courier; color: black;"&gt;&lt;SPAN style="color: #0000ff;"&gt;call&lt;/SPAN&gt; &lt;SPAN style="color: #0000ff;"&gt;function&lt;/SPAN&gt; &lt;SPAN style="color: #4da616;"&gt;'VIEW_AUTHORITY_CHECK'&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="font-family: courier; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #0000ff;"&gt;exporting&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="font-family: courier; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; view_action&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #800080;"&gt; = &lt;/SPAN&gt;&lt;SPAN style="color: #4da616;"&gt;'S'&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="font-family: courier; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; view_name&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #800080;"&gt; = &lt;/SPAN&gt;query_table&lt;/P&gt;
&lt;P style="font-family: courier; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #0000ff;"&gt;exceptions&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="font-family: courier; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; no_authority&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #800080;"&gt; = &lt;/SPAN&gt;&lt;SPAN style="color: #3399ff;"&gt;2&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="font-family: courier; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; no_clientindependent_authority&lt;SPAN style="color: #800080;"&gt; = &lt;/SPAN&gt;&lt;SPAN style="color: #3399ff;"&gt;2&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="font-family: courier; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; no_linedependent_authority&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #800080;"&gt; = &lt;/SPAN&gt;&lt;SPAN style="color: #3399ff;"&gt;2&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="font-family: courier; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #0000ff;"&gt;others&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #800080;"&gt; = &lt;/SPAN&gt;&lt;SPAN style="color: #3399ff;"&gt;1&lt;/SPAN&gt;&lt;SPAN style="color: #800080;"&gt;.&lt;/SPAN&gt; &lt;SPAN style="color: #808080;"&gt;&lt;EM&gt;" &amp;lt;- here&lt;/EM&gt;&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="font-family: courier; color: black;"&gt;&lt;/P&gt;
&lt;P style="font-family: courier; color: black;"&gt;&lt;SPAN style="color: #0000ff;"&gt;if&lt;/SPAN&gt; sy-subrc&lt;SPAN style="color: #800080;"&gt; = &lt;/SPAN&gt;&lt;SPAN style="color: #3399ff;"&gt;2&lt;/SPAN&gt;&lt;SPAN style="color: #800080;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="font-family: courier; color: black;"&gt;&amp;nbsp; &lt;SPAN style="color: #0000ff;"&gt;raise&lt;/SPAN&gt; not_authorized&lt;SPAN style="color: #800080;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="font-family: courier; color: black;"&gt;&lt;SPAN style="color: #0000ff;"&gt;elseif&lt;/SPAN&gt; sy-subrc&lt;SPAN style="color: #800080;"&gt; = &lt;/SPAN&gt;&lt;SPAN style="color: #3399ff;"&gt;1&lt;/SPAN&gt;&lt;SPAN style="color: #800080;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="font-family: courier; color: black;"&gt;&amp;nbsp; &lt;SPAN style="color: #0000ff;"&gt;raise&lt;/SPAN&gt; table_not_available&lt;SPAN style="color: #800080;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="font-family: courier; color: black;"&gt;&lt;SPAN style="color: #0000ff;"&gt;endif&lt;/SPAN&gt;&lt;SPAN style="color: #800080;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raymond&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jan 2016 13:46:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/facing-problem-in-importing-usr02-using-rfc-read-table/m-p/11528343#M1935041</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2016-01-14T13:46:02Z</dc:date>
    </item>
    <item>
      <title>Re: Facing Problem in Importing USR02 using RFC_Read_Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/facing-problem-in-importing-usr02-using-rfc-read-table/m-p/11528344#M1935042</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;RFC_READ_TABLE has problems with tables with a lot of fields. &lt;/P&gt;&lt;P&gt;At a call inside SAP (with all rights) an BUFFER_EXCEED exception is thrown as the table USR02 has too much columns for this function call. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To get rid of this error you can can set the additional FIELDS parameter with 1 ... n values.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards, Andreas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Jan 2016 16:35:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/facing-problem-in-importing-usr02-using-rfc-read-table/m-p/11528344#M1935042</guid>
      <dc:creator>former_member183045</dc:creator>
      <dc:date>2016-01-14T16:35:07Z</dc:date>
    </item>
    <item>
      <title>Re: Facing Problem in Importing USR02 using RFC_Read_Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/facing-problem-in-importing-usr02-using-rfc-read-table/m-p/11528345#M1935043</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Any screenshot or template u have to go ahead with it?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Jan 2016 04:17:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/facing-problem-in-importing-usr02-using-rfc-read-table/m-p/11528345#M1935043</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-01-18T04:17:41Z</dc:date>
    </item>
    <item>
      <title>Re: Facing Problem in Importing USR02 using RFC_Read_Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/facing-problem-in-importing-usr02-using-rfc-read-table/m-p/11528346#M1935044</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The easiest way to check if it is working is &lt;STRONG&gt;transaction SE37&lt;/STRONG&gt;.&lt;/P&gt;&lt;P&gt;function module: RFC_READ_TABLE:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you only insert the query_table (in your cas USR02) you will get a DATA_BUFFER_EXCEEDED exception. If you add a field (or some fields to the Field table you will get the desired results.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When calling the function module in the code you have to set the table parameter FIELDS with the values. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps, Andreas&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/jiveimages/869580" width="450" /&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/jiveimages/869581" width="450" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Jan 2016 08:22:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/facing-problem-in-importing-usr02-using-rfc-read-table/m-p/11528346#M1935044</guid>
      <dc:creator>former_member183045</dc:creator>
      <dc:date>2016-01-18T08:22:51Z</dc:date>
    </item>
    <item>
      <title>Re: Facing Problem in Importing USR02 using RFC_Read_Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/facing-problem-in-importing-usr02-using-rfc-read-table/m-p/11528347#M1935045</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just a question, why did you use RFC_READ_TABLE for this data, when they are some available BAPI (*) Always RFC enabled.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raymond&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;(*) e.g. BAPI_USER_GETLIST , BAPI_USER_GET_DETAIL and BAPI_USER_WP_PERS_DATA_READ.&lt;/EM&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Jan 2016 08:33:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/facing-problem-in-importing-usr02-using-rfc-read-table/m-p/11528347#M1935045</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2016-01-18T08:33:49Z</dc:date>
    </item>
    <item>
      <title>Re: Facing Problem in Importing USR02 using RFC_Read_Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/facing-problem-in-importing-usr02-using-rfc-read-table/m-p/11528348#M1935046</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am lil new to ABAP. Doesn't have much idea about BAPI...Ill explore this too.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Jan 2016 08:41:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/facing-problem-in-importing-usr02-using-rfc-read-table/m-p/11528348#M1935046</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-01-18T08:41:40Z</dc:date>
    </item>
    <item>
      <title>Re: Facing Problem in Importing USR02 using RFC_Read_Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/facing-problem-in-importing-usr02-using-rfc-read-table/m-p/11528349#M1935047</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;My main objective is to just fetch USR02 of destination child sytem ,and display it in&amp;nbsp; the Parent CUA sytem.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Jan 2016 08:46:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/facing-problem-in-importing-usr02-using-rfc-read-table/m-p/11528349#M1935047</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-01-18T08:46:08Z</dc:date>
    </item>
    <item>
      <title>Re: Facing Problem in Importing USR02 using RFC_Read_Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/facing-problem-in-importing-usr02-using-rfc-read-table/m-p/11528350#M1935048</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The reason for fetching usr02 from child system,I want all the users from CUA child systems who did not logged on for 90 days.The final report I want in Parent system.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Jan 2016 09:38:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/facing-problem-in-importing-usr02-using-rfc-read-table/m-p/11528350#M1935048</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-01-18T09:38:38Z</dc:date>
    </item>
    <item>
      <title>Re: Facing Problem in Importing USR02 using RFC_Read_Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/facing-problem-in-importing-usr02-using-rfc-read-table/m-p/11528351#M1935049</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Could you :&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Call RFC_READ_TABLE with only the required fields, to insure problem doesn't come from table width,&lt;/LI&gt;&lt;LI&gt;Call RFC_READ_TABLE for any not-system restricted table (e.g. MARA) to insure no RFC authorization failure&lt;/LI&gt;&lt;LI&gt;Ask also basis (or check yourself) for some authorization check (hidden by the system due to security notes) using same user id than in the RFC call, try VIEW_AUTHORITY_CHECK or check authorization objects as S_TABU_NAM, S_TABU_DIS, S_TABU_CLI, or S_TABU_LIN.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;EM&gt;&lt;BR /&gt;&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;Hint: In recent systems basis guy may be able to audit the call of generic table access tools in target system - &lt;/EM&gt;&lt;A href="http://service.sap.com/sap/support/notes/2041892" title="2041892  - Logging of call of generic table accesses"&gt;&lt;SPAN class="title"&gt;&lt;EM&gt;2041892 - Logging of call of generic table accesses&lt;/EM&gt;&lt;/SPAN&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also you didn't post the whole statement in your post, did you check each and every exception of FM and the RFC special exception?&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
&lt;P style="font-family: courier; color: black;"&gt;&lt;SPAN style="color: #0000ff;"&gt;CALL&lt;/SPAN&gt; &lt;SPAN style="color: #0000ff;"&gt;FUNCTION&lt;/SPAN&gt; &lt;SPAN style="color: #4da616;"&gt;'RFC_READ_TABLE'&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="font-family: courier; color: black;"&gt;&amp;nbsp; DESTINATION lv_rfcdest&lt;/P&gt;
&lt;P style="font-family: courier; color: black;"&gt;&amp;nbsp; &lt;SPAN style="color: #0000ff;"&gt;IMPORTING&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="font-family: courier; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; query_table&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #800080;"&gt; = &lt;/SPAN&gt;lv_table&lt;/P&gt;
&lt;P style="font-family: courier; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; ex_usr02&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #800080;"&gt; = &lt;/SPAN&gt;lv_table&lt;/P&gt;
&lt;P style="font-family: courier; color: black;"&gt;&amp;nbsp; &lt;SPAN style="color: #0000ff;"&gt;TABLES&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="font-family: courier; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; OPTIONS&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #800080;"&gt; = &lt;/SPAN&gt;lt_options&lt;/P&gt;
&lt;P style="font-family: courier; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #0000ff;"&gt;fields&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #800080;"&gt; = &lt;/SPAN&gt;lt_fields&lt;/P&gt;
&lt;P style="font-family: courier; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #0000ff;"&gt;data&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #800080;"&gt; = &lt;/SPAN&gt;lt_data&lt;/P&gt;
&lt;P style="font-family: courier; color: black;"&gt;&amp;nbsp; &lt;SPAN style="color: #0000ff;"&gt;EXCEPTIONS&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="font-family: courier; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; table_not_available&amp;nbsp; &lt;SPAN style="color: #800080;"&gt; = &lt;/SPAN&gt;&lt;SPAN style="color: #3399ff;"&gt;1&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="font-family: courier; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; table_without_data&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #800080;"&gt; = &lt;/SPAN&gt;&lt;SPAN style="color: #3399ff;"&gt;2&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="font-family: courier; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; option_not_valid&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #800080;"&gt; = &lt;/SPAN&gt;&lt;SPAN style="color: #3399ff;"&gt;3&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="font-family: courier; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; field_not_valid&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #800080;"&gt; = &lt;/SPAN&gt;&lt;SPAN style="color: #3399ff;"&gt;4&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="font-family: courier; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; not_authorized&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #800080;"&gt; = &lt;/SPAN&gt;&lt;SPAN style="color: #3399ff;"&gt;5&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="font-family: courier; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; data_buffer_exceeded &lt;SPAN style="color: #800080;"&gt; = &lt;/SPAN&gt;&lt;SPAN style="color: #3399ff;"&gt;6&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="font-family: courier; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; system_failure&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #800080;"&gt; = &lt;/SPAN&gt;&lt;SPAN style="color: #3399ff;"&gt;7&lt;/SPAN&gt;&amp;nbsp; &lt;SPAN style="color: #0000ff;"&gt;MESSAGE&lt;/SPAN&gt; &lt;SPAN style="color: #0000ff;"&gt;text&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="font-family: courier; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; communication_failure&lt;SPAN style="color: #800080;"&gt; = &lt;/SPAN&gt;&lt;SPAN style="color: #3399ff;"&gt;8&lt;/SPAN&gt;&amp;nbsp; &lt;SPAN style="color: #0000ff;"&gt;MESSAGE&lt;/SPAN&gt; &lt;SPAN style="color: #0000ff;"&gt;text&lt;/SPAN&gt;&lt;/P&gt;
&lt;P style="font-family: courier; color: black;"&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #0000ff;"&gt;OTHERS&lt;/SPAN&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN style="color: #800080;"&gt; = &lt;/SPAN&gt;&lt;SPAN style="color: #3399ff;"&gt;9&lt;/SPAN&gt;&lt;SPAN style="color: #800080;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Are there any dump/message in target system (ST22, SM21)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raymond&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Jan 2016 07:24:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/facing-problem-in-importing-usr02-using-rfc-read-table/m-p/11528351#M1935049</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2016-01-20T07:24:48Z</dc:date>
    </item>
    <item>
      <title>Re: Facing Problem in Importing USR02 using RFC_Read_Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/facing-problem-in-importing-usr02-using-rfc-read-table/m-p/11528352#M1935050</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Got it...Raymond...Thanx.....I resolved it..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Jan 2016 08:47:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/facing-problem-in-importing-usr02-using-rfc-read-table/m-p/11528352#M1935050</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-01-20T08:47:03Z</dc:date>
    </item>
  </channel>
</rss>

