Hellp needed to resolve  Error

Hi,
While executing a package am getting the below error, on a function call inside
a function, I have bolded the error line. Can any help me out to clear this, is that am doing
anything wrong, please advice.
Error : PLS-00201: identifier 'PRICE' must be declared
FUNCTION process_client ( p_bill_date IN VARCHAR2 ) RETURN INTEGER
IS
CURSOR c_flat_fees
IS
SELECT
es.client_id,
NVL(es.customer_id, '000000000') AS customer_id,
es.schedule_id,
es.product_type,
to_char(NVL(es.last_bill_date, TO_DATE (TO_CHAR (ADD_MONTHS (SYSDATE, -1), 'YYYYMM'), 'YYYYMM') ), 'YYYYMM')
     AS last_bill_date,
NVL(pt.description, ' ') As description,
NVL(pt.acctg_code, 4010) As acctg_code,
pr.price,
pr.price_period,
pr.price_period_unit,
NVL(to_char(es.grace_period_end_date, 'YYYYMM'),'0') AS grace_period_end_date
FROM era_client_schedule es,
product_type pt,
price_schedule pr
WHERE es.product_type = pt.product_type
AND es.schedule_id = pr.schedule_id
AND es.bill_code = 'A'
AND pr.price_type IN ('A', 'F', 'I', 'M');
r_flat_fees_cur c_flat_fees%rowtype;
IF WRITE_INVOICE_item ( price*, 1) = -1
THEN
RETURN RET_ERR;
END IF;
CLOSE c_flat_fees;
EXCEPTION
END PROCESS_CLIENT;
thanks in advance.

Hi justin,
thank you for your reply. the below is my full code, please let me know where am doing wrong, if i declare : price price_schedule.PRICE %type; its not showing error. else am getting the above said error. Please advice. I have bolded the error giving function...
FUNCTION process_client ( p_bill_date IN VARCHAR2 )  RETURN INTEGER
IS
v_customerId    Varchar2(11);
v_description   Varchar2(50);
d_flatQty       integer :=0;
d_flatAmt       integer :=0;
v_lastname      varchar2(60);
v_schedule_id   number(38);
v_product_type  varchar(2);
v_return_val    integer;
RET_ERR         char(3) := '-1';
RET_OK          char(1) := ' 0';
v_clientId      tax_era_client.client_id   %type;
v_flatFee       price_schedule.price       %type;
v_preAcctgCode  pre_staging.acctg_code     %type;
v_clientCnt     era_claims.era_count       %type;
v_clientCntCk   era_claims.era_count       %type;
v_acctgCode     pre_staging.acctg_code     %type;
var_out_file_handler  UTL_FILE.FILE_TYPE;
var_out_file_path     varchar2(100);     
var_out_file_name     varchar2(100);     
var_line              varchar2(1000);    
-- Cursor for getting the era client schedule data
CURSOR c_schedule_data
IS
  SELECT es.client_id,
         NVL(c.lastname, 'UNKNOWN') AS lastname,
         es.customer_id,
         es.schedule_id,
         pt.description || ': ' || c.lastname AS description,
         es.product_type,
         NVL(pt.acctg_code, 4090) AS acctg_code
  FROM   era_client_schedule es,
         client c,                                             -- synonym created for batch_prod.client@okcprd00
         product_type pt
  WHERE  es.product_type = pt.product_type
         AND es.client_id = c.clientid
         AND es.bill_code = 'A'
         AND es.product_type in ('E1','E2','E3')
         ORDER BY es.client_id;
--Cursor for getting the era client schedule - flat doctor fee
CURSOR c_flat_doctor_fee
IS
SELECT
      es.client_id,
      NVL(es.customer_id, '000000000'),
      pt.description || ': ' || c.lastname,
      NVL(pt.acctg_code, 4010),
      pr.price
FROM  era_client_schedule es,
      product_type pt,
      price_schedule pr,
      client c   -- synonym created for batch_prod.client@okcprd00
