<?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: assign (SAPSTDPROGRAM) to &amp;lt;fs&amp;gt;. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/assign-sapstdprogram-to-lt-fs-gt/m-p/4086829#M977118</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; what do you  mean to say loaded in memory?&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the classical debugger, click on the "&lt;STRONG&gt;Calls&lt;/STRONG&gt;" button, the  program(&lt;STRONG&gt;RM07DOCS&lt;/STRONG&gt;) should be listed under the Act Call Stack to access the table &lt;STRONG&gt;LIST&lt;/STRONG&gt;(which is defined in the program &lt;STRONG&gt;RM07DOCS&lt;/STRONG&gt;) for this technique to work.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 09 Jul 2008 10:46:42 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-07-09T10:46:42Z</dc:date>
    <item>
      <title>assign (SAPSTDPROGRAM) to &lt;fs&gt;.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/assign-sapstdprogram-to-lt-fs-gt/m-p/4086818#M977107</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;REPORT  ZTEST.&lt;/P&gt;&lt;P&gt;data : pgm(40) value '(RM07DOCS) LIST[]',&lt;/P&gt;&lt;P&gt;         it like LIST.&lt;/P&gt;&lt;P&gt;         field-symbols: &amp;lt;fs&amp;gt; type TABLE.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;assign (RM07DOCS) to &amp;lt;fs&amp;gt;.&lt;/P&gt;&lt;P&gt;it[] = &amp;lt;fs&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LIST is an internal table which is declared globally in RM07DOCS program but, it is giving me an error saying &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"LIST must  be a flat structure.You cannot use internal tables,strings,references or structures or components"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kindly let me know where I am going wrong.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;K.Kiran.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jul 2008 08:52:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/assign-sapstdprogram-to-lt-fs-gt/m-p/4086818#M977107</guid>
      <dc:creator>kiran_k8</dc:creator>
      <dc:date>2008-07-09T08:52:04Z</dc:date>
    </item>
    <item>
      <title>Re: assign (SAPSTDPROGRAM) to &lt;fs&gt;.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/assign-sapstdprogram-to-lt-fs-gt/m-p/4086819#M977108</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;In the code you are trying to access the LIST table from the program RM07DOCS using the dynamic assign. But the LIST table is not accessible in you z program. You have to declare a internal table for LIST. Your custom program cannot access the LISt defined in the std program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;did you check this link &lt;/P&gt;&lt;P&gt;&lt;A href="http://saptechnical.com/Tips/ExitsBADIs/inaccessible/tables.htm" target="test_blank"&gt;http://saptechnical.com/Tips/ExitsBADIs/inaccessible/tables.htm&lt;/A&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers&lt;/P&gt;&lt;P&gt;VJ&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jul 2008 08:55:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/assign-sapstdprogram-to-lt-fs-gt/m-p/4086819#M977108</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-09T08:55:16Z</dc:date>
    </item>
    <item>
      <title>Re: assign (SAPSTDPROGRAM) to &lt;fs&gt;.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/assign-sapstdprogram-to-lt-fs-gt/m-p/4086820#M977109</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;How have u defined the table LIST? It has to have the same definition:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;TYPE-POOLS: SLIS.
DATA: BEGIN OF IT OCCURS 0.
  INCLUDE STRUCTURE itab.
  DATA: maktx LIKE makt-maktx,
        name1 LIKE t001w-name1,
        btext LIKE t156t-btext,
        pspid LIKE prps-posid,
        vornr TYPE vornr,                                        "215929
        color_line(03)       type c,                        "n555893
        color TYPE slis_t_specialcol_alv.
DATA: END OF IT.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;or&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;IT LIKE TABLE OF LIST.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jul 2008 08:57:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/assign-sapstdprogram-to-lt-fs-gt/m-p/4086820#M977109</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-09T08:57:19Z</dc:date>
    </item>
    <item>
      <title>Re: assign (SAPSTDPROGRAM) to &lt;fs&gt;.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/assign-sapstdprogram-to-lt-fs-gt/m-p/4086821#M977110</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There is a modification to your code. Just check this...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But this works only in Exits &lt;/P&gt;&lt;P&gt;can you let me know what is the purpose of your coding..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;data : pgm(40) value '(RM07DOCS) LIST[]',
