<?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 screen painter in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-painter/m-p/3389296#M813784</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;doubt while doing screen painter.&lt;/P&gt;&lt;P&gt;first i created a table.i need to view thw table contents using screen painter.&lt;/P&gt;&lt;P&gt;for that i have created program,message type,transaction.&lt;/P&gt;&lt;P&gt;using se51 i copied the table contents and pasted it in screen.then i used some push buttons for save,exit,display&lt;/P&gt;&lt;P&gt;then i gone to transaction to view the table contents.but there it is not getting displayed.&lt;/P&gt;&lt;P&gt;so please u explain how to solve that problem.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 22 Feb 2008 12:15:57 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-02-22T12:15:57Z</dc:date>
    <item>
      <title>screen painter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-painter/m-p/3389296#M813784</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;doubt while doing screen painter.&lt;/P&gt;&lt;P&gt;first i created a table.i need to view thw table contents using screen painter.&lt;/P&gt;&lt;P&gt;for that i have created program,message type,transaction.&lt;/P&gt;&lt;P&gt;using se51 i copied the table contents and pasted it in screen.then i used some push buttons for save,exit,display&lt;/P&gt;&lt;P&gt;then i gone to transaction to view the table contents.but there it is not getting displayed.&lt;/P&gt;&lt;P&gt;so please u explain how to solve that problem.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Feb 2008 12:15:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-painter/m-p/3389296#M813784</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-22T12:15:57Z</dc:date>
    </item>
    <item>
      <title>Re: screen painter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-painter/m-p/3389297#M813785</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;For this u can use the table control. Below is the procedure to create a table control. U can display the contents od the database table in table form itself.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLE CONTROL COMPONENTS:&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table Control component is used to view the table records and if needed, we can directly modify table records and&lt;/P&gt;&lt;P&gt; update the database table using table control.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here, the records can be viewed in rows and columns format separated by horizontal and vertical lines.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SYNTAX:&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="-----" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONTROLS &amp;lt;table_Control_name&amp;gt; TYPE TABLEVIEW USING SCREEN &amp;lt;MPP_screen_number&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONTROLS statement is used to create a memory space area for table control component in AS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLEVIEW is a data type for table control component.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SCREEN NUMBER should be specified to make the system know where the table control was physically created.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Navigations to create TABLE CONTROL COMPONENT:&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="--------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Create MPP program -&amp;gt; In TOP INCLUDE FILE, write the following code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA ITAB LIKE KNA1 OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;CONTROLS TABCTRL TYPE TABLEVIEW USING SCREEN '123'.&lt;/P&gt;&lt;P&gt;DATA CUR TYPE I.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Save -&amp;gt; Activate.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Create a Normal screen (123) -&amp;gt; Drag and drop TABLE CONTROL component from application toolbar -&amp;gt; Specify its name in &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;attributes box -&amp;gt; Specify title if necessary -&amp;gt; Select HORIZONTAL and VERTICAL SEPARATORS checkbox -&amp;gt; If needed, &lt;/P&gt;&lt;P&gt;select COLUMN and ROW selection radiobuttons -&amp;gt; Click on Dictionary/Program Fields from Appn. Toolbar -&amp;gt; &lt;/P&gt;&lt;P&gt;Specify internal table name specified in top include file -&amp;gt; Click on 'GET FROM PROGRAM' pushbutton -&amp;gt; &lt;/P&gt;&lt;P&gt;Choose required fields -&amp;gt; Click on continue -&amp;gt; Place the fields in table control component -&amp;gt;&lt;/P&gt;&lt;P&gt; Add labels for each fields -&amp;gt; Create two pushbuttons (FETCH, EXIT) -&amp;gt; Save -&amp;gt; Flow Logic.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In PAI module, write following code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CASE SY-UCOMM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WHEN 'FETCH'.&lt;/P&gt;&lt;P&gt;SELECT * FROM KNA1 INTO TABLE ITAB.&lt;/P&gt;&lt;P&gt;TABCTRL-LINES = SY-DBCNT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WHEN 'EXIT'.&lt;/P&gt;&lt;P&gt;LEAVE PROGRAM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDCASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In Flow Logic editor, write following code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROCESS BEFORE OUTPUT.&lt;/P&gt;&lt;P&gt; MODULE STATUS_0123.&lt;/P&gt;&lt;P&gt; LOOP AT ITAB CURSOR CUR WITH CONTROL TABCTRL.&lt;/P&gt;&lt;P&gt; ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROCESS AFTER INPUT.&lt;/P&gt;&lt;P&gt; MODULE USER_COMMAND_0123.&lt;/P&gt;&lt;P&gt; LOOP AT ITAB.&lt;/P&gt;&lt;P&gt; ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here, LOOP AT ITAB-ENDLOOP statement in PBO event is used to fetch the records and insert into table control component.&lt;/P&gt;&lt;P&gt; CURSOR statement is used to make use of the cursor in table control component&lt;/P&gt;&lt;P&gt; whenever we try to select a particular field and modify it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT ITAB-ENDLOOP statement in PAI event is used to make necessary modifications&lt;/P&gt;&lt;P&gt; to the database table from table control component.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Create Tcode -&amp;gt; Execute.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps u,&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Arunsri.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Feb 2008 12:26:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-painter/m-p/3389297#M813785</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-22T12:26:39Z</dc:date>
    </item>
    <item>
      <title>Re: screen painter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-painter/m-p/3389298#M813786</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Revathi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can u explain me where you are getting the error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; regards,&lt;/P&gt;&lt;P&gt;shiva&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Feb 2008 12:32:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-painter/m-p/3389298#M813786</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-22T12:32:19Z</dc:date>
    </item>
    <item>
      <title>Re: screen painter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-painter/m-p/3389299#M813787</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;good&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;go through these links, hope these would help you to solve your problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_sm32/helpdata/en/6d/150d67da1011d3963800a0c94260a5/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_sm32/helpdata/en/6d/150d67da1011d3963800a0c94260a5/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_sm32/helpdata/en/d1/802338454211d189710000e8322d00/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_sm32/helpdata/en/d1/802338454211d189710000e8322d00/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;mrutyun^&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 22 Feb 2008 12:46:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-painter/m-p/3389299#M813787</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-22T12:46:22Z</dc:date>
    </item>
    <item>
      <title>Re: screen painter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-painter/m-p/3389300#M813788</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello friend,&lt;/P&gt;&lt;P&gt;  i need to view the table contents in screen painter&lt;/P&gt;&lt;P&gt;so first i created table .&lt;/P&gt;&lt;P&gt;on going to se38 i created module pool program.after checking it there is no error.&lt;/P&gt;&lt;P&gt;then i went to se51.in that i clicked get data from dictionary fields and placed the table in screen painter.i have creted employee table,which contains id,name,address,phoneno&lt;/P&gt;&lt;P&gt;so u explain the method of after getting data from dictionary fields how to place it in screen painter.&lt;/P&gt;&lt;P&gt;also i have created transaction also.&lt;/P&gt;&lt;P&gt;thanks &lt;/P&gt;&lt;P&gt;revathy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 26 Feb 2008 03:51:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-painter/m-p/3389300#M813788</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-26T03:51:38Z</dc:date>
    </item>
  </channel>
</rss>

