<?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 Debugging smartforms in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/debugging-smartforms/m-p/876073#M50713</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;Tell me how to debug smartforms.&lt;/P&gt;&lt;P&gt;Also how to put counter for displlayed items in the form.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;eg.&lt;/P&gt;&lt;P&gt;1. material1&lt;/P&gt;&lt;P&gt;2. material2&lt;/P&gt;&lt;P&gt;3. material3&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Dilip&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 07 Jun 2005 06:02:37 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-06-07T06:02:37Z</dc:date>
    <item>
      <title>Debugging smartforms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/debugging-smartforms/m-p/876073#M50713</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;Tell me how to debug smartforms.&lt;/P&gt;&lt;P&gt;Also how to put counter for displlayed items in the form.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;eg.&lt;/P&gt;&lt;P&gt;1. material1&lt;/P&gt;&lt;P&gt;2. material2&lt;/P&gt;&lt;P&gt;3. material3&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Dilip&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Jun 2005 06:02:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/debugging-smartforms/m-p/876073#M50713</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-06-07T06:02:37Z</dc:date>
    </item>
    <item>
      <title>Re: Debugging smartforms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/debugging-smartforms/m-p/876074#M50714</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Dilip,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One way to debug smartform is to debug the Function Module of that smartforms. If you want to debug particular smartform node that the solution would be, insert a "Program Line" just above the node you want to debug and this program line write a normal abap breakpoint. So whenever you call the smartforms, it will stop at this breakpoint and you can debug onwards.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you are using loop,then inside that create program line.In that, increment a counter like the normal abap program.Then display that counter.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;To be more specific,&lt;/P&gt;&lt;P&gt;declare a variable in Global Definitions-Global data as below&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;cnt type i 0(default)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then inside the loop,&lt;/P&gt;&lt;P&gt;in text element , drag the variable which is under Global data in field list .&lt;/P&gt;&lt;P&gt;After that create a program line,give cnt as input and output parameter.&lt;/P&gt;&lt;P&gt;In logic,write &lt;/P&gt;&lt;P&gt;cnt = cnt + 1.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then you will get the desired output.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If your problem is solved,reward points and close the thread.If not,get back.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Jayanthi Jayaraman&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Jun 2005 06:05:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/debugging-smartforms/m-p/876074#M50714</guid>
      <dc:creator>jayanthi_jayaraman</dc:creator>
      <dc:date>2005-06-07T06:05:40Z</dc:date>
    </item>
    <item>
      <title>Re: Debugging smartforms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/debugging-smartforms/m-p/876075#M50715</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;Smartforms has the facility to provide Numbering in the Table.&lt;/P&gt;&lt;P&gt;First in the global definition define a field "Count" of type "I". Then in the calculation Tab of the Table select the operation Number, in the target field enter "Count", and select time as Before Loop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Finally the field "Count" can be used within the Main area of table.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Jun 2005 06:17:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/debugging-smartforms/m-p/876075#M50715</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-06-07T06:17:33Z</dc:date>
    </item>
  </channel>
</rss>

