<?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 Variant copy problem in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/variant-copy-problem/m-p/3262386#M779493</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a situation in which user has created so many personal layouts on alv report. now we need to move it to other user.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there a standard way to transfer variants between users? I mean all the variants that a user created can they be mass copies to a different user?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have idea about moving variants cross clients. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But no idea about making available user specfic variant to other user.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please give me some useful advise. &lt;/P&gt;&lt;P&gt;its really urgent.&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;Azad.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 17 Jan 2008 13:36:46 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-01-17T13:36:46Z</dc:date>
    <item>
      <title>Variant copy problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/variant-copy-problem/m-p/3262386#M779493</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi guys,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have a situation in which user has created so many personal layouts on alv report. now we need to move it to other user.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is there a standard way to transfer variants between users? I mean all the variants that a user created can they be mass copies to a different user?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have idea about moving variants cross clients. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But no idea about making available user specfic variant to other user.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;please give me some useful advise. &lt;/P&gt;&lt;P&gt;its really urgent.&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;Azad.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Jan 2008 13:36:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/variant-copy-problem/m-p/3262386#M779493</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-17T13:36:46Z</dc:date>
    </item>
    <item>
      <title>Re: Variant copy problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/variant-copy-problem/m-p/3262387#M779494</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Azad,&lt;/P&gt;&lt;P&gt;The ALV layouts which are created are stored in a table called LTDX.&lt;/P&gt;&lt;P&gt;The layouts which are user-specific can be used only by that user. But the standard layouts can be used by all users.&lt;/P&gt;&lt;P&gt;The table may be copied to other systems which includes both the types of layouts&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;Santhosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 17 Jan 2008 13:43:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/variant-copy-problem/m-p/3262387#M779494</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-17T13:43:32Z</dc:date>
    </item>
    <item>
      <title>Re: Variant copy problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/variant-copy-problem/m-p/3262388#M779495</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi, &lt;/P&gt;&lt;P&gt;Try This Program&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;report copy_layout.
data : lt_ltdx like ltdx occurs 0 with header line.
data : lt_ltdxt like ltdxt occurs 0 with header line.
parameters report like ltdx-report obligatory.
parameters report2 like ltdx-report obligatory.
"copy layout of report to report2.

start-of-selection.
  select * into table lt_ltdx from ltdx
                where report = report.
  select * into table lt_ltdxt from ltdxt
                where report = report.
  loop at lt_ltdx.
    lt_ltdx-report = report2.
    modify ltdx from lt_ltdx..
  endloop.
  loop at lt_ltdxt.
    lt_ltdxt-report = report2.
    modify ltdxt from lt_ltdxt..
  endloop.
  message 'Copy Complete.' type 'I'.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Nov 2009 11:17:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/variant-copy-problem/m-p/3262388#M779495</guid>
      <dc:creator>former_member568687</dc:creator>
      <dc:date>2009-11-23T11:17:44Z</dc:date>
    </item>
  </channel>
</rss>

