<?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: exception error in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/exception-error/m-p/4401551#M1046240</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Just wanted to know how u r checking the validity of a table.&lt;/P&gt;&lt;P&gt;If it is through a Function Module, then u can catch the exception of the function and raise a message raising an exception like follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;message e000(zplm) with 'Table XYZ not valid' raising exception.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Himanshu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 25 Aug 2008 04:51:09 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-08-25T04:51:09Z</dc:date>
    <item>
      <title>exception error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/exception-error/m-p/4401550#M1046239</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;i'm doing validation for tables which is selected dynamically and if table is nt valid then it throw a exception, all things wkging fine up to there but i want that it throw a exception with invalid table names which is selected dynamically.&lt;/P&gt;&lt;P&gt;how to do that?&lt;/P&gt;&lt;P&gt;i have nt to use any type of error msg or any type of msg it's my limitations.&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Aug 2008 04:46:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/exception-error/m-p/4401550#M1046239</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-25T04:46:49Z</dc:date>
    </item>
    <item>
      <title>Re: exception error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/exception-error/m-p/4401551#M1046240</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Just wanted to know how u r checking the validity of a table.&lt;/P&gt;&lt;P&gt;If it is through a Function Module, then u can catch the exception of the function and raise a message raising an exception like follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;message e000(zplm) with 'Table XYZ not valid' raising exception.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Himanshu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Aug 2008 04:51:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/exception-error/m-p/4401551#M1046240</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-25T04:51:09Z</dc:date>
    </item>
    <item>
      <title>Re: exception error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/exception-error/m-p/4401552#M1046241</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi anuj&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you are using normal abap code means, try check the table whether exist in data dictionary or not by using select query in else part&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if you are using OOPS abap means use TRY CATCH Stmt&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Deva&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Aug 2008 04:52:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/exception-error/m-p/4401552#M1046241</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-25T04:52:59Z</dc:date>
    </item>
    <item>
      <title>Re: exception error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/exception-error/m-p/4401553#M1046242</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi all, i'm using this code&lt;/P&gt;&lt;P&gt;DATA : ITAB3 LIKE STANDARD TABLE OF DD03L.&lt;/P&gt;&lt;P&gt;  LOOP AT IT_TABFLDNAME3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SELECT TABNAME  FROM DD03L INTO TABLE ITAB3 WHERE&lt;/P&gt;&lt;P&gt;  TABNAME =  IT_TABFLDNAME3-TABNAME .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        IF SY-SUBRC NE 0.&lt;/P&gt;&lt;P&gt;        RAISE TABLE_NOT_AVAILABLE.&lt;/P&gt;&lt;P&gt;        ENDIF&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but how to pass current table name through raise statement.&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Aug 2008 04:56:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/exception-error/m-p/4401553#M1046242</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-25T04:56:02Z</dc:date>
    </item>
    <item>
      <title>Re: exception error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/exception-error/m-p/4401554#M1046243</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Anuj Jain  &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;pass that exception in Message Class&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Deva&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Aug 2008 05:00:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/exception-error/m-p/4401554#M1046243</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-25T05:00:13Z</dc:date>
    </item>
    <item>
      <title>Re: exception error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/exception-error/m-p/4401555#M1046244</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;Actually i creating a rfc then it's not possible to me to pass a msg through msg class in rfc, i hve to pass this only by raise.&lt;/P&gt;&lt;P&gt;guide me,&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 25 Aug 2008 05:12:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/exception-error/m-p/4401555#M1046244</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-25T05:12:49Z</dc:date>
    </item>
    <item>
      <title>Re: exception error</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/exception-error/m-p/4401556#M1046245</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanx&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 16 Sep 2008 05:15:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/exception-error/m-p/4401556#M1046245</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-16T05:15:22Z</dc:date>
    </item>
  </channel>
</rss>

