<?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: Problem in Smart Forms in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-smart-forms/m-p/1213192#M134088</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; As you explain about error, I think you access the table with many lines. And so its gives this error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; So you check in your FM about same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Regards,&lt;/P&gt;&lt;P&gt; Priyank&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 17 Apr 2006 10:41:41 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-04-17T10:41:41Z</dc:date>
    <item>
      <title>Problem in Smart Forms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-smart-forms/m-p/1213179#M134075</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;&lt;/P&gt;&lt;P&gt;The issue is as follows:&lt;/P&gt;&lt;P&gt;We have a custom designed Smart form. Whenever I execute that form generated FM, it gets executed and shows the print preview. But once if I use this FM in any other custom FM as shown below, it gives error message and gets terminated. The error text I get is An SQL error occurred while accessing a table.  When I execute it via a Break Point, it gets terminated just at the call of the FM /1BCDWB/SF00000357. I have included the code for reference, below. Pls give me your valuable ideas.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;data: l_pdf_xstring  type xstring,
      lt_lines       type table of tline,
      ls_line        type tline,
      l_pdf_len      type i.

data: output_options      type ssfcompop,
      control_parameters  type ssfctrlop,
      output_data         type ssfcrescl,
      devtype             type rspoptype.

data: lt_sys type table of ZHEADER1.

control_parameters-langu = sy-langu.
control_parameters-no_dialog = 'X'.
control_parameters-getotf    = 'X'.

select VBELN
       AUART
       VKORG
       VTWEG
       SPART from vbak into table lt_sys.

call function 'SSF_GET_DEVICE_TYPE'
  EXPORTING
    i_language             = sy-langu
  IMPORTING
    e_devtype              = devtype
  EXCEPTIONS
    no_language            = 1
    language_not_installed = 2
    no_devtype_found       = 3
    system_error           = 4
    others                 = 5.

* set device type in output options
output_options-tdprinter = devtype.

call function '/1BCDWB/SF00000357'
  EXPORTING
    user_settings      = space
    control_parameters = control_parameters
    output_options     = output_options
  IMPORTING
    job_output_info    = output_data
  TABLES
    zsystems           = lt_sys
  EXCEPTIONS
    formatting_error   = 1
    internal_error     = 2
    send_error         = 3
    user_canceled      = 4
    others             = 5.


call function 'CONVERT_OTF'
  EXPORTING
    format                = 'PDF'
  IMPORTING
    bin_filesize          = l_pdf_len
    bin_file              = l_pdf_xstring
  TABLES
    OTF                   = OUTPUT_DATA-OTFDATA
    LINES                 = LT_LINES
  EXCEPTIONS
    err_max_linewidth     = 1
    err_format            = 2
    err_conv_not_possible = 3
    err_bad_otf           = 4
    others                = 5.

if sy-subrc EQ 0.

  l_pdf_len = xstrlen( l_pdf_xstring ).
  write:/ l_pdf_len.

