procedure with cursor does not properly

Hai
I m just a beginner I m trying to retrieve some records of my database and for this I m write the code as follows: -.


create or replace procedure (p_month in NUMBER, p_year in NUMBER) export
is
Start
declare
v_ddoregcode VARCHAR2 (10);
v_ddocode VARCHAR2 (6);
v_prancode VARCHAR2 (12);
v_Name VARCHAR2 (30);
v_gc NUMBER (12,2).
v_ec NUMBER (12,2).
v_month NUMBER (2);
v_year number 4;
cursor c1 is select m.ddo_reg_code, m.ddo_code, m.pran_code, $m.name, i.gc, i.ec, i.month, i.year
of nps_mst_new m, i_nps_trans I
where m.pf_no = i.pf_no
and i.month = p_month
and i.year = p_year;
Start
Open c1;
loop;
Fetch c1 in v_ddoregcode, v_ddocode, v_prancode, v_name, v_gc, v_ec, v_month, v_year;
dbms_output.put_line (v_ddoregcode | "| v_ddocode |" | v_prancode | "| v_Name |" | v_gc | "|)
When exit c1% notfound;
end loop;
Close c1;
end;
end export;

and it is compiled with errors please help me so that I can compile correctly and get the result I need.

you could tell us what mistakes...

loose the semicolon after the LOOP

simplified version of the procedure (put it in a package)

create or replace procedure export(p_month in NUMBER,p_year in NUMBER)
is
begin
   for rec in (select m.ddo_reg_code
                    , m.ddo_code
                    , m.pran_code
                    , m.name
                    , i.gc
                    , i.ec
                    , i.month
                    , i.year
                 from nps_mst_new m,i_nps_trans i
                where m.pf_no=i.pf_no
                  and i.month=p_month
                  and i.year=p_year)
   loop
      dbms_output.put_line(rec.ddo_reg_code
                           ||rec.ddo_code
                           ||rec.pran_code
                           ||rec.name
                           ||rec.gc
                           ||rec.ec
                           ||rec.month
                           ||rec.year
                           );
   end loop;
end export;

Tags: Database

Similar Questions

  • Cursor does not properly... Gives entry each record last records.

    Hi all.

    a simple for someone, I'm sure...

    I've just added the cursor:

    -- ***************************************************
    -The cursor for Oracle_Loc_Code de SU CHRIS vs ORACLE table locations in a variable...
    -- ***************************************************

    CURSOR csr_ora_loc_code IS
    SELECT sil. ORACLE_LOC_CODE
    OF std, sil SU_IEXP_LOCATIONS SU_TEMPLOYEE_DETAILS
    WHERE STDS. STD_LOCATION_ID = sil. CHRIS_LOC_code;

    .. the script I paste below in order to complete each record with what in LIS. Field ORACLE_LOC_CODE.

    But, although it works fine when you have 1 card to run at, where several records need to be loaded together, the script, well between records in ORACLE thin, fills all records with the same store code - whatevers in the last record (instead of dealing with each of them individually). How can I fix?

    Thanks for looking...

    The code...
    /* Formatted on 2009/04/29 11:52 (Formatter Plus v4.8.7) */
    SET serveroutput ON SIZE 1000000 FORMAT WRAPPED
    SET verify OFF
    SET feedback OFF
    
    DECLARE
    -- *********
    -- Debugging/error handling
    -- *********
    -- *********
    -- Work variables
    -- *********
    
       ora_loc_code number                     := 0;
       p_emp_number                     VARCHAR2 (14);
       v_rec_cnt                        NUMBER                          := 0;
       insert_flag                      VARCHAR2 (8);
       err_num                          NUMBER;
       err_msg                          VARCHAR2 (150);
       err_line                         VARCHAR2 (350);
       err_seq                          NUMBER                          := 0;
       l_validate                       BOOLEAN                     DEFAULT FALSE;
       l_std_business_group_id          NUMBER                          := '0';
       l_default_code_comb_id           NUMBER                        := '217269';
       l_organization_id                NUMBER                          := '0';
       l_set_of_books_id                NUMBER                          := '1';
       l_job_id                         NUMBER                          := '10';
       l_obj                            NUMBER;
       l_datetrack_update_mode          VARCHAR2 (30)             := 'CORRECTION';
       l_assignment_sequence            NUMBER;
       l_name_combination_warning       BOOLEAN                         := FALSE;
       l_assign_payroll_warning         BOOLEAN                         := FALSE;
       l_org_now_no_manager_warning     BOOLEAN;
       l_other_manager_warning          BOOLEAN;
       l_spp_delete_warning             BOOLEAN;
       l_entries_changed_warning        VARCHAR2 (30);
       l_tax_district_changed_warning   BOOLEAN;
       l_person_id                      NUMBER;
       l_assignment_id                  NUMBER;
       l_special_ceiling_step_id        NUMBER;
       l_per_effective_end_date         DATE:= TO_DATE ('11-Jul-2049', 'DD-MON-YYYY');
       l_people_group_id                NUMBER;
       l_group_name                     VARCHAR2 (30);
       l_assignment_number              VARCHAR2 (35);
       l_effective_end_date             DATE := TO_DATE ('11-Jul-2049', 'DD-MON-YYYY');
       l_date                           DATE                           := SYSDATE;
       ip_p_address_id                  per_addresses.address_id%TYPE;
       ip_p_object_version_number       NUMBER;
       ip_p_party_id                    per_addresses.party_id%TYPE;
       l_per_object_version_number      NUMBER;
       l_asg_object_version_number      NUMBER;
       l_full_name                      VARCHAR2 (240);
       l_per_comment_id                 NUMBER;
       l_per_effective_start_date       DATE;
       l_concatenated_segments          VARCHAR2 (240);
       l_soft_coding_keyflex_id         NUMBER;
       l_comment_id                     NUMBER;
       l_no_managers_warning            BOOLEAN;
    
    -- ***********************************
    -- Get employee details info from work table
    -- ***********************************
       CURSOR get_employee_details
       IS
          SELECT std_hire_date, std_last_name, std_sex, std_date_of_birth,
                 std_email_address,
                 LPAD (std_employee_number, 8, '0') std_employee_number,
                 std_first_name, std_marital_status, std_middle_names,
                 std_nationality, std_title, std_national_identifier,
                 std_address_line1, std_address_line2, std_address_line3,
                 std_address_line4, std_post_code, std_telephone_1, std_country,
                 std_region, std_location_id, std_organization_id,
                 std_supervisor_id, std_person_id, std_position_id
            FROM SU_TEMPLOYEE_DETAILS;
    
    -- *****************************************
    -- checks employee details info from PER_ALL_PEOPLE_F table
    -- *****************************************
       CURSOR c_check_employee (p_emp_number VARCHAR2)
       IS
          SELECT per.person_id, per.business_group_id, per.last_name,
                 per.start_date, per.date_of_birth, per.email_address,
                 per.employee_number, per.first_name, per.marital_status,
                 per.middle_names, per.nationality, per.national_identifier,
                 per.sex, per.title, padd.address_id, padd.primary_flag,
                 padd.address_line1, padd.address_line2, padd.address_line3,
                 padd.town_or_city, padd.postal_code, padd.telephone_number_1,
                 paas.assignment_number, paas.object_version_number
            --  padd.telephone_number_2, padd.telephone_number_3, paas.job_id, paas.location_id,
            --  paas.organization_id, paas.assignment_type, paas.supervisor_id,
            --  paas.default_code_comb_id, paas.set_of_books_id, paas.period_of_service_id,
          FROM   per_all_people_f per,
                 per_all_assignments_f paas,
                 per_addresses padd
           WHERE per.employee_number = p_emp_number
             AND per.person_id = padd.person_id
             AND paas.person_id(+) = per.person_id;
    
       emp_rec                          c_check_employee%ROWTYPE;
    
    -- ***************************************************
    -- Cursor retrieves latest Object Version Number from per_assignments_f table..
    -- ***************************************************
       CURSOR csr_ovn (cp_person_id IN per_all_people_f.person_id%TYPE)
       IS
          SELECT MAX (paas.object_version_number)
            FROM per_assignments_f paas, per_all_people_f per
           WHERE paas.person_id = per.person_id
             AND per.employee_number = paas.assignment_number
             AND per.person_id = cp_person_id;
    
    
    -- ***************************************************
    -- Cursor to get Oracle_Loc_Code from SU CHRIS vs ORACLE Locations Table into a variable..
    -- ***************************************************
    
         CURSOR csr_ora_loc_code IS
          SELECT sil.ORACLE_LOC_CODE
         -- INTO ora_loc_code
         FROM SU_TEMPLOYEE_DETAILS std, SU_IEXP_LOCATIONS sil
         WHERE std.STD_LOCATION_ID = sil.CHRIS_LOC_code;
    
    
    BEGIN
    -- ***********************************
    -- Process each record in the work table
    -- ***********************************
       FOR v_emp IN get_employee_details
       LOOP
    -- ************************************
    -- determine whether customer already exists
    -- ************************************
          OPEN c_check_employee (v_emp.std_employee_number);
    
          FETCH c_check_employee
           INTO emp_rec;
    
          IF c_check_employee%NOTFOUND
          THEN
             insert_flag := 'I';
             DBMS_OUTPUT.PUT_LINE ('Employee No: ' || v_emp.std_employee_number);
          ELSE
             DBMS_OUTPUT.PUT (CHR (10));
             insert_flag := 'X';
           RAISE_APPLICATION_ERROR (-20001,  'Employee No: ' || v_emp.std_employee_number  || '  already 
    
    exists - please  UPDATE  manually..'    );
           END IF;
    
          CLOSE c_check_employee;
    
    -- ************************************
    -- Obtain the most recent Object Version Number..
    -- ************************************
          OPEN csr_ovn (v_emp.std_person_id);
    
          FETCH csr_ovn
           INTO l_obj;
    
          -- IF csr_ovn%NOTFOUND     THEN        RAISE NO_DATA_FOUND;   END IF;
          CLOSE csr_ovn;
    
    -- ************************************
    -- Open Oracle Location Code cursor 
    -- ************************************
          OPEN csr_ora_loc_code;   -- (v_emp.std_person_id);
          FETCH csr_ora_loc_code
           INTO ora_loc_code;
          CLOSE csr_ora_loc_code;
    
    
    -- ***********************************
    -- Create new PER_ALL_PEOPLE_F and PER_ADDRESSES record from
    --            info in  table record
    -- ***********************************
          IF insert_flag = 'I'
          THEN
    --         BEGIN                             -- Importing Employee Procedure --
             Hr_Employee_Api.create_gb_employee
                     (p_validate                       => l_validate,
                      p_hire_date                      => v_emp.std_hire_date,
                      p_business_group_id              => l_std_business_group_id,
                      p_date_of_birth                  => v_emp.std_date_of_birth,
                      p_email_address                  => v_emp.std_email_address,
                      p_first_name                     => v_emp.std_first_name,
                      p_middle_names                   => v_emp.std_middle_names,
                      p_last_name                      => v_emp.std_last_name,
                      p_sex                            => v_emp.std_sex,
                      p_ni_number                      => v_emp.std_national_identifier,
                      p_employee_number                => v_emp.std_employee_number,
                      p_person_id                      => l_person_id,
                      p_title                          => v_emp.std_title,
                      p_assignment_id                  => l_assignment_id,
                      p_per_object_version_number      => l_per_object_version_number,
                      p_asg_object_version_number      => l_asg_object_version_number,
                      p_per_effective_start_date       => l_per_effective_start_date,
                      p_per_effective_end_date         => l_per_effective_end_date,
                      p_full_name                      => l_full_name,
                      p_per_comment_id                 => l_per_comment_id,
                      p_assignment_sequence            => l_assignment_sequence,
                      p_assignment_number              => l_assignment_number,
                      p_name_combination_warning       => l_name_combination_warning,
                      p_assign_payroll_warning         => l_assign_payroll_warning
                     );
             Hr_Person_Address_Api.create_person_address
                                      (p_validate                     => l_validate,
                                       p_effective_date               => v_emp.std_hire_date,
                                       p_pradd_ovlapval_override      => NULL,
                                       p_validate_county              => NULL,
                                       p_person_id                    => l_person_id,
                                       p_primary_flag                 => 'Y',
                                       p_style                        => 'GB_GLB',
                                       p_date_from                    => SYSDATE,
                                       p_date_to                      => NULL,
                                       p_address_type                 => NULL,
                                       p_comments                     => NULL,
                                       p_address_line1                => v_emp.std_address_line1,
                                       p_address_line2                => v_emp.std_address_line2,
                                       p_address_line3                => v_emp.std_address_line3,
                                       p_town_or_city                 => v_emp.std_address_line4,
                                       p_region_1                     => NULL,
                                       p_region_2                     => NULL,
                                       p_region_3                     => NULL,
                                       p_postal_code                  => v_emp.std_post_code,
                                       p_country                      => v_emp.std_nationality,
                                       p_telephone_number_1           => NULL,
                                       p_telephone_number_2           => NULL,
                                       p_telephone_number_3           => NULL,
                                       p_party_id                     => ip_p_party_id,
                                       p_address_id                   => ip_p_address_id,
                                       p_object_version_number        => l_obj
                                      );
             Hr_Assignment_Api.update_emp_asg
                            (p_validate                    => l_validate,
                             p_effective_date              => SYSDATE,  -- l_date,
                             p_datetrack_update_mode       => l_datetrack_update_mode,
                             p_assignment_id               => l_assignment_id,
                             p_object_version_number       => l_obj,
                             p_supervisor_id               => v_emp.std_supervisor_id,
                             p_default_code_comb_id        => l_default_code_comb_id,
                             p_set_of_books_id             => l_set_of_books_id,
                             p_concatenated_segments       => l_concatenated_segments,
                             --IN/OUT
                             p_soft_coding_keyflex_id      => l_soft_coding_keyflex_id,
                             --IN/OUT
                             p_comment_id                  => l_comment_id,
                             --IN/OUT
                             p_effective_start_date        => l_date,     --IN/OUT
                             p_effective_end_date          => l_effective_end_date,
                             --IN/OUT
                             p_no_managers_warning         => l_no_managers_warning,
                             --IN/OUT
                             p_other_manager_warning       => l_other_manager_warning
                            --IN/OUT
                            );
             Hr_Assignment_Api.update_emp_asg_criteria
                 (p_validate                          => l_validate,
                  p_effective_date                    => SYSDATE,       -- l_date,
                  p_datetrack_update_mode             => l_datetrack_update_mode,
                  p_assignment_id                     => l_assignment_id,
                  p_object_version_number             => l_obj,
                  p_organization_id                   => l_organization_id,
                  p_location_id                       => ora_loc_code,
                  p_job_id                            => l_job_id,
                  p_position_id                       => v_emp.std_position_id,
                  p_special_ceiling_step_id           => l_special_ceiling_step_id,
                  p_effective_start_date              => l_date,
                  --per_effective_start_date,
                  p_effective_end_date                => l_effective_end_date,
                  --IN/OUT
                  p_people_group_id                   => l_people_group_id,
                  --IN/OUT
                  p_group_name                        => l_group_name,    --IN/OUT
                  p_org_now_no_manager_warning        => l_org_now_no_manager_warning,
                  --IN/OUT
                  p_other_manager_warning             => l_other_manager_warning,
                  --IN/OUT
                  p_spp_delete_warning                => l_spp_delete_warning,
                  --IN/OUT
                  p_entries_changed_warning           => l_entries_changed_warning,
                  --IN/OUT
                  p_tax_district_changed_warning      => l_tax_district_changed_warning
                 --IN/OUT
                 );
             v_rec_cnt := v_rec_cnt + 1;
             DBMS_OUTPUT.PUT (CHR (10));
             DBMS_OUTPUT.PUT_LINE (   'There were '
                                   || v_rec_cnt
                                   || '  records read in..'
                                  );
             DBMS_OUTPUT.PUT (CHR (10));
    -- ******************************
    -- End of customer related details
    -- ******************************
          END IF;
       END LOOP;
    
       COMMIT;
    EXCEPTION
       WHEN NO_DATA_FOUND
       THEN
          ROLLBACK;
       WHEN OTHERS
       THEN
          ROLLBACK;
          err_num := TO_CHAR (SQLCODE);
          err_msg := SUBSTR (SQLERRM, 1, 150);
          err_line :=   'ORACLE error occurred processing record.. ' ||  err_msg;
          DBMS_OUTPUT.PUT_LINE (err_line);
    
          INSERT INTO SU_SL_ERRORS  VALUES (err_num, err_msg, SYSTIMESTAMP);
    END;
    /
    
    EXIT;

    CURSOR csr_ora_loc_code IS

    SELECT sil. ORACLE_LOC_CODE
    -BY ora_loc_code
    OF std, sil SU_IEXP_LOCATIONS SU_TEMPLOYEE_DETAILS
    WHERE STDS. STD_LOCATION_ID = sil. CHRIS_LOC_code; OPEN csr_ora_loc_code. -(v_emp.std_person_id);
    EXTRACTION csr_ora_loc_code
    IN ora_loc_code;
    CLOSE Csr_ora_loc_code;

    Of course Yes.

    He chooses a sil. ORACLE_LOC_CODE, you are to pick up a. Which may be one of the sil. ORACLE_LOC_CODE, you don't like Oracle to choose an individual.
    If you want to get a few specific sil. ORACLE_LOC_CODE, you need to put a filter on it.

         CURSOR csr_ora_loc_code(p_your_parameter NUMBER) IS -- whatever datatype you wan to pass
          SELECT sil.ORACLE_LOC_CODE
         -- INTO ora_loc_code
         FROM SU_TEMPLOYEE_DETAILS std, SU_IEXP_LOCATIONS sil
         WHERE std.STD_LOCATION_ID = sil.CHRIS_LOC_code
         AND your_column = p_your_parameter;
    
          OPEN csr_ora_loc_code(v_emp.std_person_id);   -- (v_emp.std_person_id); -- I'm not sure why did you comment this out.
          FETCH csr_ora_loc_code
           INTO ora_loc_code;
          CLOSE csr_ora_loc_code;
    

    By
    VAMSi

  • Print booklet with CS5 does not properly

    I send a 12-page e-mail newsletter to a printer of every month (newsletter of the Macintosh users group). In previous versions of the printed booklet, I was able to put up with a PPD and it was great. The pages were perfectly arranged in the right order to be printed on paper 11 x 17, then collated and stapled.

    It's my first newsletter using InDesign CS5. Only, I spent half a day try and get saved pages as print quality spreads in the right order. I found searching forums that apparently, that snow leopard has no PDF printer anymore. My two printers do not have the ability to print the tabloid pages, so I can't set up the preset with those, and there is no other PPV, I can choose to.

    I have used PostScript as with independent device for the PPD printer. Booklet print preview looks as if it will end by correct, but when I go ahead and click on print - my PS file comes out with only half of the pages in PDF format (after opening in Acrobat). There should be 6 pages which are 2 poses with the last etc., first page. It's the preview, I get, but when Acrobat is done with her, I have 6 pages of my original 12 page newsletter. The pages that I get are 12, 2, 10, 4, 8 and 6. These are all the pages that must be on the same side of a page 2 - up to 11 x 17. Why I get the pages? The only thing I can think is that I can't put up a tabloid size PPD as I used to have in InDesign CS4.

    You may have more luck with a script. Dave Saunders has two of them who work a bit differently. Booklet of generation creates a new document as a copy of the original and the editorial pages for the two-seater stapling. It is fine as long as you have all of the elements that cross the spine. Make the booklet places pages of the original in a new doc and changes, that should allow you to have items of cross-spine.

    http://pdsassoc.com/downloads/Buildbooklet.zip

    CS3 Script from Dave brochure

  • Prblem with buttons; Cursor does not turn in the pointer (finger) into the mouseover state

    I'm programming the buttons on board animate, which are just symbols with their own timeline. I gave them actions to clicks, mouseover and mouseout/mouseouthandler(). They just call URL and are working properly, but I noticed that the cursor does not turn in the pointer (the hand with the index pointig) in the mouseover state. This creates a strange feeling, because users are not sure they are before buttons they click on them...

    Is there any solution for this?

    Thanks in advance!

    Hi Gzapiram,

    Click your button and in the properties panel, you will find a slider, with the auto default value section. Simply select the familiar hand cursor

    Gil

  • Cursor does not when the computer starts.

    On my wife laptop when she started his computer cursor does not at all. How she can use the cursor without using the touchpad (because it doesn't seem to work at all)? So how do this slider to work again?

    Thank you for your help.

    Paul

    Hello

    Try the system restore before you did it again at:

    How to make a Vista system restore
    http://www.Vistax64.com/tutorials/76905-System-Restore-how.html
    ==========================================

    If necessary: (make sure that you have restarted at least once, if the above did not work)

    Panel of configuration manager devices - mouse and pointing devices - Double click on the touchpad - the driver tab-
    Click on update driver (it comes may not do anything like MS is far behind the drivers of certification), now right CLICK
    on the TouchPad and UNINSTALL.

    Then go to the USB and UNINSTALL ALL controllers except the category itself (all in). RESET

    This will refresh the driver for the TouchPad and battery USB. This does not prevent the touchpad from working.

    Here is the similar procedure under XP, Vista is the same, except that we need to clear the specific device if present.
    http://support.Microsoft.com/kb/310575

    Then go to the system manufacturer's website and get the latest touchpad drivers.

    Download - SAVE - go to where you put it-click on - RUN AS ADMIN.

    ================================================

    Parameters for TouchPad located in the control panel - mouse (there may be several tabs with TouchPad entered)
    and some come with a utility that loads in the Notification area next to the clock in the bottom right.

    The here for Toshiba only if other brands may have similar:

    If a Toshiba, they have keys that allow easy adjustment of the TouchPad. See Toshiba support and
    Forums. If the TouchPad has been disabled with map keys must be activated with them.

    Toshiba downloads - access your model.
    http://www.CSD.Toshiba.com/cgi-bin/TAIS/support/JSP/home.jsp?NAV=download

    Toshiba forums
    http://laptopforums.Toshiba.com/

    I hope this helps.

    Rob - bicycle - Mark Twain said it is good.

  • The mouse cursor does not appear on the center of the screen to start upward.

    The mouse cursor does not appear on the center of the screen to start upward.  If the mouse moves a mobile cursor appears in the upper left corner of the screen.  Have to keep rebooting until the mouse cursor properly supported.

    The mouse cursor does not appear on the center of the screen to start upward.  If the mouse moves a mobile cursor appears in the upper left corner of the screen.  Have to keep rebooting until the mouse cursor properly supported.

    Suggestions:

    Go to Safe Mode:

    Shut down your computer > turn it back on and immediately and repeatedly tab key F8 until you see a black and white screen. Use the up/down arrow and selectSafe Mode with command prompt.

    1. in safe mode, please do a system restore. Choose the date where you did not have this problem as your restore point.
    Start button > Search box, type system restore > press the Enter key > uac prompt > click on choose a different restore point > next > select dates as your restore point, until the click > next > finish
    To sit and wait. The machine restarts when it's done.

    2. always in safe mode, do a check of the file system. See if file check will check for corrupted files and repair them.

    Start button > Search box type cmd > look up, do a RIGHT click oncmd.exe > click onRun As Administrator > in this window cmd black and white, type at the prompt flashing sfc/scannow > press the ENTER key.
    Note: there is a space between 'sfc' and ' / '.
    To sit and wait. It will take time.
    When finished, exit the cmd window.
    Reboot (restart your computer)

    For the benefits of others looking for answers, please mark as answer suggestion if it solves your problem.

  • Scrolling the page does not properly respond to BlackBerry Curve9360

    Hello friend

    I have developed applications for BlackBerry (JqueryMobile, Phonegap) the application works fine in BlackBerry Torch 9800.

    But once I've installed in BlackBerry Curve9360, scrolling of the page does not properly, that I am not able to view the complete list of items and long text.

    Help, please

    I came up with the solution, the problem occurs because BlackBerry Curve 9360 isn't a touchscreen, there fore scroll doesn't work.

    In my applications, I add 2 pages "index.html."

    on the first page, you have to test if the device is not touch and redirect to the second page.

    Do not use the page for "BB Curve" scroll and any other animation like CSS "" - webkit - transform: translate3d "»

    The other js script go without a problem.

    The page "BB Curve" to redesign the html for use with the cursor,
    For example, the menu is smaller, the police is smaller.
    the size of the screen is fixed.
    Dimension height is better indicate a value min eg 300px
    etc...

  • Cursor does not work using an external mouse

    Internal cursor does not currently work with an external mouse

    Yes, I use a laptop.  How can I disable the touchpad?

    The procedure for doing this is different for every brand and model of laptop.  You will need to read the user guide to find out how to do it on your computer.  I promise you that it will not give you leprosy for this!  :-)

    One possibility would be via the mouse control panel applet.  Click Start-> Control Panel-> mouse.  Click the device settings tab, and you should see a button to turn off the touchpad.  Make sure that you are disabling the touchpad and not by the mouse.  However, the procedure of your user guide will be easier and more user-friendly.

    Good luck.

  • Safari Web Clip does not properly

    Hello everyone

    I have a problem with safari Web Clip and that is does not properly for almost all pages, as example, I participate in a contest of therapy dbrand/unbox, and I really don't want to open the web page, whenever a new winner is announced, so I created a web clip, but it does not work well When I click the web clip icon he asked the location of the clip and when click on done, the web clip is from a different region and I can't fix.

    Is this some sort of bug or can I fix it myself?

    Web Clip still didn't work if the cut element remains in the exact same on exactly the same site. This is apparently not the case here.

    Dashboard widgets in general, are an old technology that has not been updated in many years.

  • Satellite T110-107 - Touchpad does not properly

    I love my Satellite T110-107, but there are problems with the touchpad.

    (1) the mouse cursor does not move sometimes. With this one, I get to move taking both hands away from the laptop for a while.
    (2) the cursor of the mouse all of a sudden 'draws' of the right hand of the screen.

    I tried to change the sensitivity of the touchpad to the minimum and maximum levels, I adjusted the sensitivity 'Palm', but nothing seems to help other than by the low sensitivity that helps a little.

    I also noticed that when the laptop is on my lap, the problem is worse than if it's on a table.

    I think it's a problem with an accumulation of static electricity on the case.

    Other ideas?

    Hey Buddy,

    I use the Satellite T110 for months now and really and no problem. Everything is great and I don t have problems. It the laptop really great s!

    There must be something wrong with your installation.
    First of all, I would recommend updating the driver from the touchpad. You can download the Toshiba site:
    http://EU.computers.Toshiba-Europe.com

    After that you should test again. Also check the settings of the touchpad again. There are a large number of settings to improve the touchpad.

  • Toshiba 47L7453DG - CEC does not properly using exernal amplifier

    I bought Toshiba 47L 7453 a few days ago.

    It is connected to the amplifier Onkyo TX-NR535 but CEC does not properly. Volume control works fine but On / Off or stanby does not at all.

    My previous TV Toshiba 42XV635DG was communicated by the CEC with the Onkyo even without any problem.

    The wire connection is HDMI 1.4 certified.
    Maybe the problem is with the firmware of the TV.

    Maybe someone had the same problem.

    Any suggestion?

    Thank you

    Hello

    From my point of few TV and amplifier are connected some CEC (Volume control) functions that work. I think you should check the auto power settings and HDMI CEC standby control system.

    Manual, you will find some important notes:
    http://www.Toshiba-OM.NET/LCD/PDF/English/L7453-424755-English.PDF

    _Page: 11_
    + You can control the basic functions of audio/video devices connected with s TV remote if you connect an HDMI-CEC compatible AV amplifier or playback device. +
    + If several devices are connected, the HDMI CEC control function may not work correctly. +

    _Page: 86 - 87_
    + When the point to activate the HDMI CEC control in the menu of HDMI CEC control configuration is defined on.
    + On, also allocated to individual features will be activated. +
    + When the connected equipment work, HDMI CEC control automatically detects the TV input selection. If the TV is in standby mode, it will be automatically reactivated. +
    + If the TV is off (standby), television will send a message turns off (standby) all devices HDMI CEC control connected to the TV. +

  • My cursor does not work in Blogger using the Safari browser.

    My cursor does not work in Blogger using the Safari browser. I am able to type, but the cursor seems to disappear when I'm in blogger.  It is difficult to navigate if you do not see where is the curse. I used all the other browsers, and this does not happen with them.  In the Blogger help forum other people experiencing the same thing.  He has been as well as a few weeks and I can not say definitively if it coincides with the updates to the OS. Any help would be appreciated.

    I have the same question too! Is there any ideas on how to solve this problem? So frustrating when you can't even say where you are on the page

  • Error message: Shockwave, Flash Player does not properly during playback Slotomania

    Original title: shockwave flash player

    Hi I have problems with some games. Especially slotomania. When I enter the RM of slotomania that flashing message saying that Flash shockwave Player does not properly can give to interrupt or stop options taken but its gone too fast for me to do something. Then the really slow game. Can you help me?

    Hello Marilyn,.

    Thanks for posting your query in the Microsoft Community Forum.

    According the information, you are facing problems to play games online as Slotomania due to the Adobe Shockwave, Flash Player error messages.

    It would be useful that you can answer these questions to help you further.

    1. are you facing problems that when you play online game Slotomania?

    2. using Internet Explorer or another web browser?

    3. what version of the Windows operating system is installed on your computer?

    4. have you made a recent software or hardware changes to the system?

    If you use Internet Explorer, you can see the article and check if it helps to solve the problem.

    The problems of games online using Internet Explorer

    It will be useful.

    Let us know if you need help with Windows related issues. We will be happy to help you.

  • COQ2014: COQ2014 AMD/ATI does not properly

    2 messages warn me for "AMD/ATI does not properly" and "search solution AMD Display adapt-ATI Radeon Graphics Cards.  Search for updates, solutions with nothing appear.  I don't know what that precisely uninstall nor where the new material.

    Thank you!

    Dear customer,

    Welcome to the HP consumer's Support Forum!

    Please try and uninstall the graphics driver AMD/ATI to address current from the control panel > programs and features.

    After you have uninstalled the current graphics driver, please try and install the following driver and check:

    Suite software Catalyst:

    http://support.AMD.com/en-us/download/desktop?OS=Windows+7+-+32

    Hope this helps, for other queries in response to the post and feel free to join us again.

    * Click on the star of CONGRATULATIONS on the left to say thank you *.

    Make it easier for others to find solutions by checking a response "Accept as Solution" if it solves your problem.

    Thank you
    GR1
    Although I am an employee of HP, I speak for myself and not for HP

  • When I turn on my computer a warning appears indicating "delivery manager does not properly.

    DEP original title: data

    When I turn on my computer, a warning appears that says "delivery manager does not properly" and when I click on help and support balloon explanation is that my DEP is not configured correctly.

    Then, after following the instructions and correct the parameters I restart my pc and still the same message appears.

    Hi Olliewoods,

    (1) since when are you facing this problem?

    (2) what is you receive the exact error message?

    An application installed on the computer may be the cause of this problem; I suggest you try the following steps:

    Method 1: Put the computer to boot to determine which application is causing the problem.

    Follow step 1 in the link below,

    How to troubleshoot a problem by performing a clean boot in Windows Vista or in Windows 7

    http://support.Microsoft.com/kb/929135

    If everything works well after a clean boot, you can deduce that some third-party services are at the origin of the problem.

    Continue with the remaining steps to pin-point on the third party service.

    After find you the program that is causing the problem, you will have to perhaps to update or install a newer version of the program, if you rarely use that you should consider uninstalling the software.

    Important: n ' forget not the computer to start normal follow step 7 in the link.

    See the link below for more information on Data Execution Prevention
    Data Execution Prevention: Frequently asked questions

    Thank you, and in what concerns:

    Ajay K

    Microsoft Answers Support Engineer
    ---------------------------------------------------------------------------------------------------------
    Visit our Microsoft answers feedback Forum and let us know what you think.

Maybe you are looking for

  • Re: Tecra A10 - 1 5, Windows 8 is not compatible?

    Dear SirWindows 8 upgrades very well for example drivers etc for this model youIan

  • How can I find the specific settings of the extension on a product number?

    Is it possible to find the factory settings specific to your desktop HP in view of the extension of the number of product? I think to buy a refurbished HP Envy, but the seller has not all the technical specifications (e.g., is the RAM 1 x 8 or 2 x 4?

  • Learn how to use queues producer consumer event

    Hi all I'm trying to understand the good programming techniques for the use of the elements of the queue in a producer / consumer event-driven program. I am looking for some demonstration programs have an idea of the functioning of these looops-based

  • 4.7 question

    No work around to the next problem, install our widget on a Tour 9630 running 4.7? This application requires the modules follows, that are not installed. net_rim_bb_web_jes_api net_rim_networks_api Opportunity of using Eclipse SDK 3.6 features: Black

  • How to connect the laptop screen to two different TVs?

    I try to show what is on my laptop two two different TVs at the same time. I already have the hdmi cable connected, but I can't seem to find a way to show my monitor on both screens at the same time. I can get it to show on one or the other. Any sugg