<?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: Report output from memory to internal table (corresponding fields) in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/report-output-from-memory-to-internal-table-corresponding-fields/m-p/3919344#M939172</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; Copy RM07DOCS to ZRM07DOCS. And put a parameter p_flag with the property of no-visible. When you call the program just to get the internal table , &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SUBMIT ZRM07DOCS ......

WITH p_flag = 'X'.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; You need to change the program ZRM07DOCS ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;if p_flag eq = 'X'.

EXPORT gt_your_internal table to memory id 'Z_UNIQUE_ID' .
"" Just export int. table
else.
 "" Normal mode
endif.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;than you can get your internal table using ; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;IMPORT gt_internal_table FROM memory id 'Z_UNIQUE_ID' .&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 06 Jun 2008 14:12:13 GMT</pubDate>
    <dc:creator>huseyindereli</dc:creator>
    <dc:date>2008-06-06T14:12:13Z</dc:date>
    <item>
      <title>Report output from memory to internal table (corresponding fields)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/report-output-from-memory-to-internal-table-corresponding-fields/m-p/3919341#M939169</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How can we pick any standard report output such as &lt;/P&gt;&lt;P&gt;RM07DOCS on to memory and from memory to an internal&lt;/P&gt;&lt;P&gt;table.Here by internal table ,i do not mean of type c &lt;/P&gt;&lt;P&gt;containing complete report but data should go from output to corresponding fields of internal table structure of whom is defined as same of the output.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Jun 2008 09:10:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/report-output-from-memory-to-internal-table-corresponding-fields/m-p/3919341#M939169</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-06T09:10:47Z</dc:date>
    </item>
    <item>
      <title>Re: Report output from memory to internal table (corresponding fields)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/report-output-from-memory-to-internal-table-corresponding-fields/m-p/3919342#M939170</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;SUBMIT rfbila00 AND RETURN&lt;/P&gt;&lt;P&gt;     EXPORTING LIST TO MEMORY&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    WITH sd_ktopl-low = ' '&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;     WITH sd_bukrs IN  s_bukrs&lt;/P&gt;&lt;P&gt;     WITH sd_prctr IN s_prctr&lt;/P&gt;&lt;P&gt;     WITH bilavers =  p_fsv&lt;/P&gt;&lt;P&gt;     WITH bilaspra =  'EN'&lt;/P&gt;&lt;P&gt;     WITH bilbjahr =   p_fyear&lt;/P&gt;&lt;P&gt;     WITH b-monate IN s_per&lt;/P&gt;&lt;P&gt;     WITH bilvjahr = v_cfyear&lt;/P&gt;&lt;P&gt;     WITH v-monate = l_per&lt;/P&gt;&lt;P&gt;     WITH bilagvar = P_LAYOUT&lt;/P&gt;&lt;P&gt;     WITH bilagrid = 'X'&lt;/P&gt;&lt;P&gt;     WITH bilabkon = '2'&lt;/P&gt;&lt;P&gt;     WITH bilagkon = '3'&lt;/P&gt;&lt;P&gt;     WITH bilasumm = '0'&lt;/P&gt;&lt;P&gt;     WITH bilavart = '1'&lt;/P&gt;&lt;P&gt;     WITH bilaskal = '3/0'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'LIST_FROM_MEMORY'&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      listobject = t_list&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      not_found  = 1.&lt;/P&gt;&lt;P&gt;  REFRESH t_ascii.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'LIST_TO_ASCI'&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      listasci           = t_ascii " list converted to ASCII&lt;/P&gt;&lt;P&gt;      listobject         = t_list&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      empty_list         = 1&lt;/P&gt;&lt;P&gt;      list_index_invalid = 2&lt;/P&gt;&lt;P&gt;      OTHERS             = 3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;u will get the output in t_list...u have to split as per ur requir......&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this will help u.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward IF...........&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anbu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Jun 2008 09:27:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/report-output-from-memory-to-internal-table-corresponding-fields/m-p/3919342#M939170</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-06T09:27:35Z</dc:date>
    </item>
    <item>
      <title>Re: Report output from memory to internal table (corresponding fields)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/report-output-from-memory-to-internal-table-corresponding-fields/m-p/3919343#M939171</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what you are telling me t_list here is to defined as &lt;STRONG&gt;abaplist&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;The further modules will convert to text.&lt;/P&gt;&lt;P&gt;What i get is screen output to internal table but not segregated in terms of fields of internal table.I have tried this already by coding.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Jun 2008 09:32:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/report-output-from-memory-to-internal-table-corresponding-fields/m-p/3919343#M939171</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-06T09:32:22Z</dc:date>
    </item>
    <item>
      <title>Re: Report output from memory to internal table (corresponding fields)</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/report-output-from-memory-to-internal-table-corresponding-fields/m-p/3919344#M939172</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; Copy RM07DOCS to ZRM07DOCS. And put a parameter p_flag with the property of no-visible. When you call the program just to get the internal table , &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SUBMIT ZRM07DOCS ......

WITH p_flag = 'X'.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; You need to change the program ZRM07DOCS ;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;if p_flag eq = 'X'.

EXPORT gt_your_internal table to memory id 'Z_UNIQUE_ID' .
"" Just export int. table
else.
 "" Normal mode
endif.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;than you can get your internal table using ; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;IMPORT gt_internal_table FROM memory id 'Z_UNIQUE_ID' .&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Jun 2008 14:12:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/report-output-from-memory-to-internal-table-corresponding-fields/m-p/3919344#M939172</guid>
      <dc:creator>huseyindereli</dc:creator>
      <dc:date>2008-06-06T14:12:13Z</dc:date>
    </item>
  </channel>
</rss>

