<?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: About smartforms driver program in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-smartforms-driver-program/m-p/2200353#M470056</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;fun module&lt;/P&gt;&lt;P&gt;SAPSCRIPT_SELECT_PROGRAM gives the driver program for the Script.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you have to use TNAPR table or NACE tcode to know the Smartform, Driver program and output type.&lt;/P&gt;&lt;P&gt;Smartform-              Program&lt;/P&gt;&lt;P&gt;LB_BIL_INVOICE  -- RLB_INVOICE   -for Invoice&lt;/P&gt;&lt;P&gt;LE_SHP_DELNOTE - RLE_DELNOTE -for delivery note&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if useful&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 04 May 2007 12:50:25 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-05-04T12:50:25Z</dc:date>
    <item>
      <title>About smartforms driver program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-smartforms-driver-program/m-p/2200352#M470055</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello Experts,&lt;/P&gt;&lt;P&gt;      Is there any function module to fetch data from sd module to get data in SMARTFORMS ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;mail me solution on "talele.rahul@gmail.com"&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanx in advance,&lt;/P&gt;&lt;P&gt;Rahul Talele&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 May 2007 12:41:38 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-smartforms-driver-program/m-p/2200352#M470055</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-04T12:41:38Z</dc:date>
    </item>
    <item>
      <title>Re: About smartforms driver program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-smartforms-driver-program/m-p/2200353#M470056</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi&lt;/P&gt;&lt;P&gt;fun module&lt;/P&gt;&lt;P&gt;SAPSCRIPT_SELECT_PROGRAM gives the driver program for the Script.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you have to use TNAPR table or NACE tcode to know the Smartform, Driver program and output type.&lt;/P&gt;&lt;P&gt;Smartform-              Program&lt;/P&gt;&lt;P&gt;LB_BIL_INVOICE  -- RLB_INVOICE   -for Invoice&lt;/P&gt;&lt;P&gt;LE_SHP_DELNOTE - RLE_DELNOTE -for delivery note&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if useful&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Anji&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 May 2007 12:50:25 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-smartforms-driver-program/m-p/2200353#M470056</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-04T12:50:25Z</dc:date>
    </item>
    <item>
      <title>Re: About smartforms driver program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-smartforms-driver-program/m-p/2200354#M470057</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rahul,&lt;/P&gt;&lt;P&gt;               Call function 'SSF_FUNCTION_MODULE_NAME' that will give u smartform function name by passing smartform name. then call that FM to transfer data from driver program to smartform.&lt;/P&gt;&lt;P&gt;              Refer this code : &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                 = P_FORM&lt;/P&gt;&lt;P&gt;   IMPORTING&lt;/P&gt;&lt;P&gt;     FM_NAME                  = P_FUNCTION&lt;/P&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;&lt;/P&gt;&lt;P&gt;  CALL FUNCTION P_FUNCTION&lt;/P&gt;&lt;P&gt;    TABLES&lt;/P&gt;&lt;P&gt;      D_VBRK                     = IT_VBRK&lt;/P&gt;&lt;P&gt;      D_VBRP                     = IT_VBRP&lt;/P&gt;&lt;P&gt;      D_LIKP                     = IT_LIKP&lt;/P&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;Reward points if helpful.&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Hemant&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 May 2007 12:59:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-smartforms-driver-program/m-p/2200354#M470057</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-04T12:59:56Z</dc:date>
    </item>
    <item>
      <title>Re: About smartforms driver program</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/about-smartforms-driver-program/m-p/2200355#M470058</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rahul,&lt;/P&gt;&lt;P&gt;         u can also get the driver program name throw table : TNAPR, TTXFT&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if useful..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Nilesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 May 2007 13:00:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/about-smartforms-driver-program/m-p/2200355#M470058</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-05-04T13:00:00Z</dc:date>
    </item>
  </channel>
</rss>

