<?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: Make editable a custom field in CS01 or CS02 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/make-editable-a-custom-field-in-cs01-or-cs02/m-p/12454236#M1999805</link>
    <description>&lt;P&gt;Hi Fernando,&lt;/P&gt;&lt;P&gt;I‘m glad you figured it out. I couldn’t tell you the exact dynpro numbers, since we do not have any custom fields implemented there and it depends on the place where you put them. Thank you for sharing your solution.&lt;/P&gt;&lt;P&gt;Regards&lt;BR /&gt;Marco&lt;/P&gt;</description>
    <pubDate>Wed, 14 Apr 2021 15:51:09 GMT</pubDate>
    <dc:creator>Marco_Flamm</dc:creator>
    <dc:date>2021-04-14T15:51:09Z</dc:date>
    <item>
      <title>Make editable a custom field in CS01 or CS02</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/make-editable-a-custom-field-in-cs01-or-cs02/m-p/12454232#M1999801</link>
      <description>&lt;P&gt;Hello, &lt;/P&gt;
  &lt;P&gt;I have added a zzfield in CI_STPO, I see it in the tab Material in CS01/CS02/CS03, I have activate the exits EXIT_SAPLCSDI_002 and EXIT_SAPLCSDI_003 to save and recuperate the value for the field. &lt;/P&gt;
  &lt;P&gt;The problem is I can't modify the zzfield in CS01/CS02. The field appear not editable. &lt;/P&gt;
  &lt;P&gt;Somebody found the solution to edit the custom field in CS01/CS02? &lt;/P&gt;
  &lt;P&gt;Thank you for you help. &lt;/P&gt;
  &lt;P&gt;Fernando.&lt;/P&gt;</description>
      <pubDate>Tue, 13 Apr 2021 13:56:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/make-editable-a-custom-field-in-cs01-or-cs02/m-p/12454232#M1999801</guid>
      <dc:creator>fernando_1980</dc:creator>
      <dc:date>2021-04-13T13:56:26Z</dc:date>
    </item>
    <item>
      <title>Re: Make editable a custom field in CS01 or CS02</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/make-editable-a-custom-field-in-cs01-or-cs02/m-p/12454233#M1999802</link>
      <description>&lt;P&gt;Hi Fernando,&lt;/P&gt;&lt;P&gt;please go to the corresponding screen exit within your enhancement project (where you activate the exits) and add a code similar to:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;LOOP AT SCREEN INTO DATA(ls_screen).
  IF ls_screen-name = 'YOURFIELD'.
    IF sy-tcode = 'CS01' OR sy-tcode = 'CS02'.
      ls_screen-input = '1'.
    ELSE.
      ls_screen-input = '0'.
    ENDIF.
    MODIFY SCREEN FROM ls_screen.
  ENDIF.
