<?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 ALV button Call Up Report OK_CODE &amp;EB9 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-button-call-up-report-ok-code-eb9/m-p/6148647#M1368094</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What does ALV button Call Up Report OK_CODE &amp;amp;EB9 do? I can find no documentation on it and I have no clue what it does. Any information on this would be great thank you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 08 Sep 2009 14:19:28 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-09-08T14:19:28Z</dc:date>
    <item>
      <title>ALV button Call Up Report OK_CODE &amp;EB9</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-button-call-up-report-ok-code-eb9/m-p/6148647#M1368094</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What does ALV button Call Up Report OK_CODE &amp;amp;EB9 do? I can find no documentation on it and I have no clue what it does. Any information on this would be great thank you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Sep 2009 14:19:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-button-call-up-report-ok-code-eb9/m-p/6148647#M1368094</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-08T14:19:28Z</dc:date>
    </item>
    <item>
      <title>Re: ALV button Call Up Report OK_CODE &amp;EB9</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-button-call-up-report-ok-code-eb9/m-p/6148648#M1368095</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;seems that the icon is ICON_TABLE_SETTINGS. dont think that has any relevance to its functionality&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 08 Sep 2009 16:14:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-button-call-up-report-ok-code-eb9/m-p/6148648#M1368095</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-09-08T16:14:49Z</dc:date>
    </item>
    <item>
      <title>Re: ALV button Call Up Report OK_CODE &amp;EB9</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-button-call-up-report-ok-code-eb9/m-p/6148649#M1368096</link>
      <description>&lt;P&gt;HI&lt;/P&gt;&lt;P&gt;The icon is part of the "BRST Report to report interface" functionality.&lt;/P&gt;&lt;P&gt;The use can be set by customizing and in some applications, for example SAP Query.&lt;/P&gt;&lt;P&gt;The basic tables are TRSTI/TRSTT&lt;/P&gt;&lt;P&gt;Allows you to run reports or transactions from within a report.&lt;/P&gt;&lt;P&gt;To load tables you can use:&lt;/P&gt;&lt;P&gt;FORM start_brst_tool .&lt;/P&gt;&lt;P&gt;*------------------------------------------------- -------------------*&lt;/P&gt;&lt;P&gt;* BRST Report to report interface&lt;/P&gt;&lt;P&gt;* Tab. TRSTI/TRSTT&lt;/P&gt;&lt;P&gt;* Creation of reports to Call&lt;/P&gt;&lt;P&gt;* Reports chosen with &amp;amp;EB9&lt;/P&gt;&lt;P&gt;*------------------------------------------------- -------------------*&lt;/P&gt;&lt;P&gt;   DATA ls_report TYPE rstirec.&lt;/P&gt;&lt;P&gt;*------------------------------------------------- -------------------*&lt;/P&gt;&lt;P&gt;   ls_report-rtool = 'RT'. "ABAP/4 reports&lt;/P&gt;&lt;P&gt;   ls_report-ronam = sy-repid.&lt;/P&gt;&lt;P&gt;   CALL FUNCTION 'RSTI_REPORT_ADD'&lt;/P&gt;&lt;P&gt;     EXPORTING&lt;/P&gt;&lt;P&gt;       e_fccls = '9'&lt;/P&gt;&lt;P&gt;       e_report = ls_report&lt;/P&gt;&lt;P&gt;     EXCEPTIONS&lt;/P&gt;&lt;P&gt;       no_authority = 1&lt;/P&gt;&lt;P&gt;       wrong_function_call = 2&lt;/P&gt;&lt;P&gt;       foreign_lock = 3&lt;/P&gt;&lt;P&gt;       OTHERS = 4.&lt;/P&gt;&lt;P&gt;   IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;   ENDIF.&lt;/P&gt;&lt;P&gt;ENDFORM.&lt;/P&gt;&lt;P&gt;Then you can use "&amp;amp;EB9" as it is or in the "&amp;amp;IC1":&lt;/P&gt;&lt;P&gt;FORM user_command_ic1 USING ps_selfield TYPE slis_selfield&lt;/P&gt;&lt;P&gt;                    CHANGING f_ucomm TYPE syucomm.&lt;/P&gt;&lt;P&gt;   DATA ls_alv TYPE ty_alv.&lt;/P&gt;&lt;P&gt;*------------------------------------------------- -------------------*&lt;/P&gt;&lt;P&gt;   READ TABLE gt_alv INTO ls_alv INDEX ps_selfield-tabindex.&lt;/P&gt;&lt;P&gt;   CASE ps_selfield-fieldname.&lt;/P&gt;&lt;P&gt;     WHEN 'LIPS_VBELN'.&lt;/P&gt;&lt;P&gt;       IF ls_alv-lips_vbeln IS NOT INITIAL.&lt;/P&gt;&lt;P&gt;         SET PARAMETER ID 'VL' FIELD ls_alv-lips_vbeln.&lt;/P&gt;&lt;P&gt;         CALL TRANSACTION 'VL03N' AND SKIP FIRST SCREEN.&lt;/P&gt;&lt;P&gt;       ENDIF.&lt;/P&gt;&lt;P&gt;     WHEN 'VBBE_VBELN'.&lt;/P&gt;&lt;P&gt;       IF ls_alv-vbbe_vbeln IS NOT INITIAL.&lt;/P&gt;&lt;P&gt;         f_ucomm = '&amp;amp;EB9'.&lt;/P&gt;&lt;P&gt;         SET PARAMETER ID 'AUN' FIELD ls_alv-vbbe_vbeln.&lt;/P&gt;&lt;P&gt;         SET PARAMETER ID 'VST' FIELD ls_alv-vbap_vstel.&lt;/P&gt;&lt;P&gt;       ENDIF.&lt;/P&gt;&lt;P&gt;   ENDCASE.&lt;/P&gt;&lt;P&gt;ENDFORM. " USER_COMMAND_IC1&lt;/P&gt;You can * BRST Report to report interface&lt;BR /&gt;* Tab. TRSTI/TRSTT&lt;BR /&gt;* Creazione dei report da Chiamare&lt;BR /&gt;* Report scelti con &amp;amp;EB9&lt;BR /&gt;</description>
      <pubDate>Sat, 25 Feb 2023 15:47:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-button-call-up-report-ok-code-eb9/m-p/6148649#M1368096</guid>
      <dc:creator>fabriziofazi2</dc:creator>
      <dc:date>2023-02-25T15:47:51Z</dc:date>
    </item>
  </channel>
</rss>

