<?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: Table maintenance - Call Screen 2 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance-call-screen-2/m-p/8161502#M1622291</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have you tried the 'AND SKIP FIRST SCREEN' Addition?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 15 Sep 2011 09:54:38 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-09-15T09:54:38Z</dc:date>
    <item>
      <title>Table maintenance - Call Screen 2</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance-call-screen-2/m-p/8161485#M1622274</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Dear Friend,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;according to my requirement i wanted call table maintenance view 2nd screen.(data entering screen)&lt;/P&gt;&lt;P&gt;i have used BDC for that and call that bdc in the program.&lt;/P&gt;&lt;P&gt;it works&lt;/P&gt;&lt;P&gt;now problem is when i click on the back button (standard) it comes to maintenance view 1st screen (list view)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so i want to come back to main selection screen&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;my code is follows&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA:   BDCDATA LIKE BDCDATA    OCCURS 0 WITH HEADER LINE.
*
start-of-selection.
*
*
  perform bdc_dynpro      using 'SAPMSVMA' '0100'.
  perform bdc_field       using 'BDC_CURSOR' 'VIEWNAME'.
  perform bdc_field       using 'BDC_OKCODE' '=UPD'.
  perform bdc_field       using 'VIEWNAME' 'ZSOD_APPRV_REG'.
  perform bdc_field       using 'VIMDYNFLDS-LTD_DTA_NO' 'X'.
  perform bdc_dynpro      using 'SAPLZSOD_APPRV_REG' '0001'.
  perform bdc_field       using 'BDC_CURSOR' 'ZSOD_APPRV_REG-NAME_TEXT(01)'.
  perform bdc_field       using 'BDC_OKCODE' '=NEWL'.
*
  call  TRANSACTION 'SM30' using bdcdata MODE 'E' UPDATE 'S' .
