<?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: Interactive report output help needed.. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-report-output-help-needed/m-p/11043416#M1899431</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Andres,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the replay.But issue is....&lt;/P&gt;&lt;P&gt;That calling transaction code is a module pool program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ajit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 15 Apr 2015 09:41:40 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2015-04-15T09:41:40Z</dc:date>
    <item>
      <title>Interactive report output help needed..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-report-output-help-needed/m-p/11043414#M1899429</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have the below requirement......&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am display the report output with REUSE_ALV_GRID_DISPLAY. In my output I have 10 columns and notification number is one column from 10 columns.&lt;/P&gt;&lt;P&gt;My requirement is that, when user will click on notification number, I am calling a custom transaction code.In that Tcode notification number field is present. So user want, the notification number which he/she clicked on report output,that should display on notification number field of custom transaction code.&lt;/P&gt;&lt;P&gt;My problem is, i am getting my clicked notification number from report output.But without changing in custom transaction code, is it possible to display the notification number in the notification number field of that custom transaction code ????&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think, its not possible that without writing code in that custom transaction code program,we can not display. But if you have any suggestion that it can possible, then please let me know asap ....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ajit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Apr 2015 21:39:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-report-output-help-needed/m-p/11043414#M1899429</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2015-04-14T21:39:00Z</dc:date>
    </item>
    <item>
      <title>Re: Interactive report output help needed..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-report-output-help-needed/m-p/11043415#M1899430</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I see two options:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) Via Parameter ID: the Data Element of your notification number field must have a Parameter ID defined. Then, from your program you can set it before calling the custom transaction:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
&lt;P&gt;SET PARAMETER ID '&amp;lt;PARAMETER ID NAME&amp;gt;' FIELD lv_notification_number.&lt;/P&gt;
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) If the custom transaction is a report, you can use SUBMIT instead of CALL TRANSACTION:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
&lt;P&gt;&lt;SPAN class="L0S52"&gt;SUBMIT your_custom_program WITH &lt;/SPAN&gt;p_notnbr &lt;SPAN class="L0S52"&gt;EQ lv_notification_number&lt;/SPAN&gt;&lt;/P&gt;
&lt;P&gt;&lt;SPAN class="L0S52"&gt;&lt;/SPAN&gt;&lt;SPAN class="L0S52" style="font-size: 10pt;"&gt;AND &lt;/SPAN&gt;&lt;SPAN class="L0S52" style="font-size: 10pt;"&gt;RETURN&lt;/SPAN&gt;&lt;SPAN class="L0S55" style="font-size: 10pt;"&gt;.&lt;/SPAN&gt;&lt;/P&gt;
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In both options, you do not have to modify your custom program that's being called from your report. Option 1 will have you modify the data element, provided it's a custom one, but that won't have a negative effect on the code itself.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Andres.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 14 Apr 2015 22:21:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-report-output-help-needed/m-p/11043415#M1899430</guid>
      <dc:creator>andrs_sarcevic</dc:creator>
      <dc:date>2015-04-14T22:21:49Z</dc:date>
    </item>
    <item>
      <title>Re: Interactive report output help needed..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-report-output-help-needed/m-p/11043416#M1899431</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Andres,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for the replay.But issue is....&lt;/P&gt;&lt;P&gt;That calling transaction code is a module pool program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ajit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Apr 2015 09:41:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-report-output-help-needed/m-p/11043416#M1899431</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2015-04-15T09:41:40Z</dc:date>
    </item>
    <item>
      <title>Re: Interactive report output help needed..</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-report-output-help-needed/m-p/11043417#M1899432</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ajit,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Adding to what Andreas suggested above, i think it would be wise to use parameter ID.&lt;/P&gt;&lt;P&gt;From the calling program, set the parameter ID as he indicated. You may also need to create a parameter ID for the notification number in the table TPARA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, declare the type of the number in the module pool screen of the type of notification number. In case it is not getting populated, then explicitly use GET PARAMETER ID statement to read the value and assign it to the screen field in the PBO of your module pool screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please confirm if this doesn't work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Anupam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Apr 2015 10:11:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-report-output-help-needed/m-p/11043417#M1899432</guid>
      <dc:creator>anupam_anand</dc:creator>
      <dc:date>2015-04-15T10:11:51Z</dc:date>
    </item>
  </channel>
</rss>

