<?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: Textbox disabled when click 'SAVE' button in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/textbox-disabled-when-click-save-button/m-p/3227520#M769823</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi JuzMe,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This si the save button code in ALV Grid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL METHOD G_ALVGRID_HDR-&amp;gt;SET_TABLE_FOR_FIRST_DISPLAY&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;I_SAVE = L_SAVE&lt;/P&gt;&lt;P&gt;IS_VARIANT = LS_VARIANT&lt;/P&gt;&lt;P&gt;IS_LAYOUT = LS_LAYOUT&lt;/P&gt;&lt;P&gt;IS_PRINT = LS_PRINT&lt;/P&gt;&lt;P&gt;IT_TOOLBAR_EXCLUDING = I_EXCLUDE&lt;/P&gt;&lt;P&gt;CHANGING&lt;/P&gt;&lt;P&gt;IT_SORT = I_SORT_HDR&lt;/P&gt;&lt;P&gt;IT_OUTTAB = I_OUTTAB_HDR[]&lt;/P&gt;&lt;P&gt;IT_FIELDCATALOG = I_FCAT_HDR&lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;INVALID_PARAMETER_COMBINATION = 1&lt;/P&gt;&lt;P&gt;PROGRAM_ERROR = 2&lt;/P&gt;&lt;P&gt;OTHERS = 3.&lt;/P&gt;&lt;P&gt;IF SY-SUBRC 0.&lt;/P&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;P&gt;WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And, importantly pass the variant and enable is_save = 'A'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;kindly reward if found helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cheers,&lt;/P&gt;&lt;P&gt;Hema.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 17 Jan 2008 03:13:52 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-01-17T03:13:52Z</dc:date>
    <item>
      <title>Textbox disabled when click 'SAVE' button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/textbox-disabled-when-click-save-button/m-p/3227519#M769822</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am currently doing a tabstrip with 3 tabs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Whenever I click on the save button, the first tab will be enabled with the error message like this:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://img185.imageshack.us/img185/7290/screen1eg6.png" target="test_blank"&gt;http://img185.imageshack.us/img185/7290/screen1eg6.png&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But when I look at my second and third tabs, the screen's input field is disabled when it is suppose to be enabled for the user to key in. The screen as show here:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://img185.imageshack.us/img185/6615/screen2ns8.png" target="test_blank"&gt;http://img185.imageshack.us/img185/6615/screen2ns8.png&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can anyone explain why it is like this? The best please post the save button codes for the tabstrip.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or so anyone have a way to enable the disabled textbox upon clicking the 'SAVE' button?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Jan 2008 02:46:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/textbox-disabled-when-click-save-button/m-p/3227519#M769822</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-17T02:46:02Z</dc:date>
    </item>
    <item>
      <title>Re: Textbox disabled when click 'SAVE' button</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/textbox-disabled-when-click-save-button/m-p/3227520#M769823</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi JuzMe,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This si the save button code in ALV Grid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL METHOD G_ALVGRID_HDR-&amp;gt;SET_TABLE_FOR_FIRST_DISPLAY&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;I_SAVE = L_SAVE&lt;/P&gt;&lt;P&gt;IS_VARIANT = LS_VARIANT&lt;/P&gt;&lt;P&gt;IS_LAYOUT = LS_LAYOUT&lt;/P&gt;&lt;P&gt;IS_PRINT = LS_PRINT&lt;/P&gt;&lt;P&gt;IT_TOOLBAR_EXCLUDING = I_EXCLUDE&lt;/P&gt;&lt;P&gt;CHANGING&lt;/P&gt;&lt;P&gt;IT_SORT = I_SORT_HDR&lt;/P&gt;&lt;P&gt;IT_OUTTAB = I_OUTTAB_HDR[]&lt;/P&gt;&lt;P&gt;IT_FIELDCATALOG = I_FCAT_HDR&lt;/P&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;P&gt;INVALID_PARAMETER_COMBINATION = 1&lt;/P&gt;&lt;P&gt;PROGRAM_ERROR = 2&lt;/P&gt;&lt;P&gt;OTHERS = 3.&lt;/P&gt;&lt;P&gt;IF SY-SUBRC 0.&lt;/P&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;P&gt;WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And, importantly pass the variant and enable is_save = 'A'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;kindly reward if found helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cheers,&lt;/P&gt;&lt;P&gt;Hema.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Jan 2008 03:13:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/textbox-disabled-when-click-save-button/m-p/3227520#M769823</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-17T03:13:52Z</dc:date>
    </item>
  </channel>
</rss>

