<?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: table link in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-link/m-p/3783440#M910319</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;Relatioship between those two tables is likp-inco1 = tinc-inco1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;these relationship you can write in program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*reward points&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 07 May 2008 05:42:03 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2008-05-07T05:42:03Z</dc:date>
    <item>
      <title>table link</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-link/m-p/3783438#M910317</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;I am working with delivery note sap script. I need to fetch &amp;#147;term of delivery &amp;#147; from TINC-BEZEI (based on LIKP-VBELN),so how can make link between those table?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Pls help me.&lt;/P&gt;&lt;P&gt;Reward for all helpful answers.&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;P&gt;jay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 May 2008 05:24:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-link/m-p/3783438#M910317</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-07T05:24:11Z</dc:date>
    </item>
    <item>
      <title>Re: table link</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-link/m-p/3783439#M910318</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN __default_attr="blue" __jive_macro_name="color"&gt;&lt;SPAN __default_attr="sylfaen" __jive_macro_name="font"&gt;&lt;SPAN __default_attr="15" __jive_macro_name="size"&gt;
LIKP-INCO1 = TINC-INCO1

Check below query for better understanding:
&lt;PRE&gt;&lt;CODE&gt;SELECT a~vbeln a~inco1 b~beizei
  INTO TABLE i_inco
  FROM likp AS a
  INNER JOIN tinc AS b
  ON a~inco1 = b~inco1
  WHERE a~vbeln = p_vbeln
  AND   b~spras = sy-langu.&lt;/CODE&gt;&lt;/PRE&gt;
&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN __default_attr="maroon" __jive_macro_name="color"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 May 2008 05:39:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-link/m-p/3783439#M910318</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-07T05:39:56Z</dc:date>
    </item>
    <item>
      <title>Re: table link</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-link/m-p/3783440#M910319</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;Relatioship between those two tables is likp-inco1 = tinc-inco1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;these relationship you can write in program.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;*reward points&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 May 2008 05:42:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-link/m-p/3783440#M910319</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-07T05:42:03Z</dc:date>
    </item>
    <item>
      <title>Re: table link</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-link/m-p/3783441#M910320</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;Link both the table with INCO1 field...this is common in both...&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Select BEZEI from TINC into table t_tinc&lt;/P&gt;&lt;P&gt;FOR ALL ENTRIES IN t_likp&lt;/P&gt;&lt;P&gt;where INCO1 = t_likp-INCO1&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and ur other where condition....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward points if helpful...&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 May 2008 05:45:14 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-link/m-p/3783441#M910320</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-07T05:45:14Z</dc:date>
    </item>
    <item>
      <title>Re: table link</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-link/m-p/3783442#M910321</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Eswar.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks for your reply, I need to fetch field BEZEI,its not available in the table TINC,but am getting field BEZEI while seeing the content of table TINC .&lt;/P&gt;&lt;P&gt;How s happening? &lt;/P&gt;&lt;P&gt;How can I fetch BEZEI from TINC?  &lt;/P&gt;&lt;P&gt;Is it possible? If No which table I need to refer?&lt;/P&gt;&lt;P&gt;What is relation between field BEZEI and table  TINC?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please help me to resolve this problem.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Jay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 May 2008 06:47:08 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-link/m-p/3783442#M910321</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-07T06:47:08Z</dc:date>
    </item>
    <item>
      <title>Re: table link</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-link/m-p/3783443#M910322</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN __default_attr="blue" __jive_macro_name="color"&gt;&lt;SPAN __default_attr="sylfaen" __jive_macro_name="font"&gt;&lt;SPAN __default_attr="15" __jive_macro_name="size"&gt;You can see table TINC has a text table i.e TINCT, so change the above query and replace table TINC with TINCT. Rest remains the same.
&lt;PRE&gt;&lt;CODE&gt;SELECT a~vbeln a~inco1 b~beizei
  INTO TABLE i_inco
  FROM likp AS a
  INNER JOIN tinct AS b
  ON a~inco1 = b~inco1
  WHERE a~vbeln = p_vbeln
  AND   b~spras = sy-langu.
&lt;/CODE&gt;&lt;/PRE&gt;
&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN __default_attr="maroon" __jive_macro_name="color"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 May 2008 06:52:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-link/m-p/3783443#M910322</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-07T06:52:18Z</dc:date>
    </item>
    <item>
      <title>Re: table link</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-link/m-p/3783444#M910323</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hI,&lt;/P&gt;&lt;P&gt;  The Field BEZEI Is maintained in the text table &lt;STRONG&gt;TINCT&lt;/STRONG&gt;(Click on GOTO--&amp;gt;Text table Here u will find the field).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;use of the text table&lt;/STRONG&gt;:let say you have A table where Material and material description are present in english and your user asked you to display in french,&lt;/P&gt;&lt;P&gt;so all the material descriptions are stored in different languages in the text table of that table.&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;Kiran Sure&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 May 2008 06:53:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-link/m-p/3783444#M910323</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-07T06:53:03Z</dc:date>
    </item>
    <item>
      <title>Re: table link</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-link/m-p/3783445#M910324</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Eswar.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks for reply ,stilll i have doubt,as per ur select quary what is p_vbeln? (how ur giving link between LIKP and TINCT? pls explain)&lt;/P&gt;&lt;P&gt;how this field getting value?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pls reply me.&lt;/P&gt;&lt;P&gt;to be reward u if u slove my issue.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards.&lt;/P&gt;&lt;P&gt;jay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 May 2008 08:52:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-link/m-p/3783445#M910324</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-07T08:52:05Z</dc:date>
    </item>
    <item>
      <title>Re: table link</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-link/m-p/3783446#M910325</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Machi.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Help me da ,stilll i have doubt,as per ur reply ,how ur giving link between LIKP and TINCT? pls explain&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;pls reply 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;Nagarajan jayaraman .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 May 2008 08:58:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-link/m-p/3783446#M910325</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-07T08:58:03Z</dc:date>
    </item>
    <item>
      <title>Re: table link</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/table-link/m-p/3783447#M910326</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;&lt;SPAN __default_attr="blue" __jive_macro_name="color"&gt;&lt;SPAN __default_attr="sylfaen" __jive_macro_name="font"&gt;&lt;SPAN __default_attr="15" __jive_macro_name="size"&gt;Your query is to find the link between LIKP and TINC-BEZEI. So the query i gave you is to establish the link in finding the text of Delivery Incoterms.

P_VBELN is the delivery number. I have taken that as PARAMETER from selection-screen. Depending on your criteria you can alter the source of delivery number.
&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;/SPAN&gt;&lt;SPAN __default_attr="maroon" __jive_macro_name="color"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 07 May 2008 09:03:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/table-link/m-p/3783447#M910326</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-05-07T09:03:17Z</dc:date>
    </item>
  </channel>
</rss>