ENDIF.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Ravikiran.C&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Apr 2006 08:08:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-smart-forms/m-p/1213179#M134075</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-17T08:08:48Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in Smart Forms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-smart-forms/m-p/1213180#M134076</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ravi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First get the function of the SMART FOrm using the function SSF_FUNCTION_MODULE_NAME by passing the name of the SMART For. and then replace the /1BCDWB/SF00000357 with the out of the function SSF_FUNCTION_MODULE_NAME.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It will work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Note : Please mark the helpful answers&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Apr 2006 08:17:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-smart-forms/m-p/1213180#M134076</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-17T08:17:27Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in Smart Forms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-smart-forms/m-p/1213181#M134077</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ravi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;First in your program you should call the Fm&lt;/P&gt;&lt;P&gt;SSF_FUNCTION_MODULE_NAME &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                 = 'ZP_SMARTFORM1'&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        VARIANT                  = ' '&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        DIRECT_CALL              = ' '&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;       IMPORTING&lt;/P&gt;&lt;P&gt;         FM_NAME                  = V_FNAME&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;      EXCEPTIONS&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        NO_FORM                  = 1&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        NO_FUNCTION_MODULE       = 2&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        OTHERS                   = 3&lt;/P&gt;&lt;/LI&gt;&lt;/UL&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;where V_FNAME is TYPE  RS38L_FNAM.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;then call function '/1BCDWB/SF00000357'&lt;/P&gt;&lt;P&gt;hope this helps,&lt;/P&gt;&lt;P&gt;priya&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Apr 2006 08:26:45 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-smart-forms/m-p/1213181#M134077</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-17T08:26:45Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in Smart Forms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-smart-forms/m-p/1213182#M134078</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;whats the dump message?  (from txn ST22)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Raja&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Apr 2006 08:32:51 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-smart-forms/m-p/1213182#M134078</guid>
      <dc:creator>athavanraja</dc:creator>
      <dc:date>2006-04-17T08:32:51Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in Smart Forms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-smart-forms/m-p/1213183#M134079</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;@Ravi &amp;amp; @Priya&lt;/P&gt;&lt;P&gt;I have implemented your suggestion, but invain, still it is giving me the same dump.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;@Raja&lt;/P&gt;&lt;P&gt;This is the dump i get:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;"An SQL error occurred when accessing a table."&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Missing RAISING Clause in Interface                                                            &lt;/P&gt;&lt;P&gt;Program                                 SAPMS380                                           &lt;/P&gt;&lt;P&gt;Include                                 MS380F10                                           &lt;/P&gt;&lt;P&gt;Row                                     1.020                                              &lt;/P&gt;&lt;P&gt;                           &lt;/P&gt;&lt;P&gt;Module Name                             DELETE_OLD_SNAP_RECORDS &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The same problem, persists even when I do the same with standard Smart Forms also. I feel, some problem in settings. All of your valuable suggestions are awaited.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards,&lt;/P&gt;&lt;P&gt;Ravikiran.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Apr 2006 09:45:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-smart-forms/m-p/1213183#M134079</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-17T09:45:30Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in Smart Forms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-smart-forms/m-p/1213184#M134080</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ravi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Are you sure the Module where there is a dump, is a part of the SMART Form, to me it looks like coming from a different place.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you post the code where the dump is happening?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Apr 2006 09:47:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-smart-forms/m-p/1213184#M134080</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-17T09:47:55Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in Smart Forms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-smart-forms/m-p/1213185#M134081</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;this is what Source Code Extract of the dump looks like:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;                                  &lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt; transporting no fields.                                   
   if sy-subrc = 0.                                                                                
p_result = 'X'.                                                                         
   else.                                                                                
p_result = ' '.                                                                         
   endif.                                                                                
endform.                    "check_var                                                                                
*---------------------------------------------------------------------*                     
 *       FORM DELETE_OLD_SNAP_RECORDS                                  *                     
 *---------------------------------------------------------------------*                     
 form delete_old_snap_records.                                                                                
data: reorg_date  type d.                                                                                
data: begin of delt occurs 20.                                                            
           include structure snap_beg.                                                       
   data: end of delt.                                                                                
reorg_date = sy-datum  - 7.                                                                                
select * from snap_beg                                                                                
up to 20 rows                                                                                
into table delt                                                                  
            where datum lt reorg_date                                                        
              and seqno = '000'                                                              
              and xhold &amp;lt;&amp;gt; 'X'                                                               
            %_hints oracle 'INDEX("&amp;amp;TABLE&amp;amp;" "SNAP~DSX")'.                                                                                
loop at delt.                                                                                
delete from snap                                                                                
where datum = delt-datum                                                                                
and seqno = '000'                                                              
             and xhold &amp;lt;&amp;gt; 'X'                                                               
           %_hints oracle 'INDEX("&amp;amp;TABLE&amp;amp;" "SNAP~DSX")'.                                                                                
loop at delt.                                                                                
delete from snap                                                                                
where datum = delt-datum                                               
                     and   uzeit = delt-uzeit                                               
                     and   ahost = delt-ahost                                               
                     and   uname = delt-uname                                               
                     and   modno = delt-modno                                               
                     and   mandt = delt-mandt.                                              
    commit work.                                                                            
  endloop.                                                                                
