<?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 select data E071K / E070 in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-data-e071k-e070/m-p/12629665#M2013225</link>
    <description>&lt;P&gt;Hi everyone,&lt;/P&gt;
  &lt;P&gt;plz help &lt;/P&gt;
  &lt;P&gt;i have in the selection screen : &lt;/P&gt; 
  &lt;PRE&gt;&lt;CODE&gt;1/ SELECT-OPTIONS: typ_ob   FOR e071k-mastertype NO INTERVALS MODIF ID z,
                   nom1_ob  FOR e071k-mastername NO INTERVALS MODIF ID z,
                   nom2_ob  FOR e071k-tabkey NO INTERVALS MODIF ID z.

2/ SELECT-OPTIONS: nam_obj FOR e071-obj_name NO INTERVALS MODIF ID zz.&lt;/CODE&gt;&lt;/PRE&gt;
  &lt;P&gt; what is the rights requests to get the 3 data from e071k and the data from e071 to display then in different ALV ?&lt;/P&gt;
  &lt;P&gt;thanks&lt;BR /&gt;regards.&lt;/P&gt;</description>
    <pubDate>Thu, 25 Aug 2022 15:35:12 GMT</pubDate>
    <dc:creator>former_member810309</dc:creator>
    <dc:date>2022-08-25T15:35:12Z</dc:date>
    <item>
      <title>select data E071K / E070</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-data-e071k-e070/m-p/12629665#M2013225</link>
      <description>&lt;P&gt;Hi everyone,&lt;/P&gt;
  &lt;P&gt;plz help &lt;/P&gt;
  &lt;P&gt;i have in the selection screen : &lt;/P&gt; 
  &lt;PRE&gt;&lt;CODE&gt;1/ SELECT-OPTIONS: typ_ob   FOR e071k-mastertype NO INTERVALS MODIF ID z,
                   nom1_ob  FOR e071k-mastername NO INTERVALS MODIF ID z,
                   nom2_ob  FOR e071k-tabkey NO INTERVALS MODIF ID z.

2/ SELECT-OPTIONS: nam_obj FOR e071-obj_name NO INTERVALS MODIF ID zz.&lt;/CODE&gt;&lt;/PRE&gt;
  &lt;P&gt; what is the rights requests to get the 3 data from e071k and the data from e071 to display then in different ALV ?&lt;/P&gt;
  &lt;P&gt;thanks&lt;BR /&gt;regards.&lt;/P&gt;</description>
      <pubDate>Thu, 25 Aug 2022 15:35:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-data-e071k-e070/m-p/12629665#M2013225</guid>
      <dc:creator>former_member810309</dc:creator>
      <dc:date>2022-08-25T15:35:12Z</dc:date>
    </item>
    <item>
      <title>Re: select data E071K / E070</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-data-e071k-e070/m-p/12629666#M2013226</link>
      <description>&lt;P&gt;What do you think? What exact problem do you encounter?&lt;/P&gt;</description>
      <pubDate>Thu, 25 Aug 2022 16:57:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-data-e071k-e070/m-p/12629666#M2013226</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2022-08-25T16:57:32Z</dc:date>
    </item>
    <item>
      <title>Re: select data E071K / E070</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-data-e071k-e070/m-p/12629667#M2013227</link>
      <description>&lt;P&gt;hi Sandra, &lt;BR /&gt;i want to get this data (mastertype, mastername, tabkey from e071k and obj_name from e071) i don't know how write correctly the 2 requests.&lt;/P&gt;</description>
      <pubDate>Fri, 26 Aug 2022 07:00:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-data-e071k-e070/m-p/12629667#M2013227</guid>
      <dc:creator>former_member810309</dc:creator>
      <dc:date>2022-08-26T07:00:32Z</dc:date>
    </item>
    <item>
      <title>Re: select data E071K / E070</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-data-e071k-e070/m-p/12629668#M2013228</link>
      <description>&lt;P&gt;There is a class to select the data.&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;data cts_selection type ref to cl_cts_request_selection.
cts_selection = new #( i_username = sy-uname
                       it_selection_parameters = value #( ( trkorrpattern = |{ sy-sysid }K*|
                                                            client = sy-mandt
                                                            stdrequest = space
                                                            connect_req_task_conditions = 'X'
                                                            reqfunctions = sctsc_types_projects
                                                            taskfunctions = sctsc_types_tasks
                                                            reqstatus = sctsc_states_all
                                                            taskstatus = sctsc_states_all ) ) ).&lt;BR /&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;PRE&gt;&lt;CODE&gt;data transports type strhi_requests_wd.
cts_selection-&amp;gt;select_requests_from_db( importing et_requests = transports
                                        exceptions internal_error = 1
                                                   others         = 2 ).&lt;BR /&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;&lt;BR /&gt;Or use Funktionmodule TR_READ_REQUEST_WITH_TASKS to get the data.&lt;/P&gt;</description>
      <pubDate>Fri, 26 Aug 2022 07:21:40 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-data-e071k-e070/m-p/12629668#M2013228</guid>
      <dc:creator>ascm</dc:creator>
      <dc:date>2022-08-26T07:21:40Z</dc:date>
    </item>
    <item>
      <title>Re: select data E071K / E070</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-data-e071k-e070/m-p/12629669#M2013229</link>
      <description>&lt;P&gt;The syntax to read tables is SELECT column1, column2, ... FROM table1 INNER JOIN table2 ON condition INTO TABLE internal_table. Indicate the tables E071K and E071, and all the columns you want. I don't know if you need other details. Which ones?&lt;/P&gt;</description>
      <pubDate>Fri, 26 Aug 2022 08:15:57 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-data-e071k-e070/m-p/12629669#M2013229</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2022-08-26T08:15:57Z</dc:date>
    </item>
    <item>
      <title>Re: select data E071K / E070</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/select-data-e071k-e070/m-p/12629670#M2013230</link>
      <description>&lt;P&gt;Look for &lt;A href="https://help.sap.com/doc/abapdocu_latest_index_htm/latest/en-US/index.htm?file=abapselect.htm"&gt;SELECT&lt;/A&gt; and &lt;A href="https://help.sap.com/doc/abapdocu_latest_index_htm/latest/en-US/index.htm?file=abapselect_join.htm"&gt;JOIN&lt;/A&gt; in online help, &lt;/P&gt;</description>
      <pubDate>Fri, 26 Aug 2022 08:35:54 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/select-data-e071k-e070/m-p/12629670#M2013230</guid>
      <dc:creator>RaymondGiuseppi</dc:creator>
      <dc:date>2022-08-26T08:35:54Z</dc:date>
    </item>
  </channel>
</rss>

