How to debug or how to find where the problem...

Hi,
I didn't getting this proc where's getting the problem. In which proc is raising the error and where's the problme.
Please any body can help me getting out of from this error..
PROCEDURE Ysp_Payproc(udYrmonth IN Y_EMP_SAL_DETAILS.Yes_Year_Month%TYPE,
udBranch IN VARCHAR2,
O_ErrCd OUT VARCHAR2,
O_ErrMsg OUT VARCHAR2) IS
-- Get all active employees
udbasaflop Y_EMP_SAL_DETAILS.Yes_Amt%TYPE;
svErrCd VARCHAR2(12);
svErrMsg VARCHAR2(2000);
UdLopLvDays NUMBER;
udFromdate VARCHAR2(20);
udTodate VARCHAR2(20);
     udEarnAmt NUMBER;
     nChk NUMBER;
CURSOR curEmpnum IS
SELECT ROWNUM PNUM, Gem_Emp_Num
FROM G_EMPLOYEE_MASTER
WHERE Gem_Emp_Status = 'A' AND Gem_Sal_Flag = 'Y'
     AND TO_DATE(TO_CHAR(Gem_DOJ,'MMRRRR'),'MMRRRR')<=TO_DATE(udYrmonth,'MMRRRR')
AND Gem_Branch=udBranch
ORDER BY Gem_Emp_Num ;
BEGIN
-- Delete the existing records
DBMS_OUTPUT.PUT_LINE('udBranch');---310309
DELETE FROM Y_EMP_SAL_DETAILS WHERE YES_YEAR_MONTH = udYrmonth
     AND YES_EMP_NUM IN (SELECT GEM_EMP_NUM FROM G_EMPLOYEE_MASTER
     WHERE GEM_BRANCH=udBranch);
COMMIT;
DELETE FROM Y_PAYSLIP_DETAILS WHERE YPS_YEAR_MONTH = udYrmonth
     AND YPS_EMP_NUM IN (SELECT GEM_EMP_NUM FROM G_EMPLOYEE_MASTER
     WHERE GEM_BRANCH=udBranch);
COMMIT;
     SELECT NVL(COUNT(*),0)
     INTO NCHK
     FROM Y_PAYSLIP_MASTER
     WHERE YPY_YEAR_MONTH = udYrmonth;
     DBMS_OUTPUT.PUT_LINE('1');
     --COMMIT;
     -- CREATING RECORD IN y_payslip MASTER FOR THE CURRENT MONTH PROCESSING.
     IF NCHK=0 THEN
     DBMS_OUTPUT.PUT_LINE('2');
     INSERT INTO Y_PAYSLIP_MASTER
     (YPY_YEAR_MONTH, YPY_PAY_PROC_DONE, YPY_CRT_DT, YPY_CRT_UID)
     VALUES
     (udyrmonth, 'N', SYSDATE, 'HMS');
     COMMIT;
     END IF;
DBMS_OUTPUT.PUT_LINE('3');
PKG_PAYROLL.YSP_FROM_TO_DATE(udYrmonth,udFromDate,udToDate);
DBMS_OUTPUT.PUT_LINE('4');
FOR crEmpNum IN curEmpNum LOOP
-- Do loss of Pay processing
     DBMS_OUTPUT.PUT_LINE('5');
Pkg_Payroll.Ysplop(crEmpNum.Gem_Emp_Num,
udYrmonth,
udFromdate,
udtodate,
udbasaflop,
UdLopLvDays,
svErrCd,
svErrMsg);
IF svErrCd IS NOT NULL OR svErrMsg IS NOT NULL THEN
--CLOSE crEmpNum;
          DBMS_OUTPUT.PUT_LINE('Ysplop');
          O_ErrMsg := svErrMsg;
RETURN;
END IF;
     DBMS_OUTPUT.PUT_LINE('6');
Pkg_Payroll.Ysptotearn(crEmpNum.Gem_Emp_Num,
udbasaflop,
udyrmonth,
UdLopLvDays,
svErrCd,
svErrMsg);
IF svErrCd IS NOT NULL OR svErrMsg IS NOT NULL THEN
--CLOSE crEmpNum;
          DBMS_OUTPUT.PUT_LINE('YSPTOTEARN');          
