<?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: Help on Table Contents which are getting inserted from SAP Tcode in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-on-table-contents-which-are-getting-inserted-from-sap-tcode/m-p/2511062#M567906</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok, the logic is simple, if you know that the name consists of those fields, then all you need to do is concatenate these values together into one field, then pass this value to TDNAME field.  That's it.    Sorry that it is not more complex than that.&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, 17 Jul 2007 18:28:33 GMT</pubDate>
    <dc:creator>RichHeilman</dc:creator>
    <dc:date>2007-07-17T18:28:33Z</dc:date>
    <item>
      <title>Help on Table Contents which are getting inserted from SAP Tcode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-on-table-contents-which-are-getting-inserted-from-sap-tcode/m-p/2511059#M567903</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hello&lt;/P&gt;&lt;P&gt;I debugged the whole MM01 and MM02 but in vain. I could not understand how the tables are getting updated with a combination of values.&lt;/P&gt;&lt;P&gt;These are the steps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) Create  Material from MM01 by selecting the 2-3 views(pls select the Sales Text view compulsorily).&lt;/P&gt;&lt;P&gt;2) It asks for Sales Org and Distribution Channel&lt;/P&gt;&lt;P&gt;3) Enter any Sales Org and Distribution Channel&lt;/P&gt;&lt;P&gt;4) At Sales Text View - Enter the Material Description.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;My question is STXH table will be updated with a new record (when u create a material) which is the combination of MaterialNumber&lt;EM&gt;SalesOrg&lt;/EM&gt;distributionchannel.&lt;/P&gt;&lt;P&gt;The field STXH-TDNAME is equal to MaterialNumber&lt;EM&gt;SalesOrg&lt;/EM&gt;Distributionchannel.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Now I have to understand how this comibination is getting attached to each other and how this has been done in SAP. &lt;/P&gt;&lt;P&gt;Any inputs will be useful.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;SK&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jul 2007 18:09:21 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-on-table-contents-which-are-getting-inserted-from-sap-tcode/m-p/2511059#M567903</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-17T18:09:21Z</dc:date>
    </item>
    <item>
      <title>Re: Help on Table Contents which are getting inserted from SAP Tcode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-on-table-contents-which-are-getting-inserted-from-sap-tcode/m-p/2511060#M567904</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Well, all long text is stored this way in R/3.  You can see all of the object and ids in transaction SE75.  You use the READ_TEXT function module to retrieve the text based on the OBject, ID, and Name.  Usually the Name field is a concatenation of a few fields.  IN your case, it is, so all you need to do is concatenate the material number field, sales org, and distch into the TDNAME field.  You can also use the SAVE_TEXT funciton module to save text as well, but sometimes certain business objects do not handle the SAVE_TEXT so good, material master is one of them. So I would suggest to update any texts using the BAPI_MATERIAL_SAVEDATA.&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, 17 Jul 2007 18:18:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-on-table-contents-which-are-getting-inserted-from-sap-tcode/m-p/2511060#M567904</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2007-07-17T18:18:46Z</dc:date>
    </item>
    <item>
      <title>Re: Help on Table Contents which are getting inserted from SAP Tcode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-on-table-contents-which-are-getting-inserted-from-sap-tcode/m-p/2511061#M567905</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Yes . READ_TEXT can be used.&lt;/P&gt;&lt;P&gt;I wanted to create some custom table for some business process with the same combination as key fields which are MaterialNumber&lt;EM&gt;SalesOrg&lt;/EM&gt;distributionchannel.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I wanted to check what is the logic behind concatenating these 3 fields . If ay logic or condition is involved - then I want to make use of this logic if needed in my ABAP program which involves this new custom table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any further inputs?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jul 2007 18:23:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-on-table-contents-which-are-getting-inserted-from-sap-tcode/m-p/2511061#M567905</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-17T18:23:17Z</dc:date>
    </item>
    <item>
      <title>Re: Help on Table Contents which are getting inserted from SAP Tcode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-on-table-contents-which-are-getting-inserted-from-sap-tcode/m-p/2511062#M567906</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Ok, the logic is simple, if you know that the name consists of those fields, then all you need to do is concatenate these values together into one field, then pass this value to TDNAME field.  That's it.    Sorry that it is not more complex than that.&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, 17 Jul 2007 18:28:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-on-table-contents-which-are-getting-inserted-from-sap-tcode/m-p/2511062#M567906</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2007-07-17T18:28:33Z</dc:date>
    </item>
    <item>
      <title>Re: Help on Table Contents which are getting inserted from SAP Tcode</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/help-on-table-contents-which-are-getting-inserted-from-sap-tcode/m-p/2511063#M567907</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Just remember that the concatenation of values is done in their internal format representation. So you have to use the material number in its internal format, sales organization and the distribution channel. So the total length will be 18&lt;EM&gt;2&lt;/EM&gt;2.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 17 Jul 2007 18:49:19 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/help-on-table-contents-which-are-getting-inserted-from-sap-tcode/m-p/2511063#M567907</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-17T18:49:19Z</dc:date>
    </item>
  </channel>
</rss>