endform.                    "delete_old_snap_records                                                                                
*&amp;amp;---------------------------------------------------------------------*                    
*&amp;amp;      Form  OVERVIEW                                                                      
*&amp;amp;---------------------------------------------------------------------*                    
form overview.                                                                                
data:                                                                                
begin of fcc,                                                                                
id type c length 2,                                                                   
      ll type c length 3,                                                                   
      errid type snapt-errid,&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Apr 2006 09:54:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-smart-forms/m-p/1213185#M134081</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-17T09:54:12Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in Smart Forms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-smart-forms/m-p/1213186#M134082</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;I think you have some problem on SNAP table, you should advise your basis and/or see some notes.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Apr 2006 09:56:48 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-smart-forms/m-p/1213186#M134082</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-17T09:56:48Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in Smart Forms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-smart-forms/m-p/1213187#M134083</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Looks like there is a problem the SQL statements.&lt;/P&gt;&lt;P&gt;   select * from snap_beg                                                                                &lt;/P&gt;&lt;P&gt;up to 20 rows                                                                                &lt;/P&gt;&lt;P&gt;into table delt                                                                  &lt;/P&gt;&lt;P&gt;            where datum lt reorg_date                                                        &lt;/P&gt;&lt;P&gt;              and seqno = '000'                                                              &lt;/P&gt;&lt;P&gt;              and xhold &amp;lt;&amp;gt; 'X'                                                               &lt;/P&gt;&lt;P&gt;            %_hints oracle 'INDEX("&amp;amp;TABLE&amp;amp;" "SNAP~DSX")'.                                                                                &lt;/P&gt;&lt;P&gt;loop at delt.                                                                                &lt;/P&gt;&lt;P&gt;delete from snap                                                                                &lt;/P&gt;&lt;P&gt;where datum = delt-datum                                                                                &lt;/P&gt;&lt;P&gt;and seqno = '000'                                                              &lt;/P&gt;&lt;P&gt;             and xhold &amp;lt;&amp;gt; 'X'                                                               &lt;/P&gt;&lt;P&gt;           %_hints oracle 'INDEX("&amp;amp;TABLE&amp;amp;" "SNAP~DSX")'.                                                                                &lt;/P&gt;&lt;P&gt;loop at delt.                                                                                &lt;/P&gt;&lt;P&gt;delete from snap                                                                                &lt;/P&gt;&lt;P&gt;where datum = delt-datum                                               &lt;/P&gt;&lt;P&gt;                     and   uzeit = delt-uzeit                                               &lt;/P&gt;&lt;P&gt;                     and   ahost = delt-ahost                                               &lt;/P&gt;&lt;P&gt;                     and   uname = delt-uname                                               &lt;/P&gt;&lt;P&gt;                     and   modno = delt-modno                                               &lt;/P&gt;&lt;P&gt;                     and   mandt = delt-mandt.  &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is this standard code?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You should NOT SMART Forms directly as well.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Apr 2006 10:00:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-smart-forms/m-p/1213187#M134083</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-17T10:00:55Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in Smart Forms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-smart-forms/m-p/1213188#M134084</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes this is the extract of standard Code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravikiran.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Apr 2006 10:03:24 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-smart-forms/m-p/1213188#M134084</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-17T10:03:24Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in Smart Forms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-smart-forms/m-p/1213189#M134085</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ravi,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;guess you will have search for OSS note as it is standard code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Apr 2006 10:05:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-smart-forms/m-p/1213189#M134085</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-17T10:05:49Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in Smart Forms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-smart-forms/m-p/1213190#M134086</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Ravi&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes it's std code, I think the system run it when ABAP error occurs to store the data for the DUMP they can be listed by ST22.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Max&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Apr 2006 10:06:29 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-smart-forms/m-p/1213190#M134086</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-17T10:06:29Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in Smart Forms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-smart-forms/m-p/1213191#M134087</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;Have u checked whether u are passing the correct inputs to the smartforms.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;With the std function module &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards,&lt;/P&gt;&lt;P&gt;Bala&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Apr 2006 10:40:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-smart-forms/m-p/1213191#M134087</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-17T10:40:52Z</dc:date>
    </item>
    <item>
      <title>Re: Problem in Smart Forms</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-smart-forms/m-p/1213192#M134088</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; As you explain about error, I think you access the table with many lines. And so its gives this error.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; So you check in your FM about same.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; Regards,&lt;/P&gt;&lt;P&gt; Priyank&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Apr 2006 10:41:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/problem-in-smart-forms/m-p/1213192#M134088</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-04-17T10:41:41Z</dc:date>
    </item>
  </channel>
</rss>

