<?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: ALV REPORT: in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-report/m-p/2889911#M679095</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;When you carete a push button in screen painter you have to give the Function Code for that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example you carete one Push Button name as "Save" and the double click the push button.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then it dispplays the Field attributes menu. In that menu you have to give any function code like "Save_But".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then when ever the user clicks the "save" button the system assigns that function code to your Push Button.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then write the code under the Push button.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ex:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WHEN 'SAVE_BUT'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Write your code here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Reward If Helpful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 11 Oct 2007 06:35:31 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-10-11T06:35:31Z</dc:date>
    <item>
      <title>ALV REPORT:</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-report/m-p/2889908#M679092</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;my reqiurement is as follows:&lt;/P&gt;&lt;P&gt;1. when pushbutton is clicked the transaction should go to 'CJ01' &lt;/P&gt;&lt;P&gt;following is my code;&lt;/P&gt;&lt;P&gt;tell me where my code went wrong:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM USER_COMMAND USING RF_UCOMM LIKE SY-UCOMM&lt;/P&gt;&lt;P&gt;                  SEL_FIELD TYPE SLIS_SELFIELD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CASE RF_UCOMM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WHEN '&amp;amp;IC1'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*WHEN '&amp;amp;NEXT'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT I_FINAL INTO WA_FINAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF WA_FINAL-CHECKBOX = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET PARAMETER ID: 'PSP' FIELD wa_final-pspid,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;                  'PRO' FIELD wa_final-posid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL TRANSACTION 'CJ03' AND SKIP FIRST SCREEN.&lt;/P&gt;&lt;P&gt;ELSE.&lt;/P&gt;&lt;P&gt;CONTINUE.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;ENDCASE.&lt;/P&gt;&lt;P&gt;ENDFORM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Oct 2007 06:11:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-report/m-p/2889908#M679092</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-11T06:11:54Z</dc:date>
    </item>
    <item>
      <title>Re: ALV REPORT:</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-report/m-p/2889909#M679093</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;CASE RF_UCOMM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WHEN '&amp;amp;IC1'.&amp;lt;b&amp;gt; "  refers to double click&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;"you should replace '&amp;amp;IC1' by the function code for the pushbutton you created in gui "status &lt;/P&gt;&lt;P&gt;&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;*WHEN '&amp;amp;NEXT'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT I_FINAL INTO WA_FINAL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF WA_FINAL-CHECKBOX = 'X'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SET PARAMETER ID: 'PSP' FIELD wa_final-pspid,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;'PRO' FIELD wa_final-posid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL TRANSACTION 'CJ03' AND SKIP FIRST SCREEN.&lt;/P&gt;&lt;P&gt;ELSE.&lt;/P&gt;&lt;P&gt;CONTINUE.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;ENDLOOP.&lt;/P&gt;&lt;P&gt;ENDCASE.&lt;/P&gt;&lt;P&gt;ENDFORM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Oct 2007 06:24:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-report/m-p/2889909#M679093</guid>
      <dc:creator>dev_parbutteea</dc:creator>
      <dc:date>2007-10-11T06:24:02Z</dc:date>
    </item>
    <item>
      <title>Re: ALV REPORT:</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-report/m-p/2889910#M679094</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;if I remove the '&amp;amp;IC1' statement&lt;/P&gt;&lt;P&gt;how the pushbutton identifies the click and proceed.....it has to be clicked first and then only it can pass to tcode CJ03.............&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Oct 2007 06:30:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-report/m-p/2889910#M679094</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-11T06:30:48Z</dc:date>
    </item>
    <item>
      <title>Re: ALV REPORT:</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-report/m-p/2889911#M679095</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;When you carete a push button in screen painter you have to give the Function Code for that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;For example you carete one Push Button name as "Save" and the double click the push button.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then it dispplays the Field attributes menu. In that menu you have to give any function code like "Save_But".&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then when ever the user clicks the "save" button the system assigns that function code to your Push Button.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then write the code under the Push button.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ex:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WHEN 'SAVE_BUT'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Write your code here.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Reward If Helpful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Oct 2007 06:35:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-report/m-p/2889911#M679095</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-11T06:35:31Z</dc:date>
    </item>
    <item>
      <title>Re: ALV REPORT:</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-report/m-p/2889912#M679096</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;when u created that button u shud give it a function code..a 4 char value&lt;/P&gt;&lt;P&gt;so that becomes its function code so while writing the code&lt;/P&gt;&lt;P&gt;instead of &lt;/P&gt;&lt;P&gt;FORM USER_COMMAND USING RF_UCOMM LIKE SY-UCOMM&lt;/P&gt;&lt;P&gt;SEL_FIELD TYPE SLIS_SELFIELD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CASE RF_UCOMM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WHEN '&amp;amp;IC1'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;write WHEN '&amp;lt;&amp;gt;'&lt;/P&gt;&lt;P&gt;&amp;lt;&amp;gt; refers to the 4 char code u gave to that button.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;rest of the code is fine..hope it soves ur doubt&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if helpful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Oct 2007 06:36:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-report/m-p/2889912#M679096</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-11T06:36:38Z</dc:date>
    </item>
    <item>
      <title>Re: ALV REPORT:</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-report/m-p/2889913#M679097</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I got my this doubt cleared.......&lt;/P&gt;&lt;P&gt;still my original doubt remains......how to pass values from internal table i_final to call transaction cj03......in my code................&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Oct 2007 07:03:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-report/m-p/2889913#M679097</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-11T07:03:00Z</dc:date>
    </item>
    <item>
      <title>Re: ALV REPORT:</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-report/m-p/2889914#M679098</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;can anyone tell me how to read in an internal table whether checkbox are marked or not....&lt;/P&gt;&lt;P&gt;i m finding difficulty in identifiyng my checkboxes as marked or not....dynamically....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in Advance.......&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 11 Oct 2007 08:13:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-report/m-p/2889914#M679098</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-11T08:13:51Z</dc:date>
    </item>
  </channel>
</rss>

