<?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: Waiting for your comments on this code in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/waiting-for-your-comments-on-this-code/m-p/2583605#M590947</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There isn't enough code there to determine exactly what it will do... it is calling the SE38 (ABAP editor) transaction, and has fed in the program name into the first screen... but there is no BDC OKcode specified at that point so it would go nowhere (unless there is more logic that you have not provided).  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you change&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CALL TRANSACTION 'SE38' USING BDCDATA MODE 'N'&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;to&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CALL TRANSACTION 'SE38' USING BDCDATA MODE 'A' "all screens&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;then you could watch the steps as it executes.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 02 Aug 2007 07:36:01 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-08-02T07:36:01Z</dc:date>
    <item>
      <title>Waiting for your comments on this code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/waiting-for-your-comments-on-this-code/m-p/2583603#M590945</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;What does the following code segment do?&lt;/P&gt;&lt;P&gt;Thanks in advance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BDCDATA TYPE TABLE OF BDCDATA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: ITAB TYPE TABLE OF BDCMSGCOLL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: PROGRAM LIKE SY-REPID,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      WA_BDCDATA TYPE BDCDATA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WA_BDCDATA-PROGRAM  = 'SAPMS38M'.&lt;/P&gt;&lt;P&gt;WA_BDCDATA-DYNPRO   = '0100'.&lt;/P&gt;&lt;P&gt;WA_BDCDATA-DYNBEGIN = 'X'.&lt;/P&gt;&lt;P&gt;APPEND WA_BDCDATA TO BDCDATA.&lt;/P&gt;&lt;P&gt;CLEAR WA_BDCDATA.&lt;/P&gt;&lt;P&gt;WA_BDCDATA-FNAM     = 'RS38M-PROGRAMM'.&lt;/P&gt;&lt;P&gt;WA_BDCDATA-FVAL     = PROGRAM.&lt;/P&gt;&lt;P&gt;APPEND WA_BDCDATA TO 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 ITAB.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Aug 2007 06:55:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/waiting-for-your-comments-on-this-code/m-p/2583603#M590945</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-02T06:55:12Z</dc:date>
    </item>
    <item>
      <title>Re: Waiting for your comments on this code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/waiting-for-your-comments-on-this-code/m-p/2583604#M590946</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The code is about batch input.&lt;/P&gt;&lt;P&gt;Is everyone at vacation:)&lt;/P&gt;&lt;P&gt;I wait for your explanations...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Aug 2007 07:04:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/waiting-for-your-comments-on-this-code/m-p/2583604#M590946</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-02T07:04:25Z</dc:date>
    </item>
    <item>
      <title>Re: Waiting for your comments on this code</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/waiting-for-your-comments-on-this-code/m-p/2583605#M590947</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There isn't enough code there to determine exactly what it will do... it is calling the SE38 (ABAP editor) transaction, and has fed in the program name into the first screen... but there is no BDC OKcode specified at that point so it would go nowhere (unless there is more logic that you have not provided).  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you change&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CALL TRANSACTION 'SE38' USING BDCDATA MODE 'N'&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;to&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CALL TRANSACTION 'SE38' USING BDCDATA MODE 'A' "all screens&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;then you could watch the steps as it executes.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 02 Aug 2007 07:36:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/waiting-for-your-comments-on-this-code/m-p/2583605#M590947</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-08-02T07:36:01Z</dc:date>
    </item>
  </channel>
</rss>