it type standard table of LIST.            &amp;lt;---modified
field-symbols: &amp;lt;fs&amp;gt; type TABLE.

assign (pgm) to &amp;lt;fs&amp;gt;.   &amp;lt;--- this is modified
it[] = &amp;lt;fs&amp;gt;.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jul 2008 09:07:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/assign-sapstdprogram-to-lt-fs-gt/m-p/4086821#M977110</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-09T09:07:06Z</dc:date>
    </item>
    <item>
      <title>Re: assign (SAPSTDPROGRAM) to &lt;fs&gt;.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/assign-sapstdprogram-to-lt-fs-gt/m-p/4086822#M977111</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Max,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  ZTEST.&lt;/P&gt;&lt;P&gt;TYPE-POOLS:SLIS.&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF list OCCURS 0.&lt;/P&gt;&lt;P&gt;        INCLUDE STRUCTURE itab.&lt;/P&gt;&lt;P&gt;DATA: maktx LIKE makt-maktx,&lt;/P&gt;&lt;P&gt;      name1 LIKE t001w-name1,&lt;/P&gt;&lt;P&gt;      btext LIKE t156t-btext,&lt;/P&gt;&lt;P&gt;      pspid LIKE prps-posid,&lt;/P&gt;&lt;P&gt;      vornr TYPE vornr,                                     &lt;/P&gt;&lt;P&gt;      color_line(03)       type c,                          &lt;/P&gt;&lt;P&gt;      color TYPE slis_t_specialcol_alv.&lt;/P&gt;&lt;P&gt;DATA: END OF list.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : pgm(40) value '(RM07DOCS)LIST[]',&lt;/P&gt;&lt;P&gt;       it like LIST.&lt;/P&gt;&lt;P&gt;field-symbols: &amp;lt;fs&amp;gt; type TABLE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;assign (RM07DOCS) to &amp;lt;fs&amp;gt;.&lt;/P&gt;&lt;P&gt;it[] = &amp;lt;fs&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now it is showing  "field rmo7docs is unknown,it is niether one of the specified tables  nor defined by  DATA statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;K.Kiran.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jul 2008 09:12:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/assign-sapstdprogram-to-lt-fs-gt/m-p/4086822#M977111</guid>
      <dc:creator>kiran_k8</dc:creator>
      <dc:date>2008-07-09T09:12:55Z</dc:date>
    </item>
    <item>
      <title>Re: assign (SAPSTDPROGRAM) to &lt;fs&gt;.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/assign-sapstdprogram-to-lt-fs-gt/m-p/4086823#M977112</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;If you use this declaration:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA: it like LIST.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It means IT is a flat structure, but u need to an internal table so it should be:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA: it like STANDARD TABLE OF LIST WITH HEADER LINE.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyway if you've just declared LIST u don't need to use IT, but u can directly use LIST:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;assign (RM07DOCS) to &amp;lt;fs&amp;gt;.
