<?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 Layout fields in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/layout-fields/m-p/1173814#M123830</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I know &amp;lt;b&amp;gt;ALV&amp;lt;/b&amp;gt; layout name , report name.&lt;/P&gt;&lt;P&gt;Can i get the fields in the output for the layout?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds,&lt;/P&gt;&lt;P&gt;O&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 15 Feb 2006 18:10:39 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-02-15T18:10:39Z</dc:date>
    <item>
      <title>Layout fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/layout-fields/m-p/1173814#M123830</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello,&lt;/P&gt;&lt;P&gt;I know &amp;lt;b&amp;gt;ALV&amp;lt;/b&amp;gt; layout name , report name.&lt;/P&gt;&lt;P&gt;Can i get the fields in the output for the layout?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds,&lt;/P&gt;&lt;P&gt;O&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Feb 2006 18:10:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/layout-fields/m-p/1173814#M123830</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-15T18:10:39Z</dc:date>
    </item>
    <item>
      <title>Re: Layout fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/layout-fields/m-p/1173815#M123831</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;from this FM you may get some info &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;REUSE_ALV_LIST_LAYOUT_INFO_GET.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;try this..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Feb 2006 18:16:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/layout-fields/m-p/1173815#M123831</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-15T18:16:07Z</dc:date>
    </item>
    <item>
      <title>Re: Layout fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/layout-fields/m-p/1173816#M123832</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 hope you are talking about Layout set and print program. You can check the field output in the Layout set by going to SE71, display the layoutset and goto the  menu path : &amp;lt;b&amp;gt;Utilities-&amp;gt; Form Info&amp;lt;/b&amp;gt;. it will display the complete form Info. You can find the details of the fields used under the Text element for Windows.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Feb 2006 18:20:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/layout-fields/m-p/1173816#M123832</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-15T18:20:27Z</dc:date>
    </item>
    <item>
      <title>Re: Layout fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/layout-fields/m-p/1173817#M123833</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi ,&lt;/P&gt;&lt;P&gt;   you can use the following logic to print the selection fields on the output layout.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Internal table to store selection variables&lt;/P&gt;&lt;P&gt;  data : begin of i_varinfo occurs 20,&lt;/P&gt;&lt;P&gt;           flag       type c             ,&lt;/P&gt;&lt;P&gt;           olength    type x             ,&lt;/P&gt;&lt;P&gt;           line       like raldb-infoline.&lt;/P&gt;&lt;P&gt;  data : end   of i_varinfo .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Call Function to Display Selections.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  call function 'PRINT_SELECTIONS'&lt;/P&gt;&lt;P&gt;       exporting&lt;/P&gt;&lt;P&gt;            mode      = ' '&lt;/P&gt;&lt;P&gt;            rname     = sy-cprog&lt;/P&gt;&lt;P&gt;            rvariante = sy-slset&lt;/P&gt;&lt;P&gt;       tables&lt;/P&gt;&lt;P&gt;            infotab   = i_varinfo.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  loop at i_varinfo.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Write   each selection variable&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    write: / i_varinfo+2.&lt;/P&gt;&lt;P&gt;    delete i_varinfo.&lt;/P&gt;&lt;P&gt;  endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i think this will sortout your issue.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Aditya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Feb 2006 18:20:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/layout-fields/m-p/1173817#M123833</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-15T18:20:37Z</dc:date>
    </item>
    <item>
      <title>Re: Layout fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/layout-fields/m-p/1173818#M123834</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN __jive_emoticon_name="sad"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Feb 2006 18:25:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/layout-fields/m-p/1173818#M123834</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-15T18:25:47Z</dc:date>
    </item>
    <item>
      <title>Re: Layout fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/layout-fields/m-p/1173819#M123835</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What exactly are you looking for here,  can you give more of an explanation?   Is it that you want the fieldcatalog, sort order, etc. for a given layout variant for a given program, not necessarily, the same 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>Wed, 15 Feb 2006 18:37:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/layout-fields/m-p/1173819#M123835</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-02-15T18:37:00Z</dc:date>
    </item>
    <item>
      <title>Re: Layout fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/layout-fields/m-p/1173820#M123836</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1. I am downloading a ALV output to Tab delimted fiel on to my application server, in background.&lt;/P&gt;&lt;P&gt;Since ,i have the data in my internal table is use open data set and tarnsfer data on my server.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now topic is if the layout keeps changing(say user have 3 layouts and he can give the layout name in the selction screen) downloaded fiel should also have the same data&lt;/P&gt;&lt;P&gt;(i mean order of fields (out of 10 fields, he will choose only 5 of them ).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My idea is to get the fields of a layout variant (since i know it at selection screen level ) and make dynamic  internal tables and fill teh onyl the relavent data and download it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. I want to know if i know a LAYOUT Variant name of a report can i get the fields of the layout .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rgds,&lt;/P&gt;&lt;P&gt;O&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 15 Feb 2006 18:43:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/layout-fields/m-p/1173820#M123836</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-02-15T18:43:17Z</dc:date>
    </item>
    <item>
      <title>Re: Layout fields</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/layout-fields/m-p/1173821#M123837</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;you can use FM&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LT_DBDATA_READ_FROM_LTDX&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;to get the details.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Raja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 19 Feb 2006 13:13:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/layout-fields/m-p/1173821#M123837</guid>
      <dc:creator>athavanraja</dc:creator>
      <dc:date>2006-02-19T13:13:42Z</dc:date>
    </item>
  </channel>
</rss>

