<?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: Memory ID in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/memory-id/m-p/4248069#M1013928</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;One more clue...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If it is the problem with the memory Id then...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Before you import the memory u should export the memory to the same id in the other program. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Second clue would be:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try to double click on that screen number in developement system if it is not asking you to create a new screen and if it asking in the production system then the problem with the screen creation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;According to the error message it is related to the screen I think.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 04 Aug 2008 15:44:04 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-08-04T15:44:04Z</dc:date>
    <item>
      <title>Memory ID</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/memory-id/m-p/4248066#M1013925</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello All,&lt;/P&gt;&lt;P&gt;I  got one problem  with my memory id.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I created one selection-screen with 3 TABS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF TABBED BLOCK tabb1 FOR 20 LINES.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN TAB (40) tab1 USER-COMMAND tab1&lt;/P&gt;&lt;P&gt;DEFAULT SCREEN 1010  .&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN TAB (40) tab2 USER-COMMAND tab2&lt;/P&gt;&lt;P&gt;DEFAULT SCREEN 1020.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN TAB (40) tab3 USER-COMMAND tab3&lt;/P&gt;&lt;P&gt;DEFAULT SCREEN 1030.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK tabb1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*I have a radiobutton group in each of my tabs in the selection screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF SCREEN 1010 AS SUBSCREEN  .&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK gui WITH FRAME TITLE TEXT-004.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN SKIP 1.&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS lfdat FOR likp-lfdat .&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN SKIP 1.&lt;/P&gt;&lt;P&gt;PARAMETERS: r_9801 RADIOBUTTON GROUP gui,&lt;/P&gt;&lt;P&gt;            r_sch1 RADIOBUTTON GROUP gui.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN SKIP 1.&lt;/P&gt;&lt;P&gt;PARAMETERS  : spld LIKE user01-spld.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN SKIP 1.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK gui.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF SCREEN 1010.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF SCREEN 1020 AS SUBSCREEN.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK rep WITH FRAME TITLE TEXT-005.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN SKIP 1.&lt;/P&gt;&lt;P&gt;PARAMETERS : p_refno LIKE z40pat-file_refno .&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN SKIP 1.&lt;/P&gt;&lt;P&gt;PARAMETERS: r_view RADIOBUTTON GROUP rep,&lt;/P&gt;&lt;P&gt;            r_upd RADIOBUTTON GROUP rep.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN SKIP 1.&lt;/P&gt;&lt;P&gt;PARAMETERS  : p_spld LIKE user01-spld.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN SKIP 1.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK rep.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF SCREEN 1020.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF SCREEN 1030 AS SUBSCREEN.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN BEGIN OF BLOCK rep1 WITH FRAME TITLE text-006.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN SKIP 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS : p_ref LIKE z40pat-file_refno .&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN SKIP 1.&lt;/P&gt;&lt;P&gt;PARAMETERS: r_summ RADIOBUTTON GROUP rep1,&lt;/P&gt;&lt;P&gt;            r_record RADIOBUTTON GROUP rep1.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN SKIP 1.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF BLOCK rep1.&lt;/P&gt;&lt;P&gt;SELECTION-SCREEN END OF SCREEN 1030.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*********************INITALIZATION **************************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;INITIALIZATION.&lt;/P&gt;&lt;P&gt;  tab1 = text-001.&lt;/P&gt;&lt;P&gt;  tab2 = text-002.&lt;/P&gt;&lt;P&gt;  tab3 = text-003.&lt;/P&gt;&lt;P&gt;  IMPORT g_acttab FROM MEMORY ID 'zssfsdfr3'.&lt;/P&gt;&lt;P&gt;  IF sy-subrc = 0.&lt;/P&gt;&lt;P&gt;    tabb1-prog = sy-repid.&lt;/P&gt;&lt;P&gt;    tabb1-activetab = g_acttab.&lt;/P&gt;&lt;P&gt;    CASE g_acttab.&lt;/P&gt;&lt;P&gt;      WHEN 'TAB1'.&lt;/P&gt;&lt;P&gt;        tabb1-dynnr = 1010.&lt;/P&gt;&lt;P&gt;      WHEN 'TAB2'.&lt;/P&gt;&lt;P&gt;        tabb1-dynnr = 1020.&lt;/P&gt;&lt;P&gt;      WHEN 'TAB3'.&lt;/P&gt;&lt;P&gt;        tabb1-dynnr = 1030.&lt;/P&gt;&lt;P&gt;      WHEN OTHERS.&lt;/P&gt;&lt;P&gt;    ENDCASE.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;  DELETE  FROM MEMORY ID 'zssfsdfr3'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;********&lt;STRONG&gt;START_OF_SELECTION&lt;/STRONG&gt;********************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;  g_acttab = tabb1-activetab.&lt;/P&gt;&lt;P&gt;  EXPORT g_acttab TO MEMORY ID 'zssfsdfr3'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;What's my problem is It's working fine in DEVELOPMENT but it's not working in PRODUCTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It's gives the error like &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;U&gt;&lt;STRONG&gt;The system attempted to use dynpro 1010 in program "Z40R208".&lt;/STRONG&gt;&lt;/U&gt;&lt;/P&gt;&lt;P&gt;  &lt;/P&gt;&lt;P&gt;&lt;U&gt;&lt;STRONG&gt;This dynpro does not exist.&lt;/STRONG&gt;&lt;/U&gt;                                    &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vandu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Aug 2008 14:32:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/memory-id/m-p/4248066#M1013925</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-04T14:32:12Z</dc:date>
    </item>
    <item>
      <title>Re: Memory ID</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/memory-id/m-p/4248067#M1013926</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vandana,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here is some clue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You designed everything properly in developement system, created a transport and moved the program rite.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;According to the error message please check everything has moved properly to the production system means program has moved properly but the screen  you designed for this not yet moved to production I guess. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please check the all the transports and transport log related to this program, verify that all the screens moved to production system.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Aug 2008 14:55:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/memory-id/m-p/4248067#M1013926</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-04T14:55:18Z</dc:date>
    </item>
    <item>
      <title>Re: Memory ID</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/memory-id/m-p/4248068#M1013927</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for ur sugesssion.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i Checked every thing  , transport went through ZAP successfully.&lt;/P&gt;&lt;P&gt;I think  the Memory ID is the Problem .&lt;/P&gt;&lt;P&gt;My progrm  name is  Z23P&amp;amp;A.&lt;/P&gt;&lt;P&gt;Please help me?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Vandu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Aug 2008 15:11:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/memory-id/m-p/4248068#M1013927</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-04T15:11:56Z</dc:date>
    </item>
    <item>
      <title>Re: Memory ID</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/memory-id/m-p/4248069#M1013928</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;One more clue...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If it is the problem with the memory Id then...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Before you import the memory u should export the memory to the same id in the other program. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Second clue would be:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Try to double click on that screen number in developement system if it is not asking you to create a new screen and if it asking in the production system then the problem with the screen creation.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;According to the error message it is related to the screen I think.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Aug 2008 15:44:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/memory-id/m-p/4248069#M1013928</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-04T15:44:04Z</dc:date>
    </item>
    <item>
      <title>Re: Memory ID</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/memory-id/m-p/4248070#M1013929</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Vandana,&lt;/P&gt;&lt;P&gt;                  Have you checked the related transports in the production server,Does that transport contains the relavent screen.&lt;/P&gt;&lt;P&gt;If so,then try to doubl;e clikc on it.&lt;/P&gt;&lt;P&gt;If the screen exits then there should be some problem..&lt;/P&gt;&lt;P&gt;If it does not exit,then there should be a problem in the Transport...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Once check and confirm..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Sudheer.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 04 Aug 2008 17:37:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/memory-id/m-p/4248070#M1013929</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-04T17:37:56Z</dc:date>
    </item>
    <item>
      <title>Re: Memory ID</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/memory-id/m-p/4248071#M1013930</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Solved&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 28 Jul 2011 15:24:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/memory-id/m-p/4248071#M1013930</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-07-28T15:24:36Z</dc:date>
    </item>
  </channel>
</rss>

