<?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: Parameters problem in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameters-problem/m-p/1625715#M279577</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rich this is realy helpfull but I got a run time error when I process the programme.&lt;/P&gt;&lt;P&gt;004520     data: xtablename(30) type c.           &lt;/P&gt;&lt;P&gt;004530     concatenate mytab '[]' into xtablename.&lt;/P&gt;&lt;P&gt;004540                                            &lt;/P&gt;&lt;P&gt;004550     assign (xtablename) to &amp;lt;fs&amp;gt;.           &lt;/P&gt;&lt;P&gt;004560                                            &lt;/P&gt;&lt;P&gt;     &amp;gt;     loop at &amp;lt;fs&amp;gt; assigning &amp;lt;fs_wa&amp;gt;.        &lt;/P&gt;&lt;P&gt;004580       write:/ 'test'.                      &lt;/P&gt;&lt;P&gt;004590     endloop.                               &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You attempted to access an unassigned field symbol                      &lt;/P&gt;&lt;P&gt;(data segment 127).                                                                                &lt;/P&gt;&lt;P&gt;This error may occur for any of the following reasons:                  &lt;/P&gt;&lt;P&gt;- You address a typed field symbol before it is set using ASSIGN        &lt;/P&gt;&lt;P&gt;- You address a field symbol that points to a line in an internal table &lt;/P&gt;&lt;P&gt;  that has been deleted                                                 &lt;/P&gt;&lt;P&gt;- You address a field symbol that had previously been reset using       &lt;/P&gt;&lt;P&gt;  UNASSIGN, or that pointed to a local field that no longer exists      &lt;/P&gt;&lt;P&gt;- You address a global function interface parameter, even               &lt;/P&gt;&lt;P&gt;  though the relevant function module is not active,                    &lt;/P&gt;&lt;P&gt;  that is it is not in the list of active calls. You can get the list   &lt;/P&gt;&lt;P&gt;  of active calls from the this short dump.                             &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank for you help&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 09 Oct 2006 08:07:16 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-10-09T08:07:16Z</dc:date>
    <item>
      <title>Parameters problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameters-problem/m-p/1625706#M279568</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 wanna pass a parameters in a FORM but not like usual... &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;somthing like &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PERFORM sub USING TABLE XXXX &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BUT XXXX is a text parameters like concatenate 'itab_' table-name into XXXX. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Is it possible? I guess yes but how do it? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can you please help me &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;THX&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Oct 2006 13:28:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameters-problem/m-p/1625706#M279568</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-06T13:28:07Z</dc:date>
    </item>
    <item>
      <title>Re: Parameters problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameters-problem/m-p/1625707#M279569</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Assign a field symbol and pass the field symbol.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

report zrich_0001.

data: begin of itab occurs 0,
      fld1 type c,
      fld2 type c,
      end of itab.

field-symbols: &amp;lt;fs&amp;gt; type table.

start-of-selection.

  itab-fld1 = 'A'.
  itab-fld2 = 'B'.
  append itab.

  itab-fld1 = 'C'.
  itab-fld2 = 'D'.
  append itab.


&amp;lt;b&amp;gt;  assign itab[] to &amp;lt;fs&amp;gt;.

  perform passing_table tables &amp;lt;fs&amp;gt;.&amp;lt;/b&amp;gt;


*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;      Form  passing_table
*&amp;amp;---------------------------------------------------------------------*
*       text
*----------------------------------------------------------------------*
*      --&amp;gt;P_ITAB  text
*----------------------------------------------------------------------*
form passing_table tables xitab.

  loop at xitab.
    write:/ xitab.
  endloop.

