<?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 maintenance in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance/m-p/1111321#M106287</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rayudu ! &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm glad the solution I provided helped you!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes you can add field to the screen you just have to modify the screen by yourself.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Of course the field have to belong to the table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example if you want to add 'created on' field you can just do it in the screenpainter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have done that! For example you can convert single char into checkbox or radio button...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If it helped, thanks for the reward&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 21 Oct 2005 09:46:33 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-10-21T09:46:33Z</dc:date>
    <item>
      <title>Table maintenance</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance/m-p/1111314#M106280</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;I have created one Z table which needs to be maintained using table maintenance. I have created table maintenance generator. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The problem is, I have one key field in that table (Sequence no), Which needs to be incremented or decremented when user creates entry or deletes entry automatically... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am trying to doit using flowlogic osf screen or in maintenance dialog menu path Environment-&amp;gt;Modifications-&amp;gt; Events... I ma not getting it properly...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anybody help me on this..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Oct 2005 07:42:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance/m-p/1111314#M106280</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-18T07:42:25Z</dc:date>
    </item>
    <item>
      <title>Re: Table maintenance</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance/m-p/1111315#M106281</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello rayudu_p,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You're on the right track:&lt;/P&gt;&lt;P&gt;Using the events should do the trick.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the Function-Group of your table-maintenance, create a routine which reads the highest current SequenceNo. into a local variable (make sure you're not clearing the content currently in yourtable):&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  form new_record.&lt;/P&gt;&lt;P&gt;    data: max_seqno like yourtable-seqno.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    select max( seqno ) from yourtable into max_seqno.&lt;/P&gt;&lt;P&gt;    add 1 to max_seqno.&lt;/P&gt;&lt;P&gt;  endform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Create an Event of Type '05': Creating a new entry.  Assign the routine New_record to this Event.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The user can enter anything he wants in yourtable-seqno.  When saving, the New_record routine will overwrite the value in yourtable-seqno.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Oct 2005 08:04:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance/m-p/1111315#M106281</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-18T08:04:03Z</dc:date>
    </item>
    <item>
      <title>Re: Table maintenance</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance/m-p/1111316#M106282</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Here I am also on the same track. But I need different functionality.&lt;/P&gt;&lt;P&gt;Could you please help me.&lt;/P&gt;&lt;P&gt;I have 2 fields in Ztable.I also created function group, table maintenance generated .&lt;/P&gt;&lt;P&gt;The functionality i need is Pulldown for Key fields.&lt;/P&gt;&lt;P&gt;Where i need to code for this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Deepak333 k&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Deepak333 k&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Oct 2005 08:10:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance/m-p/1111316#M106282</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-18T08:10:07Z</dc:date>
    </item>
    <item>
      <title>Re: Table maintenance</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance/m-p/1111317#M106283</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi rayudu p  ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I suggest you hide the field sequence number.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And use an event of type 21...&lt;/P&gt;&lt;P&gt;Event 21: Fill Hidden Fields &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This event occurs when fields which are flagged in the Data Dictionary as 'hidden', are to be filled.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Realization&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This event has no standard routine. The table/view fields are available for the realization of the user routine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Why ? Because changing a value entered by the end user by another one is not very user friendly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BUT? Having this field has hidden or event DISABLE would be great!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So summary:&lt;/P&gt;&lt;P&gt;If field is disable : event 05&lt;/P&gt;&lt;P&gt;if field is hidden : event 21&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If my answer was helpful let me know with a reward&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Oct 2005 08:14:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance/m-p/1111317#M106283</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-18T08:14:52Z</dc:date>
    </item>
    <item>
      <title>Re: Table maintenance</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance/m-p/1111318#M106284</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Stephan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  I have created Z table with following fields.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Seqno&lt;/P&gt;&lt;P&gt;TextID&lt;/P&gt;&lt;P&gt;fld1&lt;/P&gt;&lt;P&gt;fld2&lt;/P&gt;&lt;P&gt;Created by&lt;/P&gt;&lt;P&gt;Created on&lt;/P&gt;&lt;P&gt;Changed by&lt;/P&gt;&lt;P&gt;Changed on&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here seqno and text id are key fields...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Text ID is Sales order Header texts (i.e Logistics texts, Fonance texts, General texts etc)..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have created table maintenace generator. User dont want to enter seqno, created changed and dates.. These fields should be populated automatically...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I found one event called 05 which is for new entry creation...in that i have written one select and caliculated no of entries and assigned to screen field.. as per ur guidelines . It is working fine for single record entry...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the user press new entry button and enters two lines and press save event will trigger 2 times but select will return same value two times.. So its giving error when i save it...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I dont have clear idea on table maintenance...How can we hide field on screen... Which property we have to set?&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rayudu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Oct 2005 15:20:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance/m-p/1111318#M106284</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-19T15:20:35Z</dc:date>
    </item>
    <item>
      <title>Re: Table maintenance</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance/m-p/1111319#M106285</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you want to use event 5 or 21 - Use statics to define your data-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;statics : max_seqno like yourtable-seqno.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If max_seqno is initial.&lt;/P&gt;&lt;P&gt;select max( seqno ) from yourtable into max_seqno.&lt;/P&gt;&lt;P&gt;add 1 to max_seqno.&lt;/P&gt;&lt;P&gt;else.&lt;/P&gt;&lt;P&gt;add 1 to max_seqno.&lt;/P&gt;&lt;P&gt;endif&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Else you can always use event 01 and modify internal table "TOTAL" correctly with the seq_no . Internal table "TOTAL" will have have the lines from database as well as lines new created. This routine is called once before database update.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check here -&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com//saphelp_470/helpdata/EN/91/ca9f0ba9d111d1a5690000e82deaaa/content.htm" target="test_blank"&gt;http://help.sap.com//saphelp_470/helpdata/EN/91/ca9f0ba9d111d1a5690000e82deaaa/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For individual lines in internal table TOTAL see the valid values for field &amp;lt;ACTION&amp;gt; . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Oct 2005 15:50:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance/m-p/1111319#M106285</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-19T15:50:29Z</dc:date>
    </item>
    <item>
      <title>Re: Table maintenance</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance/m-p/1111320#M106286</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sanjya,&lt;/P&gt;&lt;P&gt;   Thanks..Got it.. I have one more doubt, In table maintenance we will get POSITION button to locate records... When we click on this button it will show only key fields of table... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can we add more fields on this screen? If so please provide solution...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and one more is How can we validate data in table maintenance..Is there any event????&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help me on these two issues..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Rayudu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Oct 2005 11:26:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance/m-p/1111320#M106286</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-20T11:26:26Z</dc:date>
    </item>
    <item>
      <title>Re: Table maintenance</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance/m-p/1111321#M106287</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rayudu ! &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm glad the solution I provided helped you!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes you can add field to the screen you just have to modify the screen by yourself.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Of course the field have to belong to the table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example if you want to add 'created on' field you can just do it in the screenpainter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have done that! For example you can convert single char into checkbox or radio button...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If it helped, thanks for the reward&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 21 Oct 2005 09:46:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance/m-p/1111321#M106287</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-10-21T09:46:33Z</dc:date>
    </item>
    <item>
      <title>Re: Table maintenance</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance/m-p/1111322#M106288</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sanjay,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am appreciating your help to SAP-SDN people. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am working in MRKO transaction, which is to create accounting document using vendor and material documet. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Problem is EXCHANGE RATE. I have to create accounting document as per Vendor suggested exchange rate, Not per system caliculated exchange rate.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So what i thought was, We have some exits in MRKO transaction. For each vendor we will ask user to get Vendor exchange rate and proceed with that rate. But system is taking exchange rate maintenained in system.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;Challange is: I have to create accounting document as per Vendor suggested exchange rate, Not per system caliculated exchange rate.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you help me on this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Rays&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Nov 2005 02:09:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance/m-p/1111322#M106288</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-07T02:09:25Z</dc:date>
    </item>
    <item>
      <title>Re: Table maintenance</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance/m-p/1111323#M106289</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;lt;i&amp;gt;have one more doubt, In table maintenance we will get POSITION button to locate records... When we click on this button it will show only key fields of table... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can we add more fields on this screen? If so please provide solution...&amp;lt;/i&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;No Position Button will only show key fields .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For validation you can either use event 01 or 05 and give an error message in the code . This is as good as any validation you do in PAI.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If your query is answered , please close the thread and open new thread for your MRKO query . If answers were helpful , dont forget to reward.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 07 Nov 2005 02:22:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance/m-p/1111323#M106289</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-11-07T02:22:16Z</dc:date>
    </item>
  </channel>
</rss>

