<?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: How can we activate Database table dynamically? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-can-we-activate-database-table-dynamically/m-p/1462089#M218010</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ravi,&lt;/P&gt;&lt;P&gt; With this FM, the database table is getting activated. I checked it. It's working fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; After calling this FM also, u r not able to activate the table...Please let me know what's the problem?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 16 Jun 2006 12:21:51 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-06-16T12:21:51Z</dc:date>
    <item>
      <title>How can we activate Database table dynamically?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-can-we-activate-database-table-dynamically/m-p/1462084#M218005</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have deleted a field and index from a DB table dynamically.&lt;/P&gt;&lt;P&gt;now my requirement is to activate the dbtable dynamically.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have tried as &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call tranction 'SE14' using scrdata mode 'A' update 'A'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here it is showing all the screens with ok-kode correctly but it not activated.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;can anybody help in this regard?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Jun 2006 08:17:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-can-we-activate-database-table-dynamically/m-p/1462084#M218005</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-16T08:17:45Z</dc:date>
    </item>
    <item>
      <title>Re: How can we activate Database table dynamically?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-can-we-activate-database-table-dynamically/m-p/1462085#M218006</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ravi,&lt;/P&gt;&lt;P&gt; After Modification to the database table, u can use this standard function module to activate it dynamically,&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;CALL FUNCTION 'DDIF_TABL_ACTIVATE'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    name              = 'YSHELL' "Name of the db table&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  AUTH_CHK          = 'X'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  PRID              = -1&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  RC                =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt; EXCEPTIONS&lt;/P&gt;&lt;P&gt;   NOT_FOUND         = 1&lt;/P&gt;&lt;P&gt;   PUT_FAILURE       = 2&lt;/P&gt;&lt;P&gt;   OTHERS            = 3&lt;/P&gt;&lt;P&gt;          .&lt;/P&gt;&lt;P&gt;IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt; MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;P&gt;         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; If found helpful, please do reward.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Jun 2006 10:12:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-can-we-activate-database-table-dynamically/m-p/1462085#M218006</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-16T10:12:09Z</dc:date>
    </item>
    <item>
      <title>Re: How can we activate Database table dynamically?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-can-we-activate-database-table-dynamically/m-p/1462086#M218007</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanx satya&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But even I am unable to activate the DBtable by using Func. Module.&lt;/P&gt;&lt;P&gt;can u suggest me other methods.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Jun 2006 11:02:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-can-we-activate-database-table-dynamically/m-p/1462086#M218007</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-16T11:02:28Z</dc:date>
    </item>
    <item>
      <title>Re: How can we activate Database table dynamically?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-can-we-activate-database-table-dynamically/m-p/1462087#M218008</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here are the useful Functon MOdules in activating the database tables:&lt;/P&gt;&lt;P&gt;DD_TABL_ACTIVATE_CV &lt;/P&gt;&lt;P&gt;DD_TABT_ACTIVATE    &lt;/P&gt;&lt;P&gt;DDIF_TABL_ACTIVATE  &lt;/P&gt;&lt;P&gt;DDIF_TABT_ACTIVATE  &lt;/P&gt;&lt;P&gt;DD_TABL_ACTIVATE    &lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Jun 2006 11:05:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-can-we-activate-database-table-dynamically/m-p/1462087#M218008</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-16T11:05:54Z</dc:date>
    </item>
    <item>
      <title>Re: How can we activate Database table dynamically?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-can-we-activate-database-table-dynamically/m-p/1462088#M218009</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;it  is  workin.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'DDIF_TABL_ACTIVATE'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;name = 'znegi' "Name of the db table&lt;/P&gt;&lt;P&gt; AUTH_CHK = 'X'&lt;/P&gt;&lt;P&gt; PRID = '1'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;RC =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;NOT_FOUND = 1&lt;/P&gt;&lt;P&gt;PUT_FAILURE = 2&lt;/P&gt;&lt;P&gt;OTHERS = 3&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;P&gt;WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;go  to se11 do the deactive table.&lt;/P&gt;&lt;P&gt;now  go to se37  run this fm.&lt;/P&gt;&lt;P&gt;enter table  name  it  activate dbtab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Jun 2006 11:08:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-can-we-activate-database-table-dynamically/m-p/1462088#M218009</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-16T11:08:09Z</dc:date>
    </item>
    <item>
      <title>Re: How can we activate Database table dynamically?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-can-we-activate-database-table-dynamically/m-p/1462089#M218010</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ravi,&lt;/P&gt;&lt;P&gt; With this FM, the database table is getting activated. I checked it. It's working fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; After calling this FM also, u r not able to activate the table...Please let me know what's the problem?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Jun 2006 12:21:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-can-we-activate-database-table-dynamically/m-p/1462089#M218010</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-16T12:21:51Z</dc:date>
    </item>
    <item>
      <title>Re: How can we activate Database table dynamically?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-can-we-activate-database-table-dynamically/m-p/1462090#M218011</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thank u satya.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have cheaked RC value(imported value) from the function module it always returns the value 8 not 0 in my system. 0 means successfully activated.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Jun 2006 13:09:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-can-we-activate-database-table-dynamically/m-p/1462090#M218011</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-16T13:09:42Z</dc:date>
    </item>
    <item>
      <title>Re: How can we activate Database table dynamically?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-can-we-activate-database-table-dynamically/m-p/1462091#M218012</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ravi,&lt;/P&gt;&lt;P&gt;   Go to se14 and activate it manually.&lt;/P&gt;&lt;P&gt;If you are able to do that without any errors, then you can do it using the FM.&lt;/P&gt;&lt;P&gt;If you couldn't do it manually due to some reasons, then you cannot do it dynamically as well&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Jun 2006 13:16:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-can-we-activate-database-table-dynamically/m-p/1462091#M218012</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-16T13:16:30Z</dc:date>
    </item>
    <item>
      <title>Re: How can we activate Database table dynamically?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-can-we-activate-database-table-dynamically/m-p/1462092#M218013</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;&lt;/P&gt;&lt;P&gt;It is activating if I do manually thru se14 but in case of calling function module or call traction 'SE14' using scrdata. its not done successfully.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when calling transation it is terminating after pressing ok-code 'yes' in the popup window 'Request Adjust'. this i had found when calling transaction.&lt;/P&gt;&lt;P&gt;After i had debugg the popup program i found the ok-code is not 'yes'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 16 Jun 2006 13:37:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-can-we-activate-database-table-dynamically/m-p/1462092#M218013</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-16T13:37:05Z</dc:date>
    </item>
  </channel>
</rss>

