<?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: problem in screen painter in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-screen-painter/m-p/5157629#M1194784</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;please check that the declaration of the internaal table..... if that declaration is not equal records are not inserted ..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 13 Feb 2009 06:56:09 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-02-13T06:56:09Z</dc:date>
    <item>
      <title>problem in screen painter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-screen-painter/m-p/5157625#M1194780</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     i have a db table zproject_details.. it has 4 fields, proj_no(pri key), proj_name, orij_name, proj_type..&lt;/P&gt;&lt;P&gt;     i have created 2 screens, in the 1st screen i enter the proj_no and press the 'NEXT' button to&lt;/P&gt;&lt;P&gt;    call 2nd screen.&lt;/P&gt;&lt;P&gt;     on the 2nd screen, there are 3 drop down list boxes in which proj_name, orij_name and proj_type &lt;/P&gt;&lt;P&gt;     are retrieved(from zproject_details) and displayed...&lt;/P&gt;&lt;P&gt;     if i change value of any of the field in screen 2, i have to update that record in the zproject_details &lt;/P&gt;&lt;P&gt;     too.. so when any record is changed, i modify it in an internal table thus i can change more than &lt;/P&gt;&lt;P&gt;    one record, and when i press 'SAVE' button, all changed records are modified in zproject_details.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     this is what i have done, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;module STATUS_0002 output.  " ouyput of screen 2&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; SET PF-STATUS 'xxxxxxxx'.&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; SET TITLEBAR 'xxx'.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : update1(2) value '0',&lt;/P&gt;&lt;P&gt;         update2(2) value '0',&lt;/P&gt;&lt;P&gt;         update3(2) value '0',&lt;/P&gt;&lt;P&gt;         flag100(2) value '0'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES : begin of itab,&lt;/P&gt;&lt;P&gt;       proj_no          type zproject_details-proj_no,&lt;/P&gt;&lt;P&gt;       proj_name        type zproject_details-proj_name,&lt;/P&gt;&lt;P&gt;       orig_name        type zproject_details-orig_name,&lt;/P&gt;&lt;P&gt;       proj_type        type zproject_details-proj_type,&lt;/P&gt;&lt;P&gt;       end of itab.&lt;/P&gt;&lt;P&gt;DATA : itab TYPE standard TABLE OF itab initial size 100&lt;/P&gt;&lt;P&gt;        with header line,&lt;/P&gt;&lt;P&gt;        wa type itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select single * from zproject_details&lt;/P&gt;&lt;P&gt;where proj_no = PROJ_NO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if update1 ne 1.&lt;/P&gt;&lt;P&gt;move zproject_details-proj_name to ZPROJ_NAME-PROJ_NAME.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if update2 ne 2.&lt;/P&gt;&lt;P&gt;move zproject_details-ORIG_NAME to ZORIJ_NAME-ZORIG_NAME.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if update3 ne 3.&lt;/P&gt;&lt;P&gt;move zproject_details-proj_type to ZORIJ_TYPE-PROJ_TYPE.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endmodule.                 " STATUS_0002  OUTPUT&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Module  USER_COMMAND_0002  INPUT&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      text&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;module USER_COMMAND_0002 input.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data : PROJ_NAME(35) type c,&lt;/P&gt;&lt;P&gt;       ORIG_NAME(35) type c,&lt;/P&gt;&lt;P&gt;       PROJ_TYPE(35) type c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if flag100 = 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select single * from zproject_details into itab&lt;/P&gt;&lt;P&gt;  where proj_no = proj_no .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; flag100 = 1.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;case OK_CODE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   when 'PNAME'. " function code of drop down list with values proj_name&lt;/P&gt;&lt;P&gt;       itab-proj_name   = zproj_name-PROJ_NAME.&lt;/P&gt;&lt;P&gt;       modify table itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       if zdemo-proj_name ne itab-proj_name.&lt;/P&gt;&lt;P&gt;           update1 = 1.&lt;/P&gt;&lt;P&gt;       endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   when 'ONAME'.  " function code of drop down list with values orij_name&lt;/P&gt;&lt;P&gt;       itab-orig_name = zorij_name-zorig_name.&lt;/P&gt;&lt;P&gt;       modify table itab .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       if zdemo-orig_name ne itab-proj_name.&lt;/P&gt;&lt;P&gt;           update2 = 2.&lt;/P&gt;&lt;P&gt;       endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   when 'PTYPE'. " function code of drop down list with values proj_type&lt;/P&gt;&lt;P&gt;      itab-proj_type = zorij_type-proj_type.&lt;/P&gt;&lt;P&gt;      modify table itab .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      if zdemo-proj_type ne zorij_type-proj_type.&lt;/P&gt;&lt;P&gt;          update3 = 3.&lt;/P&gt;&lt;P&gt;      endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   when 'SCREEN1'.&lt;/P&gt;&lt;P&gt;             clear : zproj_name, zorij_name, zorij_type.&lt;/P&gt;&lt;P&gt;             leave to screen 0001.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   when 'SAVE'.&lt;/P&gt;&lt;P&gt;          modify zproject_details from table itab .&lt;/P&gt;&lt;P&gt;          if zdproject_details-proj_name = itab-proj_name.&lt;/P&gt;&lt;P&gt;                  message i000.&lt;/P&gt;&lt;P&gt;          else .&lt;/P&gt;&lt;P&gt;                  message i001.&lt;/P&gt;&lt;P&gt;          endif.&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;endmodule.                 " USER_COMMAND_0002  INPUT  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  when i keep debugger on change values on screen and press 'SAVE', my itab has the modified &lt;/P&gt;&lt;P&gt;  changed values but they are not updated in zproject_details at last..&lt;/P&gt;&lt;P&gt;  eg: if i change the proj_name on screen &lt;/P&gt;&lt;P&gt;       after the if stmt -  if zdproject_details-proj_name = itab-proj_name.&lt;/P&gt;&lt;P&gt;       the itab has the modified value of proj_name but change has not occured in zproject_details...&lt;/P&gt;&lt;P&gt;  i dont understand what is wrong, i even used 'update zproject_details from table itab'...&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;plz help me out,&lt;/P&gt;&lt;P&gt;thank you...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Feb 2009 06:40:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-screen-painter/m-p/5157625#M1194780</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-13T06:40:59Z</dc:date>
    </item>
    <item>
      <title>Re: problem in screen painter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-screen-painter/m-p/5157626#M1194781</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you are modifying the internel table .... not in z table .... &lt;/P&gt;&lt;P&gt;please modify statement for z table .. then its work ..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Feb 2009 06:44:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-screen-painter/m-p/5157626#M1194781</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-13T06:44:58Z</dc:date>
    </item>
    <item>
      <title>Re: problem in screen painter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-screen-painter/m-p/5157627#M1194782</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;plz chk the code proprely,  when i press a push button 'SAVE' i modify the zproject_details table also,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when 'SAVE'.&lt;/P&gt;&lt;P&gt;          modify zproject_details from table itab .&lt;/P&gt;&lt;P&gt;          if zdzproject_details-proj_name = itab-proj_name.&lt;/P&gt;&lt;P&gt;                  message i000.&lt;/P&gt;&lt;P&gt;          else .&lt;/P&gt;&lt;P&gt;                  message i001.&lt;/P&gt;&lt;P&gt;          endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: aarti mane on Feb 13, 2009 7:47 AM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: aarti mane on Feb 13, 2009 7:47 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Feb 2009 06:47:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-screen-painter/m-p/5157627#M1194782</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-13T06:47:11Z</dc:date>
    </item>
    <item>
      <title>Re: problem in screen painter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-screen-painter/m-p/5157628#M1194783</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;r u sure that  itab has same structure as zdzproject_details?&lt;/P&gt;&lt;P&gt;if not then it wont modify, plz check it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regrds,&lt;/P&gt;&lt;P&gt;Naveen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Feb 2009 06:53:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-screen-painter/m-p/5157628#M1194783</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-13T06:53:50Z</dc:date>
    </item>
    <item>
      <title>Re: problem in screen painter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-screen-painter/m-p/5157629#M1194784</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;please check that the declaration of the internaal table..... if that declaration is not equal records are not inserted ..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Feb 2009 06:56:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-screen-painter/m-p/5157629#M1194784</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-13T06:56:09Z</dc:date>
    </item>
    <item>
      <title>Re: problem in screen painter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-screen-painter/m-p/5157630#M1194785</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi aarti&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cad you try using the update command ?&lt;/P&gt;&lt;P&gt;Use this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      LOOP AT t_breakdown1.&lt;/P&gt;&lt;P&gt;        UPDATE znel_breakdown FROM TABLE t_breakdown1.&lt;/P&gt;&lt;P&gt;      ENDLOOP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Feb 2009 06:56:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-screen-painter/m-p/5157630#M1194785</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-13T06:56:10Z</dc:date>
    </item>
    <item>
      <title>Re: problem in screen painter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-screen-painter/m-p/5157631#M1194786</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;im sorry, it got copied wrong, the correct stmt is, &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when 'SAVE'.&lt;/P&gt;&lt;P&gt;          modify zproject_details from table itab .&lt;/P&gt;&lt;P&gt;          if zproject_details-proj_name = itab-proj_name.&lt;/P&gt;&lt;P&gt;                  message i000.&lt;/P&gt;&lt;P&gt;          else .&lt;/P&gt;&lt;P&gt;                  message i001.&lt;/P&gt;&lt;P&gt;          endif.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Feb 2009 06:58:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-screen-painter/m-p/5157631#M1194786</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-13T06:58:10Z</dc:date>
    </item>
    <item>
      <title>Re: problem in screen painter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-screen-painter/m-p/5157632#M1194787</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;Check Sy-subrc value after Modify statement. whether it is updating the table properly.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Feb 2009 06:59:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-screen-painter/m-p/5157632#M1194787</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-13T06:59:09Z</dc:date>
    </item>
    <item>
      <title>Re: problem in screen painter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-screen-painter/m-p/5157633#M1194788</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i tried loop endloop, when i debugged, cmpiler wont even go inside the loop, from the loop stmt, it directly jumps to end loop....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Feb 2009 07:03:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-screen-painter/m-p/5157633#M1194788</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-13T07:03:43Z</dc:date>
    </item>
    <item>
      <title>Re: problem in screen painter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-screen-painter/m-p/5157634#M1194789</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Selva,&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;    i did sy-subrc, it shows the message i000.&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;     modify zproject_details from table itab.&lt;/P&gt;&lt;P&gt;     if sy-subrc = 0.&lt;/P&gt;&lt;P&gt;                 message i000.&lt;/P&gt;&lt;P&gt;    else .&lt;/P&gt;&lt;P&gt;                 message i001.&lt;/P&gt;&lt;P&gt;    endif.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Feb 2009 07:08:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-screen-painter/m-p/5157634#M1194789</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-13T07:08:47Z</dc:date>
    </item>
    <item>
      <title>Re: problem in screen painter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-screen-painter/m-p/5157635#M1194790</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello&lt;/P&gt;&lt;P&gt;can yu reply for this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;r u sure that itab has same structure as zdzproject_details?&lt;/P&gt;&lt;P&gt;if not then it wont modify, plz check it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regrds,&lt;/P&gt;&lt;P&gt;Naveen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Feb 2009 07:14:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-screen-painter/m-p/5157635#M1194790</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-13T07:14:27Z</dc:date>
    </item>
    <item>
      <title>Re: problem in screen painter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-screen-painter/m-p/5157636#M1194791</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hello Naveen,&lt;/P&gt;&lt;P&gt;   &lt;/P&gt;&lt;P&gt;im sorry, the stmt got copied wrong, the correct stmt is,  it is not zdzproject_details and the structure &lt;/P&gt;&lt;P&gt;is correct, i checked it, not difficult to track, its only a 4 field table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when 'SAVE'.&lt;/P&gt;&lt;P&gt;modify zproject_details from table itab .&lt;/P&gt;&lt;P&gt;if zproject_details-proj_name = itab-proj_name.&lt;/P&gt;&lt;P&gt;message i000.&lt;/P&gt;&lt;P&gt;else .&lt;/P&gt;&lt;P&gt;message i001.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank you&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: aarti mane on Feb 13, 2009 8:17 AM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Feb 2009 07:17:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-screen-painter/m-p/5157636#M1194791</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-13T07:17:22Z</dc:date>
    </item>
    <item>
      <title>Re: problem in screen painter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-screen-painter/m-p/5157637#M1194792</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;modify zproject_details from table itab .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this will definetly work if &lt;STRONG&gt;zproject_details&lt;/STRONG&gt; structure and &lt;STRONG&gt;Itab&lt;/STRONG&gt; structure is SAME.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regrds,&lt;/P&gt;&lt;P&gt;Naveen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Feb 2009 07:26:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-screen-painter/m-p/5157637#M1194792</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-13T07:26:42Z</dc:date>
    </item>
    <item>
      <title>Re: problem in screen painter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-screen-painter/m-p/5157638#M1194793</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;Did you try wid update  ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Feb 2009 07:26:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-screen-painter/m-p/5157638#M1194793</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-13T07:26:43Z</dc:date>
    </item>
    <item>
      <title>Re: problem in screen painter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-screen-painter/m-p/5157639#M1194794</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Matrina,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; i did try with update..&lt;/P&gt;&lt;P&gt;i tried&lt;/P&gt;&lt;P&gt; loop at itab.&lt;/P&gt;&lt;P&gt;     update zproject_details from table itab. &lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;then i debugged, cmpiler wont even go inside the loop, from the loop stmt, it directly jumps to end loop....&lt;/P&gt;&lt;P&gt;i e1 tried without loop endloop... the values dont change, in debugger after the UPDATE stmt, the itab has the modified values, but zproject_details is not updated..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank you&lt;/P&gt;&lt;P&gt;thank you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Feb 2009 07:33:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-screen-painter/m-p/5157639#M1194794</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-13T07:33:30Z</dc:date>
    </item>
    <item>
      <title>Re: problem in screen painter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-screen-painter/m-p/5157640#M1194795</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hey&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then there is somethg wring wid the  itab&lt;/P&gt;&lt;P&gt;It won go into the loop only if itab is  initial ....&lt;/P&gt;&lt;P&gt;Jjus check once and send your whole code once&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Feb 2009 07:38:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-screen-painter/m-p/5157640#M1194795</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-13T07:38:32Z</dc:date>
    </item>
    <item>
      <title>Re: problem in screen painter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-screen-painter/m-p/5157641#M1194796</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi naveen,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   i checked, its only a 4 field table... actually my original project is bigger but im new to screen painter &lt;/P&gt;&lt;P&gt;   and wanted to get concepts clear... so i did this demo screen to know how data is modified in database table from the screen, i created a database table 'zproject_details' with 4 fields proj_no(pri key), proj_name, orij_name, proj_type...&lt;/P&gt;&lt;P&gt;   check the declaration of itab...&lt;/P&gt;&lt;P&gt;what is going wrong??&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thank you...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Feb 2009 07:41:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-screen-painter/m-p/5157641#M1194796</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-13T07:41:56Z</dc:date>
    </item>
    <item>
      <title>Re: problem in screen painter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-screen-painter/m-p/5157642#M1194797</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;itab does not go in loop probebly bcoz derz only one record in it... i have sent the code related to&lt;/P&gt;&lt;P&gt;screen 2, right from data declaration to the updation of the table... is the select single stmt wrong???&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Feb 2009 07:53:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-screen-painter/m-p/5157642#M1194797</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-13T07:53:07Z</dc:date>
    </item>
    <item>
      <title>Re: problem in screen painter</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-screen-painter/m-p/5157643#M1194798</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Aarti,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the PAi of screen 2 you have to append values to the itab from the screen fields ...before &lt;/P&gt;&lt;P&gt;Module USER_COMMAND_0002 INPUT.&lt;/P&gt;&lt;P&gt;loop at the itab .append the screen fields to the fields of itab.append itab  .endloop.&lt;/P&gt;&lt;P&gt;then use the modify or update to update it .&lt;/P&gt;&lt;P&gt;then only it ll go inside the loop of itab,.without loop if u modify it won change.&lt;/P&gt;&lt;P&gt;Even if one record is there it'll go insidee loop . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;for e.g &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this is PAI of my screen&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PROCESS AFTER INPUT.&lt;/P&gt;&lt;P&gt;FIELD T_BREAKDOWN1-ENTRY_DATE.&lt;/P&gt;&lt;P&gt;FIELD T_BREAKDOWN1-PLANT.&lt;/P&gt;&lt;P&gt;FIELD T_BREAKDOWN1-SHIFT. (3 fields in screen)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at t_breakdown1.&lt;/P&gt;&lt;P&gt;CHAIN.&lt;/P&gt;&lt;P&gt;FIELD T_BREAKDOWN1-REASON.&lt;/P&gt;&lt;P&gt;FIELD T_BREAKDOWN1-MINS.&lt;/P&gt;&lt;P&gt;FIELD T_BREAKDOWN1-PICK MODULE CHECK.&lt;/P&gt;&lt;P&gt;ENDCHAIN.&lt;/P&gt;&lt;P&gt;MODULE MODIFY_TAB_9002.&lt;/P&gt;&lt;P&gt;(inside this i write:&lt;/P&gt;&lt;P&gt;t_breakdown1-entry_date = l_date.&lt;/P&gt;&lt;P&gt;  t_breakdown1-plant  = l_plant.&lt;/P&gt;&lt;P&gt;  t_breakdown1-shift = l_shift.&lt;/P&gt;&lt;P&gt;  t_breakdown1-reason = t_breakdown1-reason.&lt;/P&gt;&lt;P&gt;  t_breakdown1-mins = t_breakdown1-mins.&lt;/P&gt;&lt;P&gt;  t_breakdown1-pick = t_breakdown1-pick.&lt;/P&gt;&lt;P&gt;  APPEND t_breakdown1.&lt;/P&gt;&lt;P&gt;)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MODULE USER_COMMAND_9002.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here i give if sy-ucomm =save&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Feb 2009 08:41:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-screen-painter/m-p/5157643#M1194798</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-02-13T08:41:46Z</dc:date>
    </item>
  </channel>
</rss>

