<?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: Data from BSEG matching custom table.. in Technology Q&amp;A</title>
    <link>https://community.sap.com/t5/technology-q-a/data-from-bseg-matching-custom-table/qaa-p/9716642#M3477902</link>
    <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have you check the link provided by me. I have given the complete code over there.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please check it you would get the idea.&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, 16 Sep 2013 15:11:34 GMT</pubDate>
    <dc:creator>KamalMehta</dc:creator>
    <dc:date>2013-09-16T15:11:34Z</dc:date>
    <item>
      <title>Data from BSEG matching custom table..</title>
      <link>https://community.sap.com/t5/technology-q-a/data-from-bseg-matching-custom-table/qaq-p/9716632</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Friends,&lt;/P&gt;&lt;P&gt;I got a little tricky requirement.&lt;/P&gt;&lt;P&gt;&lt;BR /&gt;Client has got 2 custom tables which holds the document number and the unique ID (UID).&lt;/P&gt;&lt;P&gt;Now I am expected to get the amount data relevant to this from BSEG.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Flow -&amp;gt; Get the doc number from 2nd custom table based on some keys in 1st custom table. Then pass on this to BSEG to get the data using doc number.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Am not clear if its related to Gl, AP or AR...yet. All I am aware is to get the amounts data from BSEG, as per the requirement.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Am thinking of below solutions:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;Use the standard extractor (0FI_GL_04 alone?) which gets the data from BSEG and BKPF (Read from other posts). Enhance this with the unique Key (UID). Build this into a DSO. Build the DSOs on other 2 custom tables (Transparent) ones (Generic DS), and do a look up on these in the DSO of 0FI_GL_04 to get the amounts for the UID. Not sure about this approach though&lt;/LI&gt;&lt;LI&gt;Go for the View on req fields in BKPF/BSEG with join on key fields, create a generic DS. Load this to the DSO, and then look up the other 2 custom table DSOs? Is a view possible on BKPF/BSEG (BSEG being cluster table - Read from other posts that it is possible?)&lt;/LI&gt;&lt;LI&gt;Build a FM based extractor for all the 3 tables in source? Guess this might be complicated? Am not familiar with this. View is not possible on join of these 3 as there is no key field common in BSEG to the custom tables.&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please suggest on solutions as I really need your help in pros and cons or any other better alternatives for this &lt;SPAN __jive_emoticon_name="sad" __jive_macro_name="emoticon" class="jive_macro jive_emote" src="https://community.sap.com/1735/images/emoticons/sad.gif"&gt;&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Sep 2013 17:01:17 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/data-from-bseg-matching-custom-table/qaq-p/9716632</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-09-12T17:01:17Z</dc:date>
    </item>
    <item>
      <title>Re: Data from BSEG matching custom table..</title>
      <link>https://community.sap.com/t5/technology-q-a/data-from-bseg-matching-custom-table/qaa-p/9716633#M3477893</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Aditya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your second option will not be possible.&amp;nbsp; Bseg is a clustered table and as such cannot be used in a view.&lt;/P&gt;&lt;P&gt;The first option is not recommended, as you would load quite a lot of data in BI, that you would not be using.&amp;nbsp; It's also possible that you would have issues with the timings of both loads : all records should exist in the lookup table at the time of the load of the custom tables.&amp;nbsp; You would have to be careful about this.&lt;/P&gt;&lt;P&gt;I would go for the third option : create a custom datasource using RSO2, based on a function.&amp;nbsp; You will need to write the extractor function yourself (or ask an abap developer).&amp;nbsp; You can find examples of how to do this in function group RSAX (only the simple interface function is possible).&amp;nbsp; You need to keep to the structure of the function, but for the rest it's just simple ABAP coding.&amp;nbsp; It will also be the best solution for performance, as you can write the code for mass processing.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;See the following post for documentation about writing an FM:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;A href="http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/a0f46157-e1c4-2910-27aa-e3f4a9c8df33?overridelayout=true" title="http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/a0f46157-e1c4-2910-27aa-e3f4a9c8df33?overridelayout=true"&gt;http://www.sdn.sap.com/irj/scn/go/portal/prtroot/docs/library/uuid/a0f46157-e1c4-2910-27aa-e3f4a9c8df33?overridelayout=true&lt;/A&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You can make it delta enabled, but you will need to get the delta pointer by code from the ROOSGENDLM table.&amp;nbsp; If you need more info of this, let me know and I will provide you with sample code.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Freek&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Thu, 12 Sep 2013 20:21:15 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/data-from-bseg-matching-custom-table/qaa-p/9716633#M3477893</guid>
      <dc:creator>freek_cavens2</dc:creator>
      <dc:date>2013-09-12T20:21:15Z</dc:date>
    </item>
    <item>
      <title>Re: Data from BSEG matching custom table..</title>
      <link>https://community.sap.com/t5/technology-q-a/data-from-bseg-matching-custom-table/qaa-p/9716634#M3477894</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Freek,&lt;/P&gt;&lt;P&gt;Never really done this. Thanks for the suggestion.&lt;/P&gt;&lt;P&gt;Please let me know more info regarding the 3rd option.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;But regarding 1st option, am confused reg more data...?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Sep 2013 02:11:33 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/data-from-bseg-matching-custom-table/qaa-p/9716634#M3477894</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-09-13T02:11:33Z</dc:date>
    </item>
    <item>
      <title>Re: Data from BSEG matching custom table..</title>
      <link>https://community.sap.com/t5/technology-q-a/data-from-bseg-matching-custom-table/qaa-p/9716635#M3477895</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Aditya ,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;From my point of view&amp;nbsp; you have to achieve this with the help of Generic extractor using FM. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;1. Your document numbers are already there in your custom tables now you need to check for some field in this table only to identify the document number getting changed/created during that period.&lt;/P&gt;&lt;P&gt;2. Once you get these document numbers you can select the relevant data from BSEG/BKPF in the select statement in the Open cursor statement in the FM Source code .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Also please refer &lt;A _jive_internal="true" href="https://answers.sap.com/message/14307484"&gt;http://scn.sap.com/message/14307484&lt;/A&gt; . &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;This is relevant and you also have some code for your reference.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Your other 2 approaches doesn't look feasible to me .&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Sep 2013 04:43:22 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/data-from-bseg-matching-custom-table/qaa-p/9716635#M3477895</guid>
      <dc:creator>KamalMehta</dc:creator>
      <dc:date>2013-09-13T04:43:22Z</dc:date>
    </item>
    <item>
      <title>Re: Data from BSEG matching custom table..</title>
      <link>https://community.sap.com/t5/technology-q-a/data-from-bseg-matching-custom-table/qaa-p/9716636#M3477896</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Aditya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;View is not possible since it is a cluster table.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You go with FM , be sure in Delta pointer alone.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;Venkatesh&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Sep 2013 06:52:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/data-from-bseg-matching-custom-table/qaa-p/9716636#M3477896</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-09-13T06:52:12Z</dc:date>
    </item>
    <item>
      <title>Re: Data from BSEG matching custom table..</title>
      <link>https://community.sap.com/t5/technology-q-a/data-from-bseg-matching-custom-table/qaa-p/9716637#M3477897</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Aditya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you want to use option nr 3, writing your own function, there is not much more info that I can give than you can find in the documentation in my previous post.&lt;/P&gt;&lt;P&gt;The reply from Kamal also contains a very interesting link about delta management.&amp;nbsp; For the rest, it's just about writing ABAP within the structure of the function.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;About option 1 : if you do not already have the FI line item data from 0FI_GL_4, then you would need to load it in BW especially for this purpose.&amp;nbsp; If you want to use this data to read extra information during your custom load, you have to be sure that all required data is loaded using the 0FI_GL_4 datasource at the time you are loading your custom data.&amp;nbsp; With delta managed datasources, this is not always the case, because the loads are never done on exactly the same time.&amp;nbsp; Therefor you could end up with missing data.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Freek&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Fri, 13 Sep 2013 12:09:12 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/data-from-bseg-matching-custom-table/qaa-p/9716637#M3477897</guid>
      <dc:creator>freek_cavens2</dc:creator>
      <dc:date>2013-09-13T12:09:12Z</dc:date>
    </item>
    <item>
      <title>Re: Data from BSEG matching custom table..</title>
      <link>https://community.sap.com/t5/technology-q-a/data-from-bseg-matching-custom-table/qaa-p/9716638#M3477898</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Freek,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Am just worried about the performance issues if I read from BSEG since its a cluster table.&lt;/P&gt;&lt;P&gt;If I go ahead with the FM on the 2 custom tables and BSEG, it might suffice the requirement but how about the Delta? Am not sure as the full load will be lot of issues from a performance and content aspect.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Any sample and efficient way to make such FM? Please suggest&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 15 Sep 2013 05:10:41 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/data-from-bseg-matching-custom-table/qaa-p/9716638#M3477898</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-09-15T05:10:41Z</dc:date>
    </item>
    <item>
      <title>Re: Data from BSEG matching custom table..</title>
      <link>https://community.sap.com/t5/technology-q-a/data-from-bseg-matching-custom-table/qaa-p/9716639#M3477899</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please suggest on the &lt;STRONG&gt;FM from a performance aspect as I need to read from BSEG table.&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;This was the table suggested to me as per the requirement. &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;STRONG&gt;How about the standard DS enhancement of 0FI_GL_4 with the unique ID? Isn't it a good alternative except for the Daily delta limit? Also, is it mandatory for me to use the 0FI_AP_4 and 0FI_AR_4 ones as well? &lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Because, read some where that the base tables BKPF/BSEG get updated in the end even from AP/AR postings. In that case whats the use of AP/AR extractors? Am little confused in this. GL extractor only pulls the GL data? &lt;SPAN style="font-size: 10pt;"&gt;Please help me understand what this means.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If I have to go with a FM only, should I use RSAX_BIW_GET_DATA_SIMPLE or RSAX_BIW_GET_DATA?&lt;/P&gt;&lt;P&gt;Heard RSAX_BIW_GET_DATA_SIMPLE is for FULL only and RSAX_BIW_GET_DATA is for Delta?&lt;/P&gt;&lt;P&gt;But I seen many posts in forums using RSAX_BIW_GET_DATA_SIMPLE for delta? Please clarify which to use?&lt;/P&gt;&lt;P&gt;There is one more mentioning the above pattern FMs doesn't suffice? &lt;SPAN style="color: #333333; font-size: 12px; background-color: #ffffff;"&gt;RSVD_BW_GET_DELTA_DATA?&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 15 Sep 2013 05:13:09 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/data-from-bseg-matching-custom-table/qaa-p/9716639#M3477899</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-09-15T05:13:09Z</dc:date>
    </item>
    <item>
      <title>Re: Data from BSEG matching custom table..</title>
      <link>https://community.sap.com/t5/technology-q-a/data-from-bseg-matching-custom-table/qaa-p/9716640#M3477900</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;Thanks Kamal.&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;Will check that link.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;Please check my latest response and suggest&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Sun, 15 Sep 2013 15:02:03 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/data-from-bseg-matching-custom-table/qaa-p/9716640#M3477900</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-09-15T15:02:03Z</dc:date>
    </item>
    <item>
      <title>Re: Data from BSEG matching custom table..</title>
      <link>https://community.sap.com/t5/technology-q-a/data-from-bseg-matching-custom-table/qaa-p/9716641#M3477901</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Please help in the same&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Sep 2013 14:41:55 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/data-from-bseg-matching-custom-table/qaa-p/9716641#M3477901</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-09-16T14:41:55Z</dc:date>
    </item>
    <item>
      <title>Re: Data from BSEG matching custom table..</title>
      <link>https://community.sap.com/t5/technology-q-a/data-from-bseg-matching-custom-table/qaa-p/9716642#M3477902</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Have you check the link provided by me. I have given the complete code over there.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please check it you would get the idea.&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, 16 Sep 2013 15:11:34 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/data-from-bseg-matching-custom-table/qaa-p/9716642#M3477902</guid>
      <dc:creator>KamalMehta</dc:creator>
      <dc:date>2013-09-16T15:11:34Z</dc:date>
    </item>
    <item>
      <title>Re: Data from BSEG matching custom table..</title>
      <link>https://community.sap.com/t5/technology-q-a/data-from-bseg-matching-custom-table/qaa-p/9716643#M3477903</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Aditya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The question for the delta will be : what is the starting point of the data selection?&amp;nbsp; Is it one of your two custom tables or is it the BSEG table?&amp;nbsp; I presume it is one of the custom tables.&amp;nbsp; If so, you have to options to create a delta in an extractor function :&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;You can create a delta on a date/timestamp : this means that a field should be available in your custom tables that you can use for your purpose.&amp;nbsp; In that case you would end up with something like this (an extractor, delta based, for material documents, see attachment extractor_delta_timestamp.txt)&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;UL&gt;&lt;LI&gt;You can add entries to a delta table (when you update your custom tables, you can also add them to a table that keeps track of the delta).&amp;nbsp; In this case, you must write your own logic to maintain the delta table and also give the update mode as a parameter in the extract structure (and Infopackage).&amp;nbsp; That would lead to something like this : a delta based text extractor for 0MAT_PLANT, that reads a delta table that is maintained based on the daily transactions. (, see attachment extractor_delta_tablebased.txt).&lt;/LI&gt;&lt;/UL&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Based on the data you have available, you will have to choose between the two options.&amp;nbsp; Option 1 is easier, because it uses the standard BW delta mechanism, but option 2 gives more flexibility (though also more complexity).&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Freek&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 16 Sep 2013 19:51:04 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/data-from-bseg-matching-custom-table/qaa-p/9716643#M3477903</guid>
      <dc:creator>freek_cavens2</dc:creator>
      <dc:date>2013-09-16T19:51:04Z</dc:date>
    </item>
    <item>
      <title>Re: Data from BSEG matching custom table..</title>
      <link>https://community.sap.com/t5/technology-q-a/data-from-bseg-matching-custom-table/qaa-p/9716644#M3477904</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Thanks Freek. But unable to view these files as it gives some wrapped data.&lt;/P&gt;&lt;P&gt;Whats the format&lt;/P&gt;&lt;P&gt;&amp;nbsp; &lt;/P&gt;&lt;P&gt;The delta field must be from the custom tables itself. How about the below approach, instead of an FM? &lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Install and load of FI_GL_4 and do a look up on this in the Level 2 DSO which comes from the 2 custom tables?&lt;/P&gt;&lt;P&gt;Cons would be the high data load and a delta limit of the timestamp.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Can I also use only AP/AR instead of this DS, incase I don't need GL.&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Sep 2013 02:04:42 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/data-from-bseg-matching-custom-table/qaa-p/9716644#M3477904</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-09-23T02:04:42Z</dc:date>
    </item>
    <item>
      <title>Re: Data from BSEG matching custom table..</title>
      <link>https://community.sap.com/t5/technology-q-a/data-from-bseg-matching-custom-table/qaa-p/9716645#M3477905</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Kamal,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Yes I did. But I need to get it from the cluster BSEG for a document number coming from a custom table.&lt;/P&gt;&lt;P&gt;Any advice on the performance?&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Sep 2013 02:22:05 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/data-from-bseg-matching-custom-table/qaa-p/9716645#M3477905</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-09-23T02:22:05Z</dc:date>
    </item>
    <item>
      <title>Re: Data from BSEG matching custom table..</title>
      <link>https://community.sap.com/t5/technology-q-a/data-from-bseg-matching-custom-table/qaa-p/9716646#M3477906</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi Aditya,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;It seems the SCN has zipped the files.&amp;nbsp; You will have to unzip them.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;The lookup on the FI_GL_4 DSO is possible, but you will have to be carefull with the delta.&amp;nbsp; If you do the lookup and the data is not in de FI_GL_4 DSO yet, then you might not get it again the next day and as such create orphans.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;If you do not need GL, it would probably be wiser to use AR/AP.&amp;nbsp; This contains a lot less data and as such will be much faster.&amp;nbsp; The select will be a little more tricky though, as the data is split over 4 tables, Open and closed for AR and AP. (BSIK, BSAK, BSID, BSAD).&amp;nbsp; This means that you would have to create four sequential cursors to get all the data.&amp;nbsp; By sequential, I mean : Open cursor for the first table, read all the data, close the cursor and open the next.&amp;nbsp; And this all split over different packages.&amp;nbsp; It's not that difficult, but if you're not at home in ABAP development, this may be a challenge.&lt;/P&gt;&lt;P&gt;Regards,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Freek&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Mon, 23 Sep 2013 07:41:32 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/data-from-bseg-matching-custom-table/qaa-p/9716646#M3477906</guid>
      <dc:creator>freek_cavens2</dc:creator>
      <dc:date>2013-09-23T07:41:32Z</dc:date>
    </item>
    <item>
      <title>Re: Data from BSEG matching custom table..</title>
      <link>https://community.sap.com/t5/technology-q-a/data-from-bseg-matching-custom-table/qaa-p/9716647#M3477907</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;Hi all,&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Please suggest on the below points:&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;FM usage from a performance aspect as I need to read from BSEG table?&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;&lt;STRONG style="font-style: inherit; font-family: inherit;"&gt;How about the standard DS enhancement of 0FI_GL_4 with the unique ID? Isn't it a good alternative except for the Daily delta limit? Also, guess it is not mandatory for me to use the 0FI_AP_4 and 0FI_AR_4 ones as well?&lt;/STRONG&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;Because the base tables BKPF/BSEG get updated in the end even from AP/AR postings. In that case whats the use of AP/AR extractors? Am little confused in this. GL extractor only pulls the GL data? &lt;SPAN style="font-style: inherit; font-size: 10pt; font-family: inherit;"&gt;Please help me understand what this means.&lt;/SPAN&gt;&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;If I have to go with a FM only, should I use RSAX_BIW_GET_DATA_SIMPLE (FULL) or RSAX_BIW_GET_DATA (DELTA) ?&amp;nbsp; But I seen many posts in forums using RSAX_BIW_GET_DATA_SIMPLE for delta? Please clarify which to use?&lt;/P&gt;&lt;P style="font-size: 12px; background-color: #ffffff; color: #333333;"&gt;&lt;SPAN style="font-family: inherit; font-style: inherit;"&gt;Also seen this one -&amp;gt; RSVD_BW_GET_DELTA_DATA?&lt;/SPAN&gt;&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Sep 2013 02:09:58 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/data-from-bseg-matching-custom-table/qaa-p/9716647#M3477907</guid>
      <dc:creator>Former Member</dc:creator>
      <dc:date>2013-09-25T02:09:58Z</dc:date>
    </item>
    <item>
      <title>Re: Data from BSEG matching custom table..</title>
      <link>https://community.sap.com/t5/technology-q-a/data-from-bseg-matching-custom-table/qaa-p/9716648#M3477908</link>
      <description>&lt;HTML&gt;&lt;HEAD&gt;&lt;/HEAD&gt;&lt;BODY&gt;&lt;P&gt;You have to use &lt;SPAN style="color: #333333; font-size: 12px; background-color: #ffffff;"&gt;RSAX_BIW_GET_DATA_SIMPLE&lt;/SPAN&gt; . You need to copy it into new Function Module.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;You have to write the logic and you have to enabale the delta in order to make it work.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Have you gone throw the link that i have suggested. You would get all the details.&lt;/P&gt;&lt;P&gt;&lt;/P&gt;&lt;P&gt;Thanks&lt;/P&gt;&lt;/BODY&gt;&lt;/HTML&gt;</description>
      <pubDate>Wed, 25 Sep 2013 02:20:31 GMT</pubDate>
      <guid>https://community.sap.com/t5/technology-q-a/data-from-bseg-matching-custom-table/qaa-p/9716648#M3477908</guid>
      <dc:creator>KamalMehta</dc:creator>
      <dc:date>2013-09-25T02:20:31Z</dc:date>
    </item>
  </channel>
</rss>