*
FORM BDC_DYNPRO USING PROGRAM DYNPRO.
  CLEAR BDCDATA.
  BDCDATA-PROGRAM  = PROGRAM.
  BDCDATA-DYNPRO   = DYNPRO.
  BDCDATA-DYNBEGIN = 'X'.
  APPEND BDCDATA.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Sep 2011 11:00:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance-call-screen-2/m-p/8161485#M1622274</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-09-14T11:00:11Z</dc:date>
    </item>
    <item>
      <title>Re: Table maintenance - Call Screen 2</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance-call-screen-2/m-p/8161486#M1622275</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;I guess you can do in this way.Try to catch the function code of that button and write your code and call according to that.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Madhu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Sep 2011 11:06:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance-call-screen-2/m-p/8161486#M1622275</guid>
      <dc:creator>madhu_vadlamani</dc:creator>
      <dc:date>2011-09-14T11:06:20Z</dc:date>
    </item>
    <item>
      <title>Re: Table maintenance - Call Screen 2</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance-call-screen-2/m-p/8161487#M1622276</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nelson,&lt;/P&gt;&lt;P&gt;    Try using Leave to Screen 0 or call screen statements after the BDC. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Amuktha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 14 Sep 2011 11:17:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance-call-screen-2/m-p/8161487#M1622276</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-09-14T11:17:12Z</dc:date>
    </item>
    <item>
      <title>Re: Table maintenance - Call Screen 2</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance-call-screen-2/m-p/8161488#M1622277</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;dear Madhu&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how can i apply to my code&lt;/P&gt;&lt;P&gt;i just try to find function code by using break point after call transaction &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but it triggered after finished the SM30.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Sep 2011 04:26:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance-call-screen-2/m-p/8161488#M1622277</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-09-15T04:26:31Z</dc:date>
    </item>
    <item>
      <title>Re: Table maintenance - Call Screen 2</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance-call-screen-2/m-p/8161489#M1622278</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nelson&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am guessing in this way.&lt;/P&gt;&lt;P&gt;  perform bdc_dynpro      using 'SAPMSVMA' '0100'.&lt;/P&gt;&lt;P&gt;  perform bdc_field       using 'BDC_CURSOR' 'VIEWNAME'.&lt;/P&gt;&lt;P&gt;  perform bdc_field       using 'BDC_OKCODE' '=UPD'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is the code of your recording.In the same way bdc_okcode for that button , press f1 and see.Here check that screen number ,program name and see.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Madhu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Sep 2011 04:31:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance-call-screen-2/m-p/8161489#M1622278</guid>
      <dc:creator>madhu_vadlamani</dc:creator>
      <dc:date>2011-09-15T04:31:10Z</dc:date>
    </item>
    <item>
      <title>Re: Table maintenance - Call Screen 2</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance-call-screen-2/m-p/8161490#M1622279</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Madhu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;actually i cant get what you are telling and what i want to do, please describe&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Sep 2011 04:47:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance-call-screen-2/m-p/8161490#M1622279</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-09-15T04:47:49Z</dc:date>
    </item>
    <item>
      <title>Re: Table maintenance - Call Screen 2</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance-call-screen-2/m-p/8161491#M1622280</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Nelson,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;+now problem is when i click on the back button (standard) it comes to maintenance view 1st screen (list view) &lt;/P&gt;&lt;P&gt;so i want to come back to main selection screen+&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You want to come to the initial screen.Once your data filling is over in the screen you want to come to initial screen.What i am telling read the screen no,program and keep that code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Madhu.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Sep 2011 04:51:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance-call-screen-2/m-p/8161491#M1622280</guid>
      <dc:creator>madhu_vadlamani</dc:creator>
      <dc:date>2011-09-15T04:51:33Z</dc:date>
    </item>
    <item>
      <title>Re: Table maintenance - Call Screen 2</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance-call-screen-2/m-p/8161492#M1622281</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi write&lt;/P&gt;&lt;P&gt;when you press back button or on exit-command.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;set screen 0&lt;/P&gt;&lt;P&gt;leave screen.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Sep 2011 05:13:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance-call-screen-2/m-p/8161492#M1622281</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-09-15T05:13:57Z</dc:date>
    </item>
    <item>
      <title>Re: Table maintenance - Call Screen 2</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance-call-screen-2/m-p/8161493#M1622282</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Madhu, I don't think it works, cuz it will go to maintenance screen and come back immediately before we enter any data. I faced the same problem and could never figure out a solution. If some one has a solution that worked it would be great!!.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Sep 2011 05:30:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance-call-screen-2/m-p/8161493#M1622282</guid>
      <dc:creator>sjeevan</dc:creator>
      <dc:date>2011-09-15T05:30:29Z</dc:date>
    </item>
    <item>
      <title>Re: Table maintenance - Call Screen 2</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance-call-screen-2/m-p/8161494#M1622283</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi Madhu,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have selection screen and one command button&lt;/P&gt;&lt;P&gt;when i click on the Command button only call maintenance view screen 2(data enter screen)&lt;/P&gt;&lt;P&gt;so when i click on the back button i want to go to my selection screen but in current situation back button come to maintenance view screen 1 and if i click back again it come to sm30 screen when i click again only comes to selection screen &lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;i want to skip these steps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Sep 2011 05:37:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance-call-screen-2/m-p/8161494#M1622283</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-09-15T05:37:41Z</dc:date>
    </item>
    <item>
      <title>Re: Table maintenance - Call Screen 2</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance-call-screen-2/m-p/8161495#M1622284</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Nelson, Exit button (yellow) skips the screen 1 and comes back to the original program but it's not a solution.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Sep 2011 06:24:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance-call-screen-2/m-p/8161495#M1622284</guid>
      <dc:creator>sjeevan</dc:creator>
      <dc:date>2011-09-15T06:24:39Z</dc:date>
    </item>
    <item>
      <title>Re: Table maintenance - Call Screen 2</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance-call-screen-2/m-p/8161496#M1622285</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI,&lt;/P&gt;&lt;P&gt; I am not sure if i understood your problem properly, So correct me if I am..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First of all, instead of directly calling sm30 from your program, goto se93 and create a tcode ( parameter transaction ) for your table maintenance view. For this you have to  give tcode as Sm30, and check the check box 'skip first screen' and below, in parameters, select viewname and give the name of your view and then update with value X.&lt;/P&gt;&lt;P&gt;Now call this Tcode form your program..&lt;/P&gt;&lt;P&gt;Will this satisfy your requirement?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Sep 2011 07:29:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance-call-screen-2/m-p/8161496#M1622285</guid>
      <dc:creator>lijisusan_mathews</dc:creator>
      <dc:date>2011-09-15T07:29:36Z</dc:date>
    </item>
    <item>
      <title>Re: Table maintenance - Call Screen 2</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance-call-screen-2/m-p/8161497#M1622286</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;no friend when i call as t code it come to screen 1 (list view)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i want call screen 2 directly&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Sep 2011 08:36:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance-call-screen-2/m-p/8161497#M1622286</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-09-15T08:36:32Z</dc:date>
    </item>
    <item>
      <title>Re: Table maintenance - Call Screen 2</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance-call-screen-2/m-p/8161498#M1622287</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;have you recorded till you reach screen 2 ?? I mean.. if you run ur recording with Display no screen ( background processing mode) does it stop at teh second screen ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Sep 2011 08:58:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance-call-screen-2/m-p/8161498#M1622287</guid>
      <dc:creator>lijisusan_mathews</dc:creator>
      <dc:date>2011-09-15T08:58:54Z</dc:date>
    </item>
    <item>
      <title>Re: Table maintenance - Call Screen 2</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance-call-screen-2/m-p/8161499#M1622288</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;yes&lt;/P&gt;&lt;P&gt;see my code in first post&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Sep 2011 09:04:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance-call-screen-2/m-p/8161499#M1622288</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-09-15T09:04:18Z</dc:date>
    </item>
    <item>
      <title>Re: Table maintenance - Call Screen 2</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance-call-screen-2/m-p/8161500#M1622289</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;OK.. If your BDC reaches the correct screen while running from SHDB with mode 'E', it should/ will stop at that position when you assign a t-code to it.. Skip first screen parameter is used only to avoid the sm30 screen while execution.. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If  that solution does not work, can you try if you can take the main program,, and change the Gui status.. In Back there.. try giving SET SCREEN 0. ..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Sep 2011 09:22:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance-call-screen-2/m-p/8161500#M1622289</guid>
      <dc:creator>lijisusan_mathews</dc:creator>
      <dc:date>2011-09-15T09:22:20Z</dc:date>
    </item>
    <item>
      <title>Re: Table maintenance - Call Screen 2</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance-call-screen-2/m-p/8161501#M1622290</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;O sorry.. I forgot to mention the last part!!! after you create the Tcode.... record this Tcode using SHDB and record  TEH nEW eNTRIES bUTTON...  Now use call transaction 'tcode' .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Sep 2011 09:33:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance-call-screen-2/m-p/8161501#M1622290</guid>
      <dc:creator>lijisusan_mathews</dc:creator>
      <dc:date>2011-09-15T09:33:32Z</dc:date>
    </item>
    <item>
      <title>Re: Table maintenance - Call Screen 2</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance-call-screen-2/m-p/8161502#M1622291</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have you tried the 'AND SKIP FIRST SCREEN' Addition?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Sep 2011 09:54:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance-call-screen-2/m-p/8161502#M1622291</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-09-15T09:54:38Z</dc:date>
    </item>
    <item>
      <title>Re: Table maintenance - Call Screen 2</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance-call-screen-2/m-p/8161503#M1622292</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Suzie,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;dear actually didn't get with you, can you please describe little bit&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Sep 2011 10:32:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance-call-screen-2/m-p/8161503#M1622292</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-09-15T10:32:41Z</dc:date>
    </item>
    <item>
      <title>Re: Table maintenance - Call Screen 2</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance-call-screen-2/m-p/8161504#M1622293</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi &lt;/P&gt;&lt;P&gt;i got what u point dear,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but i create tcode with call view &lt;/P&gt;&lt;P&gt;and i use it in BDC with call transaction&lt;/P&gt;&lt;P&gt;when i run it it works&lt;/P&gt;&lt;P&gt;but when i press the back button it come s to previous screen(list view)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 15 Sep 2011 11:03:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-maintenance-call-screen-2/m-p/8161504#M1622293</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-09-15T11:03:20Z</dc:date>
    </item>
  </channel>
</rss>

