<?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: smartform - problrm in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartform-problrm/m-p/2335890#M514303</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi dhwani &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;U have called ur smartform through report now it was showing some error is it right???&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then say me what are the function modules u have declared  to call smartforms&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this is the sample code to call smartforms plz check it out &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;REPORT ZSMARTFORM.  

* Calling SMARTFORMS from your ABAP program. 
* Collecting all the table data in your program, and pass once to SMARTFORMS 
* SMARTFORMS 
* Declare your table type in :- 
* Global Settings -&amp;gt; Form Interface 
* Global Definintions -&amp;gt; Global Data 
* Main Window -&amp;gt; Table -&amp;gt; DATA 
* 
* Written by :  SAP Hints and Tips on Configuration and ABAP/4 Programming 
*                     &amp;lt;a href="http://sapr3.tripod.com" TARGET="test_blank"&amp;gt;http://sapr3.tripod.com&amp;lt;/a&amp;gt; 
*  

TABLES: MKPF.  

DATA: FM_NAME TYPE RS38L_FNAM.  

DATA: BEGIN OF INT_MKPF OCCURS 0. 
        INCLUDE STRUCTURE MKPF. 
DATA: END OF INT_MKPF.  

SELECT-OPTIONS S_MBLNR FOR MKPF-MBLNR MEMORY ID 001.  

SELECT * FROM MKPF WHERE MBLNR IN S_MBLNR. 
   MOVE-CORRESPONDING MKPF TO INT_MKPF. 
   APPEND INT_MKPF.  

ENDSELECT.  

* At the end of your program. 
* Passing data to SMARTFORMS  

call function 'SSF_FUNCTION_MODULE_NAME' 
  exporting 
    formname                 = 'ZSMARTFORM' 
*   VARIANT                  = ' ' 
*   DIRECT_CALL              = ' ' 
  IMPORTING 
    FM_NAME                  = FM_NAME 
  EXCEPTIONS 
    NO_FORM                  = 1 
    NO_FUNCTION_MODULE       = 2 
    OTHERS                   = 3.  

if sy-subrc &amp;lt;&amp;gt; 0. 
   WRITE: / 'ERROR 1'. 
* MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO 
*         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4. 
endif.  

call function FM_NAME 
* EXPORTING 
*   ARCHIVE_INDEX              = 
*   ARCHIVE_INDEX_TAB          = 
*   ARCHIVE_PARAMETERS         = 
*   CONTROL_PARAMETERS         = 
*   MAIL_APPL_OBJ              = 
*   MAIL_RECIPIENT             = 
*   MAIL_SENDER                = 
*   OUTPUT_OPTIONS             = 
*   USER_SETTINGS              = 'X' 
* IMPORTING 
*   DOCUMENT_OUTPUT_INFO       = 
*   JOB_OUTPUT_INFO            = 
*   JOB_OUTPUT_OPTIONS         = 
  TABLES 
    GS_MKPF                    = INT_MKPF 
  EXCEPTIONS 
    FORMATTING_ERROR           = 1 
    INTERNAL_ERROR             = 2 
    SEND_ERROR                 = 3 
    USER_CANCELED              = 4 
    OTHERS                     = 5.  

if sy-subrc &amp;lt;&amp;gt; 0. 
   MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO 
         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4. 
