<?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: how to do coding for VF02 user exit? in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-coding-for-vf02-user-exit/m-p/4069066#M972765</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In your include, you have 3 type of parameters:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;  VALUE(XACCIT) LIKE  ACCIT STRUCTURE  ACCIT&lt;/P&gt;&lt;P&gt;  VALUE(VBRK) LIKE  VBRK STRUCTURE  VBRK&lt;/P&gt;&lt;P&gt;  REFERENCE(DOC_NUMBER) LIKE  VBRK-VBELN OPTIONAL&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;EXPORTING&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;  &lt;STRONG&gt;VALUE(XACCIT) LIKE  ACCIT STRUCTURE  ACCIT&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;  CVBRP STRUCTURE  VBRPVB OPTIONAL&lt;/P&gt;&lt;P&gt;  CKOMV STRUCTURE  KOMV&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, that exit exists for you to using IMPORTING and TABLES parameters, to change the value of EXPORTING and TABLES parameters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As an example, you should can do like this:&lt;/P&gt;&lt;P&gt;IF doc_number IS INITIAL.&lt;/P&gt;&lt;P&gt;  xaccit-kursk = 'ABC'.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;P&gt;Valter Oliveira.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 04 Jul 2008 13:42:29 GMT</pubDate>
    <dc:creator>valter_oliveira</dc:creator>
    <dc:date>2008-07-04T13:42:29Z</dc:date>
    <item>
      <title>how to do coding for VF02 user exit?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-coding-for-vf02-user-exit/m-p/4069060#M972759</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i m working on a script of vf02 i.e. for commercial invoice for japan (fjci). i have to add exchange rate field to this script using user exit. i got 1 user exit for the same i.e. exit_saplv60b_003. using this exit i got one include program 'zxvVfu03'. but i don't know how to do codding in that include program to add that field. plz suggest me how to do codding to add exchange rate field to script? the name of script is something SD_EXPORT*.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Jul 2008 13:15:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-coding-for-vf02-user-exit/m-p/4069060#M972759</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-04T13:15:10Z</dc:date>
    </item>
    <item>
      <title>Re: how to do coding for VF02 user exit?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-coding-for-vf02-user-exit/m-p/4069061#M972760</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First of all create a Zproject in tcode CMOD. There, include ampliation SDVFX003 (the one that contains your exit). After that, activate the project.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then, press components button in CMOD, and double click on component exit_saplv60b_003 (or go to se37 with exit and press dispplay). Then double click on include zxvVfu03. A warning message will appear, press enter, and create the include.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;P&gt;Valter Oliveira.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Jul 2008 13:21:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-coding-for-vf02-user-exit/m-p/4069061#M972760</guid>
      <dc:creator>valter_oliveira</dc:creator>
      <dc:date>2008-07-04T13:21:17Z</dc:date>
    </item>
    <item>
      <title>Re: how to do coding for VF02 user exit?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-coding-for-vf02-user-exit/m-p/4069062#M972761</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thnk u for ur help. but whatever u suggest me i have already done that. i got one include program also 'zxvVfu03' but i don't know how to do coding in that. can u suggest me how to do coing in that include program to add the exchange rate field in that script..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Jul 2008 13:24:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-coding-for-vf02-user-exit/m-p/4069062#M972761</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-04T13:24:31Z</dc:date>
    </item>
    <item>
      <title>Re: how to do coding for VF02 user exit?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-coding-for-vf02-user-exit/m-p/4069063#M972762</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi again.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Looking to the exit, looks that you just have to change the value of field xaccit-kursk.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;P&gt;Valter Oliveira.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Jul 2008 13:32:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-coding-for-vf02-user-exit/m-p/4069063#M972762</guid>
      <dc:creator>valter_oliveira</dc:creator>
      <dc:date>2008-07-04T13:32:13Z</dc:date>
    </item>
    <item>
      <title>Re: how to do coding for VF02 user exit?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-coding-for-vf02-user-exit/m-p/4069064#M972763</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i have to add the selection field to standard report of t.c. MCBZ. i don't know how to add that. and the field to be add is Planned ordr no. 'plnum'. can u suggest me how to add that field to selection criteria of MCBZ t.c?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Jul 2008 13:35:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-coding-for-vf02-user-exit/m-p/4069064#M972763</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-04T13:35:58Z</dc:date>
    </item>
    <item>
      <title>Re: how to do coding for VF02 user exit?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-coding-for-vf02-user-exit/m-p/4069065#M972764</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;can u tell how to change the value of xaccit-kursk? how to add this field to script?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Jul 2008 13:38:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-coding-for-vf02-user-exit/m-p/4069065#M972764</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-04T13:38:15Z</dc:date>
    </item>
    <item>
      <title>Re: how to do coding for VF02 user exit?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-coding-for-vf02-user-exit/m-p/4069066#M972765</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In your include, you have 3 type of parameters:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;P&gt;  VALUE(XACCIT) LIKE  ACCIT STRUCTURE  ACCIT&lt;/P&gt;&lt;P&gt;  VALUE(VBRK) LIKE  VBRK STRUCTURE  VBRK&lt;/P&gt;&lt;P&gt;  REFERENCE(DOC_NUMBER) LIKE  VBRK-VBELN OPTIONAL&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;EXPORTING&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;  &lt;STRONG&gt;VALUE(XACCIT) LIKE  ACCIT STRUCTURE  ACCIT&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;TABLES&lt;/P&gt;&lt;P&gt;  CVBRP STRUCTURE  VBRPVB OPTIONAL&lt;/P&gt;&lt;P&gt;  CKOMV STRUCTURE  KOMV&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So, that exit exists for you to using IMPORTING and TABLES parameters, to change the value of EXPORTING and TABLES parameters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As an example, you should can do like this:&lt;/P&gt;&lt;P&gt;IF doc_number IS INITIAL.&lt;/P&gt;&lt;P&gt;  xaccit-kursk = 'ABC'.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;P&gt;Valter Oliveira.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Jul 2008 13:42:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-coding-for-vf02-user-exit/m-p/4069066#M972765</guid>
      <dc:creator>valter_oliveira</dc:creator>
      <dc:date>2008-07-04T13:42:29Z</dc:date>
    </item>
    <item>
      <title>Re: how to do coding for VF02 user exit?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-coding-for-vf02-user-exit/m-p/4069067#M972766</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;plz more describe your example..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Jul 2008 13:51:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-coding-for-vf02-user-exit/m-p/4069067#M972766</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-07-04T13:51:25Z</dc:date>
    </item>
    <item>
      <title>Re: how to do coding for VF02 user exit?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-coding-for-vf02-user-exit/m-p/4069068#M972767</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In my example (invented requirement), if the document number that is passed as input to the ampliation is empty, the value of the rate will be transformed in 'ABCD'. "dummy value I invented&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If document number has a value, the rate isn't changed by me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Valter Oliveira.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Jul 2008 15:28:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-coding-for-vf02-user-exit/m-p/4069068#M972767</guid>
      <dc:creator>valter_oliveira</dc:creator>
      <dc:date>2008-07-04T15:28:08Z</dc:date>
    </item>
    <item>
      <title>Re: how to do coding for VF02 user exit?</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-coding-for-vf02-user-exit/m-p/4069069#M972768</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thank u&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Aug 2008 14:48:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/how-to-do-coding-for-vf02-user-exit/m-p/4069069#M972768</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-06T14:48:40Z</dc:date>
    </item>
  </channel>
</rss>

