<?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 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv/m-p/3318961#M795055</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I_SELECTION&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If 'X' user can select a record, if space the Function Module only display the list, no selection possible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;E_EXIT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If 'X' user has canceled the selection (clicking back/cancel pushbutton)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;E_SELFIELD&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In case of single selection, this parameter returns information on cursor position of selected item : table, index, field name  and value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 23 Jan 2008 07:18:28 GMT</pubDate>
    <dc:creator>RaymondGiuseppi</dc:creator>
    <dc:date>2008-01-23T07:18:28Z</dc:date>
    <item>
      <title>ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv/m-p/3318959#M795053</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hai,&lt;/P&gt;&lt;P&gt;.what is the use of Export parameter(I_SELECTION) and  IMPORTING parameters(ES_SELFIELD,E_EXIT ) in this function module&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;call function 'REUSE_ALV_POPUP_TO_SELECT'&lt;/P&gt;&lt;P&gt;  exporting&lt;/P&gt;&lt;P&gt;    I_TITLE                       = 'FLIGHT DETAIL'&lt;/P&gt;&lt;P&gt;   &lt;STRONG&gt;I_SELECTION                   = 'X'&lt;/STRONG&gt;                                     &lt;/P&gt;&lt;P&gt;     I_ZEBRA                       = 'X'&lt;/P&gt;&lt;P&gt;    I_CHECKBOX_FIELDNAME          = 'I_CHK'&lt;/P&gt;&lt;P&gt;    i_tabname                     = 'IT_FLIGHT'&lt;/P&gt;&lt;P&gt;    I_STRUCTURE_NAME              = 'SFLIGHT'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;STRONG&gt;IMPORTING&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;   &lt;STRONG&gt;ES_SELFIELD                   = I_SELFIELD&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;   &lt;STRONG&gt;E_EXIT                        = I_EXIT&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;   tables&lt;/P&gt;&lt;P&gt;    t_outtab                      = IT_FLIGHT&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;if sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jan 2008 07:05:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv/m-p/3318959#M795053</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-23T07:05:10Z</dc:date>
    </item>
    <item>
      <title>Re: ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv/m-p/3318960#M795054</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;Description&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  I_SELECTION = 'X' =&amp;gt; the user can select entries in the displayed&lt;/P&gt;&lt;P&gt;  internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Default&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Entries selectable&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Description&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  The structure SELFIELD contains the following information about the&lt;/P&gt;&lt;P&gt;  current cursor position&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  o   tabname  : internal output table name&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  o   tabindex : internal output table index&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  o   fieldname: field name&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  o   value    : field contents&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Multiple selection using checkboxes puts an 'X' in the&lt;/P&gt;&lt;P&gt;  I_CHECKBOX_FIELDNAME field in the corresponding row in the internal&lt;/P&gt;&lt;P&gt;  table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;E_EXIT&lt;/P&gt;&lt;P&gt;Description&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  Flag is set when the user leaves the popup with the 'Cancel' function.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jan 2008 07:17:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv/m-p/3318960#M795054</guid>
      <dc:creator>abdulazeez12</dc:creator>
      <dc:date>2008-01-23T07:17:18Z</dc:date>
    </item>
    <item>
      <title>Re: ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv/m-p/3318961#M795055</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I_SELECTION&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If 'X' user can select a record, if space the Function Module only display the list, no selection possible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;E_EXIT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If 'X' user has canceled the selection (clicking back/cancel pushbutton)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;E_SELFIELD&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In case of single selection, this parameter returns information on cursor position of selected item : table, index, field name  and value.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jan 2008 07:18:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv/m-p/3318961#M795055</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2008-01-23T07:18:28Z</dc:date>
    </item>
    <item>
      <title>Re: ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv/m-p/3318962#M795056</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Udaya Kumar,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;U&gt;I&lt;/U&gt;SELECTION_&lt;/STRONG&gt; is used for selecting the internal table contents displayed in ALV.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I_SELECTION is not Checked, it only to display the internal table contents.&lt;/P&gt;&lt;P&gt;If I_SELECTION is Checked (X) Selection of internal table contents displayed is possible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;U&gt;ES&lt;/U&gt;SELFIELD_&lt;/STRONG&gt;  using this, the information about the field in which cursor position is will display the information like TABLE NAME, TABLE INDEXM, FIELDNAME and VALUE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;tabname  : internal output table name&lt;/P&gt;&lt;P&gt;tabindex : internal output table index&lt;/P&gt;&lt;P&gt;fieldname: field name&lt;/P&gt;&lt;P&gt;value    : field contents&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Multiple selection using checkboxes puts an 'X' in the I_CHECKBOX_FIELDNAME field in the corresponding row in the internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&lt;U&gt;E&lt;/U&gt;EXIT_&lt;/STRONG&gt; is used to cancel by the user.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If it is checked 'X', the user leaves the popup with the cancel function.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward If Helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;--&lt;/P&gt;&lt;P&gt;Sasidhar Reddy Matli.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jan 2008 07:23:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv/m-p/3318962#M795056</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-23T07:23:43Z</dc:date>
    </item>
    <item>
      <title>Re: ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv/m-p/3318963#M795057</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hai, &lt;/P&gt;&lt;P&gt;  without those import and export paremeter also i can select values and i can display the selected values, then why i should use those variable, any one can say exact answer for that question&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jan 2008 07:31:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv/m-p/3318963#M795057</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-23T07:31:09Z</dc:date>
    </item>
    <item>
      <title>Re: ALV</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/alv/m-p/3318964#M795058</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Import parameter&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This import parameter has a default value 'X', if you don't use it , it will take this value (look at definition of function module)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Export parameters&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Those parameters are available, if you don't need them don't use them. They give you information that's all. You can also use the I_CHECKBOX_FIELDNAME parameter and then loop at the internal table after the call (Especially if multiple selection is required)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The choice of parameters to use depends on the definition of the function module AND of your needs, there is no definitive answer.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 23 Jan 2008 07:39:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/alv/m-p/3318964#M795058</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2008-01-23T07:39:12Z</dc:date>
    </item>
  </channel>
</rss>

