<?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: Value Assignment From A Dynamic Field in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/value-assignment-from-a-dynamic-field/m-p/1181865#M126021</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When you are looping around this WHILE statement are you filling values in WA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
LOOP AT itab into wa_input.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&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>Tue, 10 Jan 2006 21:41:47 GMT</pubDate>
    <dc:creator>RichHeilman</dc:creator>
    <dc:date>2006-01-10T21:41:47Z</dc:date>
    <item>
      <title>Value Assignment From A Dynamic Field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/value-assignment-from-a-dynamic-field/m-p/1181861#M126017</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;First I will do:&lt;/P&gt;&lt;P&gt;CONCATENATE 'itab-field' counter_value INTO &amp;lt;b&amp;gt;dynamic_field&amp;lt;/b&amp;gt;.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Here the &amp;lt;i&amp;gt;counter_value&amp;lt;/i&amp;gt; can be anything! So, dynamic_field can have any of the follwing: itab-field1, itab-field2,...itab-fieldn.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Then I have to do:&lt;/P&gt;&lt;P&gt;&amp;lt;b&amp;gt;output = contents of &amp;lt;b&amp;gt;dynamic_field&amp;lt;/b&amp;gt;.&amp;lt;/b&amp;gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I tried to use field-symbols but it is duplicating some values. Any help will be appreciated!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jan 2006 20:57:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/value-assignment-from-a-dynamic-field/m-p/1181861#M126017</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-10T20:57:57Z</dc:date>
    </item>
    <item>
      <title>Re: Value Assignment From A Dynamic Field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/value-assignment-from-a-dynamic-field/m-p/1181862#M126018</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Here is some sample code.  If this doesn't help, post some relevant code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

report zrich_0001.


data: begin of itab occurs 0,
      field1 type c,
      field2 type c,
      field3 type c,
      end of itab.

field-symbols: &amp;lt;fs&amp;gt;.
data: output type string.
data: dyn_field type string.
data: index(4) type c.

start-of-selection.

  itab = 'ABC'.     append itab.
  itab = 'DEF'.     append itab.
  itab = 'GHI'.     append itab.

  loop at itab.

    do .
      index = sy-index.
      concatenate 'itab-field' index into dyn_field.
      condense dyn_field no-gaps.
      assign (dyn_field) to &amp;lt;fs&amp;gt;.
      if sy-subrc &amp;lt;&amp;gt; 0.
        exit.
      endif.
      output = &amp;lt;fs&amp;gt;.
      write:/ output.
    enddo.

  endloop.
&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>Tue, 10 Jan 2006 21:04:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/value-assignment-from-a-dynamic-field/m-p/1181862#M126018</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-01-10T21:04:28Z</dc:date>
    </item>
    <item>
      <title>Re: Value Assignment From A Dynamic Field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/value-assignment-from-a-dynamic-field/m-p/1181863#M126019</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok, I did:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

WHILE ( l_extensions &amp;gt; 0 ). "l_extension will be &amp;gt;= 1

 l_offset = 3 + sy-index. "offset type c

 CONCATENATE 'wa_input-value_00' l_offset INTO l_buffer.
 CONDENSE l_buffer NO-GAPS.

 ASSIGN (l_buffer) TO &amp;lt;dest_plant&amp;gt;.
 IF sy-subrc = 0.
   l_plant = &amp;lt;dest_plant&amp;gt;.
 ENDIF.

l_extensions = l_extensions - 1.
ENDWHILE.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It is assigning value from the first loop for every other loop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Sam&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jan 2006 21:29:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/value-assignment-from-a-dynamic-field/m-p/1181863#M126019</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-10T21:29:05Z</dc:date>
    </item>
    <item>
      <title>Re: Value Assignment From A Dynamic Field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/value-assignment-from-a-dynamic-field/m-p/1181864#M126020</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Declare offset as type n with length whatever.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jan 2006 21:36:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/value-assignment-from-a-dynamic-field/m-p/1181864#M126020</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-10T21:36:52Z</dc:date>
    </item>
    <item>
      <title>Re: Value Assignment From A Dynamic Field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/value-assignment-from-a-dynamic-field/m-p/1181865#M126021</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;When you are looping around this WHILE statement are you filling values in WA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
LOOP AT itab into wa_input.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&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>Tue, 10 Jan 2006 21:41:47 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/value-assignment-from-a-dynamic-field/m-p/1181865#M126021</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-01-10T21:41:47Z</dc:date>
    </item>
    <item>
      <title>Re: Value Assignment From A Dynamic Field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/value-assignment-from-a-dynamic-field/m-p/1181866#M126022</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes, there is an outer loop:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;LOOP AT i_input INTO wa_input.
