<?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 when exectuing the FM in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-when-exectuing-the-fm/m-p/2083778#M432522</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm not sure if I understood your problem correctly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you want to receive the list from memory and analyze it?&lt;/P&gt;&lt;P&gt;Then you can retrieve it with the FM &amp;lt;b&amp;gt;LIST_FROM_MEMORY&amp;lt;/b&amp;gt; into an internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Stefan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 13 Apr 2007 12:09:43 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-04-13T12:09:43Z</dc:date>
    <item>
      <title>problem when exectuing the FM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-when-exectuing-the-fm/m-p/2083770#M432514</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have one function module whcih internally calling a submit report statement. That report statement giving output report. But the client dont want that report. The report which iam submitting is a standard SAP report(LQ02). what i need is the report program should process the records, But it should not display any report.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what are all the possibulities for this..? (other than copying into z program )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;Raghu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Apr 2007 07:37:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-when-exectuing-the-fm/m-p/2083770#M432514</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-05T07:37:33Z</dc:date>
    </item>
    <item>
      <title>Re: problem when exectuing the FM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-when-exectuing-the-fm/m-p/2083771#M432515</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Copy the function module and report into Z function module and  Z report respectively, now made the changes to the Z report that it should not display output. and call this Z report in function module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Apr 2007 07:43:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-when-exectuing-the-fm/m-p/2083771#M432515</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-05T07:43:43Z</dc:date>
    </item>
    <item>
      <title>Re: problem when exectuing the FM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-when-exectuing-the-fm/m-p/2083772#M432516</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;How can you eliminate the Write statements that are used to display the report in the Std program, which was submitted?&lt;/P&gt;&lt;P&gt;if you don't wants to copy that std report,&lt;/P&gt;&lt;P&gt;You have to copy the relavent code in that report without those writing part and paste in the function module and remove the submit statement.&lt;/P&gt;&lt;P&gt;reward if useful&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Anji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Apr 2007 07:45:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-when-exectuing-the-fm/m-p/2083772#M432516</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-05T07:45:15Z</dc:date>
    </item>
    <item>
      <title>Re: problem when exectuing the FM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-when-exectuing-the-fm/m-p/2083773#M432517</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Raghu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can your the Addition &amp;lt;b&amp;gt;EXPORTING LIST TO MEMORY&amp;lt;/b&amp;gt; from the SUBMIT Statement&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here the description from the online help&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;u&amp;gt;Effect&amp;lt;/u&amp;gt; &lt;/P&gt;&lt;P&gt;Does not display the output list of the called report, but saves it in ABAP memory and leaves the called report immediately. Since the calling program can read the list from memory and process it further, you need to use the addition ... AND RETURN . Also, since the called report cannot be requested for printing, the addition ... TO SAP-SPOOL is not allowed here. In addition, you must not assign a function code to the ENTER key in the current GUI status. The saved list is read from the SAP memory using the function module 'LIST_FROM_MEMORY' and can then be saved to the database using EXPORT, for example. You can process this list further with the function modules 'WRITE_LIST', 'DISPLAY_LIST' ... of the function group "SLST". &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this help.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Stefan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 05 Apr 2007 08:54:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-when-exectuing-the-fm/m-p/2083773#M432517</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-05T08:54:30Z</dc:date>
    </item>
    <item>
      <title>Re: problem when exectuing the FM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-when-exectuing-the-fm/m-p/2083774#M432518</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EXPORTING LIST TO MEMORY  memory is working fine. But now we want to know the log. That mean log for records are successful  and unsucessful records.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please give me ur idea to capture the log..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Apr 2007 11:23:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-when-exectuing-the-fm/m-p/2083774#M432518</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-13T11:23:24Z</dc:date>
    </item>
    <item>
      <title>Re: problem when exectuing the FM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-when-exectuing-the-fm/m-p/2083775#M432519</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;open question&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Apr 2007 11:24:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-when-exectuing-the-fm/m-p/2083775#M432519</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-13T11:24:02Z</dc:date>
    </item>
    <item>
      <title>Re: problem when exectuing the FM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-when-exectuing-the-fm/m-p/2083776#M432520</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;is this written into the joblog?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then you can read the joblog with the FM &amp;lt;b&amp;gt;BP_JOBLOG_READ&amp;lt;/b&amp;gt; like this:&lt;/P&gt;&lt;P&gt;&amp;lt;a href="http://help.sap.com/saphelp_nw04/helpdata/en/fa/096de9543b11d1898e0000e8322d00/frameset.htm"&amp;gt;Copying a Job Log into an Internal Table&amp;lt;/a&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Stefan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Apr 2007 11:31:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-when-exectuing-the-fm/m-p/2083776#M432520</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-13T11:31:04Z</dc:date>
    </item>
    <item>
      <title>Re: problem when exectuing the FM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-when-exectuing-the-fm/m-p/2083777#M432521</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i will explain entire scenario.. so that u can solve my prob...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;our scenario starts with shippment transaction (VT70). Afer entering the shippment internally it will picks the VBELN. This VBELN wil pass to one custom FM. This function module internaly calling the LQ02 transaction.(So this FM will fetch the all i/p values required to run LQ02). Here we are submit LQ02 with the parameters and List to memory. Finally we r getting the output in VT70 scrren saying the process completed. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But we will run these output through background. So we need to know the log like which one are susccessful and which are unsusccessful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i hope u understand the scenario...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Apr 2007 11:49:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-when-exectuing-the-fm/m-p/2083777#M432521</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-13T11:49:36Z</dc:date>
    </item>
    <item>
      <title>Re: problem when exectuing the FM</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-when-exectuing-the-fm/m-p/2083778#M432522</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm not sure if I understood your problem correctly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you want to receive the list from memory and analyze it?&lt;/P&gt;&lt;P&gt;Then you can retrieve it with the FM &amp;lt;b&amp;gt;LIST_FROM_MEMORY&amp;lt;/b&amp;gt; into an internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Stefan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Apr 2007 12:09:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-when-exectuing-the-fm/m-p/2083778#M432522</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-04-13T12:09:43Z</dc:date>
    </item>
  </channel>
</rss>

