Is this possible in ASO Procedural MaxL or am I crazy to try?   11.1.2.2

Hi,
Just want to know if any of you experts think this is possible in ASO Procedural calcs? I have been trying for days and can't get it to work, however my syntax in code might be wrong. Appreciate all advice.
IIF ( IS ( [Scenario].CurrentMember, [Actual] ) AND IS ( [Product].CurrentMember, [No_Product] ) AND IsUDA ( [Entity].CurrentMember, "Corporate" ) ,
( [EXPENSES] - ( [TOTAL ORIGINATION INCOME] * -1) + [45500] + [46000] - [TOTAL INTEREST EXPENSE] - [53635] - [53636] - [54005] -
[54006] - [54007] - [54030] - [54060] ) / ( [Funded Units] , [CORPORATE COST CENTERS] , [Actual] ) ,
IIF ( IS ( [Scenario].CurrentMember, [Actual] ) AND IS ( [Product].CurrentMember, [No_Product] ) AND IsUDA ( [Entity].CurrentMember, "CC9990Alloc" ) ,
( [EXPENSES] - ( [TOTAL ORIGINATION INCOME] * -1) + [45500] + [46000] - [TOTAL INTEREST EXPENSE] - [53635] - [53636] - [54005] -
[54006] - [54007] - [54030] - [54060] - [51120] - [51135] - [51136] - [51137] - [51139] ) / ( [Funded Units] , [CORPORATE COST CENTERS] , [Actual] ) ,
IIF ( IS ( [Scenario].CurrentMember, [Actual] ) AND IS ( [Product].CurrentMember, [No_Product] ) AND IsUDA ( [Entity].CurrentMember, "CC9999Alloc" ) ,
( ( (/* 41401 + 126260 +*/ [EXPENSES] - [TOTAL INTEREST EXPENSE] - [53635] - [53636] - [54005] - [54006] - [54007] - [54030] - [54060] - [54091] - [51150] - [51160] - [51170] - [51180] ) +
( ( [51150] + [51160] + [51170] + [51180] ) * .2 ) ) / ( [Funded Units] , [CORPORATE COST CENTERS] , [Actual] ) ) ,
IIF ( IS ( [Scenario].CurrentMember, [Actual] ) AND IS ( [Product].CurrentMember, [No_Product] ) AND IsUDA ( [Entity].CurrentMember, "CC9014Alloc" ) ,
( [EXPENSES] - ( [TOTAL ORIGINATION INCOME] * -1) + [45500] + [46000] - [TOTAL INTEREST EXPENSE] - [53635] - [53636] - [54005] -
[54006] - [54007] - [54030] - [54060] - [54080] ) / ( [Funded Units] , [CORPORATE COST CENTERS] , [Actual] ) ,
IIF ( IS ( [Scenario].CurrentMember, [Actual] ) AND IS ( [Product].CurrentMember, [No_Product] ) AND IsUDA ( [Entity].CurrentMember, "CC9999Alloc2" ) ,
( ( ( [51150] , [9999] ) + ( [51160] , [9999] ) + ( [51170] , [9999] ) + ( [51180] , [9999] ) ) * .8 ) / ( [Funded Units] , [CORPORATE COST CENTERS] , [Actual] ) ,
Missing ) ) ) ) )

I tried this on the Demo Basic ASO application that I named 'z_aso' and same error. I moved the only upper level member to right side of equation here and it doesn't work. Maybe I misunderstood your post that upper level members are ok on right side of equation?
([Bud Var],[Jan],[Profit],[Stereo])
:= ([Actual],[Jan],[Stereo])
/ ([Budget],[Jan],[Profit],[Stereo]) ;
D:\scripts\z_aso>essmsh BudVar.mxl >BudVar.log
ERROR - 1300033 - Upper-level members, for example [Profit], are not allowed in argument [Script]. Select a level-0 member.
ERROR - 1241190 - Custom Calculation terminated with Essbase error 1300033 in SCRIPT.

