<?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: Issue with maintenance view in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-maintenance-view/m-p/9401915#M1736055</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vikas,&lt;/P&gt;&lt;P&gt;1. &lt;SPAN style="font-size: 10pt;"&gt;You have a Z-table and you created TMG on top of it&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;2. I guess your requirement is to add new field, create maintenance view for the Z-table and create TMG for this view&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The correct approach can be:&lt;/P&gt;&lt;P&gt;1. modify the database Z-table (add the field)&lt;/P&gt;&lt;P&gt;2. activate the Z-table.&lt;/P&gt;&lt;P&gt;3.a &lt;SPAN style="font-size: 10pt;"&gt;delete TMG for the Z-table by deleting it's function group in SE80&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;3.b re-generate TMG for the Z-table (you can choose either 3a or 3b)&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;4. in SE11 create maintenance view for your z-table&lt;/P&gt;&lt;P&gt;5. Create TMG for the new maintenance view&lt;/P&gt;&lt;P&gt;6. Modify the code in the generated code of TMG for this view to set some columns visible/invisible/editable/read only/...see the code excerpt at end of my post&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For precise steps on how to create maintenance view, it's TMG and how to make selected fields visible/invisible/editable, you can use my fully functional example at &lt;A href="http://oprsteny.com/?p=375"&gt;http://oprsteny.com/?p=375&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the link above see chapter about creation of table view (maintenance view + view TMG) + part where a column attributes are changed during runtime: &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;loop at &amp;lt;vim_tctrl&amp;gt;-cols assigning &amp;lt;fs_col&amp;gt;.
&amp;nbsp; if &amp;lt;fs_col&amp;gt;-screen-name eq 'YOUR_COLUMN_NAME'.
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;fs_col&amp;gt;-invisible = ''1'.&amp;nbsp;&amp;nbsp;&amp;nbsp; "&amp;nbsp; field is visible(0)/invisible(1)
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;fs_col&amp;gt;-sceen-input = '0'.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; " field is editable(1)/read only(0)
&amp;nbsp; endif.
endloop.&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 24 Apr 2013 13:05:09 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2013-04-24T13:05:09Z</dc:date>
    <item>
      <title>Issue with maintenance view</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-maintenance-view/m-p/9401910#M1736050</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;In have a z table and TMG is already created for this. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now the requirement is to add additional field into it and create maintenance view and allow only new field in changeable mode all other fields should be display only.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have done the above changes, but the issue is new field is not coming in maintenance view and even other fields are not coming in display only mode.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please suggest.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Vikas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Apr 2013 11:32:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-maintenance-view/m-p/9401910#M1736050</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-04-24T11:32:19Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with maintenance view</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-maintenance-view/m-p/9401911#M1736051</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi vikas&lt;/P&gt;&lt;P&gt;1. after alter your table go with tr se14 then select your table name &amp;amp; then&amp;nbsp; click active &amp;amp; adjust database&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. Reprocess TMG and then active database table &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if helpful rewards with points &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;RKarmakar&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Apr 2013 11:50:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-maintenance-view/m-p/9401911#M1736051</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-04-24T11:50:05Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with maintenance view</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-maintenance-view/m-p/9401912#M1736052</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vikas,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You are add additional field to ztable , activated properly.&lt;/P&gt;&lt;P&gt;Go to se14 ---Adjust table .&lt;/P&gt;&lt;P&gt;next&lt;/P&gt;&lt;P&gt;se11--open table---utilities----table maintenance generator--- delete existing TMG ----create TMG once again with same name &amp;amp; screen no.--save and activate.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Surly your new fields also come in maintenance view.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;next you want new fields in changeable mode.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;sm30 ---open your maintenance view -----system--status----you will find program name &amp;amp; screen no ...etc ------double click on screen no ---go to layout you will find all the fields in you table ---click on new fields it will open the properties of that field in that ---Attributes---programs tab ---you will find the drop down list there you have to select not possible option --you have to check input field check box . for&amp;nbsp; all new fields you have to do like that then it will allow that four fields in changeable mode.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Many thanks,&lt;/P&gt;&lt;P&gt;venkat&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Apr 2013 12:40:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-maintenance-view/m-p/9401912#M1736052</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-04-24T12:40:54Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with maintenance view</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-maintenance-view/m-p/9401913#M1736053</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vikas,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Open table in SE11 in editable mode.Then follow Menu path&lt;/P&gt;&lt;P&gt;Utilities--&amp;gt; Table Maintenance generator&amp;nbsp; &lt;/P&gt;&lt;P&gt;then Press delete Icon and Once deleted create new One.&lt;/P&gt;&lt;P&gt;You will find you fields appearing.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Apr 2013 12:51:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-maintenance-view/m-p/9401913#M1736053</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-04-24T12:51:27Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with maintenance view</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-maintenance-view/m-p/9401914#M1736054</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Delete the table maintenance generator and recreate it once again through se11.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Apr 2013 13:04:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-maintenance-view/m-p/9401914#M1736054</guid>
      <dc:creator>mayur_priyan</dc:creator>
      <dc:date>2013-04-24T13:04:21Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with maintenance view</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-maintenance-view/m-p/9401915#M1736055</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vikas,&lt;/P&gt;&lt;P&gt;1. &lt;SPAN style="font-size: 10pt;"&gt;You have a Z-table and you created TMG on top of it&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;2. I guess your requirement is to add new field, create maintenance view for the Z-table and create TMG for this view&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The correct approach can be:&lt;/P&gt;&lt;P&gt;1. modify the database Z-table (add the field)&lt;/P&gt;&lt;P&gt;2. activate the Z-table.&lt;/P&gt;&lt;P&gt;3.a &lt;SPAN style="font-size: 10pt;"&gt;delete TMG for the Z-table by deleting it's function group in SE80&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;3.b re-generate TMG for the Z-table (you can choose either 3a or 3b)&lt;BR /&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;4. in SE11 create maintenance view for your z-table&lt;/P&gt;&lt;P&gt;5. Create TMG for the new maintenance view&lt;/P&gt;&lt;P&gt;6. Modify the code in the generated code of TMG for this view to set some columns visible/invisible/editable/read only/...see the code excerpt at end of my post&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For precise steps on how to create maintenance view, it's TMG and how to make selected fields visible/invisible/editable, you can use my fully functional example at &lt;A href="http://oprsteny.com/?p=375"&gt;http://oprsteny.com/?p=375&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the link above see chapter about creation of table view (maintenance view + view TMG) + part where a column attributes are changed during runtime: &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;loop at &amp;lt;vim_tctrl&amp;gt;-cols assigning &amp;lt;fs_col&amp;gt;.
&amp;nbsp; if &amp;lt;fs_col&amp;gt;-screen-name eq 'YOUR_COLUMN_NAME'.
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;fs_col&amp;gt;-invisible = ''1'.&amp;nbsp;&amp;nbsp;&amp;nbsp; "&amp;nbsp; field is visible(0)/invisible(1)
&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;fs_col&amp;gt;-sceen-input = '0'.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; " field is editable(1)/read only(0)
&amp;nbsp; endif.
endloop.&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 24 Apr 2013 13:05:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-maintenance-view/m-p/9401915#M1736055</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-04-24T13:05:09Z</dc:date>
    </item>
  </channel>
</rss>

