<?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: dialog programming in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programming/m-p/3348405#M803036</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;if you r using any field somewhere in the report than you need to declare than if it is not a field from any sap standard table or a standard include,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so pls check where how you have delclare DCHAIN_SPEC in your report, if you r using from any include program than check wheather you have use that include program in your report.&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, 01 Feb 2008 08:08:21 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-02-01T08:08:21Z</dc:date>
    <item>
      <title>dialog programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programming/m-p/3348402#M803033</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I am working on a module pool program.I have created ascreen 2000 in which there are many fields taken from mvke,mara and marc.If the user wants to change values of some fields in the o/p in this screen,then he can change the values using the dropdown list and when he clicks on the chechbox besides that field,then the changed value should get stored in that particular table from where the field is taken.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have written my code like this for the checked values to get updated in the database table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CASE OK_CODE.&lt;/P&gt;&lt;P&gt;WHEN 'EXEC'.&lt;/P&gt;&lt;P&gt;IF DCHAIN_SPEC = c_x.&lt;/P&gt;&lt;P&gt;UPDATE mvke SET vmsta = gs_output1-vmsta.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where DCHAIN_SPEC is the checkbox name.&lt;/P&gt;&lt;P&gt;When I activate the prg I am getting error as' Field DCHAIN_SPEC is unknown.It is neither defined in one of the tables nor defined by the data statement'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What would be the reason for this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Feb 2008 08:00:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programming/m-p/3348402#M803033</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-01T08:00:10Z</dc:date>
    </item>
    <item>
      <title>Re: dialog programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programming/m-p/3348403#M803034</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Radha,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  I think you have not declare the fields in ABAP editor Globally.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : DCHAIN_SPEC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Don't forget to reward if useful....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Feb 2008 08:03:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programming/m-p/3348403#M803034</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-01T08:03:25Z</dc:date>
    </item>
    <item>
      <title>Re: dialog programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programming/m-p/3348404#M803035</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Try the below code&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;PARAMETERS  DCHAIN_SPEC AS CHECKBOX USER-COMMAND check.

CASE OK_CODE.
WHEN 'EXEC'.
IF DCHAIN_SPEC = c_x.
UPDATE mvke SET vmsta = gs_output1-vmsta.
ENDIF.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For more information on radio button and check box go thro the below link&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_nw70/helpdata/en/3d/c3b23782a9cc68e10000009b38f8cf/content.htm" target="test_blank"&gt;http://help.sap.com/saphelp_nw70/helpdata/en/3d/c3b23782a9cc68e10000009b38f8cf/content.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Chandru&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Feb 2008 08:06:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programming/m-p/3348404#M803035</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-01T08:06:34Z</dc:date>
    </item>
    <item>
      <title>Re: dialog programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programming/m-p/3348405#M803036</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;if you r using any field somewhere in the report than you need to declare than if it is not a field from any sap standard table or a standard include,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so pls check where how you have delclare DCHAIN_SPEC in your report, if you r using from any include program than check wheather you have use that include program in your report.&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, 01 Feb 2008 08:08:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programming/m-p/3348405#M803036</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-01T08:08:21Z</dc:date>
    </item>
    <item>
      <title>Re: dialog programming</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programming/m-p/3348406#M803037</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi frnd,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Declare &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;DCHAIN_SPEC(1) type c&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;using data stament and try executing the same.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 01 Feb 2008 08:45:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dialog-programming/m-p/3348406#M803037</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-02-01T08:45:22Z</dc:date>
    </item>
  </channel>
</rss>

