<?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: blank screen problem in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/blank-screen-problem/m-p/1607601#M272701</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;Go through the sample codes,&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapdevelopment.co.uk/reporting/alv/alvgrid.htm" target="test_blank"&gt;http://www.sapdevelopment.co.uk/reporting/alv/alvgrid.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapdevelopment.co.uk/reporting/alv/alvscr.htm" target="test_blank"&gt;http://www.sapdevelopment.co.uk/reporting/alv/alvscr.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Azaz Ali.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 02 Oct 2006 20:11:06 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-10-02T20:11:06Z</dc:date>
    <item>
      <title>blank screen problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/blank-screen-problem/m-p/1607593#M272693</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi experts.&lt;/P&gt;&lt;P&gt;I have got a wierd problem. I wrote this report that takes some parameter and option selection and produces a report with ALV control. Now the problem is when I try to go back a blank page appears before taking me back to the input screen. When I started the program I didn't had this problem and I am not sure what changes I made that started this screen and no idea where to look for to solve it.&lt;/P&gt;&lt;P&gt;so I was hoping may be one of you already faced it and know what to do or where to look for the problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In case its not clear here is the step by step process&lt;/P&gt;&lt;P&gt;I press F8 from my editor to run the program.&lt;/P&gt;&lt;P&gt;I enter the parameter stuff and hit the F8 again&lt;/P&gt;&lt;P&gt;It runs and shows my report correctly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now when I hit the back button or the exit button instead of going back to the input screen it shows a white blank page nothing in it. and i have to hit the back button again to come back to the input screen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Oct 2006 19:42:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/blank-screen-problem/m-p/1607593#M272693</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-02T19:42:12Z</dc:date>
    </item>
    <item>
      <title>Re: blank screen problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/blank-screen-problem/m-p/1607594#M272694</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;Check the PF STATUS..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think you have written code for back and exit buttons in the PF-STATUS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Go through the link,&lt;/P&gt;&lt;P&gt;&lt;A href="http://help.sap.com/saphelp_47x200/helpdata/en/9f/dba34635c111d1829f0000e829fbfe/frameset.htm" target="test_blank"&gt;http://help.sap.com/saphelp_47x200/helpdata/en/9f/dba34635c111d1829f0000e829fbfe/frameset.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Azaz Ali.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Oct 2006 19:47:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/blank-screen-problem/m-p/1607594#M272694</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-02T19:47:17Z</dc:date>
    </item>
    <item>
      <title>Re: blank screen problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/blank-screen-problem/m-p/1607595#M272695</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Pleae be sure that your USER_COMMAND module is simular to this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

module user_command_0100 input.

  case sy-ucomm.
    when 'BACK' or 'CANC'.
&amp;lt;b&amp;gt;      if not alv_container is initial.
        call method alv_container-&amp;gt;free.
        clear: alv_container.
        free : alv_container.
      endif.
      if sy-subrc = 0.
        set screen 0.
        leave screen.
      else.
        leave program.
      endif.&amp;lt;/b&amp;gt;
    when 'EXIT'.
      if not alv_container is initial.
        call method alv_container-&amp;gt;free.
        clear: alv_container.
        free : alv_container.
      endif.
      leave program.
  endcase.

endmodule.


