<?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: Display Output in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/display-output/m-p/1090820#M100627</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi &lt;/P&gt;&lt;P&gt;from kssk table based on calss type 300 get the objek.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and objek is nothing but material number in mara.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  select single objeck&lt;/P&gt;&lt;P&gt;         from kssk&lt;/P&gt;&lt;P&gt;         into v_objek&lt;/P&gt;&lt;P&gt;         where klart = '300'.&lt;/P&gt;&lt;P&gt;this is the material.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 27 Dec 2005 05:38:52 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2005-12-27T05:38:52Z</dc:date>
    <item>
      <title>Display Output</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/display-output/m-p/1090819#M100626</link>
      <description>&lt;P&gt;Hi All,&lt;/P&gt;
  &lt;P&gt;How to Find the class type 300 with name equal to configurable material.&lt;/P&gt;
  &lt;P&gt;Plz Guide the&lt;/P&gt;
  &lt;P&gt;how to build the query to retrive the data Class type 300 and Configurable material.&lt;/P&gt;
  &lt;P&gt;Advanced Thankx to your reply&lt;/P&gt;
  &lt;P&gt;Reward Points &lt;/P&gt;
  &lt;P&gt;i look forward to your reply&lt;/P&gt;
  &lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;
  &lt;P&gt;RSK&lt;/P&gt;</description>
      <pubDate>Tue, 27 Dec 2005 05:27:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/display-output/m-p/1090819#M100626</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-27T05:27:34Z</dc:date>
    </item>
    <item>
      <title>Re: Display Output</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/display-output/m-p/1090820#M100627</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi &lt;/P&gt;&lt;P&gt;from kssk table based on calss type 300 get the objek.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;and objek is nothing but material number in mara.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  select single objeck&lt;/P&gt;&lt;P&gt;         from kssk&lt;/P&gt;&lt;P&gt;         into v_objek&lt;/P&gt;&lt;P&gt;         where klart = '300'.&lt;/P&gt;&lt;P&gt;this is the material.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;regards&lt;/P&gt;&lt;P&gt;vijay&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Dec 2005 05:38:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/display-output/m-p/1090820#M100627</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-27T05:38:52Z</dc:date>
    </item>
    <item>
      <title>Re: Display Output</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/display-output/m-p/1090821#M100628</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thank u Vijay,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;TABLES : MARA, " Material Master&lt;/P&gt;&lt;P&gt;         MAKT, " Material Description&lt;/P&gt;&lt;P&gt;         MARC, " Plant Data for Materials&lt;/P&gt;&lt;P&gt;         AUSP, " Characteristic Values&lt;/P&gt;&lt;P&gt;         CABN, " Characteristic&lt;/P&gt;&lt;P&gt;         KSSK, " Allocation Table: Object to Class&lt;/P&gt;&lt;P&gt;         KLAH. " Class Header Data&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA : BEGIN OF T_CHAR OCCURS 0,&lt;/P&gt;&lt;P&gt;        LVORM LIKE MARA-LVORM,&lt;/P&gt;&lt;P&gt;        MATPOS_MARA LIKE MARA-MTPOS_MARA,&lt;/P&gt;&lt;P&gt;        OBJEK LIKE AUSP-OBJEK,&lt;/P&gt;&lt;P&gt;        ATINN LIKE AUSP-ATINN,&lt;/P&gt;&lt;P&gt;        ATWRT LIKE AUSP-ATWRT,&lt;/P&gt;&lt;P&gt;        CLASS LIKE KLAH-CLASS,&lt;/P&gt;&lt;P&gt;        KLART LIKE KLAH-KLART,&lt;/P&gt;&lt;P&gt;        ATNAM LIKE CABN-ATNAM,&lt;/P&gt;&lt;P&gt;        CLINT LIKE KSSK-CLINT,&lt;/P&gt;&lt;P&gt;       END OF T_CHAR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT AUSP&lt;SUB&gt;OBJEK AUSP&lt;/SUB&gt;ATINN AUSP&lt;SUB&gt;ATWRT CABN&lt;/SUB&gt;ATNAM&lt;/P&gt;&lt;P&gt;       KSSK&lt;SUB&gt;CLINT KLAH&lt;/SUB&gt;CLASS KLAH~KLART INTO CORRESPONDING FIELDS OF TABLE T_CHAR&lt;/P&gt;&lt;P&gt;            FROM MARA INNER JOIN AUSP ON AUSP&lt;SUB&gt;OBJEK = P_MATNR AND AUSP&lt;/SUB&gt;KLART = '001'&lt;/P&gt;&lt;P&gt;                      INNER JOIN CABN ON CABN&lt;SUB&gt;ATINN = AUSP&lt;/SUB&gt;ATINN&lt;/P&gt;&lt;P&gt;                      INNER JOIN KSSK ON KSSK&lt;SUB&gt;OBJEK = AUSP&lt;/SUB&gt;OBJEK&lt;/P&gt;&lt;P&gt;                      INNER JOIN KLAH ON KLAH&lt;SUB&gt;CLINT = KSSK&lt;/SUB&gt;CLINT.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i have to developed the above quey, &lt;/P&gt;&lt;P&gt;Is there is any wrong in this query , &lt;/P&gt;&lt;P&gt;Plz Check and let me know the modfificationes&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i look forward to your reply&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks &amp;amp; Regards&lt;/P&gt;&lt;P&gt;RSK&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 27 Dec 2005 06:19:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/display-output/m-p/1090821#M100628</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2005-12-27T06:19:57Z</dc:date>
    </item>
  </channel>
</rss>

