<?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 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction/m-p/3798585#M913551</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;we are using set parameter id for calling that particular transaction, we cannot use recording for our requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you have any idea regarding set parameter id..?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Prashanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 16 May 2008 13:10:48 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-05-16T13:10:48Z</dc:date>
    <item>
      <title>Call transaction</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction/m-p/3798582#M913548</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;&lt;/P&gt;&lt;P&gt;Im just facing an issue regarding call transaction, its like this&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My output is alv display, Im using Set pf status..in my output i should display vendor number &amp;amp; vendor name, when i double click on vendor number it should get into the transaction MK03 with the same vendor number clicked on the screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;amp; at the same time when i click on the vendor name it should skip the first screen ( &lt;STRONG&gt;for that i used call transaction 'mk03' and skip first screeen&lt;/STRONG&gt;)  and display the name.. its not working in this case as when i use call transaction 'MK03' and skip first screen its giving an error 'SELECT ATLEAST ONE PROCESSING OPTION' on the first screen (the checkbox address has to be checked on the screen to go further and skip the screen) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how can i do that for automatically checking the address &lt;/P&gt;&lt;P&gt;checkbox and going into the next screen?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Prashanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 May 2008 12:47:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction/m-p/3798582#M913548</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-16T12:47:22Z</dc:date>
    </item>
    <item>
      <title>Re: Call transaction</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction/m-p/3798583#M913549</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You need to use the BDC table, just map the fields in transaction &lt;STRONG&gt;SHDB&lt;/STRONG&gt;. And then fill and pass the table in the call transaction command.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here an example:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA class_name TYPE c LENGTH 30 VALUE 'CL_SPFLI_PERSISTENT'. 

DATA: bdcdata_wa  TYPE bdcdata, 
      bdcdata_tab TYPE TABLE OF bdcdata. 

DATA opt TYPE ctu_params. 

CLEAR bdcdata_wa. 
bdcdata_wa-program  = 'SAPLSEOD'. 
bdcdata_wa-dynpro   = '1000'. 
bdcdata_wa-dynbegin = 'X'. 
APPEND bdcdata_wa TO bdcdata_tab. 

CLEAR bdcdata_wa. 
bdcdata_wa-fnam = 'BDC_CURSOR'. 
bdcdata_wa-fval = 'SEOCLASS-CLSNAME'. 
APPEND bdcdata_wa TO bdcdata_tab. 

CLEAR bdcdata_wa. 
bdcdata_wa-fnam = 'SEOCLASS-CLSNAME'. 
bdcdata_wa-fval = class_name. 
APPEND bdcdata_wa TO bdcdata_tab. 

CLEAR bdcdata_wa. 
bdcdata_wa-fnam = 'BDC_OKCODE'. 
bdcdata_wa-fval = '=CIDI'. 
APPEND bdcdata_wa TO bdcdata_tab. 

opt-dismode = 'E'. 
opt-defsize = 'X'. 

CALL TRANSACTION 'SE24' USING bdcdata_tab OPTIONS FROM opt. 
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 May 2008 13:02:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction/m-p/3798583#M913549</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-16T13:02:34Z</dc:date>
    </item>
    <item>
      <title>Re: Call transaction</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction/m-p/3798584#M913550</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Prashanth,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can set this check box by setting value 'X' in the Parameter ID 'KDY'  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try this before you code the call transaction&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
data : chk_address like KRED-AUSWL.
chk_addres = 'X'.
SET PARAMETER ID 'KDY' FIELD chk_address.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;also set the vendor number, assuming u are doing this already &lt;/P&gt;&lt;P&gt;then &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
call transaction 'MK03' and skip first screen
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please reward points if the answer is helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Advait&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 May 2008 13:09:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction/m-p/3798584#M913550</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-16T13:09:12Z</dc:date>
    </item>
    <item>
      <title>Re: Call transaction</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction/m-p/3798585#M913551</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;we are using set parameter id for calling that particular transaction, we cannot use recording for our requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you have any idea regarding set parameter id..?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Prashanth&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 May 2008 13:10:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction/m-p/3798585#M913551</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-16T13:10:48Z</dc:date>
    </item>
    <item>
      <title>Re: Call transaction</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction/m-p/3798586#M913552</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;i'm sorry I gave you the wrong value for the parameter id KDY&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try this :&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA : chk_address(50) TYPE c VALUE '/111'.

SET PARAMETER ID 'KDY' FIELD chk_address.
SET PARAMETER ID 'LIF' FIELD (your vendor number here ).

CALL TRANSACTION 'MK03' AND SKIP FIRST SCREEN.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it worked for me &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 May 2008 13:22:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction/m-p/3798586#M913552</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-16T13:22:20Z</dc:date>
    </item>
  </channel>
</rss>

