FIGL Extractor - read performane issue.

Hello Gurus,
I need a help.
The below code is used in a BI-FIGL custom user exit.
BSIS read statement.
ABAP Code:
Get Cost Center Accounting from BSIS table
SELECT bukrs "Company Code
gjahr "Fiscal Year
monat "Fiscal Period
hkont "General Ledger Account
prctr "Profit Center
budat "Posting Date in the Document
gsber "Business Area
zuonr "Assignment Number
belnr "Accounting Document Number
kostl "Cost Center Accounting
FROM bsis
INTO TABLE pt_kostl_acc
FOR ALL ENTRIES IN pt_gl_data
WHERE bukrs EQ pt_gl_data-bukrs
AND gjahr EQ pt_gl_data-gjahr
AND monat EQ pt_gl_data-monat
AND hkont EQ pt_gl_data-hkont
AND prctr EQ pt_gl_data-prctr
AND budat EQ pt_gl_data-budat
AND gsber EQ pt_gl_data-gsber
AND zuonr EQ pt_gl_data-zuonr
AND belnr EQ pt_gl_data-belnr.
The extractor literally stops at the above select statement.
Please advise how to solve it.
I created an index . Actually it wroked fine in Q. When I moved to production it is not working. Did I do anything wrong ?
Let me know. Thanks

Hi,
Activate the trace in ST05. See whether the INDEX is getting hit.
Regards,
Raghavendra.

