<?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: Programmin querry in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/programmin-querry/m-p/3208402#M764820</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I used d code dat u gave.&lt;/P&gt;&lt;P&gt;But d prob is it does not move the value of cuobf into objek.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Even if the value gets updated in d objek, den cn u plz tel me how cm dis piece of code vil b useful 4 me?????&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;because i want to print all the classifications regarding all the materials in d sales order.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;n each material has got about 7 classifications which r stored in d same field dat is ausp-atwrt.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The value of cubof in the mara table is 0 for all the materials.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Plz help me to solve my doubts.Its urgent.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Wed, 19 Dec 2007 06:31:10 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-12-19T06:31:10Z</dc:date>
    <item>
      <title>Programmin querry</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/programmin-querry/m-p/3208400#M764818</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi experts,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can neone plz send me the code for linking the two tables CABN n AUSP so dat i want to fetch the data from AUSP according to the Internal Character of CABN.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The data is stored in AUSP abt d classification of a particular material.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;n i want to fetch these classification acc. to the material code stored in VBAP-MATNR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks n Regards,&lt;/P&gt;&lt;P&gt;Purva&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 17 Dec 2007 07:24:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/programmin-querry/m-p/3208400#M764818</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-17T07:24:41Z</dc:date>
    </item>
    <item>
      <title>Re: Programmin querry</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/programmin-querry/m-p/3208401#M764819</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;steps:&lt;/P&gt;&lt;P&gt;1. suppose all materials are in the table GT_vbap.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2. select all Internal object numbers  corresponding to the material in GT_vbap table from MARA.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT matnr cuobf&lt;/P&gt;&lt;P&gt;  FROM mara&lt;/P&gt;&lt;P&gt;  INTO TABLE gt_mara&lt;/P&gt;&lt;P&gt;for all entries in gt_vbap&lt;/P&gt;&lt;P&gt;  WHERE matnr = gt_vbap-matnr.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3. modify the gt_mara to overcome the type conflict for further steps.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    LOOP AT gt_mara into wa_mara.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      MOVE wa_mara-cuobf TO wa_mara-objek(of type cabn-objek).&lt;/P&gt;&lt;P&gt;  modify gt_mara from wa_mara transporting objek.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    ENDLOOP.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;4.  get the characteristic value from the CABN table:&lt;/P&gt;&lt;P&gt;select atinn&lt;/P&gt;&lt;P&gt;from cabn&lt;/P&gt;&lt;P&gt;into gv_atinn&lt;/P&gt;&lt;P&gt;where atnam = give the characterstic value&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;5.  select data from AUSP&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;      SELECT objek atinn atwrt&lt;/P&gt;&lt;P&gt;      FROM ausp&lt;/P&gt;&lt;P&gt;       INTO TABLE gt_ausp&lt;/P&gt;&lt;P&gt;       FOR ALL ENTRIES IN gt_mara&lt;/P&gt;&lt;P&gt;        WHERE  objek = gt_mara-objek &lt;/P&gt;&lt;P&gt;             AND  atinn = gv_atinn(characteristic name ) .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;populate final internal tables based on all these tables.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 18 Dec 2007 16:09:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/programmin-querry/m-p/3208401#M764819</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-18T16:09:00Z</dc:date>
    </item>
    <item>
      <title>Re: Programmin querry</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/programmin-querry/m-p/3208402#M764820</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;I used d code dat u gave.&lt;/P&gt;&lt;P&gt;But d prob is it does not move the value of cuobf into objek.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Even if the value gets updated in d objek, den cn u plz tel me how cm dis piece of code vil b useful 4 me?????&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;because i want to print all the classifications regarding all the materials in d sales order.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;n each material has got about 7 classifications which r stored in d same field dat is ausp-atwrt.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The value of cubof in the mara table is 0 for all the materials.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Plz help me to solve my doubts.Its urgent.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 19 Dec 2007 06:31:10 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/programmin-querry/m-p/3208402#M764820</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-12-19T06:31:10Z</dc:date>
    </item>
    <item>
      <title>Re: Programmin querry</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/programmin-querry/m-p/3208403#M764821</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi purva ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you have solved this problem please send me the code because i need to solve same type problem&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;Ahaypandey&lt;/P&gt;&lt;P&gt;mail: itsajaypandey@yahoo.co.in&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 04 Jan 2008 05:37:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/programmin-querry/m-p/3208403#M764821</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2008-01-04T05:37:07Z</dc:date>
    </item>
  </channel>
</rss>

