<?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 Interactive ALV...user Command routine in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-alv-user-command-routine/m-p/3549557#M853987</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;From the ALV report, I am Double clicking on Sales order Docuemt(VA02), It is taking me to va02 transaction.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am writing like&lt;/P&gt;&lt;P&gt; CALL TRANSACTION 'VA02' AND SKIP FIRST SCREEN.&lt;/P&gt;&lt;P&gt;But When ever I double click One information popup coming with 'Consider the subsequent documents', When ever i click on Enter , then it is entering into second screen.... here I want handle this popup ...I want to enter directly into the second screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Ajay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 20 Mar 2008 14:44:18 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-03-20T14:44:18Z</dc:date>
    <item>
      <title>Interactive ALV...user Command routine</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-alv-user-command-routine/m-p/3549557#M853987</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;From the ALV report, I am Double clicking on Sales order Docuemt(VA02), It is taking me to va02 transaction.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am writing like&lt;/P&gt;&lt;P&gt; CALL TRANSACTION 'VA02' AND SKIP FIRST SCREEN.&lt;/P&gt;&lt;P&gt;But When ever I double click One information popup coming with 'Consider the subsequent documents', When ever i click on Enter , then it is entering into second screen.... here I want handle this popup ...I want to enter directly into the second screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Ajay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Mar 2008 14:44:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-alv-user-command-routine/m-p/3549557#M853987</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-20T14:44:18Z</dc:date>
    </item>
    <item>
      <title>Re: Interactive ALV...user Command routine</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-alv-user-command-routine/m-p/3549558#M853988</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Before you CALL TRANSACTION, are you Using code like this for the necessary input fields?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
SET PARAMETER ID 'AUN' FIELD p_selfield-value.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Mar 2008 15:13:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-alv-user-command-routine/m-p/3549558#M853988</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-20T15:13:43Z</dc:date>
    </item>
    <item>
      <title>Re: Interactive ALV...user Command routine</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-alv-user-command-routine/m-p/3549559#M853989</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Maybe not the most elegant way to do this but here is an solution to skip the message "Subsequent documents exist": &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
data: bdcdata_tab type BDCDATA occurs 0,
      bdcdata_wa  TYPE bdcdata,
      bdc_options type ctu_params.

CLEAR bdcdata_wa.
bdcdata_wa-program  = 'SAPMV45A'.
bdcdata_wa-dynpro   = '0102'.
bdcdata_wa-dynbegin = 'X'.
APPEND bdcdata_wa TO bdcdata_tab.

CLEAR bdcdata_wa.
bdcdata_wa-fnam = 'VBAK-VBELN'.
bdcdata_wa-fval = SALES_ORDER_NUMBER.
APPEND bdcdata_wa TO bdcdata_tab.

CLEAR bdcdata_wa.
bdcdata_wa-fnam = 'BDC_OKCODE'.
bdcdata_wa-fval = '=UER2'.
APPEND bdcdata_wa TO bdcdata_tab.

clear bdc_options.
bdc_options-dismode = 'E'.
bdc_options-NOBINPT = 'X'.  "NOTE THIS!!

call TRANSACTION 'VA02' using bdcdata_tab options from bdc_options.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Mar 2008 19:31:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/interactive-alv-user-command-routine/m-p/3549559#M853989</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-20T19:31:20Z</dc:date>
    </item>
  </channel>
</rss>

