<?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 Callind second screen using interactive ALV. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/callind-second-screen-using-interactive-alv/m-p/12185790#M1980277</link>
    <description>&lt;P&gt;how to pass default table name into second screen in se16.&lt;/P&gt;
  &lt;P&gt;WHEN 'tablename'.&lt;BR /&gt;READ TABLE it_tab INTO wa_tab INDEX selfield-tabindex.&lt;BR /&gt;SET PARAMETER ID 'DFD' FIELD wa_tab-tablename.&lt;/P&gt;
  &lt;P&gt;CALL TRANSACTION 'SE16' AND SKIP FIRST SCREEN.&lt;/P&gt;
  &lt;P&gt; when I double click on the table name it should take me to the display of &lt;STRONG&gt;&lt;U&gt;second screen&lt;/U&gt;&lt;/STRONG&gt; of SE16 transaction (Selection screen of SE16 for giving values to the table fields)&lt;/P&gt;</description>
    <pubDate>Mon, 04 May 2020 07:03:03 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2020-05-04T07:03:03Z</dc:date>
    <item>
      <title>Callind second screen using interactive ALV.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/callind-second-screen-using-interactive-alv/m-p/12185790#M1980277</link>
      <description>&lt;P&gt;how to pass default table name into second screen in se16.&lt;/P&gt;
  &lt;P&gt;WHEN 'tablename'.&lt;BR /&gt;READ TABLE it_tab INTO wa_tab INDEX selfield-tabindex.&lt;BR /&gt;SET PARAMETER ID 'DFD' FIELD wa_tab-tablename.&lt;/P&gt;
  &lt;P&gt;CALL TRANSACTION 'SE16' AND SKIP FIRST SCREEN.&lt;/P&gt;
  &lt;P&gt; when I double click on the table name it should take me to the display of &lt;STRONG&gt;&lt;U&gt;second screen&lt;/U&gt;&lt;/STRONG&gt; of SE16 transaction (Selection screen of SE16 for giving values to the table fields)&lt;/P&gt;</description>
      <pubDate>Mon, 04 May 2020 07:03:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/callind-second-screen-using-interactive-alv/m-p/12185790#M1980277</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2020-05-04T07:03:03Z</dc:date>
    </item>
    <item>
      <title>Re: Callind second screen using interactive ALV.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/callind-second-screen-using-interactive-alv/m-p/12185791#M1980278</link>
      <description>&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;You cannot skip two screens.  However, you can manage it using BDC.. as below:&lt;/P&gt;&lt;P&gt;Declare BDC variables&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA:
  gs_options    TYPE ctu_params,
  gs_bdcdata    TYPE bdcdata,
  gt_bdcdata    TYPE bdcdata_tab.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Assign BDC session&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;  gs_bdcdata-dynbegin = 'T'.
  gs_bdcdata-fnam     = 'SE16'.
  APPEND gs_bdcdata TO gt_bdcdata.
*
  CLEAR: gs_bdcdata.
  gs_bdcdata-program  = 'SAPLSETB'.
  gs_bdcdata-dynpro   = '0230'.
  gs_bdcdata-dynbegin = 'X'.
  APPEND gs_bdcdata TO gt_bdcdata.
*
  CLEAR: gs_bdcdata.
  gs_bdcdata-fnam     = 'DATABROWSE-TABLENAME'.
  gs_bdcdata-fval     = your variable goes here.
  APPEND gs_bdcdata TO gt_bdcdata.
  CLEAR: gs_bdcdata.
  gs_bdcdata-fnam     = 'BDC_OKCODE'.
  gs_bdcdata-fval     = '=ANZE'.
  APPEND gs_bdcdata TO gt_bdcdata.
*
  CLEAR: gs_bdcdata.
  gs_bdcdata-program  = '/1BCDWB/DBKNB1'.
  gs_bdcdata-dynpro   = '1000'.
  gs_bdcdata-dynbegin = 'X'.
  APPEND gs_bdcdata TO gt_bdcdata.
*
  CLEAR: gs_bdcdata.
  gs_bdcdata-fnam     = 'I2-LOW'.
  gs_bdcdata-fval     = p_bukrs.
  APPEND gs_bdcdata TO gt_bdcdata.
  CLEAR: gs_bdcdata.
  gs_bdcdata-fnam     = 'BDC_OKCODE'.
  gs_bdcdata-fval     = '=ONLI'.
  APPEND gs_bdcdata TO gt_bdcdata.


&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;and call the transaction&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;  gs_options-dismode = 'E'.
  gs_options-updmode = 'S'.

  CALL TRANSACTION 'SE16' USING gt_bdcdata
                          OPTIONS FROM gs_options.
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 04 May 2020 07:34:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/callind-second-screen-using-interactive-alv/m-p/12185791#M1980278</guid>
      <dc:creator>venkateswaran_k</dc:creator>
      <dc:date>2020-05-04T07:34:56Z</dc:date>
    </item>
    <item>
      <title>Re: Callind second screen using interactive ALV.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/callind-second-screen-using-interactive-alv/m-p/12185792#M1980279</link>
      <description>&lt;P&gt;Hmm, the screen information says that the field "table name" is assigned the following parameter ID:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DTB&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Why do you use DFD?&lt;/P&gt;&lt;P&gt;The following code works for me, it displays the screen containing the list of fields of DD04L:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SET PARAMETER ID 'DTB' FIELD 'DD04L'.
CALL TRANSACTION 'SE16' AND SKIP FIRST SCREEN.
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Mon, 04 May 2020 12:22:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/callind-second-screen-using-interactive-alv/m-p/12185792#M1980279</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2020-05-04T12:22:08Z</dc:date>
    </item>
  </channel>
</rss>