endif. 
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if helpfull&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Pavan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 05 Jun 2007 11:47:48 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-06-05T11:47:48Z</dc:date>
    <item>
      <title>smartform - problrm</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartform-problrm/m-p/2335883#M514296</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have created smartform for Delivery Challan....&lt;/P&gt;&lt;P&gt;Now i want that user can give range of Delivery number .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;means i have 4 windows in smartforms  and i gave ranges of delivery in which 3 delivery challans are there?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;so is that possible that first for first delivery it prints all window then for second delivery and then for third.....&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;So is that possible in samrtform to give loop?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jun 2007 09:13:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartform-problrm/m-p/2335883#M514296</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-05T09:13:10Z</dc:date>
    </item>
    <item>
      <title>Re: smartform - problrm</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartform-problrm/m-p/2335884#M514297</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;yes, i think you can have it in loop. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;since you have a &amp;lt;b&amp;gt;function module&amp;lt;/b&amp;gt; generated when you activate the smart form, you can loop this function in a program and get your work done.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pls. reward if useful...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jun 2007 09:19:53 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartform-problrm/m-p/2335884#M514297</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-05T09:19:53Z</dc:date>
    </item>
    <item>
      <title>Re: smartform - problrm</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartform-problrm/m-p/2335885#M514298</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Dhwani,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is possible only when you have control of thecomplete print program.&lt;/P&gt;&lt;P&gt;Using function modules SSFCOMP_OPEN &amp;amp; SSFCOMP_CLOSE, you can print or display any number of samrtforms continuously after SSFCOMP_OPEN &amp;amp; before SSFCOMP_CLOSE. You can also have a control to send all pages to a single spool request (check print control parameters in SSF_CREATE_COMPOSER_INPUT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But here, I guess the main program is standard one (where you can select multiple deliveries using checkbox) &amp;amp; you might have copied only the print program &amp;amp; made modifications. So, as for each delivery the print preogram is called separately, this may not work. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If this is not your case &amp;amp; if you have your own (Z) transaction for this, its always possible.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jun 2007 09:23:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartform-problrm/m-p/2335885#M514298</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-05T09:23:02Z</dc:date>
    </item>
    <item>
      <title>Re: smartform - problrm</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartform-problrm/m-p/2335886#M514299</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for ur help.&lt;/P&gt;&lt;P&gt;Ya i have created my Zprogram.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;So i can do that but can u please explain me in detail?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Should i have to use loop?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for ur help.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jun 2007 09:26:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartform-problrm/m-p/2335886#M514299</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-05T09:26:57Z</dc:date>
    </item>
    <item>
      <title>Re: smartform - problrm</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartform-problrm/m-p/2335887#M514300</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;CALL FUNCTION 'SSFCOMP_OPEN'&lt;/P&gt;&lt;P&gt;        EXPORTING&lt;/P&gt;&lt;P&gt;          INPUT  = input&lt;/P&gt;&lt;P&gt;        IMPORTING&lt;/P&gt;&lt;P&gt;          RESULT = RESULT&lt;/P&gt;&lt;P&gt;        EXCEPTIONS&lt;/P&gt;&lt;P&gt;          ERROR  = 1&lt;/P&gt;&lt;P&gt;          OTHERS = 2.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*************************************************************************&lt;/P&gt;&lt;P&gt;*THIS FM GIVES A POPUP FOR PRINT PARAMETERS&lt;/P&gt;&lt;P&gt;*************************************************************************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        ls_control_param-no_open  = 'X'.&lt;/P&gt;&lt;P&gt;        ls_control_param-no_close = 'X'.&lt;/P&gt;&lt;P&gt;************************************************************************&lt;/P&gt;&lt;P&gt;*pass these two parameters &amp;amp; other parameters got from &lt;/P&gt;&lt;P&gt;'SSFCOMP_OPEN'  to the FM (smartform) &lt;/P&gt;&lt;P&gt;************************************************************************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*************************************************************************&lt;/P&gt;&lt;P&gt;*NOW WITHIN LOOP PERFORM YOUR PRINT OPERATIONS HERE&lt;/P&gt;&lt;P&gt;*FOR EACH DELIVERIES&lt;/P&gt;&lt;P&gt;*************************************************************************&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;        CALL FUNCTION 'SSFCOMP_CLOSE'&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;          RESULT        =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;          EXCEPTIONS&lt;/P&gt;&lt;P&gt;            ERROR         = 1&lt;/P&gt;&lt;P&gt;            OTHERS        = 2&lt;/P&gt;&lt;P&gt;                  .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jun 2007 09:43:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartform-problrm/m-p/2335887#M514300</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-05T09:43:54Z</dc:date>
    </item>
    <item>
      <title>Re: smartform - problrm</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartform-problrm/m-p/2335888#M514301</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks a lot &lt;/P&gt;&lt;P&gt;but i cant understand what to write and where....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jun 2007 11:39:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartform-problrm/m-p/2335888#M514301</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-05T11:39:26Z</dc:date>
    </item>
    <item>
      <title>Re: smartform - problrm</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartform-problrm/m-p/2335889#M514302</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;and when i write these two functions its giving error that previous request not finished.....&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jun 2007 11:41:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartform-problrm/m-p/2335889#M514302</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-05T11:41:05Z</dc:date>
    </item>
    <item>
      <title>Re: smartform - problrm</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartform-problrm/m-p/2335890#M514303</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi dhwani &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;U have called ur smartform through report now it was showing some error is it right???&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then say me what are the function modules u have declared  to call smartforms&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;this is the sample code to call smartforms plz check it out &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;REPORT ZSMARTFORM.  

* Calling SMARTFORMS from your ABAP program. 
* Collecting all the table data in your program, and pass once to SMARTFORMS 
* SMARTFORMS 
* Declare your table type in :- 
* Global Settings -&amp;gt; Form Interface 
* Global Definintions -&amp;gt; Global Data 
* Main Window -&amp;gt; Table -&amp;gt; DATA 
* 
* Written by :  SAP Hints and Tips on Configuration and ABAP/4 Programming 
*                     &amp;lt;a href="http://sapr3.tripod.com" TARGET="test_blank"&amp;gt;http://sapr3.tripod.com&amp;lt;/a&amp;gt; 
*  

