<?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/1464722#M218973</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;good&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;go throgh this detail about the call transaction.&lt;/P&gt;&lt;P&gt;Basic form&lt;/P&gt;&lt;P&gt;CALL TRANSACTION tcod. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Additions&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. ... AND SKIP FIRST SCREEN &lt;/P&gt;&lt;P&gt;2. ... USING itab &lt;/P&gt;&lt;P&gt;2a. ... MODE mode &lt;/P&gt;&lt;P&gt;2b. ... UPDATE upd &lt;/P&gt;&lt;P&gt;2c. ... MESSAGES INTO messtab &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect&lt;/P&gt;&lt;P&gt;Calls the SAP Transaction tcod ; tcod can be a literal or a variable. To return from the called transaction, you use the key word LEAVE PROGRAM . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL TRANSACTION 'SP01'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Addition 1&lt;/P&gt;&lt;P&gt;... AND SKIP FIRST SCREEN &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect&lt;/P&gt;&lt;P&gt;Skips the first screen in the transaction (provided all the required fields have been assigned values by the SPA/GPA process). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Addition 2&lt;/P&gt;&lt;P&gt;... USING itab &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect&lt;/P&gt;&lt;P&gt;Calls the Transaction tcod and passes the internal table itab , which contains one or several screens in batch input format. &lt;/P&gt;&lt;P&gt;If necessary, one of the messages output by the Transaction is returned to the fields SY-MSGID , SY-MSGTY SY-MSGNO , SY-MSGV1 , ..., SY-MSGV4 . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The return code value is set as follows: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SY-SUBRC = 0 Processing was successful. &lt;/P&gt;&lt;P&gt;SY-SUBRC &amp;lt;&amp;gt; 0 Transaction ended with an error. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note&lt;/P&gt;&lt;P&gt;A called Transaction ends successfully for the following reasons: &lt;/P&gt;&lt;P&gt;COMMIT WORK Next screen = 0 LEAVE TO TRANSACTION ' ' &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Addition 2a&lt;/P&gt;&lt;P&gt;... MODE mode &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect&lt;/P&gt;&lt;P&gt;The specified processing mode can accept the following values: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;'A' Display screen &lt;/P&gt;&lt;P&gt;'E' Display screen only if an error occurs &lt;/P&gt;&lt;P&gt;'N' No display &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the addition MODE is not specified, the processing mode is set to 'A' . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Addition 2b&lt;/P&gt;&lt;P&gt;... UPDATE upd &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect&lt;/P&gt;&lt;P&gt;The specified update mode upd defines the update type. This can have one of the following values: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;'A' Asynchronous update &lt;/P&gt;&lt;P&gt;'S' Synchronous update &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the addition UPDATE is not specified, the processing mode is set to 'A' . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Addition 2c&lt;/P&gt;&lt;P&gt;... MESSAGES INTO messtab &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect&lt;/P&gt;&lt;P&gt;The specified internal table contains all system messages that occur during CALL TRANSACTION USING ... . The internal table messtab must have the structure BDCMSGCOLL . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA BEGIN OF BDCDATA OCCURS 100.&lt;/P&gt;&lt;P&gt;       INCLUDE STRUCTURE BDCDATA.&lt;/P&gt;&lt;P&gt;DATA END OF BDCDATA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA BEGIN OF MESSTAB OCCURS 10.&lt;/P&gt;&lt;P&gt;       INCLUDE STRUCTURE BDCMSGCOLL.&lt;/P&gt;&lt;P&gt;DATA END OF MESSTAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA REPORT(8).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BDCDATA-PROGRAM  = 'SAPMS38M'.&lt;/P&gt;&lt;P&gt;BDCDATA-DYNPRO   = '0100'.&lt;/P&gt;&lt;P&gt;BDCDATA-DYNBEGIN = 'X'.&lt;/P&gt;&lt;P&gt;APPEND BDCDATA.&lt;/P&gt;&lt;P&gt;CLEAR BDCDATA.&lt;/P&gt;&lt;P&gt;BDCDATA-FNAM     = 'RS38M-PROGRAMM'.&lt;/P&gt;&lt;P&gt;BDCDATA-FVAL     = REPORT.&lt;/P&gt;&lt;P&gt;APPEND BDCDATA.&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;CALL TRANSACTION 'SE38'  USING BDCDATA  MODE 'N'&lt;/P&gt;&lt;P&gt;                         MESSAGES INTO MESSTAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Notes&lt;/P&gt;&lt;P&gt;Runtime errors &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL_TRANSACTION_NOT_FOUND : Transaction is unknown. &lt;/P&gt;&lt;P&gt;CALL_TRANSACTION_IS_MENU : Transaction is a menu. &lt;/P&gt;&lt;P&gt;CALL_TRANSACTION_USING_NESTED : Recursive CALL TRANSACTION USING &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.geocities.com/SiliconValley/Campus/6345/call_tra.htm" target="test_blank"&gt;http://www.geocities.com/SiliconValley/Campus/6345/call_tra.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;mrutyun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 25 Aug 2006 04:20:01 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-08-25T04:20:01Z</dc:date>
    <item>
      <title>Call transaction</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction/m-p/1464720#M218971</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;  I have set parameter id and called transaction using CALL TRANSACTION 'KXH3' AND SKIP FIRST SCREEN . It is not showing the second screen. Will this statement only works for a some transactions. When I press ENTER it is going for second screen. Please suggest me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;  Satya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Aug 2006 03:54:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction/m-p/1464720#M218971</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-25T03:54:06Z</dc:date>
    </item>
    <item>
      <title>Re: Call transaction</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction/m-p/1464721#M218972</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;call GS03.&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;Prabhu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Aug 2006 03:57:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction/m-p/1464721#M218972</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-25T03:57:11Z</dc:date>
    </item>
    <item>
      <title>Re: Call transaction</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction/m-p/1464722#M218973</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;good&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;go throgh this detail about the call transaction.&lt;/P&gt;&lt;P&gt;Basic form&lt;/P&gt;&lt;P&gt;CALL TRANSACTION tcod. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Additions&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. ... AND SKIP FIRST SCREEN &lt;/P&gt;&lt;P&gt;2. ... USING itab &lt;/P&gt;&lt;P&gt;2a. ... MODE mode &lt;/P&gt;&lt;P&gt;2b. ... UPDATE upd &lt;/P&gt;&lt;P&gt;2c. ... MESSAGES INTO messtab &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect&lt;/P&gt;&lt;P&gt;Calls the SAP Transaction tcod ; tcod can be a literal or a variable. To return from the called transaction, you use the key word LEAVE PROGRAM . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL TRANSACTION 'SP01'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Addition 1&lt;/P&gt;&lt;P&gt;... AND SKIP FIRST SCREEN &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect&lt;/P&gt;&lt;P&gt;Skips the first screen in the transaction (provided all the required fields have been assigned values by the SPA/GPA process). &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Addition 2&lt;/P&gt;&lt;P&gt;... USING itab &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect&lt;/P&gt;&lt;P&gt;Calls the Transaction tcod and passes the internal table itab , which contains one or several screens in batch input format. &lt;/P&gt;&lt;P&gt;If necessary, one of the messages output by the Transaction is returned to the fields SY-MSGID , SY-MSGTY SY-MSGNO , SY-MSGV1 , ..., SY-MSGV4 . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The return code value is set as follows: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SY-SUBRC = 0 Processing was successful. &lt;/P&gt;&lt;P&gt;SY-SUBRC &amp;lt;&amp;gt; 0 Transaction ended with an error. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note&lt;/P&gt;&lt;P&gt;A called Transaction ends successfully for the following reasons: &lt;/P&gt;&lt;P&gt;COMMIT WORK Next screen = 0 LEAVE TO TRANSACTION ' ' &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Addition 2a&lt;/P&gt;&lt;P&gt;... MODE mode &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect&lt;/P&gt;&lt;P&gt;The specified processing mode can accept the following values: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;'A' Display screen &lt;/P&gt;&lt;P&gt;'E' Display screen only if an error occurs &lt;/P&gt;&lt;P&gt;'N' No display &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the addition MODE is not specified, the processing mode is set to 'A' . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Addition 2b&lt;/P&gt;&lt;P&gt;... UPDATE upd &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect&lt;/P&gt;&lt;P&gt;The specified update mode upd defines the update type. This can have one of the following values: &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;'A' Asynchronous update &lt;/P&gt;&lt;P&gt;'S' Synchronous update &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the addition UPDATE is not specified, the processing mode is set to 'A' . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Addition 2c&lt;/P&gt;&lt;P&gt;... MESSAGES INTO messtab &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Effect&lt;/P&gt;&lt;P&gt;The specified internal table contains all system messages that occur during CALL TRANSACTION USING ... . The internal table messtab must have the structure BDCMSGCOLL . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Example&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA BEGIN OF BDCDATA OCCURS 100.&lt;/P&gt;&lt;P&gt;       INCLUDE STRUCTURE BDCDATA.&lt;/P&gt;&lt;P&gt;DATA END OF BDCDATA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA BEGIN OF MESSTAB OCCURS 10.&lt;/P&gt;&lt;P&gt;       INCLUDE STRUCTURE BDCMSGCOLL.&lt;/P&gt;&lt;P&gt;DATA END OF MESSTAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA REPORT(8).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BDCDATA-PROGRAM  = 'SAPMS38M'.&lt;/P&gt;&lt;P&gt;BDCDATA-DYNPRO   = '0100'.&lt;/P&gt;&lt;P&gt;BDCDATA-DYNBEGIN = 'X'.&lt;/P&gt;&lt;P&gt;APPEND BDCDATA.&lt;/P&gt;&lt;P&gt;CLEAR BDCDATA.&lt;/P&gt;&lt;P&gt;BDCDATA-FNAM     = 'RS38M-PROGRAMM'.&lt;/P&gt;&lt;P&gt;BDCDATA-FVAL     = REPORT.&lt;/P&gt;&lt;P&gt;APPEND BDCDATA.&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;CALL TRANSACTION 'SE38'  USING BDCDATA  MODE 'N'&lt;/P&gt;&lt;P&gt;                         MESSAGES INTO MESSTAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Notes&lt;/P&gt;&lt;P&gt;Runtime errors &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL_TRANSACTION_NOT_FOUND : Transaction is unknown. &lt;/P&gt;&lt;P&gt;CALL_TRANSACTION_IS_MENU : Transaction is a menu. &lt;/P&gt;&lt;P&gt;CALL_TRANSACTION_USING_NESTED : Recursive CALL TRANSACTION USING &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.geocities.com/SiliconValley/Campus/6345/call_tra.htm" target="test_blank"&gt;http://www.geocities.com/SiliconValley/Campus/6345/call_tra.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;mrutyun&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Aug 2006 04:20:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction/m-p/1464722#M218973</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-25T04:20:01Z</dc:date>
    </item>
    <item>
      <title>Re: Call transaction</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction/m-p/1464723#M218974</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;u can check the where-used-list of KXH3, its not used anywhere , may be for some other purpose it was created ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;GS03 is working fine&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;REPORT YCHATEST.

