Help me resolve this---- PLS-00302: component 'STRING' must be declared

Can anyone please guide me in resolving the below error
The statement below is in the package spec.
TYPE rec IS RECORD ( proj AV_ACTIVITY.proj%TYPE, act AV_ACTIVITY.act%TYPE );
TYPE object_table_type is TABLE OF rec INDEX BY BINARY_INTEGER;
temp_as_rn object_table_type;
Then i am wrting a cursor in the package body and trying to access the component...but it throws up the
PLS-00302: component 'PROJ' must be declared
The below code is in the package body
CURSOR c2_memo_attr(proj_temp varchar2,act_temp varchar2) is
select distinct
dup.proj,
dup.proj_ds as proj_ds,
dup.act,
dup.act_ds as act_ds,
initcap(to_char(ac.eid, 'fmMonth DDth, YYYY')),
initcap(to_char(ac.lid, 'fmMonth DDth, YYYY')),
initcap(to_char(ac.act_due_date, 'fmMonth DDth, YYYY')),
dup.uc03 as Study_no
from dup_resource_status dup, av_activity ac
where ( ac.proj = proj_temp
and ac.act = act_temp)
and dup.proj = ac.proj
and dup.act = ac.act
and ac.ver = 0;
for c2_memo_attr_rec in c2_memo_attr(temp_as_rn.proj,temp_as_rn.act)
loop
text := 'abcd......'
     end loop;

Cursor loops are obsolete technology? Hmm, not sure I agree with you there.
Yes, sometimes they are an indication of slow-by-slow processing that could be better done in one dml statement, or with bulk collections, etc, but sometimes that's not the case - unless I'm missing something.
For example, I'm writing a procedure to take care of deleting partitions on a periodic basis, and I'm taking into consideration the case where there might be more than one partition to delete. So I'm using a cursor to identify the partitions to delete, and using a cursor for loop to loop round and execute the dynamic drop partition statement.
Since there's never going to be that many partitions, this isn't going to be particularly unperformant, and so I don't see a problem with using the cursor for loop construction for it.
I'd like to hear more on why you think it's obsolete technology in reference to my specific example - and also what you think I should be using.