O_ErrMsg := svErrMsg;
--RETURN;
END IF;
          DBMS_OUTPUT.PUT_LINE('7');
Pkg_Payroll.YSP_OTEARNING(crEmpNum.Gem_Emp_Num, udyrmonth, udearnamt,
                                        sVErrCd, sVErrmsg);
IF svErrCd IS NOT NULL OR svErrMsg IS NOT NULL THEN
--CLOSE crEmpNum;
          DBMS_OUTPUT.PUT_LINE('YSP_OTEARNING');          
O_ErrMsg := svErrMsg;
--RETURN;
END IF;
          DBMS_OUTPUT.PUT_LINE('8');
Pkg_Payroll.Ysptax(crEmpNum.Gem_Emp_Num,
udyrmonth,
svErrCd,
svErrMsg);
IF svErrCd IS NOT NULL OR svErrMsg IS NOT NULL THEN
--CLOSE crEmpNum;
          DBMS_OUTPUT.PUT_LINE('YSPTAX');          
O_ErrMsg := svErrMsg;
RETURN;
END IF;
-- Insert into Salary Details
          DBMS_OUTPUT.PUT_LINE('9');
Pkg_Payroll.YspAddPaySlip(crEmpNum.Gem_Emp_Num,
udYrmonth,
crEmpnum.pnum,
UdLopLvDays,
svErrCd,
svErrMsg);
IF svErrCd IS NOT NULL OR svErrMsg IS NOT NULL THEN
--CLOSE crEmpNum;
               DBMS_OUTPUT.PUT_LINE('YSPADDPAYSLIP');
O_ErrMsg := svErrMsg;
RETURN;
END IF;
               DBMS_OUTPUT.PUT_LINE(' BEFORE COMMIT');
COMMIT;
                    DBMS_OUTPUT.PUT_LINE('AFTER COMMIT');
END LOOP;
                    DBMS_OUTPUT.PUT_LINE('END LOOP END');
/*ROUNDING OFF THE TOTAL NETPAY AMOUNT FOR EACH EMPLOYEE AFTER PAYROLL PROCESS AND KEEP THE
ROUNDING AMOUNT IN THE Y_EMP_SAL_DETAILS IN 'BASIC' CODE*/
Select Sum(Decode(Yes_Earn_Deduct_Ind,'E',Yes_Amt,'D',-1*Yes_Amt))
into udRoundNetAmt
From Y_Emp_Sal_Details
Where Yes_Year_Month=udYearMonth
and Yes_Emp_Num=udEmpNum;
Ysp_Roundoff_Amt(udEmpNum,'BASIC',NVL(udbasafLop,0),udRoundoffAmt,udRoundAmount);*/
-- UPDATING AFTER PROCESSING FOR ALL EMPLYESS SUCCESSFULLY.
          DBMS_OUTPUT.PUT_LINE('11 YEAR MONTH =>'||udyrmonth);
UPDATE Y_PAYSLIP_MASTER
SET YPY_PAY_PROC_DONE = 'Y'
WHERE YPY_YEAR_MONTH = udyrmonth;
COMMIT;
     EXCEPTION
               WHEN OTHERS THEN
               DBMS_OUTPUT.PUT_LINE('12 =>'||SQLCODE||' Errom =>'||sqlerrm);
END Ysp_Payproc;
When I execute from Sql* plus window I am getting the error like
ORA-00001: unique constraint (HMS.PK_YES) violated

