<?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: Report in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/report/m-p/2534311#M574974</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 am working on a report about open STPO. I need pick up the PO data both in header and items level. Such as PO No., doc. date, item No.,schedule line#(item detail infomation), DN No., DN Qty etc.&lt;/P&gt;&lt;P&gt;if one item has one schedule line, there is no problem to get the DN data(even more than one DN), but if there're two or more schedule lines, I can't find the link between the schedule lines and DNs. I can't decide which DNs generate by schedule line1 and which DNs generate by schedule line2&amp;#133;&amp;#133;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how can i link them? is there any table with the relation of them? THS&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Sat, 28 Jul 2007 08:05:05 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-07-28T08:05:05Z</dc:date>
    <item>
      <title>Report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/report/m-p/2534306#M574969</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;I am working on a report where I have 4 secondary codes zzscom1,zzscom2,zzscom3,zzscom4 from lfa1 table.In the selection-screen i have displayed only 2 secondary codes zzscom3,zzscom4.if i enter a value in any of these 2 secondary codes.for example if i enter warehousing in zzscom3 but in lfa1 table warehousing is present only in zzscom4 field.Now in the output i should get all the 4 secondary codes with their values present in lfai table.&lt;/P&gt;&lt;P&gt;How can i write a select query for this?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Hema&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jul 2007 07:01:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/report/m-p/2534306#M574969</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-18T07:01:41Z</dc:date>
    </item>
    <item>
      <title>Re: Report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/report/m-p/2534307#M574970</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi hema,&lt;/P&gt;&lt;P&gt;Let p_zzscom3,p_zzscom4 are your selection parameters.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETER:p_zzscom3,&lt;/P&gt;&lt;P&gt;          p_zzscom4.&lt;/P&gt;&lt;P&gt;SELECT-OPTIONS: s_sec FOR lfa1-zzscom1  NO-DISPLAY.&lt;/P&gt;&lt;P&gt;DATA:ls_secondary TYPE selopt.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;START-OF-SELECTION.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  IF p_zzscom3 IS NOT INITIAL.&lt;/P&gt;&lt;P&gt;    ls_secondary-sign   = 'I'.&lt;/P&gt;&lt;P&gt;    ls_secondary-option = 'EQ'.&lt;/P&gt;&lt;P&gt;    ls_secondary-low    = p_zzscom3.&lt;/P&gt;&lt;P&gt;    APPEND ls_secondary TO s_sec.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;  IF p_zzscom4 IS NOT INITIAL.&lt;/P&gt;&lt;P&gt;    CLEAR ls_secondary.&lt;/P&gt;&lt;P&gt;    ls_secondary-sign   = 'I'.&lt;/P&gt;&lt;P&gt;    ls_secondary-option = 'EQ'.&lt;/P&gt;&lt;P&gt;    ls_secondary-low    = p_zzscom4.&lt;/P&gt;&lt;P&gt;    APPEND ls_secondary TO s_sec.&lt;/P&gt;&lt;P&gt;  ENDIF.&lt;/P&gt;&lt;P&gt;  SELECT SINGLE lifnr zzscom1 zzscom2 zzscom3 zzscom4 FROM lfa1&lt;/P&gt;&lt;P&gt;           INTO wa_lfa1&lt;/P&gt;&lt;P&gt;           WHERE  zzscom1 IN s_sec OR&lt;/P&gt;&lt;P&gt;                  zzscom2 IN s_sec OR&lt;/P&gt;&lt;P&gt;                  zzscom3 IN s_sec OR&lt;/P&gt;&lt;P&gt;                  zzscom4 IN s_sec.&lt;/P&gt;&lt;P&gt;Hope this will work for you!&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Antony Thomas&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Reward if find useful!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jul 2007 07:20:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/report/m-p/2534307#M574970</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-18T07:20:15Z</dc:date>
    </item>
    <item>
      <title>Re: Report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/report/m-p/2534308#M574971</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;  Still I have a problem.Could you pls help me solve this problem.&lt;/P&gt;&lt;P&gt;In the selection-screen if i give 'warehousing' in zzscom3 field and execute it is giving 'no matches found'.but it should retrieve a record irrespective of the value given in the zzscom3 field i.e in the output it should display a record having 'warehousing' in zzscom4 field.Because in lfa1 table 'warehousing' is present in zzscom4 field.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Hema&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jul 2007 08:29:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/report/m-p/2534308#M574971</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-18T08:29:34Z</dc:date>
    </item>
    <item>
      <title>Re: Report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/report/m-p/2534309#M574972</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Antony,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;    Thanku very much.My problem was solved.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Hema.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 18 Jul 2007 08:49:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/report/m-p/2534309#M574972</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-18T08:49:57Z</dc:date>
    </item>
    <item>
      <title>Re: Report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/report/m-p/2534310#M574973</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 am working on a report about open STPO. I need pick up the PO data both in header and items level. Such as PO No., doc. date, item No.,schedule line#(item detail infomation), DN No., DN Qty etc.&lt;/P&gt;&lt;P&gt;if one item has one schedule line, there is no problem to get the DN data(even more than one DN), but if there're two or more schedule lines, I can't find the link between the schedule lines and DNs. I can't decide which DNs generate by schedule line1 and which DNs generate by schedule line2&amp;#133;&amp;#133;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how can i link them? is there any table with the relation of them? THS&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 28 Jul 2007 08:02:07 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/report/m-p/2534310#M574973</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-28T08:02:07Z</dc:date>
    </item>
    <item>
      <title>Re: Report</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/report/m-p/2534311#M574974</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 am working on a report about open STPO. I need pick up the PO data both in header and items level. Such as PO No., doc. date, item No.,schedule line#(item detail infomation), DN No., DN Qty etc.&lt;/P&gt;&lt;P&gt;if one item has one schedule line, there is no problem to get the DN data(even more than one DN), but if there're two or more schedule lines, I can't find the link between the schedule lines and DNs. I can't decide which DNs generate by schedule line1 and which DNs generate by schedule line2&amp;#133;&amp;#133;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;how can i link them? is there any table with the relation of them? THS&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sat, 28 Jul 2007 08:05:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/report/m-p/2534311#M574974</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-07-28T08:05:05Z</dc:date>
    </item>
  </channel>
</rss>

