<?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 help in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-help/m-p/4481031#M1061007</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; Amit could you please explain me this code.&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; CASE screen-name.&lt;/P&gt;&lt;P&gt;&amp;gt;         WHEN 'VBAK-FAKSK'."billing block&lt;/P&gt;&lt;P&gt;&amp;gt;           screen-input = 0.&lt;/P&gt;&lt;P&gt;&amp;gt;           MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;&amp;gt;       ENDCASE.&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thats very much simple.&lt;/P&gt;&lt;P&gt;Once your VA01/Va02 is called and curser is comes to &lt;/P&gt;&lt;P&gt;screen-name('VBAK-FAKSK'.) than screen input will be zro based on your codition.which exactly you want.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 09 Sep 2008 04:07:05 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-09-09T04:07:05Z</dc:date>
    <item>
      <title>user exit help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-help/m-p/4481026#M1061002</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;we have a requirement in va01.&lt;/P&gt;&lt;P&gt;based on some logic we need to activate the delivery block&lt;/P&gt;&lt;P&gt;in the user exit.&lt;/P&gt;&lt;P&gt;so please tell me how to do in the user exit mv45afzz.&lt;/P&gt;&lt;P&gt;we need to update the structure xvbak-LIFSK field  or some thing else.&lt;/P&gt;&lt;P&gt;when we tried updating this structure it is not updating.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Sep 2008 12:27:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-help/m-p/4481026#M1061002</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-08T12:27:58Z</dc:date>
    </item>
    <item>
      <title>Re: user exit help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-help/m-p/4481027#M1061003</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When you check the User Exit provided they would have written comments as to what a particular part of the user exit will do. So you check the same and if some block matches your requirement you can write your code there.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Else you can go to debugging mode and check which block of the user exit is called once you process and then write your code there.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Pramod&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Sep 2008 12:31:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-help/m-p/4481027#M1061003</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-08T12:31:16Z</dc:date>
    </item>
    <item>
      <title>Re: user exit help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-help/m-p/4481028#M1061004</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Madan,&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;Exit:mv45afzz&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;FORM userexit_field_modification.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This code should be used in FORM userexit_field_modification :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;IF sy-tcode = 'VA01'.
    IF vbak-auart = 'GCR'." OR vbak-auart = 'GRE'."&amp;gt;&amp;gt;&amp;gt;here you must add your codition accordingly
      CASE screen-name.
        WHEN 'VBAK-FAKSK'."billing block
          screen-input = 0.
          MODIFY SCREEN.
      ENDCASE.
    ENDIF.
  ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Amit.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Sep 2008 12:58:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-help/m-p/4481028#M1061004</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-08T12:58:29Z</dc:date>
    </item>
    <item>
      <title>Re: user exit help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-help/m-p/4481029#M1061005</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;Please use this function module. this may help you.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;UPDATE_DELIVERY_TABLE&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Ravi Kanth.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 08 Sep 2008 13:29:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-help/m-p/4481029#M1061005</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-08T13:29:01Z</dc:date>
    </item>
    <item>
      <title>Re: user exit help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-help/m-p/4481030#M1061006</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Amit could you please explain me this code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CASE screen-name.&lt;/P&gt;&lt;P&gt;        WHEN 'VBAK-FAKSK'."billing block&lt;/P&gt;&lt;P&gt;          screen-input = 0.&lt;/P&gt;&lt;P&gt;          MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;      ENDCASE.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Sep 2008 03:49:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-help/m-p/4481030#M1061006</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-09T03:49:12Z</dc:date>
    </item>
    <item>
      <title>Re: user exit help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-help/m-p/4481031#M1061007</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;gt; Amit could you please explain me this code.&lt;/P&gt;&lt;P&gt;&amp;gt; &lt;/P&gt;&lt;P&gt;&amp;gt; CASE screen-name.&lt;/P&gt;&lt;P&gt;&amp;gt;         WHEN 'VBAK-FAKSK'."billing block&lt;/P&gt;&lt;P&gt;&amp;gt;           screen-input = 0.&lt;/P&gt;&lt;P&gt;&amp;gt;           MODIFY SCREEN.&lt;/P&gt;&lt;P&gt;&amp;gt;       ENDCASE.&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thats very much simple.&lt;/P&gt;&lt;P&gt;Once your VA01/Va02 is called and curser is comes to &lt;/P&gt;&lt;P&gt;screen-name('VBAK-FAKSK'.) than screen input will be zro based on your codition.which exactly you want.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Sep 2008 04:07:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-help/m-p/4481031#M1061007</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-09T04:07:05Z</dc:date>
    </item>
    <item>
      <title>Re: user exit help</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-help/m-p/4481032#M1061008</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Amit thanks for the reply.&lt;/P&gt;&lt;P&gt;we need to activate the approval required option in that.&lt;/P&gt;&lt;P&gt;But according to the code you have given it simply makes the deliv block&lt;/P&gt;&lt;P&gt;editable or not.&lt;/P&gt;&lt;P&gt;so please tell me how to activate this option.&lt;/P&gt;&lt;P&gt;cant we update the xvbak structure , is any reson for that.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 09 Sep 2008 04:56:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/user-exit-help/m-p/4481032#M1061008</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-09-09T04:56:10Z</dc:date>
    </item>
  </channel>
</rss>