..
...
  WHILE (l_extensions &amp;gt; 0)
  ..
  ...
  ENDWHILE.
..
...
ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jan 2006 21:46:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/value-assignment-from-a-dynamic-field/m-p/1181866#M126022</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-10T21:46:10Z</dc:date>
    </item>
    <item>
      <title>Re: Value Assignment From A Dynamic Field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/value-assignment-from-a-dynamic-field/m-p/1181867#M126023</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Can you please post the data declarations of the variables that are used in the WHILE loop?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jan 2006 21:47:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/value-assignment-from-a-dynamic-field/m-p/1181867#M126023</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-10T21:47:58Z</dc:date>
    </item>
    <item>
      <title>Re: Value Assignment From A Dynamic Field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/value-assignment-from-a-dynamic-field/m-p/1181868#M126024</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; Declare offset as type n with length whatever.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Tried it...didn't work.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jan 2006 21:50:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/value-assignment-from-a-dynamic-field/m-p/1181868#M126024</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-10T21:50:22Z</dc:date>
    </item>
    <item>
      <title>Re: Value Assignment From A Dynamic Field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/value-assignment-from-a-dynamic-field/m-p/1181869#M126025</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;A code like this works for me.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;
DATA: l_extensions TYPE i,
      l_offset     TYPE n,
      l_buffer(40) TYPE c,
      l_plant      LIKE marc-werks.

DATA: BEGIN OF wa_input OCCURS 0,
        value_001(4),
        value_002(4),
        value_003(4).
DATA: END OF wa_input.


FIELD-SYMBOLS: &amp;lt;dest_plant&amp;gt;.

MOVE: '0001' TO wa_input-value_001,
      '0002' TO wa_input-value_002,
      '0003' TO wa_input-value_003.
APPEND wa_input.

l_extensions = 3.

WHILE ( l_extensions &amp;gt; 0 ). "l_extension will be &amp;gt;= 1

  l_offset = sy-index.

  CONCATENATE 'wa_input-value_00' l_offset INTO l_buffer.
  CONDENSE l_buffer NO-GAPS.

  ASSIGN (l_buffer) TO &amp;lt;dest_plant&amp;gt;.
  IF sy-subrc = 0.
    l_plant = &amp;lt;dest_plant&amp;gt;.
  ENDIF.
  WRITE:/ l_plant.
  l_extensions = l_extensions - 1.
ENDWHILE.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jan 2006 21:56:50 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/value-assignment-from-a-dynamic-field/m-p/1181869#M126025</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-10T21:56:50Z</dc:date>
    </item>
    <item>
      <title>Re: Value Assignment From A Dynamic Field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/value-assignment-from-a-dynamic-field/m-p/1181870#M126026</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; Can you please post the data declarations of the&lt;/P&gt;&lt;P&gt;&amp;gt; variables that are used in the WHILE loop?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;

  DATA: l_plant     TYPE mard-werks,
        l_offset(2) TYPE n,
        l_exts      TYPE i.

  FIELD-SYMBOLS: &amp;lt;dest_plant&amp;gt;.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;PRE&gt;&lt;CODE&gt;
LOOP AT i_input INTO wa_input.

    g_totrec = g_totrec + 1.

    READ TABLE i_no_of_extensions INTO wa_no_of_extensions WITH KEY matl_no = wa_input-value_0001.
    IF sy-subrc = 0.
      l_exts = wa_no_of_extensions-exts.
    ENDIF.

    WHILE ( l_exts &amp;gt; 0 ).

      l_offset = 3 + sy-index + wa_mat_mast-extension.

      CONCATENATE 'wa_input-value_00' l_offset INTO l_buffer.
      CONDENSE l_buffer NO-GAPS.
      ASSIGN (l_buffer) TO &amp;lt;dest_plant&amp;gt;.
      IF sy-subrc = 0.
        l_plant = &amp;lt;dest_plant&amp;gt;.
      ENDIF.

      PERFORM standard_conversion USING l_plant CHANGING wa_mat_mast-dest_plant.

      MOVE: g_totrec TO wa_mat_mast-rec_no,
            sy-index TO wa_mat_mast-extension.

      APPEND wa_mat_mast TO i_mat_mast.
      l_exts = l_exts - 1.

    ENDWHILE.