If you are using Oracle 10G ( select * from v$version)
create a small anonymous block and run your procedure and see if you can interpret the stack output
Declare
--Variables
Begin
--Execute SP
Exception
when others
DBMS_OUTPUT.PUT_LINE('Output for dbms_utility.format_error_stack');
DBMS_OUTPUT.PUT_LINE(dbms_utility.format_error_stack);
End;post the output for this
Formatted code
PROCEDURE Ysp_Payproc(udYrmonth IN Y_EMP_SAL_DETAILS.Yes_Year_Month%TYPE,
                      udBranch  IN VARCHAR2,
                      O_ErrCd   OUT VARCHAR2,
                      O_ErrMsg  OUT VARCHAR2) IS
  -- Get all active employees
  udbasaflop  Y_EMP_SAL_DETAILS.Yes_Amt%TYPE;
  svErrCd     VARCHAR2(12);
  svErrMsg    VARCHAR2(2000);
  UdLopLvDays NUMBER;
  udFromdate  VARCHAR2(20);
  udTodate    VARCHAR2(20);
  udEarnAmt   NUMBER;
  nChk        NUMBER;
  CURSOR curEmpnum IS
    SELECT ROWNUM PNUM, Gem_Emp_Num
      FROM G_EMPLOYEE_MASTER
     WHERE Gem_Emp_Status = 'A'
       AND Gem_Sal_Flag = 'Y'
       AND TO_DATE(TO_CHAR(Gem_DOJ, 'MMRRRR'), 'MMRRRR') <=
           TO_DATE(udYrmonth, 'MMRRRR')
       AND Gem_Branch = udBranch
     ORDER BY Gem_Emp_Num;
BEGIN
  -- Delete the existing records
  DBMS_OUTPUT.PUT_LINE('udBranch'); ---310309
  DELETE FROM Y_EMP_SAL_DETAILS
   WHERE YES_YEAR_MONTH = udYrmonth
     AND YES_EMP_NUM IN (SELECT GEM_EMP_NUM
                           FROM G_EMPLOYEE_MASTER
                          WHERE GEM_BRANCH = udBranch);
  COMMIT;
  DELETE FROM Y_PAYSLIP_DETAILS
   WHERE YPS_YEAR_MONTH = udYrmonth
     AND YPS_EMP_NUM IN (SELECT GEM_EMP_NUM
                           FROM G_EMPLOYEE_MASTER
                          WHERE GEM_BRANCH = udBranch);
  COMMIT;
  SELECT NVL(COUNT(*), 0)
    INTO NCHK
    FROM Y_PAYSLIP_MASTER
   WHERE YPY_YEAR_MONTH = udYrmonth;
  DBMS_OUTPUT.PUT_LINE('1');
  --COMMIT;
  -- CREATING RECORD IN y_payslip MASTER FOR THE CURRENT MONTH PROCESSING.
  IF NCHK = 0 THEN
    DBMS_OUTPUT.PUT_LINE('2');
    INSERT INTO Y_PAYSLIP_MASTER
      (YPY_YEAR_MONTH, YPY_PAY_PROC_DONE, YPY_CRT_DT, YPY_CRT_UID)
    VALUES
      (udyrmonth, 'N', SYSDATE, 'HMS');
    COMMIT;
  END IF;
  DBMS_OUTPUT.PUT_LINE('3');
  PKG_PAYROLL.YSP_FROM_TO_DATE(udYrmonth, udFromDate, udToDate);
  DBMS_OUTPUT.PUT_LINE('4');
  FOR crEmpNum IN curEmpNum LOOP
    -- Do loss of Pay processing
    DBMS_OUTPUT.PUT_LINE('5');
    Pkg_Payroll.Ysplop(crEmpNum.Gem_Emp_Num,
                       udYrmonth,
                       udFromdate,
                       udtodate,
                       udbasaflop,
                       UdLopLvDays,
                       svErrCd,
                       svErrMsg);
    IF svErrCd IS NOT NULL OR svErrMsg IS NOT NULL THEN
      --CLOSE crEmpNum;
      DBMS_OUTPUT.PUT_LINE('Ysplop');
      O_ErrMsg := svErrMsg;
      RETURN;
    END IF;
    DBMS_OUTPUT.PUT_LINE('6');
    Pkg_Payroll.Ysptotearn(crEmpNum.Gem_Emp_Num,
                           udbasaflop,
                           udyrmonth,
                           UdLopLvDays,
                           svErrCd,
                           svErrMsg);
    IF svErrCd IS NOT NULL OR svErrMsg IS NOT NULL THEN
      --CLOSE crEmpNum;
      DBMS_OUTPUT.PUT_LINE('YSPTOTEARN');
      O_ErrMsg := svErrMsg;
      --RETURN;
    END IF;
    DBMS_OUTPUT.PUT_LINE('7');
    Pkg_Payroll.YSP_OTEARNING(crEmpNum.Gem_Emp_Num,
                              udyrmonth,
                              udearnamt,
                              sVErrCd,
                              sVErrmsg);
    IF svErrCd IS NOT NULL OR svErrMsg IS NOT NULL THEN
      --CLOSE crEmpNum;
      DBMS_OUTPUT.PUT_LINE('YSP_OTEARNING');
      O_ErrMsg := svErrMsg;
      --RETURN;
    END IF;
    DBMS_OUTPUT.PUT_LINE('8');
    Pkg_Payroll.Ysptax(crEmpNum.Gem_Emp_Num, udyrmonth, svErrCd, svErrMsg);
    IF svErrCd IS NOT NULL OR svErrMsg IS NOT NULL THEN
      --CLOSE crEmpNum;
      DBMS_OUTPUT.PUT_LINE('YSPTAX');
      O_ErrMsg := svErrMsg;
      RETURN;
    END IF;
    -- Insert into Salary Details
    DBMS_OUTPUT.PUT_LINE('9');
    Pkg_Payroll.YspAddPaySlip(crEmpNum.Gem_Emp_Num,
                              udYrmonth,
                              crEmpnum.pnum,
                              UdLopLvDays,
                              svErrCd,
                              svErrMsg);
    IF svErrCd IS NOT NULL OR svErrMsg IS NOT NULL THEN
      --CLOSE crEmpNum;
      DBMS_OUTPUT.PUT_LINE('YSPADDPAYSLIP');
      O_ErrMsg := svErrMsg;
      RETURN;
    END IF;
    DBMS_OUTPUT.PUT_LINE(' BEFORE COMMIT');
    COMMIT;
    DBMS_OUTPUT.PUT_LINE('AFTER COMMIT');
  END LOOP;
  DBMS_OUTPUT.PUT_LINE('END LOOP END');
  /*ROUNDING OFF THE TOTAL NETPAY AMOUNT FOR EACH EMPLOYEE AFTER PAYROLL PROCESS AND KEEP THE
  ROUNDING AMOUNT IN THE Y_EMP_SAL_DETAILS IN 'BASIC' CODE*/
  Select Sum(Decode(Yes_Earn_Deduct_Ind,'E',Yes_Amt,'D',-1*Yes_Amt))
  into udRoundNetAmt
  From Y_Emp_Sal_Details
  Where Yes_Year_Month=udYearMonth
  and Yes_Emp_Num=udEmpNum;
  Ysp_Roundoff_Amt(udEmpNum,'BASIC',NVL(udbasafLop,0),udRoundoffAmt,udRoundAmount);*/
  -- UPDATING AFTER PROCESSING FOR ALL EMPLYESS SUCCESSFULLY.
  DBMS_OUTPUT.PUT_LINE('11 YEAR MONTH =>' || udyrmonth);
  UPDATE Y_PAYSLIP_MASTER
     SET YPY_PAY_PROC_DONE = 'Y'
   WHERE YPY_YEAR_MONTH = udyrmonth;
  COMMIT;
