<?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: problem with call transaction in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-call-transaction/m-p/5900828#M1328019</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;solved&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 19 Dec 2009 03:46:52 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-12-19T03:46:52Z</dc:date>
    <item>
      <title>problem with call transaction</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-call-transaction/m-p/5900821#M1328012</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i am using call transaction function and use skip first screen but the first screen will not spiked.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i am using this one transaction code SU01.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt; CALL TRANSACTION  'SU01'  AND SKIP FIRST SCREEN. &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please solve this problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks,&lt;/P&gt;&lt;P&gt;Abhilash&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Jul 2009 07:11:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-call-transaction/m-p/5900821#M1328012</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-24T07:11:26Z</dc:date>
    </item>
    <item>
      <title>Re: problem with call transaction</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-call-transaction/m-p/5900822#M1328013</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;PRE&gt;&lt;CODE&gt;
set parameter id 'XUS' field 'USER_NAME'. &amp;lt;= set user name here
call transaction 'SU01' and skip first screen. 
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Jul 2009 07:15:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-call-transaction/m-p/5900822#M1328013</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-24T07:15:41Z</dc:date>
    </item>
    <item>
      <title>Re: problem with call transaction</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-call-transaction/m-p/5900823#M1328014</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt;The first screen will be skipped only if you specify some username to it.&lt;/P&gt;&lt;P&gt;SET the parameter id XUS with a particular username. Then only you will be able to skip teh first screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Else do a recording and use CALL TRANSACTION with the BDCDATA table and run in N mode till you reach the second screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ankur Parab&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Jul 2009 07:18:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-call-transaction/m-p/5900823#M1328014</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-24T07:18:01Z</dc:date>
    </item>
    <item>
      <title>Re: problem with call transaction</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-call-transaction/m-p/5900824#M1328015</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;&lt;/P&gt;&lt;P&gt;ya already i put this one code &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

DATA: F_SUBRC LIKE SY-SUBRC,
        S_DATA LIKE IT_DATA.

  READ TABLE IT_DATA INDEX P_SELFIELD-TABINDEX INTO S_DATA.


  CASE P_UCOMM.
    WHEN '&amp;amp;IC1'.
      CASE P_SELFIELD-SEL_TAB_FIELD.

        WHEN 'IT_DATA-BNAME'.
          IF S_DATA-BNAME NE ''.
            SET PARAMETER ID 'XUS' FIELD S_DATA-BNAME.
            CALL TRANSACTION  'SU01'  AND SKIP FIRST SCREEN.
          ENDIF.
      ENDCASE.
  ENDCASE.  &lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but the first screen is not skipped.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Abhilash on Jul 24, 2009 9:20 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Jul 2009 07:18:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-call-transaction/m-p/5900824#M1328015</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-24T07:18:46Z</dc:date>
    </item>
    <item>
      <title>Re: problem with call transaction</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-call-transaction/m-p/5900825#M1328016</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Abhilas,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SET PARAMETER ID 'XUS' FIELD p_user.&lt;/P&gt;&lt;P&gt;  CALL   TRANSACTION 'SU01' AND SKIP FIRST SCREEN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Jul 2009 07:19:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-call-transaction/m-p/5900825#M1328016</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-24T07:19:00Z</dc:date>
    </item>
    <item>
      <title>Re: problem with call transaction</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-call-transaction/m-p/5900826#M1328017</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;actually i am using this one in my report.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so i want to link with report.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 24 Jul 2009 07:25:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-call-transaction/m-p/5900826#M1328017</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-24T07:25:27Z</dc:date>
    </item>
    <item>
      <title>Re: problem with call transaction</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-call-transaction/m-p/5900827#M1328018</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think the first screen is not skipped in this case because  transaction SU01 expects choosing one of the functions it offers (triggered by buttons available on the first screen) - so it does not "know" which of them you mean: creating, changing, viewing etc. None of those functions is default - if you run SU01 manually, type a username and hit Enter - nothing happens too, ie. the screen does not disappear - so the same happens when SU01 is called by your code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can prepare batch-input data and perform "call transaction 'SU01' using ..."&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, 24 Jul 2009 07:55:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-call-transaction/m-p/5900827#M1328018</guid>
      <dc:creator>Maciej_DomagaBa</dc:creator>
      <dc:date>2009-07-24T07:55:41Z</dc:date>
    </item>
    <item>
      <title>Re: problem with call transaction</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-call-transaction/m-p/5900828#M1328019</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;solved&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 19 Dec 2009 03:46:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-call-transaction/m-p/5900828#M1328019</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-12-19T03:46:52Z</dc:date>
    </item>
  </channel>
</rss>

