<?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: Maintenance View: Loop at screen! in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/maintenance-view-loop-at-screen/m-p/961313#M67440</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Joseph,&lt;/P&gt;&lt;P&gt;I think that the easiest way to achieve that is not thru the flow logic, but directly thru the layout editor.&lt;/P&gt;&lt;P&gt;1. Enter transaction SE51 and press button "change" for radio button "flow logic".&lt;/P&gt;&lt;P&gt;2. Then double-click the table-control.&lt;/P&gt;&lt;P&gt;3. Then push button "Ctrl elements"&lt;/P&gt;&lt;P&gt;4. Place the cursor over the name of the field you want to change, and press "Attributes"&lt;/P&gt;&lt;P&gt;5. Now just simply click flag "Output only"&lt;/P&gt;&lt;P&gt;PS: I'm using 46C with Text-based layout editor&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope it helps. Best regards,&lt;/P&gt;&lt;P&gt;Alvaro&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 28 Jun 2005 06:57:22 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-06-28T06:57:22Z</dc:date>
    <item>
      <title>Maintenance View: Loop at screen!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/maintenance-view-loop-at-screen/m-p/961312#M67439</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;I created a view maintenance on Ztable.&lt;/P&gt;&lt;P&gt;This table contains 3 fields.&lt;/P&gt;&lt;P&gt;I want to display one of this fields in "Display Mode" when the user Create/change the table in sm30.&lt;/P&gt;&lt;P&gt;There is an event in maintenace view that allow me to do this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank you&lt;/P&gt;&lt;P&gt;Joseph&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Jun 2005 06:48:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/maintenance-view-loop-at-screen/m-p/961312#M67439</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-06-28T06:48:51Z</dc:date>
    </item>
    <item>
      <title>Re: Maintenance View: Loop at screen!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/maintenance-view-loop-at-screen/m-p/961313#M67440</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Joseph,&lt;/P&gt;&lt;P&gt;I think that the easiest way to achieve that is not thru the flow logic, but directly thru the layout editor.&lt;/P&gt;&lt;P&gt;1. Enter transaction SE51 and press button "change" for radio button "flow logic".&lt;/P&gt;&lt;P&gt;2. Then double-click the table-control.&lt;/P&gt;&lt;P&gt;3. Then push button "Ctrl elements"&lt;/P&gt;&lt;P&gt;4. Place the cursor over the name of the field you want to change, and press "Attributes"&lt;/P&gt;&lt;P&gt;5. Now just simply click flag "Output only"&lt;/P&gt;&lt;P&gt;PS: I'm using 46C with Text-based layout editor&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope it helps. Best regards,&lt;/P&gt;&lt;P&gt;Alvaro&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Jun 2005 06:57:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/maintenance-view-loop-at-screen/m-p/961313#M67440</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-06-28T06:57:22Z</dc:date>
    </item>
    <item>
      <title>Re: Maintenance View: Loop at screen!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/maintenance-view-loop-at-screen/m-p/961314#M67441</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;Generate a table maintenance for Z table you created in SE11-&amp;gt;Utilities-&amp;gt;Table Maintenance Generator.Give appropriate authorisation group while genearting table maintenance.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Once it's get generated.Then click function group-&amp;gt;Main program.&lt;/P&gt;&lt;P&gt;Uncomment the PBO Include which appears as commented.Give it suitable name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then in the PBO write the following., &lt;/P&gt;&lt;P&gt;module display.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;module display output.&lt;/P&gt;&lt;P&gt;LOOP AT SCREEN.&lt;/P&gt;&lt;P&gt;  if screen-name = 'ZZZtable-FIELDNAME'.&lt;/P&gt;&lt;P&gt;      screen-input = '0'.&lt;/P&gt;&lt;P&gt;      MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;    ENDIF.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;endmodule.                 &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope it helps.If so,reward points.Otherwise ,get back.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Jun 2005 07:04:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/maintenance-view-loop-at-screen/m-p/961314#M67441</guid>
      <dc:creator>jayanthi_jayaraman</dc:creator>
      <dc:date>2005-06-28T07:04:02Z</dc:date>
    </item>
    <item>
      <title>Re: Maintenance View: Loop at screen!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/maintenance-view-loop-at-screen/m-p/961315#M67442</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Alvaro,&lt;/P&gt;&lt;P&gt;I don't like this method...because you know if you activate the screen (if you add new fields or something like that) your changes are deleted.&lt;/P&gt;&lt;P&gt;I was thinking about an event...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Jun 2005 07:10:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/maintenance-view-loop-at-screen/m-p/961315#M67442</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-06-28T07:10:46Z</dc:date>
    </item>
    <item>
      <title>Re: Maintenance View: Loop at screen!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/maintenance-view-loop-at-screen/m-p/961316#M67443</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;  If you have defined the table maintenance generator for the ZTable, you can directly go to Utilities-&amp;gt;table maintenance generator-&amp;gt;Environment-&amp;gt;modification-&amp;gt;maintenancescreen, here select the screen generated from table maintenance, by double clicking on the screen you will navigate to the screen painter of that particular screen, go to screen layout, change the attributes of the field to Output only &amp;amp; activate the screen. This will make the field display only.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Jun 2005 07:11:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/maintenance-view-loop-at-screen/m-p/961316#M67443</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-06-28T07:11:32Z</dc:date>
    </item>
    <item>
      <title>Re: Maintenance View: Loop at screen!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/maintenance-view-loop-at-screen/m-p/961317#M67444</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 can make use of the database utility (SE14) to adjust the database after making changes to the screen layout.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Jun 2005 07:14:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/maintenance-view-loop-at-screen/m-p/961317#M67444</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-06-28T07:14:11Z</dc:date>
    </item>
    <item>
      <title>Re: Maintenance View: Loop at screen!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/maintenance-view-loop-at-screen/m-p/961318#M67445</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is it possible to make some changes to generated objects thr. maintenance generator.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;E.g. : I want to have some valiations / checks for certain fields&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;Nitin&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Jun 2005 08:16:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/maintenance-view-loop-at-screen/m-p/961318#M67445</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-06-28T08:16:47Z</dc:date>
    </item>
    <item>
      <title>Re: Maintenance View: Loop at screen!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/maintenance-view-loop-at-screen/m-p/961319#M67446</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;To generate table maintenance,check this link.&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_util464/helpdata/en/69/c2516e4ba111d189750000e8322d00/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_util464/helpdata/en/69/c2516e4ba111d189750000e8322d00/content.htm&lt;/A&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 28 Jun 2005 09:15:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/maintenance-view-loop-at-screen/m-p/961319#M67446</guid>
      <dc:creator>jayanthi_jayaraman</dc:creator>
      <dc:date>2005-06-28T09:15:14Z</dc:date>
    </item>
  </channel>
</rss>

