<?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: Multiple internal table with values in table values in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-internal-table-with-values-in-table-values/m-p/7667783#M1574774</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Maen Anachronos ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;lt_map in the beginig is table just with the field values &lt;/P&gt;&lt;P&gt;and after some compring with lt_values you can see that lt_map have multiple entries from lt_values &lt;/P&gt;&lt;P&gt;since lt_map have just one entry for every field but lt_val store for the same field (but diff line num ) values (diffrent values )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;as i said i cant use the lt_map table with just loop and modify since its completely diffrent table &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 02 Feb 2011 09:51:42 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2011-02-02T09:51:42Z</dc:date>
    <item>
      <title>Multiple internal table with values in table values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-internal-table-with-values-in-table-values/m-p/7667781#M1574772</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;I have internal table lt_map like follows with fields types without any values &lt;/P&gt;&lt;P&gt;and i have another table lt_values  with the filed and there values but the &lt;/P&gt;&lt;P&gt;table lt_MAP have just first occurns of fileld values without any referance to the values &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;LT_MAP 


Field type             values    line      .... More fields 

ID1
ID2 
FIRST_NAME	
NAME	        
TELEPHONE_1	
DEPARTMENT	


LT_Values       

Field type      Filed value       line       .... More fields   

ID1             01	          00 
ID2             02                00
FIRST_NAME      a                 01
NAME	        aaaa              01 
TELEPHONE_1	001               01
DEPARTMENT	aaaaa1            01

FIRST_NAME	b                 02
NAME	        bbb               02
TELEPHONE_1	0002              02
DEPARTMENT	bbbbb1            02

FIRST_NAME	c                 03
NAME	        ccc               03
TELEPHONE_1	0002              03
DEPARTMENT	ccccc1            03

Etc ....&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I want that lt_map will be after some comparing like follows ,&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;I.e. if line in table lt_values is greater than 0 to multiply it with the field type and description&lt;/STRONG&gt; &lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;and if it = 0 just put the value on the right place .&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LT_MAP - After the changing that i want to do &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Field type             values    Fields value .... More fields &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;Field type      Filed value       line         


ID1             01	          00 
ID2             02                00
FIRST_NAME      a                 01
NAME	        aaaa              01 
TELEPHONE_1	001               01
DEPARTMENT	aaaaa1            01

FIRST_NAME	b                 02
NAME	        bbb               02
TELEPHONE_1	0002              02
DEPARTMENT	bbbbb1            02

FIRST_NAME	c                 03
NAME	        ccc               03
TELEPHONE_1	0002              03
DEPARTMENT	ccccc1            03&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I know that I can update table lt_values but its not an option this is totaly diffrent table &lt;/P&gt;&lt;P&gt;here i present just the importent things from it .&lt;/P&gt;&lt;P&gt;What is the best way to handle it&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Chris&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Feb 2011 09:32:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-internal-table-with-values-in-table-values/m-p/7667781#M1574772</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-02-02T09:32:01Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple internal table with values in table values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-internal-table-with-values-in-table-values/m-p/7667782#M1574773</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I don't see any difference between lt_values and how lt_map is supposed to be filled.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Feb 2011 09:43:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-internal-table-with-values-in-table-values/m-p/7667782#M1574773</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-02-02T09:43:54Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple internal table with values in table values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-internal-table-with-values-in-table-values/m-p/7667783#M1574774</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI Maen Anachronos ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;lt_map in the beginig is table just with the field values &lt;/P&gt;&lt;P&gt;and after some compring with lt_values you can see that lt_map have multiple entries from lt_values &lt;/P&gt;&lt;P&gt;since lt_map have just one entry for every field but lt_val store for the same field (but diff line num ) values (diffrent values )&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;as i said i cant use the lt_map table with just loop and modify since its completely diffrent table &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;BR&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Feb 2011 09:51:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-internal-table-with-values-in-table-values/m-p/7667783#M1574774</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-02-02T09:51:42Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple internal table with values in table values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-internal-table-with-values-in-table-values/m-p/7667784#M1574775</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello ChrisGW ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;At first sorry if i didn't understand.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Did you try to append the lines of lt_values to lt_map-lines.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I think  lt_map-lines is a internal table, isn't it?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Giuseppe&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Feb 2011 10:08:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-internal-table-with-values-in-table-values/m-p/7667784#M1574775</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-02-02T10:08:15Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple internal table with values in table values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-internal-table-with-values-in-table-values/m-p/7667785#M1574776</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;HI GiPalummo &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;I try it but its not working any another idea ? ,&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;Chris&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Edited by: ChrisGW on Feb 2, 2011 12:18 PM&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Feb 2011 11:00:39 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-internal-table-with-values-in-table-values/m-p/7667785#M1574776</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-02-02T11:00:39Z</dc:date>
    </item>
    <item>
      <title>Re: Multiple internal table with values in table values</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-internal-table-with-values-in-table-values/m-p/7667786#M1574777</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Could you post the related ABAP's code?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 02 Feb 2011 12:29:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/multiple-internal-table-with-values-in-table-values/m-p/7667786#M1574777</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2011-02-02T12:29:01Z</dc:date>
    </item>
  </channel>
</rss>

