<?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: Error while creating T code for SAPMV45A in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-creating-t-code-for-sapmv45a/m-p/861805#M48194</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check out also GuiXT, web site:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.synactive.net/site/index.htm" target="test_blank"&gt;http://www.synactive.net/site/index.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is the software that the SAPGui runs when you have the "New visual display" option of the sapgui on.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you use the full version of the product, however, you can customise transactions how you want.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Brad&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sun, 22 May 2005 16:32:50 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-05-22T16:32:50Z</dc:date>
    <item>
      <title>Error while creating T code for SAPMV45A</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-creating-t-code-for-sapmv45a/m-p/861796#M48185</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 trying to create a t code let us say ZT_VA03 for VA03 i.e. SAPMV45A screen no 102. When I execute this transaction, this gives me error  "NO entry in table T180" . Please suggest what needs to be done to get rid of this.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Anuranjan&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Anuranjan Sharma&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 22 May 2005 03:32:35 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-creating-t-code-for-sapmv45a/m-p/861796#M48185</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-05-22T03:32:35Z</dc:date>
    </item>
    <item>
      <title>Re: Error while creating T code for SAPMV45A</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-creating-t-code-for-sapmv45a/m-p/861797#M48186</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anuranjan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is actually not so easy.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table T180 is a screen sequence control table which is used extensively in SAPMV45A to control which screens it should display and which actions it should take when users click on buttons or select options from the menu.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One of the keys of this table is transaction code, so when you create a new transaction code ZT_VA03 it will look up the T180 (this is not the only table, there is a sequence of quite a few of them) to determine what it should do when the transaction is first run, and then what it should do for every FCODE the user hits.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To remove the error (for the initial call, and also during screen processing), you would need to add entries for every action and screen into T180 (and others).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is quite a large task.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Brad&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 22 May 2005 09:07:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-creating-t-code-for-sapmv45a/m-p/861797#M48186</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-05-22T09:07:14Z</dc:date>
    </item>
    <item>
      <title>Re: Error while creating T code for SAPMV45A</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-creating-t-code-for-sapmv45a/m-p/861798#M48187</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Actually,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One way around it, would be to create a z report which has only one line of code:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ZREPORT_VA03.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL TRANSACTION 'VA03'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You could then assign your ZT_VA03 transaction code to the ZREPORT_VA03.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This should work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BTW - why do you want to assign a different TCODE to VA03?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Brad&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 22 May 2005 09:09:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-creating-t-code-for-sapmv45a/m-p/861798#M48187</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-05-22T09:09:09Z</dc:date>
    </item>
    <item>
      <title>Re: Error while creating T code for SAPMV45A</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-creating-t-code-for-sapmv45a/m-p/861799#M48188</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Brad,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for reply . I wanted to create a new t code and would asssign screen variant for this. We want only few fields to be displyed to certain users.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Anuranjan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 22 May 2005 15:20:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-creating-t-code-for-sapmv45a/m-p/861799#M48188</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-05-22T15:20:53Z</dc:date>
    </item>
    <item>
      <title>Re: Error while creating T code for SAPMV45A</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-creating-t-code-for-sapmv45a/m-p/861800#M48189</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anuranjan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is the problem solved?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If so, can you please award points to the responses that were useful and close the thread.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To award points you click on the little stars next to each of the responses.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Brad&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 22 May 2005 15:24:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-creating-t-code-for-sapmv45a/m-p/861800#M48189</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-05-22T15:24:30Z</dc:date>
    </item>
    <item>
      <title>Re: Error while creating T code for SAPMV45A</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-creating-t-code-for-sapmv45a/m-p/861801#M48190</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Brad,&lt;/P&gt;&lt;P&gt;Problem still persists. I can see that some other developers have done this earlier.They have created a Z transaction for VA01. I won;t be able to achieve the same thing with report. As I want to restrict screen flow and display.&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Anuranjan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 22 May 2005 15:32:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-creating-t-code-for-sapmv45a/m-p/861801#M48190</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-05-22T15:32:11Z</dc:date>
    </item>
    <item>
      <title>Re: Error while creating T code for SAPMV45A</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-creating-t-code-for-sapmv45a/m-p/861802#M48191</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Then you'll need to maintain the T180 (and related) table(s) - as stated in my first post.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Don't think there is any way around this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Brad&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 22 May 2005 15:37:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-creating-t-code-for-sapmv45a/m-p/861802#M48191</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-05-22T15:37:17Z</dc:date>
    </item>
    <item>
      <title>Re: Error while creating T code for SAPMV45A</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-creating-t-code-for-sapmv45a/m-p/861803#M48192</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Brad,&lt;/P&gt;&lt;P&gt;How do I maintain it?&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Anuranjan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 22 May 2005 15:40:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-creating-t-code-for-sapmv45a/m-p/861803#M48192</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-05-22T15:40:42Z</dc:date>
    </item>
    <item>
      <title>Re: Error while creating T code for SAPMV45A</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-creating-t-code-for-sapmv45a/m-p/861804#M48193</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Its a big job (there are lots of entries).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It could take days to get it all working correctly.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Essentially you just use good old SM30.  You need to copy all the entries for VA03 to make them ZXXX entries with the same values.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I don't remember all the table names off the top of my head, but do a search on &lt;STRONG&gt;180&lt;/STRONG&gt; and T1* in SE11 to make sure you get them all.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am pretty sure that the table class means that SAP allows you to make your own entries in here as long as they are within the customer namespace (generally starting with Z).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Another potential solution to your problem is to use the IAC (internet application component) for sales order entry if you want to create a dumbed down version for some users.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Brad&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 22 May 2005 15:48:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-creating-t-code-for-sapmv45a/m-p/861804#M48193</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-05-22T15:48:10Z</dc:date>
    </item>
    <item>
      <title>Re: Error while creating T code for SAPMV45A</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-creating-t-code-for-sapmv45a/m-p/861805#M48194</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Check out also GuiXT, web site:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.synactive.net/site/index.htm" target="test_blank"&gt;http://www.synactive.net/site/index.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is the software that the SAPGui runs when you have the "New visual display" option of the sapgui on.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you use the full version of the product, however, you can customise transactions how you want.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Brad&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 22 May 2005 16:32:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-creating-t-code-for-sapmv45a/m-p/861805#M48194</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-05-22T16:32:50Z</dc:date>
    </item>
    <item>
      <title>Re: Error while creating T code for SAPMV45A</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-creating-t-code-for-sapmv45a/m-p/861806#M48195</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can't seem to leave this one alone.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;There is another option.  The function module that reads the T180 table is SCREEN_SEQUENCE_CONTROL (pretty sure I got that right).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You could do a simple modification in here to substitute the transaction code to VA03 whenever the transaction code passed is Z...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This way you can leave the tables exactly how they are and whenever SAP does a lookup it will search for VA03 entries.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Its a small modification which should have no impact on standard processing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Brad&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 22 May 2005 16:37:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-creating-t-code-for-sapmv45a/m-p/861806#M48195</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-05-22T16:37:59Z</dc:date>
    </item>
    <item>
      <title>Re: Error while creating T code for SAPMV45A</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-creating-t-code-for-sapmv45a/m-p/861807#M48196</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just looking at another thread and found something to help with maintaining T185.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Transaction is VFBS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check out the following response:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_message" href="https://community.sap.com/" __jive_macro_name="message" modifiedtitle="true" __default_attr="374999"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Cheers,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Brad&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 May 2005 07:39:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-creating-t-code-for-sapmv45a/m-p/861807#M48196</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-05-23T07:39:14Z</dc:date>
    </item>
    <item>
      <title>Re: Error while creating T code for SAPMV45A</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-creating-t-code-for-sapmv45a/m-p/861808#M48197</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anuranjan,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have you tried creating a Variant Transaction? In SE93, create your tcode with type 'varaint transaction'. That should allow you to enter the transaction code and the initial screen values as you wish to control.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Use transaction code SHD0 for creating transaction variants.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this is what you are looking for.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Srinivas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 May 2005 14:21:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-creating-t-code-for-sapmv45a/m-p/861808#M48197</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-05-23T14:21:37Z</dc:date>
    </item>
    <item>
      <title>Re: Error while creating T code for SAPMV45A</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-creating-t-code-for-sapmv45a/m-p/861809#M48198</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 used Sm30 to insert entry for V_T180 and it worked.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Anuranjan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 27 May 2005 03:08:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-creating-t-code-for-sapmv45a/m-p/861809#M48198</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-05-27T03:08:59Z</dc:date>
    </item>
    <item>
      <title>Re: Error while creating T code for SAPMV45A</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-creating-t-code-for-sapmv45a/m-p/861810#M48199</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anuranjan&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have read your problem and  im doing something very similar with VA03 transaction.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My problem is that when im doing my z copy of the  va03 transaction I can not see the menus of the transaction.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Do you know what could  be happend?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Best regards,&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 02 Dec 2008 22:11:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/error-while-creating-t-code-for-sapmv45a/m-p/861810#M48199</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-12-02T22:11:25Z</dc:date>
    </item>
  </channel>
</rss>