ENDLOOP.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jan 2006 22:04:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/value-assignment-from-a-dynamic-field/m-p/1181870#M126026</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-10T22:04:07Z</dc:date>
    </item>
    <item>
      <title>Re: Value Assignment From A Dynamic Field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/value-assignment-from-a-dynamic-field/m-p/1181871#M126027</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;What is the length of &amp;lt;b&amp;gt;l_buffer&amp;lt;/b&amp;gt;? It should be atleast 19 characters(17 characters of the string 'wa_input-value_00' and 2 for the l_offset)?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Will l_offset be two digit always and your 'wa_input'&lt;/P&gt;&lt;P&gt;'value_00' fields are like value_0001, value_0002,... value_0010..?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Srinivas&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jan 2006 22:19:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/value-assignment-from-a-dynamic-field/m-p/1181871#M126027</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-10T22:19:37Z</dc:date>
    </item>
    <item>
      <title>Re: Value Assignment From A Dynamic Field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/value-assignment-from-a-dynamic-field/m-p/1181872#M126028</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I have declared l_buffer as STRING &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i_input is a standard table of type:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;BEGIN OF t_input,
 value_0001(50) TYPE c,
 value_0002(50) TYPE c,
 value_0003(50) TYPE c,
 value_0004(50) TYPE c,
 value_0005(50) TYPE c,
 value_0006(50) TYPE c,
 value_0007(50) TYPE c,
 value_0008(50) TYPE c,
 value_0009(50) TYPE c,
 value_0010(50) TYPE c,
 value_0011(50) TYPE c,
 value_0012(50) TYPE c,
 value_0013(50) TYPE c,
 value_0014(50) TYPE c,
 value_0015(50) TYPE c,
 value_0016(50) TYPE c,
 value_0017(50) TYPE c,
 value_0018(50) TYPE c,
 value_0019(50) TYPE c,
 value_0020(50) TYPE c,
 value_0021(50) TYPE c,
 value_0022(50) TYPE c,
 value_0023(50) TYPE c,
END OF t_input.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Message was edited by: Sam&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jan 2006 22:32:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/value-assignment-from-a-dynamic-field/m-p/1181872#M126028</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-10T22:32:49Z</dc:date>
    </item>
    <item>
      <title>Re: Value Assignment From A Dynamic Field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/value-assignment-from-a-dynamic-field/m-p/1181873#M126029</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;and where is this coming from "wa_mat_mast-extension"?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jan 2006 22:39:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/value-assignment-from-a-dynamic-field/m-p/1181873#M126029</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-10T22:39:00Z</dc:date>
    </item>
    <item>
      <title>Re: Value Assignment From A Dynamic Field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/value-assignment-from-a-dynamic-field/m-p/1181874#M126030</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&amp;gt; and where is this coming from "wa_mat_mast-extension"?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Basically, it will have the previous sy-index value. It will be zero for the first iteration of while loop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jan 2006 22:40:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/value-assignment-from-a-dynamic-field/m-p/1181874#M126030</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-10T22:40:54Z</dc:date>
    </item>
    <item>
      <title>Re: Value Assignment From A Dynamic Field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/value-assignment-from-a-dynamic-field/m-p/1181875#M126031</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;But I don't see it getting assigned to the previous sy-index value within that 'while' loop.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jan 2006 22:46:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/value-assignment-from-a-dynamic-field/m-p/1181875#M126031</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-10T22:46:57Z</dc:date>
    </item>
    <item>
      <title>Re: Value Assignment From A Dynamic Field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/value-assignment-from-a-dynamic-field/m-p/1181876#M126032</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;There is a move statement before endwhile command.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;MOVE: g_totrec TO wa_mat_mast-rec_no,
      &amp;lt;b&amp;gt;sy-index TO wa_mat_mast-extension&amp;lt;/b&amp;gt;.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jan 2006 22:49:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/value-assignment-from-a-dynamic-field/m-p/1181876#M126032</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-10T22:49:41Z</dc:date>
    </item>
    <item>
      <title>Re: Value Assignment From A Dynamic Field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/value-assignment-from-a-dynamic-field/m-p/1181877#M126033</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;The string l_buffer is changing as per logic but the corresponding value is not assigned to the field symbol!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jan 2006 22:55:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/value-assignment-from-a-dynamic-field/m-p/1181877#M126033</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-10T22:55:56Z</dc:date>
    </item>
    <item>
      <title>Re: Value Assignment From A Dynamic Field</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/value-assignment-from-a-dynamic-field/m-p/1181878#M126034</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok, it seems to be working now......v.strange...I just created a new excel input! Thanks for your help!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 10 Jan 2006 23:25:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/value-assignment-from-a-dynamic-field/m-p/1181878#M126034</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-01-10T23:25:09Z</dc:date>
    </item>
  </channel>
</rss>

