<?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 Dynamic Field Selection in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-field-selection/m-p/2973808#M701880</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i made an SE11 like program.&lt;/P&gt;&lt;P&gt;the user can choose any table they desire.&lt;/P&gt;&lt;P&gt;and i made the dynamic selection screen (for filtering of records) all right.&lt;/P&gt;&lt;P&gt;now, i want to display ONLY fields that were chosen by the user.&lt;/P&gt;&lt;P&gt;should be dynamic as well.&lt;/P&gt;&lt;P&gt;through check boxes perhaps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;any idea how?&lt;/P&gt;&lt;P&gt;like is there a FM for this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 26 Oct 2007 10:26:14 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-10-26T10:26:14Z</dc:date>
    <item>
      <title>Dynamic Field Selection</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-field-selection/m-p/2973808#M701880</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i made an SE11 like program.&lt;/P&gt;&lt;P&gt;the user can choose any table they desire.&lt;/P&gt;&lt;P&gt;and i made the dynamic selection screen (for filtering of records) all right.&lt;/P&gt;&lt;P&gt;now, i want to display ONLY fields that were chosen by the user.&lt;/P&gt;&lt;P&gt;should be dynamic as well.&lt;/P&gt;&lt;P&gt;through check boxes perhaps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;any idea how?&lt;/P&gt;&lt;P&gt;like is there a FM for this?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Oct 2007 10:26:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-field-selection/m-p/2973808#M701880</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-26T10:26:14Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Field Selection</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-field-selection/m-p/2973809#M701881</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;compare use of field "mark" in LZE16WF60 of transaction se16n&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;A.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Oct 2007 10:30:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-field-selection/m-p/2973809#M701881</guid>
      <dc:creator>andreas_mann3</dc:creator>
      <dc:date>2007-10-26T10:30:11Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Field Selection</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-field-selection/m-p/2973810#M701882</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what's that?&lt;/P&gt;&lt;P&gt;i'm not sure what you mean.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Oct 2007 10:38:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-field-selection/m-p/2973810#M701882</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-26T10:38:47Z</dc:date>
    </item>
    <item>
      <title>Re: Dynamic Field Selection</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-field-selection/m-p/2973811#M701883</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;use this function module.&lt;/P&gt;&lt;P&gt;  CALL FUNCTION 'RS_TABLE_LIST_CREATE'&lt;/P&gt;&lt;P&gt;     EXPORTING&lt;/P&gt;&lt;P&gt;          TABLE_NAME         = 'MARA' "your table name&lt;/P&gt;&lt;P&gt;          ACTION             = 'ANZE'&lt;/P&gt;&lt;P&gt;          WITHOUT_SUBMIT     = ' '&lt;/P&gt;&lt;P&gt;          GENERATION_FORCED  = 'X'&lt;/P&gt;&lt;P&gt;          NEW_SEL            = 'X'&lt;/P&gt;&lt;P&gt;     EXCEPTIONS&lt;/P&gt;&lt;P&gt;          TABLE_IS_STRUCTURE = 01&lt;/P&gt;&lt;P&gt;          TABLE_NOT_EXISTS   = 02&lt;/P&gt;&lt;P&gt;          DB_NOT_EXISTS      = 03.&lt;/P&gt;&lt;P&gt;rgds,&lt;/P&gt;&lt;P&gt;bharat.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 26 Oct 2007 11:03:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/dynamic-field-selection/m-p/2973811#M701883</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-26T11:03:29Z</dc:date>
    </item>
  </channel>
</rss>

