<?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: How to write data input screen form in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-write-data-input-screen-form/m-p/4539072#M1072377</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Balu CH&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for posting a very nice and useful solution . I am trying to apply the suggested guidelines .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sonia&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 21 Sep 2008 16:15:54 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-09-21T16:15:54Z</dc:date>
    <item>
      <title>How to write data input screen form</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-write-data-input-screen-form/m-p/4539070#M1072375</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Sir,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We need to develop a Foem which can allow data input to the user . The form will have 3 rows  and each row has two field (Material Number and  Standard Price field) .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We need that after after entry of each Material Number , it should be validated and invalid value should not be allowed .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At the time of Clicking of SAVE button ,  the data entered earlier in the 3 rows , should be inserted into Z Table .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I request SAP gurus to kindly help me with a sample code for the above scenario . Or kindly suggest me some refrence help site where I can get some help to address my requirement .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I assure to give full points for the suggested answer pl .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds&lt;/P&gt;&lt;P&gt;Sonia Agarwal&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 21 Sep 2008 12:48:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-write-data-input-screen-form/m-p/4539070#M1072375</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-21T12:48:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to write data input screen form</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-write-data-input-screen-form/m-p/4539071#M1072376</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Sonia I will suggest you some steps do follow them and complete your work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1)	Create the table where u want to store the data of material no and standard price.&lt;/P&gt;&lt;P&gt;2)	Create the screen such tht u will give input field names as Tablename-field name as of you have give in table.&lt;/P&gt;&lt;P&gt;3)	Coming to coding part&lt;/P&gt;&lt;P&gt;In TOP declare the structure of the table and work area as shown.&lt;/P&gt;&lt;P&gt;TABLES: ZFORMA,&lt;/P&gt;&lt;P&gt;        &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;--&lt;/STRONG&gt;&lt;DEL&gt;&lt;STRONG&gt;&lt;/STRONG&gt;&lt;/DEL&gt;&lt;/P&gt;&lt;HR originaltext="----------" /&gt;STRUCTURE OF ZRPFORMA--&lt;HR originaltext="---------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES: BEGIN OF ST_ZFORMA,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;            MANDT TYPE ZFORMA-MANDT,&lt;/P&gt;&lt;P&gt;            FASLN TYPE ZFORMA-FASLN,&lt;/P&gt;&lt;P&gt;            FAPLC TYPE ZFORMA-FAPLC,&lt;/P&gt;&lt;P&gt;End of ST_ZFORMA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;--&lt;/STRONG&gt;&lt;DEL&gt;&lt;STRONG&gt;&lt;/STRONG&gt;&lt;/DEL&gt;&lt;/P&gt;&lt;HR originaltext="----------" /&gt;WA OF ZRPFORMA--&lt;HR originaltext="------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: IT_ZFORMA TYPE TABLE OF ST_ZFORMA,    " INTERNAL TABLE IS&lt;/P&gt;&lt;P&gt;      W_ZFORMA TYPE ST_ZFORMA,             " WORK AREA&lt;/P&gt;&lt;P&gt;      WA_ZFORMA TYPE ZFORMA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;--&lt;/STRONG&gt;&lt;DEL&gt;&lt;STRONG&gt;&lt;/STRONG&gt;&lt;/DEL&gt;&lt;/P&gt;&lt;HR originaltext="---------" /&gt;WA OF ZRPFORMA--&lt;HR originaltext="--------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In PBO&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you are having any default values has to be displayed declare them or revert me what are all you have to display I will help you. And define GUI for the screen what are all the functions you want.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IN PAI.&lt;/P&gt;&lt;P&gt;&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 'SAVE'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;            W_ZFORMA-FASLN = ZFORMA-FASLN.&lt;/P&gt;&lt;P&gt;            W_ZFORMA-FAPLC = ZFORMA-FAPLC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;MOVE-CORRESPONDING W_ZFORMA TO WA_ZFORMA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; INSERT INTO ZFORMA VALUES WA_ZFORMA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;            IF SY-SUBRC = 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      MESSAGE S000. u201CIn message give data saved successfully&lt;/P&gt;&lt;P&gt;Endif.&lt;/P&gt;&lt;P&gt;And coming to your validation of material No after you finish your saving part pass me your field i will frame the select statement if you are not able.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope my answer helps you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 21 Sep 2008 13:54:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-write-data-input-screen-form/m-p/4539071#M1072376</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-21T13:54:07Z</dc:date>
    </item>
    <item>
      <title>Re: How to write data input screen form</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-write-data-input-screen-form/m-p/4539072#M1072377</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Balu CH&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for posting a very nice and useful solution . I am trying to apply the suggested guidelines .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Sonia&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 21 Sep 2008 16:15:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-write-data-input-screen-form/m-p/4539072#M1072377</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-21T16:15:54Z</dc:date>
    </item>
    <item>
      <title>Re: How to write data input screen form</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-write-data-input-screen-form/m-p/4539073#M1072378</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 Luck.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 21 Sep 2008 18:43:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-write-data-input-screen-form/m-p/4539073#M1072378</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-21T18:43:55Z</dc:date>
    </item>
  </channel>
</rss>