EXCEPTION
  WHEN OTHERS THEN
    DBMS_OUTPUT.PUT_LINE('12 =>' || SQLCODE || ' Errom =>' || sqlerrm);
END Ysp_Payproc;

Similar Messages

  • Can anyone find where the problem is.... in this small plsql code(apps)

    hi... plz try to execute the following code...
    i'm getting 'no data found' error where infact there are thousands of rows
    DECLARE
    CURSOR C1 IS SELECT REPORT_HEADER_ID
    FROM AP_EXPENSE_REPORT_LINES_ALL;
    INV_NUM VARCHAR2(50);
    BEGIN
    FOR I IN C1 LOOP
    SELECT INVOICE_NUM INTO INV_NUM
    FROM AP_EXPENSE_REPORT_HEADERS_ALL AH
    WHERE AH.REPORT_HEADER_ID=I.REPORT_HEADER_ID;
    DBMS_OUTPUT.PUT_LINE(INV_NUM);
    EXIT WHEN C1%NOTFOUND;
    END LOOP;
    END;
    i dont bother about duplicate invoice numbers

    Hi Vinnie,
    I didnt get the solution.
    Data is there but still why is it showing 'No data found'?
    could please share the solution for this.

  • How do I find where the master file for a version in aperture 3

    I was wondering how to find where the original master image is in the aperture 3 library. For instance we have several images that are in different albums and folders but are trying to find where the original image is in the library.

    Is your Library managed or referenced?
    If your library is referenced, then you can reveal the master image file by selecting the image in the browser and selecting "File -> Show in Finder" from the menu.
    If your library is managed you will have to open the Library package to see the master image files: Ctrl-click the Aperture library and select "Show Package Contents" from the Pop-up menu. Then browse the folder "Masters", but very carefully - don't change anything inside the package! The Masters-folder is arranged by date: year, month, day ...
    But you can always look at the master image files from inside Aperture - much safer: Select any image and type "m" - that will show you what the master image file is like - type "m" again to view the version.
    Regards
    Léonie

  • How to find where the below sql is used in database

    Hi all,
    I am tring to find the below SQL in our data base where it is used?
    I had done the checking in all reports manually, But have no luck.
    But i am sure that the below sql is in our data base and having some issue on it.
    Can any one please let me know how to find where the below query is used in our database? I mean in packages/ triggers/ procedures or any where in our database
    Please find the query
    select count(sh.shipment_gid) from SHIPMENT sh, SHIPMENT_TYPE stp, LOCATION ld where (sh.shipment_gid in (select sstop.shipment_gid from SHIPMENT_STOP sstop where (sstop.appointment_delivery > trunc(TO_DATE(:1, :2), :3)) and (sstop.appointment_delivery is not null))) and (sh.is_to_be_held=:"SYS_B_0") and (sh.domain_name=:4) and (sh.insurance_policy_number like :"SYS_B_1") and (sh.perspective=:"SYS_B_2") and (sh.shipment_type_gid=stp.shipment_type_gid) and (sh.dest_location_gid=ld.location_gid(+)) and (stp.shipment_type_xid!=:5) order by ld.location_name, sh.start_time
    Regards,
    Dpk

    There is video demonstration how to import from data dictionary.
    After import you can select from the main menu: View->DDL File Editor menu item to open the DDL dialog and then click on "Generate" button on the dialog. When the DDL is generated you can search in it using "Find" button.
    Ivan

  • How to find where the screen field is stored in table

    Hi all,
    How to find where the screen field  is stored in the table .
    for some transactions if i press F1 on the field and after checking for the technical help.
    I can only find the struture for the screen field, but whereas i need table name for it.
    Can anybody help me how to find the table name where the field is stored.
    Regards,
    Madhavi

    Hi,
    Just hitting a F1 on screen field and getting structure name will not help in getting table name.
    First you need to know the flow of data in the reqd module, which will help you know all the tables in that module with there most of the fields with the data flow, now you need to work on your own to figure out that in which actual tables that value is stored.
    Hope this helps you.
    Regards,
    Tarun

  • I got a crash report that said the Flash plug in had crashed, but when the incident actually happened, the report said that "Silverlight" had crashed; how do I know where the problem is?

    Sorry. The crash report actually said that Quick Time had crashed, not Flash, but at the time the crash actually happened, the message said that "Silverlight" had crashed. I just want to know how I can tell where the problem is so that I can try to fix it.

    That is a legitimate Mozilla newsletter. As it says in the email:
    You're receiving this email because you subscribed to receive email newsletters and information from Mozilla. If you do not wish to receive these newsletters, please click the Unsubscribe link below.
    Unsubscribe https://www.mozilla.org/en-US/newsletter/existing/ad9febcf-65ac-41fd-810b-798945f448f3/
    Modify your preferences https://www.mozilla.org/en-US/newsletter/existing/ad9febcf-65ac-41fd-810b-798945f448f3/ "

  • How to analyze this waveform to find out the point

    The current waveform as the following attachment ,How can I analyze it to find out the point a in order to calculate the different current rms between it?
    Attachments:
    未命名.JPG ‏44 KB

    The same question as mention with this link:http://forums.ni.com/ni/board/message?board.id=217​0&message.id=8831&jump=true

  • HT4528 Howdy.  I keep getting a message stating that my apple ID has been disabled.  I recently contacted my CC company, AMEX, for several fradulent iTune charges, which is probably where the problem first originated.  How can I resolve this issue?

    Howdy.  I keep getting a message stating that my apple ID has been disabled.  I recently contacted my CC company, AMEX, for several fradulent iTune charges, which is probably where the problem first originated.  How can I resolve this issue?

    I had to dispute several unauthorized charges to itunes. My apple id was disabled after that. I followed jarnoldus's (older post) advice and it worked. Im duplicating his entry here with a few modifications. I hope this works for you.
    1. Go to https://getsupport.apple.com
    2. Choose your product (mine was ipad)
    3. Click the "iTunes, App Store or iBooks" icon
    4. Click "Apple ID account security"
    5. Type in "apple id has been disabled"
    6. Choose your country (mine was US)
    7. Choose the "talk to apple support now" option
    8. Provide the info they request (name, email, phone number)
    9. They will call you right away.
    Explain your apple id has been disabled. The rep will connect you to an iTunes rep. He/she will look up your account. You will be required to answer your 3 security questions. You MUST get a minimum of 2 correct. If you succeed they will enable your id. Good luck!

  • HT2188 I just got an iPad mini, when I try to upload my iPhone backup from my Mac i get the message to upgrade my iTunes. I can not seen to find where the download link is for iPads on apple website. Can anyone help?

    I just got an iPad mini, when I try to upload my iPhone backup from my Mac i get the message to upgrade my iTunes. I can not seen to find where the download link is for iPads on apple website. Can anyone help?

    The message is referring to iTunes on your computer, not the iPad : http://www.apple.com/itunes/download/
    The built-in apps on the iPad can only be updated via iOS updates, so if your iPad mini is on iOS 6.0.2 then its up-to-date

  • I have final cut pro x-i have been using the share button previously and had no problem.as of today i share a movie to 720hd, and after a white it says share successful but i cannot find where the movie has been saved???need help

    i have final cut pro x-i have been using the share button previously and had no problem.as of today i share a movie to 720hd, and after a while it says share successful but i cannot find where the movie has been saved???need help--i cannot find the destination. can this be changed.it used to go to itunes, home video.thanks, dimitrios

    EExactly what settings are you using. Some go to iTunes.

  • On the Web Wiz Forum, id="gwProxy" ="" ="ifofjsCall==''jsCall;elsesetTimeout'jsCall',500;" id="jsProxy" ="" is added to every reply that I make. Safe mode cures it but how do I know which add-on is the problem?

    When I go to a reply window, sometimes it almost looks like there is a little window/box appears (with the 6 dots that allows the size to be changed) It appears to be the cause of the string/code?
    On the Web Wiz Forum, < id="gwProxy" ="">< ="ifofjsCall==''jsCall;elsesetTimeout'jsCall',500;" id="jsProxy" ="">
    to be added once the reply is posted, to every reply that I make. Safe mode cures it but how do I know which add-on is the problem? I have 25-30 add-ons.

    Disable all addons by going to Tools -> Addons and clicking the disable button in every entry under Extensions or Plugins panels.
    Restart Firefox.
    Confirm the problem isnt there.
    Enable each addon one by one by going to Tools -> Addons and clicking the enable button in every entry under Extensions or Plugins panels, in such a way that each time you enable ONE addon, you RESTART the browser and see if the problem STILL happens.
    AS SOON AS the problem happens, disable the last addon you enabled. That one is the culprit. You can now enable all the others, if needed.

  • Apple says  Reminders works with Outlook, but I can't find where the lists are displayed in Office or Outlook  once they are synced.

    Apple says  Reminders works with Outlook, but I can't find where the lists are displayed in Office or Outlook  once they are synced. Any suggestions?

    I'll guess you've already discovered the answer to this, but just in case:
    Reminders works with Outlook tasks by syncing with iCloud, or through Exchange. You can't sync iOS Reminders with Outlook Tasks via USB/iTunes (like you can do with Notes, Calendar, Contacts).
    So the marketing material on Reminders is a little misleading in that it's not specific enough -- there is no syncing without one of those intermediary systems mentioned above.
    On a side note, syncing Tasks/Reminders via iCloud is not very good in my opinion:
    Requires that you sync to the cloud, even if you have no other use for storing personal data in the cloud.
    Requires that the iCloud Control Panel be installed on your PC (not sure about Mac).
    After syncing, you'll find new Calendar and Task groups called "iCloud" have been created in Outlook. The calendar groups appear to be created even if you're only syncing Tasks/Remminders (not sure why).
    Reminders are stored in the new group (noted above) called "iCloud" rather than in your default Tasks group. This seems to me to be a sort of "parallel" sync, rather than a true sync with Outlook. There are oter implications of your synced tasks being in the new group that I won't go into here, but you can search the interwebs to learn more.
    In my own case, I tried iCloud syncing, decided that I didn't like it for the reasons stated above, and then uninstalled (Control Panel and new Outlook groups) with no apparent ill effects.
    Though I don't guarantee you'll have the same results, it might be worth a try to see if it suits your purposes.

  • Can't find where the Nokia Connectivity Cable Driv...

    Hi. Just as the topic says, I can't find where the NCCD is installed on my pc. I tried searching for it but all I find is the setup. Can anyone help me find it? I'll be very grateful. Thanks in advance.

    When people have two item and they feel it is a troublesome thing that when they have to put the function of the two items together, what should they do? Of course they can look for item that at the same time owns two kinds of the function that people requires. Maybe this is not easy to understand, and you can take one thing as an example. For example, in the past the size of the umbrella is a little huge and sometimes it is not easy to carry and can’t be used to protect people from the hot sunshine in the summer. Then the folding sun umbrella and folding umbrella come into the market and now is widely used by people. And this rule also goes when you want to buy the WiFi & Bluetooth Signal Jammer that own the ability of both jamming the cell phone and the GPS signals.

  • I plugged my phone into my a different computer (mac) that was not mine and it asked me to restore the phone. I started to back up the phone, then ended the phone got unplugged in the middle of the backup. Now we can't find where the iPhone backed up.

    I plugged my phone into my a different computer (mac) that was not mine and it asked me to restore the phone. I started to back up the phone, then ended the phone got unplugged in the middle of the backup. Now we can't find where the iPhone backed up.

    If it there is a backup you will find in in ~/Library/Application Support/MobileSync/Backup.  (Just open Finder>Go>Go To Folder..., past this in the path box and click Go.)

  • I used the youtube mp3 converter via Safari and I can't find where the music downloaded to.  It isn't in iTunes or my music library.  Any help would be appreciated.  Thanks.

    I used the youtube mp3 converter via Safari and I can't find where the music downloaded to.  It isn't in iTunes or my music library.  Any help would be appreciated.  Thanks.
    I should say that I am doing this on the iPhone4 and not a laptop.

    I believe that there is an app called MxTube that lets you download high quality youtube videos to your iPhone

