<?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: Customize Master Table in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/customize-master-table/m-p/11868702#M1959667</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I tried with your given example and managed to perform the required validation. Here's the source code for your reference. &lt;SPAN __jive_emoticon_name="happy" __jive_macro_name="emoticon" class="jive_macro_emoticon jive_emote jive_macro" src="https://community.sap.com/111/images/emoticons/happy.gif"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
&lt;P&gt;FORM validate_xfeld.&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; DATA: lw_struc&amp;nbsp;&amp;nbsp; TYPE ztt_tab,&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; lv_message TYPE string.&amp;nbsp;&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LOOP AT total.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; IF= 'N'.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MOVE-CORRESPONDINGTO lw_struc.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; IF lw_struc-zkey &amp;lt;&amp;gt; 'B' AND lw_struc-xfeld = 'X'.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CONCATENATE 'Field XFELD cannot be maintained by key' lw_struc-zkey&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; INTO lv_message SEPARATED BY space.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MESSAGE lv_message TYPE 'I'.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; vim_abort_saving = 'X'.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ENDIF.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ENDIF.&amp;nbsp;&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ENDLOOP. &lt;/P&gt;
&lt;P&gt;ENDFORM.&lt;/P&gt;
&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 25 Aug 2016 10:10:31 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2016-08-25T10:10:31Z</dc:date>
    <item>
      <title>Customize Master Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/customize-master-table/m-p/11868697#M1959662</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Expert, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have created a customize master table and allowed user maintenance.&amp;nbsp; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How can I do to make sure only 1 xfeld field(X) is allowed to maintain?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" width="214"&gt;&lt;TBODY&gt;&lt;TR&gt;&lt;TD class="xl65" height="20" style="font-size: 11pt; color: white; font-weight: bold; font-family: Calibri, sans-serif; border: 0.5pt solid windowtext; background: #5b9bd5;" width="76"&gt;Client&lt;/TD&gt;&lt;TD class="xl66" style="font-size: 11pt; color: white; font-weight: bold; font-family: Calibri, sans-serif; border: 0.5pt solid windowtext; background: #5b9bd5;" width="62"&gt;Key&lt;/TD&gt;&lt;TD class="xl67" style="font-size: 11pt; color: white; font-weight: bold; font-family: Calibri, sans-serif; border: 0.5pt solid windowtext; background: #5b9bd5;" width="76"&gt;XFELD&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl68" height="20" style="font-size: 11pt; color: black; font-family: Calibri, sans-serif; border: 0.5pt solid windowtext; background: #ddebf7;"&gt;100&lt;/TD&gt;&lt;TD class="xl69" style="font-size: 11pt; color: black; font-family: Calibri, sans-serif; border: 0.5pt solid windowtext; background: #ddebf7;"&gt;A&lt;/TD&gt;&lt;TD class="xl70" style="font-size: 11pt; color: black; font-family: Calibri, sans-serif; border: 0.5pt solid windowtext; background: #ddebf7;"&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl68" height="20" style="font-size: 11pt; color: black; font-family: Calibri, sans-serif; border: 0.5pt solid windowtext;"&gt;100&lt;/TD&gt;&lt;TD class="xl69" style="font-size: 11pt; color: black; font-family: Calibri, sans-serif; border: 0.5pt solid windowtext;"&gt;B&lt;/TD&gt;&lt;TD class="xl70" style="font-size: 11pt; color: black; font-family: Calibri, sans-serif; border: 0.5pt solid windowtext;"&gt;X&lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl68" height="20" style="font-size: 11pt; color: black; font-family: Calibri, sans-serif; border: 0.5pt solid windowtext; background: #ddebf7;"&gt;100&lt;/TD&gt;&lt;TD class="xl69" style="font-size: 11pt; color: black; font-family: Calibri, sans-serif; border: 0.5pt solid windowtext; background: #ddebf7;"&gt;C&lt;/TD&gt;&lt;TD class="xl70" style="font-size: 11pt; color: black; font-family: Calibri, sans-serif; border: 0.5pt solid windowtext; background: #ddebf7;"&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;TR&gt;&lt;TD class="xl71" height="20" style="font-size: 11pt; color: black; font-family: Calibri, sans-serif; border: 0.5pt solid windowtext;"&gt;100&lt;/TD&gt;&lt;TD class="xl72" style="font-size: 11pt; color: black; font-family: Calibri, sans-serif; border: 0.5pt solid windowtext;"&gt;D&lt;/TD&gt;&lt;TD class="xl73" style="font-size: 11pt; color: black; font-family: Calibri, sans-serif; border: 0.5pt solid windowtext;"&gt; &lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;-Ben-&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 19 Aug 2016 08:28:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/customize-master-table/m-p/11868697#M1959662</guid>
      <dc:creator>benlim</dc:creator>
      <dc:date>2016-08-19T08:28:06Z</dc:date>
    </item>
    <item>
      <title>Re: Customize Master Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/customize-master-table/m-p/11868698#M1959663</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ben,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can go to your customized table, then &lt;EM&gt;Utilities&lt;/EM&gt; -&lt;EM&gt;&amp;gt;&lt;/EM&gt; &lt;EM&gt;Table Maintenance Generator&lt;/EM&gt;. Go to the Overview screen and check/tick whichever field you do not want to user to maintain in the 'Output only' column. This will disable the field for edit in SM30. Hope it solves your issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/jiveimages/1022762" width="450" /&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/jiveimages/1022764" width="450" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Aug 2016 06:42:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/customize-master-table/m-p/11868698#M1959663</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-08-25T06:42:20Z</dc:date>
    </item>
    <item>
      <title>Re: Customize Master Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/customize-master-table/m-p/11868699#M1959664</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN style="font-size: 10pt;"&gt;Hi @&lt;/SPAN&gt;&lt;A _jive_internal="true" data-avatarid="-1" data-userid="689679" data-username="angela.chong" href="https://answers.sap.com/people/angela.chong" style="font-weight: bold; font-size: 10.8px; color: #8b8b8b; background: #ffffff;"&gt;Angela Chong&lt;/A&gt;&lt;SPAN style="font-size: 10pt;"&gt;,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your suggestion. But my requirement is allowed the user to maintain but only 1 field is allowed among the key. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Scenario 1:&lt;/P&gt;&lt;P&gt;&lt;SPAN style="font-size: 13.3333px;"&gt;Key B is allowed to maintain and save.&lt;/SPAN&gt;&lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" style="border: 0px; font-size: 12px; color: rgb(51, 51, 51); width: 214px; background: rgb(248, 248, 248);"&gt;&lt;TBODY style="font-weight: inherit; font-style: inherit; font-family: inherit; background: transparent;"&gt;&lt;TR style="border: 0px; font-weight: inherit; font-style: inherit; font-family: inherit; background: transparent;"&gt;&lt;/TR&gt;&lt;TR style="border: 0px; font-weight: inherit; font-style: inherit; font-family: inherit; background: transparent;"&gt;&lt;TD class="xl65" height="20" style="padding-right: 4px; padding-left: 4px; border: 0.5pt solid windowtext; font-weight: bold; font-style: inherit; font-size: 11pt; font-family: Calibri, sans-serif; color: white; background: #5b9bd5;" width="76"&gt;Client&lt;/TD&gt;&lt;TD class="xl66" style="padding-right: 4px; padding-left: 4px; border: 0.5pt solid windowtext; font-weight: bold; font-style: inherit; font-size: 11pt; font-family: Calibri, sans-serif; color: white; background: #5b9bd5;" width="62"&gt;Key&lt;/TD&gt;&lt;TD class="xl67" style="padding-right: 4px; padding-left: 4px; border: 0.5pt solid windowtext; font-weight: bold; font-style: inherit; font-size: 11pt; font-family: Calibri, sans-serif; color: white; background: #5b9bd5;" width="76"&gt;XFELD&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="border: 0px; font-weight: inherit; font-style: inherit; font-family: inherit; background: transparent;"&gt;&lt;TD class="xl68" height="20" style="padding-right: 4px; padding-left: 4px; border: 0.5pt solid windowtext; font-style: inherit; font-size: 11pt; font-family: Calibri, sans-serif; color: black; background: #ddebf7;"&gt;100&lt;/TD&gt;&lt;TD class="xl69" style="padding-right: 4px; padding-left: 4px; border: 0.5pt solid windowtext; font-style: inherit; font-size: 11pt; font-family: Calibri, sans-serif; color: black; background: #ddebf7;"&gt;A&lt;/TD&gt;&lt;TD class="xl70" style="padding-right: 4px; padding-left: 4px; border: 0.5pt solid windowtext; font-style: inherit; font-size: 11pt; font-family: Calibri, sans-serif; color: black; background: #ddebf7;"&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="border: 0px; font-weight: inherit; font-style: inherit; font-family: inherit; background: transparent;"&gt;&lt;TD class="xl68" height="20" style="padding-right: 4px; padding-left: 4px; border: 0.5pt solid windowtext; font-style: inherit; font-size: 11pt; font-family: Calibri, sans-serif; color: black; background: transparent;"&gt;100&lt;/TD&gt;&lt;TD class="xl69" style="padding-right: 4px; padding-left: 4px; border: 0.5pt solid windowtext; font-style: inherit; font-size: 11pt; font-family: Calibri, sans-serif; color: black; background: transparent;"&gt;B&lt;/TD&gt;&lt;TD class="xl70" style="padding-right: 4px; padding-left: 4px; border: 0.5pt solid windowtext; font-style: inherit; font-size: 11pt; font-family: Calibri, sans-serif; color: black; background: transparent;"&gt;X&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="border: 0px; font-weight: inherit; font-style: inherit; font-family: inherit; background: transparent;"&gt;&lt;TD class="xl68" height="20" style="padding-right: 4px; padding-left: 4px; border: 0.5pt solid windowtext; font-style: inherit; font-size: 11pt; font-family: Calibri, sans-serif; color: black; background: #ddebf7;"&gt;100&lt;/TD&gt;&lt;TD class="xl69" style="padding-right: 4px; padding-left: 4px; border: 0.5pt solid windowtext; font-style: inherit; font-size: 11pt; font-family: Calibri, sans-serif; color: black; background: #ddebf7;"&gt;C&lt;/TD&gt;&lt;TD class="xl70" style="padding-right: 4px; padding-left: 4px; border: 0.5pt solid windowtext; font-style: inherit; font-size: 11pt; font-family: Calibri, sans-serif; color: black; background: #ddebf7;"&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="border: 0px; font-weight: inherit; font-style: inherit; font-family: inherit; background: transparent;"&gt;&lt;TD class="xl71" height="20" style="padding-right: 4px; padding-left: 4px; border: 0.5pt solid windowtext; font-style: inherit; font-size: 11pt; font-family: Calibri, sans-serif; color: black; background: transparent;"&gt;100&lt;/TD&gt;&lt;TD class="xl72" style="padding-right: 4px; padding-left: 4px; border: 0.5pt solid windowtext; font-style: inherit; font-size: 11pt; font-family: Calibri, sans-serif; color: black; background: transparent;"&gt;D&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Scenario 2:&lt;/P&gt;&lt;P&gt;Prompt error and not allowed to save as only 1 xfeld field can be maintained. &lt;/P&gt;&lt;TABLE border="0" cellpadding="0" cellspacing="0" style="border: 0px; font-size: 12px; color: rgb(51, 51, 51); width: 214px; background: rgb(248, 248, 248);"&gt;&lt;TBODY style="font-weight: inherit; font-style: inherit; font-family: inherit; background: transparent;"&gt;&lt;TR style="border: 0px; font-weight: inherit; font-style: inherit; font-family: inherit; background: transparent;"&gt;&lt;/TR&gt;&lt;TR style="border: 0px; font-weight: inherit; font-style: inherit; font-family: inherit; background: transparent;"&gt;&lt;TD class="xl65" height="20" style="padding-right: 4px; padding-left: 4px; border: 0.5pt solid windowtext; font-weight: bold; font-style: inherit; font-size: 11pt; font-family: Calibri, sans-serif; color: white; background: #5b9bd5;" width="76"&gt;Client&lt;/TD&gt;&lt;TD class="xl66" style="padding-right: 4px; padding-left: 4px; border: 0.5pt solid windowtext; font-weight: bold; font-style: inherit; font-size: 11pt; font-family: Calibri, sans-serif; color: white; background: #5b9bd5;" width="62"&gt;Key&lt;/TD&gt;&lt;TD class="xl67" style="padding-right: 4px; padding-left: 4px; border: 0.5pt solid windowtext; font-weight: bold; font-style: inherit; font-size: 11pt; font-family: Calibri, sans-serif; color: white; background: #5b9bd5;" width="76"&gt;XFELD&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="border: 0px; font-weight: inherit; font-style: inherit; font-family: inherit; background: transparent;"&gt;&lt;TD class="xl68" height="20" style="padding-right: 4px; padding-left: 4px; border: 0.5pt solid windowtext; font-style: inherit; font-size: 11pt; font-family: Calibri, sans-serif; color: black; background: #ddebf7;"&gt;100&lt;/TD&gt;&lt;TD class="xl69" style="padding-right: 4px; padding-left: 4px; border: 0.5pt solid windowtext; font-style: inherit; font-size: 11pt; font-family: Calibri, sans-serif; color: black; background: #ddebf7;"&gt;A&lt;/TD&gt;&lt;TD class="xl70" style="padding-right: 4px; padding-left: 4px; border: 0.5pt solid windowtext; font-style: inherit; font-size: 11pt; font-family: Calibri, sans-serif; color: black; background: #ddebf7;"&gt;X&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="border: 0px; font-weight: inherit; font-style: inherit; font-family: inherit; background: transparent;"&gt;&lt;TD class="xl68" height="20" style="padding-right: 4px; padding-left: 4px; border: 0.5pt solid windowtext; font-style: inherit; font-size: 11pt; font-family: Calibri, sans-serif; color: black; background: transparent;"&gt;100&lt;/TD&gt;&lt;TD class="xl69" style="padding-right: 4px; padding-left: 4px; border: 0.5pt solid windowtext; font-style: inherit; font-size: 11pt; font-family: Calibri, sans-serif; color: black; background: transparent;"&gt;B&lt;/TD&gt;&lt;TD class="xl70" style="padding-right: 4px; padding-left: 4px; border: 0.5pt solid windowtext; font-style: inherit; font-size: 11pt; font-family: Calibri, sans-serif; color: black; background: transparent;"&gt;X&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="border: 0px; font-weight: inherit; font-style: inherit; font-family: inherit; background: transparent;"&gt;&lt;TD class="xl68" height="20" style="padding-right: 4px; padding-left: 4px; border: 0.5pt solid windowtext; font-style: inherit; font-size: 11pt; font-family: Calibri, sans-serif; color: black; background: #ddebf7;"&gt;100&lt;/TD&gt;&lt;TD class="xl69" style="padding-right: 4px; padding-left: 4px; border: 0.5pt solid windowtext; font-style: inherit; font-size: 11pt; font-family: Calibri, sans-serif; color: black; background: #ddebf7;"&gt;C&lt;/TD&gt;&lt;TD class="xl70" style="padding-right: 4px; padding-left: 4px; border: 0.5pt solid windowtext; font-style: inherit; font-size: 11pt; font-family: Calibri, sans-serif; color: black; background: #ddebf7;"&gt;&lt;/TD&gt;&lt;/TR&gt;&lt;TR style="border: 0px; font-weight: inherit; font-style: inherit; font-family: inherit; background: transparent;"&gt;&lt;TD class="xl71" height="20" style="padding-right: 4px; padding-left: 4px; border: 0.5pt solid windowtext; font-style: inherit; font-size: 11pt; font-family: Calibri, sans-serif; color: black; background: transparent;"&gt;100&lt;/TD&gt;&lt;TD class="xl72" style="padding-right: 4px; padding-left: 4px; border: 0.5pt solid windowtext; font-style: inherit; font-size: 11pt; font-family: Calibri, sans-serif; color: black; background: transparent;"&gt;D&lt;/TD&gt;&lt;/TR&gt;&lt;/TBODY&gt;&lt;/TABLE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How do I achieve scenario 2 for customize table maintenance?&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;Regards,&lt;/P&gt;&lt;P&gt;-Ben-&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Aug 2016 06:54:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/customize-master-table/m-p/11868699#M1959664</guid>
      <dc:creator>benlim</dc:creator>
      <dc:date>2016-08-25T06:54:08Z</dc:date>
    </item>
    <item>
      <title>Re: Customize Master Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/customize-master-table/m-p/11868700#M1959665</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Which event(s) of dialog maintenance did you already try?&amp;nbsp; (did you find some save event where you could loop at table TOTAL and count records with the box checked)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ref: in online help of&amp;nbsp; BC - Generate Table Maintenance Dialog, look for &lt;EM&gt;&lt;A href="https://help.sap.com/saphelp_nw70/helpdata/en/91/ca9f0ea9d111d1a5690000e82deaaa/content.htm"&gt;Extended Table Maintenance Events&lt;/A&gt;.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raymond&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Aug 2016 07:12:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/customize-master-table/m-p/11868700#M1959665</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2016-08-25T07:12:44Z</dc:date>
    </item>
    <item>
      <title>Re: Customize Master Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/customize-master-table/m-p/11868701#M1959666</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You can go to the 'Generate Table Maintenance Dialog', Environment -&amp;gt; Modification -&amp;gt; Events, where you create a subroutine to manipulate the data or perform a checking/validation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/jiveimages/1022770" width="450" /&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Aug 2016 08:00:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/customize-master-table/m-p/11868701#M1959666</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-08-25T08:00:20Z</dc:date>
    </item>
    <item>
      <title>Re: Customize Master Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/customize-master-table/m-p/11868702#M1959667</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I tried with your given example and managed to perform the required validation. Here's the source code for your reference. &lt;SPAN __jive_emoticon_name="happy" __jive_macro_name="emoticon" class="jive_macro_emoticon jive_emote jive_macro" src="https://community.sap.com/111/images/emoticons/happy.gif"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