WHERE es.product_type = pt.product_type
      AND es.schedule_id  =  pr.schedule_id
      AND es.client_id    =  c.clientid
      AND es.bill_code    = 'A'
      AND es.product_type = 'ED';
--Cursor for getting the era client schedule - flat fees
CURSOR c_flat_fees
IS
SELECT
      es.client_id,
      NVL(es.customer_id, '000000000') AS customer_id,
      es.schedule_id,
      es.product_type,
      to_char(NVL(es.last_bill_date, TO_DATE (TO_CHAR (ADD_MONTHS (SYSDATE, -1), 'YYYYMM'), 'YYYYMM') ), 'YYYYMM')
                                                                                              AS last_bill_date,
      NVL(pt.description, ' ') As description,
      NVL(pt.acctg_code, 4010) As acctg_code,
      pr.price,
      pr.price_period,
      pr.price_period_unit,
      NVL(to_char(es.grace_period_end_date, 'YYYYMM'),'0') AS grace_period_end_date
FROM  era_client_schedule es,
      product_type pt,
      price_schedule pr
WHERE es.product_type    = pt.product_type
      AND es.schedule_id = pr.schedule_id
      AND es.bill_code   = 'A'
      AND pr.price_type IN ('A', 'F', 'I', 'M');
r_flat_fees_cur c_flat_fees%rowtype;
BEGIN
var_line :=    'CLIENT_ID'              || ',' ||
                 'CUSTOMER_ID'            || ',' ||
                 'SCHEDULE_ID'            || ',' ||
                'PRODUCT_TYPE'           || ',' ||
                'LAST_BILL_DATE'         || ',' ||
                'DESCRIPTION'            || ',' ||
                'ACCTG_CODE'             || ',' ||
                  'PRICE'                  || ',' ||
                  'PRICE_PERIOD'           || ',' ||
                  'PRICE_PERIOD_UNIT'      || ',' ||
                  'GRACE_PERIOD_END_DATE';
   UTL_FILE.PUT_LINE(var_out_file_handler, var_line);
     FOR r_flat_fees IN c_flat_fees LOOP
         IF r_flat_fees.grace_period_end_date <= p_bill_date THEN
      var_line :=         'Grace Period for payer '
                       || r_flat_fees.client_id
                       || ' dest '
                       || r_flat_fees.customer_id
                       || ' product '
                       || r_flat_fees.product_type
                       || ' until '
                       || r_flat_fees.grace_period_end_date;
    ELSIF r_flat_fees.price_period_unit IN ('D', 'W') THEN
      var_line :=         'Period Unit of D/W for payer '
                       || r_flat_fees.client_id
                       || ' dest '
                       || r_flat_fees.customer_id
                       || ' product '
                       || r_flat_fees.product_type
                       || ' Skipping';
    ELSIF r_flat_fees.price_period_unit = 'O'
          AND r_flat_fees.last_bill_date = p_bill_date THEN
     var_line :=          'Period Unit of O but has NULL or CURRENT date '
                       || r_flat_fees.client_id
                       || ' dest '
                       || r_flat_fees.customer_id
                       || ' product '
                       || r_flat_fees.product_type
                       || ' Skipping';
    ELSIF r_flat_fees.price_period_unit = 'Y'
          AND r_flat_fees.last_bill_date <> p_bill_date THEN
      var_line :=        'Period Unit of O but has NULL or CURRENT date '
                       || r_flat_fees.client_id
                       || ' dest '
                       || r_flat_fees.customer_id
                       || ' product '
                       || r_flat_fees.product_type
                       || ' Skipping';
    ELSE
      NULL;
    END IF;
    IF write_invoice_item ( price, 1) = -1
       THEN
      RETURN RET_ERR;
    END IF;
