<?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: Problem with ALV in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-alv/m-p/5941826#M1334697</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes,  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;i_table    LIKE zpigcu  OCCURS 0 WITH HEADER LINE,&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I use the method twice to split the ALV &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;MODULE display_output OUTPUT.

  IF cstcontainer IS INITIAL.

    CREATE OBJECT cstcontainer
           EXPORTING container_name = g_cont.

* Divide em dois
    CREATE OBJECT splitter
              EXPORTING parent = cstcontainer
                        rows    = 2
                        columns = 1.

    CALL METHOD splitter-&amp;gt;get_container
                      EXPORTING row      = 1
                                column   = 1
                      RECEIVING container = container_1.

    CALL METHOD splitter-&amp;gt;get_container
                  EXPORTING row      = 2
                            column   = 1
                  RECEIVING container = container_2.

    CREATE OBJECT alvgrid1
           EXPORTING i_parent = container_1.

    CALL METHOD alvgrid1-&amp;gt;set_table_for_first_display
         EXPORTING i_structure_name = 'ZPIGCU'
                   is_variant       = variant1
                   i_save           = save
         CHANGING  it_outtab        = i_table[].

    CREATE OBJECT event_receiver.
    SET HANDLER event_receiver-&amp;gt;handle_double_click FOR alvgrid1.

    CALL FUNCTION 'LVC_FIELDCATALOG_MERGE'
         EXPORTING
              i_structure_name = 'ZPIGCU'
         CHANGING
              ct_fieldcat      = field_cat.


    CREATE OBJECT alvgrid2
           EXPORTING
               i_parent              = container_2
               i_item_selection      = 'X'
               i_no_html_header      = 'X'
               i_no_toolbar          = ' '.

    CALL METHOD alvgrid2-&amp;gt;set_table_for_first_display
            EXPORTING
                 i_background_id      = 'ALV_BACKGROUND'
                 i_save               = save
                 is_variant           = variant2
            CHANGING
                 it_sort              = gt_sort[]
                 it_outtab            = i_table[]
                 it_fieldcatalog      = field_cat.


  ENDIF.

