<?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 Dailog Programing in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-dailog-programing/m-p/3648249#M878660</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;check the fct code for the partcular coding in your screen element and coding it is not the same  thing i think so.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 20 Apr 2008 04:19:23 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-04-20T04:19:23Z</dc:date>
    <item>
      <title>Regarding Dailog Programing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-dailog-programing/m-p/3648247#M878658</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ABAP GURU'S&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hi &lt;/P&gt;&lt;P&gt;There are only two functions (SAVE and DIS) work properly under below mentioned coding and remain delete , Modify are not working. PLz check the coding and give the right solution.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT YSCREEN4 .&lt;/P&gt;&lt;P&gt;CALL SCREEN 1000.&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_1000  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_1000 input.&lt;/P&gt;&lt;P&gt;TABLES: YSACH1.&lt;/P&gt;&lt;P&gt;DATA: OK_CODE(8).&lt;/P&gt;&lt;P&gt;TYPES: BEGIN OF ITAB,&lt;/P&gt;&lt;P&gt;       ID(4) TYPE C,&lt;/P&gt;&lt;P&gt;       NAME(35) TYPE C,&lt;/P&gt;&lt;P&gt;       ORT01 TYPE ORT01,&lt;/P&gt;&lt;P&gt;       STRAS TYPE STRAS,&lt;/P&gt;&lt;P&gt;       LAND1 TYPE LAND1,&lt;/P&gt;&lt;P&gt;       END OF ITAB.&lt;/P&gt;&lt;P&gt;DATA: IT_ST TYPE TABLE OF ITAB ,&lt;/P&gt;&lt;P&gt;      WA_ST TYPE ITAB,&lt;/P&gt;&lt;P&gt;      IT_YSACH1 TYPE YSACH1,&lt;/P&gt;&lt;P&gt;      WA_YSACH1 TYPE YSACH1.&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 'DISP'.&lt;/P&gt;&lt;P&gt;CLEAR OK_CODE.&lt;/P&gt;&lt;P&gt;SELECT SINGLE * FROM  YSACH1&lt;/P&gt;&lt;P&gt;                     WHERE ID = YSACH1-ID.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WHEN 'SAVE'.&lt;/P&gt;&lt;P&gt;WA_ST-ID = YSACH1-ID.&lt;/P&gt;&lt;P&gt;WA_ST-NAME = YSACH1-NAME.&lt;/P&gt;&lt;P&gt;WA_ST-ORT01 = YSACH1-ORT01.&lt;/P&gt;&lt;P&gt;WA_ST-STRAS = YSACH1-STRAS.&lt;/P&gt;&lt;P&gt;WA_ST-LAND1 = YSACH1-LAND1.&lt;/P&gt;&lt;P&gt;MOVE-CORRESPONDING WA_ST TO WA_YSACH1.&lt;/P&gt;&lt;P&gt;INSERT INTO YSACH1 VALUES WA_YSACH1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WHEN 'DELETE'.&lt;/P&gt;&lt;P&gt;WA_ST-ID = YSACH1-ID.&lt;/P&gt;&lt;P&gt;WA_ST-NAME = YSACH1-NAME.&lt;/P&gt;&lt;P&gt;WA_ST-ORT01 = YSACH1-ORT01.&lt;/P&gt;&lt;P&gt;WA_ST-STRAS = YSACH1-STRAS.&lt;/P&gt;&lt;P&gt;WA_ST-LAND1 = YSACH1-LAND1.&lt;/P&gt;&lt;P&gt;MOVE-CORRESPONDING  WA_YSACH1 TO WA_ST.&lt;/P&gt;&lt;P&gt;DELETE YSACH1 FROM WA_YSACH1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WHEN 'MODIFY'.&lt;/P&gt;&lt;P&gt;WA_ST-ID = YSACH1-ID.&lt;/P&gt;&lt;P&gt;WA_ST-NAME = YSACH1-NAME.&lt;/P&gt;&lt;P&gt;WA_ST-ORT01 = YSACH1-ORT01.&lt;/P&gt;&lt;P&gt;WA_ST-STRAS = YSACH1-STRAS.&lt;/P&gt;&lt;P&gt;WA_ST-LAND1 = YSACH1-LAND1.&lt;/P&gt;&lt;P&gt;MOVE-CORRESPONDING WA_YSACH1 TO WA_ST .&lt;/P&gt;&lt;P&gt;MODIFY YSACH1 FROM WA_YSACH1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; WHEN 'EXIT'.&lt;/P&gt;&lt;P&gt; CLEAR OK_CODE.&lt;/P&gt;&lt;P&gt;SET SCREEN 0.&lt;/P&gt;&lt;P&gt; LEAVE SCREEN.&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_1000  INPUTHI&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 20 Apr 2008 00:50:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-dailog-programing/m-p/3648247#M878658</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-20T00:50:04Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Dailog Programing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-dailog-programing/m-p/3648248#M878659</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;The changes are in small letters.....&lt;/P&gt;&lt;P&gt;WHEN 'DELETE'.&lt;/P&gt;&lt;P&gt;WA_ST-ID = YSACH1-ID.&lt;/P&gt;&lt;P&gt;WA_ST-NAME = YSACH1-NAME.&lt;/P&gt;&lt;P&gt;WA_ST-ORT01 = YSACH1-ORT01.&lt;/P&gt;&lt;P&gt;WA_ST-STRAS = YSACH1-STRAS.&lt;/P&gt;&lt;P&gt;WA_ST-LAND1 = YSACH1-LAND1.&lt;/P&gt;&lt;P&gt;MOVE-CORRESPONDING   WA_ST to wa_ysach1.&lt;/P&gt;&lt;P&gt;DELETE YSACH1 FROM WA_YSACH1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WHEN 'MODIFY'.&lt;/P&gt;&lt;P&gt;WA_ST-ID = YSACH1-ID.&lt;/P&gt;&lt;P&gt;WA_ST-NAME = YSACH1-NAME.&lt;/P&gt;&lt;P&gt;WA_ST-ORT01 = YSACH1-ORT01.&lt;/P&gt;&lt;P&gt;WA_ST-STRAS = YSACH1-STRAS.&lt;/P&gt;&lt;P&gt;WA_ST-LAND1 = YSACH1-LAND1.&lt;/P&gt;&lt;P&gt;MOVE-CORRESPONDING  WA_ST to wa_ysach1.&lt;/P&gt;&lt;P&gt;MODIFY YSACH1 FROM WA_YSACH1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Arunprasad.P&lt;/P&gt;&lt;P&gt;Reward if useful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 20 Apr 2008 03:56:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-dailog-programing/m-p/3648248#M878659</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-20T03:56:40Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Dailog Programing</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-dailog-programing/m-p/3648249#M878660</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;check the fct code for the partcular coding in your screen element and coding it is not the same  thing i think so.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 20 Apr 2008 04:19:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-dailog-programing/m-p/3648249#M878660</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-04-20T04:19:23Z</dc:date>
    </item>
  </channel>
</rss>

