<?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: table entry in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-entry/m-p/3868365#M929720</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sunny,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;we can enter data by using tcode or by creating a  report program.as you said you dont have authorizations use the following code.if you have authorizations to SU01 use it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data:begin of itab occurs 0,&lt;/P&gt;&lt;P&gt;     MANDT	type MANDT,&lt;/P&gt;&lt;P&gt;     BNAME	type XUBNAME,&lt;/P&gt;&lt;P&gt;     PARID	type MEMORYID,&lt;/P&gt;&lt;P&gt;     PARVA	type XUVALUE,&lt;/P&gt;&lt;P&gt;     end of itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;itab-MANDT = 1000.&lt;/P&gt;&lt;P&gt;itab-BNAME = 'CHAITUKN'.&lt;/P&gt;&lt;P&gt;itab-PARID  = 'SCL'.&lt;/P&gt;&lt;P&gt;itab-PARVA  = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;append itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;insert USR05 from itab.&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;&lt;/P&gt;&lt;P&gt;write: / 'failure'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;else.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write: / 'success'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward points if helpful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 20 May 2008 14:15:32 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-05-20T14:15:32Z</dc:date>
    <item>
      <title>table entry</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-entry/m-p/3868363#M929718</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 need to create one entry into USR05 table?can any one tell me how to do?i don't hav authorization to creat the entries.any other way to create the entries?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;points will be rewarded.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank u &lt;/P&gt;&lt;P&gt;sunny&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 May 2008 14:04:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-entry/m-p/3868363#M929718</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-20T14:04:49Z</dc:date>
    </item>
    <item>
      <title>Re: table entry</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-entry/m-p/3868364#M929719</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;do you have authrization to SU01 Transaction if so &lt;/P&gt;&lt;P&gt;enter SU01 Transaction -&amp;gt; enter your user id -&amp;gt; click on change button &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here see parameters tab -&amp;gt; enter WRK (Parameter ID)  1000 ( Parameter value )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;save it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now see the data in USR05 Table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Seshu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 May 2008 14:09:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-entry/m-p/3868364#M929719</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-20T14:09:17Z</dc:date>
    </item>
    <item>
      <title>Re: table entry</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-entry/m-p/3868365#M929720</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sunny,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;we can enter data by using tcode or by creating a  report program.as you said you dont have authorizations use the following code.if you have authorizations to SU01 use it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data:begin of itab occurs 0,&lt;/P&gt;&lt;P&gt;     MANDT	type MANDT,&lt;/P&gt;&lt;P&gt;     BNAME	type XUBNAME,&lt;/P&gt;&lt;P&gt;     PARID	type MEMORYID,&lt;/P&gt;&lt;P&gt;     PARVA	type XUVALUE,&lt;/P&gt;&lt;P&gt;     end of itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;itab-MANDT = 1000.&lt;/P&gt;&lt;P&gt;itab-BNAME = 'CHAITUKN'.&lt;/P&gt;&lt;P&gt;itab-PARID  = 'SCL'.&lt;/P&gt;&lt;P&gt;itab-PARVA  = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;append itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;insert USR05 from itab.&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;&lt;/P&gt;&lt;P&gt;write: / 'failure'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;else.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write: / 'success'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward points if helpful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 May 2008 14:15:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-entry/m-p/3868365#M929720</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-20T14:15:32Z</dc:date>
    </item>
    <item>
      <title>Re: table entry</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-entry/m-p/3868366#M929721</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sunny..&lt;/P&gt;&lt;P&gt;If no authorization its illegal &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can create entry from program as mentioned in thread.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you have display table entries authorization (from SE11 or SE16) and you have debug replace access then you can create entry as below. Follow these steps..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Display all entiries from USR05 table &lt;/P&gt;&lt;P&gt;Select any one entry by marking checkbox.&lt;/P&gt;&lt;P&gt;Now do /h in command window to start debugging&lt;/P&gt;&lt;P&gt;click on display icon (spectacles)&lt;/P&gt;&lt;P&gt;It will go in debug mode.&lt;/P&gt;&lt;P&gt;Press F7.&lt;/P&gt;&lt;P&gt;Now you can see code like:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
refresh exclude_tab.
if code = 'SHOW'.
  set titlebar 'TAB' with name 'anzeigen'(100
elseif code = 'EDIT'.
  set titlebar 'TAB' with name 'ändern'(101).
elseif code = 'INSR'.
  set titlebar 'TAB' with name 'einfügen'(102
elseif code = 'ANVO'.
  set titlebar 'TAB' with name 'einfügen'(102
elseif code = 'DELE'.
  set titlebar 'TAB' with name 'löschen'(103)
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check variable code and it will have value 'SHOW'.&lt;/P&gt;&lt;P&gt;Change that value to 'INSR'.. This must be in CAPS.&lt;/P&gt;&lt;P&gt;Now F8.&lt;/P&gt;&lt;P&gt;This will open fields for creating new entry.&lt;/P&gt;&lt;P&gt;Add your entry and press save. Refresh your table entry and you will your entry added.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Use with Caution&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward if useful..&lt;/P&gt;&lt;P&gt;thnx.&lt;/P&gt;&lt;P&gt;Ags.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 May 2008 20:53:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-entry/m-p/3868366#M929721</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-20T20:53:00Z</dc:date>
    </item>
  </channel>
</rss>

