Getting error invalid cursor at line 6?

create or replace procedure cust_pack(p_dept_id in number,p_emp_id in number) is
v_credit_limit number:=2000;
cursor cur_cust(p_dept_id in number,p_emp_id in number) is
select last_name,first_name,salary from employees where department_id=p_dept_id and employee_id=p_emp_id;
begin
for cust_record in cur_cust(50,188)
loop
dbms_output.put_line('name='||cust_record.last_name||',sal='||cust_record.salary);
close cur_cust;
end loop;
end;
Plz do rectify the problem . . .

Why are making the solution to complex.. you can try simple way as like below.
create or replace procedure cust_pack(p_dept_id in number,p_emp_id in number) is
v_credit_limit number:=2000;
begin
for cust_record in (select ename,sal from emp where deptno=p_dept_id and empno=p_emp_id)
loop
dbms_output.put_line('name='||cust_record.ename||',sal='||cust_record.sal);
end loop;
end;

Similar Messages

  • Payables Open Interface Purge completes with error "Invalid Cursor"

    Hello,
    I'm trying to run Payables Open Interface Purge (version 115.8) and get an invalid cursor error in the beforereport trigger. Does anyone know the cause and remedy of this? A portion of the log is below. I've looked at the cursor and everything looks fine to me.
    MSG-00001: (Import_purge 1) Check control table for the purge process
    MSG-00001: (Check_control_table 1) Lock the control table
    MSG-00003: (Check_control_table 2) Fetch import_requests
    MSG-00004: (Check_control_table 3) Check concurrent program status
    MSG-00999: FUNCTION GET_REQUEST_STATUS ERROR, Reason:
    MSG-00999: FND_CONCURRENT.GET_REQUEST_STATUS<-Check_control_table<-Import_purge<- Before report trigger <- APXIIPRG
    MSG-00999: check_control_table<-Import_purge<- Before report trigger <- APXIIPRG
    MSG-00999: (Import_purge 1) Check control table for the purge process
    MSG-00999: Delete record in control table..
    MSG-00999: ORA-01001: invalid cursor
    REP-1419: 'beforereport': PL/SQL program aborted.
    Thank you.

    I'm trying to run Payables Open Interface Purge (version 115.8) and get an invalid cursor error in the beforereport trigger. Does anyone know the cause and remedy of this? A portion of the log is below. I've looked at the cursor and everything looks fine to me.
    MSG-00001: (Import_purge 1) Check control table for the purge process
    MSG-00001: (Check_control_table 1) Lock the control table
    MSG-00003: (Check_control_table 2) Fetch import_requests
    MSG-00004: (Check_control_table 3) Check concurrent program status
    MSG-00999: FUNCTION GET_REQUEST_STATUS ERROR, Reason:
    MSG-00999: FND_CONCURRENT.GET_REQUEST_STATUS<-Check_control_table<-Import_purge<- Before report trigger <- APXIIPRG
    MSG-00999: check_control_table<-Import_purge<- Before report trigger <- APXIIPRG
    MSG-00999: (Import_purge 1) Check control table for the purge process
    MSG-00999: Delete record in control table..
    MSG-00999: ORA-01001: invalid cursor
    REP-1419: 'beforereport': PL/SQL program aborted.11i: Payables Open Interface Invoice Import Troubleshooting Guide (APXIIMPT) [ID 107628.1] -- 3. Open Interface Import Purge Fails with ORA-01001: Invalid Cursor
    Thanks,
    Hussein

  • Oracle sys Index rebuild then Getting error Invalid Error Ora-01410

    Oracle sys Index rebuild,
    after Getting error Invalid Error Ora-01410 in alert log file.every Insert ,update and delete.
    Oracle Database 11g Enterprise Edition Release 11.1.0.7.0 - 64bit Production
    PL/SQL Release 11.1.0.7.0 - Production
    Oracle sys Index rebuild list
    CTXSYS
    EXFSYS
    FLOWS_030000
    FLOWS_FILES
    MDSYS
    OLAPSYS
    ORDSYS
    OWBSYS
    SI_INFORMTN_SCHEMA
    TSMSYS
    WKSYS
    MDSYS
    After rebuild above index im getting error while inserting,update,delete table rows
    Error like 'INVALID ROWID' alert log file
    ANY ONE HELP ME TO RESOLVE THE PROBLEM
    Edited by: 927230 on May 26, 2012 8:51 PM
    Edited by: 927230 on May 26, 2012 8:53 PM

    927230 wrote:
    Oracle sys Index rebuild after Getting error Invalid Error Ora-01410
    Oracle 11.1 version
    Oracle sys Index rebuild list
    CTXSYS
    EXFSYS
    FLOWS_030000
    FLOWS_FILES
    MDSYS
    OLAPSYS
    ORDSYS
    OWBSYS
    SI_INFORMTN_SCHEMA
    TSMSYS
    WKSYS
    MDSYS
    After rebuild above index im getting error while inserting,update,delete table rows
    Error like 'INVALID ROWID'
    ANY ONE HELP ME TO RESOLVE THE PROBLEMwhich came first the error or the rebuild?
    COPY & PASTE whole session & SQL so we can see exactly what you do & how Oracle responds
    post results from following SQL below
    SELECT * FROM V$VERSION

  • Installing CF10, in Configuration and Settings Migration Wizard - getting error: Invalid Password

    Installing CF10, in Configuration and Settings Migration Wizard, in browserhttp://127.0.0.1/CFIDE/administrator/enter.cfm,
    ColdFusion has been successfully installed. This wizard will guide you through the remaining server configuration steps and, if applicable, migrate settings from a previous version of ColdFusion.
    To guarantee the security of your server, please enter your ColdFusion Administrator password.
    - getting error: Invalid Password. It won't take the password I provided in previous "Set Admin password" screen. Help?

    Hi,
    I am having the issue with the URL on the Configuration ans Setting Migration Wizard pointing to the following URL:
    http://localhost/CFIDE/administrator/enter.cfm
    Receiving a message:
    HTTP Error 404.0 - Not Found
    The resource you are looking for has been removed, had its name changed, or is temporarily unavailable.
    The following is the information in the error page:
    Module
    IIS Web Core
    Notification
    MapRequestHandler
    Handler
    ISAPI-dll
    Error Code
    0x80070002
    Requested URL
    http://localhost:80/jakarta/isapi_redirect.dll
    Physical Path
    D:\ColdFusion10\cfusion\wwwroot\jakarta\isapi_redirect.dll
    Logon Method
    Anonymous
    Logon User
    Anonymous
    I could not find a directory called jakarta.
    Any ideas?
    Thanks,
    Mike

  • Getting error in cursor variable in CallableStatement

    Hi,
    I am trying to retrieve result set from PL/SQL procedure using cursor variable.
    but I getting error sometime.
    this is code in my program...
    CallableStatement pstmt=null;
    pstmt = con.prepareCall("{call Crms2.SearchRNameTime(?,?,?,?,?,?)}");
    pstmt.setString(1, uid);
    pstmt.setString(2, strBookingDate);
    pstmt.setInt(3, roomid);
    pstmt.setInt(4, lngStartTime);
    pstmt.setInt(5, lngEndTime);
    pstmt.registerOutParameter(6, oracle.jdbc.driver.OracleTypes.CURSOR ); // error accured in this line
    pstmt.execute();
    rs = (ResultSet)pstmt.getObject(6);
    error was accrued at line : pstmt.registerOutParameter(6, oracle.jdbc.driver.OracleTypes.CURSOR );
    error is: orable.jdbc.driver can not resolve tha symbol..
    but it some time executing , some time giving error.
    it is require any package to import?
    please help me on this problem.
    regards
    Narru

    990187 wrote:
    i have created a cursor to return only 5th row from a table .
    declare
    cursor cur is select * From(select last_name,salary,rownum rn from employees where rownum<=50)) where rn=5;
    just a side note, (others have helped with the actual error already), using "rownum" like you do isn't very consistent. Not really sure about the requirment of "5th row", but no matter. Just keep in mind that the way Oracle assigns a rownum, and the fact you have no sorting/order ... you are - effectively - getting a random row. That is, with no data changing, Oracle may very well retrieve things in a different order due to index, new oracle version, whatever.
    If you do actually need the 5th row where you have some sorting (ie 5th largest salary, or 5th record by last name, etc. ), then you may want to consider something like:
    select * from (select last_name, salary, row_number() over (order by salary desc) rn from employees) where rn = 5;
    or whatever your sort criteria is. Do a search for "Top N" queries if you need more info.
    It'll work a bit more consistently.

  • ODBC data source error, invalid cursor state??

    I'm using Photoshop Album Starter Edition 3.0, on Windows XP, and I was having some trouble organizing so I deleted all the photos in the catalogue, but now I can't add any new images. After opening the program and trying to add new pictures, I get the error that the files can't be found. After that one time, every time I try to add any photos at all, it gives me this error:
    The ODBC data source returned the following error:
    "[Microsoft][ODBC Microsoft Access Driver]Invalid cursor state"
    I've tried restarting the program, the computer... I don't know what the error even means or how to solve this problem. So if anyone has any ideas, please let me know. Oh, and I would reinstall the program, except I think it just came with the computer, I don't have a cd with it or anything. Is there somewhere else or another way to reinstall? Anyhow I'm done now, please help if you can. Thanks. :)

    Since this is a free software, you can download this from Adobe.com. Try reinstalling Photoshop Album Starter Edition 3.0. If Reinstall does not work, try repairing the Windows ODBC drivers.
    The reason for the error may be the Windows ODBC Drivers.To repair the ODBC drivers, follow these steps:
    1) Go to Start>Settings>Control Panel. Select Add/Remove Programs and select SP2 and uninstall.
    2) Insert your original Win XP CD and choose the Upgrade option.
    3) When completed, reinstall SP2. Go to Start>Windows Updates and select SP2.
    You can also try this:
    Install Windows XP Service Pack 2 _or_ install the "Microsoft Data Access Components (MDAC) 2.8" from http://www.microsoft.com/downloads/details.aspx?FamilyID=6c050fe3-c795-4b7d-b037-185d0506 396c&DisplayLang=en
    Please let us know if that worked.
    -Smriti

  • Scrollable Content article gets [Error: Invalid asset location]

    I'm trying to create a wide scrollable content product timeline.
    The Content  on the "Scrollable Content" layer is 3024x600
    Content is grouped text and image boxes
    Container frame on Layer 1 is 975x600
    Both Content and Containerhave the same name and are aligned along the left edge
    When I update the folio I get the following error:
    Content Generation Error
    [Error: Invalid asset location]
    Trying to preview in the desktop viewer gets the same error.
    Looking at the links tab, there are no missing or flagged files, and all the files exist within the article's links folder.
    What am I missing here?

    looks like you are okay on the folio builder panel (first line)
    but you are still on version 18 of the producer tools. make sure to have
    the latest version of the folio producer tools (separate installer)
    installed. maybe uninstall previous version.
    http://caniupdateadobedps.com/
    —Johannes

  • Getting Error 'Invalid export DLL or export format'

    Hi, we are getting the above error when exporting to Excel from Crystal Reports. Although the export is via one of our products, the process of exporting the report is controlled by the Crystal Report viewer which we have no control over.
    Basic system details are as follows:
    Operating system : - Windows Server 2003 R2 Service pack 2
    Crystal Reports : - Crystal Reports Developer version 12.0.0.683, product type : Full
    Problem summary : - When exporting a report, exporting to excel produces an error 'Invalid export DLL or export format'.
    We have tried the following so far, obviously to no avail:
    The Business Objects folder has been added to the PATH variable.
    Crystal Reports has been deinstalled and reinstalled.
    Your help in getting to the bottom of this is greatly appreciated!

    Hi.
    Please check the fourm
    "Invalid export DLL or export format" with Crystal Reports 2008
    Regards
    Gangadhar

  • Strange Error- Invalid pc in line number table

    We have a web application on OAF(Oracle Application Framework) hosted using jdk 1.5.. we are trying to backport it to jdk 1.4.2_04.. The code compiles successfully but while trying to run the application on 1.4.2_04, it ends up in an unexpected exception saying..
    JBO-30003: The application pool (ap639sdbpqecu220009oracle.apps.fem.mappingwizard.server.MappingWizardAM) failed to checkout an application module due to the following exception:
    oracle.jbo.JboException: JBO-29000: Unexpected exception caught: java.lang.ClassFormatError, msg=oracle/apps/fem/mappingwizard/validation/server/ValidationEngineAMImpl (Invalid pc in line number table)
    Has any one encountered this error previously?? Any known workarounds/solutions.. I am pasting the error stack below-
    JBO-30003: The application pool (ap639sdbpqecu220009oracle.apps.fem.mappingwizard.server.MappingWizardAM) failed to checkout an application module due to the following exception:
    oracle.jbo.JboException: JBO-29000: Unexpected exception caught: java.lang.ClassFormatError, msg=oracle/apps/fem/mappingwizard/validation/server/ValidationEngineAMImpl (Invalid pc in line number table)
    at oracle.jbo.common.ampool.ApplicationPoolImpl.doCheckout(ApplicationPoolImpl.java:1619)
    at oracle.jbo.common.ampool.ApplicationPoolImpl.useApplicationModule(ApplicationPoolImpl.java:2366)
    at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:427)
    at oracle.jbo.http.HttpSessionCookieImpl.useApplicationModule(HttpSessionCookieImpl.java:214)
    at oracle.apps.fnd.framework.webui.OAHttpSessionCookieImpl.useApplicationModule(OAHttpSessionCookieImpl.java:473)
    at oracle.jbo.common.ampool.SessionCookieImpl.useApplicationModule(SessionCookieImpl.java:398)
    at oracle.apps.fnd.framework.webui.OAJSPApplicationRegistry.registerApplicationModule(OAJSPApplicationRegistry.java:208)
    at oracle.apps.fnd.framework.webui.OAJSPApplicationRegistry.registerApplicationModule(OAJSPApplicationRegistry.java:78)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:1177)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:502)
    at oracle.apps.fnd.framework.webui.OAPageBean.preparePage(OAPageBean.java:423)
    at oa_html._OA._jspService(_OA.java:88)
    at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
    at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
    at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
    at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
    at oracle.jsp.JspServlet.service(JspServlet.java:156)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
    at oracle.jsp.provider.Jsp20RequestDispatcher.forward(Jsp20RequestDispatcher.java:162)
    at oracle.jsp.runtime.OraclePageContext.forward(OraclePageContext.java:187)
    at oa_html._OA._jspService(_OA.java:98)
    at oracle.jsp.runtime.HttpJsp.service(HttpJsp.java:119)
    at oracle.jsp.app.JspApplication.dispatchRequest(JspApplication.java:417)
    at oracle.jsp.JspServlet.doDispatch(JspServlet.java:267)
    at oracle.jsp.JspServlet.internalService(JspServlet.java:186)
    at oracle.jsp.JspServlet.service(JspServlet.java:156)
    at javax.servlet.http.HttpServlet.service(HttpServlet.java:588)
    at org.apache.jserv.JServConnection.processRequest(JServConnection.java:456)
    at org.apache.jserv.JServConnection.run(JServConnection.java:294)
    at java.lang.Thread.run(Thread.java:534)

    I never saw it before but the ClassFormatError states that the runtime can't read your class file because it is malformed.
    Try to remove all your class files and recompile again. I think normally it is backward compatible, but try to use the 1.4 runtime environment in your IDE.

  • GETTING ERROR INVALID IDETIFIER

    NEED HELP ASAP!!!!!!
    ERROR MARKED AGAINT THE LINE...SEE THE LAST FEW LINWS FRM FORALL STMT
    declare
    type summary_upd_tab is table of summary%rowtype;
    summary_upd_var summary_upd_tab;
    begin
    select
    user_id,
    min(start_time_utc),
    max(end_time_utc),
    sum(duration_seconds),
    sum(upload_bytes),
    sum(download_bytes),
    sum(upload_bytes)+sum(download_bytes),
    null,
    null,
    null,
    type_of_summary,
    ispeak,
    null
    --TOTALDISCOUNT
    bulk collect into summary_upd_var
    from aaa_sessions a
    -- hsin_plan_details hpd
    group by user_id,ispeak,type_of_summary;
    forall i in summary_upd_var.first..summary_upd_var.last
    update summary s
    set
    start_date=DECODE((summary_upd_var.start_date-s.start_date)-abs(summary_upd_var.start_date-s.start_date),0,s.start_date,summary_upd_var.start_date),
    end_date=decode((summary_upd_var.end_time_utc-s.end_date)-abs(summary_upd_var.end_time_utc-s.end_date),0,summary_upd_var.end_time_utc,s.end_date),
    total_duration=s.TOTAL_DURATION+summary_upd_var.total_duration,
    total_upload=s.total_upload+summary_upd_var.total_upload,
    total_download=s.total_download+summary_upd_var.total_download
    --total_traffic=s.total_upload+summary_upd_var.total_upload+s.total_download+summary_upd_var.total_download
    where
    summary.user_id=summary_upd_var.user_id
    and
    summary.ispeak=summary_upd_var.ispeak
    and
    summary.TYPE_OF_SUMMARY=summary_upd_var.TYPE_OF_SUMMARY; -------INVALID IDENTIFIER????this column is present in the tablle...then why??
    end;

    user8731258 wrote:
    this is how my query looks like...
    bu t i am nt very clear as to how correlated update would work?Here is a simple example of the workings:
    SQL> create table t
      2  as
      3  select rownum id
      4       , rownum + 2 tid
      5    from all_objects
      6   where rownum <= 5
      7  /
    Table created.
    SQL> create table s
      2  as
      3  select *
      4    from t
      5  /
    Table created.
    SQL>
    SQL> update s
      2     set tid = tid * 2
      3  /
    5 rows updated.
    SQL>
    SQL> select *
      2    from t
      3  /
            ID        TID
             1          3
             2          4
             3          5
             4          6
             5          7
    SQL> select *
      2    from s
      3  /
            ID        TID
             1          6
             2          8
             3         10
             4         12
             5         14
    SQL>
    SQL>
    SQL> update t
      2    set (id, tid) = (select s.id, s.tid
      3                   from s
      4                   where s.id = t.id)
      5  ;
    5 rows updated.
    SQL> select *
      2    from t
      3  /
            ID        TID
             1          6
             2          8
             3         10
             4         12
             5         14As you can see it works as advertised....
    user8731258 wrote:
    I still want to use collection..so plz tell me a workaround for this reference error!!!!Why?... the UPDATE works fine, anyway ...follow the links I posted before

  • Getting Error Invalid Cost Group while performing MTL Transaction.

    Hi All,
    I am performing mtl transactions for wip issue. I am able to insert the data into the MTL_TRANSACTIONS_INTERFACE table but when i call the seeded concurrent program "Process transaction interface (Process transaction interface)" then i am getting the following error:
    "Invalid Cost Group-Cost Group is either not entered or not valid for the given organization".
    I am using the the table "CST_COST_GROUPS" to validate the cost group while inserting into the MTL_TRANSACTIONS_INTERFACE .
    Please suggest me how to overcome the error.
    Thanks,
    Nisheeth

    Were you able to do the same tranasction manually (i.e. without the interface)?
    Try that and see if you get an error.
    I have a feeling that you may have Key flexfield security rules that prohibit using that a/c.
    The other way to verify this is to find a cost group (the default one) that works ; modify the a/c to be the new accounts and then perform an interface transaction.
    See if you get an error. If you do, then certainly the problem lies with one of the accounts. After that, you can start changing one a/c at a time to identify the culprit.
    Sandeep Gandhi

  • Why do I get Error invalid number when I try to send a text to my husband?

    I tried to send my husband a text this afternoon from my phone. I keep getting a message from +1 (1) (216) 116-11. It says the following:
    7657905 Error Invalid Number
    Please resend using a valid 10 digit mobile number or valid short code.  HELP!

    My wife had this problem for the past few days for a specific phone number. These instructions fixed it -- without having to restore from backup or contact the carrier.
    http://www.timothydeblock.com/blog/2014/5/12/fix-message-sent-using-invalid-numb er-of-digits-msg-2114
    Open Contacts -> select the contact -> select edit -> scroll all the way to the bottom and delete contact (delete multiple entries of the same phone number, my wife had five).
    Open the Messages app -> select Edit -> select the red circle and then select delete. Do this for both the person and the messages you received.
    Open the Settings app -> scroll down and select Messages -> turn off messages, by selecting the switch, and any other options turned on.
    Turn off your phone and then turn it back on.
    Go straight to messages and compose a new message and put in the phone number of the person you're trying to text. Send and that person should receive the text message. Add the person to your contacts and go back into message settings to turn on any other options you want on that you turned off.
    John

  • XML parsing fatal error: Invalid document structure, line: 1, file: ... (in this case "Classic.xml"

    dreamweaver not initiating..claiming a parsing fatal cerr because classic.xml is corrupted. I tried re-installing dreamweaver... nothing

    See here Dreamweaver CS5 fatal error XML parsing: Invalid document structure, line:1, File: C:\User\Tyler\App

  • Getting Error: Invalid Payee context values Org parameters exist only with

    I am using Supplier site conversion API called " pos_vendor_pub_pkg.create_vendor_site ".
    I am getting following error -
    "Invalid Payee context values. Org parameters exist only with party site and supplier site. "
    but those suppliers are converted properly. only site giving this issue.
    Can anyone help on this area.
    Thanks
    Sathiya

    The issue is that you are mapping "Data Value" to amount in the Target Application import format:
    SELECT SCENARIO "Scenario" 
      ,YEAR "Year"
      ,PERIOD "Period"
      ,DATAVIEW "View"
      ,DATAVALUE "Value"
      ,ACCOUNT "Account"
      ,ENTITY "Entity"
      ,ICP "ICP"
        ,UD2 "Area"
        ,UD1 "Tail"
        ,UD3 "Special"
        ,UD4 "Facility"
      ,AMOUNT "DataValue"
      FROM AIF_HS_BALANCES
      WHERE LOADID = 300
    You need to map AMOUNT to "AMOUNT" in the HFM Application.  Check that the dimension mapping is correct for the class in the target application and that your import format is going to the proper target dimension(Amount).    

  • Getting error Invalid length parameter passed

    Hi,
    I'm getting an error running my query. It say "Invalid length parameter passed to the LEFT or SUBSTRING  function. I will be getting the string in between of hyphen using the code below. May i ask your assistance or idea on how to fix this issue.
    thank you.
     Substring(ins.itemid,11,CHARINDEX('-',ins.itemid+'-',11)-11) AS MODEL
    Msg 537, Level 16,
    State 3, Line 1
    Invalid length parameter passed to the LEFT or SUBSTRING
    function.
    Sample data of Itemid.
    B300-4410-ONEMAX-U
    B300-1725-XWHT-U
    B300-3110-VT981-U
    B300-1720-DRZRKCROBLK-U
    B300-1720-DRDTHN32BLK-U

    That'll cause empty strings to show up into you're result set but shouldn't cause the the SUBSTRING function to fail. 
    The error is the result of the SUBSTRING function trying to bring back a negative number of characters.
    Try running the following and see what comes back...
    SELECT ins.itemid
    FROM dbo.TableName ins
    WHERE LEN(ins.itemid) < 11
    If you don't find any itemids what are less than 11 characters (I'm 99% sure you will), try using a little test script like the following to test suspect values...
    IF OBJECT_ID('tempdb..#temp') IS NOT NULL
    DROP TABLE #temp
    GO
    CREATE TABLE #temp (
    itemid VARCHAR(30)
    INSERT #temp (itemid) VALUES
    ('B300-4410-ONEMAX-U'),
    ('B300-1725- '),
    ('B300- 3110-VT981-U'),
    ('B300-1720-DRZRKCROBLK-U'),
    ('B300- 1720-DRDTHN32BLK-U')
    SELECT ins.itemid
    FROM #temp ins
    WHERE LEN(ins.itemid) < 11
    SELECT
    SUBSTRING(
    ins.itemid, 11, CHARINDEX('-',ins.itemid+'-',11)-11) AS MODEL FROM #temp ins
    HTH,
    Jason
    Jason Long

Maybe you are looking for

  • How to backup library before an iTunes reinstallation

    I run Vista, and I happened to have the problem of my CD/DVD drive disappearing on me. I googled it, figured out how to fix it by deleting a couple registry items and restarting, and it started working again. Only thing is, right after that every tim

  • Post Install IP Phones tests document

    Hi, Where is the IP phone Post Install Checklist doc? Rich

  • I cant download any app from the app store.

    I cant donwload any app from the appstore an error appear and said, this app cannot purchase at this time, try again later please. I have ios 7.1 A few days everything was working normally and I dont understand what is the problem.

  • Macbook pro dropped in water. Any hope?

    Macbook Pro was dropped into a bathtub. It has shut down. Any hope of survival?

  • I18N - Translation Best Practises?

    Hi. I always wanted to ask this, now my level of desperation is high enough again. Are there any translation best practises? Background: I've developed countless multi-language applications on NW2004s (7.0). I always tried to do the translation job a