TABLES : SETLEAF.

DATA : SET LIKE SETLEAF-SETNAME VALUE '0B-PERIODS.GLT0'.
SET PARAMETER ID 'GSE' FIELD SET.
CALL TRANSACTION 'GS03' 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;U can check in transaction KXH3 , its first screen is 2100 which is a dummy screen , internally it will call GS03 i think&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Chandrasekhar Jagarlamudi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Aug 2006 04:22:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction/m-p/1464723#M218974</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-25T04:22:15Z</dc:date>
    </item>
    <item>
      <title>Re: Call transaction</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction/m-p/1464724#M218975</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi can u show me the code .&lt;/P&gt;&lt;P&gt;This statement works .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Aug 2006 05:45:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction/m-p/1464724#M218975</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-25T05:45:55Z</dc:date>
    </item>
    <item>
      <title>Re: Call transaction</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction/m-p/1464725#M218976</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Satya &lt;/P&gt;&lt;P&gt;Try this code . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameter : p_dat like RGSBM-SHORTNAME default '0001'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET PARAMETER ID 'GSE' FIELD p_dat.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call transaction '&amp;lt;b&amp;gt;GS03&amp;lt;/b&amp;gt;' AND SKIP FIRST SCREEN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards &lt;/P&gt;&lt;P&gt;Naval&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 25 Aug 2006 06:02:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction/m-p/1464725#M218976</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-25T06:02:51Z</dc:date>
    </item>
    <item>
      <title>Re: Call transaction</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction/m-p/1464726#M218977</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Make sure that u have values for all parameters in ur first screen, if u have any....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for more details see SAP help....&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, 25 Aug 2006 06:06:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/call-transaction/m-p/1464726#M218977</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-25T06:06:21Z</dc:date>
    </item>
  </channel>
</rss>

