<?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: User exit: in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/1307853#M160656</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;Make the changes, i.e write the logic u want to implement in the Zinclude i.e zxco1u06 in ur case.&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;Simha.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 17 May 2006 09:46:19 GMT</pubDate>
    <dc:creator>Simha_</dc:creator>
    <dc:date>2006-05-17T09:46:19Z</dc:date>
    <item>
      <title>User exit:</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/1307852#M160655</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Good day&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I'm new to user exits. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want to trigger an update to a different SAP module as soon as the production order are created.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I did create a project using CMOD and used Enhancement PPCO0007 - Exit when saving production order.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I see that there is a Function exit: exit_saplcozv_001 and in it is a include include zxco1u06. There is nothing in the include zxco1u06 .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;How do i make modifications to this exit? Should is write my own function first?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 May 2006 09:43:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/1307852#M160655</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-17T09:43:30Z</dc:date>
    </item>
    <item>
      <title>Re: User exit:</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/1307853#M160656</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;Make the changes, i.e write the logic u want to implement in the Zinclude i.e zxco1u06 in ur case.&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;Simha.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 May 2006 09:46:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/1307853#M160656</guid>
      <dc:creator>Simha_</dc:creator>
      <dc:date>2006-05-17T09:46:19Z</dc:date>
    </item>
    <item>
      <title>Re: User exit:</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/1307854#M160657</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;example......&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm" target="test_blank"&gt;http://www.sap-img.com/abap/a-short-tutorial-on-user-exits.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;Press Components. You can now see that enhancement uses user exit EXIT_SAPMV45A_002. Double click on the exit. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now the function module is displayed. Double click on include ZXVVAU04 in the function module &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Insert the following code into the include: E_KUNNR = '2155'. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Activate the include program. Go back to CMOD and activate the project.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Goto transaction VA01 and craete a salesorder.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note that Sold-to-party now automatically is "2155"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 May 2006 09:47:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/1307854#M160657</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-17T09:47:16Z</dc:date>
    </item>
    <item>
      <title>Re: User exit:</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/1307855#M160658</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;Since SAP is a integrated package no need to do any thing differently to shift from one module to another module, now i would like to know what you want to update  whether database tables or what?&lt;/P&gt;&lt;P&gt;leave about the module.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 May 2006 09:48:23 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/1307855#M160658</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-17T09:48:23Z</dc:date>
    </item>
    <item>
      <title>Re: User exit:</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/1307856#M160659</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;When i doubleclick on i get the error message "&amp;lt;b&amp;gt;Program names ZX... are reserved for includes of exit function groups"&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 May 2006 09:50:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/1307856#M160659</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-17T09:50:07Z</dc:date>
    </item>
    <item>
      <title>Re: User exit:</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/1307857#M160660</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;just  forget  it.. its  mean  u first time  make  an  entry  on hat  just  doble  click  on that...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 May 2006 09:51:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/1307857#M160660</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-17T09:51:18Z</dc:date>
    </item>
    <item>
      <title>Re: User exit:</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/1307858#M160661</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;press enter and proceed , thats just a warning .. &lt;/P&gt;&lt;P&gt;whatever code you write in that include will be hooked to the transaction source code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Others have already supplied enough logic to proceed with user exits.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 May 2006 09:53:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/1307858#M160661</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-17T09:53:11Z</dc:date>
    </item>
    <item>
      <title>Re: User exit:</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/1307859#M160662</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ravi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As soon as the production order are created, i want to send this details to an external system  using IDOCS. I want to call program RCCLORD with this production order number.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Program RCCLORD creates Production order idocs.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 May 2006 09:57:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/1307859#M160662</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-17T09:57:59Z</dc:date>
    </item>
    <item>
      <title>Re: User exit:</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/1307860#M160663</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;Whatever alok has told thats ryt.U  can write the code inside the function exit,no need to see message,its only a warning message.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After doing that create project and activate the function exit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Regards,&lt;/P&gt;&lt;P&gt;Nagaraj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 May 2006 10:00:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/1307860#M160663</guid>
      <dc:creator>former_member404244</dc:creator>
      <dc:date>2006-05-17T10:00:43Z</dc:date>
    </item>
    <item>
      <title>Re: User exit:</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/1307861#M160664</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ravi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As soon as the production order are created, i want to send this details to an external system using IDOCS. I want to call program RCCLORD with this production order number.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Program RCCLORD creates Production order idocs.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 May 2006 10:22:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/1307861#M160664</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-17T10:22:44Z</dc:date>
    </item>
    <item>
      <title>Re: User exit:</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/1307862#M160665</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;First see whether the structure available to you CAUFVD in the import parameters contains all the data to fill the selection screen of program RCCLORD and then u can use the logic of calling the report RCCLORD in the customer exit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the logic for that can be found as.&lt;/P&gt;&lt;P&gt;1. se38   enter your program name.&lt;/P&gt;&lt;P&gt;2. now place the cursor on the RCCLORD and double click it.&lt;/P&gt;&lt;P&gt;3. now one pop up window will be open select only programs and then press enter.&lt;/P&gt;&lt;P&gt;4. you will be displayed with where used list of the program RCCLORD.&lt;/P&gt;&lt;P&gt;now double click any one of the displayed includes you will get the usage of the submit program RCCLORD and return.&lt;/P&gt;&lt;P&gt;i think this will help you&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 17 May 2006 10:28:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/1307862#M160665</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-05-17T10:28:07Z</dc:date>
    </item>
  </channel>
</rss>

