<?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: Regarding Smartform Function module in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-smartform-function-module/m-p/4762847#M1116682</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;To get the OTF data you need to set the GETOTF parameter in the Control Parameters of the Smartforms.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
    DATA: LS_CONTROL  TYPE SSFCTRLOP.  " Controlling info

    LS_CONTROL-GETOTF    = 'X'.

    CALL FUNCTION WF_FM
      EXPORTING
        CONTROL_PARAMETERS         = LS_CONTROL
        ....
     IMPORTING
        JOB_OUTPUT_INFO            = WF_OUTDATA

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I guess, when we set the GETOTF flag, it will not generate the output and only puts the data JOB_OUTPUT_INFO-OTFDATA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Naimesh Patel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 14 Nov 2008 14:57:10 GMT</pubDate>
    <dc:creator>naimesh_patel</dc:creator>
    <dc:date>2008-11-14T14:57:10Z</dc:date>
    <item>
      <title>Regarding Smartform Function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-smartform-function-module/m-p/4762845#M1116680</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;When i am executing the smartform function module via print program, Smart form output is displaying properly but it is not showing any OTF data in the importing parameter  JOB_OUTPUT_INFO . (JOB_OUTPUT_INFO-OTFDATA). Why it is happening? Could you please help me in this regard?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Nov 2008 14:52:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-smartform-function-module/m-p/4762845#M1116680</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-14T14:52:37Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Smartform Function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-smartform-function-module/m-p/4762846#M1116681</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;In your parameters, have-you set getotf on in control_parameters ?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Look at [SAP Smart Forms (BC-SRV-SCR)|http://help.sap.com/printdocu/core/Print46c/en/data/pdf/BCSRVSCRSF/BCSRVSCRSF.pdf]&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Nov 2008 14:54:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-smartform-function-module/m-p/4762846#M1116681</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2008-11-14T14:54:58Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Smartform Function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-smartform-function-module/m-p/4762847#M1116682</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;To get the OTF data you need to set the GETOTF parameter in the Control Parameters of the Smartforms.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
    DATA: LS_CONTROL  TYPE SSFCTRLOP.  " Controlling info

    LS_CONTROL-GETOTF    = 'X'.

    CALL FUNCTION WF_FM
      EXPORTING
        CONTROL_PARAMETERS         = LS_CONTROL
        ....
     IMPORTING
        JOB_OUTPUT_INFO            = WF_OUTDATA

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I guess, when we set the GETOTF flag, it will not generate the output and only puts the data JOB_OUTPUT_INFO-OTFDATA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Naimesh Patel&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Nov 2008 14:57:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-smartform-function-module/m-p/4762847#M1116682</guid>
      <dc:creator>naimesh_patel</dc:creator>
      <dc:date>2008-11-14T14:57:10Z</dc:date>
    </item>
    <item>
      <title>Re: Regarding Smartform Function module</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-smartform-function-module/m-p/4762848#M1116683</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Naimesh/Raymond,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank You very much..it is working fine now...since morning i am struggling...And also i have implemented OSS note...but no use.....Thanks alot..&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 14 Nov 2008 15:04:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/regarding-smartform-function-module/m-p/4762848#M1116683</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-11-14T15:04:17Z</dc:date>
    </item>
  </channel>
</rss>