Similar Messages

  • PLS-00302: component 'SET_NO_OUTLINES' must be declared

    Windows 2000 Server
    Oracle 10.2.0.1 upgraded from 9.2.0.1
    IMP-00058: ORACLE error 6550 encountered
    ORA-06550: line 1, column 33:
    PLS-00302: component 'SET_NO_OUTLINES' must be declared
    ORA-06550: line 1, column 7:
    PL/SQL: Statement ignored
    IMP-00000: Import terminated unsuccessfully
    Trying to import into a 10.2.0.1 database from a 9.2.0 database export.dmp file. Yes, I have seen the thread in this forum regarding the same error when doing an export but in this situation, I am using the import utility of the destination database (10.2.0.1) $ORACLE_HOME/ora102/bin and the db_block values are the same for both source and destination databases.
    I think this is caused by Oracle 10.2 want to use SET_NO_OUTLINES and 9.2 doesn't know what it is.
    Would appreciate any advise in fixing this situation.
    Thanks

    If you export with 9i utility to export and while importing 10g utiltiy to import you will get these compatability errors..
    Always use the export utility of the lower version of source and target database.
    if you still have any questions, Please Refer to Basic Compatibility Section in Metalilnk Note 132904.1
    Hope this helps
    Click here to learn [Oracle data pump export and import with examples.|http://www.oracleracexpert.com/2009/08/oracle-data-pump-exportimport.html]
    Click here for steps to [upgrade Oracle version from 10.2.0.x to 10.2.0.4|http://www.oracleracexpert.com/2009/10/oracle-version-upgrade-from-1020x-to.html]
    http://www.oracleracexpert.com

  • PLS-00302: component 'REGISTER_PROPAGATOR' must be declared

    Hi,
    The following error occured, while running the repadmin user creation script.
    Can any one help in rectifying this?
    BEGIN dbms_defer_sys.register_propagator('REPADMIN'); END;
    ERROR at line 1:
    ORA-06550: line 1, column 22:
    PLS-00302: component 'REGISTER_PROPAGATOR' must be declared
    ORA-06550: line 1, column 7:
    PL/SQL: Statement ignored
    SQL> exit
    Thnk u,
    Rgds,
    Maha.
    null

    How were you connected to the database when you ran the DBMS_DEFER_SYS procedure? as SYSTEM?
    Also, check to make sure that the DBMS_DEFER_SYS package and package body exist, are valid, and have synoyms created for them. Query DBA_OBJECTS for this information.

  • Data Template - PLS-00302: component 'P_PARAMETER' must be declared

    All,
    I'm new to the Data Template. I'm following the User's Guide example and examples from this Forum. I can't get a parameter to work. I'm creating a Data Template because I need to execute a PL/SQL call before the report runs.
    My Data Template:
    <?xml version="1.0" encoding="UTF-8" ?>
    <dataTemplate name="DATA_TEMPLATE" version="1.0" dataSourceRef="dev" defaultPackage="TEST_JC_PKG">
    <dataTrigger name="beforeReport" source="TEST_JC_PKG.record_report_usage('beforeReport_trigger')"/>
    <parameters>
    <parameter name="p_parameter" datatype="character" defaultValue="X"/>
    </parameters>
    <dataQuery>
    <sqlStatement name="ROW">
    <![CDATA[SELECT dummy FROM dual WHERE :p_parameter = 'X']]>
    </sqlStatement>
    </dataQuery>
    </dataTemplate>
    I get this error when I click the "View" button in BI Pub:
    ORA-06550: line 2, column 13:
    PLS-00302: component 'P_PARAMETER' must be declared
    ORA-06550: line 2, column 1:
    PL/SQL: Statement ignored
    xdo:
    <?xml version = '1.0' encoding = 'utf-8'?>
    <report version="1.1" xmlns="http://xmlns.oracle.com/oxp/xmlp" defaultDataSourceRef="dev">
    <title>beforeReport_trigger_manual_dataTemplate</title>
    <properties>
    <property name="showControls" value="true"/>
    <property name="online" value="true"/>
    <property name="parameterColumns" value="3"/>
    <property name="openLinkInNewWindow" value="true"/>
    <property name="autoRun" value="true"/>
    </properties>
    <dataModel defaultDataSet="Q1">
    <dataSet id="Q1">
    <dataTemplate name="DATA_TEMPLATE" dataSourceRef="dev" defaultPackage="TEST_JC_PKG">
         <dataTrigger name="beforeReport" source="TEST_JC_PKG.record_report_usage('beforeReport_trigger_manual_dataTemplate')"/>
         <parameters>
         <parameter name="p_parameter" datatype="character" defaultValue="X"/>
         </parameters>
    <dataQuery>
    <sqlStatement name="ROW">
    <![CDATA[SELECT dummy FROM dual WHERE :p_parameter = 'X']]>
    </sqlStatement>
    </dataQuery>
    </dataTemplate>
    </dataSet>
    </dataModel>
    <valueSets/>
    <parameters/>
    <templates default="detail">
    <template label="detail" type="rtf" url="beforeReport_trigger_manual_dataTemplate.rtf"/>
    </templates>
    <burst enabled="false"/>
    </report>

    Hi,
    This is a known bug when using DataTemplates, but it has only just started with 10.1.3.3. You will need to put p_parameter as a global variable in you default package, and you will also need to create a parameter called p_parameter inside BIP. You can set this parameter to being hidden if you do not want Users to be able to change it.
    See Tim Dexter's blog on this for more information:
    http://blogs.oracle.com/xmlpublisher/2007/10/18#a614
    Hope this helps you.
    Regards,
    Cj

  • PLS-00302: component 'SET_NO_OUTLINES' must be declared on EXP

    Hey all,
    Not sure why I'm getting this. Any ideas where to start?
    C:\>exp userid=me/me@mine owner=me file=c:\temp\me.dmp
    Export: Release 10.2.0.1.0 - Production on Tue Aug 9 11:14:00 2005
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    EXP-00056: ORACLE error 6550 encountered
    ORA-06550: line 1, column 41:
    PLS-00302: component 'SET_NO_OUTLINES' must be declared
    ORA-06550: line 1, column 15:
    PL/SQL: Statement ignored
    EXP-00000: Export terminated unsuccessfully
    C:\>sqlplus me/me@mine
    SQL*Plus: Release 10.2.0.1.0 - Production on Tue Aug 9 11:16:02 2005
    Copyright (c) 1982, 2005, Oracle.  All rights reserved.
    Connected to:
    Oracle Database 10g Enterprise Edition Release 10.1.0.4.0 - 64bit Production
    With the Partitioning, OLAP and Data Mining options

    Hello Everyone,
    The mentioned issue is due to the fact that you already have several oracle versions installed on your system ( 8i, 9i, 10g, 11g). The issue happens basically whenever you are trying to exp where the command runs from ORACLE_HOME so if your ORACLE_HOME is set to ORACLE 10 for example and you are exporting a database on 8i the issue occurs and hence to solve it you just need to go into cmd then go to oracle 8i HOME which basically will be under c:\oracle\8i\bin and run the exp command again. It will work smoothly.
    All the best
    SEMOS

  • PLS-00302: component 'DISABLE_OLAP_POLICY' must be declared

    Database: 11.2.0.4.0
    OLAP Analytic Workspace
    11.2.0.4.0
    Oracle OLAP API
    11.2.0.4.0
    OLAP Catalog
    11.2.0.4.0
    I am receiving the following error when trying to delete a dimension in AWM 12.1.0.1.0A.
    java.sql.SQLException: ORA-06550: line 1, column 20:
    PLS-00302: component 'DISABLE_OLAP_POLICY' must be declared
    ORA-06550: line 1, column 7:
    PL/SQL: Statement ignored
    at oracle.olap.awm.util.ORASUtil.reportException(ORASUtil.java:64)
    at oracle.olap.awm.util.ORASUtil.disableOLAPDSP(ORASUtil.java:659)
    at oracle.olap.awm.dataobject.olapi.UDimensionDO.delete(UDimensionDO.java:905)
    at oracle.olap.awm.navigator.node.DeleteThread.run(DeleteThread.java:283)
    I don't get this error with AWM 11.2.0.4.0A. I take it this means we shouldn't be using AWM 12 on a 11 database even though the AWM 12 login window specifies a cube type of: OLAP 11g/12c?

    You have encountered a known AwM bug 18616303 in AwM 12.1.0.1.0A. The workaround as you have
    already determined is to use 11.2.0.4.0A patch of AwM when working against an 11.2 Oracle rdbms server when
    you need to drop a dimension, cube or analytic workspace.
    This bug is currently fixed in the yet unreleased AwM 12.1.0.2.0. I expect it will be fixed shortly in an
    12.1.0.1.0B patch of AwM. Sorry for the inconvenience.
    I will update this thread when the 12.1.0.1.0B patch of AwM is available for download off of OTN with
    the link to the download.

  • Adpatch fails with PLS-00302: component 'INITIALIZE_WITH_CALENDAR' must be

    Hi Guru's....
    This is my first post.I am a new dba.
    while applying adpatch , I am getting the below error.Please help. this is on r12.
    About to do IREP processing...
    Attempting to process IREP files ...
    AutoPatch error:
    Error in adusnapRunAdPostPatch() while executing statement
    AutoPatch error:
    ORA-06550: line 1, column 16:
    PLS-00302: component 'INITIALIZE_WITH_CALENDAR' must be declared
    ORA-06550: line 1, column 7:
    PL/SQL: Statement ignored
    ORA-06512: at "APPS.FND_GLOBAL", line 413
    ORA-06512: at "APPS.FND_GLOBAL", line 2272
    ORA-06512: at "APPS.FND_GLOBAL", line 2546
    ORA-06512: at "APPS.FND_GLOBAL", line 2698
    ORA-06512: at "APPS.FND_GLOBAL", line 2636
    ORA-06512: at "APPS.FND_ADPATCH", line 53
    ORA-06512: at line 3
    Error while processing IREP files, continuing...
    Done IREP processing.
    Thank you.....

    Hi Ronald and Hussein,
    Thank you for your response.
    There are no invalids in my environment.
    I am applying R12.1.X: FORMS INTEROPERABILITY PATCH FOR 10.1.2.3 -- 13001977
    >>
    OS:
    SunOS sandebus03 5.10 Generic_147440-01 sun4v sparc SUNW,T5240
    >>
    RELEASE_NAME
    12.1.2
    DB:11.2.0.3
    >>
    SQL> desc fnd_date
    FUNCTION ADJUST_DATETIME RETURNS DATE
    Argument Name Type In/Out Default?
    DATE_TIME DATE IN
    FROM_TZ VARCHAR2 IN
    TO_TZ VARCHAR2 IN
    FUNCTION CANONICAL_TO_DATE RETURNS DATE
    Argument Name Type In/Out Default?
    CANONICAL VARCHAR2 IN
    FUNCTION CHARDATE_TO_DATE RETURNS DATE
    Argument Name Type In/Out Default?
    CHARDATE VARCHAR2 IN
    FUNCTION CHARDT_TO_DATE RETURNS DATE
    Argument Name Type In/Out Default?
    CHARDT VARCHAR2 IN
    FUNCTION DATE_TO_CANONICAL RETURNS VARCHAR2
    Argument Name Type In/Out Default?
    DATEVAL DATE IN
    FUNCTION DATE_TO_CHARDATE RETURNS VARCHAR2
    Argument Name Type In/Out Default?
    DATEVAL DATE IN
    FUNCTION DATE_TO_CHARDT RETURNS VARCHAR2
    Argument Name Type In/Out Default?
    DATEVAL DATE IN
    FUNCTION DATE_TO_DISPLAYDATE RETURNS VARCHAR2
    Argument Name Type In/Out Default?
    DATEVAL DATE IN
    FUNCTION DATE_TO_DISPLAYDT RETURNS VARCHAR2
    Argument Name Type In/Out Default?
    DATEVAL DATE IN
    FUNCTION DATE_TO_DISPLAYDT RETURNS VARCHAR2
    Argument Name Type In/Out Default?
    DATEVAL DATE IN
    NEW_CLIENT_TZ_CODE VARCHAR2 IN
    FUNCTION DISPLAYDATE_TO_DATE RETURNS DATE
    Argument Name Type In/Out Default?
    CHARDATE VARCHAR2 IN
    FUNCTION DISPLAYDT_TO_DATE RETURNS DATE
    Argument Name Type In/Out Default?
    CHARDT VARCHAR2 IN
    FUNCTION DISPLAYDT_TO_DATE RETURNS DATE
    Argument Name Type In/Out Default?
    CHARDT VARCHAR2 IN
    NEW_CLIENT_TZ_CODE VARCHAR2 IN
    PROCEDURE INITIALIZE
    Argument Name Type In/Out Default?
    P_USER_MASK VARCHAR2 IN
    P_USERDT_MASK VARCHAR2 IN DEFAULT
    FUNCTION STRING_TO_CANONICAL RETURNS VARCHAR2
    Argument Name Type In/Out Default?
    P_STRING VARCHAR2 IN
    P_MASK VARCHAR2 IN
    FUNCTION STRING_TO_DATE RETURNS DATE
    Argument Name Type In/Out Default?
    P_STRING VARCHAR2 IN
    P_MASK VARCHAR2 IN
    PROCEDURE TEST
    SQL>
    >>
    SQL> column rcsid format a35 word
    break on name skip 1
    SQL> select name,type,substr(text,instr(text,'$Header: ')+9,
    instr(text,' ',instr(text,'$Header: '),4)
    SQL> 2 3 - instr(text,'$Header: ') - 9) rcsid
    4 from all_source
    5 where text like '%$Header: %'
    6 and name like upper('%%FND_DATE%%') escape '\'
    7 order by name
    8 , type
    9 /
    undefine 1
    clear breaks
    NAME TYPE RCSID
    FND_DATE PACKAGE AFDDATES.pls 115.11 2003/10/28
    PACKAGE BODY AFDDATEB.pls 120.1 2005/07/02
    FND_DATE_TZ PACKAGE AFDATTZS.pls 115.4 2003/10/28
    PACKAGE BODY AFDATTZB.pls 115.4 2003/10/28
    SQL> SQL> breaks cleared
    SQL>

  • Error(586,27): PLS-00302: component 'EDR_RPT_GEN_TMP_WEIGHT_RANGES' must be

    Hi ,
    In my procedure ,i'm calling another stored proc as below
    edr_rpt_generic_package.edr_rpt_gen_tmp_weight_ranges
        in_report_parameter_id
      );while compiling it throws up error as "component must be declared".
    could anyone help me to solve this?
    thanks in advance.

    hi all i got the answer.
    thx
    Edited by: user10641405 on Oct 16, 2009 2:45 PM

  • Getting PLS-00302 component must be declared on callout to web service

    - set up callout utility on source db
    - created plsql package on target database:
    SQL> desc pkgwssignature;
    FUNCTION WSSIGNATUREDEV RETURNS NUMBER
    Argument Name Type In/Out Default?
    P_OPERATION VARCHAR2 IN
    P_ID NUMBER IN
    P_TOOLNAME VARCHAR2(16) IN
    P_BASE_ID VARCHAR2(64) IN
    P_BASE_SUBID VARCHAR2(64) IN
    P_LABEL VARCHAR2(164) IN
    P_NAME VARCHAR2(256) IN
    P_DESCRIPTION VARCHAR2(4000) IN
    P_ID_INCIDENTTYPE NUMBER IN
    P_ID_MODULE NUMBER IN
    P_ID_EVENTCLASS NUMBER IN
    P_THREATLEVEL NUMBER IN
    P_COMMENTS_INTERNAL VARCHAR2(4000) IN
    P_PATCHINFO VARCHAR2(4000) IN
    - Made the pacakge available as a web service
    java -jar $ORACLE_HOME/webservices/lib/wsa.jar -plsqlAssemble -appName
    wsSignatureDEV -sql pkgwsSignature -dataSource jdbc/OracleDS -dbConnection
    jdbc:oracle:thin:@//10.0.203.161:1521/devseam -dbUser globals/##### -style rpc
    -use encoded -jpubProp plsqlload -debug true
    - Set up the source db as web service consumer:
    jpub -u globals/##### -sysuser sys/#####
    -url=jdbc:oracle:thin:@//10.0.203.161:1521/devocdb
    -proxywsdl=http://10.0.203.161:8888/wsSignatureDEV/wsSignatureDEV?WSDL
    -endpoint=http://10.0.203.161:8888/wsSignatureDEV/wsSignatureDEV -dir=tmp
    SQL> desc jpub_plsql_wrapper;
    FUNCTION WSSIGNATUREDEV RETURNS NUMBER
    Argument Name Type In/Out Default?
    POPERATION_ VARCHAR2 IN
    PID_ NUMBER IN
    PTOOLNAME_ VARCHAR2 IN
    PBASEID_ VARCHAR2 IN
    PBASESUBID_ VARCHAR2 IN
    PLABEL_ VARCHAR2 IN
    PNAME_ VARCHAR2 IN
    PDESCRIPTION_ VARCHAR2 IN
    PIDINCIDENTTYPE_ NUMBER IN
    PIDMODULE_ NUMBER IN
    PIDEVENTCLASS_ NUMBER IN
    PTHREATLEVEL_ NUMBER IN
    PCOMMENTSINTERNAL_ VARCHAR2 IN
    PPATCHINFO_ VARCHAR2 IN
    - try to call the web service:
    select
    jpub_plsql_wrapper.WSSIGNATUREDEV('INSERT',1,'test','test','test','test','test',
    'test',1,null,1,1,'test','test')
    from dual;
    => always getting following error:
    ERROR at line 2:
    ORA-29532: Java call terminated by uncaught Java exception:
    java.rmi.RemoteException: java.rmi.ServerException:
    start fault message:
    Internal Server Error (caught exception while handling request:
    java.rmi.RemoteException: java.sql.SQLException: ORA-06550: line 1, column 36:
    PLS-00302: component 'WSSIGNATUREDEV' must be declared
    ORA-06550: line 1, column 7:
    PL/SQL: Statement ignored
    :end fault message
    Can someome give me an idea where to look/ what I'm missing ? Thanks in advance

    Try this ->
    CREATE OR REPLACE PROCEDURE D_COMMANDS
    IS
    PRAGMA AUTONOMOUS_TRANSACTION;
         CURSOR CR_MJI_SIN
         IS
         SELECT sno, cno, iumber 
         FROM TEST1.m_mca;
         C_SUBNO VARCHAR2(20);
         C_CARDNO VARCHAR2(12);
         C_IMSI_NUMBER VARCHAR2(30);
         TRANSNO1 NUMBER(8);
    BEGIN
      OPEN CR_SMS_SUB;
      LOOP
        FETCH CR_SMS_SUB INTO C_SUBNO,C_CARDNO,C_IMSI_NUMBER;
        EXIT WHEN CR_SMS_SUB%notfound;
        SELECT  spc_trans.NEXTVAL
        INTO TRANSNO1
        FROM DUAL;
        INSERT INTO EIM_COMMAND_RECORD(SUBSCR_TYPE, AREA, SUBNO, SERORDNO, TRANSNO, EXC, EXCSYSTEM,
                                       PORTNO, SPC_FUNCTION, APPDATE, NXTROUTINE, RETRANSMIT, TRANSSTATUS,
                                       EQUIPID, SOTYPE, CARDNO, CARD_TYPE)
        VALUES ( 'G', '0', C_SUBNO, NULL , TRANSNO1, 'GSM1', 'GSM1', '1', 'SERI', sysdate,
                 'SPC001', 'Y', 10, 'MCA' , 66, C_CARDNO, 'PLI');
        INSERT INTO EIM_EXECUTED_COMMANDS ( TRANSNO, CMDNO, COMMAND, TIMEOUT)
        VALUES (TRANSNO1, 1, 'ADD MCA FOR '||C_SUBNO||' USING (IMSINO='||C_IMSI_NUMBER||')', 30);
      END LOOP;
      CLOSE CR_SMS_SUB;
      COMMIT;
    EXCEPTION
    WHEN OTHERS THEN
          raise_application_error(-20001,'An error was encountered - '||SQLCODE||' -ERROR- '||SQLERRM);
    END;
    BEGIN
      D_COMMANDS;
    END;N.B.: Not Tested....
    Regards.
    Satyaki De.

  • HT201272 A few songs from my old purchase is not available for download. It shows as purchased but I can't download it. Please help me resolve this problem, what do I need to do to enable download for all my purchased songs/movies etc. - Avinash

    Hi,
    A few songs from my old purchase is not available for download. It shows as purchased but I can't download it. Please help me resolve this problem, what do I need to do to enable download for all my purchased songs/movies etc.
    - Avinash

    The purchases are probably hidden:
    http://support.apple.com/kb/ht4919

  • My 13 inch macbook pro freezes,when i use the magic mouse.pleae any help to resolve this

    My 13 inch macbook pro freezes,when i use the magic mouse.pleae any help to resolve this.My OS is OS X 10.6.8.

    Usual first things to try are a smc and pram reset.

  • I can't click below the toolbar .half inch to 3inch from right to left. all words or letters are not working. please help to resolve this problem. thanks!

    Everytime I open firefox, all words or letters below the toolbar half inch to 3 inch from right to left are not clickable(not working). but they are working or clickable on google crhome or internet explorer. please help to resolve this problem. thanks!

    The '''''Yahoo! Toolbar''''' and the '''''Babylon''''' extension have been reported to cause that problem. They seem to invisibly extend downward over the top of the web page display area. Disable or uninstall those add-ons.
    *See --> http://support.mozilla.com/en-US/kb/Uninstalling+add-ons
    *See --> http://support.mozilla.com/en-US/kb/Cannot%20uninstall%20an%20add-on
    *See --> http://kb.mozillazine.org/Uninstalling_toolbars
    *See --> https://support.mozilla.com/kb/Troubleshooting+extensions+and+themes
    '''If this reply solves your problem, please click "Solved It" next to this reply when <u>signed-in</u> to the forum.'''
    Not related to your question, but...
    You may need to update some plug-ins. Check your plug-ins and update as necessary:
    *Plug-in check --> http://www.mozilla.org/en-US/plugincheck/
    *Adobe Shockwave for Director Netscape plug-in: [https://support.mozilla.com/en-US/kb/Using%20the%20Shockwave%20plugin%20with%20Firefox#w_installing-shockwave Installing ('''''or Updating''''') the Shockwave plugin with Firefox]
    *Adobe PDF Plug-In For Firefox and Netscape: [https://support.mozilla.com/en-US/kb/Using%20the%20Adobe%20Reader%20plugin%20with%20Firefox#w_installing-and-updating-adobe-reader Installing/Updating Adobe Reader in Firefox]
    *Shockwave Flash (Adobe Flash or Flash): [https://support.mozilla.com/en-US/kb/Managing%20the%20Flash%20plugin#w_updating-flash Updating Flash in Firefox]
    *Next Generation Java Plug-in for Mozilla browsers: [https://support.mozilla.com/en-US/kb/Using%20the%20Java%20plugin%20with%20Firefox#w_installing-or-updating-java Installing or Updating Java in Firefox]

  • HT4211 I'm not able to download apps from App Store. It never downloads and it shows waiting status.can somebody please help me resolve this issue

    I'm not able to download apps from App Store. It never downloads and it shows waiting status.can somebody please help me resolve this issue

    I really do not think it is the iPad or your network connection. Other users have reported this very same issue. Try this and see if it works for you - it may not work - but it's easy to try - harmless - and it has worked in the past for others.
    Try signing out of your account and restart your iPad.
    Go to Settings>Store>Apple ID and tap the ID and sign out. Restart the iPad by holding down on the sleep button until the red slider appears and then slide to shut off. To power up hold the sleep button until the Apple logo appears and let go of the button. Go back to Settings>Store> Apple ID and sign in again.

  • I got an internet connection on my phone. After getting the internet connection, I was unable to make a call or check the missed calls that I got. Please help me resolve this problem.

    I got an internet connection on my phone. After getting the internet connection, I was unable to make a call or check the missed calls that I got. Please help me resolve this problem.

  • TS3694 hello i am trying to update my phone . i am connecting it to itunes but it is giving error 3194 . can you help me resolve this problem please.

    hello i am trying to update my phone . i am connecting it to itunes but it is giving error 3194 . can you help me resolve this problem please.

    Hi ali hakim,
    Welcome to the Support Communities!
    The article below may be able to help you with this issue.
    Click on the link to see more details and screenshots.
    iOS: Restore error 3194 or 'This device isn't eligible for the requested build'
    http://support.apple.com/kb/TS4451
    This occurs when iTunes is unable to communicate with the update-and-restore server (gs.apple.com). This is most likely because it is being blocked, redirected, or interrupted by security software, hosts-file entries, or other third-party software.
    Cheers,
    - Judy

Maybe you are looking for