Similar Messages

  • Read Only Issues

    Folks,
    Using EPM 2007 with SP2
    I have about 4 PM's that are having read only issue with some of their projects, this has just started to happen in the last month or so.
    I have sat with them and have gone over their save / checkin method and cannot find fault with what they are doing. As the Admin I can access, update checkin / out etc no problems.
    Checking in the "Clean Up Cache" the projects are registering "Not checked out".  In the "Open Folder" they have a Cache Status of Checkin Pending.
    Any suggestion greatly appreciated
    Many thanks
    Noel

    Hi Sujit
    Apologies for the delay, as per your direction all good now
    Regards
    Noel

  • Read only issue

    I have file, read/ write on desktop.
    It's read write on the laptop via router / network.
    But when open now get this new message:
    File is being modified by Kevs, open as read- only or choose to be notified or altered when available.
    These network/read write issues never seem to end! I'm wiped out, any ideas? thanks!

    Uncheck Read Only on the song files in Windows Exploder.

  • Didnt read the issues with ios5 until i've done my update. I ve restored my iphone 4, 3 times, and till now it is locked in a loop of the apple logo, loading

    Didnt read the issues with iOS5 until i've updated my iPhone 4. Restored 3 times and it is still locked in a loop of - Apple logo, loading, and a flash of "...restore successful...few steps away..." and buzz. Please help

    At the end of a Restore, you will be asked if you want the current iPhone to be synched as a New iPhone or use the current iPhone's settings. Selecting the former since to have solved the messaging problem. If u have done back-up of the "old" iPhone on iTunes, then your New iPhone will be the "old" iPhone too after synching with iTunes :)

  • Extractor for goods issue

    Can anyone send me the name of the extractor for goods issue? Does it comes under SD? or MM fullfillment? 
    Thanjs
    Raj

    Hi RajMani,
    What exactly is your requirement?
    Check with your business or functional team for the source tables from where they want the report to be built.
    based on the source tables we can suggest you the exact data source you need for your requirement.
    Regards
    KP

  • Reader causing issues with dropped underscores in courier new font

    When converting a microsoft word document in 2013 or 2007 to a PDF is causing issues with dropped underscores.  It only seems to happen in courier new.  For instance if I have _someCode, when converting this over to a PDF file I will sometimes see _someCode and sometimes I will see someCode.  If I open this file in a different pdf reader then it looks correct 100% of the time.  If I copy and paste into another application then the underscore shows.  This is a major issue for people putting code into a PDF document as underscores are important and courier new is what we often use.

    I love how quick you are to throw Microsoft under the bus.  Often it is their fault.  In this case I believe you are 100% wrong and absolutely short sighted to ignore this.  As I said in my original email, which you apparently missed, I have tried this in multiple PDF viewers and Adobe Reader is the ONLY reader that misses the underscores.  Foxit, PDF Exchange and Sumatra all render it perfectly.  Adobe reader missed 6 underscores in my document that has 18 underscores.  30% of the time in this document Adobe Reader makes the underscore invisible.  And if I switch the zoom to 100% instead of 148% (which is the default for me for some reason) then Adobe Reader misses 7 of them.  This doesnt occur in the other readers.  Blame Microsoft all you want but the simple fact is that Adobe Reader has issues reading courier new's underscores.  It needs to be fixed.

  • F2 AND F3 BUTTON BRIGHTNESS+BLUETOOTH+CARD READER DRIVER ISSUE(window7)

    hello i am using HP Pavilion G6 2311.My f2 and f3 button to adjust brightness is not working.as i just installed
    window 7(32bit).And i already check in bios funaction key it is enabled.i guess its a driver issue.
    second problem is bluetooth problem how to use laptop bluetooth.also its driver issue.
    thirdly and lastly card reader driver issue also
    please help to fix it and
    the link to download trusted DRIVERS.
    Thankyou

    Hi:
    Try this driver. 
    If this driver doesn't work, and you want to run W7, then you will have to install W7 64 bit, for which there are graphics drivers.
    http://h20565.www2.hp.com/hpsc/swd/public/detail?swItemId=ob_125680_1#tab1

  • BSIS read - Performance Issue

    Hello Gurus,
    I need a help.
    The below code is used in a BI-FIGL custom user exit.
    BSIS read statement.
    ABAP Code:
    Get Cost Center Accounting from BSIS table
      SELECT  bukrs     "Company Code
              gjahr     "Fiscal Year
              monat     "Fiscal Period
              hkont     "General Ledger Account
              prctr     "Profit Center
              budat     "Posting Date in the Document
              gsber     "Business Area
              zuonr     "Assignment Number
              belnr     "Accounting Document Number
              kostl     "Cost Center Accounting
              FROM bsis
              INTO TABLE pt_kostl_acc
              FOR ALL ENTRIES IN pt_gl_data
              WHERE  bukrs EQ pt_gl_data-bukrs
                 AND gjahr EQ pt_gl_data-gjahr
                 AND monat EQ pt_gl_data-monat
                 AND hkont EQ pt_gl_data-hkont
                 AND prctr EQ pt_gl_data-prctr
                 AND budat EQ pt_gl_data-budat
                 AND gsber EQ pt_gl_data-gsber
                 AND zuonr EQ pt_gl_data-zuonr
                 AND belnr EQ pt_gl_data-belnr.
    The extractor literally stops at the above select statement.
    Please advise how to solve it.
    I created an index . Actually it wroked fine in Q. When I moved to production it is not working. Did I do anything wrong ?
    Let me know. Thanks

    Thanks to all.
    here is my problem. I had the same issue in QA few weeks back. QA was refreshed with PRD data and almost the no of records are same. Around 13.1 million records. This is a user exit in standard BI extractor. It used to hang at the sequential read from BSIS. I created a secondary index and moved to QA and updated the statistics. it worked fine. I can extract almost 2 quarters of data to BW without any issue. I moved all the transports to production couple of days back and again started the extractor. The same problem it got stuck at the BSIS select. I have the same index in production and also updated the statistics. I don't have the ST05 access and I have asked the basis to give to find oout what index it is using to select from BSIS. I can change the code accorind to the suggestions above. In BI each packet size is 15 K records. So for each packet it will do the select each time. So I don't think 15 K records are too high.I though of asking the basis to look into this issue. Since it is working fine in QA. Do you guys have any suggestion. Again thanks for your help.
    Edited by: Senthil Esakkiappan on Nov 5, 2009 7:31 PM

  • FIGL extractor to use in BCS

    I'm in a BCS project and designed to be the BW consultant for the project.
    I know that there is a base named EC-CS that you can read FIGL datas into a cube in BW to import these data later to a BCS cube. But I heared that there is a new solution that we don't need to use EC-CS anymore.
    So what I want is know if there is a standard extractor/cube(s) used to be the source for BCS.
    I can use the extractor 0FI_GL_4 to get the informations I need, but I will have to enhance it to get Movement Type information.
    Is there any other solution for this? A better extractor or something like that?
    Best regards,
    Thiago

    This forum mentions many such extractors and it is suggested you search for the details in the forum.
    My favorite, if profit center accounting is fully utilized for all balance sheet and income statement accounts it the extractor for table GLPCT for the profit center totals records.
    There are also ways to read the data real-time directly from ECC via a virtual infocube.

  • Read receipt issue in exchange 2013

    Hi All,
    In my environment ,we are having exchange 2013 sp1 ENT edition with outlook 2010 and 2013 as the email client for the exchange users having their default email delivery to pst file .
    In addition to that , if anyone of the sender send an email with read recipient option to the particular recipient who is having the default email delivery to pst file will generate an error message to the sender .
    Note : Above issue is not happening for all the users having their default email delivery to pst file but for some users .
    Error message : Your message was deleted without being read .
    Steps handled :
    1.) I have set the recipient mailbox message configuration to never send an read response but still the response is going to the sender.
    2.) Checked the outlook versions.
    Please do not ask us to have the default email delivery to exchange mailbox and it is not possible in our environment.
    Regards
    S.Nithyanandham
    Thanks S.Nithyanandham

    Hi Niko Cheng ,
    Sorry for delay and thanks for your response.
    Did the sender use outlook 2010 or 2013?
    We are facing the same issue in both the versions 
     Is there the same issue when send an email with read recipient option via OWA?
    Same is happening in outlook as well as in owa.
    How did you set the outlook 2013 client to deliver email to pst file?
    When we go to outlook account settings there is an option called "change folder" ,on that we
    have set the pst file as the default delivery mail location . 
    As suggested ,We have moved the mailboxes from one database to another database , But still we are facing
    the issue.
    Regards
    S.Nithyanandham
    Thanks S.Nithyanandham

  • Acrobat 7.0.9 and Reader 9 - Issues opening PDF in IE6

    I'm hoping someone can help.  All our users have Reader 9 installed as part of the corporate image.  Some of our users run Acrobat 7.0.9 as well.  For those users, we are experiencing issues where when we try to open a PDF in IE6.  We get the following error:
         SW:iexplore.exe_application error - The instruction at "0x052f51b6" referenced memory at "0x00000010".  The memory could not be "read".
    I've opened Acrobat 7.0.9 and checked Edit, Preference, Internet.  The option to untick "Display PDF in browser" is greyed out.
    I've opened IE6 and gone to Tools, Manage Add-Ons and there is nothing listed for "Acrobat Control for ActiveX (pdf.ocx)" listed.
    I've tried uninstalling Acrobat and reinstalling.  I've then also tried running a repair on both Reader and Acrobat, but nothing seem to be fixing the issue.  This has only started happening since we upgraded Reader to 9 in our image.
    Any advice on how to fix the issue would be greatly appreciated.

    From: <[email protected]><br /><br />| Adobe STRONGLY recommends that you DO NOT not have Acrobat and Reader installed on the<br />| same system. If you have just Acrobat installed, it will perform all the functions<br />| Reader does and much more. Therefore, you should uninstall Reader, install Acrobat, and<br />| DO NOT install Reader again.<br /><br />| Ken F.<br /><br />Not to mention that nobody should be using Adobe Reader v7.x do to all the vulnerabilities <br />in it that are *actively* being exploited !<br /><br />-- <br />Dave

  • Adobe Reader 11 Issue there was an error

    Hello,
    i have a problem with Adobe Reader 11. Sometimes when i open a document i downloaded with firefox or internet explorer i get the error: " there was an error opening this document access denied". This just happens when i doubleclick it to open. If i open it with open with i dont get this error. I also have the permissions for the file.
    I tried the solution:
    Launch Adobe Acrobat Reader XI
    Go to: Edit > Preferences...
    Click on "General" in the left pane.
    Uncheck "Enable Protected Mode at startup"
    You will prompted with a dialog box to remind you to close the application for the change to go into effect. Click Yes.
    Click OK to save your change.
    Exit Adobe Reader
    Can someone help me please?
    Thank you

    Hi,
    After unchecking protected mode at startup option were you able to reproduce the issue?
    Thanks,
    Shakti K

  • Adobe Reader X Issues

    A user's computer with Adobe Reader X isntalled (when viewing a PDF file) gets blocked at the top and on  the left side. It appears that there are multiple toolbars at the top that are now just blank and a side bar on the left that stretches from the left side into the center of the document. The menu bar is also blank, the File, Edit, Options, do not show. I can tell something that appears to be tool bars are blocking the entire view, because if I zoom out far enough, the document will becom small enough to fit in the small viewable screen. The same view, carries over to the print preview window. If the user prints the document, it prints fine. Besides this, the computer and other programs works fine. I've un-installed Adobe Reader, re-downloaded and re-installed it, downloaded and installed the latest video driver, still having this issue. Computer is a Dell Otptiplex with Windows 7 Professional (32 Bits), 4 MB of RAM, and is updated with all Windows Updates. This user has been dealing with this for soo long, he does not remember when or how it started. The user is part of a domain that has a corporate antivirus and malware protection which I'd like to think would detect any virus if he caught any.
    I'd really appreciate any ideas or suggestions.
    Thanks,
    Vong

    Cyberdawg,
    Try to turn off anything that enhances speeds his video through the video driver. That is most likely the problem..

  • Shared Review: Acrobat Pro 9; Reader 8 issues

    Hi,
    I've been experimenting with the Shared Review features on Acrobat 9 Pro, and we've run into some slightly odd behaivour.
    I created a PDF file, sent it for a shared review, and waited for the comments.
    All three reviewers started with Reader 8, received the link, and opened the file easily enough. They each received a warning telling them that they needed Reader 9 or higher to comment on the document, but the document then opened, displayed the commenting tools and the "Publish Comment/Check for new comments" buttons.
    Naturally enough, they all began commenting away anyway, assuming that it would probably be OK, and all published their comments to the server.
    I went online to check for new comments, and found none.
    We went round and upgraded to Reader 9, assuming that that was the issue. Once the upgrade had installed, they opened their previous PDF files (with quite a few comments on) and connected to the server.
    At this point, all their previous comments were deleted, rather than being transferred to the server! This is really quite worrying - surely if this behaviour will occur (all comments deleted on upgrade), then a user should not be allowed to comment at all before upgrading. Is there a workaround? Are the comments still found on the old copy of the document, and are merely just hidden?
    I'd certainly be worried that, were I to send out a document for review to a group of less technically-minded reviewers, we could easily end up with a situation where we'd lose days of work due to them assuming that they could get away with this old version, as all the buttons seemed to be there.
    Anyone else had this problem, or suggestions of ways to work around it?
    Thanks in advance,
    Dave

    It was on Acrobat.com, so we did know that the reviewers needed Acrobat 9.x - but they were lulled into a false sense of security that it might just work anyway, since the commenting tools and so on appeared.
    Basically the process went:
    Reviewer click on link, signs into Acrobat.com and downloads a copy of the file to their local drive.
    Reviewer opens the local copy of the file, and is warned that they need Reader 9.x, but decide to give it a go regardless.
    Reviewer makes comments on the pdf, hits "Publish Comments", and nothing much happens - I check on the file, and no comments have been transferred to the server.
    At this point we decide to upgrade to Reader 9, so the reviewer saves and closes the local version of the file, and downloads & installs Reader 9.3.
    We open up the local copy of the file (that previously had the comments on) and, when prompted, sign into Acrobat.com.
    We check through the document, looking at the comments - any comments that had been made by other reviewers that were already on the server file are present, but all of the comments that had been made on the local file were deleted, and there appeared to be no way of recovering them.
    Thanks,
    Dave

  • Acrobat and Reader Version Issues

    Hi,
    I've created a PDF porffolio made up of several PDFs. When I view the PDF portfolio at the "top level" (where you see names of the individual PDFs on top of a window that looks like it should show the first page of the PDF) all it says in the window is "For the best experience, open this PDF porffolio in Acrobat X or Adobe Reader X, or later. However, I have Acrobat XI and am viewing it in Acrobat XI, so why am I having this issue?
    I can at least open the PDF portfolio and all the PDFs inside. My girlfriend gets the same window when I try sending it to her and can't open the PDF portfolio at all andl she has Acrobat 11.0.3. Why is this happening to her?
    Attached is a screenshot of my issue.
    Thanks.

    Yes, I guess I did. So I guess that's the issue. Thanks!
    Since you seem to know Acrobat and Reader pretty well, I have two other issues I'm dealing with:
    1.) I'd like to create a PDF portfolio of my graphic design work. In the past I've created a PDF portfolio and added other PDFs or jpegs into them with difference pieces of work. However, is it possible to create a portfolio where a multi-page PDF (within the larger portfolio) can be viewed in it's entirety (at the top level of the portfolio) without having to open the file? The idea would be that you would see one page of the portfolio with a piece of work, scroll to the right and see another, then when you get to the multi-page PDF if you kept scrolling right it would just take you through that entire PDF instead of having to open the file. Basically, what I'm trying to avoid is having to create jpegs of individual spreads of an InDesign file so they can be viewed seamlessly in a PDF porfolio instead of being able to drop in a multipage PDF. Let me know if you need clarification on this.
    2.) Finally, when I've tried to re-order files within PDFs, I've occassionally had success renaming the files (ie 1.jpg , 2.jpg, 3.jpg, 4.pdf, etc) in the "display name" column under the Files tab. I once had success doing an "Initial Sort" for display name but other times it hasn't worked. Is there anyway to make re-order work consistently?
    Thanks!

Maybe you are looking for