Similar Messages

  • Is this possible? Approval Procedures

    Hi All, just wanted to know to what extent this is possible with standard SAP Business One. I am sure the digital signature part isn't possible, but what is and how would you be able to set this up? Thanks in advance, Adele
    When the Purchase Order is created in SAP, the user will enter the item code and quantity. After this has been completed, and they press update, SAP must first do the following:
    1)      Check the quantities in that branches warehouses (if the user is in PTA, then it must check all PTA warehouses, except the Holding warehouse). This is configured using the Location on the warehouse;
    2)      Check the maximum stock level for the branch, and if the current stock holding plus the quantities on the purchase order exceeds the maximum stock level, it must prompt the user to reduce his stock on the purchase order;
    3)      Check the purchase price that the user has filled in and notify the user if the difference is greater than 15% (more or less) than the Standard Price in the system.
    SAP must then decline the purchase order if:
    1)      Ordered quantity plus the stock in the warehouses exceeds the maximum stock level;
    2)      Purchase price is more than 15% different than the Standard Price (this will then need to prompt [User A] to verify the price they are paying);
    If the above is fine, then SAP must send the Branch Manager a notification to go to the specific PO to approve it.
    Once the Branch Manager has approved it, the following people must receive a notification to approve the PO:
    1)      Less than R10,000 - [User Z]
    2)      More than R10k but less than R50k - [User M]
    3)      If more than R50k - [Both User M and User Z]
    This approval must be in the form of a digital signature that gets placed on the PO and can be printed out.
    There must be an override code in case [User M] is not available to release the Purchase Order. [User Z] must then be able to view the Purchase Order and approve it, but it must tell her that it exceeds her authorisation limit, and it must give the option to use the override code and state a reason why the code was used.
    [User M] must get a notification of all Purchase Orders approved with the override code.
    Once the Purchase Order has been approved, a notification must be sent to the Person who created the PO.
    The purchase must not be able to be printed out until it has been approved.

    I believe most of your goals could be reached by user query approvals.  You need to created several different Approval Stages and Templates to complete the task.  I don't think one approval for all is possible.
    Thanks,
    Gordon

  • Is this possible with LOG ERRORS?

    I have a procedure which does a bulk insert/update operation using MERGE (running on Oracle 10gR2). We want to silently log any failed inserts/updates but not rollback the entire batch no matter how many inserts fail. So I am logging the exceptions via LOG ERRORS REJECT LIMIT UNLIMITED. This works fine actually.
    The one other aspect is the procedure is being called from Java and although we want any and all good data to be committed, regardless of how many rows have bad data, we still want to notify the Java front end that not all records were inserted properly. Even something such as '150 rows were not processed.' So I am wondering if there is anyway to still run the entire batch, log the errors, but still raise an error from the stored procedure.
    Here is the working code:
    CREATE TABLE merge_table
        t_id     NUMBER(9,0),
        t_desc   VARCHAR2(100) NOT NULL
    CREATE OR REPLACE TYPE merge_type IS OBJECT
        type_id     NUMBER(9,0),
        type_desc   VARCHAR2(100)
    CREATE OR REPLACE TYPE merge_list IS TABLE OF merge_type;
    -- Create Error Log.
    BEGIN
        DBMS_ERRLOG.CREATE_ERROR_LOG(  
            dml_table_name      => 'MERGE_TABLE',
            err_log_table_name  => 'MERGE_TABLE_ERROR_LOG',     
    END;
    CREATE OR REPLACE PROCEDURE my_merge_proc_bulk(p_records IN merge_list)
    AS
    BEGIN
        MERGE INTO merge_table MT
        USING
            SELECT
                type_id,
                type_desc
            FROM TABLE(p_records)
        ) R           
        ON
            MT.t_id = R.type_id
        WHEN MATCHED THEN UPDATE
        SET
             MT.t_desc = R.type_desc
        WHEN NOT MATCHED THEN INSERT
            MT.t_id,
            MT.t_desc
        VALUES
            R.type_id,
            R.type_desc
        LOG ERRORS INTO MERGE_TABLE_ERROR_LOG ('MERGE') REJECT LIMIT UNLIMITED;
        COMMIT;
    END;
    -- test script to execute procedure
    DECLARE
        l_list       merge_list := merge_list();
        l_size       NUMBER;
        l_start_time NUMBER;
        l_end_time   NUMBER;
    BEGIN
        l_size := 10000;
        DBMS_OUTPUT.PUT_LINE('Row size: ' || l_size || CHR(10));
        l_list.EXTEND(l_size);
        -- Create some test data.
        FOR i IN 1 .. l_size
        LOOP
            l_list(i) := merge_type(i,'desc ' || TO_CHAR(i));
        END LOOP;
        EXECUTE IMMEDIATE 'TRUNCATE TABLE MERGE_TABLE';
        EXECUTE IMMEDIATE 'TRUNCATE TABLE MERGE_TABLE_ERROR_LOG';
        -- Modify some records to simulate bad data/nulls not allowed for desc field  
        l_list(10).type_desc := NULL;
        l_list(11).type_desc := NULL;
        l_list(12).type_desc := NULL;
        l_list(13).type_desc := NULL;
        l_list(14).type_desc := NULL;
        l_start_time := DBMS_UTILITY.GET_TIME;   
        my_merge_proc_bulk(p_records => l_list);
        l_end_time := DBMS_UTILITY.GET_TIME;
        DBMS_OUTPUT.PUT_LINE('Bulk time: ' || TO_CHAR((l_end_time - l_start_time)/100) || ' sec. ' || CHR(10));
    END;
    /I tried this at the end of the procedure, but it does not work, probably because I am not using SAVE EXCEPTIONS:
        IF (SQL%BULK_EXCEPTIONS.COUNT > 0) THEN
            RAISE_APPLICATION_ERROR(-20105, SQL%BULK_EXCEPTIONS.COUNT || ' rows failed for the batch.' );
        END IF;Also the one thing we would like to have is the datetime logged for each failure in the ERROR_LOG table. We may be running several different batches over night. Is this possible to manipulate the table to add this?
    Name                              Null?    Type
    ORA_ERR_NUMBER$                            NUMBER
    ORA_ERR_MESG$                              VARCHAR2(2000)
    ORA_ERR_ROWID$                             ROWID
    ORA_ERR_OPTYP$                             VARCHAR2(2)
    ORA_ERR_TAG$                               VARCHAR2(2000)
    CHANNEL_ID                                 VARCHAR2(4000)
    CHANNEL_DESC                               VARCHAR2(4000)
    CHANNEL_CLASS                              VARCHAR2(4000)Edited by: donovan7800 on Feb 16, 2012 1:14 PM
    Edited by: donovan7800 on Feb 16, 2012 1:17 PM

    Ah yes I remember. The guy needing the TABLE(p_records).
    Re: Merge possible from nested table?
    >
    I tried this at the end of the procedure, but it does not work, probably because I am not using SAVE EXCEPTIONS:
    IF (SQL%BULK_EXCEPTIONS.COUNT > 0) THEN
    RAISE_APPLICATION_ERROR(-20105, SQL%BULK_EXCEPTIONS.COUNT || ' rows failed for the batch.' );
    END IF;
    >
    Correct - you need to use SAVE EXCEPTIONS.
    I know there is the FORALL command, but I figured there was a way to do this with MERGE since the procedure does an update if a match is found instead
    But you can use MERGE with FORALL and add the SAVE EXCEPTIONS to handle your problem.
    I still have a question as to what the source of the PL/SQL table provided by the parameter Is this table being prepared in another PL/SQL procedure, in Java, or how? Are you confident that the number of rows in the table will be small enough to avoid a memory issue?
    If in PL/SQL you could pass a ref cursor and then in this proc use a LOOP with a 'BULK COLLECT into' with a LIMIT clause to do the processing.                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                           

  • In Adobe ExportPDF, can you take an existing PDF and delete existing pages?  For example, I have a 5-page report and need to delete pages 2-4.  Is this possible?  Thanks!

    In Adobe ExportPDF, can you take an existing PDF and delete existing pages?  For example, I have a 5-page report and need to delete pages 2-4.  Is this possible?  Thanks!

    Hi,
    You can do this with Adobe Acrobat.
    If you are using Export PDF it is a long procedure.
    You need to convert your PDF in word or powerpoint.
    Then you can edit the document & again can create PDF.
    Regards,
    Florence

  • HELP! JSP as items in a region - is this possible?

    Hi All,
    Can someone please tell me how to bring in a JSP code as an item or portlet within a region. Is this possible with Oracle9iAS release 2? I need to generate dynamic html within a particular region based on a query string parameter and I thought this is one way of doing it.
    If anyone can help, that would be great!
    Thanks in advance,
    Kim

    Kim,
    There are many articles on Portal Center that discuss building portlets from JSPs. You can also post questions on this topic to the PDK forum.
    For PL/SQL, there are a number of options. You can build PL/SQL portlets - the dynamic page component is a good start, that is conceptually similar to JSPs.
    You can also create PL/SQL items that can be rendered in-place or displayed as a link - make sure that you don't use the "Simple PL/SQL" item type, as you can't control the rendering behaviour. Use the supplied "PL/SQL" item type, or create your own custom item type based on "Simple PL/SQL".
    Finally, any item type (except the "simple" ones) can be associated with a procedure that can generate dynamic content. The procedures can be PL/SQL or any function that can be invoked via a URL (e.g. a JSP or servlet).
    Note that in your PL/SQL procedures you'll need to use the HTP package to generate HTML.
    Regards,
    Jerry
    Portal PM

  • Is DATACOPY or similiar possible in ASO MDX?

    I have source file that has 5 dims referenced: Accounts, Service, Quantity, Frequency and Size. In the 'Accounts' dim I have 3 members: Qty, Freq and Yd that all have values. So I extract all those values for all Service, Quantity, Frequency and Size.
    However in my target app, I have 8 dims. The three additional ones are: Segment, Customer and Year. So I load this data file to 'No Segment', 'No Cust' and 'No Year'. Is there a way to copy that data to all the leaf level members of 'Segment', 'Customer' and 'Year'?? Obviously this is easy in BSO, but not sure possible in ASO.
    Thanks,

    I did it in BSO as follows:
    Fix(@Relative("Zip Code",0))
    SET CREATENONMISSINGBLK ON;
    /* First populate the 'Qty' Measure to match the 'Quantities' metadata */
    "Qty" (
    IF(@ISMBR ("Qty 1"))
    "Qty" =1;
    ELSEIF(@ISMBR ("Qty 2"))
    "Qty" =2;
    ELSEIF(@ISMBR ("Qty 3"))
    "Qty" =3;
    ELSEIF(@ISMBR ("Qty 4"))
    "Qty" =4;
    ELSEIF(@ISMBR ("Qty 5"))
    "Qty" =5;
    ELSEIF(@ISMBR ("Qty 6"))
    "Qty" =6;
    ELSEIF(@ISMBR ("Qty 7"))
    "Qty" =7;
    ELSEIF(@ISMBR ("Qty 8"))
    "Qty" =8;
    ELSEIF(@ISMBR ("Qty 9"))
    "Qty" =9;
    ELSEIF(@ISMBR ("Qty 10"))
    "Qty" =10;
    ELSEIF(@ISMBR ("Qty 11"))
    "Qty" =11;
    Endif; )
    /* Now populate the 'Yard' Measure to match the 'Yardages' metadata */
    "Yard" (
    IF(@ISMBR ("Yd 1.0"))
    "Yard" =1;
    ELSEIF(@ISMBR ("Yd 1.5"))
    "Yard" =1.5;
    ELSEIF(@ISMBR ("Yd 2.0"))
    "Yard" =2;
    ELSEIF(@ISMBR ("Yd 2.5"))
    "Yard" =2.5;
    ELSEIF(@ISMBR ("Yd 3.0"))
    "Yard" =3;
    ELSEIF(@ISMBR ("Yd 4.0"))
    "Yard" =4;
    ELSEIF(@ISMBR ("Yd 5.0"))
    "Yard" =5;
    ELSEIF(@ISMBR ("Yd 6.0"))
    "Yard" =6;
    ELSEIF(@ISMBR ("Yd 7.0"))
    "Yard" =7;
    ELSEIF(@ISMBR ("Yd 8.0"))
    "Yard" =8;
    ELSEIF(@ISMBR ("Yd 9.0"))
    "Yard" =9;
    ELSEIF(@ISMBR ("Yd 10.0"))
    "Yard" =10;
    ELSEIF(@ISMBR ("Yd 11.0"))
    "Yard" =11;
    Endif; )
    /* Now populate the 'Freq' Measure to match the 'Frequencies' metadata */
    "Freq" (
    IF(@ISMBR ("Freq 1x"))
    "Freq" =1;
    ELSEIF(@ISMBR ("Freq 2x"))
    "Freq" =2;
    ELSEIF(@ISMBR ("Freq 3x"))
    "Freq" =3;
    ELSEIF(@ISMBR ("Freq 4x"))
    "Freq" =4;
    ELSEIF(@ISMBR ("Freq 5x"))
    "Freq" =5;
    ELSEIF(@ISMBR ("Freq 6x"))
    "Freq" =6;
    ELSEIF(@ISMBR ("Freq 7x"))
    "Freq" =7;
    Endif;)
    Endfix

  • Calling Forms 6i from Reports 6i. Is this possible. Run Product in Reports

    Re: Calling Forms 6i from Reports 6i. Is this possible?
    Hello,
    I have need programming in Oracle 9.x and using Forms and Reports for about 1.5 years. My ERP application calls a report from a form. I DO NOT have source code for the FORM. But, I DO have source code for the Report. So, from the Report 6i, I would like to call an Oracle Form 6i. Note: Not WEB based. My question is, IS THIS POSSIBLE. I can not find a command like Run Product in Report for calling a Form Application. Can someone please help me. I am under the gun to have this ready in a couple of days. Can I call an Active X Application from Reports..if Oracle Forms DOES NOT WORK. This needs to be a Form Application because of the nature of this request.
    Thank you
    Dennis

    Thank you
    ...the ERP vendor based on a form icon button will call a report. They will pass a TAG_NUMBER from a database record (that they just inserted) to the report. This tag_number will link to other tables and will display the report. The problem is ??..there is additional information that the user needs to scan into the database BEFORE the report runs. This is part of the business work flow.
    I have options.
    1) Get the ERP Vendor to call a FORM based on the name I provide to them.(Not really an option since they are unwilling to make custom mod changes.)
    2) Have the user key into the REPORTS PARM FORM. And I will update the tables...
    3) Call an Active OCX popup FORM from Reports and then update tables. Is this possible from Reports???..I am not sure if I like to introduce ms vb into an oracle application. It just does not seem to be a correct solution/procedure.
    4) Pay the ERP Vendor as a custom mod to make the changes for us. (unlikely because they do not like making custom mod changes)
    5) ....any more ideas/comments please let me know..
    Thank you Again
    Dennis Aubrey

  • ASO Procedural - Crossjoin Error or bug?

    Hi,
    This is based of BasicASO sample app by the way. I have a ASO Procedural calc working. However one thing I can't figure out if it's a bug or if it's normal behavior or most likely my syntax is wrong :) Here's my POV that works.
    POV "
    Crossjoin({[Jan]},
    Crossjoin ( Descendants ([Product],[Product].Levels(0)),
    Crossjoin ( Descendants ([Market],[Market].Levels(0)),
    Crossjoin ( {[Sales],[Cost_of_Goods_Sold],[Marketing],[Payroll],[Miscellaneous],[AC_19950]},
    {[Bud Var]}
    What's weird is the first 5 accounts: Sales, Cost_of_Goods_Sold, Marketing, Payroll and Miscellaneous are all level zero members of 'Profit' in Accounts. None of them contain member formulas either. AC_19950 is an account I added as a sibling of 'Profit'. When I change the POV to below and run it (I can't figure out how to tie in AC_19950 to that yet, but still should run), I get the error below. Problem is Profit_% is not a level zero member of Profit, thus shouldn't it be skipping that anyways? Or is there a 'better' way to CrossJoin the level zero members of Profit? I want to avoid using UDA's as when I do this for real I need to do zero level members of Balance_Sheet, for instance.
    ERROR - 1300049 - The argument [POV] cannot contain dynamic members, for example [Profit_%].
    POV "
    Crossjoin({[Jan]},
    Crossjoin ( Descendants ([Product],[Product].Levels(0)),
    Crossjoin ( Descendants ([Market],[Market].Levels(0)),
    Crossjoin ( Descendants ([Accounts],[Profit].Levels(0)),
    {[Bud Var]}
    ))))"

    I think that is how it works.
    http://docs.oracle.com/cd/E40248_01/epm.1112/essbase_tech_ref/maxl_excalc_as.html
    >
    Notes
    The clauses following the with keyword can be entered in any order, each separated by white space.
    Each clause can only be entered once.
    The script_file, pov, and sourceregion clauses are mandatory; the others are optional.
    You can specify only stored, level-0 members on the left side of the assignment statement in the custom calculation script; do not use upper-level members, attribute members, or dynamic calc members.
    You can specify only stored, level-0 members in the following clauses: DebitMember, CreditMember, Target, and Offset.

  • Is this possible to run a program on one server(e.g. development server) on

    Is this possible to run a program on one server(e.g. development server) on another server via remote log on, or any other such technique

    Hi Surbhi,
    RfC are remote function calls through which u can remotely access other system.
    RFC
    Purpose
    Communication between applications of different systems in the SAP environment includes connections between SAP systems as well as between SAP systems and non-SAP systems. Remote Function Call (RFC) is the standard SAP interface for communication between SAP systems. The RFC calls a function to be executed in a remote system.
    Synchronous RFC
    The first version of RFC is synchronous RFC (sRFC). This type of RFC executes the function call based on synchronous communication, which means that the systems involved must both be available at the time the call is made.
    Transactional RFC (tRFC)
    Transactional RFC (tRFC, also originally known as asynchronous RFC) is an asynchronous communication method that executes the called function module in the RFC server only once. The remote system need not be available at the time when the RFC client program is executing a tRFC. The tRFC component stores the called RFC function, together with the corresponding data, in the SAP database under a unique transaction ID (TID).
    If a call is sent, and the receiving system is down, the call remains in the local queue until a later time. The calling dialog program can proceed without waiting to see whether or not the remote call was successful. If the receiving system does not become active within a certain amount of time, the call is scheduled to run in batch.
    tRFC is always used if a function is executed as a Logical Unit of Work (LUW). Within a LUW, all calls are
    ·         executed in the order in which they are called
    ·         executed in the same program context in the target system
    ·         run as a single transaction: they are either committed or rolled back as a unit.
    Implementation of tRFC is recommended if you want to guarantee that the transactional order of the calls is preserved.
    Disadvantages of tRFC
    ·       tRFC processes all LUWs independent of one another. Due to the amount of activated tRFC processes, this procedure can reduce performance significantly in both the send and the target systems.
    ·       In addition, the sequence of LUWs defined in the application cannot be kept. Therefore, there is no guarantee that the transactions are executed in the sequence dictated by the application. The only guarantee is that all LUWs are transferred sooner or later.
    Queued RFC (qRFC)
    To guarantee that multiple LUWs are processed in the order specified by the application, tRFC can be serialized using queues (inbound and outbound queues). This type of RFC is called queued RFC (qRFC).
    qRFC is therefore an extension of tRFC. It transfers an LUW (transaction) only if it has no predecessors (in reference to the sequence defined in different application programs) in the participating queues.
    Implementation of qRFC is recommended if you want to guarantee that several transactions are processed in a predefined order.
    RFC: Data Transfer
    All RFC types are transferred by means of CPI-C or  TCP/IP. They constitute a form of gateway communication. 
    HOPE I ANSWERED TO UR POINT
    reward if helpful
    thanks and regards
    suma

  • I have two separate itune accounts under two different email accounts and would like to combine them under one account.  Is this possible and if so, how do I do it?

    I have two separate itune accounts under two different email accounts and would like to combine them under one account.  Is this possible and if so, how do I do it?

    If you go to Settings > iTunes & AppStore , you can sign out from your account, and sign in with the one you've used to purchase apps.This will not remove any apps you already have on it.
    Then you can go to AppStore and download apps you've purchased (either via "Purchased" button in "Updates", or simply search for them and download them.
    That way you can have multiple accounts' apps on your iPad. When updating, you will be prompted for the credentials for account you've purchased given App with.

  • I work with a child who is not able to move his neck.  to see the ipad, it has to be placed high above the table (eye level).  he needs access with a mouse - is this possible?

    I work with a child who has physical disability and cannot move his neck.  The ipad needs to be eyelevel in order for him to see it, but he also is not able to raise his hand and would need mouse access...  is this possible?

    I'm sorry but the iPad does not work with a mouse, there is no cursor on the iPad and the iPad was designed as a touch screen device so a mouse will not work.
    I really don't know what to suggest other than this new device, and it might be worth a look. I assume that the child can use his hands for a keyboard.
    http://www.thinkgeek.com/product/e722/

  • Unfortunately, I lost by an update all the apps on my iPad 2. Now I can not pull the data from the cloud to my iPad. How is this possible?

    Unfortunately, I lost by an update all the apps on my iPad 2. Now I can not pull the data from the cloud to my iPad. How is this possible?

    If you just installed iCloud does that mean you updated the iOS that's running on your iPad?  If so, you'll want to restore all the programs you have from the backup you hopefully made.
    Refer to these articles for help.
    iTunes: Backing up, updating, and restoring iOS software.
    If you don't want to use iCloud, simply don't activate it.
    You can also download the programs again.
    If you live in a country that supports re-downloading apps then you can re-download them.  You can refer to this article for more help.
    Downloading past purchases from the App Store and iTunes Store
    What to know if your country supports downloading past purchases?
    iTunes in the Cloud Availability

  • I am getting old and looking forward to use I Pad as a Phone if possible through WIFI! I this possible? The screen is to small for me! If possible, with new I Watch taking calls, other uses through I Pad!

    Like I wrote on title, I am getting old and it is not easy to see E-mails, news etc. on a I phone! New I phone will not help me for the size.
    If possible, everything without calls, I would like to use I Pad as direct unit, and for calls through I Pad over WIFI all calls. If a call as Skype, I would like
    to use the I Pad as a monitor. Is this possible?
    I found on a side that there is a product for people for better hearing, which can be put into the ears, using WIFI with I Phone.
    If this product could be used also for I Pad as a Phone for hearing, and the I watch or I Pad as Microphone, it will be great for old Mac users.
    Is this possible with our system know?
    I am using Mac since Classic II! Would like to continue with the newest items with the possibility for old person with bad Eyes or Ears.
    Looking forward for a kind answer
    with regards
    Christian an old Mac user!

    Definitely No

  • I have a Macbook Pro with OS 10.6.8 with no updates. Bundled is iPhoto 11, version 9.2.6. I would like to update my OS to 10.9.5 or later. Is this possible and which version is recommended?

    I have a MacBookPro with OS 10.6.8. It has no updates. This version contains Iphoto 11, version 9.2.3. I would like to upgrade my operating system to 10.9.5 or later. Is this possible and how best to proceed? How will this affect iPhoto?
    Thanks, Jeff

    If you have a mid/late 2007 MBP you can install the latest OSX that is available, on your MBP.  Mavericks (10.9) has been replaced by Yosemite (10.10) and is no longer available in the App store. 
    You choices are Lion (10.7), Mt.Lion (01.8) (both $20) or Yosemite (free).  The first two are available from the Apple online web site.  Yosemite can be downloaded from the App store.
    Ciao.

  • I just bought my macbook pro and it's charged up to 100% and is still plugged in but now shows the battery at 98%.  How is this possible when it's plugged in to the charger and the green light is on?

    I just bought my macbook pro and it's charged up to 100% and is still plugged in but now shows the battery at 98%.  How is this possible when it's plugged in to the charger and the green light is on?

    The system regularly lets the battery drop to about 95% when on the charger, then recharges to 100%.  This lets the batery exercise "just a little" all of the time and saves the recharge curcuits from overuse.
    Regualr occurence for me.
    Also ... you need to let your battery work at least once per month.  Let it run down to 40%, but not less if you can at all avoid it.  Running thr battery fully dead will shorten the battery life significantly.

Maybe you are looking for

  • How do I connect my iPad to a new PC and lose the link to my old PC?

    I have purchased very littl music through iTunes, but I have a great many CDs copied to iTunes. I established a good link between my iPad (iOS 7) and my PC. Initially I had iTunes Match but my broadband was too slow. I used the sync over wi-fi connec

  • Problem in using Intermedia search  with Oracel 9i DB on Red hat Linux

    Hi, I am unable to search a particular text in a blob using Intermedia search feature.I am using Oracle 9i (9.0.2 version)mounted on Red Hat Linux OS. It works well on a Windows 2k OS. To be more precise the following query fails when I pass the INSO

  • User Accts on 9i

    I just downloaded a copy of Oracle 9i. This question is probably rudimentary, and I apologize for that, but I can't figure out how to create a user account to be used in SQL+. Thanks in advance for any help.

  • File Handling in forms 10g

    Hi, I have a requirement where i have to get the files list of a directory like dir or ls and to get the count of files of a directory. I think it can be done using webutil. Can any one please help me on this. Greetings, Ankit Chhabra

  • How can I reset my secrets questions on itunes, cause I don't remember the answers...

    I tried to buy a song, but they told me they need to verify the account, cause it was the first time I was buying with my macbook (which isn't true cause I bought songs the night before), and they asked me to answer my secret questions that I answere