<?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: smart forms in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/smart-forms/m-p/2854135#M668916</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anuj,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you are Configuring your Print program of the smartform in Nace transaction in that case your print program will not be the same normal program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Development will be inside FORM ENDFORM subroutine.This subroutine you will have to configure in the NACE transaction with the smartform.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 03 Oct 2007 11:40:31 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-10-03T11:40:31Z</dc:date>
    <item>
      <title>smart forms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smart-forms/m-p/2854134#M668915</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi gurs,&lt;/P&gt;&lt;P&gt;i have created a smart form &amp;amp; it's application program but when in nace t-code i gave it's app program name and smart form name  in processing routines then it ask for it's form routines name.&lt;/P&gt;&lt;P&gt;i have no idea abt form routines so pls tell me how to create it's form routine &amp;amp; if required then also give source code also and step by step.&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;anuj&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Oct 2007 11:32:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smart-forms/m-p/2854134#M668915</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-03T11:32:27Z</dc:date>
    </item>
    <item>
      <title>Re: smart forms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smart-forms/m-p/2854135#M668916</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Anuj,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;When you are Configuring your Print program of the smartform in Nace transaction in that case your print program will not be the same normal program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Development will be inside FORM ENDFORM subroutine.This subroutine you will have to configure in the NACE transaction with the smartform.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Oct 2007 11:40:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smart-forms/m-p/2854135#M668916</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-03T11:40:31Z</dc:date>
    </item>
    <item>
      <title>Re: smart forms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smart-forms/m-p/2854136#M668917</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;good&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;User exits are routine which SAP allows you to add in additional customized programs process without affecting the standard SAP programs.&lt;/P&gt;&lt;P&gt;form userexit_xxxxx &lt;/P&gt;&lt;P&gt;       ........................ &lt;/P&gt;&lt;P&gt;endform &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In VL01 - Create Delivery Order, standard program  SAPMV50A, the standard program did not check for storage location equal to space, and delivery quantity less than one when the user click the save button.  Therefore I have to insert the additional checking into the userexit routine. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Steps:- &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Goto transaction VL01 to pick a Sales Order for delivery (you don't have to save the data) &lt;/P&gt;&lt;P&gt;In the initial screen, click System -&amp;gt; Status -&amp;gt; Double click on Program (Screen) &lt;/P&gt;&lt;P&gt;In the dialog program SAPMV50A, click Edit -&amp;gt; Search/replace &lt;/P&gt;&lt;P&gt;Type userexit in the Find field, then click the In program radio button and hit Enter &lt;/P&gt;&lt;P&gt;A number of userexit routine will be display.  You'll have to roughly decide which is the correct userexit routine to used. &lt;/P&gt;&lt;P&gt;form userexit_save_document_prepare. &lt;/P&gt;&lt;P&gt;case xlips-pstyv. &lt;/P&gt;&lt;P&gt;  when 'TAX' or 'REX'. &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   Accept this two Delivery item category &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  when 'REN'. &lt;/P&gt;&lt;P&gt;     if xlips-lgort = space. &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   Reject this Delivery item category &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;        message e001. &lt;/P&gt;&lt;P&gt;     endif. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  when others. &lt;/P&gt;&lt;P&gt;     if xlips-matnr &amp;lt;&amp;gt; space. &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   Check storage location not space &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;       if xlips-lgort = space. &lt;/P&gt;&lt;P&gt;          message e002. &lt;/P&gt;&lt;P&gt;       endif. &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    Check delivery quantity not zero &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;       if xlips-pikmg &amp;lt; 1. &lt;/P&gt;&lt;P&gt;          message e003. &lt;/P&gt;&lt;P&gt;       endif. &lt;/P&gt;&lt;P&gt;    endif. &lt;/P&gt;&lt;P&gt;endcase. &lt;/P&gt;&lt;P&gt;endform. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sap-basis-abap.com/sapab013.htm" target="test_blank"&gt;http://www.sap-basis-abap.com/sapab013.htm&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;SPAN __default_attr="red" __jive_macro_name="color"&gt;&lt;STRONG&gt;\[removed by moderator\]&lt;/STRONG&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;mrutyun^&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: Jan Stallkamp on Aug 6, 2008 2:26 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 03 Oct 2007 11:53:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smart-forms/m-p/2854136#M668917</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-10-03T11:53:56Z</dc:date>
    </item>
    <item>
      <title>Re: smart forms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smart-forms/m-p/2854137#M668918</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanx&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 06 Aug 2008 11:40:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smart-forms/m-p/2854137#M668918</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-08-06T11:40:37Z</dc:date>
    </item>
  </channel>
</rss>

