<?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: select join in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-join/m-p/1692843#M304130</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;use the same one it will work for example &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT R~MATNR "R = MARA&lt;/P&gt;&lt;P&gt;           R~VPSTA&lt;/P&gt;&lt;P&gt;           R~MTART&lt;/P&gt;&lt;P&gt;           R~MATKL&lt;/P&gt;&lt;P&gt;           R~MBRSH&lt;/P&gt;&lt;P&gt;           R~MEINS&lt;/P&gt;&lt;P&gt;           R~GEWEI&lt;/P&gt;&lt;P&gt;           R~RAUBE&lt;/P&gt;&lt;P&gt;           R~SPART&lt;/P&gt;&lt;P&gt;           R~PRDHA&lt;/P&gt;&lt;P&gt;           R~MAGRV&lt;/P&gt;&lt;P&gt;           C~MATNR "C = MARC&lt;/P&gt;&lt;P&gt;           C~WERKS&lt;/P&gt;&lt;P&gt;           C~PSTAT&lt;/P&gt;&lt;P&gt;           C~PLIFZ&lt;/P&gt;&lt;P&gt;           C~SSQSS&lt;/P&gt;&lt;P&gt;           C~LADGR&lt;/P&gt;&lt;P&gt;           C~SERNP&lt;/P&gt;&lt;P&gt;           C~PERIV&lt;/P&gt;&lt;P&gt;           C~STAWN&lt;/P&gt;&lt;P&gt;           C~HERKL&lt;/P&gt;&lt;P&gt;           C~EKGRP&lt;/P&gt;&lt;P&gt;           C~DISMM&lt;/P&gt;&lt;P&gt;           C~DISPO&lt;/P&gt;&lt;P&gt;           C~DISLS&lt;/P&gt;&lt;P&gt;           C~LGPRO&lt;/P&gt;&lt;P&gt;           C~FHORI&lt;/P&gt;&lt;P&gt;           C~DZEIT&lt;/P&gt;&lt;P&gt;           C~BWSCL&lt;/P&gt;&lt;P&gt;           C~AWSLS&lt;/P&gt;&lt;P&gt;           C~LGFSB&lt;/P&gt;&lt;P&gt;      INTO CORRESPONDING FIELDS OF TABLE IT_TOTAL&lt;/P&gt;&lt;P&gt;      FROM  ( MARA AS R&lt;/P&gt;&lt;P&gt;               INNER JOIN MARC AS C ON C&lt;SUB&gt;MATNR = R&lt;/SUB&gt;MATNR )&lt;/P&gt;&lt;P&gt;      WHERE R~MATNR IN R_MATNR  AND&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;         R~MTART IN S_MTART  AND&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;            C~WERKS IN R_WERKS .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Tue, 24 Oct 2006 12:30:18 GMT</pubDate>
    <dc:creator>Former Member</dc:creator>
    <dc:date>2006-10-24T12:30:18Z</dc:date>
    <item>
      <title>select join</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-join/m-p/1692838#M304125</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;I want to create a select join on 2 tables and I want to select ALL of the fields from the 1st table(without having to list them) and just a few (I'll list them) from the 2nd table.  Is this possible?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Oct 2006 23:35:49 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-join/m-p/1692838#M304125</guid>
      <dc:creator>sap_cohort</dc:creator>
      <dc:date>2006-10-23T23:35:49Z</dc:date>
    </item>
    <item>
      <title>Re: select join</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-join/m-p/1692839#M304126</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;Yes...It is possible..You can use dynamic fields selection..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Check this example..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;PARAMETERS: P_MATNR TYPE MATNR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF ITAB OCCURS 0.&lt;/P&gt;&lt;P&gt;        INCLUDE STRUCTURE MARA.&lt;/P&gt;&lt;P&gt;DATA:   WERKS   LIKE MARC-WERKS,&lt;/P&gt;&lt;P&gt;      END OF ITAB.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: BEGIN OF DY_FIELDS OCCURS 0,&lt;/P&gt;&lt;P&gt;        FIELD(61),&lt;/P&gt;&lt;P&gt;      END OF DY_FIELDS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;DATA: FIELDS LIKE DFIES OCCURS 0 WITH HEADER LINE.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CALL FUNCTION 'DDIF_NAMETAB_GET'&lt;/P&gt;&lt;P&gt;  EXPORTING&lt;/P&gt;&lt;P&gt;    tabname           = 'MARA'&lt;/P&gt;&lt;P&gt; TABLES&lt;/P&gt;&lt;P&gt;   DFIES_TAB         = FIELDS&lt;/P&gt;&lt;P&gt; EXCEPTIONS&lt;/P&gt;&lt;P&gt;   NOT_FOUND         = 1&lt;/P&gt;&lt;P&gt;   OTHERS            = 2&lt;/P&gt;&lt;P&gt;          .&lt;/P&gt;&lt;P&gt;IF sy-subrc &amp;lt;&amp;gt; 0.&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;MESSAGE ID SY-MSGID TYPE SY-MSGTY NUMBER SY-MSGNO&lt;/P&gt;&lt;/LI&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;        WITH SY-MSGV1 SY-MSGV2 SY-MSGV3 SY-MSGV4.&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;ENDIF.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;LOOP AT FIELDS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CLEAR: DY_FIELDS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  CONCATENATE 'A~' FIELDS-FIELDNAME INTO DY_FIELDS-FIELD.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;  APPEND DY_FIELDS.&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;&lt;/P&gt;&lt;P&gt;DY_FIELDS = 'B~WERKS'.&lt;/P&gt;&lt;P&gt;APPEND DY_FIELDS.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT (DY_FIELDS)&lt;/P&gt;&lt;P&gt;       INTO TABLE ITAB&lt;/P&gt;&lt;P&gt;       FROM MARA AS A INNER JOIN MARC AS B&lt;/P&gt;&lt;P&gt;       ON A&lt;SUB&gt;MATNR = B&lt;/SUB&gt;MATNR&lt;/P&gt;&lt;P&gt;       WHERE A~MATNR = P_MATNR.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;CHECK SY-SUBRC = 0.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Oct 2006 23:45:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-join/m-p/1692839#M304126</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-23T23:45:27Z</dc:date>
    </item>
    <item>
      <title>Re: select join</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-join/m-p/1692840#M304127</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;select ... left out join ?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Oct 2006 02:21:02 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-join/m-p/1692840#M304127</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-24T02:21:02Z</dc:date>
    </item>
    <item>
      <title>Re: select join</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-join/m-p/1692841#M304128</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi&lt;/P&gt;&lt;P&gt;good&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;using JOIN statement you can do that.&lt;/P&gt;&lt;P&gt;go through this example and use accordingly&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select aufk&lt;SUB&gt;mandt aufk&lt;/SUB&gt;aufnr aufk&lt;SUB&gt;objnr aufk&lt;/SUB&gt;autyp &lt;/P&gt;&lt;P&gt;           aufk&lt;SUB&gt;werks aufk&lt;/SUB&gt;auart aufk~ktext &lt;/P&gt;&lt;P&gt;           aufk&lt;SUB&gt;flg_mltps aufk&lt;/SUB&gt;bukrs aufk&lt;SUB&gt;zschl aufk&lt;/SUB&gt;procnr     "I_40C1 &lt;/P&gt;&lt;P&gt;           aufk&lt;SUB&gt;prctr makt&lt;/SUB&gt;maktx       "I_46A &lt;/P&gt;&lt;P&gt;           afpo&lt;SUB&gt;posnr afpo&lt;/SUB&gt;objnp       "I_40C1 &lt;/P&gt;&lt;P&gt;           afpo&lt;SUB&gt;matnr afpo&lt;/SUB&gt;pwerk &lt;/P&gt;&lt;P&gt;           afpo&lt;SUB&gt;wemng afpo&lt;/SUB&gt;psmng afpo~amein &lt;/P&gt;&lt;P&gt;           into corresponding fields of table t_auftrag &lt;/P&gt;&lt;P&gt;           from ( aufk inner join afpo &lt;/P&gt;&lt;P&gt;                  on aufk&lt;SUB&gt;aufnr = afpo&lt;/SUB&gt;aufnr &lt;/P&gt;&lt;P&gt;                )                      "I_40C1 &lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;                and afpo~posnr = '0001' )                     "D_40C1 &lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;                left outer join makt on"I_46A &lt;/P&gt;&lt;P&gt;                   afpo&lt;SUB&gt;matnr = makt&lt;/SUB&gt;matnr and                  "I_46A &lt;/P&gt;&lt;P&gt;                   makt~spras = sy-langu                        "I_46A &lt;/P&gt;&lt;P&gt;          where aufk~autyp in abgrauty &lt;/P&gt;&lt;P&gt;             and aufk~werks in abgrwerk &lt;/P&gt;&lt;P&gt;             and aufk~auart in abgraufa &lt;/P&gt;&lt;P&gt;             and aufk~aufnr in abgraufn &lt;/P&gt;&lt;P&gt;             and aufk~kokrs eq kokrs &lt;/P&gt;&lt;P&gt;             and aufk~loekz eq space &lt;/P&gt;&lt;P&gt;             and aufk~pkosa eq space   "I40C_PK &lt;/P&gt;&lt;P&gt;             and aufk~abgsl ne space. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;thanks&lt;/P&gt;&lt;P&gt;mrutyun^&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Oct 2006 04:40:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-join/m-p/1692841#M304128</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-24T04:40:33Z</dc:date>
    </item>
    <item>
      <title>Re: select join</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-join/m-p/1692842#M304129</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Is it not possible to have something like the following or do you just have to specify all of the individual fields when your using the join?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;select A~* B~Field1 B~Field2 B~field3.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Oct 2006 12:25:52 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-join/m-p/1692842#M304129</guid>
      <dc:creator>sap_cohort</dc:creator>
      <dc:date>2006-10-24T12:25:52Z</dc:date>
    </item>
    <item>
      <title>Re: select join</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-join/m-p/1692843#M304130</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;hi,&lt;/P&gt;&lt;P&gt;use the same one it will work for example &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;SELECT R~MATNR "R = MARA&lt;/P&gt;&lt;P&gt;           R~VPSTA&lt;/P&gt;&lt;P&gt;           R~MTART&lt;/P&gt;&lt;P&gt;           R~MATKL&lt;/P&gt;&lt;P&gt;           R~MBRSH&lt;/P&gt;&lt;P&gt;           R~MEINS&lt;/P&gt;&lt;P&gt;           R~GEWEI&lt;/P&gt;&lt;P&gt;           R~RAUBE&lt;/P&gt;&lt;P&gt;           R~SPART&lt;/P&gt;&lt;P&gt;           R~PRDHA&lt;/P&gt;&lt;P&gt;           R~MAGRV&lt;/P&gt;&lt;P&gt;           C~MATNR "C = MARC&lt;/P&gt;&lt;P&gt;           C~WERKS&lt;/P&gt;&lt;P&gt;           C~PSTAT&lt;/P&gt;&lt;P&gt;           C~PLIFZ&lt;/P&gt;&lt;P&gt;           C~SSQSS&lt;/P&gt;&lt;P&gt;           C~LADGR&lt;/P&gt;&lt;P&gt;           C~SERNP&lt;/P&gt;&lt;P&gt;           C~PERIV&lt;/P&gt;&lt;P&gt;           C~STAWN&lt;/P&gt;&lt;P&gt;           C~HERKL&lt;/P&gt;&lt;P&gt;           C~EKGRP&lt;/P&gt;&lt;P&gt;           C~DISMM&lt;/P&gt;&lt;P&gt;           C~DISPO&lt;/P&gt;&lt;P&gt;           C~DISLS&lt;/P&gt;&lt;P&gt;           C~LGPRO&lt;/P&gt;&lt;P&gt;           C~FHORI&lt;/P&gt;&lt;P&gt;           C~DZEIT&lt;/P&gt;&lt;P&gt;           C~BWSCL&lt;/P&gt;&lt;P&gt;           C~AWSLS&lt;/P&gt;&lt;P&gt;           C~LGFSB&lt;/P&gt;&lt;P&gt;      INTO CORRESPONDING FIELDS OF TABLE IT_TOTAL&lt;/P&gt;&lt;P&gt;      FROM  ( MARA AS R&lt;/P&gt;&lt;P&gt;               INNER JOIN MARC AS C ON C&lt;SUB&gt;MATNR = R&lt;/SUB&gt;MATNR )&lt;/P&gt;&lt;P&gt;      WHERE R~MATNR IN R_MATNR  AND&lt;/P&gt;&lt;UL&gt;&lt;LI level="1" type="ul"&gt;&lt;P&gt;         R~MTART IN S_MTART  AND&lt;/P&gt;&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;            C~WERKS IN R_WERKS .&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Oct 2006 12:30:18 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-join/m-p/1692843#M304130</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-24T12:30:18Z</dc:date>
    </item>
    <item>
      <title>Re: select join</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-join/m-p/1692844#M304131</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Sorry, I'm not following you.  I want to select all of the fields of the 1st table without specifying them individually like you have.  Can't we somehow say select all fields from the 1st table and then specify individually the fields I need from the 2nd table?&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks!&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Oct 2006 12:40:26 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-join/m-p/1692844#M304131</guid>
      <dc:creator>sap_cohort</dc:creator>
      <dc:date>2006-10-24T12:40:26Z</dc:date>
    </item>
    <item>
      <title>Re: select join</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-join/m-p/1692845#M304132</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Kenneth, that is not support by ABAP,  as mentioned earily you can use a dynamic field list, or you can simply say....&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;select &amp;lt;b&amp;gt;* into corresponding fields&amp;lt;/b&amp;gt; of table itab.&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want all of the fields of the first table, then just use *,&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, 24 Oct 2006 12:59:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-join/m-p/1692845#M304132</guid>
      <dc:creator>RichHeilman</dc:creator>
      <dc:date>2006-10-24T12:59:09Z</dc:date>
    </item>
    <item>
      <title>Re: select join</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-join/m-p/1692846#M304133</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kenneth,&lt;/P&gt;&lt;P&gt;   I think you cannot do that.&lt;/P&gt;&lt;P&gt;YOu have to go for two different selects using For all entries.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;select *&lt;/P&gt;&lt;P&gt;  from &amp;lt;table1&amp;gt;&lt;/P&gt;&lt;P&gt; into itab1&lt;/P&gt;&lt;P&gt;where &amp;lt;where cond&amp;gt;.&lt;/P&gt;&lt;P&gt;if not itab1[] is initial.&lt;/P&gt;&lt;P&gt;select field1&lt;/P&gt;&lt;P&gt;       field2&lt;/P&gt;&lt;P&gt;       field3&lt;/P&gt;&lt;P&gt;  from &amp;lt;table2&amp;gt;&lt;/P&gt;&lt;P&gt;into table itab2&lt;/P&gt;&lt;P&gt;for all entries in itab1&lt;/P&gt;&lt;P&gt;where field1 = itab1-field1&lt;/P&gt;&lt;P&gt;      field2 = itab1-field2&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;.&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Loop at itab2.&lt;/P&gt;&lt;P&gt;read table itab1 with key field1 = itab2-field1&lt;/P&gt;&lt;P&gt;                          field2 = itab2-field2.&lt;/P&gt;&lt;P&gt;if sy-subrc = 0.&lt;/P&gt;&lt;P&gt;move-correspoding itab2 to it_final.&lt;/P&gt;&lt;P&gt;move-correspoding itab1 to it_final.&lt;/P&gt;&lt;P&gt;append it_final.&lt;/P&gt;&lt;P&gt;clear it_final.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;endif.&lt;/P&gt;&lt;P&gt;endloop.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Oct 2006 13:01:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-join/m-p/1692846#M304133</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-24T13:01:34Z</dc:date>
    </item>
    <item>
      <title>Re: select join</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-join/m-p/1692847#M304134</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;You cannot do the A~*, as sap will not recognize it..You can use the dynamic field selection as I mentioned above..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks,&lt;/P&gt;&lt;P&gt;Naren&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Tue, 24 Oct 2006 14:55:27 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-join/m-p/1692847#M304134</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2006-10-24T14:55:27Z</dc:date>
    </item>
    <item>
      <title>Re: select join</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-join/m-p/1692848#M304135</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Question Answered.. No supported.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 14 Dec 2006 20:00:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-join/m-p/1692848#M304135</guid>
      <dc:creator>sap_cohort</dc:creator>
      <dc:date>2006-12-14T20:00:56Z</dc:date>
    </item>
  </channel>
</rss>

