<?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: View Maintenance in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/view-maintenance/m-p/1326261#M167092</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What about those functions: VIEWPROC_&amp;lt;view&amp;gt; and VIEWFRAME_&amp;lt;view&amp;gt; or VIEW_MAINTENANCE. Are those to accomplish what I need. the interface is confusing.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 05 Jun 2006 21:51:39 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-06-05T21:51:39Z</dc:date>
    <item>
      <title>View Maintenance</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/view-maintenance/m-p/1326254#M167085</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In custom table maintenance view I'm using a couple of events in PAI to format records to be inserted.  I also have a program that inserts entries into that table. Is there a function call that I can use instead of regular insert statement that would also go through those events? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Leon&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Jun 2006 19:35:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/view-maintenance/m-p/1326254#M167085</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-05T19:35:53Z</dc:date>
    </item>
    <item>
      <title>Re: View Maintenance</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/view-maintenance/m-p/1326255#M167086</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can call the event subroutines from ur external program using PERFORM statement.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Jun 2006 19:40:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/view-maintenance/m-p/1326255#M167086</guid>
      <dc:creator>sridhar_k1</dc:creator>
      <dc:date>2006-06-05T19:40:49Z</dc:date>
    </item>
    <item>
      <title>Re: View Maintenance</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/view-maintenance/m-p/1326256#M167087</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Leon,&lt;/P&gt;&lt;P&gt;You can use PERFORM statement to call particular routine in a different program to go through the events.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;perform function_name1(prog_name1) using param1 param2.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;function_name1 routine will be called from prog_name1 which is external to your tbale maintenance module pool.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Vikram&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please reward for helpful replies!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Jun 2006 19:58:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/view-maintenance/m-p/1326256#M167087</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-05T19:58:48Z</dc:date>
    </item>
    <item>
      <title>Re: View Maintenance</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/view-maintenance/m-p/1326257#M167088</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank you for your replies but the routine I'm using is standard temporal_delimitation and there are no parameters that I can use.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Jun 2006 20:04:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/view-maintenance/m-p/1326257#M167088</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-05T20:04:30Z</dc:date>
    </item>
    <item>
      <title>Re: View Maintenance</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/view-maintenance/m-p/1326258#M167089</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If u've declared TABLES statement for the table ur going to insert in the external abap program, the content of the work area is available to the event routines.&lt;/P&gt;&lt;P&gt; Another method to have access  to data in ur external program from event routines is declare shared data area&lt;/P&gt;&lt;P&gt;using&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF COMMON PART area1&lt;/P&gt;&lt;P&gt;   &amp;lt;variables&amp;gt;&lt;/P&gt;&lt;P&gt;      END OF COMMON PART area1.&lt;/P&gt;&lt;P&gt;the declaration should be same in both programs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Sridhar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Jun 2006 20:14:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/view-maintenance/m-p/1326258#M167089</guid>
      <dc:creator>sridhar_k1</dc:creator>
      <dc:date>2006-06-05T20:14:28Z</dc:date>
    </item>
    <item>
      <title>Re: View Maintenance</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/view-maintenance/m-p/1326259#M167090</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Leon,&lt;/P&gt;&lt;P&gt;Im not very clear with your requiremnt but if you have to use this routine, why dont you copy routine into new Z include program and modify the same to meet your requirements and then call it from your table maintenance program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;Vikram&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls reward for helpful replies!!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Jun 2006 20:16:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/view-maintenance/m-p/1326259#M167090</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-05T20:16:01Z</dc:date>
    </item>
    <item>
      <title>Re: View Maintenance</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/view-maintenance/m-p/1326260#M167091</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Leon,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As per my knowledge,I don't think its possible to trigger those events. &lt;/P&gt;&lt;P&gt;My suggestion would be to do such checks/formats before updating to this table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regds&lt;/P&gt;&lt;P&gt;Manohar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Jun 2006 21:12:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/view-maintenance/m-p/1326260#M167091</guid>
      <dc:creator>Manohar2u</dc:creator>
      <dc:date>2006-06-05T21:12:13Z</dc:date>
    </item>
    <item>
      <title>Re: View Maintenance</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/view-maintenance/m-p/1326261#M167092</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What about those functions: VIEWPROC_&amp;lt;view&amp;gt; and VIEWFRAME_&amp;lt;view&amp;gt; or VIEW_MAINTENANCE. Are those to accomplish what I need. the interface is confusing.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Jun 2006 21:51:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/view-maintenance/m-p/1326261#M167092</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-06-05T21:51:39Z</dc:date>
    </item>
    <item>
      <title>Re: View Maintenance</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/view-maintenance/m-p/1326262#M167093</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you want to call subroutines created for table maintenance events from another abap program, you don't need to use VIEWPROC_&amp;lt;view&amp;gt; VIEWFRAM functions...&lt;/P&gt;&lt;P&gt;  What are the Table maintenance dialog events (event numbers) did you use? I believe there are no insert statements in those subroutines, just formatting.. isn't it?&lt;/P&gt;&lt;P&gt; Ifur abap program and the subroutines process one record at a time, then here's the pseudo code of the external abap program for using the event subroutines.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;report ZPROGRAM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tables ZTAB&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select single * from ZTAB where ...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;perform event_sub_routine(include_prog_name)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;insert ztab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;******&lt;/P&gt;&lt;P&gt;Include program&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;form event_sub_routine&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do the required format changes to ZTAB.&lt;/P&gt;&lt;P&gt;Adjust the code to work for both table maintenance and the external program&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endform&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 05 Jun 2006 22:13:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/view-maintenance/m-p/1326262#M167093</guid>
      <dc:creator>sridhar_k1</dc:creator>
      <dc:date>2006-06-05T22:13:17Z</dc:date>
    </item>
  </channel>
</rss>

