Blanks and Zeros in Extractor Checker S-API

Hi All,
I am currently having a problem with the Extractor Checker S-API.
I have deleted and filled up the extractor 2LIS_13_VDITM (Billing) in our source system. After doing that, it seems that when I use Extractor Checker S-API to view the data, it returns me number of records but when I tried to open to the details to view the records, it returns me rows with zero value and blanks.
I tried to look up the transaction code for billing, VF03 (Displaying Billing Document), it seems there are data.
This issue does not occur a few weeks ago. The changes that occur in our source system is only on the security. It seems that there are some changes on the security of our user logon. Will this actually affect what data that we can extract?
PS: Even so, when I tried to load it into BW, it shows number of records but it is not updated to the Data Store as there are blanks and zeros in the extractor.
Hope to hear some reply on this with constructive answer. Thanks.

Hi Robert,
I have solved this issue. It was due to the EXIT_SAPLRSAP_001 that was placed by the consultant that does not display the data. The following is the code:
I have actually remarked and it works.
<b>CODE</b>
*----Telesales Billing Requirement
Begin of SSINGH code
Sales Order Created on Date (VBAK-ERDAT) where VBAK-VBELN = VBRP-AUBEL
Sales Order Created By (VBAK- ERNAM) where VBAK-VBELN = VBRP-AUBEL. This field is the same as ‘login’ in the functional spec. Its description is the same as ‘name’ in the func spec.
Sales Document Type (VBAK-AUART) where VBAK-VBELN = VBRP-AUBEL. This field is the same as ‘order type’ in the functional spec.
Actual PGI Date (LIKP- WADAT_IST) where LIKP-VBELN = VBRP-VGBEL. This field is the same as ‘delivery date’ in the functional spec
  when '2LIS_13_VDITM'.
   TYPES: BEGIN OF TY_KNA1,
           KUNNR LIKE KNA1-KUNNR,
           LAND1 LIKE KNA1-LAND1,
           NAME1 LIKE KNA1-name1,
           ORT01 LIKE KNA1-ort01,
           PSTLZ LIKE KNA1-pstlz,
           REGIO LIKE KNA1-regio,
           SORTL LIKE KNA1-sortl,
           STRAS LIKE KNA1-stras,
           TELF1 LIKE KNA1-telf1,
           TELFX LIKE KNA1-telfx,
           ADRNR LIKE KNA1-adrnr,
     END OF TY_KNA1.
   DATA: T_KNA1 TYPE STANDARD TABLE OF TY_KNA1.
   DATA: WA_KNA1 TYPE TY_KNA1.
    DATA: WA_MC13VD0ITM LIKE MC13VD0ITM.
    data: C_MC13VD0ITM  like MC13VD0ITM occurs 0 with header line.
   SELECT KUNNR LAND1 NAME1 ORT01 PSTLZ REGIO SORTL STRAS
                 FROM  KNA1 INTO TABLE T_KNA1
                 FOR ALL ENTRIES IN C_MC13VD0ITM
                 WHERE  KUNNR  = C_MC13VD0ITM-PKUNWE.
    C_MC13VD0ITM[] = C_T_DATA[].
    IF NOT  C_MC13VD0ITM[] IS INITIAL.
      loop at c_t_data into c_mc13vd0itm.
        l_tabix = sy-tabix.
        select single erdat auart ernam into
            (WA_MC13VD0ITM-erdat,WA_MC13VD0ITM-AUART,WA_MC13VD0ITM-ernam)
            from vbak where vbeln = WA_MC13VD0ITM-aubel.
        select single WADAT_IST INTO WA_MC13VD0ITM-WADAT_IST
           from likp where vbeln = WA_MC13VD0ITM-vgbel.
get Shipping address for AU/AI requirement
get name from KNA1 and then get address from ADRD table.
PKUNWE
        modify c_t_data from WA_MC13VD0ITM index l_tabix.
        clear c_mc13vd0itm.
      endloop.
    ENDIF.