ENDLOOP.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Please have a look at the following Tutorials for further information:&lt;BR /&gt;&lt;A href="http://saptechnical.com/Tutorials/ExitsBADIs/BOM/Index.htm" target="test_blank"&gt;http://saptechnical.com/Tutorials/ExitsBADIs/BOM/Index.htm&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://blogs.sap.com/2014/05/14/to-display-custom-field-in-bom-transactions-cs01-cs02-cs03-cs11-cs12-cs13/" target="test_blank"&gt;https://blogs.sap.com/2014/05/14/to-display-custom-field-in-bom-transactions-cs01-cs02-cs03-cs11-cs12-cs13/&lt;/A&gt;&lt;BR /&gt;&lt;A href="https://help.sap.com/doc/abapdocu_752_index_htm/7.52/de-DE/abapmodify_screen.htm" target="test_blank"&gt;https://help.sap.com/doc/abapdocu_752_index_htm/7.52/de-DE/abapmodify_screen.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;</description>
      <pubDate>Tue, 13 Apr 2021 16:01:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/make-editable-a-custom-field-in-cs01-or-cs02/m-p/12454233#M1999802</guid>
      <dc:creator>Marco_Flamm</dc:creator>
      <dc:date>2021-04-13T16:01:19Z</dc:date>
    </item>
    <item>
      <title>Re: Make editable a custom field in CS01 or CS02</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/make-editable-a-custom-field-in-cs01-or-cs02/m-p/12454234#M1999803</link>
      <description>&lt;P&gt;Thank you Marco, I don't find any screen exit in the enhancement project where the code is executed to put the typical code about loop at screen.&lt;/P&gt;&lt;P&gt;And in the tutorials explain how to add a new field to show information but these fields are not editable.&lt;/P&gt;</description>
      <pubDate>Wed, 14 Apr 2021 06:20:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/make-editable-a-custom-field-in-cs01-or-cs02/m-p/12454234#M1999803</guid>
      <dc:creator>fernando_1980</dc:creator>
      <dc:date>2021-04-14T06:20:50Z</dc:date>
    </item>
    <item>
      <title>Re: Make editable a custom field in CS01 or CS02</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/make-editable-a-custom-field-in-cs01-or-cs02/m-p/12454235#M1999804</link>
      <description>&lt;P&gt;Finally, I have done it!&lt;/P&gt;&lt;P&gt;Material tab in CS01 is the dynpro 0152 in include LCSDIO02.&lt;/P&gt;&lt;P&gt;At line 162 (when isc_tcmat.), we have the next code:&lt;/P&gt;&lt;P&gt;loop at tcmat-cols into cols_wa.&lt;BR /&gt;  if cols_wa-screen-name eq '*RC29P-KZBEZ' or cols_wa-screen-name eq 'RC29P-KZBEZ'.&lt;/P&gt;&lt;P&gt;The zz fields in CI_STPO are name like &amp;lt;D0152-FSxx&amp;gt;. I have created and enhancement sport and I have implemented it to change input = 1:&lt;/P&gt;&lt;P&gt;cols_wa-screen-input = '1'.&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Fernando.&lt;/P&gt;</description>
      <pubDate>Wed, 14 Apr 2021 09:09:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/make-editable-a-custom-field-in-cs01-or-cs02/m-p/12454235#M1999804</guid>
      <dc:creator>fernando_1980</dc:creator>
      <dc:date>2021-04-14T09:09:15Z</dc:date>
    </item>
    <item>
      <title>Re: Make editable a custom field in CS01 or CS02</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/make-editable-a-custom-field-in-cs01-or-cs02/m-p/12454236#M1999805</link>
      <description>&lt;P&gt;Hi Fernando,&lt;/P&gt;&lt;P&gt;I‘m glad you figured it out. I couldn’t tell you the exact dynpro numbers, since we do not have any custom fields implemented there and it depends on the place where you put them. Thank you for sharing your solution.&lt;/P&gt;&lt;P&gt;Regards&lt;BR /&gt;Marco&lt;/P&gt;</description>
      <pubDate>Wed, 14 Apr 2021 15:51:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/make-editable-a-custom-field-in-cs01-or-cs02/m-p/12454236#M1999805</guid>
      <dc:creator>Marco_Flamm</dc:creator>
      <dc:date>2021-04-14T15:51:09Z</dc:date>
    </item>
    <item>
      <title>Re: Make editable a custom field in CS01 or CS02</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/make-editable-a-custom-field-in-cs01-or-cs02/m-p/13671673#M2027656</link>
      <description>&lt;P&gt;&lt;SPAN&gt;Hi Fernando,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I found there is no implicit enhancement in include LCSDIO02, so we have to modify SAP code with access key. is it correct?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;BR.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;Jason.&lt;/SPAN&gt;&lt;/P&gt;</description>
      <pubDate>Tue, 16 Apr 2024 06:29:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/make-editable-a-custom-field-in-cs01-or-cs02/m-p/13671673#M2027656</guid>
      <dc:creator>JasonY</dc:creator>
      <dc:date>2024-04-16T06:29:01Z</dc:date>
    </item>
    <item>
      <title>Re: Make editable a custom field in CS01 or CS02</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/make-editable-a-custom-field-in-cs01-or-cs02/m-p/13671910#M2027660</link>
      <description>&lt;P&gt;No, either&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Use the explicit Enhancement point (LCSDIO02_01 / ES_SAPLCSDI)&lt;/LI&gt;&lt;LI&gt;Work in the PBO of the custom screen (SAPLXCSA 1000) you defined in CMOD on Enhancement&amp;nbsp;PCSD0002.&lt;/LI&gt;&lt;/UL&gt;</description>
      <pubDate>Tue, 16 Apr 2024 09:43:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/make-editable-a-custom-field-in-cs01-or-cs02/m-p/13671910#M2027660</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2024-04-16T09:43:22Z</dc:date>
    </item>
    <item>
      <title>Re: Make editable a custom field in CS01 or CS02</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/make-editable-a-custom-field-in-cs01-or-cs02/m-p/13672685#M2027686</link>
      <description>&lt;P&gt;Hi Raymond,&lt;/P&gt;&lt;P&gt;Thank you for your reply.&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;There are 2 modules in include&amp;nbsp;LCSDIO02.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="JasonY_0-1713311660384.png" style="width: 400px;"&gt;&lt;img src="https://community.sap.com/t5/image/serverpage/image-id/97360iB0BB19EB800EADBA/image-size/medium?v=v2&amp;amp;px=400" role="button" title="JasonY_0-1713311660384.png" alt="JasonY_0-1713311660384.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;The explicit enhancement point (LCSDIO02_01 / ES_SAPLCSDI) is in&amp;nbsp;&lt;!--  StartFragment   --&gt;&lt;SPAN class=""&gt;module&amp;nbsp;&lt;/SPAN&gt;&lt;STRONG&gt;uebersicht_init&lt;/STRONG&gt;&lt;SPAN class=""&gt;.&lt;/SPAN&gt;&amp;nbsp;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN&gt;I need to change the logic in module&amp;nbsp;&lt;!--  StartFragment   --&gt;&lt;STRONG&gt;tc_columns_modify &lt;/STRONG&gt;as below and there is no enhancement point defined by SAP, so have to do the modification with access key.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;span class="lia-inline-image-display-wrapper lia-image-align-inline" image-alt="JasonY_1-1713311843657.png" style="width: 400px;"&gt;&lt;img src="https://community.sap.com/t5/image/serverpage/image-id/97361iD9CCE0F6D028E822/image-size/medium?v=v2&amp;amp;px=400" role="button" title="JasonY_1-1713311843657.png" alt="JasonY_1-1713311843657.png" /&gt;&lt;/span&gt;&lt;/P&gt;&lt;P&gt;The second solution you mentioned works for the custom fields in tab Customer fields. not for the custom fields in tab Material on BOM item-level .&lt;/P&gt;&lt;P&gt;&amp;nbsp;&lt;/P&gt;</description>
      <pubDate>Wed, 17 Apr 2024 00:04:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/make-editable-a-custom-field-in-cs01-or-cs02/m-p/13672685#M2027686</guid>
      <dc:creator>JasonY</dc:creator>
      <dc:date>2024-04-17T00:04:53Z</dc:date>
    </item>
    <item>
      <title>Re: Make editable a custom field in CS01 or CS02</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/make-editable-a-custom-field-in-cs01-or-cs02/m-p/13673090#M2027694</link>
      <description>&lt;P&gt;The&amp;nbsp; tc_control module (added from note&amp;nbsp;1313559 doesnt provide enh options)&lt;/P&gt;&lt;P&gt;But if I remember (from DIMP) there was another module to change SCREEN attributes, in the LOOP WITH CONTROL, look for module&amp;nbsp;field_selection_loop which call a form, so you get some implicit Enh points (and an explicit one?)&lt;/P&gt;</description>
      <pubDate>Wed, 17 Apr 2024 12:08:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/make-editable-a-custom-field-in-cs01-or-cs02/m-p/13673090#M2027694</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2024-04-17T12:08:58Z</dc:date>
    </item>
  </channel>
</rss>

