<?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: urgent smartforms!!!!!! in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/urgent-smartforms/m-p/2858944#M670364</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi reshma&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pls as follow &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES: MKPF.&lt;/P&gt;&lt;P&gt;DATA: FM_NAME TYPE RS38L_FNAM.&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF INT_MKPF OCCURS 0.&lt;/P&gt;&lt;P&gt;INCLUDE STRUCTURE MKPF.&lt;/P&gt;&lt;P&gt;DATA: END OF INT_MKPF.&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS S_MBLNR FOR MKPF-MBLNR MEMORY ID 001.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;At the end of your program.&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Passing data to SMARTFORMS&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt; PERFORM  GET_DATA.&lt;/P&gt;&lt;P&gt;END-OF-SELECTION.&lt;/P&gt;&lt;P&gt;PERFORM TEST_SMARTFORMS USING 'ZSAMP_SSMART' .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Form  GET_DATA&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      text&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; --&amp;gt;  p1        text&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; &amp;lt;--  p2        text&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;form GET_DATA .&lt;/P&gt;&lt;P&gt;CLEAR : INT_MKPF , INT_MKPF[] .&lt;/P&gt;&lt;P&gt;SELECT * FROM MKPF WHERE MBLNR IN S_MBLNR.&lt;/P&gt;&lt;P&gt;MOVE-CORRESPONDING MKPF TO INT_MKPF.&lt;/P&gt;&lt;P&gt;APPEND INT_MKPF.&lt;/P&gt;&lt;P&gt;ENDSELECT.&lt;/P&gt;&lt;P&gt;endform.                    " GET_DATA&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Form  TEST_SMARTFORMS&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      text&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     --&amp;gt;P_0036   text&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;form TEST_SMARTFORMS  using    value(p_0036).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLEAR FM_NAME .&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                 = 'ZSAMP_SSMART'&lt;/P&gt;&lt;P&gt;   IMPORTING&lt;/P&gt;&lt;P&gt;     FM_NAME                  =  FM_NAME&lt;/P&gt;&lt;P&gt;   EXCEPTIONS&lt;/P&gt;&lt;P&gt;     NO_FORM                  = 1&lt;/P&gt;&lt;P&gt;     NO_FUNCTION_MODULE       = 2&lt;/P&gt;&lt;P&gt;     OTHERS                   = 3   .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;P&gt;            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION FM_NAME&lt;/P&gt;&lt;P&gt;  TABLES&lt;/P&gt;&lt;P&gt;   INT_MKPF                   = INT_MKPF&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; EXCEPTIONS&lt;/P&gt;&lt;P&gt;   FORMATTING_ERROR           = 1&lt;/P&gt;&lt;P&gt;   INTERNAL_ERROR             = 2&lt;/P&gt;&lt;P&gt;   SEND_ERROR                 = 3&lt;/P&gt;&lt;P&gt;   USER_CANCELED              = 4&lt;/P&gt;&lt;P&gt;   OTHERS                     = 5  .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt; MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;P&gt;         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endform.                    " TEST_SMARTFORMS&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 24 Sep 2007 06:41:57 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-09-24T06:41:57Z</dc:date>
    <item>
      <title>urgent smartforms!!!!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/urgent-smartforms/m-p/2858936#M670356</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;i hav a table called zborrower which contains 5 fields , one of the field is :"date_of_return" ....i need to display the details of the borrower based on the date range for date_of_return in the smartform using select options.......how could i do this??.......if there is any other method other than the select options do let me knw.......thank you  &lt;SPAN __jive_emoticon_name="happy"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Sep 2007 05:41:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/urgent-smartforms/m-p/2858936#M670356</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-24T05:41:28Z</dc:date>
    </item>
    <item>
      <title>Re: urgent smartforms!!!!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/urgent-smartforms/m-p/2858937#M670357</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Reshma,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As per my understanding you wud be triggering the smartform fro a driver program. In that case Select options is the most efficient way to select data into an internal table which you can pass to the SF interface.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Let me know if you need any more info else pl reward points.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Sep 2007 06:14:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/urgent-smartforms/m-p/2858937#M670357</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-24T06:14:39Z</dc:date>
    </item>
    <item>
      <title>Re: urgent smartforms!!!!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/urgent-smartforms/m-p/2858938#M670358</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;write a driver program and specify ur select options and call ur smart fom in that driver program.I think this would be helpful.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Sep 2007 06:15:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/urgent-smartforms/m-p/2858938#M670358</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-24T06:15:38Z</dc:date>
    </item>
    <item>
      <title>Re: urgent smartforms!!!!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/urgent-smartforms/m-p/2858939#M670359</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Reshma,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;- Use SELECT-OPTIONS or RANGES for date range &lt;/P&gt;&lt;P&gt;- Do a select to ur Z table &amp;amp; populate your itab&lt;/P&gt;&lt;P&gt;- Send it to the Smartform &amp;amp; display (I hope u know how to do it: send it in the tables option of your smartform FM)&lt;/P&gt;&lt;P&gt;- Loop thru the itab in ur smartform&lt;/P&gt;&lt;P&gt;- Display data&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points for useful Answers&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Karthik&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Sep 2007 06:16:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/urgent-smartforms/m-p/2858939#M670359</guid>
      <dc:creator>former_member189629</dc:creator>
      <dc:date>2007-09-24T06:16:45Z</dc:date>
    </item>
    <item>
      <title>Re: urgent smartforms!!!!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/urgent-smartforms/m-p/2858940#M670360</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i actually hav a report that asks for the date range and displays the reocord based on this date range ...this report conatins a push button "smartform" ...which shud display the same records as that of the report in the smartform&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Sep 2007 06:31:20 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/urgent-smartforms/m-p/2858940#M670360</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-24T06:31:20Z</dc:date>
    </item>
    <item>
      <title>Re: urgent smartforms!!!!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/urgent-smartforms/m-p/2858941#M670361</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i actually hav a report that asks for the date range and displays the reocord based on this date range ...this report conatins a push button "smartform" ...which shud display the same records as that of the report in the smartform&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Sep 2007 06:32:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/urgent-smartforms/m-p/2858941#M670361</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-24T06:32:14Z</dc:date>
    </item>
    <item>
      <title>Re: urgent smartforms!!!!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/urgent-smartforms/m-p/2858942#M670362</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do u wanna know how u generate a smartform once that button is clicked?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Sep 2007 06:34:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/urgent-smartforms/m-p/2858942#M670362</guid>
      <dc:creator>former_member189629</dc:creator>
      <dc:date>2007-09-24T06:34:42Z</dc:date>
    </item>
    <item>
      <title>Re: urgent smartforms!!!!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/urgent-smartforms/m-p/2858943#M670363</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;i want to knw how to display the record that is displayed wen i execute the report in the smartform.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Sep 2007 06:36:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/urgent-smartforms/m-p/2858943#M670363</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-24T06:36:43Z</dc:date>
    </item>
    <item>
      <title>Re: urgent smartforms!!!!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/urgent-smartforms/m-p/2858944#M670364</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi reshma&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pls as follow &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES: MKPF.&lt;/P&gt;&lt;P&gt;DATA: FM_NAME TYPE RS38L_FNAM.&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF INT_MKPF OCCURS 0.&lt;/P&gt;&lt;P&gt;INCLUDE STRUCTURE MKPF.&lt;/P&gt;&lt;P&gt;DATA: END OF INT_MKPF.&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS S_MBLNR FOR MKPF-MBLNR MEMORY ID 001.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;At the end of your program.&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Passing data to SMARTFORMS&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt; PERFORM  GET_DATA.&lt;/P&gt;&lt;P&gt;END-OF-SELECTION.&lt;/P&gt;&lt;P&gt;PERFORM TEST_SMARTFORMS USING 'ZSAMP_SSMART' .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Form  GET_DATA&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      text&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; --&amp;gt;  p1        text&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt; &amp;lt;--  p2        text&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;form GET_DATA .&lt;/P&gt;&lt;P&gt;CLEAR : INT_MKPF , INT_MKPF[] .&lt;/P&gt;&lt;P&gt;SELECT * FROM MKPF WHERE MBLNR IN S_MBLNR.&lt;/P&gt;&lt;P&gt;MOVE-CORRESPONDING MKPF TO INT_MKPF.&lt;/P&gt;&lt;P&gt;APPEND INT_MKPF.&lt;/P&gt;&lt;P&gt;ENDSELECT.&lt;/P&gt;&lt;P&gt;endform.                    " GET_DATA&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;      Form  TEST_SMARTFORMS&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      text&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;     --&amp;gt;P_0036   text&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;STRONG&gt;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="-----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;form TEST_SMARTFORMS  using    value(p_0036).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLEAR FM_NAME .&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                 = 'ZSAMP_SSMART'&lt;/P&gt;&lt;P&gt;   IMPORTING&lt;/P&gt;&lt;P&gt;     FM_NAME                  =  FM_NAME&lt;/P&gt;&lt;P&gt;   EXCEPTIONS&lt;/P&gt;&lt;P&gt;     NO_FORM                  = 1&lt;/P&gt;&lt;P&gt;     NO_FUNCTION_MODULE       = 2&lt;/P&gt;&lt;P&gt;     OTHERS                   = 3   .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;P&gt;            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION FM_NAME&lt;/P&gt;&lt;P&gt;  TABLES&lt;/P&gt;&lt;P&gt;   INT_MKPF                   = INT_MKPF&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; EXCEPTIONS&lt;/P&gt;&lt;P&gt;   FORMATTING_ERROR           = 1&lt;/P&gt;&lt;P&gt;   INTERNAL_ERROR             = 2&lt;/P&gt;&lt;P&gt;   SEND_ERROR                 = 3&lt;/P&gt;&lt;P&gt;   USER_CANCELED              = 4&lt;/P&gt;&lt;P&gt;   OTHERS                     = 5  .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt; MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;P&gt;         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endform.                    " TEST_SMARTFORMS&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Sep 2007 06:41:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/urgent-smartforms/m-p/2858944#M670364</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-24T06:41:57Z</dc:date>
    </item>
    <item>
      <title>Re: urgent smartforms!!!!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/urgent-smartforms/m-p/2858945#M670365</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I assume the report output is from a single itab and the there is code already to generate the smartform. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now pass this itab in the tables section of the Smartform Function Module,&lt;/P&gt;&lt;P&gt;Declare a workarea in the Smartform&lt;/P&gt;&lt;P&gt;Loop the itab into the WA &amp;amp; Display data.&lt;/P&gt;&lt;P&gt;That's it. Lemme know if u need more info...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Sep 2007 06:43:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/urgent-smartforms/m-p/2858945#M670365</guid>
      <dc:creator>former_member189629</dc:creator>
      <dc:date>2007-09-24T06:43:45Z</dc:date>
    </item>
    <item>
      <title>Re: urgent smartforms!!!!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/urgent-smartforms/m-p/2858946#M670366</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;do i hav to declare that itab in the form interface of the smartform........this itab is of type structure ........how could i do this??&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Sep 2007 06:56:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/urgent-smartforms/m-p/2858946#M670366</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-24T06:56:39Z</dc:date>
    </item>
    <item>
      <title>Re: urgent smartforms!!!!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/urgent-smartforms/m-p/2858947#M670367</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;yes, u will have to declare int he form interface. Wat did u mean by TYPE Structure? that's how it will be... Also declare a WA with the same type. In the main window, loop the itab into the work area. Create a report-like template and display your WA fields...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Sep 2007 06:59:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/urgent-smartforms/m-p/2858947#M670367</guid>
      <dc:creator>former_member189629</dc:creator>
      <dc:date>2007-09-24T06:59:52Z</dc:date>
    </item>
    <item>
      <title>Re: urgent smartforms!!!!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/urgent-smartforms/m-p/2858948#M670368</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;do as follow&lt;/P&gt;&lt;P&gt;use ur report to fill the itab&lt;/P&gt;&lt;P&gt;and then call the smartform by passing that itab to smartform under TABLES&lt;/P&gt;&lt;P&gt;then create a structure in ddic and give the same fields as it is in ur itab.&lt;/P&gt;&lt;P&gt;now open ur smartform&lt;/P&gt;&lt;P&gt;in the interface-&amp;gt;tables-&amp;gt;&lt;/P&gt;&lt;P&gt;write itab like structure name u made&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then u can use this itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the point is&lt;/P&gt;&lt;P&gt;if u r passing an itab to ur smartform&lt;/P&gt;&lt;P&gt;u hav to create a structure in ddic&lt;/P&gt;&lt;P&gt;and then declare an itab with type structure same as structure in ddic&lt;/P&gt;&lt;P&gt;tell me if u want more&lt;/P&gt;&lt;P&gt;reward if useful&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Sep 2007 07:01:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/urgent-smartforms/m-p/2858948#M670368</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-24T07:01:56Z</dc:date>
    </item>
    <item>
      <title>Re: urgent smartforms!!!!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/urgent-smartforms/m-p/2858949#M670369</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;First get the data based on ur select-option in the driver program and put it into internal table ( itab1 type zborrower).&lt;/P&gt;&lt;P&gt;after fetching the data into itab1, then in the FORM INTERFACE of SMartform , &lt;/P&gt;&lt;P&gt;Under TABLES tab, decalre as ITAB like ZBORROWER.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now inthe Driver Program " call FM SSF_Function_module_name"&lt;/P&gt;&lt;P&gt;after the Call FM 'FMOD"  &amp;lt;----Gnerated by smartform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In this pass ur itab1 (of driver prog)  to ITAB (of smartyform).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Rvert back if any issues,&lt;/P&gt;&lt;P&gt;Reward if helpful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Naveen&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Sep 2007 07:03:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/urgent-smartforms/m-p/2858949#M670369</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-24T07:03:46Z</dc:date>
    </item>
    <item>
      <title>Re: urgent smartforms!!!!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/urgent-smartforms/m-p/2858950#M670370</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;TYPES : BEGIN OF struct,&lt;/P&gt;&lt;P&gt;        bookid TYPE zbooks-bookid,&lt;/P&gt;&lt;P&gt;        bname TYPE zbooks-bname,&lt;/P&gt;&lt;P&gt;        bmodule TYPE zbooks-bmodule,&lt;/P&gt;&lt;P&gt;        copies TYPE zbooks-copies,&lt;/P&gt;&lt;P&gt;        bavailable TYPE zbooks-bavailable,&lt;/P&gt;&lt;P&gt;        borrowername TYPE zborrower-borrowername,&lt;/P&gt;&lt;P&gt;        dateofborrower TYPE zborrower-dateofborrower,&lt;/P&gt;&lt;P&gt;        dateofreturn TYPE zborrower-dateofreturn,&lt;/P&gt;&lt;P&gt;        END OF struct.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : itab TYPE TABLE OF struct.&lt;/P&gt;&lt;P&gt;DATA : wa LIKE LINE OF itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this is the structure...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Sep 2007 07:04:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/urgent-smartforms/m-p/2858950#M670370</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-24T07:04:19Z</dc:date>
    </item>
    <item>
      <title>Re: urgent smartforms!!!!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/urgent-smartforms/m-p/2858951#M670371</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;pls send ur code first.after then all r help u&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Sep 2007 07:06:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/urgent-smartforms/m-p/2858951#M670371</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-24T07:06:45Z</dc:date>
    </item>
    <item>
      <title>Re: urgent smartforms!!!!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/urgent-smartforms/m-p/2858952#M670372</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;did u try my idea??crating structure in ddic and then using it in smartform&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Sep 2007 07:09:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/urgent-smartforms/m-p/2858952#M670372</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-24T07:09:49Z</dc:date>
    </item>
    <item>
      <title>Re: urgent smartforms!!!!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/urgent-smartforms/m-p/2858953#M670373</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp; Report  ZREP&lt;/P&gt;&lt;P&gt;*&amp;amp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*&amp;amp;&lt;/P&gt;&lt;P&gt;*&amp;amp;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;&amp;amp;----&lt;/STRONG&gt;&lt;/P&gt;&lt;HR originaltext="----------------------------------------------------------------" /&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;REPORT  zrep NO STANDARD PAGE HEADING LINE-SIZE 200.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES : zbooks,zborrower.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TYPES : BEGIN OF struct,&lt;/P&gt;&lt;P&gt;        bookid TYPE zbooks-bookid,&lt;/P&gt;&lt;P&gt;        bname TYPE zbooks-bname,&lt;/P&gt;&lt;P&gt;        bmodule TYPE zbooks-bmodule,&lt;/P&gt;&lt;P&gt;        copies TYPE zbooks-copies,&lt;/P&gt;&lt;P&gt;        bavailable TYPE zbooks-bavailable,&lt;/P&gt;&lt;P&gt;        borrowername TYPE zborrower-borrowername,&lt;/P&gt;&lt;P&gt;        dateofborrower TYPE zborrower-dateofborrower,&lt;/P&gt;&lt;P&gt;        dateofreturn TYPE zborrower-dateofreturn,&lt;/P&gt;&lt;P&gt;        END OF struct.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : itab TYPE TABLE OF struct.&lt;/P&gt;&lt;P&gt;DATA : wa LIKE LINE OF itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS : s_dob FOR zborrower-dateofborrower.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS : p_bname TYPE zbooks-bname.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SET PF-STATUS 'SMARTFORMS'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  SELECT *&lt;/P&gt;&lt;P&gt;  INTO CORRESPONDING FIELDS OF TABLE itab&lt;/P&gt;&lt;P&gt;  FROM zbooks AS a&lt;/P&gt;&lt;P&gt;  INNER JOIN zborrower AS b ON a&lt;SUB&gt;bookid = b&lt;/SUB&gt;bookid&lt;/P&gt;&lt;P&gt;  WHERE b~dateofborrower IN s_dob&lt;/P&gt;&lt;P&gt;  AND a~bname = p_bname.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  LOOP AT itab INTO wa.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    WRITE : /10 sy-vline,&lt;/P&gt;&lt;P&gt;             15 wa-bookid COLOR 1 INTENSIFIED ON,25 sy-vline,&lt;/P&gt;&lt;P&gt;             26 wa-bname COLOR 2 INTENSIFIED OFF,51 sy-vline,&lt;/P&gt;&lt;P&gt;             52 wa-borrowername COLOR 4 INTENSIFIED OFF ,77 sy-vline,&lt;/P&gt;&lt;P&gt;             78 wa-dateofborrower COLOR 7 INTENSIFIED OFF,95 sy-vline,&lt;/P&gt;&lt;P&gt;             96 wa-dateofreturn COLOR 1 INTENSIFIED OFF ,120 sy-vline.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  WRITE:/10 sy-uline(111).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT USER-COMMAND.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CASE sy-ucomm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    WHEN 'SMARTFORM'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      CALL FUNCTION '/1BCDWB/SF00000231'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      EXPORTING&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        ARCHIVE_INDEX              =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        ARCHIVE_INDEX_TAB          =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        ARCHIVE_PARAMETERS         =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        CONTROL_PARAMETERS         =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        MAIL_APPL_OBJ              =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        MAIL_RECIPIENT             =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        MAIL_SENDER                =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        OUTPUT_OPTIONS             =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        USER_SETTINGS              = 'X'&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        IMPORTING&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        DOCUMENT_OUTPUT_INFO       =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        JOB_OUTPUT_INFO            =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        JOB_OUTPUT_OPTIONS         =&lt;/P&gt;&lt;/LI&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;        FORMATTING_ERROR           = 1&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        INTERNAL_ERROR             = 2&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        SEND_ERROR                 = 3&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        USER_CANCELED              = 4&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        OTHERS                     = 5&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;                .&lt;/P&gt;&lt;P&gt;      IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;UL&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;/UL&gt;&lt;P&gt;      ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  ENDCASE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TOP-OF-PAGE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  WRITE: /10 sy-uline(111),&lt;/P&gt;&lt;P&gt;         /10 sy-vline ,15 'BOOK ID' COLOR 1 INTENSIFIED OFF,&lt;/P&gt;&lt;P&gt;         25 sy-vline, 26 'BOOK NAME' COLOR 2 INTENSIFIED OFF,&lt;/P&gt;&lt;P&gt;         51 sy-vline, 52 'BORROWER NAME' COLOR 4 INTENSIFIED OFF,&lt;/P&gt;&lt;P&gt;         77 sy-vline, 78 'DATE OF BORROWER' COLOR 7 INTENSIFIED OFF,&lt;/P&gt;&lt;P&gt;        95 sy-vline, 96 'DATE OF RETURN' COLOR 1 INTENSIFIED OFF,&lt;/P&gt;&lt;P&gt;        120 sy-vline.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  WRITE:/10 sy-uline(111).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;END-OF-PAGE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;END-OF-SELECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  WRITE:/'Current Date:' COLOR 3 INTENSIFIED OFF,sy-datum.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Sep 2007 07:09:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/urgent-smartforms/m-p/2858953#M670373</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-24T07:09:59Z</dc:date>
    </item>
    <item>
      <title>Re: urgent smartforms!!!!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/urgent-smartforms/m-p/2858954#M670374</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;CALL FUNCTION '/1BCDWB/SF00000231'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;EXPORTING&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;ARCHIVE_INDEX =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;ARCHIVE_INDEX_TAB =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;ARCHIVE_PARAMETERS =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;CONTROL_PARAMETERS =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;MAIL_APPL_OBJ =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;MAIL_RECIPIENT =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;MAIL_SENDER =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;OUTPUT_OPTIONS =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;USER_SETTINGS = 'X'&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&amp;lt;b&amp;gt;TABLES&lt;/P&gt;&lt;P&gt;    ITAB = ITAB&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;IMPORTING&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;DOCUMENT_OUTPUT_INFO =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;JOB_OUTPUT_INFO =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;JOB_OUTPUT_OPTIONS =&lt;/P&gt;&lt;/LI&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;FORMATTING_ERROR = 1&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;INTERNAL_ERROR = 2&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;SEND_ERROR = 3&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;USER_CANCELED = 4&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;OTHERS = 5&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;create same structrue like itab in ddic and then &lt;/P&gt;&lt;P&gt;declare an itab wid that strucute&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Sep 2007 07:15:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/urgent-smartforms/m-p/2858954#M670374</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-24T07:15:26Z</dc:date>
    </item>
    <item>
      <title>Re: urgent smartforms!!!!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/urgent-smartforms/m-p/2858955#M670375</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi reshma&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;first u create 1 smartform goto smartform&lt;/P&gt;&lt;P&gt;and  after then u call &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;AT USER-COMMAND.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CASE sy-ucomm.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;WHEN 'SMARTFORM'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CLEAR FM_NAME .&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                 = 'ZSAMP_SSMART'&lt;/P&gt;&lt;P&gt;   IMPORTING&lt;/P&gt;&lt;P&gt;     FM_NAME                  =  FM_NAME&lt;/P&gt;&lt;P&gt;   EXCEPTIONS&lt;/P&gt;&lt;P&gt;     NO_FORM                  = 1&lt;/P&gt;&lt;P&gt;     NO_FUNCTION_MODULE       = 2&lt;/P&gt;&lt;P&gt;     OTHERS                   = 3   .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt;    MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;P&gt;            WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION FM_NAME&lt;/P&gt;&lt;P&gt;  TABLES&lt;/P&gt;&lt;P&gt;   INT_MKPF                   = INT_MKPF&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; EXCEPTIONS&lt;/P&gt;&lt;P&gt;   FORMATTING_ERROR           = 1&lt;/P&gt;&lt;P&gt;   INTERNAL_ERROR             = 2&lt;/P&gt;&lt;P&gt;   SEND_ERROR                 = 3&lt;/P&gt;&lt;P&gt;   USER_CANCELED              = 4&lt;/P&gt;&lt;P&gt;   OTHERS                     = 5  .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;IF SY-SUBRC &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;P&gt; MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;P&gt;         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so procees like this .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;use the this functiom nodule &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;it will get display in smartform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ok &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;kk.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 24 Sep 2007 07:16:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/urgent-smartforms/m-p/2858955#M670375</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-09-24T07:16:17Z</dc:date>
    </item>
  </channel>
</rss>