&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Oct 2006 19:49:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/blank-screen-problem/m-p/1607595#M272695</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-10-02T19:49:19Z</dc:date>
    </item>
    <item>
      <title>Re: blank screen problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/blank-screen-problem/m-p/1607596#M272696</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Could you please explain a bit more. I did it a search with PF-STATUS and no result was found. so its not set in my code.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Oct 2006 19:49:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/blank-screen-problem/m-p/1607596#M272696</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-02T19:49:26Z</dc:date>
    </item>
    <item>
      <title>Re: blank screen problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/blank-screen-problem/m-p/1607597#M272697</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you please post the entire code of the program?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Oct 2006 19:53:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/blank-screen-problem/m-p/1607597#M272697</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-10-02T19:53:07Z</dc:date>
    </item>
    <item>
      <title>Re: blank screen problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/blank-screen-problem/m-p/1607598#M272698</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I used only Form in my program. is this module should be a form too and I just put the whole code at the end of my program as it is and errors I am getting are: ALV_CONTAINER is unknown...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Oct 2006 20:04:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/blank-screen-problem/m-p/1607598#M272698</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-02T20:04:03Z</dc:date>
    </item>
    <item>
      <title>Re: blank screen problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/blank-screen-problem/m-p/1607599#M272699</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, you need to do more,  I can help you with the coding, or you can check out sample programs, any program that starts with BCALV_GRID*.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you would like help with the coding, post what you have so far.   When using an ALV Grid control, you must create a screen and embed the control  in a screen container.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Oct 2006 20:06:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/blank-screen-problem/m-p/1607599#M272699</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-10-02T20:06:43Z</dc:date>
    </item>
    <item>
      <title>Re: blank screen problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/blank-screen-problem/m-p/1607600#M272700</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am not sure whether you want to see the whole program which is over 1100 lines but here is the part where it interacts with the report when user click on the report to get more details&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; Use for hotspot drilldown to transaction codes.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;form alv_user_command&lt;/P&gt;&lt;P&gt;     using r_ucomm     like sy-ucomm&lt;/P&gt;&lt;P&gt;           rs_selfield type slis_selfield.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      if rs_selfield-fieldname = 'AUFNR'.&lt;/P&gt;&lt;P&gt;        set parameter id: 'ANR' field rs_selfield-value.&lt;/P&gt;&lt;P&gt;        call transaction 'IW33' and skip first screen. "Display service order&lt;/P&gt;&lt;P&gt;      elseif  rs_selfield-fieldname = 'STD_RATE'.&lt;/P&gt;&lt;P&gt;        read table REC_ALV index rs_selfield-tabindex.&lt;/P&gt;&lt;P&gt;        call transaction 'ZSTDLIST' and skip first screen. "Display standards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      elseif ( rs_selfield-fieldname = 'QTY'&lt;/P&gt;&lt;P&gt;          or   rs_selfield-fieldname = 'COST'&lt;/P&gt;&lt;P&gt;          or   rs_selfield-fieldname = 'AMT' ).&lt;/P&gt;&lt;P&gt;        read table REC_ALV index rs_selfield-tabindex.&lt;/P&gt;&lt;P&gt;        mode = 'DRILLDN'.&lt;/P&gt;&lt;P&gt;        drill_down-aufnr       = REC_ALV-AUFNR.&lt;/P&gt;&lt;P&gt;        drill_down-lgort       = REC_ALV-LGORT.&lt;/P&gt;&lt;P&gt;        clear REC_ALV_DETAIL[].&lt;/P&gt;&lt;P&gt;        perform get_data.&lt;/P&gt;&lt;P&gt;        perform print_alv_Detail.&lt;/P&gt;&lt;P&gt;        mode = 'SUMMARY'.&lt;/P&gt;&lt;P&gt;      endif. "if rs_selfield-fieldname = 'AUFNR'&lt;/P&gt;&lt;P&gt;endform. "ALV_USER_COMMAND&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BTW how do u select multple line or the whole program to copy it to here. I have been coping one line at a time...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Oct 2006 20:11:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/blank-screen-problem/m-p/1607600#M272700</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-02T20:11:02Z</dc:date>
    </item>
    <item>
      <title>Re: blank screen problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/blank-screen-problem/m-p/1607601#M272701</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;Go through the sample codes,&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapdevelopment.co.uk/reporting/alv/alvgrid.htm" target="test_blank"&gt;http://www.sapdevelopment.co.uk/reporting/alv/alvgrid.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sapdevelopment.co.uk/reporting/alv/alvscr.htm" target="test_blank"&gt;http://www.sapdevelopment.co.uk/reporting/alv/alvscr.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Azaz Ali.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Oct 2006 20:11:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/blank-screen-problem/m-p/1607601#M272701</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-02T20:11:06Z</dc:date>
    </item>
    <item>
      <title>Re: blank screen problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/blank-screen-problem/m-p/1607602#M272702</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I'm thinking that you are using the Function module ALV grid?  Is this correct?  Or are you using the class CL_GUI_ALV_GRID?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Oct 2006 20:14:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/blank-screen-problem/m-p/1607602#M272702</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-10-02T20:14:33Z</dc:date>
    </item>
    <item>
      <title>Re: blank screen problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/blank-screen-problem/m-p/1607603#M272703</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I am sorry if I am answering you wrong I am very new at this.&lt;/P&gt;&lt;P&gt;I am using the following function&lt;/P&gt;&lt;P&gt;call function 'REUSE_ALV_GRID_DISPLAY'&lt;/P&gt;&lt;P&gt;     exporting&lt;/P&gt;&lt;P&gt;....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;form call_alv.&lt;/P&gt;&lt;P&gt;  perform build_field_catalog   using field_tab[].&lt;/P&gt;&lt;P&gt;  perform build_eventtab   using events[].&lt;/P&gt;&lt;P&gt;  perform comment_build using header_alv[].&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  call function 'REUSE_ALV_GRID_DISPLAY'&lt;/P&gt;&lt;P&gt;     exporting&lt;/P&gt;&lt;P&gt;       it_fieldcat             = field_tab[]&lt;/P&gt;&lt;P&gt;       i_callback_user_command = alv_slis_formname&lt;/P&gt;&lt;P&gt;       i_structure_name        = 'REC_ALV'&lt;/P&gt;&lt;P&gt;       i_callback_program = v_repid&lt;/P&gt;&lt;P&gt;       is_variant         = v_variant&lt;/P&gt;&lt;P&gt;       it_events          = events[]&lt;/P&gt;&lt;P&gt;       i_save             = v_save&lt;/P&gt;&lt;P&gt;    tables&lt;/P&gt;&lt;P&gt;      t_outtab           = REC_ALV&lt;/P&gt;&lt;P&gt;    exceptions&lt;/P&gt;&lt;P&gt;      program_error           = 1&lt;/P&gt;&lt;P&gt;      others                  = 2&lt;/P&gt;&lt;P&gt;endform.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Oct 2006 20:31:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/blank-screen-problem/m-p/1607603#M272703</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-02T20:31:23Z</dc:date>
    </item>
    <item>
      <title>Re: blank screen problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/blank-screen-problem/m-p/1607604#M272704</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;ahhhhh.... ok,  normally, you will not need to do anything special, when clicking BACK button from ALV, but since you are handling other user-commands, I would suggest check the user command in the form that you mentioned above,  I think it may be going in there even when you click the BACK button.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;RIch Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Oct 2006 20:34:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/blank-screen-problem/m-p/1607604#M272704</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-10-02T20:34:50Z</dc:date>
    </item>
    <item>
      <title>Re: blank screen problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/blank-screen-problem/m-p/1607605#M272705</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;So in you sample......&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;


