RSA3 is extracting fine but in BI site Its extracting only 10000 records

Hi Experts,
h4.
I made Generic data-source based on function module. When I am extracting data from this data-source in RSA3 itu2019s fetching all records. Its nearly are 7 lacks records.
h4.
But after replicating this data-source in BI site when I am extracting data from this data source its fetching only 10000 records. What mistake I might be did here or is there is any setting for FM based data source.
Advance thanks

My Issue is in RSA3 datasource is working fine and giving all records but when i am extracting data from same data source in BIW site its giving maximum 10000 records. I am using full load with n selection parameter.
This datasource is based on function module. below is the code of data-source
. * Auxiliary Selection criteria structure
  DATA: L_S_SELECT TYPE SRSC_S_SELECT.
Maximum number of lines for DB table
  STATICS: S_S_IF TYPE SRSC_S_IF_SIMPLE,
counter
          S_COUNTER_DATAPAKID LIKE SY-TABIX,
cursor
          S_CURSOR TYPE CURSOR.
  STATICS: V1 TYPE I,
                  V2 TYPE I.
        TYPES: BEGIN OF ty_data,
           matnr       TYPE matnr,
           MTART       TYPE MTART,
           PARTCODE    TYPE IDNRK,
           WERKS       TYPE WERKS_D,
           quantity    TYPE BGESWERT,
           vrkme       TYPE vrkme,
         END OF ty_data,
         BEGIN OF ty_parts,
           mandt       TYPE mandt,
           matnr       TYPE matnr,
           werks       TYPE werks_d,
           spdpartcode TYPE matnr,
           partcode    TYPE matnr,
           parttext    TYPE maktx,
           quantity    TYPE BGESWERT,
           vrkme       TYPE vrkme,
         END OF ty_parts,
         BEGIN OF ty_partvalue,
           mandt       TYPE mandt,
           regio       TYPE regio,
           spdpartcode TYPE matnr,
           value       TYPE abgergeb,
           waers       TYPE waers,
         END OF ty_partvalue.
  DATA: it_mara TYPE STANDARD TABLE OF mara,
        wa_mara TYPE mara,
        it_data  TYPE STANDARD TABLE OF ty_data,
        wa_data  TYPE ty_data,
        it_t005s TYPE STANDARD TABLE OF t005s,
        wa_t005s TYPE t005s,
        l_index  TYPE sy-tabix,
        it_parts TYPE STANDARD TABLE OF ty_parts,
        wa_parts TYPE ty_parts,
        it_partvalue TYPE STANDARD TABLE OF ty_partvalue,
        wa_partvalue TYPE ty_partvalue,
        wa_makl  TYPE mkal.
  DATA: it_t001w TYPE STANDARD TABLE OF t001w,
        wa_t001w TYPE t001w.
  DATA: it_stb TYPE STANDARD TABLE OF stpox,
        wa_stb TYPE stpox,
        it_stb1 TYPE STANDARD TABLE OF stpox,
        wa_stb1 TYPE stpox,
        it_stb2 TYPE STANDARD TABLE OF stpox,
        wa_stb2 TYPE stpox,
        it_stb3 TYPE STANDARD TABLE OF stpox,
        wa_stb3 TYPE stpox.
  DATA: it_bom type standard table of EXTRACT_STRUCT,
        wa_bom type EXTRACT_STRUCT.
Select ranges
ranges: L_R_MATNR for MARA-MATNR,
         L_R_MTART for MARA-MTART.
Initialization mode (first call by SAPI) or data transfer mode
(following calls) ?
  IF I_INITFLAG = SBIWA_C_FLAG_ON.
Initialization: check input parameters
                buffer input parameters
                prepare data selection
Check DataSource validity
    CASE I_DSOURCE.
      WHEN 'Z_BOM'.
      WHEN OTHERS.
        IF 1 = 2. MESSAGE E009(R3).         ENDIF.
this is a typical log call. Please write every error message like this
        LOG_WRITE 'E'                  "message type
                  'R3'                 "message class
                  '009'                "message number
                  I_DSOURCE   "message variable 1
                  ' '.                 "message variable 2
        RAISE ERROR_PASSED_TO_MESS_HANDLER.
    ENDCASE.
    APPEND LINES OF I_T_SELECT TO S_S_IF-T_SELECT.
