<?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: Passing parameter from my custom program to standard Include in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/passing-parameter-from-my-custom-program-to-standard-include/m-p/9993277#M1803541</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Shyam,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm capturing the reference doc number in a variable and calling the KE5Z transaction&lt;/P&gt;&lt;P&gt;as shown below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;SET &lt;SPAN class="L0S52"&gt;PARAMETER &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;ID &lt;/SPAN&gt;&lt;SPAN class="L0S33"&gt;'VF' &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;FIELD v&lt;/SPAN&gt;_refdocnr&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&lt;SPAN class="L0S52"&gt;CALL &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;TRANSACTION &lt;/SPAN&gt;&lt;SPAN class="L0S33"&gt;'KE5Z' &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;AND &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;SKIP &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;FIRST &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;SCREEN&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;&lt;SPAN class="L0S55"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;&lt;SPAN class="L0S55"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;&lt;SPAN class="L0S55"&gt;Regards,&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;&lt;SPAN class="L0S55"&gt;Faiz&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 20 Jan 2014 11:32:03 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2014-01-20T11:32:03Z</dc:date>
    <item>
      <title>Passing parameter from my custom program to standard Include</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/passing-parameter-from-my-custom-program-to-standard-include/m-p/9993272#M1803536</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;BR /&gt;Hi All,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have creted an ALV report which displays data from GLPCA ,MARA and some other tables. Now my requirement is that when the user clicks the refdocnr or document number field in the ALV then&amp;nbsp; he will be taken to the overview of billing item screen .( The same feature is there in transaction KE5Z) .&lt;/P&gt;&lt;P&gt;I have already captured the document number using the hotspot click event but I need not&amp;nbsp; pass it to KE5Z's initial screen. instead I have to pass it to the place where the interactive feature of KE5Z begins.&lt;/P&gt;&lt;P&gt;After debugging I have found out that this interactive feature is written within the include LSLVC_FULLSCREENI01.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How do I call pass the document number from my custom ALV to this include LSLVC_FULLSCREENI01????&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Faiz&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Jan 2014 09:37:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/passing-parameter-from-my-custom-program-to-standard-include/m-p/9993272#M1803536</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-01-20T09:37:10Z</dc:date>
    </item>
    <item>
      <title>Re: Passing parameter from my custom program to standard Include</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/passing-parameter-from-my-custom-program-to-standard-include/m-p/9993273#M1803537</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Use set the parameter of fields and call the transaction .&lt;/P&gt;&lt;P&gt;It will take you to the screen.&lt;/P&gt;&lt;P&gt;like:&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;IF &lt;/SPAN&gt;selfield&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;fieldname &lt;SPAN class="L0S55"&gt;= &lt;/SPAN&gt;&lt;SPAN class="L0S33"&gt;'LIFNR'&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;SET &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;PARAMETER &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;ID &lt;/SPAN&gt;&lt;SPAN class="L0S33"&gt;'LIF' &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;FIELD &lt;/SPAN&gt;wa_VEN&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;lifnr&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;set &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;PARAMETER &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;ID &lt;/SPAN&gt;&lt;SPAN class="L0S33"&gt;'BUK' &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;FIELD &lt;/SPAN&gt;wa_VEN&lt;SPAN class="L0S70"&gt;-&lt;/SPAN&gt;bukrs&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;CALL &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;TRANSACTION &lt;/SPAN&gt;&lt;SPAN class="L0S33"&gt;'FBL1N' &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;AND &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;SKIP &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;FIRST &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;SCREEN&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;ENDIF&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Neeraj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Jan 2014 09:51:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/passing-parameter-from-my-custom-program-to-standard-include/m-p/9993273#M1803537</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-01-20T09:51:02Z</dc:date>
    </item>
    <item>
      <title>Re: Passing parameter from my custom program to standard Include</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/passing-parameter-from-my-custom-program-to-standard-include/m-p/9993274#M1803538</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Neeraj,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have done that already but it is not working. Therefore im trying to pass the parameters&lt;/P&gt;&lt;P&gt;directly to the include mentioned in my original mail.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Faiz &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Jan 2014 10:00:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/passing-parameter-from-my-custom-program-to-standard-include/m-p/9993274#M1803538</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-01-20T10:00:56Z</dc:date>
    </item>
    <item>
      <title>Re: Passing parameter from my custom program to standard Include</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/passing-parameter-from-my-custom-program-to-standard-include/m-p/9993275#M1803539</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what tcode you are trying to call and what parametres yor are passing.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Jan 2014 10:04:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/passing-parameter-from-my-custom-program-to-standard-include/m-p/9993275#M1803539</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-01-20T10:04:42Z</dc:date>
    </item>
    <item>
      <title>Re: Passing parameter from my custom program to standard Include</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/passing-parameter-from-my-custom-program-to-standard-include/m-p/9993276#M1803540</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Faiz,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What Neeraj has suggested should work.&lt;/P&gt;&lt;P&gt;Can you please tell which TCode you are trying to call.&lt;/P&gt;&lt;P&gt;Also, please provide your code so that we can see if something is missing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Warm Regards,&lt;/P&gt;&lt;P&gt;Shyam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Jan 2014 11:17:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/passing-parameter-from-my-custom-program-to-standard-include/m-p/9993276#M1803540</guid>
      <dc:creator>former_member207661</dc:creator>
      <dc:date>2014-01-20T11:17:01Z</dc:date>
    </item>
    <item>
      <title>Re: Passing parameter from my custom program to standard Include</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/passing-parameter-from-my-custom-program-to-standard-include/m-p/9993277#M1803541</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Shyam,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm capturing the reference doc number in a variable and calling the KE5Z transaction&lt;/P&gt;&lt;P&gt;as shown below.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;SET &lt;SPAN class="L0S52"&gt;PARAMETER &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;ID &lt;/SPAN&gt;&lt;SPAN class="L0S33"&gt;'VF' &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;FIELD v&lt;/SPAN&gt;_refdocnr&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp; &lt;BR /&gt;&lt;SPAN class="L0S52"&gt;CALL &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;TRANSACTION &lt;/SPAN&gt;&lt;SPAN class="L0S33"&gt;'KE5Z' &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;AND &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;SKIP &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;FIRST &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;SCREEN&lt;/SPAN&gt;&lt;SPAN class="L0S55"&gt;.&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;&lt;SPAN class="L0S55"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;&lt;SPAN class="L0S55"&gt;&lt;/SPAN&gt;&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;&lt;SPAN class="L0S55"&gt;Regards,&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;&lt;SPAN class="L0S55"&gt;Faiz&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Jan 2014 11:32:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/passing-parameter-from-my-custom-program-to-standard-include/m-p/9993277#M1803541</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-01-20T11:32:03Z</dc:date>
    </item>
    <item>
      <title>Re: Passing parameter from my custom program to standard Include</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/passing-parameter-from-my-custom-program-to-standard-include/m-p/9993278#M1803542</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;is it not parm id BLN for ref Doc No?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Jan 2014 11:34:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/passing-parameter-from-my-custom-program-to-standard-include/m-p/9993278#M1803542</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-01-20T11:34:10Z</dc:date>
    </item>
    <item>
      <title>Re: Passing parameter from my custom program to standard Include</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/passing-parameter-from-my-custom-program-to-standard-include/m-p/9993279#M1803543</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;For BELNR the parameter id id BLN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Neeraj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Jan 2014 11:37:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/passing-parameter-from-my-custom-program-to-standard-include/m-p/9993279#M1803543</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-01-20T11:37:34Z</dc:date>
    </item>
    <item>
      <title>Re: Passing parameter from my custom program to standard Include</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/passing-parameter-from-my-custom-program-to-standard-include/m-p/9993280#M1803544</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Why dont you record a BDC till that place and passs&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 20 Jan 2014 11:47:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/passing-parameter-from-my-custom-program-to-standard-include/m-p/9993280#M1803544</guid>
      <dc:creator>nabheetscn</dc:creator>
      <dc:date>2014-01-20T11:47:23Z</dc:date>
    </item>
  </channel>
</rss>

