<?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: Issue with GENERATE DYNPRO in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-generate-dynpro/m-p/10216142#M1826118</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Joel,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't have a copy of &lt;SPAN style="color: #333333; font-size: 12px;"&gt;lt_dynp_fields&lt;/SPAN&gt; before SORT available anywhere.&lt;/P&gt;&lt;P&gt;After SORT they got over-written.&lt;/P&gt;&lt;P&gt;I have copied the error screen into a new screen in the same program and used the new screen, now it is almost ok.&lt;/P&gt;&lt;P&gt;I have many table controls and text editors in my screen and these are working fine now after copying, except a push button text.&lt;/P&gt;&lt;P&gt;I changed the push button text manually and now everything is fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Adithya M.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 19 Mar 2014 21:09:13 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2014-03-19T21:09:13Z</dc:date>
    <item>
      <title>Issue with GENERATE DYNPRO</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-generate-dynpro/m-p/10216139#M1826115</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;Hi,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;I have used IMPORT DYNPRO statement(SAP say's its for internal use) and fetched the screen values into an internal table....later I have sorted the fields in that internal table and did EXPORT DYNPRO and GENERATE DYNPRO.....with this all the fields got sorted and screen fields are wrongly functioning...could you please let me know how to revert it?&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;IMPORT &lt;SPAN class="L0S52"&gt;DYNPRO &lt;/SPAN&gt;ls_dynp_header lt_dynp_fields lt_dynp_logic&amp;nbsp; lt_dynp_matchc &lt;SPAN class="L0S52"&gt;ID &lt;/SPAN&gt;ls_dynproname.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;SORT lt_dynp_fields &lt;SPAN class="L0S52"&gt;BY &lt;/SPAN&gt;fnam.&lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;READ &lt;SPAN class="L0S52"&gt;TABLE &lt;/SPAN&gt;lt_dynp_fields &lt;SPAN class="L0S52"&gt;ASSIGNING &lt;/SPAN&gt;&amp;lt;fs_dynp_fields&amp;gt; &lt;SPAN class="L0S52"&gt;WITH &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;KEY &lt;/SPAN&gt;fnam = lc_fldnam&lt;SPAN class="L0S31"&gt; BINARY SEARCH.&lt;/SPAN&gt;&lt;BR /&gt;&lt;SPAN class="L0S52"&gt;IF &lt;/SPAN&gt;sy-subrc = &lt;SPAN class="L0S32"&gt;0.&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;IF &lt;/SPAN&gt;im_v_readonly = &lt;SPAN class="L0S32"&gt;0.&lt;/SPAN&gt;&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;fs_dynp_fields&amp;gt;-stxt = lc_save_proceed.&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ELSE.&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &amp;lt;fs_dynp_fields&amp;gt;-stxt = lc_proceed.&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; ENDIF.&lt;BR /&gt;ENDIF.&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN class="L0S52"&gt;EXPORT &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;DYNPRO &lt;/SPAN&gt;ls_dynp_header lt_dynp_fields lt_dynp_logic&amp;nbsp; lt_dynp_matchc &lt;SPAN class="L0S52"&gt;ID &lt;/SPAN&gt;ls_dynproname.&lt;BR /&gt;&lt;BR /&gt;&lt;SPAN class="L0S52"&gt;GENERATE &lt;/SPAN&gt;&lt;SPAN class="L0S52"&gt;DYNPRO &lt;/SPAN&gt;ls_dynp_header lt_dynp_fields lt_dynp_logic&amp;nbsp; lt_dynp_matchc &lt;SPAN class="L0S52"&gt;ID &lt;/SPAN&gt;ls_dynproname&lt;BR /&gt;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp;&amp;nbsp; &lt;SPAN class="L0S52"&gt;MESSAGE &lt;/SPAN&gt;ls_msg &lt;SPAN class="L0S52"&gt;LINE &lt;/SPAN&gt;ls_msg WORD ls_msg.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;I hope because of the SORT statement, all the screen fields got disturbed.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;I logged off and logged on but still facing the issue.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;Please help.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;&lt;/SPAN&gt; &lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;Thanks &amp;amp; Regards,&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN class="L0S52"&gt;Adithya M.&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Mar 2014 20:15:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-generate-dynpro/m-p/10216139#M1826115</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-03-19T20:15:38Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with GENERATE DYNPRO</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-generate-dynpro/m-p/10216140#M1826116</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;One approach is copying the error screen into new screen.&lt;/P&gt;&lt;P&gt;Is there any other way?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Mar 2014 20:50:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-generate-dynpro/m-p/10216140#M1826116</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-03-19T20:50:35Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with GENERATE DYNPRO</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-generate-dynpro/m-p/10216141#M1826117</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I dont know if it will work, try to creating a copy of &lt;SPAN style="color: #333333; font-size: 12px;"&gt;lt_dynp_fields&lt;/SPAN&gt; and copy the same before sort and once you are done with the manipulation. Overwrite the &lt;SPAN style="color: #333333; font-size: 12px;"&gt;lt_dynp_fields&lt;/SPAN&gt; with the copied internal table.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Mar 2014 20:52:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-generate-dynpro/m-p/10216141#M1826117</guid>
      <dc:creator>jcutinho</dc:creator>
      <dc:date>2014-03-19T20:52:46Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with GENERATE DYNPRO</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-generate-dynpro/m-p/10216142#M1826118</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Joel,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't have a copy of &lt;SPAN style="color: #333333; font-size: 12px;"&gt;lt_dynp_fields&lt;/SPAN&gt; before SORT available anywhere.&lt;/P&gt;&lt;P&gt;After SORT they got over-written.&lt;/P&gt;&lt;P&gt;I have copied the error screen into a new screen in the same program and used the new screen, now it is almost ok.&lt;/P&gt;&lt;P&gt;I have many table controls and text editors in my screen and these are working fine now after copying, except a push button text.&lt;/P&gt;&lt;P&gt;I changed the push button text manually and now everything is fine.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Adithya M.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Mar 2014 21:09:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-generate-dynpro/m-p/10216142#M1826118</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-03-19T21:09:13Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with GENERATE DYNPRO</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-generate-dynpro/m-p/10216143#M1826119</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;Can the screen be restored from version management?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cheers&lt;/P&gt;&lt;P&gt;Janis&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Mar 2014 22:05:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-generate-dynpro/m-p/10216143#M1826119</guid>
      <dc:creator>Private_Member_7726</dc:creator>
      <dc:date>2014-03-19T22:05:54Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with GENERATE DYNPRO</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-generate-dynpro/m-p/10216144#M1826120</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Janis,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I hope we can copy from other versions or other system(Q) if it is already moved to further systems.&lt;/P&gt;&lt;P&gt;In my case its a new development so no versions exist.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Adithya M.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt; &lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Mar 2014 22:17:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-generate-dynpro/m-p/10216144#M1826120</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-03-19T22:17:04Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with GENERATE DYNPRO</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-generate-dynpro/m-p/10216145#M1826121</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;&lt;A href="http://help.sap.com/saphelp_nw73ehp1/helpdata/en/57/38e1154eb711d182bf0000e829fbfe/frameset.htm"&gt;Normally a version exists&lt;/A&gt; in the "development database" once the workbench object is created using development tools. &lt;SPAN style="text-decoration: underline;"&gt;Unless the dynpro is deleted&lt;/SPAN&gt; (before it was exported=version written to "version database"), this version should remain available. So what I meant with the question - does the export/generate dynpro writes the changes that need to be reverted to the (active) version in "development database" as well?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One can at any time "force" generation of a version in "version database". Here I have generated two versions of a local object that will never get transported:&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/jiveimages/415004" width="450" /&gt;&lt;/P&gt;&lt;P&gt;Those versions remain available even after DELETE DYNPRO.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I like versions &lt;SPAN __jive_emoticon_name="happy" __jive_macro_name="emoticon" class="jive_macro jive_emote" src="https://community.sap.com/651/images/emoticons/happy.gif"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cheers,&lt;BR /&gt;Janis&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Mar 2014 07:58:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-generate-dynpro/m-p/10216145#M1826121</guid>
      <dc:creator>Private_Member_7726</dc:creator>
      <dc:date>2014-03-20T07:58:11Z</dc:date>
    </item>
    <item>
      <title>Re: Issue with GENERATE DYNPRO</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-generate-dynpro/m-p/10216146#M1826122</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Janis,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I didn't try, but I hope it will work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Adithya M.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 20 Mar 2014 20:22:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/issue-with-generate-dynpro/m-p/10216146#M1826122</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2014-03-20T20:22:24Z</dc:date>
    </item>
  </channel>
</rss>

