<?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: CALL TRANSACTION issue in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-issue/m-p/9794082#M1778874</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Martin,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I suggest that you clear the WRK Parameter ID before you call MB52. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You may insert this code before the Call Transaction&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: g_werks TYPE werks_d.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLEAR: g_werks.&lt;/P&gt;&lt;P&gt;SET PARAMETER ID 'WRK' FIELD g_werks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Peter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 26 Sep 2013 11:56:45 GMT</pubDate>
    <dc:creator>peter_ruiz2</dc:creator>
    <dc:date>2013-09-26T11:56:45Z</dc:date>
    <item>
      <title>CALL TRANSACTION issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-issue/m-p/9794079#M1778871</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi there, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have a ALV with a link where i can 'JUMP' into transaction MB52. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am using CALL TRANSACTION for that issue:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&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;&amp;nbsp;&amp;nbsp;&amp;nbsp; SET PARAMETER ID 'MAT' FIELD gt_alv_out-matnr.&lt;/P&gt;&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CALL TRANSACTION 'MB52' AND SKIP FIRST SCREEN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;Now to my problem: i set the field matnr for the selection screen out of the alv-line. ALL OTHER selection fields have to be EMPTY ! &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;BUT: sometimes a parameter-id for another field (e.g. WRK for plant) is set. so the call transaction is called with matnr AND plant,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;which is wrong ! &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;how can i avoid that the call transaction is done with filled parameter-id's ? of course, i can do call transaction with variant XXX, but &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;there i cannot set the matnr. &lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;br, Martin &lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Sep 2013 11:48:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-issue/m-p/9794079#M1778871</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-09-26T11:48:55Z</dc:date>
    </item>
    <item>
      <title>Re: CALL TRANSACTION issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-issue/m-p/9794080#M1778872</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;TRY&lt;/P&gt;&lt;P&gt;SET PARAMETER ID 'WRK' FIELD SPACE.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Sep 2013 11:52:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-issue/m-p/9794080#M1778872</guid>
      <dc:creator>PeterJonker</dc:creator>
      <dc:date>2013-09-26T11:52:51Z</dc:date>
    </item>
    <item>
      <title>Re: CALL TRANSACTION issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-issue/m-p/9794081#M1778873</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Peter,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;well, i have thought about that. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But the selection screen has MANY fields. so i will have to set it for every single field ? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there no other way ? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;br, Martin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Sep 2013 11:55:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-issue/m-p/9794081#M1778873</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-09-26T11:55:53Z</dc:date>
    </item>
    <item>
      <title>Re: CALL TRANSACTION issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-issue/m-p/9794082#M1778874</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Martin,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I suggest that you clear the WRK Parameter ID before you call MB52. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You may insert this code before the Call Transaction&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: g_werks TYPE werks_d.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLEAR: g_werks.&lt;/P&gt;&lt;P&gt;SET PARAMETER ID 'WRK' FIELD g_werks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Peter&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Sep 2013 11:56:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-issue/m-p/9794082#M1778874</guid>
      <dc:creator>peter_ruiz2</dc:creator>
      <dc:date>2013-09-26T11:56:45Z</dc:date>
    </item>
    <item>
      <title>Re: CALL TRANSACTION issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-issue/m-p/9794083#M1778875</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;set all fields with PARAMETER IDs to initial values.&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;Klaus&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Sep 2013 11:57:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-issue/m-p/9794083#M1778875</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-09-26T11:57:10Z</dc:date>
    </item>
    <item>
      <title>Re: CALL TRANSACTION issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-issue/m-p/9794084#M1778876</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;&amp;nbsp; As there are 4 variables for which system takes the values by Get Paramater ID in MB52, it will be better if you set MATNR value for 'MAT' and keep other blank, 'WRK', 'lag', 'cha''.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;SELECTION-SCREEN &lt;SPAN class="L0S52"&gt;BEGIN &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;OF &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;BLOCK &lt;/SPAN&gt;abgrenzung &lt;SPAN class="L0S52"&gt;WITH &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;FRAME &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;TITLE &lt;/SPAN&gt;text-001.&lt;BR /&gt;&lt;BR /&gt;SELECT-OPTIONS:&lt;BR /&gt;&amp;nbsp; matnr&amp;nbsp; &lt;SPAN class="L0S52"&gt;FOR &lt;/SPAN&gt;mara-matnr &lt;SPAN class="L0S52"&gt;MEMORY &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;ID &lt;/SPAN&gt;mat &lt;SPAN class="L0S52"&gt;MATCHCODE &lt;/SPAN&gt;OBJECT mat1,&lt;BR /&gt;&amp;nbsp; werks&amp;nbsp; &lt;SPAN class="L0S52"&gt;FOR &lt;/SPAN&gt;t001l-werks&amp;nbsp; &lt;SPAN class="L0S52"&gt;MEMORY &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;ID &lt;/SPAN&gt;wrk,&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S31"&gt;"718285&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp; lgort&amp;nbsp; &lt;SPAN class="L0S52"&gt;FOR &lt;/SPAN&gt;t001l-lgort&amp;nbsp; &lt;SPAN class="L0S52"&gt;MEMORY &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;ID &lt;/SPAN&gt;lag,&lt;BR /&gt;&amp;nbsp; charg&amp;nbsp; &lt;SPAN class="L0S52"&gt;FOR &lt;/SPAN&gt;mchb-charg&amp;nbsp; &lt;SPAN class="L0S52"&gt;MEMORY &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;ID &lt;/SPAN&gt;cha &lt;SPAN class="L0S52"&gt;MATCHCODE &lt;/SPAN&gt;OBJECT mch1.&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN class="L0S52"&gt;SELECTION-SCREEN &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;END &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;OF &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;BLOCK &lt;/SPAN&gt;abgrenzung.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;Zafar&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Sep 2013 12:07:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-issue/m-p/9794084#M1778876</guid>
      <dc:creator>former_member182379</dc:creator>
      <dc:date>2013-09-26T12:07:19Z</dc:date>
    </item>
    <item>
      <title>Re: CALL TRANSACTION issue</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-issue/m-p/9794085#M1778877</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Zafar, i have set the 3 other fields to blank &lt;SPAN __jive_emoticon_name="happy" __jive_macro_name="emoticon" class="jive_macro jive_emote" src="https://community.sap.com/1826/images/emoticons/happy.gif"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 26 Sep 2013 13:00:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction-issue/m-p/9794085#M1778877</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-09-26T13:00:33Z</dc:date>
    </item>
  </channel>
</rss>