LIST[] = &amp;lt;fs&amp;gt;.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jul 2008 09:27:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/assign-sapstdprogram-to-lt-fs-gt/m-p/4086823#M977112</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-09T09:27:12Z</dc:date>
    </item>
    <item>
      <title>Re: assign (SAPSTDPROGRAM) to &lt;fs&gt;.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/assign-sapstdprogram-to-lt-fs-gt/m-p/4086824#M977113</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Max.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  ZTEST.&lt;/P&gt;&lt;P&gt;TYPE-POOLS:SLIS.&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF list OCCURS 0.&lt;/P&gt;&lt;P&gt;        INCLUDE STRUCTURE itab.&lt;/P&gt;&lt;P&gt;DATA: maktx LIKE makt-maktx,&lt;/P&gt;&lt;P&gt;      name1 LIKE t001w-name1,&lt;/P&gt;&lt;P&gt;      btext LIKE t156t-btext,&lt;/P&gt;&lt;P&gt;      pspid LIKE prps-posid,&lt;/P&gt;&lt;P&gt;      vornr TYPE vornr,&lt;/P&gt;&lt;P&gt;      color_line(03)       type c,&lt;/P&gt;&lt;P&gt;      color TYPE slis_t_specialcol_alv.&lt;/P&gt;&lt;P&gt;DATA: END OF list.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : pgm(40) value '(RM07DOCS)LIST[]'.&lt;/P&gt;&lt;P&gt;field-symbols: &amp;lt;FS&amp;gt; type any .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;assign (pgm)  to &amp;lt;FS&amp;gt;.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;list[] = &amp;lt;FS&amp;gt;.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is giving an error saying field symbol not yet assigned.Any wrong with ASSIGN Statement or the way I declared a field symbol ?.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I use   " assign (RM07DOCS)  to &amp;lt;FS&amp;gt;" it is saying RM07DOCS unknown.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How does this ASSIGN gets the data from the LIST which is an internal table in RM07DOCS?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;K.Kiran.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jul 2008 10:18:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/assign-sapstdprogram-to-lt-fs-gt/m-p/4086824#M977113</guid>
      <dc:creator>kiran_k8</dc:creator>
      <dc:date>2008-07-09T10:18:54Z</dc:date>
    </item>
    <item>
      <title>Re: assign (SAPSTDPROGRAM) to &lt;fs&gt;.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/assign-sapstdprogram-to-lt-fs-gt/m-p/4086825#M977114</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;But how do you run the program ZTEST?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Remember the field-symbols has to be a TYPE TABLE, not ANY.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;data : pgm(40) value '(RM07DOCS)LIST[]'.
         field-symbols: &amp;lt;FS&amp;gt; type TABLE .

