<?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 Routines in smartform driver program.... in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/routines-in-smartform-driver-program/m-p/1509117#M234930</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I was going through a custom smartform print program.&lt;/P&gt;&lt;P&gt;I saw following main routines (performs)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) Perform smartform processing - Here we fetch the data and process the data.&lt;/P&gt;&lt;P&gt;2) Perform call_smart_form_fuuntion- Here we use SSF funtion module and stuff&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But I saw two more routines. But I don't know what is the use of this routines in the driver program. Can someone please throw some light on this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3) Perform Protocol_update - ?&lt;/P&gt;&lt;P&gt;4) Perform add_smfrm_prot - ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Fri, 18 Aug 2006 16:25:00 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-08-18T16:25:00Z</dc:date>
    <item>
      <title>Routines in smartform driver program....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/routines-in-smartform-driver-program/m-p/1509117#M234930</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I was going through a custom smartform print program.&lt;/P&gt;&lt;P&gt;I saw following main routines (performs)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) Perform smartform processing - Here we fetch the data and process the data.&lt;/P&gt;&lt;P&gt;2) Perform call_smart_form_fuuntion- Here we use SSF funtion module and stuff&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But I saw two more routines. But I don't know what is the use of this routines in the driver program. Can someone please throw some light on this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3) Perform Protocol_update - ?&lt;/P&gt;&lt;P&gt;4) Perform add_smfrm_prot - ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Aug 2006 16:25:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/routines-in-smartform-driver-program/m-p/1509117#M234930</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-18T16:25:00Z</dc:date>
    </item>
    <item>
      <title>Re: Routines in smartform driver program....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/routines-in-smartform-driver-program/m-p/1509118#M234931</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1) protocol_update would actually update the message log that we usually see on the message control screen in any transaction(Messages that are encountered in the flow of the driver program).&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Aug 2006 16:28:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/routines-in-smartform-driver-program/m-p/1509118#M234931</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-18T16:28:05Z</dc:date>
    </item>
    <item>
      <title>Re: Routines in smartform driver program....</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/routines-in-smartform-driver-program/m-p/1509119#M234932</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;And what does the other routine does. I am prviding th code of that routine as follows:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM ADD_SMFRM_PROT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  DATA: LT_ERRORTAB             TYPE TSFERROR.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;DATA: LF_MSGNR                TYPE SY-MSGNO.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  FIELD-SYMBOLS: &amp;lt;FS_ERRORTAB&amp;gt;  TYPE LINE OF TSFERROR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;get smart form protocoll&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  CALL FUNCTION 'SSF_READ_ERRORS'&lt;/P&gt;&lt;P&gt;       IMPORTING&lt;/P&gt;&lt;P&gt;            ERRORTAB = LT_ERRORTAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;add smartform protocoll to nast protocoll&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;  LOOP AT LT_ERRORTAB ASSIGNING &amp;lt;FS_ERRORTAB&amp;gt;.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  CLEAR LF_MSGNR.&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;  LF_MSGNR = &amp;lt;FS_ERRORTAB&amp;gt;-ERRNUMBER.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;    CALL FUNCTION 'NAST_PROTOCOL_UPDATE'&lt;/P&gt;&lt;P&gt;         EXPORTING&lt;/P&gt;&lt;P&gt;              MSG_ARBGB = &amp;lt;FS_ERRORTAB&amp;gt;-MSGID&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;            MSG_NR    = LF_MSGNR&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;              MSG_NR    = &amp;lt;FS_ERRORTAB&amp;gt;-MSGNO&lt;/P&gt;&lt;P&gt;              MSG_TY    = &amp;lt;FS_ERRORTAB&amp;gt;-MSGTY&lt;/P&gt;&lt;P&gt;              MSG_V1    = &amp;lt;FS_ERRORTAB&amp;gt;-MSGV1&lt;/P&gt;&lt;P&gt;              MSG_V2    = &amp;lt;FS_ERRORTAB&amp;gt;-MSGV2&lt;/P&gt;&lt;P&gt;              MSG_V3    = &amp;lt;FS_ERRORTAB&amp;gt;-MSGV3&lt;/P&gt;&lt;P&gt;              MSG_V4    = &amp;lt;FS_ERRORTAB&amp;gt;-MSGV4&lt;/P&gt;&lt;P&gt;         EXCEPTIONS&lt;/P&gt;&lt;P&gt;              OTHERS    = 1.&lt;/P&gt;&lt;P&gt;  ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.                               " ADD_SMFRM_PROT&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 18 Aug 2006 16:33:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/routines-in-smartform-driver-program/m-p/1509119#M234932</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-08-18T16:33:42Z</dc:date>
    </item>
  </channel>
</rss>