endform.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Oct 2006 13:32:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameters-problem/m-p/1625707#M279569</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-10-06T13:32:12Z</dc:date>
    </item>
    <item>
      <title>Re: Parameters problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameters-problem/m-p/1625708#M279570</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1. concatenating a string into the xxxx, the actual parameter- is not possible.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. it will be an undefined object. ( unless you declare it before the call!).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. you may work around this issue by using a field symbol. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4. declare a field symbol of type any.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;5. you may assign it to a object ( xxxx) and dynamically initalize xxxx to the definition of the table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;hope it helps.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Oct 2006 13:36:06 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameters-problem/m-p/1625708#M279570</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-06T13:36:06Z</dc:date>
    </item>
    <item>
      <title>Re: Parameters problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameters-problem/m-p/1625709#M279571</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ron,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You wouldn't need to pass the table as such, as long as your FORM can figure out the name of the internal table.  Here's some code (slightly different context, but easily adapted) that shows how to refer dynamically to an itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;parameters:&lt;/P&gt;&lt;P&gt;  p_tabnam like dd02l-tabname.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Data references of anonymous type&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;data:&lt;/P&gt;&lt;P&gt;  dr_tab type ref to data,&lt;/P&gt;&lt;P&gt;  dr_row type ref to data.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Field symbols&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;field-symbols:&lt;/P&gt;&lt;P&gt;  &amp;lt;row&amp;gt;,&lt;/P&gt;&lt;P&gt;  &amp;lt;tab&amp;gt; type standard table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Reference to data of type passed in the p_tabnam parameter&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;try.&lt;/P&gt;&lt;P&gt;  create data:&lt;/P&gt;&lt;P&gt;    dr_row  type (p_tabnam).&lt;/P&gt;&lt;P&gt;  catch CX_SY_CREATE_DATA_ERROR.&lt;/P&gt;&lt;P&gt;    message e017(ZREP) with&lt;/P&gt;&lt;P&gt;      'Cannot create row for' p_tabnam.&lt;/P&gt;&lt;P&gt;  endtry.&lt;/P&gt;&lt;P&gt;try.&lt;/P&gt;&lt;P&gt;  create data:&lt;/P&gt;&lt;P&gt;    dr_tab  type table of (p_tabnam).&lt;/P&gt;&lt;P&gt;  catch CX_SY_CREATE_DATA_ERROR.&lt;/P&gt;&lt;P&gt;    message e017(ZREP) with&lt;/P&gt;&lt;P&gt;      'Cannot create table for' p_tabnam.&lt;/P&gt;&lt;P&gt;  endtry.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Assign dereferenced data reference to field symbols.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;assign:&lt;/P&gt;&lt;P&gt;  dr_row-&amp;gt;* to &amp;lt;row&amp;gt;,&lt;/P&gt;&lt;P&gt;  dr_tab-&amp;gt;* to &amp;lt;tab&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;Typical processing:&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;select * from (p_tabnam) into table &amp;lt;tab&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at &amp;lt;tab&amp;gt; into &amp;lt;row&amp;gt;.&lt;/P&gt;&lt;P&gt;  ...&lt;/P&gt;&lt;P&gt;  endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And here's some more code that goes into more detail about  how to do stuff with the itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;field-symbols:&lt;/P&gt;&lt;P&gt;  &amp;lt;row_code&amp;gt;,&lt;/P&gt;&lt;P&gt;  &amp;lt;row_desc&amp;gt;.&lt;/P&gt;&lt;P&gt;...&lt;/P&gt;&lt;P&gt;concatenate:&lt;/P&gt;&lt;P&gt;  '&amp;lt;ROW&amp;gt;-' p_code into row_code_name,&lt;/P&gt;&lt;P&gt;  '&amp;lt;ROW&amp;gt;-' p_desc into row_desc_name.&lt;/P&gt;&lt;P&gt;assign:&lt;/P&gt;&lt;P&gt;  (row_code_name) to &amp;lt;row_code&amp;gt;,&lt;/P&gt;&lt;P&gt;  (row_desc_name) to &amp;lt;row_desc&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select * from (p_tabn) into table &amp;lt;tab&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;loop at raw_itab into raw_row.&lt;/P&gt;&lt;P&gt;  &amp;lt;code&amp;gt; = raw_row-field1.&lt;/P&gt;&lt;P&gt;  &amp;lt;desc&amp;gt; = raw_row-field2.&lt;/P&gt;&lt;P&gt;  read table &amp;lt;tab&amp;gt; into &amp;lt;row&amp;gt; with key (p_code) = &amp;lt;code&amp;gt;.&lt;/P&gt;&lt;P&gt;  if sy-subrc ne 0.&lt;/P&gt;&lt;P&gt;    clear &amp;lt;row&amp;gt;.&lt;/P&gt;&lt;P&gt;    &amp;lt;row_code&amp;gt; = &amp;lt;code&amp;gt;. "assigns to &amp;lt;row&amp;gt; 'code' field&lt;/P&gt;&lt;P&gt;    &amp;lt;row_desc&amp;gt; = &amp;lt;desc&amp;gt;. "assigns to &amp;lt;row&amp;gt; 'desc' field&lt;/P&gt;&lt;P&gt;    insert (p_tabn) from &amp;lt;row&amp;gt;. "creates a database-table row&lt;/P&gt;&lt;P&gt;    if sy-subrc eq 0.&lt;/P&gt;&lt;P&gt;       write: / 'Inserted :', &amp;lt;row_code&amp;gt;, &amp;lt;row_desc&amp;gt;.&lt;/P&gt;&lt;P&gt;       endif.&lt;/P&gt;&lt;P&gt;    endif.&lt;/P&gt;&lt;P&gt;  endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this helps,&lt;/P&gt;&lt;P&gt;John&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Oct 2006 13:42:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameters-problem/m-p/1625709#M279571</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-06T13:42:52Z</dc:date>
    </item>
    <item>
      <title>Re: Parameters problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameters-problem/m-p/1625710#M279572</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;data: begin of itab occurs 0,&lt;/P&gt;&lt;P&gt;      fld1 type c,&lt;/P&gt;&lt;P&gt;      fld2 type c,&lt;/P&gt;&lt;P&gt;      end of itab.&lt;/P&gt;&lt;P&gt;DATA : tmp type c.&lt;/P&gt;&lt;P&gt;field-symbols: &amp;lt;fs&amp;gt; type table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  itab-fld1 = 'A'.&lt;/P&gt;&lt;P&gt;  itab-fld2 = 'B'.&lt;/P&gt;&lt;P&gt;  append itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  itab-fld1 = 'C'.&lt;/P&gt;&lt;P&gt;  itab-fld2 = 'D'.&lt;/P&gt;&lt;P&gt;  append itab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONCATENATE 'I_' itab-fld1 into tmp.&lt;/P&gt;&lt;P&gt;  assign tmp TO &amp;lt;fs&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  perform passing_table tables &amp;lt;fs&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This not working as tmp is not a table.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Oct 2006 13:58:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameters-problem/m-p/1625710#M279572</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-06T13:58:56Z</dc:date>
    </item>
    <item>
      <title>Re: Parameters problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameters-problem/m-p/1625711#M279573</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Right, do you not want to pass a table?  What exactly do you want to pass, just a name of a field?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Oct 2006 14:01:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameters-problem/m-p/1625711#M279573</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-10-06T14:01:22Z</dc:date>
    </item>
    <item>
      <title>Re: Parameters problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameters-problem/m-p/1625712#M279574</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Do mean something like this where you are passing a literal representation of the field that you want to access? In this case an internal table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