ENDMODULE.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 16 Jul 2009 13:42:12 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2009-07-16T13:42:12Z</dc:date>
    <item>
      <title>Problem with ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-alv/m-p/5941816#M1334687</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Good mourning, Im using metod -&amp;gt;set_table_for_first_display , but im getting  this &lt;STRONG&gt;dump getwa_not_assigned&lt;/STRONG&gt; ,  however first time I ve executed it I got  the error: &lt;STRONG&gt;Layout parameter program name is missing&lt;/STRONG&gt;, i have been checking all the threads but without succed looking for a solution . I tryed to create a deep structure but it implies big changes in the program  ( with several includes ) . any ideas here  i have some code. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;DATA:  g_cont          TYPE scrfname VALUE 'ALV_GRID',

       alvgrid1        TYPE REF TO cl_gui_alv_grid,
       alvgrid2        TYPE REF TO cl_gui_alv_tree_simple,

       cstcontainer    TYPE REF TO cl_gui_custom_container,

       splitter        TYPE REF TO cl_gui_splitter_container,
       container_1     TYPE REF TO cl_gui_container,
       container_2     TYPE REF TO cl_gui_container,

       field_cat       TYPE lvc_t_fcat,
       gt_sort         TYPE lvc_t_sort,

       variant1        TYPE disvariant,
       variant2        TYPE disvariant,
       save            TYPE char1 VALUE 'A'.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;create object alvgrid2
      exporting
        i_parent         = container_2
        i_item_selection = 'X'
        i_no_html_header = 'X'
        i_no_toolbar     = ' '.

    call method alvgrid2-&amp;gt;set_table_for_first_display
      exporting
        i_background_id = 'ALV_BACKGROUND'
        i_save          = save
        is_variant      = variant2
     changing
       it_sort         = gt_sort[]
        it_outtab       = i_table[]
        it_fieldcatalog = field_cat.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jul 2009 11:08:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-alv/m-p/5941816#M1334687</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-16T11:08:47Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-alv/m-p/5941817#M1334688</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;Pass variant2-report = sy-repid before calling method set_table_for_first_display&lt;/P&gt;&lt;P&gt;Maybe this will solve your error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Anagha Deshmukh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jul 2009 11:15:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-alv/m-p/5941817#M1334688</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-16T11:15:46Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-alv/m-p/5941818#M1334689</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Did you pass the report name in the variant (DISVARIANT structuer) ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raymond&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jul 2009 11:15:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-alv/m-p/5941818#M1334689</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2009-07-16T11:15:56Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-alv/m-p/5941819#M1334690</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes , I did . any other idea ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;INITIALIZATION.

  syrepid = sy-repid.
  PERFORM check_autorizacao(zuniversovmm) USING 'ZBC_REPORT' syrepid.

  GET PARAMETER ID 'BUK' FIELD s_bukrs-low.
  CHECK NOT s_bukrs-low IS INITIAL.

  SELECT SINGLE waers INTO p_waers
                      FROM t001
                      WHERE bukrs EQ s_bukrs-low.

  variant1-report  = syrepid.
  variant1-variant = '/GERAL'.

  variant2-report  = syrepid.
  variant2-variant = '/GERAL2'.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jul 2009 12:00:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-alv/m-p/5941819#M1334690</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-16T12:00:28Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-alv/m-p/5941820#M1334691</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Could you run report BALVBUFDEL and then call again your report ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raymond&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jul 2009 12:41:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-alv/m-p/5941820#M1334691</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2009-07-16T12:41:40Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-alv/m-p/5941821#M1334692</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Done , but the error still continue  : the detail of the dump is :&lt;/P&gt;&lt;P&gt;Err.tmpo.ejec.         GETWA_NOT_ASSIGNED &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;short text                                                        &lt;/P&gt;&lt;P&gt;  Field symbol has not yet been assigned.                                                                                &lt;/P&gt;&lt;P&gt;Error in the ABAP Application Program                                                                                &lt;/P&gt;&lt;P&gt;The current ABAP program "CL_GUI_ALV_TREE_SIMPLE========CP" had to &lt;/P&gt;&lt;P&gt;   terminated because it has                                         &lt;/P&gt;&lt;P&gt;  come across a statement that unfortunately cannot be executed.     &lt;/P&gt;&lt;P&gt;                                                                     &lt;/P&gt;&lt;P&gt;maybe could be more useful .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jul 2009 13:08:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-alv/m-p/5941821#M1334692</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-16T13:08:44Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-alv/m-p/5941822#M1334693</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;U should check how your catalog table (field_cat) is filled, probably something is not correct there, something is missing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jul 2009 13:15:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-alv/m-p/5941822#M1334693</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-16T13:15:39Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-alv/m-p/5941823#M1334694</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;If you use the same field catalog and sort table in tree than in grid, try to call the grid display and perform the [the Consistency Check|http://help.sap.com/saphelp_sm32/helpdata/EN/d6/23253963143e6ae10000000a11402f/frameset.htm] of your ALV, even if the display is fine (use shift+double click right on a free surface of the ALV)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Raymond&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jul 2009 13:23:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-alv/m-p/5941823#M1334694</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2009-07-16T13:23:20Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-alv/m-p/5941824#M1334695</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Max, &lt;/P&gt;&lt;P&gt;Im doing that this way , &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;CALL FUNCTION 'LVC_FIELDCATALOG_MERGE'
         EXPORTING
              i_structure_name = 'ZPIGCU'
         CHANGING
              ct_fieldcat      = field_cat.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;where &lt;STRONG&gt;ZPIGCU&lt;/STRONG&gt; is a structure, what did  i miss ?  any idea ? , thank you.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jul 2009 13:23:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-alv/m-p/5941824#M1334695</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-16T13:23:37Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-alv/m-p/5941825#M1334696</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_table is like ZPIGCU? IF it's so how do you fill the sort table?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jul 2009 13:25:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-alv/m-p/5941825#M1334696</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-16T13:25:11Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-alv/m-p/5941826#M1334697</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes,  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;i_table    LIKE zpigcu  OCCURS 0 WITH HEADER LINE,&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I use the method twice to split the ALV &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;MODULE display_output OUTPUT.

  IF cstcontainer IS INITIAL.

    CREATE OBJECT cstcontainer
           EXPORTING container_name = g_cont.