Fill parameter buffer for data extraction calls
    S_S_IF-REQUNR    = I_REQUNR.
    S_S_IF-DSOURCE   = I_DSOURCE.
    S_S_IF-MAXSIZE   = I_MAXSIZE.
Fill field list table for an optimized select statement
(in case that there is no 1:1 relation between InfoSource fields
and database table fields this may be far from beeing trivial)
    APPEND LINES OF I_T_FIELDS TO S_S_IF-T_FIELDS.
  ELSE.                 "Initialization mode or data extraction ?
Data transfer: First Call      OPEN CURSOR + FETCH
               Following Calls FETCH only
First data package -> OPEN CURSOR
    IF S_COUNTER_DATAPAKID = 0.
Fill range tables BW will only pass down simple selection criteria
of the type SIGN = 'I' and OPTION = 'EQ' or OPTION = 'BT'.
      LOOP AT S_S_IF-T_SELECT INTO L_S_SELECT WHERE FIELDNM = 'MATNR'.
        MOVE-CORRESPONDING L_S_SELECT TO L_R_MATNR.
        APPEND L_R_MATNR.
      ENDLOOP.
      LOOP AT S_S_IF-T_SELECT INTO L_S_SELECT WHERE FIELDNM = 'MTART'.
        MOVE-CORRESPONDING L_S_SELECT TO L_R_MTART.
        APPEND L_R_MTART.
      ENDLOOP.
Determine number of database records to be read per FETCH statement
from input parameter I_MAXSIZE. If there is a one to one relation
between DataSource table lines and database entries, this is trivial.
In other cases, it may be impossible and some estimated value has to
be determined.
      SELECT werks INTO CORRESPONDING FIELDS OF TABLE it_t001w
               FROM t001w
               WHERE j_1bbranch NE '' AND
                     pkosa      = 'X'.
     DELETE it_t001w WHERE werks = 'HSPG'.
      SELECT matnr INTO CORRESPONDING FIELDS OF TABLE it_mara
               FROM mara
               WHERE matnr IN L_R_MATNR AND
                     mtart IN L_R_MTART AND
                     lvorm = ''     AND
                     mstae = ''.
        IF SY-SUBRC = 0.
    REFRESH: it_data.
     LOOP AT it_mara INTO wa_mara.
      LOOP AT it_t001w INTO wa_t001w.
        SELECT SINGLE * INTO wa_makl
                        FROM mkal
                        WHERE matnr = wa_mara-matnr AND
                              werks = wa_t001w-werks.
          IF sy-subrc = 0.
          REFRESH: it_stb2.
          CALL FUNCTION 'CS_BOM_EXPL_MAT_V2'
            EXPORTING
              capid                 = 'PP01'
              datuv                 = sy-datum
              mktls                 = 'X'
              mehrs                 = 'X'
              mmory                 = '1'
              mtnrv                 = wa_mara-matnr
              svwvo                 = 'X'
              werks                 = wa_t001w-werks
             werks                 = 'HSPG'
              vrsvo                 = 'X'
            TABLES
              stb                   = it_stb2
            EXCEPTIONS
              alt_not_found         = 1
              call_invalid          = 2
              material_not_found    = 3
              missing_authorization = 4
              no_bom_found          = 5
              no_plant_data         = 6
              no_suitable_bom_found = 7
              conversion_error      = 8
              OTHERS                = 9.
          IF sy-subrc <> 0.
           MESSAGE ID sy-msgid TYPE sy-msgty NUMBER sy-msgno WITH sy-msgv1 sy-msgv2 sy-msgv3 sy-msgv4.
          ELSE.
            IF it_stb2 IS NOT INITIAL.
             it_stb1 = it_stb2.
            IT_STB1 will have first level components
             DELETE it_stb1 WHERE stufe NE 1.
            IT_STB2 will have second and higher level components
             DELETE it_stb2 WHERE stufe EQ 1.
             CLEAR: lv_flag.
             LOOP AT it_stb1 INTO wa_stb1.
               l_index = sy-tabix.
               LOOP AT it_stb2 INTO wa_stb2 WHERE vwegx = wa_stb1-wegxx.
                 APPEND wa_stb2 TO it_stb3.
                 lv_flag = 'X'.
               ENDLOOP.
               IF lv_flag = 'X'.
                 DELETE it_stb1 INDEX l_index.
                 CLEAR: lv_flag.
               ENDIF.
             ENDLOOP.
            IT_STB2 will have only second level components
             it_stb2 = it_stb3.
             APPEND LINES OF it_stb1 TO it_stb2.
              APPEND LINES OF it_stb2 TO it_stb.
              REFRESH: it_stb1, it_stb2, it_stb3.
            ENDIF.
          ENDIF.
        ENDIF.
      ENDLOOP.
      LOOP AT it_stb INTO wa_stb.
        wa_data-matnr    = wa_mara-matnr.
        wa_data-mtart    = wa_stb-mtart.
        wa_data-werks    = wa_stb-werks.
        wa_data-partcode = wa_stb-idnrk.
        wa_data-quantity = wa_stb-MENGE.
        wa_data-vrkme    = wa_stb-MEINS.
        APPEND wa_data TO it_data.
      ENDLOOP.
      REFRESH: it_stb.
    ENDLOOP.
   ENDIF.
    V1 = 1.
    V2 = S_S_IF-MAXSIZE.
