<?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: regarding screen painter in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-screen-painter/m-p/3450452#M828906</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you please tell me how to use that coz have never used that thing.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 18 Feb 2008 04:41:45 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-02-18T04:41:45Z</dc:date>
    <item>
      <title>regarding screen painter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-screen-painter/m-p/3450450#M828904</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1) Hi I have two fileds in my internal table..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;like        field 1(matnr)                         filed2(quantity)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; now what i want that for a particular material the quantiy field should be entered by the user and for some particular materials the quantity  should come automatically from the database table and the quantity field in table control should come in display mode.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i am having all the materials in my internal table ie.mixture of materials of both kinds specified above.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) and one more thing in table control if we are entering some data in a particular cell after entering the data the cell should automically convert into display mode once the entry has been done in that cell.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;waiting for you replies.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Feb 2008 04:30:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-screen-painter/m-p/3450450#M828904</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-18T04:30:36Z</dc:date>
    </item>
    <item>
      <title>Re: regarding screen painter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-screen-painter/m-p/3450451#M828905</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ashish,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I would suggest to use an Editable ALV rather than using table control.  It would be easier o implement and has lot more functionality than TC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Vijay&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PLZ reward points if helpful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Feb 2008 04:37:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-screen-painter/m-p/3450451#M828905</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-18T04:37:30Z</dc:date>
    </item>
    <item>
      <title>Re: regarding screen painter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-screen-painter/m-p/3450452#M828906</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you please tell me how to use that coz have never used that thing.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Feb 2008 04:41:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-screen-painter/m-p/3450452#M828906</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-18T04:41:45Z</dc:date>
    </item>
    <item>
      <title>Re: regarding screen painter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-screen-painter/m-p/3450453#M828907</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;  Tr this for ur second question. you can use 'Loop Screen' for this. i am pasting a example code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;module 0003_pai_customer input.&lt;/P&gt;&lt;P&gt;  case sy-ucomm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    when 'CREATE'.&lt;/P&gt;&lt;P&gt;      autoc = 0.&lt;/P&gt;&lt;P&gt;      call screen 004.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    when 'MODIFY'.&lt;/P&gt;&lt;P&gt;      flg1 = 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    when 'SAVE'.&lt;/P&gt;&lt;P&gt;      flag1 = 'X'.&lt;/P&gt;&lt;P&gt;endcase.&lt;/P&gt;&lt;P&gt;endmodule.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;module setscreenfields output.  " setting screen fields&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  loop at screen.&lt;/P&gt;&lt;P&gt;    if flg1 is initial.&lt;/P&gt;&lt;P&gt;      screen-input = 0.              "making screen fields uneditable&lt;/P&gt;&lt;P&gt;    elseif ( flg1 eq 1 ).&lt;/P&gt;&lt;P&gt;      if ( ( screen-name = 'WI_ZCUST-CUSTOMERNAME' or&lt;/P&gt;&lt;P&gt;            screen-name = 'WI_ZCUST-ADDRESS' or&lt;/P&gt;&lt;P&gt;            screen-name = 'WI_ZCUST-CITY' or&lt;/P&gt;&lt;P&gt;            screen-name = 'WI_ZCUST-STATE' or&lt;/P&gt;&lt;P&gt;            screen-name = 'WI_ZCUST-COUNTRY' or&lt;/P&gt;&lt;P&gt;            screen-name = 'WI_ZCUST-PHONE' or&lt;/P&gt;&lt;P&gt;            screen-name = 'WI_ZCUST-EMAIL' or&lt;/P&gt;&lt;P&gt;            screen-name = 'WI_ZCUST-FAX' )&lt;/P&gt;&lt;P&gt;            and table1-current_line &amp;lt;= sy-dbcnt ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        screen-input = 1.             "making screen fields editable&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      elseif ( ( screen-name = 'WI_ZCUST-CUSTOMERID' or&lt;/P&gt;&lt;P&gt;      screen-name = 'WI_ZCUST-STATUS' ) and table1-current_line &amp;lt;= sy-dbcnt ).&lt;/P&gt;&lt;P&gt;        screen-input = 0. "making screen fields editable&lt;/P&gt;&lt;P&gt;      endif.&lt;/P&gt;&lt;P&gt;    endif.&lt;/P&gt;&lt;P&gt;    modify screen.&lt;/P&gt;&lt;P&gt;  endloop.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sri&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Feb 2008 04:48:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-screen-painter/m-p/3450453#M828907</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-18T04:48:13Z</dc:date>
    </item>
    <item>
      <title>Re: regarding screen painter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-screen-painter/m-p/3450454#M828908</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ashish,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Plz check the program BCALV_TEST_GRID_EDITABLE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This will give you an idea of editable alv and will help you to create one based on your requirements.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;THanks&lt;/P&gt;&lt;P&gt;Vijay'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PLZ reward points if helpful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Feb 2008 04:50:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-screen-painter/m-p/3450454#M828908</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-18T04:50:59Z</dc:date>
    </item>
    <item>
      <title>Re: regarding screen painter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-screen-painter/m-p/3450455#M828909</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;  Try this too. After entering the data in the table control and saving it,just set a flag for ex diable1 = 1. then create a module and write the following code in pai.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;module disable1 input.&lt;/P&gt;&lt;P&gt;if disable1 = 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    screen-input = 0.&lt;/P&gt;&lt;P&gt;    screen-output = 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endmodule.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Sri&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Feb 2008 04:54:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-screen-painter/m-p/3450455#M828909</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-18T04:54:16Z</dc:date>
    </item>
    <item>
      <title>Re: regarding screen painter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-screen-painter/m-p/3450456#M828910</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thnx&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 20 Feb 2008 12:19:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-screen-painter/m-p/3450456#M828910</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-20T12:19:30Z</dc:date>
    </item>
  </channel>
</rss>

