<?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 Issue with Header in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-issue-with-header/m-p/1164070#M121331</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ankur,&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 tried the same at my end.&lt;/P&gt;&lt;P&gt;1. I got the problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. The problem is that&lt;/P&gt;&lt;P&gt;   there is  default VARIANT  1_STD (For ALV Layout)&lt;/P&gt;&lt;P&gt;   which is hardcoded.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. So our Z program does not get&lt;/P&gt;&lt;P&gt;   any default variant&lt;/P&gt;&lt;P&gt;   and hence, there is no sort criteria.&lt;/P&gt;&lt;P&gt;   and hence the message which&lt;/P&gt;&lt;P&gt;   is justified as per ALV&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4. Do This in ur z program&lt;/P&gt;&lt;P&gt;   (it will solve the problem)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;5. In the form &lt;/P&gt;&lt;P&gt;FORM top_of_list.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;6. Insert the Patch (as mentioned between the lines)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'REUSE_ALV_LIST_LAYOUT_INFO_GET'&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      et_sort       = it_sort[]&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      no_infos      = 1&lt;/P&gt;&lt;P&gt;      program_error = 2&lt;/P&gt;&lt;P&gt;      OTHERS        = 3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="--------------" /&gt;&lt;P&gt; PATCH START&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  REFRESH it_sort.&lt;/P&gt;&lt;P&gt;  CLEAR it_sort.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  it_sort-spos = '01'.&lt;/P&gt;&lt;P&gt;  it_sort-fieldname = 'DOCNUM'.&lt;/P&gt;&lt;P&gt;  it_sort-tabname = 'I_OUTTAB'.&lt;/P&gt;&lt;P&gt;  it_sort-up = 'X'.&lt;/P&gt;&lt;P&gt;  it_sort-group = '*'.&lt;/P&gt;&lt;P&gt;  it_sort-subtot = 'X'.&lt;/P&gt;&lt;P&gt;  it_sort-comp = 'X'.&lt;/P&gt;&lt;P&gt;  APPEND it_sort.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CLEAR IT_SORT.&lt;/P&gt;&lt;P&gt;  it_sort-spos = '02'.&lt;/P&gt;&lt;P&gt;  it_sort-fieldname = 'DOCLIN'.&lt;/P&gt;&lt;P&gt;  it_sort-tabname = 'I_OUTTAB'.&lt;/P&gt;&lt;P&gt;  it_sort-up = 'X'.&lt;/P&gt;&lt;P&gt;  APPEND it_sort.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="--------------" /&gt;&lt;P&gt; PATCH END&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF sy-subrc NE 0.&lt;/P&gt;&lt;P&gt;    MESSAGE s257.&lt;/P&gt;&lt;P&gt;    EXIT.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;7. Now Run, It works FANTASTIC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;8. There are other ways to solve this problem,&lt;/P&gt;&lt;P&gt;   but for time being do this.&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;Amit M.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Amit Mittal&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 03 Jan 2006 07:11:52 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-01-03T07:11:52Z</dc:date>
    <item>
      <title>ALV Issue with Header</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-issue-with-header/m-p/1164062#M121323</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ,&lt;/P&gt;&lt;P&gt;I have copied a standard program RPCIPS00 to a z program. The only change which I have done is added some of the custom fields from the standard table which were not being selected.Now when I execute the report I am able to see the output but not able to see the header and the output gives this message .&lt;/P&gt;&lt;P&gt;"Due to the sort criteria, no header information can be displayed".&lt;/P&gt;&lt;P&gt;Any inputs why this problem could be arising ?&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ankur Bhandari&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Jan 2006 06:23:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-issue-with-header/m-p/1164062#M121323</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-03T06:23:33Z</dc:date>
    </item>
    <item>
      <title>Re: ALV Issue with Header</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-issue-with-header/m-p/1164063#M121324</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ankur,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yesterday i tried that, i got the same message...&lt;/P&gt;&lt;P&gt;i observed one thing that we are not passing any sort info to the alv FM, so try to pass the sort table info to the FM, since the first one is std and it is getting from some standard program,,,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try that..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Jan 2006 06:26:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-issue-with-header/m-p/1164063#M121324</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-03T06:26:26Z</dc:date>
    </item>
    <item>
      <title>Re: ALV Issue with Header</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-issue-with-header/m-p/1164064#M121325</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;There could be a possibility that you are Sorting the table after which you are using AT NEW. In this case only the primary key fields would retain value in internal table. So if you are using AT NEW, then before using AT NEW, copy all the values from one work area(1) to another work area(2) of same type.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then use work area(2) for the data which you are passing to the ALV.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this solves the problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;P&gt;Prashant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Jan 2006 06:30:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-issue-with-header/m-p/1164064#M121325</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-03T06:30:07Z</dc:date>
    </item>
    <item>
      <title>Re: ALV Issue with Header</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-issue-with-header/m-p/1164065#M121326</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;But isn't it_sort being imported from the function module.So how can we pass the sort table ?&lt;/P&gt;&lt;P&gt;Ankur&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Jan 2006 06:31:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-issue-with-header/m-p/1164065#M121326</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-03T06:31:23Z</dc:date>
    </item>
    <item>
      <title>Re: ALV Issue with Header</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-issue-with-header/m-p/1164066#M121327</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;May be you need to build sort table and pass it to the FM. then you might be able to see the sort info from &lt;/P&gt;&lt;P&gt;in the top of list from info fm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Jan 2006 06:35:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-issue-with-header/m-p/1164066#M121327</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-03T06:35:43Z</dc:date>
    </item>
    <item>
      <title>Re: ALV Issue with Header</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-issue-with-header/m-p/1164067#M121328</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vijay,&lt;/P&gt;&lt;P&gt;Have you tried this already ? I want to be sure before modifying the code.&lt;/P&gt;&lt;P&gt;Ankur&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Jan 2006 06:54:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-issue-with-header/m-p/1164067#M121328</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-03T06:54:05Z</dc:date>
    </item>
    <item>
      <title>Re: ALV Issue with Header</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-issue-with-header/m-p/1164068#M121329</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ankur,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;that is what i feel, but if you want to try that just  create the temp program and check. don't disturb your code. sort info is not there in your code, just pass it.&lt;/P&gt;&lt;P&gt;and check..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Jan 2006 06:59:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-issue-with-header/m-p/1164068#M121329</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-03T06:59:28Z</dc:date>
    </item>
    <item>
      <title>Re: ALV Issue with Header</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-issue-with-header/m-p/1164069#M121330</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I copied the standard program to  a z program. Didnt do any modifications. I am still getting the same message. Any inputs now ?&lt;/P&gt;&lt;P&gt;Ankur Bhandari&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Jan 2006 07:03:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-issue-with-header/m-p/1164069#M121330</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-03T07:03:22Z</dc:date>
    </item>
    <item>
      <title>Re: ALV Issue with Header</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-issue-with-header/m-p/1164070#M121331</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ankur,&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 tried the same at my end.&lt;/P&gt;&lt;P&gt;1. I got the problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. The problem is that&lt;/P&gt;&lt;P&gt;   there is  default VARIANT  1_STD (For ALV Layout)&lt;/P&gt;&lt;P&gt;   which is hardcoded.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. So our Z program does not get&lt;/P&gt;&lt;P&gt;   any default variant&lt;/P&gt;&lt;P&gt;   and hence, there is no sort criteria.&lt;/P&gt;&lt;P&gt;   and hence the message which&lt;/P&gt;&lt;P&gt;   is justified as per ALV&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4. Do This in ur z program&lt;/P&gt;&lt;P&gt;   (it will solve the problem)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;5. In the form &lt;/P&gt;&lt;P&gt;FORM top_of_list.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;6. Insert the Patch (as mentioned between the lines)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'REUSE_ALV_LIST_LAYOUT_INFO_GET'&lt;/P&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      et_sort       = it_sort[]&lt;/P&gt;&lt;P&gt;    EXCEPTIONS&lt;/P&gt;&lt;P&gt;      no_infos      = 1&lt;/P&gt;&lt;P&gt;      program_error = 2&lt;/P&gt;&lt;P&gt;      OTHERS        = 3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="--------------" /&gt;&lt;P&gt; PATCH START&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  REFRESH it_sort.&lt;/P&gt;&lt;P&gt;  CLEAR it_sort.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  it_sort-spos = '01'.&lt;/P&gt;&lt;P&gt;  it_sort-fieldname = 'DOCNUM'.&lt;/P&gt;&lt;P&gt;  it_sort-tabname = 'I_OUTTAB'.&lt;/P&gt;&lt;P&gt;  it_sort-up = 'X'.&lt;/P&gt;&lt;P&gt;  it_sort-group = '*'.&lt;/P&gt;&lt;P&gt;  it_sort-subtot = 'X'.&lt;/P&gt;&lt;P&gt;  it_sort-comp = 'X'.&lt;/P&gt;&lt;P&gt;  APPEND it_sort.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CLEAR IT_SORT.&lt;/P&gt;&lt;P&gt;  it_sort-spos = '02'.&lt;/P&gt;&lt;P&gt;  it_sort-fieldname = 'DOCLIN'.&lt;/P&gt;&lt;P&gt;  it_sort-tabname = 'I_OUTTAB'.&lt;/P&gt;&lt;P&gt;  it_sort-up = 'X'.&lt;/P&gt;&lt;P&gt;  APPEND it_sort.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*----&lt;/P&gt;&lt;HR originaltext="--------------" /&gt;&lt;P&gt; PATCH END&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF sy-subrc NE 0.&lt;/P&gt;&lt;P&gt;    MESSAGE s257.&lt;/P&gt;&lt;P&gt;    EXIT.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;7. Now Run, It works FANTASTIC.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;8. There are other ways to solve this problem,&lt;/P&gt;&lt;P&gt;   but for time being do this.&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;Amit M.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Amit Mittal&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Jan 2006 07:11:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-issue-with-header/m-p/1164070#M121331</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-03T07:11:52Z</dc:date>
    </item>
    <item>
      <title>Re: ALV Issue with Header</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-issue-with-header/m-p/1164071#M121332</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ANkur,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i'm also copied and didn't do any modifications, once you copied you are no where in standard environment. because of that it is not giving the sort info.&lt;/P&gt;&lt;P&gt;do one more thing, in the original sap program keep the break point in top_of_list and see in debug mode how it is fetching the sort data, though they didn't pass the data to lav display..., what i am thinking our program in not in std environment so we need to supply the info to the FM so that we will get the data back.&lt;/P&gt;&lt;P&gt;pleae check the above threads...&lt;/P&gt;&lt;P&gt;and send the sort info to ALV FM.&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Vijay Babu Dudla&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Jan 2006 07:12:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-issue-with-header/m-p/1164071#M121332</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-03T07:12:37Z</dc:date>
    </item>
    <item>
      <title>Re: ALV Issue with Header</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-issue-with-header/m-p/1164072#M121333</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Amit,&lt;/P&gt;&lt;P&gt;Your answer was very helpful but I will wait for your point .&lt;/P&gt;&lt;P&gt;"8. There are other ways to solve this problem,&lt;/P&gt;&lt;P&gt;   but for time being do this."&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As in this case we are just modifying the it_sort and calling that function module is not needed.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ankur Bhandari&lt;/P&gt;&lt;P&gt;p.s Also when I save the layout once the report is executed , the option/checkbox for "user specific" layout is always checked and is greyed out. Any pointers why it is so and how can we edit this value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Ankur Bhandari&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Jan 2006 07:45:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-issue-with-header/m-p/1164072#M121333</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-03T07:45:23Z</dc:date>
    </item>
    <item>
      <title>Re: ALV Issue with Header</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-issue-with-header/m-p/1164073#M121334</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ankur,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;else you can copy the variant which std program is using.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have a doubt, you want sort info to be printed in top of list or not.&lt;/P&gt;&lt;P&gt;if you want then you need to pass the sort table to alv FM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Jan 2006 07:50:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-issue-with-header/m-p/1164073#M121334</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-03T07:50:32Z</dc:date>
    </item>
    <item>
      <title>Re: ALV Issue with Header</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-issue-with-header/m-p/1164074#M121335</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Amit did you get a chance to clarify on other options.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ankur Bhandari&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Jan 2006 10:57:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-issue-with-header/m-p/1164074#M121335</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-03T10:57:46Z</dc:date>
    </item>
    <item>
      <title>Re: ALV Issue with Header</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-issue-with-header/m-p/1164075#M121336</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ankur,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. There are other  possibilities,&lt;/P&gt;&lt;P&gt;   out of which some i don't know how to achieve&lt;/P&gt;&lt;P&gt;    ( im still searching for it)&lt;/P&gt;&lt;P&gt;   and some are which manual intervention is required.&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;   I will brief it.&lt;/P&gt;&lt;P&gt;   Some technicaliteis are involved&lt;/P&gt;&lt;P&gt;   and they are the truth of it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. In this program report,&lt;/P&gt;&lt;P&gt;   IT_SORT is a MUST&lt;/P&gt;&lt;P&gt;    bcos based on this it shows some busines information&lt;/P&gt;&lt;P&gt;    on the top of alv&lt;/P&gt;&lt;P&gt;    I think u AGREE on this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   SAP created 3 ALV Layout Variants&lt;/P&gt;&lt;P&gt;   and HARDCODED 1 of them  as Default.&lt;/P&gt;&lt;P&gt;  Hence, IT_SORT is populated and&lt;/P&gt;&lt;P&gt;  output is perfectly OK&lt;/P&gt;&lt;P&gt;   Till, this U AGREE. (i suppose)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. So our program should also have  &lt;/P&gt;&lt;P&gt;    IT_SORT by SOME OR OTHER Method.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4. We have the following options :&lt;/P&gt;&lt;P&gt;    &lt;/P&gt;&lt;P&gt;  a) Create a new alv variant and hardcode&lt;/P&gt;&lt;P&gt;     in our Z Program&lt;/P&gt;&lt;P&gt;     -- possible  --&lt;/P&gt;&lt;P&gt;   b) If possible, COPY the original programs&lt;/P&gt;&lt;P&gt;     ALV Variant   into our Z program&lt;/P&gt;&lt;P&gt;    and no problem at all.&lt;/P&gt;&lt;P&gt;   -&lt;/P&gt;&lt;HR originaltext="---" /&gt;&lt;P&gt; i don't know how to copy, still seraching---&lt;/P&gt;&lt;P&gt;  c) Hardcode IT_SORT as we did&lt;/P&gt;&lt;P&gt;   -&lt;/P&gt;&lt;HR originaltext="---" /&gt;&lt;P&gt; this info was taken while debuggin original progam  IT_SORT ---&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;5. Problems in a,b,c&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   a) Such variant needs to be Manually created&lt;/P&gt;&lt;P&gt;     in each server/client (DEV, QA, PRD)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   b) Copying has to be done manuually for  &lt;/P&gt;&lt;P&gt;     each server.&lt;/P&gt;&lt;P&gt;    If it can be included in transport request,&lt;/P&gt;&lt;P&gt;    then no problem at all like (a)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   c) Hardcoding comes&lt;/P&gt;&lt;P&gt;      But i still feel, if (a) and (b)&lt;/P&gt;&lt;P&gt;      are not working, C is the best.&lt;/P&gt;&lt;P&gt;    &lt;/P&gt;&lt;P&gt;6. I delayed my answer because&lt;/P&gt;&lt;P&gt;   i was still searching for the BEST WAY Out !&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;7. I suppose im able to satisfy  my point no 8&lt;/P&gt;&lt;P&gt;   and also make clear the problems involved&lt;/P&gt;&lt;P&gt;   in achieving the best way out!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;amit m.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Amit Mittal&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Jan 2006 11:07:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-issue-with-header/m-p/1164075#M121336</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-03T11:07:31Z</dc:date>
    </item>
    <item>
      <title>Re: ALV Issue with Header</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv-issue-with-header/m-p/1164076#M121337</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi again,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. which option did u go for / or are planning&lt;/P&gt;&lt;P&gt;  to go for a, b c or something other ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;amit m.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 03 Jan 2006 12:08:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv-issue-with-header/m-p/1164076#M121337</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-03T12:08:36Z</dc:date>
    </item>
  </channel>
</rss>

