<?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 screen exit step by step procedure in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-exit-step-by-step-procedure/m-p/3148372#M748543</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;       This is Surya from Vizag.Can anyone tell me step by step procedure for creating a screen exit for a standard application.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 27 Dec 2007 08:57:15 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-12-27T08:57:15Z</dc:date>
    <item>
      <title>screen exit step by step procedure</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-exit-step-by-step-procedure/m-p/3148372#M748543</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;       This is Surya from Vizag.Can anyone tell me step by step procedure for creating a screen exit for a standard application.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 27 Dec 2007 08:57:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-exit-step-by-step-procedure/m-p/3148372#M748543</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-27T08:57:15Z</dc:date>
    </item>
    <item>
      <title>Re: screen exit step by step procedure</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-exit-step-by-step-procedure/m-p/3148373#M748544</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Surya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Find below the simple steps for Screen exit enhancment.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Scenario is to add a new field to Sales order and make it non editable only for display mode.&lt;/P&gt;&lt;P&gt;Also add some checks if it is empty.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Code portions are given below in ITALICS&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;#1 : Create the new field in Database (what ever field you are trying to add in screen)&lt;/P&gt;&lt;P&gt;       In this case add the field(ZFIELD) in VBAK (Include a structure and add the field to the structure)&lt;/P&gt;&lt;P&gt;       Activate both the structure and table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;#2  Screen Changes - Goto SE51&lt;/P&gt;&lt;P&gt;      In this eg Screen number 8309 of Program SAPMV45A&lt;/P&gt;&lt;P&gt;      Go to Screen layout and create a field and assign it to ZFIELD&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;#3  In Flow Logic, PBO, Create a Module. Double click the module. Control now goes to MV45AOZZ.&lt;/P&gt;&lt;P&gt;      write the following code there.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;LOOP AT SCREEN.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;IF SY-TCODE = 'VA03'.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;SCREEN-INPUT = 0.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;SCREEN-OUTPUT = 1.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;MODIFY SCREEN.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;ELSE.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;IF VBAK-ZFIELD IS INITIAL.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;SCREEN-REQUEST = 1.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;MODIFY SCREEN.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;ENDIF.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;ENDIF.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;ENDLOOP.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;#4 Creating a new module ZCHECKFIELD in PAI of MV45AIZZ and Write the following code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;FIELD VBAK-ZFIELD MODULE ZCHECKFIELD ON INPUT&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Double click the Module  and write the following code &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;MODULE ZCHECKFIELD INPUT.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;EM&gt;IF NOT VBAK-ZTEST IS INITIAL.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;Raise some error or Do what ever you want to do.&lt;/P&gt;&lt;P&gt;&lt;EM&gt;ENDIF.&lt;/EM&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Vinodh Balakrishnan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Dec 2007 00:00:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-exit-step-by-step-procedure/m-p/3148373#M748544</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-28T00:00:08Z</dc:date>
    </item>
    <item>
      <title>Re: screen exit step by step procedure</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/screen-exit-step-by-step-procedure/m-p/3148374#M748545</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Screen exits add fields to screens in R/3 applications. SAP creates screen exits by placing special subscreen areas on a standard R/3 screen and calling a customer subscreen from the standard screen&amp;#146;s flow logic.&lt;/P&gt;&lt;P&gt;the tcode is cmod...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Screen Exit is nothing but enhancing the screen like creating some more fields, subscreen and so on.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Go to the screen&lt;DEL&gt;&amp;gt;System&lt;/DEL&gt;&amp;gt;Status--&amp;gt;Program (Double click this program. It will take you to the program)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. Now, Goto--&amp;gt;Object Directory Entry.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. Make a note the package name.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4. Now run the transactions SMOD, press F4 and enter theabove noted package, press enter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;5. It will display list of Exits.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;6. Now go back to the initial screen SMOD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;7. Specify the exit name here and select the radio button Components.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;8. It will display four group boxes one for FM, second for Fcodes, thrid for Screen areas and last for includes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;9. Goto transaction CMOD, create a new project, andclick the button "Enhancement assignments" and specify your enhancements that you got in SMOD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;10. Now bouble click the enhancement, it will take you to editor with some includes starting with Z, double clikc the include you want to edit and proceed.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check this thread for step by step procedure to create &lt;STRONG&gt;Screen exit for XD01&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="56185"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check the following link.&lt;/P&gt;&lt;P&gt;&lt;A href="https://www.sdn.sap.com/irj/sdn/advancedsearch?query=how%20to%20find%20screen%20exits&amp;amp;cat=sdn_all" target="test_blank"&gt;https://www.sdn.sap.com/irj/sdn/advancedsearch?query=how%20to%20find%20screen%20exits&amp;amp;cat=sdn_all&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also check this thread too.&lt;/P&gt;&lt;P&gt;&lt;A class="jive_macro jive_macro_thread" href="https://community.sap.com/" __jive_macro_name="thread" modifiedtitle="true" __default_attr="502862"&gt;&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Maha&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 28 Dec 2007 00:34:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/screen-exit-step-by-step-procedure/m-p/3148374#M748545</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-28T00:34:22Z</dc:date>
    </item>
  </channel>
</rss>