TABLES: MKPF.  

DATA: FM_NAME TYPE RS38L_FNAM.  

DATA: BEGIN OF INT_MKPF OCCURS 0. 
        INCLUDE STRUCTURE MKPF. 
DATA: END OF INT_MKPF.  

SELECT-OPTIONS S_MBLNR FOR MKPF-MBLNR MEMORY ID 001.  

SELECT * FROM MKPF WHERE MBLNR IN S_MBLNR. 
   MOVE-CORRESPONDING MKPF TO INT_MKPF. 
   APPEND INT_MKPF.  

ENDSELECT.  

* At the end of your program. 
* Passing data to SMARTFORMS  

call function 'SSF_FUNCTION_MODULE_NAME' 
  exporting 
    formname                 = 'ZSMARTFORM' 
*   VARIANT                  = ' ' 
*   DIRECT_CALL              = ' ' 
  IMPORTING 
    FM_NAME                  = FM_NAME 
  EXCEPTIONS 
    NO_FORM                  = 1 
    NO_FUNCTION_MODULE       = 2 
    OTHERS                   = 3.  

if sy-subrc &amp;lt;&amp;gt; 0. 
   WRITE: / 'ERROR 1'. 
* MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO 
*         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4. 
endif.  

call function FM_NAME 
* EXPORTING 
*   ARCHIVE_INDEX              = 
*   ARCHIVE_INDEX_TAB          = 
*   ARCHIVE_PARAMETERS         = 
*   CONTROL_PARAMETERS         = 
*   MAIL_APPL_OBJ              = 
*   MAIL_RECIPIENT             = 
*   MAIL_SENDER                = 
*   OUTPUT_OPTIONS             = 
*   USER_SETTINGS              = 'X' 
* IMPORTING 
*   DOCUMENT_OUTPUT_INFO       = 
*   JOB_OUTPUT_INFO            = 
*   JOB_OUTPUT_OPTIONS         = 
  TABLES 
    GS_MKPF                    = INT_MKPF 
  EXCEPTIONS 
    FORMATTING_ERROR           = 1 
    INTERNAL_ERROR             = 2 
    SEND_ERROR                 = 3 
    USER_CANCELED              = 4 
    OTHERS                     = 5.  

if sy-subrc &amp;lt;&amp;gt; 0. 
   MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO 
         WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4. 
endif. 
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if helpfull&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Pavan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jun 2007 11:47:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartform-problrm/m-p/2335890#M514303</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-05T11:47:48Z</dc:date>
    </item>
    <item>
      <title>Re: smartform - problrm</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartform-problrm/m-p/2335891#M514304</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks but my question is different i want loop on smartform..&lt;/P&gt;&lt;P&gt;Is that possible and how?&lt;/P&gt;&lt;P&gt;Just see my first question&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jun 2007 12:10:59 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartform-problrm/m-p/2335891#M514304</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-05T12:10:59Z</dc:date>
    </item>
    <item>
      <title>Re: smartform - problrm</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartform-problrm/m-p/2335892#M514305</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;Ok if so the problem then try to put loop in the smartform itself. In the coding part output options u can see the option by right click on the text window  or coding part from where u have to put loop then goto &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Create&lt;DEL&gt;&amp;gt; Flow logic&lt;/DEL&gt;&amp;gt; Loop&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if helpfull&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Regards&lt;/P&gt;&lt;P&gt;Pavan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jun 2007 12:16:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartform-problrm/m-p/2335892#M514305</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-05T12:16:52Z</dc:date>
    </item>
    <item>
      <title>Re: smartform - problrm</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartform-problrm/m-p/2335893#M514306</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;No its not like that&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Actully i am creating smart form for delivery challan and while running i want to give range of delivery number and according to that output should come.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;means first in page 1 first delivery challan then when it completes next page should have second delivery challan data and moreover i am using four windows in one page in smartforms so for first delivery all four windows should print than for second and than so on......&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jun 2007 12:24:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartform-problrm/m-p/2335893#M514306</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-05T12:24:25Z</dc:date>
    </item>
    <item>
      <title>Re: smartform - problrm</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartform-problrm/m-p/2335894#M514307</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi dhwani&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then its better to call this smartform in a report and then use select options there u can get it &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Pavan&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 05 Jun 2007 12:29:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartform-problrm/m-p/2335894#M514307</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-06-05T12:29:19Z</dc:date>
    </item>
  </channel>
</rss>