form alv_user_command
using r_ucomm like sy-ucomm
rs_selfield type slis_selfield.

&amp;lt;b&amp;gt;check r_ucomm = &amp;lt;some_fcode&amp;gt;.  &amp;lt;-- check the user actually pressed the right button&amp;lt;/b&amp;gt;


if rs_selfield-fieldname = 'AUFNR'.
set parameter id: 'ANR' field rs_selfield-value.
call transaction 'IW33' and skip first screen. "Display service order
elseif rs_selfield-fieldname = 'STD_RATE'.
read table REC_ALV index rs_selfield-tabindex.
call transaction 'ZSTDLIST' and skip first screen. "Display standards

elseif ( rs_selfield-fieldname = 'QTY'
or rs_selfield-fieldname = 'COST'
or rs_selfield-fieldname = 'AMT' ).
read table REC_ALV index rs_selfield-tabindex.
mode = 'DRILLDN'.
drill_down-aufnr = REC_ALV-AUFNR.
drill_down-lgort = REC_ALV-LGORT.
clear REC_ALV_DETAIL[].
perform get_data.
perform print_alv_Detail.
mode = 'SUMMARY'.
endif. "if rs_selfield-fieldname = 'AUFNR'
endform. "ALV_USER_COMMAND

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Oct 2006 20:36:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/blank-screen-problem/m-p/1607605#M272705</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-10-02T20:36:23Z</dc:date>
    </item>
    <item>
      <title>Re: blank screen problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/blank-screen-problem/m-p/1607606#M272706</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;ok....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;check the code...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call function 'REUSE_ALV_GRID_DISPLAY'&lt;/P&gt;&lt;P&gt;       exporting&lt;/P&gt;&lt;P&gt;            i_callback_program      = gd_repid&lt;/P&gt;&lt;P&gt;            i_callback_top_of_page   = 'TOP-OF-PAGE'  &lt;/P&gt;&lt;P&gt;            I_callback_user_command = 'USER_COMMAND'   "see FORM &lt;/P&gt;&lt;P&gt;            is_layout               = gd_layout&lt;/P&gt;&lt;P&gt;            it_fieldcat             = fieldcatalog[]&lt;/P&gt;&lt;P&gt;            i_save                  = 'X'&lt;/P&gt;&lt;P&gt;       tables&lt;/P&gt;&lt;P&gt;            t_outtab                = it_ekko&lt;/P&gt;&lt;P&gt;       exceptions&lt;/P&gt;&lt;P&gt;            program_error           = 1&lt;/P&gt;&lt;P&gt;            others                  = 2.&lt;/P&gt;&lt;P&gt;-&lt;/P&gt;&lt;HR originaltext="------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;----&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;      FORM USER_COMMAND                                          *&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;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      --&amp;gt; R_UCOMM                                                *&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      --&amp;gt; RS_SELFIELD                                            *&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;FORM user_command USING r_ucomm LIKE sy-ucomm&lt;/P&gt;&lt;P&gt;                  rs_selfield TYPE slis_selfield.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Check function code&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  CASE r_ucomm.&lt;/P&gt;&lt;P&gt;    WHEN '&amp;amp;IC1'.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  Check field clicked on within ALVgrid report&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    IF rs_selfield-fieldname = 'EBELN'.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    Read data table, using index of row user clicked on&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      READ TABLE it_ekko INTO wa_ekko INDEX rs_selfield-tabindex.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    Set parameter ID for transaction screen field&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      SET PARAMETER ID 'BES' FIELD wa_ekko-ebeln.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    Sxecute transaction ME23N, and skip initial data entry screen&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;      CALL TRANSACTION 'ME23N' AND SKIP FIRST SCREEN.&lt;/P&gt;&lt;P&gt;    ENDIF.&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;P&gt;Azaz Ali.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Azaz.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Azaz Ali&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Oct 2006 20:39:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/blank-screen-problem/m-p/1607606#M272706</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-02T20:39:04Z</dc:date>
    </item>
    <item>
      <title>Re: blank screen problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/blank-screen-problem/m-p/1607607#M272707</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Rich&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have used the following if condition still getting the same thing&lt;/P&gt;&lt;P&gt;if r_ucomm = '&amp;amp;IC1'.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Oct 2006 20:44:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/blank-screen-problem/m-p/1607607#M272707</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-02T20:44:52Z</dc:date>
    </item>
    <item>
      <title>Re: blank screen problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/blank-screen-problem/m-p/1607608#M272708</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 you please post the code of form &amp;lt;b&amp;gt;alv_slis_formname&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Azaz.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Oct 2006 20:46:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/blank-screen-problem/m-p/1607608#M272708</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-02T20:46:59Z</dc:date>
    </item>
    <item>
      <title>Re: blank screen problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/blank-screen-problem/m-p/1607609#M272709</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ali&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here what I have using&lt;/P&gt;&lt;P&gt;data: alv_slis_formname       type slis_formname value 'ALV_USER_COMMAND'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call function 'REUSE_ALV_GRID_DISPLAY'&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;i_callback_user_command = alv_slis_formname&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;form alv_user_command&lt;/P&gt;&lt;P&gt;     using r_ucomm     like sy-ucomm&lt;/P&gt;&lt;P&gt;           rs_selfield type slis_selfield.&lt;/P&gt;&lt;P&gt;if r_ucomm = '&amp;amp;IC1'.&lt;/P&gt;&lt;P&gt; code goes here.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Oct 2006 20:48:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/blank-screen-problem/m-p/1607609#M272709</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-02T20:48:34Z</dc:date>
    </item>
    <item>
      <title>Re: blank screen problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/blank-screen-problem/m-p/1607610#M272710</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Guys&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I solved it. But I am not sure why it solved it.&lt;/P&gt;&lt;P&gt;I had a skip 1 in one of my method that was gathering all the data. as soon as I desabled that line it went away.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks to every body for trying to help me out. got some good links to learn AVL.&lt;/P&gt;&lt;P&gt;If you know why skip 1 was doing it please let me know thanks.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Anwarul Kabir&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Oct 2006 21:06:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/blank-screen-problem/m-p/1607610#M272710</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-02T21:06:21Z</dc:date>
    </item>
    <item>
      <title>Re: blank screen problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/blank-screen-problem/m-p/1607611#M272711</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I think because SKIP statement is primarily for list output,  do this SKIP statement forced a list display.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;RIch Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Oct 2006 21:46:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/blank-screen-problem/m-p/1607611#M272711</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-10-02T21:46:25Z</dc:date>
    </item>
    <item>
      <title>Re: blank screen problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/blank-screen-problem/m-p/1607612#M272712</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;not really&lt;/P&gt;&lt;P&gt;It was within a loop that was filling out my structure that I was using in the ALV function.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I guess some how that skip was overflowing the structure or something.&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT REC.&lt;/P&gt;&lt;P&gt;    at new aufnr.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     skip 1.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt; .....&lt;/P&gt;&lt;P&gt;   ENDLOOP.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 02 Oct 2006 21:51:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/blank-screen-problem/m-p/1607612#M272712</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-02T21:51:28Z</dc:date>
    </item>
  </channel>
</rss>