Maybe you are looking for

  • Address Book in Lion Server....Read Only

    Hi, Is there a way on how to making the addressbook server read only (meaning can't be edited)? Last year, I setup a Lion Server for a company that will serve as an Addressbook server for them and at the same time configuring their devices via Profil

  • FTP user conection error message

    Hi I apologize if this threat not belong here, but we're having problem with a client interface (Z) with FTP transfer, show this message: "User ftperp has no access authorization for computer 10.240.0.15" Where we can check this user(FTP)  was create

  • Labview timing problem

    I'm kind of stuck with a bit a problem in Labview 7 (base ed.). I've got a PCI-6036E that can sample at 200KS/s with a 24bit onboard timer. I've got to set up an experiment that monitors a current indirectly through a potentiostat (1A = 1V scale). Th

  • Include PDF/RTF stored as blob like an image in the report

    Hi, I've one rtf template and at the end of the document I will attach a predefined text. I has two ideas how to implement that. One could be to store the text as a file in the file system (as rtf, doc, pdf, ...) and link it in the document (the link

  • For all those that use the Volume Logic plug-in with iTunes

    Volume Logic has updated their website www.volumelogic.com that they are aware of the issue with the plug-in not working with iTunes 7.o for both Mac and Windows versions. They are working on a fix. (thank God! as normal iTunes audio *****!)