<?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 user exit --- in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/3114454#M739522</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;     How an user exit will be available in a program from the given below list :&lt;/P&gt;&lt;P&gt;1 ) PERFORM USEREXIT_DELETE_DOCUMENT.&lt;/P&gt;&lt;P&gt;or &lt;/P&gt;&lt;P&gt;2 ) CALL FUNCTION 'EXIT_SAPMV45A_001'&lt;/P&gt;&lt;P&gt;         EXPORTING&lt;/P&gt;&lt;P&gt;              IVBAK           = VBAK&lt;/P&gt;&lt;P&gt;              IVBAP           = VBAP&lt;/P&gt;&lt;P&gt;              IVBKD           = VBKD&lt;/P&gt;&lt;P&gt;              ITVAK           = TVAK&lt;/P&gt;&lt;P&gt;              ITVAP           = TVAP&lt;/P&gt;&lt;P&gt;         CHANGING&lt;/P&gt;&lt;P&gt;              BILLINGPLANTYPE = CH_FPART.&lt;/P&gt;&lt;P&gt;or &lt;/P&gt;&lt;P&gt;3 ) CALL CUSTOMER-FUNCTION '002'&lt;/P&gt;&lt;P&gt;       EXPORTING&lt;/P&gt;&lt;P&gt;            I_TVAK = TVAK&lt;/P&gt;&lt;P&gt;            I_TVTA = TVTA&lt;/P&gt;&lt;P&gt;            I_VKGRP = DEFAULT_VKGRP&lt;/P&gt;&lt;P&gt;            I_VKBUR = DEFAULT_VKBUR&lt;/P&gt;&lt;P&gt;       IMPORTING&lt;/P&gt;&lt;P&gt;            E_KUNNR = KUAGV-KUNNR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what is the difference b/w all the 3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks ...&lt;/P&gt;&lt;P&gt;ashok ...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 20 Nov 2007 09:12:42 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-11-20T09:12:42Z</dc:date>
    <item>
      <title>user exit ---</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/3114454#M739522</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;     How an user exit will be available in a program from the given below list :&lt;/P&gt;&lt;P&gt;1 ) PERFORM USEREXIT_DELETE_DOCUMENT.&lt;/P&gt;&lt;P&gt;or &lt;/P&gt;&lt;P&gt;2 ) CALL FUNCTION 'EXIT_SAPMV45A_001'&lt;/P&gt;&lt;P&gt;         EXPORTING&lt;/P&gt;&lt;P&gt;              IVBAK           = VBAK&lt;/P&gt;&lt;P&gt;              IVBAP           = VBAP&lt;/P&gt;&lt;P&gt;              IVBKD           = VBKD&lt;/P&gt;&lt;P&gt;              ITVAK           = TVAK&lt;/P&gt;&lt;P&gt;              ITVAP           = TVAP&lt;/P&gt;&lt;P&gt;         CHANGING&lt;/P&gt;&lt;P&gt;              BILLINGPLANTYPE = CH_FPART.&lt;/P&gt;&lt;P&gt;or &lt;/P&gt;&lt;P&gt;3 ) CALL CUSTOMER-FUNCTION '002'&lt;/P&gt;&lt;P&gt;       EXPORTING&lt;/P&gt;&lt;P&gt;            I_TVAK = TVAK&lt;/P&gt;&lt;P&gt;            I_TVTA = TVTA&lt;/P&gt;&lt;P&gt;            I_VKGRP = DEFAULT_VKGRP&lt;/P&gt;&lt;P&gt;            I_VKBUR = DEFAULT_VKBUR&lt;/P&gt;&lt;P&gt;       IMPORTING&lt;/P&gt;&lt;P&gt;            E_KUNNR = KUAGV-KUNNR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;what is the difference b/w all the 3.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks ...&lt;/P&gt;&lt;P&gt;ashok ...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Nov 2007 09:12:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/3114454#M739522</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-20T09:12:42Z</dc:date>
    </item>
    <item>
      <title>Re: user exit ---</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/3114455#M739523</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;        Your First Point is user exit which can be implement by writing code in a routine in a standard program.once u write code in between routine it will always going to syntax check whenever that program will be executed so due to this SAP introduce customer exit on which there is Z include available in SAP Standard FM u implement that Z incluse and implement project using tcode CMOD and SMOD then only that code of block will execute your last two points related to customer-exit.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Gagan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 20 Nov 2007 09:20:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/3114455#M739523</guid>
      <dc:creator>former_member194152</dc:creator>
      <dc:date>2007-11-20T09:20: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/3114456#M739524</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;The first one is USEREXIT whcih requires access key...no need to for creating a project in CMOD..we can write it in sap standard include and activate it&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The second two are customer exits...&lt;/P&gt;&lt;P&gt;Here we don't need any access key..we can write the code in the zincludes of it..we need to create a project in CMOD..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if helpful.&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>Tue, 20 Nov 2007 09:23:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/3114456#M739524</guid>
      <dc:creator>former_member404244</dc:creator>
      <dc:date>2007-11-20T09:23:37Z</dc:date>
    </item>
    <item>
      <title>Re: user exit ---</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/3114457#M739525</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi ashok,&lt;/P&gt;&lt;P&gt;If it is a user exit it will be called from the main program thru a PERFORM statement,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If it is a Customer exit it will be called thru &lt;/P&gt;&lt;P&gt;CALL CUSTOMER-FUNCTION '002 'statement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;if u double click on '002' it will take you to the corresponding customer exit(here to function exit EXIT_SAPMV45A_001)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Karthik D&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 22 Nov 2007 07:38:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit/m-p/3114457#M739525</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-11-22T07:38:30Z</dc:date>
    </item>
  </channel>
</rss>

