<?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: ABAP-Module Pool in Application Development and Automation Discussions</title>
    <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-module-pool/m-p/12266395#M1987480</link>
    <description>&lt;P&gt;&lt;SPAN class="mention-scrubbed"&gt;subhajitsaha&lt;/SPAN&gt;,&lt;/P&gt;&lt;P&gt;I don't understand the need to Join MKPF and MSEG tables as both your required fields are present in MKPF itself. As suggested by &lt;SPAN class="mention-scrubbed"&gt;tammy.powlas3&lt;/SPAN&gt; V_MKPF already has both your required fields as shown below:&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/1831842-scn.png" /&gt;&lt;/P&gt;&lt;P&gt;Even the Join Conditions is as required as shown below:&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/1831843-scn.png" /&gt;&lt;/P&gt;&lt;P&gt;You can write a select query directly up on V_MKPF using the below Code:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECT mblnr,
       budat
FROM v_mkpf
INTO TABLE @DATA(gt_vmkpf).
IF sy-subrc EQ 0.
  SORT gt_vmkpf BY mblnr.
ENDIF.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Regards!&lt;/P&gt;</description>
    <pubDate>Sun, 09 Aug 2020 06:18:11 GMT</pubDate>
    <dc:creator>former_member1716</dc:creator>
    <dc:date>2020-08-09T06:18:11Z</dc:date>
    <item>
      <title>ABAP-Module Pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-module-pool/m-p/12266392#M1987477</link>
      <description>&lt;P&gt;Can anyone help me with the logic ...I am a fresher ..&lt;/P&gt;
  &lt;P&gt;Material Document No- MSEG-MBLNR&lt;/P&gt;
  &lt;P&gt;Date - MKPF-BUDAT&lt;/P&gt;
  &lt;P&gt;I have to combine this two table and MBLNR is the key field&lt;/P&gt;</description>
      <pubDate>Sat, 08 Aug 2020 12:33:43 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-module-pool/m-p/12266392#M1987477</guid>
      <dc:creator>former_member669595</dc:creator>
      <dc:date>2020-08-08T12:33:43Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP-Module Pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-module-pool/m-p/12266393#M1987478</link>
      <description>&lt;P&gt;I recommend getting familiar with transaction SE11, and views and where used&lt;/P&gt;&lt;P&gt;View V_MKPF already joins tables MSEG and MKPF and has the fields BUDAT and MBLNR&lt;/P&gt;</description>
      <pubDate>Sat, 08 Aug 2020 12:48:28 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-module-pool/m-p/12266393#M1987478</guid>
      <dc:creator>TammyPowlas</dc:creator>
      <dc:date>2020-08-08T12:48:28Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP-Module Pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-module-pool/m-p/12266394#M1987479</link>
      <description>&lt;P&gt;Please choose a meaningful title (like how to read the tables MSEG and MKPF in a single shot).&lt;/P&gt;</description>
      <pubDate>Sat, 08 Aug 2020 12:53:00 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-module-pool/m-p/12266394#M1987479</guid>
      <dc:creator>Sandra_Rossi</dc:creator>
      <dc:date>2020-08-08T12:53:00Z</dc:date>
    </item>
    <item>
      <title>Re: ABAP-Module Pool</title>
      <link>https://community.sap.com/t5/application-development-and-automation-discussions/abap-module-pool/m-p/12266395#M1987480</link>
      <description>&lt;P&gt;&lt;SPAN class="mention-scrubbed"&gt;subhajitsaha&lt;/SPAN&gt;,&lt;/P&gt;&lt;P&gt;I don't understand the need to Join MKPF and MSEG tables as both your required fields are present in MKPF itself. As suggested by &lt;SPAN class="mention-scrubbed"&gt;tammy.powlas3&lt;/SPAN&gt; V_MKPF already has both your required fields as shown below:&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/1831842-scn.png" /&gt;&lt;/P&gt;&lt;P&gt;Even the Join Conditions is as required as shown below:&lt;/P&gt;&lt;P&gt;&lt;IMG class="migrated-image" src="https://community.sap.com/legacyfs/online/storage/attachments/storage/7/attachments/1831843-scn.png" /&gt;&lt;/P&gt;&lt;P&gt;You can write a select query directly up on V_MKPF using the below Code:&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;SELECT mblnr,
       budat
FROM v_mkpf
INTO TABLE @DATA(gt_vmkpf).
IF sy-subrc EQ 0.
  SORT gt_vmkpf BY mblnr.
ENDIF.
&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Regards!&lt;/P&gt;</description>
      <pubDate>Sun, 09 Aug 2020 06:18:11 GMT</pubDate>
      <guid>https://community.sap.com/t5/application-development-and-automation-discussions/abap-module-pool/m-p/12266395#M1987480</guid>
      <dc:creator>former_member1716</dc:creator>
      <dc:date>2020-08-09T06:18:11Z</dc:date>
    </item>
  </channel>
</rss>

