<?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 to create entry in T001 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-entry-in-t001/m-p/3474782#M835210</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI&lt;/P&gt;&lt;P&gt;To specify the database table statically, enter the following for &amp;lt;target&amp;gt;:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INSERT INTO &amp;lt;dbtab&amp;gt; CLIENT SPECIFIED &amp;lt;lines&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where &amp;lt;dbtab&amp;gt; is the name of a database table defined in the ABAP Dictionary.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To specify the database table dynamically, enter the following for &amp;lt;target&amp;gt;:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INSERT INTO (&amp;lt;name&amp;gt;) CLIENT SPECIFIED &amp;lt;lines&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where the field &amp;lt;name&amp;gt; contains the name of a database table defined in the ABAP Dictionary.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use the CLIENT SPECIFIED addition to disable automatic client handling.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 12 Mar 2008 08:20:25 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-03-12T08:20:25Z</dc:date>
    <item>
      <title>how to create entry in T001</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-entry-in-t001/m-p/3474780#M835208</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;&lt;/P&gt;&lt;P&gt;I am trying to create emtries in table T001(company codes), but i dont have create authorization.&lt;/P&gt;&lt;P&gt;Anyone knows how to make it through debugging mode or any other method ???&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks and regards&lt;/P&gt;&lt;P&gt;Jijo&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Mar 2008 08:08:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-entry-in-t001/m-p/3474780#M835208</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-12T08:08:57Z</dc:date>
    </item>
    <item>
      <title>Re: how to create entry in T001</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-entry-in-t001/m-p/3474781#M835209</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;directly we cannot insert to the database table using se11.&lt;/P&gt;&lt;P&gt;but wecan do it through report using INSERT statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Insert dbtab ABAP statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Syntax Diagram&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;INSERT dbtab&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Syntax&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;INSERT { {INTO target VALUES source } &lt;/P&gt;&lt;P&gt;       | {     target FROM   source } }. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Effect&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;The INSERT statement inserts one or more rows specified in source in the database table specified in target. The two variants with INTO and VALUES or without INTO with FROM behave identically, with the exception that you cannot specify any internal tables in source after VALUES. &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;vineela.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Mar 2008 08:16:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-entry-in-t001/m-p/3474781#M835209</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-12T08:16:58Z</dc:date>
    </item>
    <item>
      <title>Re: how to create entry in T001</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-entry-in-t001/m-p/3474782#M835210</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI&lt;/P&gt;&lt;P&gt;To specify the database table statically, enter the following for &amp;lt;target&amp;gt;:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INSERT INTO &amp;lt;dbtab&amp;gt; CLIENT SPECIFIED &amp;lt;lines&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where &amp;lt;dbtab&amp;gt; is the name of a database table defined in the ABAP Dictionary.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To specify the database table dynamically, enter the following for &amp;lt;target&amp;gt;:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INSERT INTO (&amp;lt;name&amp;gt;) CLIENT SPECIFIED &amp;lt;lines&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where the field &amp;lt;name&amp;gt; contains the name of a database table defined in the ABAP Dictionary.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can use the CLIENT SPECIFIED addition to disable automatic client handling.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Mar 2008 08:20:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-entry-in-t001/m-p/3474782#M835210</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-12T08:20:25Z</dc:date>
    </item>
    <item>
      <title>Re: how to create entry in T001</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-entry-in-t001/m-p/3474783#M835211</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt; u can also directly enter new company code using transaction spro-&amp;gt;img-&amp;gt;general settings-&amp;gt;define country code.&lt;/P&gt;&lt;P&gt;This u can do only if u have authorization to define new company code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Bhagyshree&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Mar 2008 08:27:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-entry-in-t001/m-p/3474783#M835211</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-12T08:27:27Z</dc:date>
    </item>
    <item>
      <title>Re: how to create entry in T001</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-entry-in-t001/m-p/3474784#M835212</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;You should create entries through SPRO not by writing code to insert into table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SPRO&lt;DEL&gt;&amp;gt;Enterprise Structure&lt;/DEL&gt;&amp;gt;Financial Accounting&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ashok&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Mar 2008 08:28:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-entry-in-t001/m-p/3474784#M835212</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-12T08:28:43Z</dc:date>
    </item>
    <item>
      <title>Re: how to create entry in T001</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-entry-in-t001/m-p/3474785#M835213</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;In se11 we can able to debug ('/h') the program and change the value of variables while debugging and &lt;/P&gt;&lt;P&gt;set the sy-subrc values, so we can tackle authorization checking, anyone know the steps to do??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;Jose&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Mar 2008 09:20:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-entry-in-t001/m-p/3474785#M835213</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-12T09:20:38Z</dc:date>
    </item>
    <item>
      <title>Re: how to create entry in T001</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-entry-in-t001/m-p/3474786#M835214</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;You should use SPRO transaction&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;path:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SPRO&lt;DEL&gt;&amp;gt;Enterprise Structure&lt;/DEL&gt;&amp;gt;Financial Accounting-&amp;gt;Define company&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Mar 2008 09:30:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-entry-in-t001/m-p/3474786#M835214</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-12T09:30:37Z</dc:date>
    </item>
    <item>
      <title>Re: how to create entry in T001</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-entry-in-t001/m-p/3474787#M835215</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Jijo Jose,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;there is a way in SE16 to chnage/insert/delete entries, but it is not a good idea to do it. When you create a new company code in SAP, T001 is not the only table which will be written by SAP, there are some (many?) more. Modifing standard SAP tables through debug or pure ABAP is also not an advisable thing. On the other hand, if you have a company code, for what will it be enough? There are much more customizing you might need...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best is to approach someone, who has proper auhtorization and ask him/her to create a new company code for you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope this helps&lt;/P&gt;&lt;P&gt;ec&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Mar 2008 09:36:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-entry-in-t001/m-p/3474787#M835215</guid>
      <dc:creator>JozsefSzikszai</dc:creator>
      <dc:date>2008-03-12T09:36:17Z</dc:date>
    </item>
    <item>
      <title>Re: how to create entry in T001</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-entry-in-t001/m-p/3474788#M835216</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello.&lt;/P&gt;&lt;P&gt;- Goto se16n.&lt;/P&gt;&lt;P&gt;- Type table t001.&lt;/P&gt;&lt;P&gt;- type code &lt;STRONG&gt;&amp;amp;sap_edit&lt;/STRONG&gt; in command field.&lt;/P&gt;&lt;P&gt;- Press F8, enjoy.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 12 Mar 2008 09:37:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-create-entry-in-t001/m-p/3474788#M835216</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-03-12T09:37:23Z</dc:date>
    </item>
  </channel>
</rss>

