<?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: Call screen from report program to bring back data in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-screen-from-report-program-to-bring-back-data/m-p/1566862#M256071</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No, i doesn't work like that.  THE BDCDATA is only used to specify what the screen sequence is and what fields to fill in, it is one directional.  The only values that may be passed back to you will be in the form of messages in the MESSAGES into MessTab extension of the call transaction.  Again, these values will usually be the object(example sales document number).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 08 Oct 2006 18:37:56 GMT</pubDate>
    <dc:creator>RichHeilman</dc:creator>
    <dc:date>2006-10-08T18:37:56Z</dc:date>
    <item>
      <title>Call screen from report program to bring back data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-screen-from-report-program-to-bring-back-data/m-p/1566859#M256068</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I would like to call a transaction from my report program and return back the values from the screen of called transaction.  These values normally show up on the screen of the transaction after values are entered by the user and execute is selected.  I tried playing around with call transaction from the calling report, but with no luck.  Any suggestions would be very much appreciated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Kind Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jason&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 08 Oct 2006 16:24:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-screen-from-report-program-to-bring-back-data/m-p/1566859#M256068</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-08T16:24:00Z</dc:date>
    </item>
    <item>
      <title>Re: Call screen from report program to bring back data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-screen-from-report-program-to-bring-back-data/m-p/1566860#M256069</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What you are trying to do is not really supported in ABAP.  You can use ABAP to achieve this, but it will not pass these values back to you from CAL TRANSACTION automatically.  If you have control over the program in which is being fired from CALL TRANSACTION, meaning, it is custom and you can put code in it, you can use the IMPORT/EXPORT statements to put the data in the transactoin in memory, then IMPORT it into your report program after the CALL TRANSACTION,  this would be the only way to get the data from the called program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can get certain things from the messages in the CALL TRANSACTION statement, like if creating a sales order, you will usually find the sales document number in the messages.&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;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 08 Oct 2006 16:33:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-screen-from-report-program-to-bring-back-data/m-p/1566860#M256069</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-10-08T16:33:00Z</dc:date>
    </item>
    <item>
      <title>Re: Call screen from report program to bring back data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-screen-from-report-program-to-bring-back-data/m-p/1566861#M256070</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Okay. You are probably 100% correct, however let me bounce this off of you. Tell me if this makes sense...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What if I went the other way with BDCDATA-FVAL = FVAL in my bdc code and provided BDCDATA-FNAM = FNAM. could this be used to fetch and hold the screen field that I am after.  Then I can put it into memory?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So... use BDCDATA-FNAM = FNAM to point to the field and&lt;/P&gt;&lt;P&gt;      use FVAL=BDCDATA-FVAL to capture the value.&lt;/P&gt;&lt;P&gt;      use FVAL to export to memory.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your help!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Jason&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 08 Oct 2006 16:45:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-screen-from-report-program-to-bring-back-data/m-p/1566861#M256070</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-08T16:45:46Z</dc:date>
    </item>
    <item>
      <title>Re: Call screen from report program to bring back data</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-screen-from-report-program-to-bring-back-data/m-p/1566862#M256071</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No, i doesn't work like that.  THE BDCDATA is only used to specify what the screen sequence is and what fields to fill in, it is one directional.  The only values that may be passed back to you will be in the form of messages in the MESSAGES into MessTab extension of the call transaction.  Again, these values will usually be the object(example sales document number).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 08 Oct 2006 18:37:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-screen-from-report-program-to-bring-back-data/m-p/1566862#M256071</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-10-08T18:37:56Z</dc:date>
    </item>
  </channel>
</rss>