END OF SSINGH code

Similar Messages

  • Display Of Blanks and Zeroes

    Hi,
    We have an issue where the data in the source system has values 0 and for some its blank. When it is extracting the data into BI, at PSA level, its treating blanks as zeroes and storing as value 0, where there is no differentiation between these two. However, these values should be stored as blanks in BI also( PSA/DSO etc..). Is there a way where I can differentiate these 2 values at the time of data load? IS there any converdsion exit to differentiate these values?
    Pls respond...
    Kind Regards
    Padma

    IMO, if you want to send magazines, then e-mail isn't the vehicle. Better to create PDF files and send them as attachments. This problem you're running into has to do with poorly followed standards in all those e-mail clients and attempting to send magazines as messages. Stick to plain text and there aren't any issues. Just my

  • Support package SAPKB46C57 - package info shows blank fields and zero size

    Hello everybody,
    We have problem with SAP 4.6C and we found that note 1100728 can help us. We found that all corrections are in Support package SAPKB46C57, but we are not able to download it. We tried to check package info and we received blank fields and zero size of support package SAPKB46C57.
    Does anybody have same experiences with it?
    SAP support is very slow in solving this issue.
    Does anybody know how we can implement corrections from note 1100728?
    Thank you very much for answer.
    Best Regards
    Ing. Lukas Jarmar

    When i compiled the package, it compiled with following error.
    Warning: Package Body created with compilation errors.
    SQL> show error
    Errors for PACKAGE BODY STATSPACK:
    LINE/COL ERROR
    2045/3 PLS-00201: identifier 'SYS.DBMS_SHARED_POOL' must be declared
    2045/3 PL/SQL: Statement ignored
    SQL>

  • What is extractor checker and use of it...?

    Hello,
    Could you please help to know about extractor checker and use of it.
    Thanks in advance,
    G Raghu.

    Hi..........
    The extractor checker comes packaged in Service API (SAPI), which enables you to create generic DataSources via transaction RSO2. The extractor checker has been available since very early SAP releases (both SAP_APPL including the 3.X track and BW including the 2.X track). It can be considered release-independent. It does not require the source system to be connected to the target BW system. For more information about SAPI, go to SAP Service Marketplace. You search SAP notes using the keyword u201CSAPI.u201D
    By running the extractor checker in the debug mode, you can learn a lot about the underlying application. I have been in situations where I had to work with application-specific standard extractors in areas that Iu2019m only vaguely familiar with. Running the extractor checker in the debug mode has helped me identify the base tables without a lot of effort.
    I have seen generic extractors delivering no data because of faulty logic/coding. The reaction on the BW side is usually one of bewilderment and disbelief. You can avoid this by running the extractor check before executing your InfoPackages from BW. Iu2019ll show you how to use this tool in a more effective way and explain why you might want to use it more frequently.
    For extraction of data we create datasource in the source system.............after that we replicate it in the BW side...............
    Now our datasource can extract data from any:
    Table or view
    Query
    Function mudule.................................
    Now to check whether thae datasource is working fine or not.........We have to go to RSA3 in the source system...........There we will give the Datasource name.................then we will execute.........then it will displsy the data it contains...............we can also check for a specific value......
    Hope this helps you..........
    Regards,
    Debjani........

  • Error saving map. Stored procedure returned non-zero result. Check if source and target schemas are present.

    I am using VS 2012 and BizTalk 2013 and attempting to deploy an application to BizTalk when I get these errors:
    Error 47
    at Microsoft.BizTalk.Deployment.Assembly.BtsMap.Save()
       at Microsoft.BizTalk.Deployment.Assembly.BtsArtifactCollection.Save()
       at Microsoft.BizTalk.Deployment.Assembly.BtsAssembly.Save(String applicationName)
       at Microsoft.BizTalk.Deployment.BizTalkAssembly.PrivateDeploy(String server, String database, String assemblyPathname, String applicationName)
       at Microsoft.BizTalk.Deployment.BizTalkAssembly.Deploy(Boolean redeploy, String server, String database, String assemblyPathname, String group, String applicationName, ApplicationLog log)
    0 0
    Error 49
    Failed to add resource(s). Change requests failed for some resources. BizTalkAssemblyResourceManager failed to complete end type change request. Failed to deploy map "XXX.BTS2013.XXX.Maps.map_XXXX_R01_InsLabProc".
    Error saving map. Stored procedure returned non-zero result. Check if source and target schemas are present. Error saving map. Stored procedure returned non-zero result. Check if source and target schemas are present.
    0 0
    Error 46
    Failed to deploy map "XXX.BTS2013.XXX.Maps.map_XXXX_R01_InsLabProc".
    Error saving map. Stored procedure returned non-zero result. Check if source and target schemas are present.
    0 0
    I also tried to Import a MSI file from our test environment to see if that would work...got the same errors.  After spending hours (not kidding) looking for an answer, all I could find is that a hotfix would work.  So, I got the hotfix from Microsoft
    Support and applied it then rebooted.  Still getting the same errors.  I'm absolutely at a stand still.  Interesting that I got this application to deploy yesterday and then the next time I deployed it I started getting these errors.  I'm
    ready to pull my hair out!
    Is there an answer for this out there somewhere?  Any help would be appreciated.
    Thanks,
    Dave

    Hi Dave,
    Which hotfix have you applied? I don't think a hotfix of this issue is available for BizTalk 2013 yet. You should create a
    support ticket with Microsoft to get a solution.
    If this answers your question please mark as answer. If this post is helpful, please vote as helpful by clicking the upward arrow mark next to my reply.

  • In version 3.6 I can not open a website link from original page, I keep getting a new window that is blank and asking me to put in a web address. What has changed with the new version?

    When on a page if I click on a web link I get a new window that is blank and asks me enter a web address. This started happening with the new 3.6 version. It seems to have something to do with what I choose for the location in my privacy settings as the window changes with each setting but I still cannot get to the new site. Any ideas? I have no problem with this in IE and I have to keep opening IE when I encounter the problem on Firefox which is annoying.

    Start Firefox in [[Safe Mode]] to check if one of the add-ons is causing the problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    * Don't make any changes on the Safe mode start window.
    See:
    * [[Troubleshooting extensions and themes]]
    If it does work in Safe-mode then disable all extensions and then try to find which is causing it by enabling one at a time until the problem reappears.
    * Use "Disable all add-ons" on the [[Safe mode]] start window to disable all extensions.
    * Close and restart Firefox after each change via "File > Exit" (Mac: "Firefox > Quit"; Linux: "File > Quit")

  • Firefox crashes when I load any youtube video on the latest version, it not only crashes firefox but my whole computer goes blank and I have to restart, why is this?

    Backstory: There are two possible events that could be causing this
    1: At some point I may have followed a ''Tinyurl' link that consquently lead me to a youtube video, to which youtube worked perfectly fine before hand, and this is where i witnessed the first crash. Theories into whether this link, previously stated, may have done something to my system have been thought about, but the fact that youtube still works on the latest Microsoft Internet Explorer seems to present the idea of a virus or an error redundant. I own the latest Macfee antivirus software and Ccleaner(running the registry check) and have run them complete with disc defragment and scan disc error recovery along with an additional malware scanner. Nothing seems to have come up on anything. After doing all this, my last resort was System restore and this seemed to solve the problem, mainly because i had an earlier version of firefox. therefore i resisted updating for aslong as possible whenever it told me to update. but the otherday i thought i'd risk it again thinking it may have been a problem alot of people have been having and it would of been fixed, but sadly it hasn't. this lead me to google the problem and was advised to start firefox on 'safe mode' as there may have been a confliction between add ons or plugins with youtube or some thing like that, but sadly that hasn't worked either. The plugins i had installed with it were the ones firefox has told me to get, or recommended and the only two addons i had on firefox was Adblock plus (fanboy subscrip) and Noscript.
    Details of what actually happens: go to a youtube link, video loads for about 2 seconds(both video and audio), screen freezes, and flashes maybe once with some small lines across the bottom half of the screen horizontally towards the right corner, then the screen goes blank and makes my laptop dorment, but still running, thus I restart my system.
    Sadly now when I system restore there isn't a point far back enough before this problem. So its either i downgrade(which seems to be the only option) or simply stop using firefox, as internet explorer works perfectly fine. however running firefox with no scrip and adblock plus is the ideal browser customisation, which is why this is rather annoying.
    so number 1 was the tinyurl theory and i must admit i was abit foolish to follow such a random link, but whats happened has happened.
    2: basically there is a major disfunction with the latest firefox that has to with the addons i have included onto firefox and this seems to be causing a terrible effect on my system.
    in a nutshell: firefox worked perfectly before upgrading to the new firefox and before i followed this link, the rest of my system is completely normal and virus and error free or so it says, Other browsers seem to work also. safe mode does not cure the problem.
    Running on a customised Dell laptop, which is pretty midrange-toprange and hasn't been active long, so it has the general HD video card thats included in all Studio 15 Dell laptops.
    any help appreciated.
    cheers.
    == User Agent ==
    Mozilla/4.0 (compatible; MSIE 8.0; Windows NT 6.1; WOW64; Trident/4.0; SLCC2; .NET CLR 2.0.50727; .NET CLR 3.5.30729; .NET CLR 3.0.30729; Media Center PC 6.0; MDDC; OfficeLiveConnector.1.5; OfficeLivePatch.1.3; Creative AutoUpdate v1.40.02; AskTbMYC-SRS/5.7.1.11118)

    I have had a similar problem with my system. I just recently (within a week of this post) built a brand new desktop. I installed Windows 7 64-bit Home and had a clean install, no problems. Using IE downloaded an anti-virus program, and then, because it was the latest version, downloaded and installed Firefox 4.0. As I began to search the internet for other programs to install after about maybe 10-15 minutes my computer crashes. Blank screen (yet monitor was still receiving a signal from computer) and completely frozen (couldn't even change the caps and num lock on keyboard). I thought I perhaps forgot to reboot after an update so I did a manual reboot and it started up fine.
    When ever I got on the internet (still using firefox) it would crash after anywhere between 5-15 minutes. Since I've had good experience with FF in the past I thought it must be either the drivers or a hardware problem. So in-between crashes I updated all the drivers. Still had the same problem. Took the computer to a friend who knows more about computers than I do, made sure all the drivers were updated, same problem. We thought that it might be a hardware problem (bad video card, chipset, overheating issues, etc.), but after my friend played around with my computer for a day he found that when he didn't start FF at all it worked fine, even after watching a movie, or going through a playlist on Youtube.
    At the time of this posting I'm going to try to uninstall FF 4.0 and download and install FF 3.6.16 which is currently on my laptop and works like a dream. Hopefully that will do the trick, because I love using FF and would hate to have to switch to another browser. Hopefully Mozilla will work out the kinks with FF 4 so I can continue to use it.
    I apologize for the lengthy post. Any feedback would be appreciated, but is not necessary. I will try and post back after I try FF 3.16.6.

  • Data mis match in extractor checker

    Hi Gurus,
    Please help me to solve this issue.
    there is a mismatch of records when checking datasource through extractor checker. the extractor is showing 1476 records in r/3 table but i check the table in t-code se11 it is having only 506 records. so can any one help me what are the possible reasons and how to analysis and solve this issue.

    If generic datasource based on function module : check how the function module is designed to extract data.
    If generic datasource based on table : Check the table in se12 data with  same restrictions which you may use in RSA3.
    If generic datasource based on view :
    Check the view in se12 data with  same restrictions which you may use in RSA3.
    Hope this helps.

  • Crystal Report Viewer (flash based) is displaying partial of the flash interface. It is working well on Firefox 3.6.7 and below but not in Firefox 3.6.8. It is also working well on Internet Explorer and Chrome and Safari. Please check if you can advise o

    Crystal Report Viewer (flash based) is displaying partial of the flash interface. It is working well on Firefox 3.6.7 and below but not in Firefox 3.6.8. It is also working well on Internet Explorer and Chrome and Safari. Please check if you can advise on this problem we are facing. Thank you.
    == This happened ==
    Every time Firefox opened
    == Crystal Report Viewer (flash based) is displaying partial of the flash interface. It is working well on Firefox 3.6.7 and below but not in Firefox 3.6.8. It is also working well on Internet Explorer and Chrome and Safari. Please check if you can advise on this problem we are facing. Thank you. ==
    == User Agent ==
    Mozilla/5.0 (Windows; U; Windows NT 5.1; en-US) AppleWebKit/532.5 (KHTML, like Gecko) Chrome/4.0.249.78 Safari/532.5

    Reset the page zoom on pages that cause problems: '''View > Zoom > Reset''' (Ctrl+0 (zero); Cmd+0 on Mac)
    See [[Text Zoom]] and [[Page Zoom]] and http://kb.mozillazine.org/Zoom_text_of_web_pages
    You can try if it works if you disable OOPP (Out-Of-Process-Plugins) for Flash
    You can set the prefs dom.ipc.plugins.enabled.* to false on the about:config page to disable the plugin-container process.
    dom.ipc.plugins.enabled (currently false by default)
    dom.ipc.plugins.enabled.npswf32.dll (Flash)
    To open the ''about:config'' page, type '''about:config''' in the location (address) bar and press the Enter key, just like you type the url of a website to open a website.
    If you see a warning then you can confirm that you want to access that page.

  • When I am on a phone call and I double click the button to go to my home screen, then open another application (usually my calendar program, Calengoo), my screen goes blank and I am not able to return to either the app, the phone, or the home screen.

    When I am on a phone call and I double click the button to go to my home screen, then open another application (usually my calendar program, Calengoo), my screen goes blank and I am not able to return to either the app, the phone, or the home screen. If I am speaking to a person, if they hang up then I am back to the phone application. If I'm leaving a message, I am unable to return to the phone screen to end the call, and have to wait until the other phone hangs up. I'm also unable to switch back and forth to look at my calendar if I'm calling someone about scheduling. This has only started happening since the most recent iOs update. I run into situations similar to this about once per day during the work week, as I use my phone is this manner quite often. While not life altering it is quite frustrating. Can anyone here help me figure out a way to avoid this? If it helps, I have noticed a general downgrade in overall performance starting two system updates ago (apps opening more slowly, closing unexpectedly more often, etc.). I have an iPhone 3GS with the latest OS update.
    Thank you for any help or suggestions,
    Chris

    I could be corrupted backup.
    You can check the notification settings for message.
    Settings>Notification Center>Messages>Alert Style
    It should be on Banners or Alerts.
    Settings>Messages> Turn on Imessage and send as SMS and below that "Blocked" to check if you have any numbers block might be blocking the message.
    You can also do a hard reset by holding power and home till it restarts and release after seeing the apple logo.
    Still doesn't work? Settings>General>Reset>Reset all settings

  • Hp Photosmart C6180 display is blank and no lights

    Hp photosmart C6180 display is blank and the console lights do not light up.
    windows 7 64bit, 12 gig i7 3400 2-60gb ssd,raid 0 ,3 sata 6 drives ,dvd
    i was having color issues not printing,magenta will not print,new cartridges tried, cleaned through hp software,still no difference.
    Unplugged printer to move to desk, code came up improper shut down,would not respond to any input from panel or pc through software.
    unplugged and let it set for 3 minutes plugged in again restarted screen came up and froze in the  default ready to print screen. console would not respond to any inputs even the power  button.
    Unplugged again using the attempted the hard reset as mentioned on the community boards holding the power button.
    Printer started no display,ran a print job no problem, color picture no problem, no magenta still but it did print from pc. Console has no lights on. power button will not respond.
    Tried the # 6 button hold unplugg and replug routine.nothing same results.
    dismantled the side to unplug the logic board and remove cmos battery and let it set for an hour. reinstalled noting that none of the capacitors looked bulged anywhere on the board.
    Plugged power supply in lights up at connector, plug into printer ,no lights after a few seconds the printer goes into self test and sits there no display ,no lights on. Tried to print diagnostics, printed everything but magenta band of color , software shows no problems.
    aside from taking the printer apart and using boiling hot water to clean the magenta print head circuit, what happened to the display? what can i do now with out spending more thanthan this is worth? i have some technical skills so time is not a problem.
    i do have a new email address as well so please let me know in this forum, i will change default address asap.
    Thanks
    Gary
    This question was solved.
    View Solution.

    Hi Gary,
    Unfortunately, it sounds like the hardware has failed. I can't recommend any other solutions that you haven't already tried. The next step would be to service or replace your printer.
    Service:
    Determine if your product is in warranty or out of warranty. If you need help determining your product’s warranty status, go to HP’s Warranty Check Tool .
    If your product is in warranty , contact HP support.
    If your product is out of warranty , click here to view additional printer support options starting as low as $20.
    Replacement:
    Consider taking advantage of HP's Trade-In program: http://www.hp.com/united-states/tradein/home_flash.html
    Sorry I don't have better news for you!
    I am an HP employee.

  • "Move To New Window" Does Not Work in Version 5. It opens a new window, but it's blank, and the tab I wanted as the new window stays where it is. Is this a bug?

    Right mouse-clicking on a tab and selecting "Move To New Window" should open the contents of the tab in a new window, and then close the original tab on the original instance of FF. But in Version 5, that action simply spawns a new window that is totally blank, and the tab I wanted opened in a new window stays attached to the original window.

    Start Firefox in [[Safe Mode]] to check if one of your add-ons is causing your problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    See [[Troubleshooting extensions and themes]] and [[Troubleshooting plugins]]
    If it does work in Safe-mode then disable all your extensions and then try to find which is causing it by enabling one at a time until the problem reappears.
    You can use "Disable all add-ons" on the ''Safe mode'' start window.
    You have to close and restart Firefox after each change via "File > Exit" (on Mac: "Firefox > Quit")

  • When I click on a link, it opens a new screen which stays blank and in the adress is no website but searching History and bookmarks. Nothing else happens

    When i click on a link inside a website, a new screen appears. This one will be blank and in the webadress it will say searching Bookmarks and History. Nothing will happen.
    Please help

    Start Firefox in [[Safe Mode]] to check if one of the add-ons is causing the problem (switch to the DEFAULT theme: Tools > Add-ons > Themes).
    * Don't make any changes on the Safe mode start window.
    See
    * [[Troubleshooting extensions and themes]]
    * [[Troubleshooting plugins]]
    If it does work in Safe-mode then disable all extensions and then try to find which is causing it by enabling one at a time until the problem reappears.
    * Use "Disable all add-ons" on the [[Safe mode]] start window to disable all extensions.
    * Close and restart Firefox after each change via "File > Exit" (Mac: "Firefox > Quit"; Linux: "File > Quit")
    There are other things that need attention.
    Your above posted system details show outdated plugin(s) with known security and stability risks that you should update.
    # Shockwave Flash 10.0 r32
    # Java Plug-in 1.6.0_06 for Netscape Navigator (DLL Helper)
    Update the [[Managing the Flash plugin|Flash]] plugin to the latest version.
    *http://www.adobe.com/software/flash/about/
    Update the [[Java]] plugin to the latest version.
    *http://www.oracle.com/technetwork/java/javase/downloads/index.html (Java Platform: Download JRE)

  • HT201177 My new Mac Mini is plugged directly into my tv via hdmi cable and the screen will abruptly go blank and then return after a few seconds. Why is this happening?

    So I recently got a Mac Mini about two weeks ago and for some reason while I am on it the display will go blank and then return after a few seconds. It is happening very frequently. I checked the HDMI cable, I checked my tv and nothing seems to be wrong with them and I don't know what is going on.
    I am getting a bit frustrated because this Mac is brand spanking new and it is totally acting up for no reason whatsoever.
    Could someone please help me with this? I don't want my new computer to be useless. I need it.

    Which TV model do you have?
    Be aware of the fact that very many TVs do expect video signals on their HDMI inputs, not data signals from Macs or PCs. Please consult your TV manual if PCs or Macs can definitely be connected via HDMI, or if e.g. only DVI or RGB/VGA connectors are to be used.
    In case of DVI inputs for data being present, it's not a problem if an HDMI->DVI adapter, or better, cable is being used.
    Many users here are overlooking this potential reason for problems, assuming that HDMI outputs must always communicate with any HDMI input, certainly also because TV manufacturers do not "advertise" such limitations loudly.
    AV receivers with multiple HDMI inputs and a single HDMI video output to the TV are typically more "tolerant" and provide a sort of "converter" function. If present, feed a Mac's HDMI signal into the receiver, not the TV directly. If the receiver does not have enough HDMI inputs, consider to connect rather a video source (DVD player or similar) directly to the TV than the the Mac.

  • R/3 Extractor Checker doubt

    I created a Custom Master and text datasource and when i do the RSA3 Extractor checker  :
    if i change the "Data Records / Calls" and try the extractor, the number of records extracted changes :
    Like if i entered :
    Data records / calls  = 1000 - i get "570 records"
    Data Records / Calls = 10000-i get 57 records.
    My question is that :  why is the number of records extracted not Consistent ??????
    Similarly if i change the "Display Extr. Calls"
    to 1 or 10 , the number of records changes.
    Any suggestion please.
    Thanks,
    Shalini

    Hi Shalini,
    The idea in of these 2 fields in RSA3 is like this:
    Data Records / Calls = 1000
    Display Extr. Calls  = 1
    This means display one call and each call can include maximum of 1000 records. If you change the second parameter to 10, it means, display 10 calls (packages) with max of 1000 records per package.
    Unfortunately, this figure is not always correct. I do not know the scenarios but like you mentioned, it is not always correct.
    Thanks and Regards
    Subray Hegde

Maybe you are looking for

  • SAP Strategy management and Netweaver installation

    Hi experts, i want to install SAP strategy management 10.0 on windows for SQL Server. I was reading through the installation guide and one of its prerequisite is to install netweaver and also deploying FCP  and other components. Below is the files i

  • HELP: iTunes 6 unable to sync songs with ipod - hangs freezes crashes

    Hi, This has been posted before, but a search of 500 messages have turned up no solutions. Anyone who has any idea of a solution please help. PROBLEM: iTunes 6 and ipod 5th gen unable to sync songs or manually move more than 50 songs at a time to ipo

  • Error in executing reports

    Hello Experts I am getting following erros in exectuing the BW reports. ORA-00600: internal error code, arguments: [kcbz_check_objd_typ_3], [0], [0], [1], [], [], [], [] SQL Error: 600 Error while reading data; navigation is possible As a result of w

  • Remote Connection to CRM database possible?

    Hi folks,   I normally connect to MySQL databases remotely to build and construct fields, etc.   Is such a thing possible for BC?   Perhaps that is forbidden for safety's sake.  

  • Question on selectBooleanCheckbox

    Hi, I am new to JSF. I got JSP: <jsfh:selectBooleanCheckbox id="fwNFCP" required="true" rendered="true"converter="javax.faces.convert.BooleanConverter"           value="#{WolDSS.ifNFCP}" /> And a Bean WolDSS with a property and two methods about it: