<?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 field in dialog programing in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-field-in-dialog-programing/m-p/3400385#M816416</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hii,&lt;/P&gt;&lt;P&gt;field statements are used to club together some fields on the selection screen.&lt;/P&gt;&lt;P&gt;they are in between the chain - end chain block. always remember that we cannot nest the chain - end chain, the fields used here are useing &lt;/P&gt;&lt;P&gt;1. on change request - if we change any values on the screen of the fields specified in the field statements.&lt;/P&gt;&lt;P&gt;2. on value request -  this will work on the default values which appear on the screen for those fields.&lt;/P&gt;&lt;P&gt;if we change any of these values then we have to specify the correct values in those fields to come out of the chain - end chain block.. otherwise it will give the initial screen again and again.&lt;/P&gt;&lt;P&gt;these field statements are abap statements not screen logic statements.. so we have to write them in methods... &lt;/P&gt;&lt;P&gt;if you need a simple example with coding then revert back..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward if helpful..&lt;/P&gt;&lt;P&gt;thanks...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 25 Jun 2008 11:23:57 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-06-25T11:23:57Z</dc:date>
    <item>
      <title>regarding field in dialog programing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-field-in-dialog-programing/m-p/3400382#M816413</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;  can any one plz tell me what the field statement do in module pool in detail and also abt chain..endchain.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and plz send me full material on dialog programing&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;vikram&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 18 Feb 2008 12:14:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-field-in-dialog-programing/m-p/3400382#M816413</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-18T12:14:13Z</dc:date>
    </item>
    <item>
      <title>Re: regarding field in dialog programing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-field-in-dialog-programing/m-p/3400383#M816414</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The field statement is used to retrieve  values of selection screen into field variables.We can also perform validation checks on the retrieved value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FIELD xxx MODULE abc ON INPUT. &lt;/P&gt;&lt;P&gt;FIELD xxx MODULE... ON CHAIN-INPUT &lt;/P&gt;&lt;P&gt;FIELD xxx MODULE abc... ON REQUEST &lt;/P&gt;&lt;P&gt;FIELD xxx MODULE abc... ON CHAIN-REQUEST &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Chain-endchain is used to group fields together and then perform some kind of processing .Fields that you address in the chain can be processed together using the ON CHAIN-EXIT or ON CHAIN-REQUEST additions. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check for further details in ABAP documentation under ABAP user dialogs.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks and Regards,&lt;/P&gt;&lt;P&gt;Sinu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jun 2008 04:52:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-field-in-dialog-programing/m-p/3400383#M816414</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-25T04:52:10Z</dc:date>
    </item>
    <item>
      <title>Re: regarding field in dialog programing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-field-in-dialog-programing/m-p/3400384#M816415</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;field statement is used in PAI of module pool program and it is mainly used for th purpose of validation....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can validate the data which user nters in PAI&lt;/P&gt;&lt;P&gt;for a particular field or a group of fields in CHAIN ENDCHAIN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  FIELD WCONCOST-QUANTITY MODULE CHK_QUAN_INPUT.&lt;/P&gt;&lt;P&gt;    FIELD WCONCOST-UNITPRICE MODULE CHK_UNITPRICE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    FIELD WCONCOST-UOM MODULE CHK_UOM.&lt;/P&gt;&lt;P&gt;    FIELD WCONCOST-WORKCNTR MODULE CHK_WORKCNTR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ITS SOMETHING LIKE THIS..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jun 2008 10:52:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-field-in-dialog-programing/m-p/3400384#M816415</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-25T10:52:41Z</dc:date>
    </item>
    <item>
      <title>Re: regarding field in dialog programing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-field-in-dialog-programing/m-p/3400385#M816416</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hii,&lt;/P&gt;&lt;P&gt;field statements are used to club together some fields on the selection screen.&lt;/P&gt;&lt;P&gt;they are in between the chain - end chain block. always remember that we cannot nest the chain - end chain, the fields used here are useing &lt;/P&gt;&lt;P&gt;1. on change request - if we change any values on the screen of the fields specified in the field statements.&lt;/P&gt;&lt;P&gt;2. on value request -  this will work on the default values which appear on the screen for those fields.&lt;/P&gt;&lt;P&gt;if we change any of these values then we have to specify the correct values in those fields to come out of the chain - end chain block.. otherwise it will give the initial screen again and again.&lt;/P&gt;&lt;P&gt;these field statements are abap statements not screen logic statements.. so we have to write them in methods... &lt;/P&gt;&lt;P&gt;if you need a simple example with coding then revert back..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;reward if helpful..&lt;/P&gt;&lt;P&gt;thanks...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Jun 2008 11:23:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-field-in-dialog-programing/m-p/3400385#M816416</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-06-25T11:23:57Z</dc:date>
    </item>
  </channel>
</rss>

