<?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>Question Re: How to check Data Source extraction Logic in Technology Q&amp;A</title>
    <link>https://community.sap.com/t5/technology-q-a/how-to-check-data-source-extraction-logic/qaa-p/6283834#M2302739</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;It is diffecult to check "Standard Business Content Data source (Where can i check Logic)" becasues internally it is having thousends of line of code and Include programs etc.. if you want to then goto RSA3 and check Debug and execute it it will go to all code. Else goto RSA2 and find teh FM and then debug it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Reddy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
    <pubDate>Thu, 12 Nov 2009 03:40:46 GMT</pubDate>
    <dc:creator>former_member181964</dc:creator>
    <dc:date>2009-11-12T03:40:46Z</dc:date>
    <item>
      <title>How to check Data Source extraction Logic</title>
      <link>https://community.sap.com/t5/technology-q-a/how-to-check-data-source-extraction-logic/qaq-p/6283830</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Experts&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please explain me in details steps how/where can i check the logic of data sources&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;We have data sources based on &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) Custom data source based on Function Module  (Where can i check the code/logic....)&lt;/P&gt;&lt;P&gt;2) Standard Business Content Data source (Where can i check Logic)&lt;/P&gt;&lt;P&gt;3) Standard Business Content Data source which is enhanced to inculde ZZ fields (Where can i check Logic)&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Nov 2009 20:40:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/how-to-check-data-source-extraction-logic/qaq-p/6283830</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-11T20:40:13Z</dc:date>
    </item>
    <item>
      <title>Re: How to check Data Source extraction Logic</title>
      <link>https://community.sap.com/t5/technology-q-a/how-to-check-data-source-extraction-logic/qaa-p/6283831#M2302736</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) Custom data source based on Function Module (Where can i check the code/logic....)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Go to tcode &lt;EM&gt;RSO2&lt;/EM&gt;, enter the generic DataSource name and click &lt;EM&gt;Display&lt;/EM&gt;. In the next screen, it will show you the Function Module that that's used for the extraction of data. Copy that FM name, go to tcode &lt;EM&gt;SE37&lt;/EM&gt;, past the FM name that you previously copied and then click on &lt;EM&gt;Display&lt;/EM&gt;. This is where you can view the extraction logic for the generic DataSource based on a Function Module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) Standard Business Content Data source (Where can i check Logic)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Follow the same for display of generic DataSource source. On the initial screen, if you get an I-type message after clicking on &lt;EM&gt;Display&lt;/EM&gt;, that message displays the name of the Function Module being used, otherwise hit &lt;EM&gt;Enter&lt;/EM&gt; to get to the next screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;PRE&gt;&lt;CODE&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3) Standard Business Content Data source which is enhanced to inculde ZZ fields (Where can i check Logic)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;/CODE&gt;&lt;/PRE&gt;&lt;P&gt;Transaction &lt;EM&gt;CMOD&lt;/EM&gt; is used for the creation/maintenance of User Exits. In &lt;EM&gt;CMOD&lt;/EM&gt;, use the dropdown to select the custom &lt;EM&gt;Project&lt;/EM&gt; that's been defined on your source SAP application for BW extraction User Exits, and select the &lt;EM&gt;Components&lt;/EM&gt; radio button. Click on &lt;EM&gt;Display&lt;/EM&gt;. A list of INCLUDE programs will be shown. These INCLUDE programs each represent the four types of DataSources.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;EXIT_SAPLRSAP_001 - Transaction Data DataSources User Exit&lt;/P&gt;&lt;P&gt;EXIT_SAPLRSAP_002 - Master Data Attribute DataSources User Exit&lt;/P&gt;&lt;P&gt;EXIT_SAPLRSAP_003 - Master Data Text DataSources User Exit&lt;/P&gt;&lt;P&gt;EXIT_SAPLRSAP_004 - Master Data Hierarchy DataSources User Exit&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You will have to know the type of data (e.g. Transaction, Master Data Attribute, etc) to know which INCLUDE to go into. Once you know which one to go into, double-click on it and this will bring into display mode on that INCLUDE. Another INCLUDE will be present that begins wth Z*. Double-click on that, and you should then be in the area where the logic is for determining where to go if the DataSource has a certain value and you should be able to get to the code to read through it from there.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can also get to these EXIT_SAPLRSAP_NNN programs via tcode &lt;EM&gt;SE38&lt;/EM&gt;.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Nov 2009 21:15:30 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/how-to-check-data-source-extraction-logic/qaa-p/6283831#M2302736</guid>
      <dc:creator>dennis_scoville4</dc:creator>
      <dc:date>2009-11-11T21:15:30Z</dc:date>
    </item>
    <item>
      <title>Re: How to check Data Source extraction Logic</title>
      <link>https://community.sap.com/t5/technology-q-a/how-to-check-data-source-extraction-logic/qaa-p/6283832#M2302737</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;1) Custom data source based on Function Module (Where can i check the code/logic....)&lt;/P&gt;&lt;P&gt;Check the Datasource it will have Function module , Goto SE37 and give the FM name and check the source code ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) Standard Business Content Data source (Where can i check Logic)&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;RSA2 --&amp;gt; Give the data source name --&amp;gt; extraction tab there is extractor field will have FM name , double click on it and see the logic for that extractor ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3) Standard Business Content Data source which is enhanced to inculde ZZ fields (Where can i check Logic)&lt;/P&gt;&lt;P&gt;depends upon the data source type (transaction data and master data)  go to include program ZXRSAU01 or 02 etc ..&lt;/P&gt;&lt;P&gt;under the specific datasource check logic ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Ravi&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Nov 2009 21:22:13 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/how-to-check-data-source-extraction-logic/qaa-p/6283832#M2302737</guid>
      <dc:creator>ravishanker_cheedepudi</dc:creator>
      <dc:date>2009-11-11T21:22:13Z</dc:date>
    </item>
    <item>
      <title>Re: How to check Data Source extraction Logic</title>
      <link>https://community.sap.com/t5/technology-q-a/how-to-check-data-source-extraction-logic/qaa-p/6283833#M2302738</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks for all the update&lt;/P&gt;&lt;P&gt;Could you please update me on &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) Standard Business Content Data source (Where can i check Logic)&lt;/P&gt;&lt;P&gt;Follow the same for display of generic DataSource source. On the initial screen, if you get an I-type message after clicking on Display, that message displays the name of the Function Module being used, otherwise hit Enter to get to the next screen.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;I didn't follow I-type message&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 11 Nov 2009 21:55:56 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/how-to-check-data-source-extraction-logic/qaa-p/6283833#M2302738</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-11T21:55:56Z</dc:date>
    </item>
    <item>
      <title>Re: How to check Data Source extraction Logic</title>
      <link>https://community.sap.com/t5/technology-q-a/how-to-check-data-source-extraction-logic/qaa-p/6283834#M2302739</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi,&lt;/P&gt;&lt;P&gt;It is diffecult to check "Standard Business Content Data source (Where can i check Logic)" becasues internally it is having thousends of line of code and Include programs etc.. if you want to then goto RSA3 and check Debug and execute it it will go to all code. Else goto RSA2 and find teh FM and then debug it.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;P&gt;Reddy&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Nov 2009 03:40:46 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/how-to-check-data-source-extraction-logic/qaa-p/6283834#M2302739</guid>
      <dc:creator>former_member181964</dc:creator>
      <dc:date>2009-11-12T03:40:46Z</dc:date>
    </item>
    <item>
      <title>Re: How to check Data Source extraction Logic</title>
      <link>https://community.sap.com/t5/technology-q-a/how-to-check-data-source-extraction-logic/qaa-p/6283835#M2302740</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; For check the code you need to follow the bellow steps:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1) Custom data source based on Function Module :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a).Check the Datasource in RSO2(custom datasource/Generice datasource).&lt;/P&gt;&lt;P&gt;b).Find the  Function module in RSO2.&lt;/P&gt;&lt;P&gt;c).Goto SE37 and give the FM name and check the source code ..&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;2) Standard Business Content Data source&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;i).Goto RS02.&lt;/P&gt;&lt;P&gt;ii).Give the data source name --&amp;gt; On the initial screen, if you get an I-type message after clicking on Display, that message displays the name of the Function Module .&lt;/P&gt;&lt;P&gt;iii).Goto SE37, check the souce code.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;3).Standard Business Content Data source which is enhanced to inculde ZZ fields &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;a). GOTO CMOD.&lt;/P&gt;&lt;P&gt;b).Give the project name and click on display.&lt;/P&gt;&lt;P&gt;c). double click on ZXRSAUO1.&lt;/P&gt;&lt;P&gt;d). it displays&lt;/P&gt;&lt;P&gt;    EXIT_SAPLRSAP_001 - Transaction Data DataSources User Exit&lt;/P&gt;&lt;P&gt;    EXIT_SAPLRSAP_002 - Master Data Attribute DataSources User Exit&lt;/P&gt;&lt;P&gt;    EXIT_SAPLRSAP_003 - Master Data Text DataSources User Exit&lt;/P&gt;&lt;P&gt;    EXIT_SAPLRSAP_004 - Master Data Hierarchy DataSources User Exit&lt;/P&gt;&lt;P&gt;e). select relevent Exits.&lt;/P&gt;&lt;P&gt;f). Find your datasouce name from WHEN'DATASOUCENAME'.&lt;/P&gt;&lt;P&gt;g). check the code and find the functional module (if it exists).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;you can follow above 3 types. those are halp full to check the code if requires.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Suman&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Nov 2009 04:36:37 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/how-to-check-data-source-extraction-logic/qaa-p/6283835#M2302740</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2009-11-12T04:36:37Z</dc:date>
    </item>
  </channel>
</rss>