* Divide em dois
    CREATE OBJECT splitter
              EXPORTING parent = cstcontainer
                        rows    = 2
                        columns = 1.

    CALL METHOD splitter-&amp;gt;get_container
                      EXPORTING row      = 1
                                column   = 1
                      RECEIVING container = container_1.

    CALL METHOD splitter-&amp;gt;get_container
                  EXPORTING row      = 2
                            column   = 1
                  RECEIVING container = container_2.

    CREATE OBJECT alvgrid1
           EXPORTING i_parent = container_1.

    CALL METHOD alvgrid1-&amp;gt;set_table_for_first_display
         EXPORTING i_structure_name = 'ZPIGCU'
                   is_variant       = variant1
                   i_save           = save
         CHANGING  it_outtab        = i_table[].

    CREATE OBJECT event_receiver.
    SET HANDLER event_receiver-&amp;gt;handle_double_click FOR alvgrid1.

    CALL FUNCTION 'LVC_FIELDCATALOG_MERGE'
         EXPORTING
              i_structure_name = 'ZPIGCU'
         CHANGING
              ct_fieldcat      = field_cat.


    CREATE OBJECT alvgrid2
           EXPORTING
               i_parent              = container_2
               i_item_selection      = 'X'
               i_no_html_header      = 'X'
               i_no_toolbar          = ' '.

    CALL METHOD alvgrid2-&amp;gt;set_table_for_first_display
            EXPORTING
                 i_background_id      = 'ALV_BACKGROUND'
                 i_save               = save
                 is_variant           = variant2
            CHANGING
                 it_sort              = gt_sort[]
                 it_outtab            = i_table[]
                 it_fieldcatalog      = field_cat.


  ENDIF.

ENDMODULE.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jul 2009 13:42:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-alv/m-p/5941826#M1334697</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-16T13:42:12Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-alv/m-p/5941827#M1334698</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Don't you fill internal table gt_sort?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jul 2009 13:45:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-alv/m-p/5941827#M1334698</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-16T13:45:05Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-alv/m-p/5941828#M1334699</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;No ,  is empty.&lt;/STRONG&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jul 2009 13:47:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-alv/m-p/5941828#M1334699</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-16T13:47:45Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-alv/m-p/5941829#M1334700</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 usually get getwa_not_assigned dump when some SORT field is wrong.&lt;/P&gt;&lt;P&gt;In dump screen, enter in debug mode and check what was assinged before dump occurs.&lt;/P&gt;&lt;P&gt;Maybe you can find the missing (or wrong) field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Frisoni&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jul 2009 13:49:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-alv/m-p/5941829#M1334700</guid>
      <dc:creator>guilherme_frisoni</dc:creator>
      <dc:date>2009-07-16T13:49:41Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-alv/m-p/5941830#M1334701</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;How should I fill this table.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jul 2009 13:53:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-alv/m-p/5941830#M1334701</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-16T13:53:35Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-alv/m-p/5941831#M1334702</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;No, if the sort table is empty it shouldn't be the problem, anyway delete it if you don't use it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;U should write a new program in order to call the two grid separatly, in this way u can understand in which grid the problem is&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jul 2009 14:03:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-alv/m-p/5941831#M1334702</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-16T14:03:03Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-alv/m-p/5941832#M1334703</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have a quick look on SAP NOTE based on your SAP version.&lt;/P&gt;&lt;P&gt;thanq&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jul 2009 14:08:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-alv/m-p/5941832#M1334703</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-07-16T14:08:13Z</dc:date>
    </item>
    <item>
      <title>Re: Problem with ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-alv/m-p/5941833#M1334704</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Keep it simple this way and try&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
call method alvgrid2-&amp;gt;set_table_for_first_display
      exporting
        i_save          = save
        is_variant      = variant2
     changing
        it_outtab       = i_table[]
        it_fieldcatalog = field_cat.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a®&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 16 Jul 2009 14:09:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-with-alv/m-p/5941833#M1334704</guid>
      <dc:creator>former_member194669</dc:creator>
      <dc:date>2009-07-16T14:09:48Z</dc:date>
    </item>
  </channel>
</rss>