report zrich_0001.

data: begin of itab occurs 0,
      fld1 type c,
      fld2 type c,
      end of itab.

field-symbols: &amp;lt;fs&amp;gt; type table,
               &amp;lt;fs_wa&amp;gt;.

start-of-selection.

  itab-fld1 = 'A'.
  itab-fld2 = 'B'.
  append itab.

  itab-fld1 = 'C'.
  itab-fld2 = 'D'.
  append itab.

  perform accessing_table using 'ITAB'.


*&amp;amp;---------------------------------------------------------------------*
*&amp;amp;      Form  accessing_table
*&amp;amp;---------------------------------------------------------------------*
form accessing_table using tablename.

  data: xtablename(30) type c.
  concatenate tablename '[]' into xtablename.

  assign (xtablename) to &amp;lt;fs&amp;gt;.

  loop at &amp;lt;fs&amp;gt; assigning &amp;lt;fs_wa&amp;gt;.
    write:/ &amp;lt;fs_wa&amp;gt;.
  endloop.

endform.

&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Rich Heilman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Oct 2006 14:06:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameters-problem/m-p/1625712#M279574</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-10-06T14:06:36Z</dc:date>
    </item>
    <item>
      <title>Re: Parameters problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameters-problem/m-p/1625713#M279575</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I got a table with the name of other table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;seltab :&lt;/P&gt;&lt;P&gt;PA0000&lt;/P&gt;&lt;P&gt;PA0001&lt;/P&gt;&lt;P&gt;PA0002&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;And I want to use a internal table ( call ITAB_PA0000...)to extract data from those table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PERFORM  extract_table tables I_PA0000&lt;/P&gt;&lt;P&gt;                       using  seltab-low.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;FORM extract_table  TABLES   stru&lt;/P&gt;&lt;P&gt;                    USING    tab.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT * FROM (tab) INTO TABLE stru&lt;/P&gt;&lt;P&gt;                      for all entries in mat&lt;/P&gt;&lt;P&gt;                      WHERE pernr = mat-pernr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;ENDFORM.                    " extract_table&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Or I guess I can use just a select in a loop but I will have the same problem (string VS table)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Oct 2006 14:07:36 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameters-problem/m-p/1625713#M279575</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-06T14:07:36Z</dc:date>
    </item>
    <item>
      <title>Re: Parameters problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameters-problem/m-p/1625714#M279576</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I guess I don't need PERFORM. I can do :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CONCATENATE 'I_' seltab-low into tmp.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT * FROM (seltab-low) INTO TABLE tmp&lt;/P&gt;&lt;P&gt;                      for all entries in mat&lt;/P&gt;&lt;P&gt;                      WHERE pernr = mat-pernr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;but...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thkx for your help&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 06 Oct 2006 14:21:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameters-problem/m-p/1625714#M279576</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-06T14:21:55Z</dc:date>
    </item>
    <item>
      <title>Re: Parameters problem</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/parameters-problem/m-p/1625715#M279577</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Rich this is realy helpfull but I got a run time error when I process the programme.&lt;/P&gt;&lt;P&gt;004520     data: xtablename(30) type c.           &lt;/P&gt;&lt;P&gt;004530     concatenate mytab '[]' into xtablename.&lt;/P&gt;&lt;P&gt;004540                                            &lt;/P&gt;&lt;P&gt;004550     assign (xtablename) to &amp;lt;fs&amp;gt;.           &lt;/P&gt;&lt;P&gt;004560                                            &lt;/P&gt;&lt;P&gt;     &amp;gt;     loop at &amp;lt;fs&amp;gt; assigning &amp;lt;fs_wa&amp;gt;.        &lt;/P&gt;&lt;P&gt;004580       write:/ 'test'.                      &lt;/P&gt;&lt;P&gt;004590     endloop.                               &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You attempted to access an unassigned field symbol                      &lt;/P&gt;&lt;P&gt;(data segment 127).                                                                                &lt;/P&gt;&lt;P&gt;This error may occur for any of the following reasons:                  &lt;/P&gt;&lt;P&gt;- You address a typed field symbol before it is set using ASSIGN        &lt;/P&gt;&lt;P&gt;- You address a field symbol that points to a line in an internal table &lt;/P&gt;&lt;P&gt;  that has been deleted                                                 &lt;/P&gt;&lt;P&gt;- You address a field symbol that had previously been reset using       &lt;/P&gt;&lt;P&gt;  UNASSIGN, or that pointed to a local field that no longer exists      &lt;/P&gt;&lt;P&gt;- You address a global function interface parameter, even               &lt;/P&gt;&lt;P&gt;  though the relevant function module is not active,                    &lt;/P&gt;&lt;P&gt;  that is it is not in the list of active calls. You can get the list   &lt;/P&gt;&lt;P&gt;  of active calls from the this short dump.                             &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thank for you help&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 09 Oct 2006 08:07:16 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/parameters-problem/m-p/1625715#M279577</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-09T08:07:16Z</dc:date>
    </item>
  </channel>
</rss>

