<?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: Layout - ALV - User Specific in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/layout-alv-user-specific/m-p/793368#M40237</link>
    <description>&lt;P&gt;A little table with all values for I_SAVE and meanings:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;               Cannot be   Save &amp;amp; seen    Save &amp;amp; seen 
I_SAVE           saved     by all users  by current user
-------------  ----------  ------------  ---------------
' ' (default)       X  
X                                X  
U                                               X
A                                X              X&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Note: if your ALV is built with SALV, "I_SAVE = 'A' " is to be replaced with this code:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;salv-&amp;gt;get_layout( )-&amp;gt;SET_SAVE_RESTRICTION( cl_salv_layout=&amp;gt;restrict_none ).&lt;/CODE&gt;&lt;/PRE&gt;</description>
    <pubDate>Sat, 12 Jan 2019 14:20:28 GMT</pubDate>
    <dc:creator>Sandra_Rossi</dc:creator>
    <dc:date>2019-01-12T14:20:28Z</dc:date>
    <item>
      <title>Layout - ALV - User Specific</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/layout-alv-user-specific/m-p/793366#M40235</link>
      <description>&lt;P&gt;Hi,&lt;/P&gt;
  &lt;P&gt;I am trying to save the layout of an ALV / User specific, &lt;/P&gt;
  &lt;P&gt;The user specific option is grayed out&lt;/P&gt;
  &lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/259870-untitled.png" /&gt;&lt;/P&gt;
  &lt;P&gt;I ran a trace to check on the Authorization object to see a RC=0&lt;/P&gt;
  &lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/259871-s-layout.png" /&gt;&lt;/P&gt;
  &lt;P&gt;Am i missing something?&lt;/P&gt;
  &lt;P&gt;Cheers | Remi&lt;/P&gt;</description>
      <pubDate>Fri, 11 Jan 2019 22:08:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/layout-alv-user-specific/m-p/793366#M40235</guid>
      <dc:creator>RemiKaimal</dc:creator>
      <dc:date>2019-01-11T22:08:45Z</dc:date>
    </item>
    <item>
      <title>Re: Layout - ALV - User Specific</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/layout-alv-user-specific/m-p/793367#M40236</link>
      <description>&lt;P&gt;Hi Remi,&lt;/P&gt;&lt;P&gt;Check your ALV Program and check the i_save, please see below for your reference.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
 call function 'REUSE_ALV_GRID_DISPLAY'
    exporting
      i_callback_program       = sy-repid
      i_callback_top_of_page   = 'TOP_OF_PAGE'
      i_callback_pf_status_set = 'SET_PF_STATUS'
      i_callback_user_command  = 'USER_COMMAND'
      it_fieldcat              = im_fcat
      is_layout                = lt_lout
      i_default                = 'X'


      i_save                   = 'U'  " &amp;lt;--- U = User-Specific
                                             A = Standard and user-specific save mode
                                             X = Standard Save Mode

    tables

      t_outtab                 = im_data

    exceptions

      program_error            = 1

      others                   = 2.
&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 12 Jan 2019 06:45:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/layout-alv-user-specific/m-p/793367#M40236</guid>
      <dc:creator>tan_michael</dc:creator>
      <dc:date>2019-01-12T06:45:35Z</dc:date>
    </item>
    <item>
      <title>Re: Layout - ALV - User Specific</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/layout-alv-user-specific/m-p/793368#M40237</link>
      <description>&lt;P&gt;A little table with all values for I_SAVE and meanings:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;               Cannot be   Save &amp;amp; seen    Save &amp;amp; seen 
I_SAVE           saved     by all users  by current user
-------------  ----------  ------------  ---------------
' ' (default)       X  
X                                X  
U                                               X
A                                X              X&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Note: if your ALV is built with SALV, "I_SAVE = 'A' " is to be replaced with this code:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;salv-&amp;gt;get_layout( )-&amp;gt;SET_SAVE_RESTRICTION( cl_salv_layout=&amp;gt;restrict_none ).&lt;/CODE&gt;&lt;/PRE&gt;</description>
      <pubDate>Sat, 12 Jan 2019 14:20:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/layout-alv-user-specific/m-p/793368#M40237</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2019-01-12T14:20:28Z</dc:date>
    </item>
    <item>
      <title>Re: Layout - ALV - User Specific</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/layout-alv-user-specific/m-p/793369#M40238</link>
      <description>&lt;A href="https://answers.sap.com/users/33335/tanmichael.html"&gt;Tan Michael&lt;/A&gt;, &lt;A href="https://answers.sap.com/users/1091/sandrarossi.html"&gt;Sandra Rossi&lt;/A&gt; - Works! &lt;BR /&gt;I had set i_save to 'X', modified it to 'U'. Thanks</description>
      <pubDate>Mon, 14 Jan 2019 16:15:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/layout-alv-user-specific/m-p/793369#M40238</guid>
      <dc:creator>RemiKaimal</dc:creator>
      <dc:date>2019-01-14T16:15:20Z</dc:date>
    </item>
  </channel>
</rss>