&lt;P&gt;FORM validate_xfeld.&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; DATA: lw_struc&amp;nbsp;&amp;nbsp; TYPE ztt_tab,&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; lv_message TYPE string.&amp;nbsp;&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; LOOP AT total.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; IF= 'N'.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MOVE-CORRESPONDINGTO lw_struc.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; IF lw_struc-zkey &amp;lt;&amp;gt; 'B' AND lw_struc-xfeld = 'X'.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; CONCATENATE 'Field XFELD cannot be maintained by key' lw_struc-zkey&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; INTO lv_message SEPARATED BY space.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; MESSAGE lv_message TYPE 'I'.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; vim_abort_saving = 'X'.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ENDIF.&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ENDIF.&amp;nbsp;&amp;nbsp; &lt;/P&gt;
&lt;P&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ENDLOOP. &lt;/P&gt;
&lt;P&gt;ENDFORM.&lt;/P&gt;
&lt;/CODE&gt;&lt;/PRE&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 25 Aug 2016 10:10:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/customize-master-table/m-p/11868702#M1959667</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2016-08-25T10:10:31Z</dc:date>
    </item>
    <item>
      <title>Re: Customize Master Table</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/customize-master-table/m-p/11868703#M1959668</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi @&lt;STRONG style="font-size: 10.8px; color: #333333; background: #ffffff;"&gt;&lt;A _jive_internal="true" class="jiveTT-hover-user jive-username-link" data-avatarid="-1" data-externalid="" data-presence="null" data-userid="689679" data-username="angela.chong" href="https://answers.sap.com/people/angela.chong" style="padding: 0 3px 0 0; font-weight: inherit; font-style: inherit; font-size: 1.1em; font-family: inherit; text-decoration: underline !important; color: #3778c7; background: transparent;"&gt;Angela Chong&lt;/A&gt;&lt;/STRONG&gt;,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for such details explanation with sample code. This has help me achieve my requirements. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot! &lt;SPAN __jive_emoticon_name="happy" __jive_macro_name="emoticon" class="jive_macro jive_emote" src="https://community.sap.com/108/images/emoticons/happy.gif"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;-Ben-&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Aug 2016 08:03:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/customize-master-table/m-p/11868703#M1959668</guid>
      <dc:creator>benlim</dc:creator>
      <dc:date>2016-08-26T08:03:45Z</dc:date>
    </item>
  </channel>
</rss>

