<?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 Report Development in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/report-development/m-p/1838921#M356745</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi abapers,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; i want write join condition between two tables (AQGDBBG &amp;amp; AQLQCAT)&lt;/P&gt;&lt;P&gt;can you give me sample coding.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table AQGDBBG -SAP Query: User Groups&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Field NUM  -  SAP Query (S): Name of a user group&lt;/P&gt;&lt;P&gt;Field BGCNAM - SAP Query (S): Name of user&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table AQLQCAT - SAP Query: Query Catalog&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Field NUM  -SAP Query (S): Name of a user group&lt;/P&gt;&lt;P&gt;Field QNUM - SAP Query (S): Query name&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&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;Rajendren.P&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Mon, 29 Jan 2007 10:18:09 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2007-01-29T10:18:09Z</dc:date>
    <item>
      <title>Report Development</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/report-development/m-p/1838921#M356745</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi abapers,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; i want write join condition between two tables (AQGDBBG &amp;amp; AQLQCAT)&lt;/P&gt;&lt;P&gt;can you give me sample coding.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table AQGDBBG -SAP Query: User Groups&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Field NUM  -  SAP Query (S): Name of a user group&lt;/P&gt;&lt;P&gt;Field BGCNAM - SAP Query (S): Name of user&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Table AQLQCAT - SAP Query: Query Catalog&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Field NUM  -SAP Query (S): Name of a user group&lt;/P&gt;&lt;P&gt;Field QNUM - SAP Query (S): Query name&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks in advance.&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;Rajendren.P&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Jan 2007 10:18:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/report-development/m-p/1838921#M356745</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-29T10:18:09Z</dc:date>
    </item>
    <item>
      <title>Re: Report Development</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/report-development/m-p/1838922#M356746</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi rajendren,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select a~num &lt;/P&gt;&lt;P&gt;          a~bgcnam&lt;/P&gt;&lt;P&gt;          b~qnum&lt;/P&gt;&lt;P&gt;          INTO TABLE itab&lt;/P&gt;&lt;P&gt;          from AQGDBBG as a&lt;/P&gt;&lt;P&gt;          join AQLQCAT as b&lt;/P&gt;&lt;P&gt;         &lt;/P&gt;&lt;P&gt;         on b&lt;SUB&gt;num eq a&lt;/SUB&gt;num&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Jan 2007 10:23:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/report-development/m-p/1838922#M356746</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-29T10:23:57Z</dc:date>
    </item>
    <item>
      <title>Re: Report Development</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/report-development/m-p/1838923#M356747</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;select a&lt;SUB&gt;num a&lt;/SUB&gt;bgcnam b~qnum into table itab&lt;/P&gt;&lt;P&gt; from aqgdbbg as a inner join aqlacat as b&lt;/P&gt;&lt;P&gt; on a&lt;SUB&gt;num = b&lt;/SUB&gt;num.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Jan 2007 10:25:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/report-development/m-p/1838923#M356747</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-29T10:25:00Z</dc:date>
    </item>
    <item>
      <title>Re: Report Development</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/report-development/m-p/1838924#M356748</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Joined tables are used in a select statement to combine data from two or more tables that share one or more columns. With Open SQL you can use inner join and left outer join.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Syntax&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt; ')'.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If the join is a left outer join the following additional restrictions apply to the search condition:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;·        The search condition must contain comparison predicates only&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;·        Comparison predicates can only be combined by use of AND&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;·        Each comparison predicate can compare two columns, where the two columns must be from the respective tables that are to be joined. If the left hand side of the join is itself a join, the column reference must not be from a outer table (where outer table is the right table of a left outer join). The comparison predicate can also compare one column reference from a table on the right-hand side of the join with a constant value.&lt;/P&gt;&lt;P&gt;Examples&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This graphic is explained in the accompanying text&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT employee_name, manager_name&lt;/P&gt;&lt;P&gt;    FROM employees AS e JOIN managers AS m&lt;/P&gt;&lt;P&gt;        ON e.manager_id = m.manager_id&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The INNER JOIN.  This query produces a list of all employees that have a manager along with their respective managers. Here, the FROM clause contains an inner join of two tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This graphic is explained in the accompanying text&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT employee_name, manager_name&lt;/P&gt;&lt;P&gt;    FROM employees AS e LEFT OUTER JOIN managers AS m&lt;/P&gt;&lt;P&gt;        ON e.manager_id = m.manager_id&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The LEFT OUTER JOIN.  This query produces a list of all employees along with their respective managers. If an employee does not have a manager, the manager&amp;#146;s name is NULL. Here, the FROM clause contains an left outer join of two tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this clarified your doubt.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Jan 2007 10:32:01 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/report-development/m-p/1838924#M356748</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-29T10:32:01Z</dc:date>
    </item>
    <item>
      <title>Re: Report Development</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/report-development/m-p/1838925#M356749</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Joined tables are used in a select statement to combine data from two or more tables that share one or more columns. With Open SQL you can use inner join and left outer join.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Syntax&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The INNER JOIN. This query produces a list of all employees that have a manager along with their respective managers. Here, the FROM clause contains an inner join of two tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This graphic is explained in the accompanying text&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT employee_name, manager_name&lt;/P&gt;&lt;P&gt;FROM employees AS e LEFT OUTER JOIN managers AS m&lt;/P&gt;&lt;P&gt;ON e.manager_id = m.manager_id&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The LEFT OUTER JOIN. This query produces a list of all employees along with their respective managers. If an employee does not have a manager, the manager&amp;#146;s name is NULL. Here, the FROM clause contains an left outer join of two tables.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Hope this clarified your doubt.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 29 Jan 2007 10:36:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/report-development/m-p/1838925#M356749</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2007-01-29T10:36:03Z</dc:date>
    </item>
  </channel>
</rss>