ENDIF.
Fetch records into interface table.
  named E_T_'Name of extract structure'.
   FETCH NEXT CURSOR S_CURSOR
              APPENDING CORRESPONDING FIELDS
              OF TABLE E_T_DATA
              PACKAGE SIZE S_S_IF-MAXSIZE.
   IF SY-SUBRC <> 0.
     CLOSE CURSOR S_CURSOR.
     RAISE NO_MORE_DATA.
   ENDIF.
    CLEAR: wa_data.
    LOOP AT it_data INTO wa_data.
      IF SY-TABIX GE V1 AND SY-TABIX LE V2.
        APPEND wa_data TO E_T_DATA.
        CLEAR wa_data.
      ENDIF.
    ENDLOOP.
    S_COUNTER_DATAPAKID = S_COUNTER_DATAPAKID + 1.
    IF E_T_DATA[] IS INITIAL.
      RAISE NO_MORE_DATA.
    ENDIF.
    V1 = V2 + 1.
    V2 = V2 + S_S_IF-MAXSIZE.
ENDIF.
*}   INSERT
ENDFUNCTION.
Edited by: damawat on Aug 26, 2011 2:20 PM

Similar Messages

  • Extract only the records exist in Table A but not in Table B

    Hi guru, I need to compare two big SAP tables and only select the records that exist in Table A but not in Table B, i.e. Exclude the records that exist in both tables. Due to the volume, left outer join is not preferred. Does anybody know any smart and quick way to do so?
    Thanks,

    Sounds like you're looking for alternatives from performance perspective, so maybe your question would be better posed in .
    As always for any performance related questions the answer is: It depends...
    I.e. you need to provide some further background: How many entries in table A, how many in table B? How are they linked (e.g. index, primary key, what fields)? On average, how many entries do you expect in your result set?
    Depending on those parameters (and possibly others) one can then evaluate other options: There's probably not many, I'd try also using [subqueries|http://help.sap.com/abapdocu_70/en/ABENWHERE_LOGEXP_SUBQUERY.htm]. Since performance tuning always requires an analysis, it's best to try out the different variations and check what happens (e.g. how long do they run, what kind of load do they introduce on the database, etc.). Subquery versus outer join performance depends also on the used database.
    Cheers, harald

  • IWeb url fine but masked url fails W3 validator

    the iWeb site is http://web.mac.com/aardvarkvideo/iWeb/thisis_a_scienceproject/
    the masked site is http://thisisascienceproject.com
    in safari, both urls show up fine.
    but in firefox and some PCs, only the header shows up for the MASK url. The original works fine.
    Is this a problem with the host of my mask url? or iWeb?
    Holding my breath for some advice...
    Thanks
    Ichi

    The code being used to forward to your .Mac url appears to be wrong, in particular the "head" section. Ask the people who made it to run it through the w3c validator and fix it.

  • When I first open Firefox it is fine but if I open a second tab to search another site I get a white screen and have to continually click 'back', click the site link, white screen, back, click the link, white screen and so on.

    When I first open Firefox it is fine but if I open a second tab to search another site I get a white screen and have to continually click 'back', click the site link, white screen, back, click the link, white screen and so on.

    This can also be a problem with the files [http://kb.mozillazine.org/sessionstore.js sessionstore.js] and sessionstore.bak in the [http://kb.mozillazine.org/Profile_folder_-_Firefox Profile Folder]
    Delete [http://kb.mozillazine.org/sessionstore.js sessionstore.js] and sessionstore.bak in the [http://kb.mozillazine.org/Profile_folder_-_Firefox Profile Folder]
    If you see files sessionstore-##.js with a number in the left part of the name like sessionstore-1.js then delete those as well.
    You will have to redo App Tabs and Tab Groups after deleting sessionstore.js.
    See:
    * http://kb.mozillazine.org/Session_Restore

  • In Firefox, I'm unable to load any website using cloudflare but the same sites load fine in Safari.

    Whenever I try to load any website using cloudflare in Firefox, I get this error message:
    "Error 1000 DNS points to prohibited IP. You've requested a page on a website that is on the CloudFlare network. Unfortunately, it is resolving to an IP address that is creating a conflict within CloudFlare's system."
    But the same sites load up fine with no problems in Safari. I've tried everything suggested in related support pages - cleared cache (my browser's set to do that on close anyway), cleared cookies, set to no proxy, disabled add-ons, etc. Nothing worked!
    EDIT: Just noticed that 1 cloudflare page was able to load after disabling the add-on called "Modify Headers" v7.1.1 However, I don't know if this will work for all cloud flare sites. Unfortunately, I did not keep a list of sites that didn't load, so I can't test by loading them now.

    This is the dump from my ModifyHeaders settings:
    [{"action":"Add","name":"X-Forwarded-For","value":"76.74.254.121","comment":"","enabled":true},{"action":"Add","name":"X-Forwarded-For","value":"97.24.26.128","comment":"","enabled":true},{"action":"Add","name":"X-Forwarded-For","value":"24.143.196.56","comment":"","enabled":true},{"action":"Add","name":"X-Forwarded-For","value":"69.22.138.131","comment":"","enabled":true},{"action":"Add","name":"X-Forwarded-For","value":"200.111.172.46","comment":"","enabled":true},{"action":"Add","name":"X-Forwarded-For","value":"209.112.44.10","comment":"Canada","enabled":true},{"action":"Add","name":"X-Forwarded-For","value":"209.81.89.10","comment":"","enabled":true},{"action":"Modify","name":"X-Requested-With","value":"209.81.89.10","comment":"","enabled":true},{"action":"Add","name":"X-Do-Not-Track","value":"209.81.89.10","comment":"","enabled":true},{"action":"Add","name":"X-Forwarded-For","value":"83.98.74.165","comment":"UK","enabled":true},{"action":"Add","name":"X-Requested-With","value":"83.98.74.165","comment":"UK","enabled":true}]

  • Dear All, I can't play flash videos from any web site through firefox because it freezes but when i run firefox as administrator then it works fine (But Google Chrome Plays all videos normally.) . I am using Windows 7 & Firefox 7.0.1. Please help

    Dear All,
    Firefox hangs when i try to play flash videos from any site but when i run firefox as administrator it works fine. (but Google Chrome, Opera & I.E9 Plays videos without running as administrator.) I am using Windows 7 & Firefox 7.0.1. Please help.

    A possible cause is security software (firewall) that blocks or restricts Firefox or the plugin-container process without informing you, possibly after detecting changes (update) to the Firefox program.
    Remove all rules for Firefox from the permissions list in the firewall and let your firewall ask again for permission to get full unrestricted access to internet for Firefox and the plugin-container process and the updater process.
    See:
    *https://support.mozilla.com/kb/Server+not+found
    *https://support.mozilla.com/kb/Firewalls

  • I own PSE 7 on disc. The laptop it was loaded on died. My new laptop doesn't have an optical drive so I downloaded PSE 7 from the Adobe site. It downloaded fine but I cannot start using it until I enter a S/N. The S/N on the disc box doesn't work.

    I own PSE 7 on disc. The laptop it was loaded on died. My new laptop doesn't have an optical drive so I downloaded PSE 7 from the Adobe site. It downloaded fine but I cannot start using it until I enter a S/N. The S/N on the disc box doesn't work.

    Those links weren't particularly helpful to me. They convinced me to install the drivers for my USB 2.0 card, but that didn't make a difference. Still no OS X without a PRAM reset if I've dared to venture into OS 9.
    It's always been my understanding that an unblessed System Folder will not be selectable in OS 9's Startup Disk control panel. My folders are blessed and healthy. Of course I'm running 9.2.2, as stated in my first message. I also frequently verify and repair my disks and permissions.
    I did a verbose startup of OS X, and noticed something funny about "ATY...too old." Perhaps this problem is related? I ventured into my system.log file and there it was, repeated over and over, everytime I've booted this computer:
    Aug 8 18:30:24 localhost kernel: From path: "/pci/@d/pci-ata@1/ata-4@0/disk@0:10,\mach_kernel", Waiting on <dict ID="0"><key>IOPathMatch</key><string ID="1">IODeviceTree:/pci/@d/pci-ata@1/ata-4@0/@0:10</string></dict>
    Aug 8 18:30:35 localhost kernel: ROM ndrv for ATY,Rage128y is too old (0xb3383430)
    Aug 8 18:30:41 localhost init: kernel security level changed from 0 to 1
    Anyone know how to interpret that? Is it related to my problem? I googled it, and all I found was a web board of people arguing over whether the Apple installed stock ATI Rage video card that came in the G3's is appropriate for Panther. The Ye's have it as far as I'm concerned...as long as I leave OS 9 alone, my video is fine on this computer!
    14" iBook G3 800, B&W PowerMac G3 350, Mac Classic II 16 :-P   Mac OS X (10.3.9)   System 7 Rocked!

  • I am in Muse 2014.3. When I edit a page, in the preview everything looks fine, but when I upload it to FTP, the page does not change, even when I upload the whole site. Is this a bug? I don't know what to do.

    I am in Muse 2014.3. When I edit a page, in the preview everything looks fine, but when I upload it to FTP, the page does not change, even when I upload the whole site. Is this a bug? I don't know what to do.

    Hi Jaap,
    Are you sure about your FTP credentials (FTP folder and site URL) that you are using for the upload? Are you able to see the updated files in the remote directory of the FTP server, after you finish uploading the muse file, using an external FTP client like FileZilla?
    Thanks
    -Prashanth

  • You tube is fine but Video from other sites will not play in any browser all of a sudden. I have latest version of firefox (16.something) flash and all plug in

    I cannot play videos from many sites. Everything was fine up until a few days aago. You tube works fine but others will not. I have firefox 16.something and latest versions of flash. All plug ins are there and enabled. Have read through many support threads and nothing is working. This happens on chrome and ie as well.

    You can check for problems caused by recent Flash updates and try these:
    *disable a possible RealPlayer Browser Record Plugin extension for Firefox and update the RealPlayer if installed
    *disable protected mode in Flash 11.3 and later
    *disable hardware acceleration in the Flash plugin
    *http://kb.mozillazine.org/Flash#Troubleshooting
    *https://support.mozilla.org/kb/flash-113-doesnt-load-video-firefox
    *https://support.mozilla.org/kb/flash-113-crashes

  • Youtube plays fine but not Facebook or other site videos, it says I am missing a plugin?

    When I use Youtube the videos play fine but on Facebook and some other sights the videos will not play. I just get a message that says a plugin is missing. Everything works fine on IE. I just downloaded Mozilla last night.

    hi Brandonacker, you probably need to install the adobe flash player plugin for those sites to show video content, which you can download from https://www.adobe.com/products/flashplayer/distribution3.html (use the windows exe-installer for plugin based browsers)

  • Firefox and default site - when I open firefox google comes up fine - but any other sibsequesnt page I have to type in google can I set up a default page for every page that I open up in a window

    Hello
    When I open Firefox, google comes up as my default page. This is fine but if I open additional windows next to the default page nothing comes up.
    Can you set google or any other page to be the default page in any window I open. It is annoying to have to keep on typing google in every time I want to open a new page with firefox

    You can modify the pref <b>keyword.URL</b> on the <b>about:config</b> page to use Google's "I'm Feeling Lucky" or Google's "Browse By Name".
    * Google "I'm Feeling Lucky": http://www.google.com/search?btnI=I%27m+Feeling+Lucky&ie=UTF-8&oe=UTF-8&q=
    * Google "Browse by Name": http://www.google.com/search?ie=UTF-8&sourceid=navclient&gfns=1&q=
    * http://kb.mozillazine.org/keyword.URL
    * http://kb.mozillazine.org/Location_Bar_search

  • Hello I have a problem with a Wifi Survey app, this app is from Access Agility, however this app was working fine, but without advise stop of working, I tried to open again, but app be close after few seconds.

    Hello I have a problem with a Wifi Survey app, this app is from Access Agility, however this app was working fine, but without advise stop of working, I tried to open again, but app be close after few seconds. Every time that I tried to open it, in diagnostic and use create some files, in special one named LatestCrash-WifiSurvey.plist, this one generate an incident identifier E73B0164-CDFA-4E9E-839E-A0C021BD17A2, but this incident identifier change every time that I tried to open, the last incident identifier is: DE600EB3-AB57-4C33-8DE8-71F6788A7441.
    After of it, I checked that the app had a new version available for downloading, I took a backup of my ipad and then upgrade this app, but is the same problem, all I want is to save the projects I had in this app, I´m afraid that if I delete this app and re-install it, probably I loss my projects.
    Thanks for your help indicating how I can save my projects and see them for example in an iphone for assurance that data is not lost.
    Something that called my attention is part of the log that shows a big CPU processing, but the strange thing is I killed all applications.
    Incident Identifier: E73B0164-CDFA-4E9E-839E-A0C021BD17A2
    CrashReporter Key:   ed0ca1405ce83d4f80cb3cce063d7248d7b76e91
    Hardware Model:      iPad2,5
    Process:         WifiSurvey [139]
    Path:            /var/mobile/Applications/1BEEE35A-85FC-4BE4-B62A-39A930CB3CE2/WifiSurvey.app/Wi fiSurvey
    Identifier:      WifiSurvey
    Version:         ??? (???)
    Code Type:       ARM (Native)
    Parent Process:  launchd [1]
    Date/Time:       2013-08-08 19:01:13.476 -0500
    OS Version:      iOS 6.1.3 (10B329)
    Report Version:  104
    Exception Type:  00000020
    Exception Codes: 0x000000008badf00d
    Highlighted Thread:  0
    Application Specific Information:
    com.accessagility.wifisurvey failed to launch in time
    Elapsed total CPU time (seconds): 20.990 (user 20.990, system 0.000), 52% CPU
    Elapsed application CPU time (seconds): 19.954, 50% CPU

    See:
    iOS: Troubleshooting applications purchased from the App Store
    Contact the developer/go to their support site if only one app.
    Restore from backup. See:
    iOS: How to back up              
    Restore to factory settings/new iPod

  • I have noticed an issue with utilizing the "stream" function on iOS 7. If you choose to just stream the movie by hitting the play button it seems to actually start downloading (which is fine) but if you are say halfway thru the movie and stop you can clea

    I have noticed an issue with utilizing the “stream” function on iOS 7. If you choose to just stream the movie by hitting the play button it seems to actually start downloading (which is fine) but if you are say halfway thru the movie and stop you can clearly see that storage has been reduced under the usage, yet under the “videos” tab it still states “No Data” the only way to delete what you have partially downloaded is to fully download the video, which is fine but there is no way to tell what videos have been partially downloaded (I.e which occurs a lot when your child switches between movies using the so called “stream” function). This becomes troublesome once the capacity of the ipad is almost met and you have no way to delete this data since you may have several videos that have started to be viewed (hence partially downloaded). Apple needs to somehow make it truly streaming or provide an update so the storage can be managed. The only way I have been able to remove partially downloaded videos is by doing a total software restore. (The video data that is in question when connected to my MacBook shows up in iTunes as “other”) if you have any insight into this issue it would be greatly appreciated. Thanks.

    Here are the screenshots for what it's worth.
    Not sure why I can't post them in the original post.<br>
    <sub><b>Mod edit: See [https://bugzilla.mozilla.org/show_bug.cgi?id=718813 bug 718813]</b></sub>
    '''Again, when I set my DNS server to automatically detect the servers both problems disappear and I have no issues at all.'''
    IMO opendns is either doing this on purpose (unlikely) or they're under some sort of attack/being used to attack the specific torrent sites although I'm open to other explanations. I believe using the automatic setting for DNS is using my own ISP's DNS servers (which again, work fine... but still...)
    I'd rather not use Google's public DNS servers as Google is to commercial these days and I think there's potential privacy issues.
    '''Again I have changed the setting for DNS servers back and forth several times to duplicate/verify the issue(s)... and the issues only happen with the opendns servers.'''

  • I did a factory reset on my late 2008 MacBook from a Snow Leopard disc. It installed fine, but as soon as I began to use the computer (safari) it froze. Couldn't even force quit. So I held down the power button to turn it off, and now it won't start up.

    I did a factory reset on my late 2008 MacBook from a Snow Leopard disc. It installed fine, but as soon as I began to use the computer (safari) it froze. Couldn't even force quit. So I held down the power button to turn it off, and now it won't start up. It goes to the grey Apple screen and just sits there loud as can be. Help! Please keep in mind I've not done anything like this before and am going to need a little hand-holding. Thanks in advance.

    Hi. Don't worry it's nothing serious. Insert the Instal Disc (Snow Leopard) and press the C button while turning on the computer. Once you see the desktop, go to Utility and choose Disk Utility. Select the Macintosh Partition on the left window pane and then click on Repair Disk and Repair Disk Permissions on the bottom right corner. Wait for both processes to finish. Click on the Apple icon (top left corner) and choose quit. Your computer should restart. See if it reboots normally. If not you can always reinstall the OS following the same steps. Good luck!

  • I get an error message saying 'An error has caused Photoshop to stop working correctly. Windows will close the programme and notify you if a solution is available'. I have had no notification. My old Photoshop CS5 works fine, but as I'm paying for CC2014

    I get an error message saying 'An error has caused Photoshop to stop working correctly. Windows will close the programme and notify you if a solution is available'. I have had no notification. My old Photoshop CS5 works fine, but as I'm paying for CC2014 I would like to use it. I have tried renaming the 'sniffer' file to 'snifferold' as bobmiller4002 suggested but the problem is not resolved. Lightroom works fine.

    Hi Nancy,
                 I'm not sure I have the answers to all your questions. Although I use Photoshop and Lightroom extensively, I'm not a 'techy'.
    My system;
    Packard bell imedia S2885
    1TB hard drive
    500G RAM
    Windows 8.1   64- bit
    Intel core i5 4440
    If I open Photoshop cc14 without opening any image, I still get an error message that reads: 'Photoshop has encountered a problem with the display driver, and has temporarily disabled enhancements which use the graphics hardware'.
    There is also a link to the Adobe help site, but I'm not sure exactly what I should be downloading from there.  
             Thanks,
                        Dan.

Maybe you are looking for

  • Oracle 8i Enterprise 64 Bits

    Does someone know where can I find an Oracle Enteprise 64 bits version for windows server ? Thanks.

  • Oracle Financials Tech training

    Hi, I am looking for tech training (other than oracle university), could someone please point to any private centers or any consultants who impart training. Thanks in advance!! PS: I am in Maryland (US) right now and I am even OK with traveling to DC

  • Need help with flash lite 2.0 update for flash

    Hello I am having trouble with the flash lite 2.0 update. I installed the update sucessfully and restarted my system. When I open flash(pro), there are no templates, api's, or emulators of the flashlite 2.0 phones. Please let me know how I can fix th

  • Buying iPhone 4S in USA Apple store, but using it in Europe...

    Good day, I am planning to buy a iPhone 4S but if I buy it in the US Apple store, can I use it in Europe with their sim card peramenantly? Thanks Eric

  • Project stock valuation storage location wise

    Hi all,     I am developing a report for storage location wise as well as WBS element wise project stock valuation. I got a suitable table for project stock as per my requirement i.e. MSPR. Is there any table or any function module updating the value