assign (pgm) to &amp;lt;FS&amp;gt;.
IF SY-SUBRC = 0.
  list[] = &amp;lt;FS&amp;gt;.
ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and remember this trick works only if the program RM07DOCS is loaded in memory, so it's working while ZTEST is running.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jul 2008 10:26:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/assign-sapstdprogram-to-lt-fs-gt/m-p/4086825#M977114</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-09T10:26:52Z</dc:date>
    </item>
    <item>
      <title>Re: assign (SAPSTDPROGRAM) to &lt;fs&gt;.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/assign-sapstdprogram-to-lt-fs-gt/m-p/4086826#M977115</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;As i said this works only with Exits and BADI's.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Definitely Field symbol assignement error will happen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is not possible to access that (RM07DOCS)LIST[] Dynamically&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in your code.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jul 2008 10:26:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/assign-sapstdprogram-to-lt-fs-gt/m-p/4086826#M977115</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-09T10:26:58Z</dc:date>
    </item>
    <item>
      <title>Re: assign (SAPSTDPROGRAM) to &lt;fs&gt;.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/assign-sapstdprogram-to-lt-fs-gt/m-p/4086827#M977116</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;data : pgm(40) value '(RM07DOCS) LIST[]',&lt;/P&gt;&lt;P&gt;it type standard table of LIST.           &lt;/P&gt;&lt;P&gt;field-symbols: &amp;lt;fs&amp;gt; type TABLE.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;assign (pgm) to &amp;lt;fs&amp;gt;.  &lt;/P&gt;&lt;P&gt;if sy-subrc eq 0.              "This always ne 0&lt;/P&gt;&lt;P&gt;it[] = &amp;lt;fs&amp;gt;.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You  always get the same error&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;Field symbol has not yet been assigned.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the program (RM07DOCS) variables are not accessed here..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jul 2008 10:31:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/assign-sapstdprogram-to-lt-fs-gt/m-p/4086827#M977116</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-09T10:31:27Z</dc:date>
    </item>
    <item>
      <title>Re: assign (SAPSTDPROGRAM) to &lt;fs&gt;.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/assign-sapstdprogram-to-lt-fs-gt/m-p/4086828#M977117</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Max,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"trick works only if the program RM07DOCS is loaded in memory, so it's working while ZTEST is running".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what do you  mean to say loaded in memory?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ZTEST is totally a seperate program into which I want to fetch the data stored in LIST which is the final internal table  of RM07DOCS.How to have a link in between these two?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can I use SUBMIT RM07DOCS followed by the above given code?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;K.Kiran.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jul 2008 10:38:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/assign-sapstdprogram-to-lt-fs-gt/m-p/4086828#M977117</guid>
      <dc:creator>kiran_k8</dc:creator>
      <dc:date>2008-07-09T10:38:21Z</dc:date>
    </item>
    <item>
      <title>Re: assign (SAPSTDPROGRAM) to &lt;fs&gt;.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/assign-sapstdprogram-to-lt-fs-gt/m-p/4086829#M977118</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; what do you  mean to say loaded in memory?&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the classical debugger, click on the "&lt;STRONG&gt;Calls&lt;/STRONG&gt;" button, the  program(&lt;STRONG&gt;RM07DOCS&lt;/STRONG&gt;) should be listed under the Act Call Stack to access the table &lt;STRONG&gt;LIST&lt;/STRONG&gt;(which is defined in the program &lt;STRONG&gt;RM07DOCS&lt;/STRONG&gt;) for this technique to work.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jul 2008 10:46:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/assign-sapstdprogram-to-lt-fs-gt/m-p/4086829#M977118</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-09T10:46:42Z</dc:date>
    </item>
    <item>
      <title>Re: assign (SAPSTDPROGRAM) to &lt;fs&gt;.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/assign-sapstdprogram-to-lt-fs-gt/m-p/4086830#M977119</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can try this options instead of fieldsymbols etc..&lt;/P&gt;&lt;P&gt;If you see the code RM07DOCS line 1551&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;EXPORT export_list TO MEMORY ID 'MB51_EXPORT_LIST'.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;make use of above export&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. in your program Submit the program RM07DOCS first&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. next import the list from memory with the id.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now use the list data for your purpose.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jul 2008 10:49:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/assign-sapstdprogram-to-lt-fs-gt/m-p/4086830#M977119</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-09T10:49:51Z</dc:date>
    </item>
    <item>
      <title>Re: assign (SAPSTDPROGRAM) to &lt;fs&gt;.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/assign-sapstdprogram-to-lt-fs-gt/m-p/4086831#M977120</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;It means the programs RM07DOCS and  ZTEST are running simultaneously in the same mode.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So this trick is usually used in the exit, because the main program  and the program of exit are loaded im memory and running simultaneously.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;REPORT &amp;lt;PROGRAM&amp;gt;.

   CALL FUNCTION &amp;lt;FUNCTION&amp;gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The function &amp;lt;FUNCTION&amp;gt; doesn't belong to calling program &amp;lt;PROGRAM&amp;gt; and the fm can be see only the data transfered by interface (IMPORTING/EXPORTING parameter).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If in function module it needs to see other data of may program &amp;lt;PROGRAM&amp;gt; it can use the trick of field-symbols, because when the program &amp;lt;PROGRAM&amp;gt; starts, the system loads in memory all data of main program &amp;lt;PROGRAM&amp;gt; and all data of function group of function &amp;lt;FUNCTION&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So if your program ZTEST is completally independent from main program, because the trick can't work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Anyway just as  Rajesh said, try to debug ZTEST and insert  (RM07DOCS)LIST[] in the prompt.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If it can't work u should think another solution, for example u can create a copy of report RM07DOCS and works on it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jul 2008 10:57:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/assign-sapstdprogram-to-lt-fs-gt/m-p/4086831#M977120</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-09T10:57:16Z</dc:date>
    </item>
    <item>
      <title>Re: assign (SAPSTDPROGRAM) to &lt;fs&gt;.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/assign-sapstdprogram-to-lt-fs-gt/m-p/4086832#M977121</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In addition to what Vijay has suggested, you can also SUBMIT the standard program directly with the "... EXPORTING LIST TO MEMORY" addition and process the &lt;/P&gt;&lt;P&gt;LIST exported with the help of the FM 'LIST_FROM_MEMORY' &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm copying the example in F1 help of SUBMIT statement for your reference&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA list_tab TYPE TABLE OF abaplist. 

SUBMIT report EXPORTING LIST TO MEMORY 
              AND RETURN. 

CALL FUNCTION 'LIST_FROM_MEMORY' 
  TABLES 
    listobject = list_tab 
  EXCEPTIONS 
    not_found  = 1 
    OTHERS     = 2. 

IF sy-subrc = 0. 
  CALL FUNCTION 'WRITE_LIST' 
    TABLES 
      listobject = list_tab. 
ENDIF. 

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 09 Jul 2008 10:57:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/assign-sapstdprogram-to-lt-fs-gt/m-p/4086832#M977121</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-09T10:57:31Z</dc:date>
    </item>
  </channel>
</rss>

