<?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: smartforms.generating fm in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-generating-fm/m-p/3278966#M784106</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi naveen,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here some times when we are migrating the pgm and form from DEV server to QA and then Production. in case Transport req is not migrated properly means. we will get these type of problems.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so my suggession is again u store the pgm and form with ACTIVE version in another new TR and migrated to production. u will get form genaration.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward me if helpfull.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 03 Jan 2008 18:28:02 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-01-03T18:28:02Z</dc:date>
    <item>
      <title>smartforms.generating fm</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-generating-fm/m-p/3278965#M784105</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi experts,&lt;/P&gt;&lt;P&gt;I am getting error when fm SSF_FUNCTION_MODULE_NAME is executing.....i am getting error as &lt;/P&gt;&lt;P&gt;"Error during generation of form ZQM_HANDSLIP".....it is working properly in devlopment,but in production i am getting this error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the code is as fallows.....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'SSF_FUNCTION_MODULE_NAME'&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      FORMNAME                  = 'ZQM_HANDSLIP'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    VARIANT                   = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;    DIRECT_CALL               = ' '&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    IMPORTING&lt;/P&gt;&lt;P&gt;      FM_NAME                   = FNAME&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;EXCEPTIONS&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  NO_FORM                     = 1&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  NO_FUNCTION_MODULE          = 2&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  OTHERS                      = 3.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; ENDIF.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION FNAME&lt;/P&gt;&lt;P&gt;    EXPORTING&lt;/P&gt;&lt;P&gt;      S_MBLNR     = P_MBLNR&lt;/P&gt;&lt;P&gt;      S_MJAHR     = P_MJAHR&lt;/P&gt;&lt;P&gt;      S_LIFNR     = ZLIFNR&lt;/P&gt;&lt;P&gt;      S_EBELN     = ZEBELN&lt;/P&gt;&lt;P&gt;      H_MBLNR     = ZMBLNR&lt;/P&gt;&lt;P&gt;      S_FROM      = FROM&lt;/P&gt;&lt;P&gt;      S_TO        = TO&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      ITAB1       = ITAB&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;   TABLES&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     I_TBL1      = I_MAIN&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;ENDFORM.                    " CALL_SF&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tnx in advance.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Jan 2008 18:07:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-generating-fm/m-p/3278965#M784105</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-03T18:07:37Z</dc:date>
    </item>
    <item>
      <title>Re: smartforms.generating fm</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-generating-fm/m-p/3278966#M784106</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi naveen,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here some times when we are migrating the pgm and form from DEV server to QA and then Production. in case Transport req is not migrated properly means. we will get these type of problems.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so my suggession is again u store the pgm and form with ACTIVE version in another new TR and migrated to production. u will get form genaration.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward me if helpfull.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 03 Jan 2008 18:28:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-generating-fm/m-p/3278966#M784106</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-03T18:28:02Z</dc:date>
    </item>
  </channel>
</rss>

