<?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: Step by Step guide to create pushbutton? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/step-by-step-guide-to-create-pushbutton/m-p/2775438#M646847</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Seshu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now i have a problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;================================================================&lt;/P&gt;&lt;P&gt;"PAI&lt;/P&gt;&lt;P&gt; MODULE USER_COMMAND_0100 INPUT.&lt;/P&gt;&lt;P&gt;Case sy-ucomm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when 'EXIT'.&lt;/P&gt;&lt;P&gt;Leave PROGRAM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when 'SAVE'.&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'Z_INSERT_STUDENT'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    IN_INSERT_ADMINNO         = &lt;/P&gt;&lt;P&gt;    IN_INSERT_FIRSTNAME       = &lt;/P&gt;&lt;P&gt;    IN_INSERT_LASTNAME        = &lt;/P&gt;&lt;P&gt;    IN_INSERT_CONTACT         = &lt;/P&gt;&lt;P&gt; IMPORTING&lt;/P&gt;&lt;P&gt;   OUT_RESULT                = result.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endcase.&lt;/P&gt;&lt;P&gt;ENDMODULE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;================================================================&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have define the 4 fill in the Graphical Screen Painter. How do i get the user entry into my function module?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please advice.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Rayden&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 07 Sep 2007 04:24:53 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-09-07T04:24:53Z</dc:date>
    <item>
      <title>Step by Step guide to create pushbutton?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/step-by-step-guide-to-create-pushbutton/m-p/2775432#M646841</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;Is there any step by step guide on how to create a pushbutton with action using Graphical Screen Painter?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Rayden&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Sep 2007 02:48:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/step-by-step-guide-to-create-pushbutton/m-p/2775432#M646841</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-07T02:48:46Z</dc:date>
    </item>
    <item>
      <title>Re: Step by Step guide to create pushbutton?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/step-by-step-guide-to-create-pushbutton/m-p/2775433#M646842</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here is the steps creation of push button :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Goto Se51 -&amp;gt; Layout -&amp;gt; click on Push button -&amp;gt; drag the button into layout area.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now double click on Push button,you will get pop up window -&amp;gt; Give the text name ,and Function code .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Function code is mandatory. maintain letters 4 charters and it should be upper case.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Say example like BACK Push button.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use text name as BACK,Function code is BACK.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;save and activate the layout.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;now come to PAI ,uncomment -&amp;gt; double click PAI.,it creates the module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here write the code &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 'BACK'.&lt;/P&gt;&lt;P&gt;leave to screen 0.&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;activate the all screens otherwise you will not get proper output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when maintain transaction for this ,if you click on back,it will go sap initial screen.&lt;/P&gt;&lt;P&gt;It should work now&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Seshu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Sep 2007 02:57:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/step-by-step-guide-to-create-pushbutton/m-p/2775433#M646842</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-07T02:57:36Z</dc:date>
    </item>
    <item>
      <title>Re: Step by Step guide to create pushbutton?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/step-by-step-guide-to-create-pushbutton/m-p/2775434#M646843</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Seshu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks, that was very useful. So if i want the pushbutton to insert the data into the database table by calling the function module and return a success message, how do i go about it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rayden&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Sep 2007 03:07:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/step-by-step-guide-to-create-pushbutton/m-p/2775434#M646843</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-07T03:07:03Z</dc:date>
    </item>
    <item>
      <title>Re: Step by Step guide to create pushbutton?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/step-by-step-guide-to-create-pushbutton/m-p/2775435#M646844</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In the PAI,&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;CALL FUNCTION 'ZINSERT_DATA'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;error&lt;/P&gt;&lt;P&gt;TABLES = itab&lt;/P&gt;&lt;P&gt;exceptions&lt;/P&gt;&lt;P&gt;Error = 1&lt;/P&gt;&lt;P&gt;.&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;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Goto SE37 &amp;amp; type ZINSERT_DATA.&lt;/P&gt;&lt;P&gt;Click on Create.&lt;/P&gt;&lt;P&gt;In the TABLES tab type ITAB &amp;amp; the structure name of the table.&lt;/P&gt;&lt;P&gt;In the EXPORT tab type ERROR of type c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Click on Code tab&lt;/P&gt;&lt;P&gt;write following code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INSERT ZTABLE from TABLE itab.&lt;/P&gt;&lt;P&gt;COMMIT WORK&lt;/P&gt;&lt;P&gt;if sy-subrc eq 0.&lt;/P&gt;&lt;P&gt;error = 1.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Sep 2007 03:35:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/step-by-step-guide-to-create-pushbutton/m-p/2775435#M646844</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-07T03:35:04Z</dc:date>
    </item>
    <item>
      <title>Re: Step by Step guide to create pushbutton?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/step-by-step-guide-to-create-pushbutton/m-p/2775436#M646845</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Rayden,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can create push button as same as BACK Button which i mentioned earlier.&lt;/P&gt;&lt;P&gt;Use text name SAVE and Function code is SAVE,Activate layout .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Come to PAI ,here write the code&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 'BACK'.&lt;/P&gt;&lt;P&gt;Leave to screen 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when  'SAVE'.&lt;/P&gt;&lt;P&gt;insert ztable from table int_table .&lt;/P&gt;&lt;P&gt;endcase.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SAVE Function code should be upper case.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope you got it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Seshu&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Sep 2007 03:45:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/step-by-step-guide-to-create-pushbutton/m-p/2775436#M646845</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-07T03:45:44Z</dc:date>
    </item>
    <item>
      <title>Re: Step by Step guide to create pushbutton?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/step-by-step-guide-to-create-pushbutton/m-p/2775437#M646846</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;Thanks guys. You all are great.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Rayden&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Sep 2007 03:48:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/step-by-step-guide-to-create-pushbutton/m-p/2775437#M646846</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-07T03:48:43Z</dc:date>
    </item>
    <item>
      <title>Re: Step by Step guide to create pushbutton?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/step-by-step-guide-to-create-pushbutton/m-p/2775438#M646847</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Seshu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now i have a problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;================================================================&lt;/P&gt;&lt;P&gt;"PAI&lt;/P&gt;&lt;P&gt; MODULE USER_COMMAND_0100 INPUT.&lt;/P&gt;&lt;P&gt;Case sy-ucomm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when 'EXIT'.&lt;/P&gt;&lt;P&gt;Leave PROGRAM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when 'SAVE'.&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'Z_INSERT_STUDENT'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    IN_INSERT_ADMINNO         = &lt;/P&gt;&lt;P&gt;    IN_INSERT_FIRSTNAME       = &lt;/P&gt;&lt;P&gt;    IN_INSERT_LASTNAME        = &lt;/P&gt;&lt;P&gt;    IN_INSERT_CONTACT         = &lt;/P&gt;&lt;P&gt; IMPORTING&lt;/P&gt;&lt;P&gt;   OUT_RESULT                = result.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endcase.&lt;/P&gt;&lt;P&gt;ENDMODULE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;================================================================&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have define the 4 fill in the Graphical Screen Painter. How do i get the user entry into my function module?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please advice.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Rayden&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Sep 2007 04:24:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/step-by-step-guide-to-create-pushbutton/m-p/2775438#M646847</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-07T04:24:53Z</dc:date>
    </item>
    <item>
      <title>Re: Step by Step guide to create pushbutton?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/step-by-step-guide-to-create-pushbutton/m-p/2775439#M646848</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;Assume that you have declared for fields with following names&lt;/P&gt;&lt;P&gt;l_ADMIN, L_FIRST, L_LAST, L_CONTACT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;in the PAI, assign values as follows:-&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;V_ADMIN = L_ADMIN.&lt;/P&gt;&lt;P&gt;V_FIRST = L_FIRST.&lt;/P&gt;&lt;P&gt;V_LAST  = L_LAST.&lt;/P&gt;&lt;P&gt;V_CONTACT = L_CONTACT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when 'SAVE'.&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'Z_INSERT_STUDENT'&lt;/P&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;P&gt;IN_INSERT_ADMINNO =     V_ADMIN &lt;/P&gt;&lt;P&gt;IN_INSERT_FIRSTNAME =  V_FIRST&lt;/P&gt;&lt;P&gt;IN_INSERT_LASTNAME =   V_LAST&lt;/P&gt;&lt;P&gt;IN_INSERT_CONTACT =     V_CONTACT&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;OUT_RESULT = result.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Sep 2007 04:40:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/step-by-step-guide-to-create-pushbutton/m-p/2775439#M646848</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-07T04:40:02Z</dc:date>
    </item>
    <item>
      <title>Re: Step by Step guide to create pushbutton?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/step-by-step-guide-to-create-pushbutton/m-p/2775440#M646849</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Prashant,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have try your solution. but somehow it can't work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is the code:&lt;/P&gt;&lt;P&gt;=================================================================&lt;/P&gt;&lt;P&gt;REPORT  Z_TEST_BTN.&lt;/P&gt;&lt;P&gt;TABLES zraystud.&lt;/P&gt;&lt;P&gt;DATA result TYPE c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;CALL SCREEN 100.&lt;/P&gt;&lt;P&gt;WRITE : result.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"PBO&lt;/P&gt;&lt;P&gt; MODULE STATUS_0100 OUTPUT.&lt;/P&gt;&lt;P&gt; ENDMODULE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"PAI&lt;/P&gt;&lt;P&gt; MODULE USER_COMMAND_0100 INPUT.&lt;/P&gt;&lt;P&gt;Case sy-ucomm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;when 'EXIT'.&lt;/P&gt;&lt;P&gt;Leave PROGRAM.&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;  DATA: admno type ZRAYSTUD-ADMINNO,&lt;/P&gt;&lt;P&gt;      lname type ZRAYSTUD-FIRSTNAME,&lt;/P&gt;&lt;P&gt;      fname type ZRAYSTUD-LASTNAME,&lt;/P&gt;&lt;P&gt;      cont type ZRAYSTUD-CONTACT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;       admno = LADMINNO.&lt;/P&gt;&lt;P&gt;       lname = LFIRSTNAME.&lt;/P&gt;&lt;P&gt;      fname = LLASTNAME.&lt;/P&gt;&lt;P&gt;      cont = LCONTACT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'Z_INSERT_STUDENT'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    IN_INSERT_ADMINNO         =  admno&lt;/P&gt;&lt;P&gt;    IN_INSERT_FIRSTNAME       = fname&lt;/P&gt;&lt;P&gt;    IN_INSERT_LASTNAME        = lname&lt;/P&gt;&lt;P&gt;    IN_INSERT_CONTACT         = cont&lt;/P&gt;&lt;P&gt; IMPORTING&lt;/P&gt;&lt;P&gt;   OUT_RESULT                = result.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endcase.&lt;/P&gt;&lt;P&gt;ENDMODULE.&lt;/P&gt;&lt;P&gt;================================================================&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The error state that:&lt;/P&gt;&lt;P&gt;The field "LADMNINO" is unknown. But there is a field with similar name "ADMNO"."ADMNO"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What the cause of it? Did i miss out anything?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Rayden&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Sep 2007 05:49:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/step-by-step-guide-to-create-pushbutton/m-p/2775440#M646849</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-07T05:49:23Z</dc:date>
    </item>
    <item>
      <title>Re: Step by Step guide to create pushbutton?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/step-by-step-guide-to-create-pushbutton/m-p/2775441#M646850</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;I have solve my problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best Regards,&lt;/P&gt;&lt;P&gt;Rayden&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 07 Sep 2007 06:39:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/step-by-step-guide-to-create-pushbutton/m-p/2775441#M646850</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-07T06:39:47Z</dc:date>
    </item>
  </channel>
</rss>

