<?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: SMARTFORMS EXPERTS HELP REQ!!! in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-experts-help-req/m-p/858698#M47613</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi jayanti,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks a lot guys. Really appreciate for taking your time off and being persistent in helping me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The error continues to occur. while debugging I observed that in the function module the records are there in 'accitab' How come it is not taking the records into accountdata? Is there any other way I can declare accountdata in the form interface.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried something like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;accountdata type standard table of zzaccountdata - It did not accept.)form interface)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think it is treating accountdata as a structure( hence one record)&lt;/P&gt;&lt;P&gt;***&lt;STRONG&gt;In the function module&lt;/STRONG&gt;***&lt;/P&gt;&lt;P&gt;tables&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;accountdata ( no records)  = accitab ( records are there in the internal table )  why?????&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As you had given the declaration part in smartform&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note: z_ty_accountdata is a table type so i have not used it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Form interface&lt;/P&gt;&lt;P&gt;Accountdata like zzaccountdata(structure) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Global definition&lt;/P&gt;&lt;P&gt;wa_accountdata type zzaccountdata (structure).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Latest update.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Santhosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 07 Jun 2005 14:37:08 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-06-07T14:37:08Z</dc:date>
    <item>
      <title>SMARTFORMS EXPERTS HELP REQ!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-experts-help-req/m-p/858688#M47603</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI FOLKS,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ANY SMARTFORM EXPERTS I WOULD APPRECIATE YOUR HELP GUYS!!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks a lot for taking your time off to help me in this regard. Both my probelms are not solved yet.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I will explain it to you in detail what i have done and what i am trying to achieve.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;the code in the abap print program goes like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select fbuda vavtyp aubel breite_s HOEHE_S from zzjhtfp INNER JOIN jhamot ON zzjhtfp&lt;SUB&gt;aubel = jhamot&lt;/SUB&gt;avm_nr INTO table BDATA WHERE zzjhtfp~kunnr = p_custid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="3" type="ul"&gt;&lt;P&gt;pulling data of fbuda and vavtyp to merge them****&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;if sy-subrc = 0.&lt;/P&gt;&lt;P&gt;loop at bdata into wa.&lt;/P&gt;&lt;P&gt;write:wa-fbuda to zdate ddmmyy.&lt;/P&gt;&lt;P&gt;write: zdate to zdate1 dd/mm/yy.&lt;/P&gt;&lt;P&gt;write: wa-aubel to zadnumber.&lt;/P&gt;&lt;P&gt;write:wa-vavtyp.&lt;/P&gt;&lt;P&gt;***&lt;STRONG&gt;MERGED THE DATA FROM THE TWO FIELDS&lt;/STRONG&gt;***&lt;/P&gt;&lt;P&gt;concatenate zdate1 wa-vavtyp into wa1-zdateproductcode separated by space.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="3" type="ul"&gt;&lt;P&gt;trying to insert into the field of the new internal table (accitab) -it has not data it has several fields with a different structure(z_ty-accountdata is its structure)&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;accitab-zdateproductcode = wa1-zdateproductcode.&lt;/P&gt;&lt;P&gt;accitab-zadnumber = wa1-aubel.&lt;/P&gt;&lt;P&gt;accitab-zadsize = wa1-zadsize.&lt;/P&gt;&lt;P&gt;if sy-subrc = 0.&lt;/P&gt;&lt;P&gt;append accitab.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;generated functional module related to smartform&lt;/P&gt;&lt;P&gt;note: the data from the internal table accitab is read into accountdata&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;now call the generated function module&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;call function fm_name&lt;/P&gt;&lt;P&gt;exporting&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;archive_index =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;archive_parameters =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;control_parameters =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;mail_appl_obj =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;mail_recipient =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;mail_sender =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;output_options =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;user_settings = 'X'&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;ZBALANCE = ZCURRENTTOTAL&lt;/P&gt;&lt;P&gt;ZOVER30 = ZOVER30TOTAL&lt;/P&gt;&lt;P&gt;ZOVER60 = ZOVER60TOTAL&lt;/P&gt;&lt;P&gt;ZOVER90 = ZOVER90TOTAL&lt;/P&gt;&lt;P&gt;ZTOTAL = ZTOTAL&lt;/P&gt;&lt;P&gt;zscan_code = scan_number&lt;/P&gt;&lt;P&gt;zpartner = bpartner&lt;/P&gt;&lt;P&gt;zbdate = bdate&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;bookings = bookings&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;importing document_output_info =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;job_output_info =&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;job_output_options =&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;tables&lt;/P&gt;&lt;P&gt;stribunecustomer = customer&lt;/P&gt;&lt;P&gt;accountdata = accitab&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;exceptions formatting_error = 1&lt;/P&gt;&lt;P&gt;internal_error = 2&lt;/P&gt;&lt;P&gt;send_error = 3&lt;/P&gt;&lt;P&gt;user_canceled = 4&lt;/P&gt;&lt;P&gt;others = 5.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;objective: This data which gets populated into the accountdata is to be populated into the main window- body of the form.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameter declaration given in smartforms;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;form interface - under tables&lt;/P&gt;&lt;P&gt;accountdata type z_ty_accountdata (this is table type with structure zzaccountdata)&lt;/P&gt;&lt;P&gt;global definitions&lt;/P&gt;&lt;P&gt;wa_accountdata type zzaccountdata&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the main window - under loop section I have given&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;accountdata into wa_accountdata&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;problem definition: In the form when I try to print the field values like zdateproductcode, zaubel only the first row of data in printing in the form BUT THERE AT 120 RECORDS.&lt;/P&gt;&lt;P&gt;but I run the abap print program in the debug mode IT IS SHOWING the internal table 'accountdata' does not have any records -the table 'accitab' has 120 RECORDS. &lt;/P&gt;&lt;P&gt;I am not able figure it out how else can i transfer the data TO ACCOUNTDATA.&lt;/P&gt;&lt;P&gt;My question is if accountdata has no data how can it read the SINGLE FIELD DATA into the form. I hope you understand here.&lt;/P&gt;&lt;P&gt;There is some missing peice that is not transporting the data from accitab into accountdata completely.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I know my explanation is quite big but i have working towards this from past two days, I NEED YOUR HELP. ONCE IT GETS SOLVED I WILL REWARD POINTS FOR ALL.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;santhosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Jun 2005 15:07:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-experts-help-req/m-p/858688#M47603</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-06-03T15:07:40Z</dc:date>
    </item>
    <item>
      <title>Re: SMARTFORMS EXPERTS HELP REQ!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-experts-help-req/m-p/858689#M47604</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Santosh,&lt;/P&gt;&lt;P&gt;   Based on information you have provided, it seems like the table definition needs to be checked. May be it is a structure and thats why only one record is printed.&lt;/P&gt;&lt;P&gt;(accountdata type z_ty_accountdata (this is table type with structure zzaccountdata.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   Another area could be your loop node / Data Tab. &lt;/P&gt;&lt;P&gt;   Hope this helps!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: SBX&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Jun 2005 17:40:44 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-experts-help-req/m-p/858689#M47604</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-06-03T17:40:44Z</dc:date>
    </item>
    <item>
      <title>Re: SMARTFORMS EXPERTS HELP REQ!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-experts-help-req/m-p/858690#M47605</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well, when the records are not tranferred from the prgram into form, the only reason could be that "accountdata" is not recognised as a table but just as a structure. I think whatever was there in your header of accitab is moved to this structure. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But since you have mentioned that accountdata is declared under Tables section this problem should generally not occur. I dont see any reason for its failure. Why dont you try by defining your accountdata table as "accountdata LIKE zzaccountdata" under the Tables section in your forms interface. Just give a shot. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;All the best.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Jun 2005 17:57:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-experts-help-req/m-p/858690#M47605</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-06-03T17:57:11Z</dc:date>
    </item>
    <item>
      <title>Re: SMARTFORMS EXPERTS HELP REQ!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-experts-help-req/m-p/858691#M47606</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks for your response vijay&lt;/P&gt;&lt;P&gt;You might be right,  accountdata has the table type (z_ty_accountdata) and has a structure zzaccountdata as the line type. The reason being there exists no table that matches to the accountdata because in accountdata I am pulling data from two to three different tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hence i defined the structure zzaccountdata that contains the components of various fields&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any otherway I could have done...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;santhosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 03 Jun 2005 18:37:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-experts-help-req/m-p/858691#M47606</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-06-03T18:37:34Z</dc:date>
    </item>
    <item>
      <title>Re: SMARTFORMS EXPERTS HELP REQ!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-experts-help-req/m-p/858692#M47607</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Santhosh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I am just giving a small example here which is similar to your requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*This is the report program.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;In this zzz_test is a user-defined struture which I created in SE11 which consists of three fields vbeln,posnr &amp;amp; vkorg.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*Internal table declaration&lt;/P&gt;&lt;P&gt;data itab type standard table of zzz_test.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select likp&lt;SUB&gt;vbeln  lips&lt;/SUB&gt;posnr likp~vkorg  from likp inner join lips&lt;/P&gt;&lt;P&gt;       on likp&lt;SUB&gt;vbeln = lips&lt;/SUB&gt;vbeln into table itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION '/1BCDWB/SF00000016'&lt;/P&gt;&lt;P&gt;  TABLES&lt;/P&gt;&lt;P&gt;    itab                       = itab&lt;/P&gt;&lt;P&gt; EXCEPTIONS&lt;/P&gt;&lt;P&gt;   FORMATTING_ERROR           = 1&lt;/P&gt;&lt;P&gt;   INTERNAL_ERROR             = 2&lt;/P&gt;&lt;P&gt;   SEND_ERROR                 = 3&lt;/P&gt;&lt;P&gt;   USER_CANCELED              = 4&lt;/P&gt;&lt;P&gt;   OTHERS                     = 5&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;In my smartform,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In Form Interface,tables declaration&lt;/P&gt;&lt;P&gt;itab &amp;lt;b&amp;gt;like&amp;lt;/b&amp;gt; zzz_test&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In Global definition,&lt;/P&gt;&lt;P&gt;in Global data&lt;/P&gt;&lt;P&gt;wa &amp;lt;b&amp;gt;type zzz_test&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then I created a loop in the main window.&lt;/P&gt;&lt;P&gt;loop itab into wa.&lt;/P&gt;&lt;P&gt;Then I created a text element.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is working fine .It's displaying all the records.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In your program,the following are the things to be noted.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. In your report program,if accitab has user defined struture z_ty_accountdata ,then in smartform&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;form interface - under tables&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;accountdata &amp;lt;b&amp;gt;like&amp;lt;/b&amp;gt; z_ty_accountdata &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;global definitions-under global data&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;wa_accountdata type &amp;lt;b&amp;gt;z_ty_accountdata&amp;lt;/b&amp;gt; &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;In the main window - under loop section &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;accountdata into wa_accountdata.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This time it should work.If not, get back to me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;J.Jayanthi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Jun 2005 06:15:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-experts-help-req/m-p/858692#M47607</guid>
      <dc:creator>jayanthi_jayaraman</dc:creator>
      <dc:date>2005-06-06T06:15:05Z</dc:date>
    </item>
    <item>
      <title>Re: SMARTFORMS EXPERTS HELP REQ!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-experts-help-req/m-p/858693#M47608</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Santhosh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Assuming that you have defined the table ACCOUNTDATA in the smartforms under the TABLES node in Form Interface, the data in the internal table of your main program will be transferred to your smartform without any trouble. There is nothing wrong in this part. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hence I can only suspect the following things:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. whether data is present in ACCITAB at the time smartform is called.&lt;/P&gt;&lt;P&gt;2. Do you have any REFRESH statement or any other conditions that delete the records in ACCOUNTDATA after the data is moved to the smartform.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You might have done this check already, but checking this can narrow down your problem and we can come to know whether the problem is in transfer of data into smartform or in sibsequent steps:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;   Put a breakpoint in your main program at the function module and check the contents of ACCITAB at this point.&lt;/P&gt;&lt;P&gt;   Press F5 twice (by this time it would have gone into you smartform function module) and check the contents of the Internal table defined in the smartform (ACCOUNTDATA). &lt;/P&gt;&lt;P&gt; If ACCITAB has entries and ACCOUNTDATA does not have, then we can conclude that the problem is in defining the interface for the data transfer of internal table (Hope you have defined your ACCOUNTDATA table only under TABLES tab of Form Interface and not under IMPORT tab). We can further look at the problem then.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Jun 2005 06:23:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-experts-help-req/m-p/858693#M47608</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-06-06T06:23:06Z</dc:date>
    </item>
    <item>
      <title>Re: SMARTFORMS EXPERTS HELP REQ!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-experts-help-req/m-p/858694#M47609</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks jayanti,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just want to explain my inital declaration in my abap program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;types: begin of structbdata,&lt;/P&gt;&lt;P&gt;        fbuda type  jhtfp-fbuda,&lt;/P&gt;&lt;P&gt;        vavtyp type jhtfp-vavtyp,&lt;/P&gt;&lt;P&gt;        aubel type jhtfp-aubel,&lt;/P&gt;&lt;P&gt;        breite_s type jhamot-breite_s,&lt;/P&gt;&lt;P&gt;         hoehe_s type jhamot-HOEHE_S,&lt;/P&gt;&lt;P&gt;   end of structbdata.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data bdata type standard table of structbdata.&lt;/P&gt;&lt;P&gt;data: wa type structbdata,&lt;/P&gt;&lt;P&gt;      accitab type standard table of zzaccountdata with header line,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  wa1 type zzaccountdata,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;     zdate(8) type c,&lt;/P&gt;&lt;P&gt;     zdate1(8) type c,&lt;/P&gt;&lt;P&gt;     zproductdate(12) type c,&lt;/P&gt;&lt;P&gt;     zadnumber(10) type c,&lt;/P&gt;&lt;P&gt;     zwidth(7) type c,&lt;/P&gt;&lt;P&gt;     zheight(7) type c,&lt;/P&gt;&lt;P&gt;     zadsize(16) type c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select fbuda vavtyp aubel breite_s HOEHE_S from zzjhtfp INNER JOIN jhamot ON zzjhtfp&lt;SUB&gt;aubel = jhamot&lt;/SUB&gt;avm_nr INTO table BDATA WHERE zzjhtfp~kunnr = p_custid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SO ON ..... REST IS THE SAME&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As per your statement&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data accitab type standard table of zzaccountdata. &lt;/P&gt;&lt;P&gt; throws an error saying that accitab is a table without header line. why is it so ???&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have to include  'with the header line'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;After your explanation it seems to me that the coding in the smartform side is ok.&lt;/P&gt;&lt;P&gt;Like your zzz_test I have declared the structure zzaccountdata in SE11.&lt;/P&gt;&lt;P&gt;and executed the form it throws the error&lt;/P&gt;&lt;P&gt;that the data fields declared in the text elements has no defined value.( same error which i got at the start)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Just take a look into the coding in the abap print program probably that has to do with some thing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also note: BDATA (strucutre is not same as zzaccountdata) is the internal table that has the data from the query. accitab is a different internal table with(strucutre zzaccountdata) because I have to pull the data from the tables,concatenate some fields data and then load the data into accitab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The suprise thing is upon concatenation  process,all the records are getting stored in accitab (even during the execution of the function module - I checked it in the debugg mode) but not to accountdata.&lt;/P&gt;&lt;P&gt;This is the update. Thanks for your help&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Santhosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Jun 2005 14:46:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-experts-help-req/m-p/858694#M47609</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-06-06T14:46:15Z</dc:date>
    </item>
    <item>
      <title>Re: SMARTFORMS EXPERTS HELP REQ!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-experts-help-req/m-p/858695#M47610</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi vijay,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I checked all that in the debug mode. in the function module i find the data in the accitab. but not into accountdata. also, I have made the declaration  under tables of form interface. Also no refresh statements.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks vijay.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;santhosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 06 Jun 2005 14:50:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-experts-help-req/m-p/858695#M47610</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-06-06T14:50:55Z</dc:date>
    </item>
    <item>
      <title>Re: SMARTFORMS EXPERTS HELP REQ!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-experts-help-req/m-p/858696#M47611</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;what to say then....going by your explanations I couldnt find anything wrong with your code and actions seems a little strange. But believing that SAP system cannot show strange behaviour by itself, lets try a few more options to test it:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Copy the generated funtion module for your smartform and hardcode in your print program and check the result.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. Or, introduce "program lines" node just before your loop statement and append a few records by yourself into the ACCOUNTDATA table and see whether the data is printing. This ensures that the ACCOUNTDATA is defined as table only and also the loop statement works fine to print multiple records ( As you have mentioned that it prints only one record even though 120 records are coming from your print program). You can also clear the header line of acctitab in your print program and check this result.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also, can you please once again tell me how you have defined your accitab in the print program &amp;amp; accountdata in the smartform. Just give the complete ABAP stmt of these 2 defintions.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;One more point..check how "stribunecustomer" in smartform gets the data from "customer" in your print program. that can also help u spot the problem.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Jun 2005 02:34:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-experts-help-req/m-p/858696#M47611</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-06-07T02:34:47Z</dc:date>
    </item>
    <item>
      <title>Re: SMARTFORMS EXPERTS HELP REQ!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-experts-help-req/m-p/858697#M47612</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Santhosh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It throws an error message b'coz of the following statement.In these statements you are using it as both workarea and internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;accitab-zdateproductcode = wa1-zdateproductcode.&lt;/P&gt;&lt;P&gt;accitab-zadnumber = wa1-aubel.&lt;/P&gt;&lt;P&gt;accitab-zadsize = wa1-zadsize.&lt;/P&gt;&lt;P&gt;if sy-subrc = 0.&lt;/P&gt;&lt;P&gt;append accitab.&lt;/P&gt;&lt;P&gt;....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you declared like this&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;data accitab type standard table of zzaccountdata.&amp;lt;/b&amp;gt; &lt;/P&gt;&lt;P&gt;Then accitab is a internal table without workarea.&lt;/P&gt;&lt;P&gt;So declare workarea explicitly as follows with that internal table:&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;data w_accitab type zzaccountdata.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then your statements should be&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;w_accitab-&amp;lt;/b&amp;gt;zdateproductcode = wa1-zdateproductcode.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;w_accitab&amp;lt;/b&amp;gt;-zadnumber = wa1-aubel.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;w_accitab&amp;lt;/b&amp;gt;-zadsize = wa1-zadsize.&lt;/P&gt;&lt;P&gt;if sy-subrc = 0.&lt;/P&gt;&lt;P&gt;append &amp;lt;b&amp;gt;w_accitab to accitab&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt;....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have you modified your smartform declarations as I mentioned in my previous reply?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check for the coding in report.&lt;/P&gt;&lt;P&gt;types: begin of structbdata,&lt;/P&gt;&lt;P&gt;fbuda type jhtfp-fbuda,&lt;/P&gt;&lt;P&gt;vavtyp type jhtfp-vavtyp,&lt;/P&gt;&lt;P&gt;aubel type jhtfp-aubel,&lt;/P&gt;&lt;P&gt;breite_s type jhamot-breite_s,&lt;/P&gt;&lt;P&gt;hoehe_s type jhamot-HOEHE_S,&lt;/P&gt;&lt;P&gt;end of structbdata.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;data bdata type standard table of structbdata.&lt;/P&gt;&lt;P&gt;data: wa type structbdata,&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;accitab type standard table of zzaccountdata ,&lt;/P&gt;&lt;P&gt;w_accitab type zzaccountdata,&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;wa1 type zzaccountdata,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;zdate(8) type c,&lt;/P&gt;&lt;P&gt;zdate1(8) type c,&lt;/P&gt;&lt;P&gt;zproductdate(12) type c,&lt;/P&gt;&lt;P&gt;zadnumber(10) type c,&lt;/P&gt;&lt;P&gt;zwidth(7) type c,&lt;/P&gt;&lt;P&gt;zheight(7) type c,&lt;/P&gt;&lt;P&gt;zadsize(16) type c.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select fbuda vavtyp aubel breite_s HOEHE_S from zzjhtfp INNER JOIN jhamot ON zzjhtfp&lt;SUB&gt;aubel = jhamot&lt;/SUB&gt;avm_nr INTO table BDATA WHERE zzjhtfp~kunnr = p_custid.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;UL&gt;&lt;UL&gt;&lt;LI level="3" type="ul"&gt;&lt;P&gt;pulling data of fbuda and vavtyp to merge them****&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;/UL&gt;&lt;P&gt;if sy-subrc = 0.&lt;/P&gt;&lt;P&gt;loop at bdata into wa.&lt;/P&gt;&lt;P&gt;write:wa-fbuda to zdate ddmmyy.&lt;/P&gt;&lt;P&gt;write: zdate to zdate1 dd/mm/yy.&lt;/P&gt;&lt;P&gt;write: wa-aubel to zadnumber.&lt;/P&gt;&lt;P&gt;write:wa-vavtyp.&lt;/P&gt;&lt;P&gt;***&lt;STRONG&gt;MERGED THE DATA FROM THE TWO FIELDS&lt;/STRONG&gt;***&lt;/P&gt;&lt;P&gt;concatenate zdate1 wa-vavtyp into wa1-zdateproductcode separated by space.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;w_accitab-zdateproductcode = wa1-zdateproductcode.&lt;/P&gt;&lt;P&gt;w_accitab-zadnumber = wa1-aubel.&lt;/P&gt;&lt;P&gt;w_accitab-zadsize = wa1-zadsize.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;if sy-subrc = 0.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;append w_accitab to accitab.&lt;/P&gt;&lt;P&gt;&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;*Check whether the records are in accitab&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;now call the generated function module&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;....rest of the code&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 03:48:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-experts-help-req/m-p/858697#M47612</guid>
      <dc:creator>jayanthi_jayaraman</dc:creator>
      <dc:date>2005-06-07T03:48:48Z</dc:date>
    </item>
    <item>
      <title>Re: SMARTFORMS EXPERTS HELP REQ!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-experts-help-req/m-p/858698#M47613</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi jayanti,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks a lot guys. Really appreciate for taking your time off and being persistent in helping me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The error continues to occur. while debugging I observed that in the function module the records are there in 'accitab' How come it is not taking the records into accountdata? Is there any other way I can declare accountdata in the form interface.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried something like this.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;accountdata type standard table of zzaccountdata - It did not accept.)form interface)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think it is treating accountdata as a structure( hence one record)&lt;/P&gt;&lt;P&gt;***&lt;STRONG&gt;In the function module&lt;/STRONG&gt;***&lt;/P&gt;&lt;P&gt;tables&lt;/P&gt;&lt;P&gt; &lt;/P&gt;&lt;P&gt;accountdata ( no records)  = accitab ( records are there in the internal table )  why?????&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;As you had given the declaration part in smartform&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note: z_ty_accountdata is a table type so i have not used it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Form interface&lt;/P&gt;&lt;P&gt;Accountdata like zzaccountdata(structure) &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Global definition&lt;/P&gt;&lt;P&gt;wa_accountdata type zzaccountdata (structure).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Latest update.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Santhosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Jun 2005 14:37:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-experts-help-req/m-p/858698#M47613</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-06-07T14:37:08Z</dc:date>
    </item>
    <item>
      <title>Re: SMARTFORMS EXPERTS HELP REQ!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-experts-help-req/m-p/858699#M47614</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks vijay,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i did check from  'stribunecustomer' and 'customer'&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;form interface &lt;/P&gt;&lt;P&gt;stibunecustomer type z_ty_stribunecustomer&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;here z_ty_stribunecustomer is a table type that has a line type of a database table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is not the case with accountdata that cannot have the line type of a database table because there is no one.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And how to appmed the records using program lines node is it like writing the query and appending the data.. what part of the code should I write here? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for continuing help in this regard.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Santhosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 07 Jun 2005 14:45:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-experts-help-req/m-p/858699#M47614</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-06-07T14:45:54Z</dc:date>
    </item>
    <item>
      <title>Re: SMARTFORMS EXPERTS HELP REQ!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-experts-help-req/m-p/858700#M47615</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Santhosh,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Right click on the first window of your page and choose program lines.&lt;/P&gt;&lt;P&gt;enter your table name and work area name in the import and export parameters.&lt;/P&gt;&lt;P&gt;write a piece of code, may be DO stmt to iterate for a couple of times and append the records using the work area. &lt;/P&gt;&lt;P&gt; DO 2 times.&lt;/P&gt;&lt;P&gt;  append &amp;lt;wa&amp;gt; to &amp;lt;accountdata&amp;gt;.&lt;/P&gt;&lt;P&gt; ENDDO.&lt;/P&gt;&lt;P&gt; break &amp;lt;yourid&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and check the table contents.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the data is getting populated here, then it infers that your table defintion is also correct and the most probable error might be something like you might have unknowingly unchecked the 'Internal table' option in your loop statement under 'data' tab. Just a thought!!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Jun 2005 06:28:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-experts-help-req/m-p/858700#M47615</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-06-08T06:28:51Z</dc:date>
    </item>
    <item>
      <title>Re: SMARTFORMS EXPERTS HELP REQ!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-experts-help-req/m-p/858701#M47616</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hurray!!! solved the problem. The problem was declaration of the loop in the wrong place.&lt;/P&gt;&lt;P&gt;everything else was fine. I had declared it under the main area (sub node)  of the  table structure of the main window instead it has to be declared  in the loop section of the table structure and not in the sub node.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks a lot jayanti for taking your time off and helping me out.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I have awarded points for all.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Santhosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Jun 2005 20:25:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-experts-help-req/m-p/858701#M47616</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-06-08T20:25:29Z</dc:date>
    </item>
    <item>
      <title>Re: SMARTFORMS EXPERTS HELP REQ!!!</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-experts-help-req/m-p/858702#M47617</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;thanks vijay. the problem got solved. I have awarded the points to you also. I really appreciate for taking your time off and helping me out.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Santhosh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 08 Jun 2005 20:30:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/smartforms-experts-help-req/m-p/858702#M47617</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-06-08T20:30:12Z</dc:date>
    </item>
  </channel>
</rss>

