<?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 Message tab not getting filled. in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/message-tab-not-getting-filled/m-p/3226235#M769494</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;here in below statement: &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;CALL TRANSACTION 'VAP1' USING bdcdata MESSAGES INTO messtab  MODE l_mode UPDATE 'S'.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the messages are not getting filled into MESSTAB.but the document is getting updated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in Advance.&lt;/P&gt;&lt;P&gt; V V.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 10 Jan 2008 10:14:24 GMT</pubDate>
    <dc:creator>former_member637135</dc:creator>
    <dc:date>2008-01-10T10:14:24Z</dc:date>
    <item>
      <title>Message tab not getting filled.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/message-tab-not-getting-filled/m-p/3226235#M769494</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;here in below statement: &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;CALL TRANSACTION 'VAP1' USING bdcdata MESSAGES INTO messtab  MODE l_mode UPDATE 'S'.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the messages are not getting filled into MESSTAB.but the document is getting updated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in Advance.&lt;/P&gt;&lt;P&gt; V V.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Jan 2008 10:14:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/message-tab-not-getting-filled/m-p/3226235#M769494</guid>
      <dc:creator>former_member637135</dc:creator>
      <dc:date>2008-01-10T10:14:24Z</dc:date>
    </item>
    <item>
      <title>Re: Message tab not getting filled.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/message-tab-not-getting-filled/m-p/3226236#M769495</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;statement should be &lt;/P&gt;&lt;P&gt;CALL TRANSACTION tcode                              &lt;/P&gt;&lt;P&gt;USING bdcdata&lt;/P&gt;&lt;P&gt;MODE l_mode&lt;/P&gt;&lt;P&gt;UPDATE 'S'&lt;/P&gt;&lt;P&gt;MESSAGES INTO messtab .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and data type for messtab is&lt;/P&gt;&lt;P&gt;data: messtab type BDCMSGCOLL occurs 0 with header line.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Jan 2008 15:12:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/message-tab-not-getting-filled/m-p/3226236#M769495</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-10T15:12:51Z</dc:date>
    </item>
    <item>
      <title>Re: Message tab not getting filled.</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/message-tab-not-getting-filled/m-p/3226237#M769496</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;CALL TRANSACTION &amp;lt;transaction code&amp;gt;&lt;/P&gt;&lt;P&gt;		USING 	&amp;lt;bdc table&amp;gt;&lt;/P&gt;&lt;P&gt;		MODE	&amp;lt;display mode&amp;gt;&lt;/P&gt;&lt;P&gt;		UPDATE	&amp;lt;UPDATE MODE&amp;gt;&lt;/P&gt;&lt;P&gt;	MESSAGES INTO messtab	&lt;/P&gt;&lt;P&gt;DISPLAY MODE:&lt;/P&gt;&lt;P&gt;        A :display all(default setting)&lt;/P&gt;&lt;P&gt;		 E :Display only error&lt;/P&gt;&lt;P&gt;		 N :No display			&lt;/P&gt;&lt;P&gt;Update mode&lt;/P&gt;&lt;P&gt;        S : continue processing when update is completed(synchronous)&lt;/P&gt;&lt;P&gt;        A : continue processing immediately.&lt;/P&gt;&lt;P&gt;Note: messtab,an internal table must have a structure BDCMSGCOLL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-&amp;gt;To make your BDC run on standard screen size SAP has come up with a new option from 4.7 onwards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL TRANSACTION &amp;lt;transaction code&amp;gt;&lt;/P&gt;&lt;P&gt;		USING 	&amp;lt;bdc table&amp;gt;&lt;/P&gt;&lt;P&gt;		OPTION FROM &amp;lt;opt&amp;gt;&lt;/P&gt;&lt;P&gt;	MESSAGES INTO messtab	&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;opt&amp;gt; has structure of CTU_PARAMS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;opt&amp;gt;-dismode = Same as display mode explained earlier&lt;/P&gt;&lt;P&gt;&amp;lt;opt&amp;gt;-updmode = Same as update mode explained earlier&lt;/P&gt;&lt;P&gt;&amp;lt;opt&amp;gt;-defsize = set this to &amp;#145;X&amp;#146; to make the bdc execute in standard screen size. So whatever is the screen size of the users front-end, the BDC will execute in standard screen size&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Checking if Call transaction is successful or not	&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;-&amp;gt;Checking sy-subrc may not be always reliable as it can return values like .001 even if the transaction is successful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best way to check this is to check for the success message in the message table.&lt;/P&gt;&lt;P&gt;     &lt;/P&gt;&lt;P&gt;-&amp;gt; All transactions give a success message if the transaction is successful. SAP guarantees that these message numbers wont change in any release of SAP.  &lt;/P&gt;&lt;P&gt;-&amp;gt;  First get the message number, id etc of the success message of the transaction you are trying to call, then check this message number and id in the message table that the call transaction returns.  If you find the entry in the message table, the call transaction is successful.	&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward if helpful&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;sravanthi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 10 Jan 2008 15:18:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/message-tab-not-getting-filled/m-p/3226237#M769496</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-10T15:18:33Z</dc:date>
    </item>
  </channel>
</rss>