v_return_val := write_tax_info( price, 1, price, 'C' );
                IF v_return_val = 1
                  THEN
                  RETURN RET_ERR;                END IF;     
    IF NOT update_last_bill_date (r_flat_fees.customer_id, r_flat_fees.schedule_id, r_flat_fees.product_type) THEN
      var_line :=       'Error updating last bill date for: '
                      || r_flat_fees.client_id
                      || ' dest '
                      || r_flat_fees.customer_id
                      || ' product '
                      || r_flat_fees.product_type;
    END IF;
    UTL_FILE.PUT_LINE(var_out_file_handler, var_line);
    CLOSE c_flat_fees;
    UTL_FILE.FCLOSE(var_out_file_handler); -- final file close
    CBSUTIL.MAIL.ADD_FILE( var_out_file_path || var_out_file_name); -- final file attachment
   IF CBSUTIL.MAIL.SEND( '[email protected]', 'Payment  Reports',
                         'Volume report for '|| p_bill_date )
   THEN
    DBMS_OUTPUT.PUT_LINE('Mail Sent');
   ELSE
    DBMS_OUTPUT.PUT_LINE('Not Sent! Errors: ' || CBSUTIL.MAIL.GET_ERROR_COUNT);
    DBMS_OUTPUT.PUT_LINE( CBSUTIL.MAIL.GET_ERROR_STRING );
   END IF;
END LOOP;
OPEN c_flat_doctor_fee;
LOOP
     FETCH c_flat_doctor_fee INTO v_clientId,v_customerId,v_description,v_acctgCode,v_flatFee;
     EXIT WHEN c_flat_doctor_fee%NOTFOUND;
CLOSE c_flat_doctor_fee;
SELECT
  count(*)  INTO d_flatQty
FROM
  mergegroup mg,
  providermergegroup pmg,
  provider prov
WHERE
  pmg.mergegroupid = mg.mergegroupid  AND
  prov.clientid = pmg.clientid  AND
  mg.receiverid IN  (SELECT receiverid  FROM era_receiver  WHERE clientid = v_clientid  OR vendorclientid = v_clientid)  AND
  prov.activedate IS NOT NULL  AND
  TO_CHAR(prov.activedate, 'YYYYMM') <= p_bill_date  AND
  (prov.inactivedate IS NULL  OR TO_CHAR(prov.inactivedate, 'YYYYMM') > p_bill_date);
d_flatAmt := v_flatFee * d_flatQty;
  v_return_val := write_invoice_item(d_flatAmt, d_flatQty);
        IF v_return_val = 1
           THEN
           RETURN RET_ERR;
        END IF;
v_return_val := write_tax_info( v_flatFee, 1, v_flatFee, 'C' );
       IF v_return_val = 1
          THEN
       RETURN RET_ERR;
       END IF;
UPDATE     era_client_schedule
           SET     last_bill_date = last_day(to_date(p_bill_date, 'YYYYMM'))
           WHERE   client_id = v_clientId
           AND     product_type = 'ED';
END loop;
OPEN c_schedule_data;
LOOP
     FETCH c_schedule_data INTO v_clientId,v_lastname,v_schedule_id,v_description,v_product_type,v_product_type,v_acctgCode;
     EXIT WHEN c_schedule_data%NOTFOUND;
CLOSE c_schedule_data;
SELECT
  SUM(NVL(c.era_count,0))  INTO v_clientCnt
  FROM
  era_claims c
WHERE
  TO_CHAR(c.process_date, 'YYYYMM') = p_bill_date  AND
  c.prod_flag = 'P'  AND
  c.payer_id
             IN  (SELECT payer_id
                  FROM   npd_logical_connection lc,  npd_business_service bs
                      WHERE  bs.unit_id = lc.unit_id
                      AND    bs.connection_id = lc.connection_id
                      AND    bs.service_id = 1
                      AND    NVL(bs.par_type, lc.par_type) =  DECODE(v_product_type, 'E1', 'P', 'N'))
                      AND    c.receiver_id
                      IN     (SELECT receiverid  FROM era_receiver  WHERE clientid = v_clientId  OR vendorclientid = v_clientId);
  v_clientCntCk := v_clientCnt;
If v_clientCntCk = -1
THEN
    v_clientCnt := 0;
Else
    v_preAcctgCode := v_acctgCode;
END IF;
if (GET_PROCESS_CLAIM_ITEM ( v_clientCnt, 'C' )) = 1
      THEN RET_ERR := '-1';
END IF;
END LOOP;
EXCEPTION
END PROCESS_CLIENT;   thanks

Similar Messages

  • Hellp needed to resolve this Error

    Hi all
    Inside my pakage i have some procedures and funtions, will executing its
    saying the error as : PLS-00707: unsupported construct or internal error [2603]
    i have higlighted the line in the below code, Can some help me to correct this error.
    thanks in advance                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

    I think you may want to get rid of
      CLOSE r_flat_fees_cur; [pre]
    You are trying to close a cursor record, which makes no sense.                                                                                                                                                                                                                                                                               

  • When I tried to open PS CC2014, it flashed a bit then quit, same with DW and INDD ... I also got this error message: Adobe creative cloud is needed to resolve this problem. However, it is missing or damaged. Please download and install a new copy of the C

    This morning when I tried to open my CC2014 Photoshop, it started to open, then quit suddenly. Same with Dreamweaver and InDesign. I am a professional and do not have the time to screw around with this. When I tried to run CC app, I get an error that says "Adobe creative cloud is needed to resolve this problem. However, it is missing or damaged. Please download and install a new copy of the Creative Cloud from 'http://www.adobe.com/go/adobecreativecloudapp'." I did so and tried to run the app and got the same error. I tried the cleaner and it removed all of my apps, then I tried to install again, and got the same error. I am getting desperate now, I have clients waiting for their projects. I need help, please.

    Allisonf55952352 have you utilized the steps listed in Error: "Failed to install" | Creative Cloud Desktop to resolve the current error?  If not do you have any questions regarding the steps listed with the document?

  • Help needed to resolve there is no attribute X errors..

    On my website http://www.dorffdesign.nl/ there is a problem. Ive put the FB Like button there and it worked fine for a while. But now its gone. So ive run
    http://validator.w3.org/ on it and came up with the next errors:
    ========================================================================================== ==============================================
      Line 232, Column 32: there is no attribute "data-href" <div class="fb-like" data-href="http://www.dorffdesign.nl/" data-send="true" da… ✉  
      Line 232, Column 71: there is no attribute "data-send" …http://www.dorffdesign.nl/" data-send="true" data-width="450" data-show-faces=… ✉  
      Line 232, Column 89: there is no attribute "data-width" …orffdesign.nl/" data-send="true" data-width="450" data-show-faces="true"></div> ✉  
      Line 232, Column 111: there is no attribute "data-show-faces" …orffdesign.nl/" data-send="true" data-width="450" data-show-faces="true"></div>
    ========================================================================================== ===============================================
    In dreamweaver ive use this code for the FB likke button:
    <div id="fb-root"></div>
    <script>(function(d, s, id) {
      var js, fjs = d.getElementsByTagName(s)[0];
      if (d.getElementById(id)) return;
      js = d.createElement(s); js.id = id;
      js.src = "//connect.facebook.net/nl_NL/all.js#xfbml=1";
      fjs.parentNode.insertBefore(js, fjs);
    }(document, 'script', 'facebook-jssdk'));</script>
    ========================================================================================== ===========
    <div class="fb-like" data-href="http://www.dorffdesign.nl/" data-send="true" data-width="450" data-show-faces="true"></div>
    I really want to solve this so im hoping if you can point me into the right direction.
    Regards

    Hi ive bin able to put the fb like button on my page. But i totally forgot how i have to place the fb like button under the black box named portfolio.
    I hope you can tell me.
    Regards
    Date: Wed, 7 Nov 2012 07:41:54 -0700
    From: [email protected]
    To: [email protected]
    Subject: Help needed to resolve there is no attribute X errors..
        Re: Help needed to resolve there is no attribute X errors..
        created by MurraySummers in Dreamweaver General - View the full discussion
    You can either ignore those errors (since they have no impact on your page's functionality) or you can use DW to convert your page to an HTML5 doctype (File > Convert > HTML 5, and then the errors will go away.
         Please note that the Adobe Forums do not accept email attachments. If you want to embed a screen image in your message please visit the thread in the forum to embed the image at http://forums.adobe.com/message/4829606#4829606
         Replies to this message go to everyone subscribed to this thread, not directly to the person who posted the message. To post a reply, either reply to this email or visit the message page: http://forums.adobe.com/message/4829606#4829606
         To unsubscribe from this thread, please visit the message page at http://forums.adobe.com/message/4829606#4829606. In the Actions box on the right, click the Stop Email Notifications link.
         Start a new discussion in Dreamweaver General by email or at Adobe Community
      For more information about maintaining your forum email notifications please go to http://forums.adobe.com/message/2936746#2936746.

  • Do you need help with error code 1004

    The alert message in iTunes may include one of the following numbers (or the message may include a number not listed here):
    1, -1, 2, 4, 6, 9, 13, 14, 20, 21, 23, 26, 28, 29, 34, 35, 36, 37, 40, -48, -50, 1000, 1002, 1004, 1011, 1013, 1014, 1015, 1479, 1600, 1601, 1602, 1603, 1604, 1611, 1631, 1638, 1639, 2001, 2002, 2005, 2006, 2009, 3002, 3004, 3013, 3014, 3015, 3194, 3200, 9006, 9807, -9808, 9844, 4026xxxxx.
    Click the link for the error code you have. If it's not listed here, check the error messages below, and then if necessary follow the advanced steps below to resolve the issue.
    Resolution
    Specific error messages and resolutions
    Collapse All | Expand All
      Error 1 or -1
    This may indicate a hardware issue with your device. Follow Troubleshooting security software issues, and restore your device on a different known-good computer. If the errors persist on another computer, the device may need service.
    This device is not eligible for the requested build (Also sometimes displayed as an "error 3194")
    Update to the latest version of iTunes. Mac OS X 10.5.8 (Leopard) users may need to download iTunes 10.6.3.
    Third-party security software or router security settings can also cause this issue. To resolve this, follow Troubleshooting security software issues.
    Downgrading to a previous version of iOS is not supported. If you have installed software to perform unauthorized modifications to your iOS device, that software may have redirected connections to the update server (gs.apple.com) within the Hosts file. Uninstall the unauthorized modification software from the computer.
    Edit out the "gs.apple.com" redirect from your hosts file, and then restart the computer for the host file changes to take affect. For steps to edit the Hosts file and allow iTunes to communicate with the update server, see iTunes: Advanced iTunes Store troubleshooting—follow steps under the heading Blocked by configuration (Mac OS X / Windows) > Rebuild network information > Mac OS X > The hosts file may also be blocking the iTunes Store. If you do not uninstall the unauthorized modification software prior to editing the hosts file, that software may automatically modify the hosts file again on restart.
    Avoid using an older or modified .ipsw file. Try moving the current .ipsw file (see Advanced Steps > Rename, move, or delete the iOS software file (.ipsw) below for file locations), or try restoring in a new user to ensure that iTunes downloads a new .ipsw.
      Error 3014
    This error occurs when iTunes is unable to reach gs.apple.com in a timely fashion. Follow the steps below in Unable to contact the iOS software update server gs.apple.com.
      Error 9
    This error occurs when the device unexpectedly loses its USB connection with iTunes. This can occur if the device is manually disconnected during the restore process. This issue can be resolved by performing USB troubleshooting, using a different USB dock-connector cable, trying another USB port, restoring on another computer, or by eliminating conflicts from third-party security software.
      Error 20, 21, 23, 26, 28, 29, 34, 36, 37, 40
    These errors typically occur when security software interferes with the restore and update process. Follow Troubleshooting security software issues to resolve this issue. In rare cases, these errors may be a hardware issue. If the errors persist on another computer, the device may need service.
    Also, check your hosts file to verify that it's not blocking iTunes from communicating with the update server. See iTunes: Advanced iTunes Store troubleshooting—follow steps under the heading Blocked by configuration (Mac OS X / Windows) > Rebuild network information > Mac OS X > The hosts file may also be blocking the iTunes Store. If you have software used to perform unauthorized modifications to the iOS device, uninstall this software prior to editing the hosts file to prevent that software from automatically modifying the hosts file again on restart.
      Error 1604
    This error is often related to USB timing. Try changing USB ports, using a different dock connector to USB cable, and other available USB troubleshooting steps (troubleshooting USB connections. If you are using a dock, bypass it and connect directly to the white Apple USB dock connector cable. If the issue persists on a known-good computer, the device may need service.    If the issue is not resolved by USB isolation troubleshooting, and another computer is not available, try these steps to resolve the issue: 
    Connect the device to iTunes, confirm that the device is in Recovery Mode. If it's not in Recovery Mode, put it into Recovery Mode.
    Restore and wait for the error.
    When prompted, click OK.
    Close and reopen iTunes while the device remains connected.
    The device should now be recognized in Recovery Mode again.
    Try to restore again.
      If the steps above do not resolve the issue, try restoring using a known-good USB cable, computer, and network connection.
      Error 1600, 1601, 1602
    Follow the steps listed above for Error 1604. This error may also be resolved by disabling, deactivating, or uninstalling third-party security, antivirus, and firewall software. See steps in this article for details on troubleshooting security software.
      Error 1603
    Follow the steps listed above for Error 1604. Also, discard the .ipsw file, open iTunes and attempt to download the update again. See the steps under Advanced Steps > Rename, move, or delete the iOS software file (.ipsw) below for file locations. If you do not want to remove the IPSW in the original user, try restoring in a new administrator user. If the issue remains, Eliminate third-party security software conflicts.
      Error 1611
    This error typically occur when security software interferes with the restore and update process. Follow Troubleshooting security software issues to resolve this issue. In rare cases, this error may be a hardware issue. If the errors persist on another computer, the device may need service.
      Error 13, 14, 35 and 50 (or -50)These errors are typically resolved by performing one or more of the steps listed below: 
    Perform USB isolation troubleshooting, including trying a different USB port directly on the computer. See the advanced steps below for USB troubleshooting.
    Put a USB 2.0 hub between the device and the computer.
    Try a different USB 30-pin dock-connector cable.
    Eliminate third-party security software conflicts.
    There may be third-party software installed that modifies your default packet size in Windows by inserting one or more TcpWindowSize entries into your registry. Your default packet size being set incorrectly can cause this error. Contact the manufacturer of the software that installed the packet-size modification for assistance. Or, follow this article by Microsoft: How to reset Internet Protocol (TCP/IP) to reset the packet size back to the default for Windows.
    Connect your computer directly to your Internet source, bypassing any routers, hubs, or switches. You may need to restart your computer and modem to get online.
    Try to restore from another known-good computer and network.
      Error 2000-2009 (2001, 2002, 2005, 2006, 2009, and so on)
    If you experience this issue on a Mac, disconnect third-party devices, hubs, spare cables, displays, reset the SMC, and then try to restore. If you are using a Windows computer, remove all USB devices and spare cables other than your keyboard, mouse, and the device, restart the computer, and try to restore. If that does not resolve the issue, try the USB issue-resolution steps and articles listed for Error 1604 above. If the issue persists, it may be related to conflicting security software. If the errors persist on another computer and known-good USB cable, the device may need service.
    Restore loop (being prompted to restore again after a restore successfully completes)
    Troubleshoot your USB connection. If the issue persists, out-of-date or incorrectly configured third-party security software may be causing this issue. Please follow Troubleshooting security software issues. .
    There was a problem downloading the software for the iPhone (or another iOS device)
    See the steps below for error codes 3000-3999.
    iTunes cannot connect to the iPhone because an invalid response received from the device
    This error occurs when there are problems communicating through USB. This may be resolved by following the steps for errors 13 or 14 above.
    Unknown Error containing "0xE" when restoring
    To resolve this issue, follow the steps in iPhone, iPad, iPod touch: Unknown error containing '0xE' when connecting. If you have a Windows computer with an Intel® 5 series/3400 series chipset, you may need updates for your chipset drivers. See iTunes for Windows: Issues syncing iOS devices with P55 and related Intel Chipsets for more information.
    Hang during restore process

    See the following:
    Error 150:30 - Error "Licensing has stopped working" | Mac OS :
    http://helpx.adobe.com/x-productkb/global/error-licensing-stopped-mac-os.html

  • TS3694 how do i resolve error 1015 please

    How do i resolve error code 1015 please

    Unauthorized modification of iOS
    http://support.apple.com/kb/HT3743
    ERROR 1015...
    This Error Code is indicative of the Device being jailbroken / Hacked...
    Sorry... But...
    The discussion of Jailbroken Devices is against the Terms of Use of this Forum.
    You will need to look elsewhere.

  • How do I resolve error message R6034

    How do I resolve error message R6034 when trying to access itunes

    Go to Control Panel > Add or Remove Programs (Win XP) or Programs and Features (later)
    Remove all of these items in the following order:
    iTunes
    Apple Software Update
    Apple Mobile Device Support (if this won't uninstall move on to the next item)
    Bonjour
    Apple Application Support
    Reboot, download iTunes, then reinstall, either using an account with administrative rights, or right-clicking the downloaded installer and selecting Run as Administrator.
    The uninstall and reinstall process will preserve your iTunes library and settings, but ideally you would back up the library and your other important personal documents and data on a regular basis. See this user tip for a suggested technique.
    Please note:
    Some users may need to follow all the steps in whichever of the following support documents applies to their system. These include some additional manual file and folder deletions not mentioned above.
    HT1925: Removing and Reinstalling iTunes for Windows XP
    HT1923: Removing and reinstalling iTunes for Windows Vista, Windows 7, or Windows 8
    tt2

  • How do i resolve error 3014 on my iphone in laymand terms?

    How do i resolve error 3014 on my iphone in laymand terms?

    Error 1004, 1013, 1638, 3014, 3194: These errors may be the result of the connection to gs.apple.com being redirected or blocked. Follow these steps to resolve these errors:
    Install the latest version of iTunes.
    Check security software. Ensure that communication to gs.apple.com is allowed. Follow this article for assistance with security software. iTunes for Windows: Troubleshooting security software issues.
    Check the hosts file. The restore will fail if there is an active entry to redirect gs.apple.com. FollowiTunes: Advanced iTunes Store troubleshooting to edit the hosts file or revert to a default hosts file. See section "Blocked by configuration: (Mac OS X/Windows) > Rebuild network information".
    Try to restore from another known-good computer and network.
    If the errors persist on another computer, the device may need service.

  • How do I resolve error 1310 while installing crystal report version for visual studio 2010.

    How do I resolve error 1310. I try to install crystal version for visual studio 2010, but I got this error message. Error 1310. Error writing to file. mcf80.dll.verify that you have access to that directory. My pc is window 7 (32 bit). Please I need help
    urgently to work with this program in my system successfully. Please help.

    Hello Dorohidea,
    Do you mean that when you install crystal report in virtual studio 2010, you receive the error message about error 1310?
    Please take a look at the following KB.
    Support for Crystal Reports for Visual Studio
    https://support.microsoft.com/kb/317789/en-us
    In Visual Studio 2010, to create a Crystal Reports project or Web site or to import existing projects or Web sites that were created by using older versions of Visual Studio or Crystal Reports, you must first install a version of Crystal Reports that is
    compatible with Visual Studio 2010.
    For more information about how to use Crystal Reports in Visual Studio 2010, visit the following SAP Crystal Reports website:
    http://www.sap.com/crystalreports/vs2010
    Best regards,
    Fangzhou CHEN
    Fangzhou CHEN
    TechNet Community Support

  • TS3694 How to resolve error code 1015 in restoring apple iphone. Please guide

    How to resolve error code 1015 in restoring apple iphone. Please guide.

    Unauthorized modification of iOS
    http://support.apple.com/kb/HT3743
    ERROR 1015...
    This Error Code is indicative of the Device being jailbroken / Hacked...
    Sorry... But...
    The discussion of Jailbroken Devices is against the Terms of Use of this Forum.
    You will need to look elsewhere.

  • HT201210 how to resolve error 21? my iphone 4 just showing apple logo... when i'm trying to restore it... it is showing error 21 n that's not letting me restore it :( pls help

    how to resolve error 21? my iphone 4 just showing apple logo... when i'm trying to restore it... it is showing error 21 n that's not letting me restore it pls help

    From the article that the question was posted from:
    Error 1611
    This error typically occur when security software interferes with the restore and update process. Follow Troubleshooting security software issues to resolve this issue. In rare cases, this error may be a hardware issue. If the errors persist on another computer, the device may need service.
    Try reading the solutions you find in the future and follow them.

  • TS3694 how to resolve error 1015

    please help resolve error ' iPhone could not be restored.An unkhown error occurred 1015'

    Unauthorized modification of iOS
    http://support.apple.com/kb/HT3743
    ERROR 1015...
    This Error Code is indicative of the Device being jailbroken / Hacked...
    Sorry... But...
    The discussion of Jailbroken Devices is against the Terms of Use of this Forum.
    You will need to look elsewhere.

  • I am having trouble sending text messages. They aren't always going through. And sometimes I'm not receiving text messages.  I also have voicemails that I didn't receive until late at night that were left early in the day. I need to resolve this issue ASA

    I am having trouble sending text messages. They aren't always going through. And sometimes I'm not receiving text messages.  I also have voicemails that I didn't receive until late at night that were left early in the day. I need to resolve this issue ASAP!

    julie@remax,
    I know that this would concern me just the same and we want to make sure that your device is connected and receiving these notifications when available. How long have you been having this issue? Are you receiving a specific error message when sending a message? Are you aware if this happens in one location specifically or everywhere you go? Does the issue with messaging occur with all numbers? Share some details, so that we may assist.
    AdamG_VZW
    Follow us on Twitter @VZWSupport

  • How to resolve errors - ORA-01033: ORACLE, or closed, or initialized ,ORA-02063: Previous line from D1558A_IFRSQRY

    Hi Expert,
        Please tell me how to resolve errors - ORA-01033: ORACLE, or closed, or initialized ,ORA-02063: Previous line from D1558A_IFRSQRY
    Thanks and Regards

    Google is obviously broken for you: so I've posted what you need to put into your browser.
    https://www.google.co.uk/search?q=ORA-01033

  • Do we need to resolve all issues with intermediate 2010 migration before going to Exchange 2013?

    We just migrated from Exchange 2003 to Exchange 2010 as an intermediate step to going to Exchange 2013.  Everything is working through OWA, so all the data has been transferred.  We have users that can access Outlook 2010 through a Citrix server,
    and through their local workstations.  Outlook 2010 is working fine through Citrix as well, but on all users if they access Outlook 2010 on their laptop they get an error when trying to do Out of Office messages, and they can't see free/busy time for
    other users when adding them to meeting invites.  
    I already have a post about the issues, but since we are moving to 2013, could the migration fix these issues, or do we need to resolve them first?  The data is clearly there, so I don't think that's the problem.
    Thanks!
    --Kent

    Hi,
    Did you try to recreate the outlook profile and check the result?
    What error did you get when you try to open the Out of Office Assistant in Outlook 2010?
    The following article for your reference:
    http://support.microsoft.com/kb/2596516/en-us
    Thanks.
    Niko Cheng
    TechNet Community Support

Maybe you are looking for