Total cumulative peform Records

My requirement is to make the accumulated amount while they inspected the highest bonus.

Here are the files in the sample.

create the table test_cumsum as

(select 100 'id', 5 'bonus', 0.25 "CLTS', 'y' flg in union double all the)

Select 3, 200, 0.25, 'y' from dual union all

Select 300,1,0.15, 'y' from dual union all

Select 400,2,0.25, 'y' from dual union all

Select 500,6,0.25, 'y' in the double)

From the award-winning sum the CLTS hightest until the cumulative sum = 1

Records that are left in the running sum must be updated with flg = N

In the example above the SumOf CLTS for 6,5,3,2 bonus will be equal to 1

So record id = 300 must be updated to flg = N as long as this record needs no summation of the value to 1

Please suggest!

Could not test this carefully... but something like this may work. Test it with improved sample just to audit data.

----------

SELECT "id", "bonus", "crdts",
       CASE
          WHEN SUM (
                  "crdts")
               OVER (PARTITION BY 1
                     ORDER BY "bonus" DESC
                     ROWS UNBOUNDED PRECEDING) <= 1
          THEN
             'Y'
          ELSE
             'N'
       END
          flg
  FROM test_cumsum;
ID bonus CLTS FLG
500 6 0.25 THERE
100 5 0.25 THERE
200 3 0.25 THERE
400 2 0.25 THERE
300 1 0.15 N

p.s. Please name the columns without quotation marks double... its just pain

See you soon,.

Manik.

Tags: Database

Similar Questions

  • Unable to get the total number of records processed by the processor of trade rules

    Details of the environment

    ======================

    Disqualification Version: 12.1.3.0.0


    I use a business rules processor to implement multiple business rules on one record and I am looking for a summary of the number of records increased and does not have a specific rule.


    To illustrate:
    Suppose there are 2 rules, invalid number in Column1 and valid number on Column2.
    10 records to process and 3 folders don't rule 1 (valid on column1) and 9 entered failure of rule 2 (valid number on Column2).

    In the browser of result of the processor Business, the number of past records and failed is displayed but is not part of the output of the processor itself. In the example above, there will be 1 pass and 9 fail records and given the values of said the total number of records can be derived which is 10.

    This is why the expected output will be:
    Success of failure
    Rule 1:7 (10-3) 3
    Rule 2: 1 (10-1) 9
    Note: The number of records that failed can be derived from the table of the rule ID but I don't know how to get the total number of records in order to calculate the number of records that a given rule.

    I tried to publish the County of acceptance and rejection in the browser of result of the processor Business in an intermediate table and ask the same intermediate table to get the pass and fail values but Disqualification does not allow to write and read the same intermediary object in a single process. What is the best way to get the number of records total handled by the processor business rules? This kind of attributes (that do not exist only in the browser of result) can be included in the output of the processor in the next version of the Disqualification?

    In addition, the intermediate table contains only 1 sheet with pass and failure values while the exceptions which have individual failure on each rule contains 12 Archives. What would be the best approach to merge a single record into multiple records according to the example below?

    Staging table
    Success of failure
    1 9

    Exception table
    Single ID ID rule
    Rule 1 Record1
    Rule 1 Record2
    Rule 1 record Record3
    Rule 2 Record1

    Exception table with: staging Table data merge
    Rule ID ID Unique Pass Fail Total
    Rule 1 1 9 10 Record1
    Rule 1 1 9 10 Record2
    Recording rule 1 Record3 1 9 10
    Record1 rule 2 1 9 10

    Please notify.

    Hi Jason,

    The best way to explain how to do this is with an example project (DXI). I'll send you one in offline mode.

    -Mike

  • Can I get the total number of records that meet the conditions of a query using the Table API?

    Hello

    A < row > TableIterator is returned when I ask operations using the index of tables. If I want to get the total number of records, I count one by one using the returned TableIterator < row >.


    Can I get the total number of records directly meets the conditions of the query?

    I can get the total number of records directly the request of the meeting of the conditions of CLI using the command Global table - name tableName - count - index index-name-field fieldName - start startValue-end endValue.

    Can I get the same results using the Table API?

    I used MongoDB and NoSQL Oracle for about a year. According to the experience of the use of these dbs, I think mongoDB querying interface is powerful. In the contras, the query interface is relatively simple, which results is a lot of work that is usually a long time in the client side.

    Hello

    Counting records in a database is a tricky thing.  Any system that gives you an accurate count of the records will have a hotspot of concurrency on updates, namely the place where the counting is maintained.  Such a count is a problem of performance in addition to competitive access problem.   The problem is even more difficult in a system widely distributed such a NoSQL database.

    The CLI has overall command that counts, but does so by brutal force - iterate keys that correspond to the parameters of the operation.  This is how you must do this within the API.  There is not a lot of code, but you have to write.  You certainly want to use TableIterator TableAPI.tableKeysIterator (), because a key iteration is significantly faster than the iteration of lines.  Just one iteration and count.

    If you use TableAPI.multiGet () and a key with a touch of brightness full then, in fact, count the results as they are returned in a single piece (a list).

    Kind regards

    George

  • Total number of records in the table read

    Here is the procedure to read total no of record in the table specified by the user during execution. But it still gives the same answer for all the table. Can someone help me?

    create or replace procedure p3 (varchar2, not on the number tab)
    as
    Start
    Select count (*) from no tab;
    end;

    You need dynamic SQL statements.

    Or:
    http://laurentschneider.com/wordpress/2007/04/how-do-i-store-the-counts-of-all-tables.html
    To get the name of the Table and no lines
    http://asktom.Oracle.com/pls/asktom/f?p=100:11:1725645184471282:P11_QUESTION_ID:1660875645686

    Or simply use the data dictionary, collect statistics of the table, then:
    Select table_name, num_rows from user_tables;

  • total cumulative for line

    Hello

    create table test (id varchar2 (10))

    a number,

    b the number,

    c number);

    Insert into test (ID, A, B, C).

    values ('row1', 0, 100, 20);

    Insert into test (ID, A, B, C).

    values ('row2', 100, 200, 50);

    Insert into test (ID, A, B, C).

    values ('total', 100, 100, 30);

    Insert into test (ID)

    values ("cascading");

    Update test

    together (a, b, c) =)

    Select a + b + c, b + c, c test

    where id = 'total')

    where id = "cascade".

    I need help if I can rewrite the update to line "cascading" statement in my table somehow another, I have a lot of columns in the original table

    logic of cumulative rank, it is total running in a row.

    Thank you

    Yes, I think I know what you're getting at, you want to make a cumulative amount of line on many areas, from the right-most field. You can do this by unpivoting, using sum on and then rotate.  Here is a template for that, you had just change to match the number of fields.  This model could be used as the basis of a view (union all results with the original data), to save data update.

    test (ID, A, B, C) as long as)

    Select "row1", 0, 100, 20 of all the double union

    Select "row2", 100, 200, 50 in all double union

    Select 'total', 100, 100, 30 double

    ),

    qryUnpivot like)

    Select "Cumulative" as ID, VALUE_TYPE, MySQL on (partition of sort ID VALUE_TYPE desc ranks unbounded preceding) CUMUL_SUM

    of the test

    UNPIVOT)

    VALUE

    for VALUE_TYPE in

    (A, B, C)

    )

    WHERE ID = 'total '.

    )

    Select *.

    of qryUnpivot

    Pivot

    (

    min (CUMUL_SUM)

    for VALUE_TYPE in ('A' a, 'B' b, 'C' as C)

    )

    ID A B C
    Cumulative 230 130 30
  • Does Oracle 10g - Record Count/Total number of records.

    Hello, I'm looking to display the current records of number / total Records at the bottom left of a custom form. Please see below, made me know how this is done. Enjoy it!

    record_count.jpg

    Thanks, Naveen.

    Your question is unclear.  Forms already did what you mentioned and appears as such in the image you downloaded.  If you don't see it in a particular form, open the form in the report generator and check at the level of the 'form', property 'The Console window' is not NULL and properly reflects the name of the appropriate window.  A NULL value prevents the message bar appears.

  • Calculate the Total cumulative

    The following is designed as a repeating subform with new line instances added via an Add button.

    I need each Rollup field (on each line) to automatically calculate on the basis of either:

    1. the amounts of payment 'in progress' and 'all the above' (i.e. of cumulative payment 3 ($ 1,800) = sum of payments 1, 2 and 3)

    or

    2 tpayment cumulative previous he + current payment (i.e. cumulative payment ($ 1,800) 3 = cumulative payment ($ 1100) 2 + 3 ($700) payment )

    Cumulative payment period

    1 500 500

    2 600 1 100

    3 700 1 800

    Can someone please help. I understand that I need to retrieve the "previous instances" don't put no not sure what I'm doing wrong...

    Here is my solution to this problem.

    Note the I<> in the condition of the loop for. Which stops the calculations on which line you enter numbers in. (You don't want to add the amount of line 3 to the total of line 2, for example).

  • Program Total of PLSQL records = 20569 started 8822 records are procedures

    Hello
    I have a problem with my plsql code. some records are transformed, not all. Total records = 20569 started 8822 records correctly treat, 11747 bore no treaty is going end exception block. Could you please help me any body.
    create or replace procedure sal_info 
    is
     ln_total_records NUMBER := 0;
     ln_process_count NUMBER := 0;
     ln_error_count   NUMBER := 0;
          ln_skip_count                  NUMBER   := 0; 
         l_message                      VARCHAR2 (2500);
               lb_inv_next_sal_date_warning   BOOLEAN;
         lb_proposed_salary_warning     BOOLEAN;
         lb_approved_warning            BOOLEAN;
         lb_payroll_warning             BOOLEAN;
            ln_proposed_salary_n            per_pay_proposals.proposed_salary_n%TYPE := '6666';
        sql_stmt                       VARCHAR2 (2500);
    
    ----cursor Salary Information
     CURSOR csr_sal_info
     IS
     select pay_proposal_id
          ,object_version_number
          ,proposed_salary_n
          ,date_to
           ,rowid
    from per_pay_proposals --where assignment_id=124
    order by pay_proposal_id;
    BEGIN
    
      -- v_csr_prson_info := NULL;
     /* Drop and Create  Temp Table "XXXX_DATA_MASK_T" in Run Time */
     --
      BEGIN
      --drop temp table XXXX_DATA_MASK_T
      EXECUTE IMMEDIATE 'drop table XXXX_DATA_MASK_T';
      --create temp Table XXXX_DATA_MASK_T
      EXECUTE IMMEDIATE 'Create  table XXXX_DATA_MASK_T(pk_column varchar2(200)
                                                       ,pk_column_id      NUMBER(25)
                                                       ,update_column1 varchar2(200)
                                                       ,update_column2 varchar2(200)
                                                       ,message varchar2(2500))';
      dbms_output.put_line('Temp Table "XXXX_DATA_MASK_T" is created  ');
      EXCEPTION
      WHEN OTHERS THEN
      dbms_output.put_line('Temp Table is does not exists ');
      EXECUTE IMMEDIATE 'Create  table XXXX_DATA_MASK_T(pk_column varchar2(200)
                                                       ,pk_column_id      NUMBER(25)
                                                       ,update_column1 varchar2(200)
                                                       ,update_column2 varchar2(200)
                                                       ,message varchar2(2500))';
      dbms_output.put_line(' So Temp Table "XXXX_DATA_MASK_T" is created in Exception Block ');
      END;  
     --
    ---updateing Employee Salary Information
    
    
     FOR v_csr_sal_info IN csr_sal_info
     LOOP
       ln_total_records := ln_total_records + 1;
        if v_csr_sal_info.pay_proposal_id is not null
      then 
      BEGIN 
                    l_message := NULL;
                       -- Update Employee Salary Information API
                       -- ---------------------------------
                  hr_maintain_proposal_api.cre_or_upd_salary_proposal
                     ( p_validate                   => FALSE
                   ,p_pay_proposal_id            => v_csr_sal_info.pay_proposal_id
                   ,p_object_version_number      => v_csr_sal_info.object_version_number
                      ,p_proposed_salary_n          => ln_proposed_salary_n
                      ,p_date_to                        => v_csr_sal_info.date_to
                      ,p_inv_next_sal_date_warning  => lb_inv_next_sal_date_warning
                   ,p_proposed_salary_warning      => lb_proposed_salary_warning
                   ,p_approved_warning              => lb_approved_warning
                   ,p_payroll_warning              => lb_payroll_warning
                  );
                     commit;
                      ln_process_count := ln_process_count +1;
          EXCEPTION
                    WHEN OTHERS THEN
                       l_message := SUBSTR (SQLCODE || ' - ' || SQLERRM, 1, 2500);      
                     sql_stmt := 'INSERT INTO XXXX_DATA_MASK_T (pk_column,pk_column_id,update_column1,update_column2,message) VALUES (:1,:2,:3,:4)';
                    EXECUTE IMMEDIATE sql_stmt USING 'SALARY', v_csr_sal_info.pay_proposal_id,'hr_maintain_proposal_api.cre_or_upd_salary_proposal Throwing Error is :',ln_total_records,l_message;  
                    ln_error_count := ln_error_count + 1;     
        commit;
      END;
         ELSE
               sql_stmt :='INSERT INTO XXXX_DATA_MASK_T (pk_column,pk_column_id,message) VALUES (:1,:2,:3)';
                EXECUTE IMMEDIATE sql_stmt USING 'SALARY', v_csr_sal_info.pay_proposal_id,'pay_proposal_id does not Exists';   
                ln_skip_count := ln_skip_count + 1;               
              END IF; 
         END LOOP;     
     
    
      COMMIT;
       dbms_output.put_line (' XXXX Employee Salary Information Masked Total Records is : ' || ln_total_records|| '  and  Total Records Processed is :  '||ln_process_count);
         --- error records log       
           IF ln_error_count <> 0 THEN
             dbms_output.put_line (ln_error_count||' Records  " hr_maintain_proposal_api.cre_or_upd_salary_proposal" API through error for Employee Salary information is not Update Please Check Temp table 
              "SELECT * FROM XXXX_DATA_MASK_T WHERE pk_column = ''SALARY''  ');
           END IF;     
            
            ---- skip records log      
             IF ln_skip_count <> 0 THEN
             dbms_output.put_line (ln_skip_count||' Records skiped becuse this employee pay_proposal_id is not exists in per_pay_proposals table , so it''s not possible to data masking Employee salary information  please check temp tale 
              "SELECT * FROM XXXX_DATA_MASK_T WHERE pk_column = ''SALARY'' and message =''pay_proposal_id does not Exists''  ');
           END IF;          
           ---- 
     EXCEPTION
      WHEN OTHERS THEN
      -- dbms_output.put_line ('XXXX Employee National Identifier Number and Data of Birth Data Masked  is not processed');
        dbms_output.put_line (ln_error_count||' Records  " exception hr_maintain_proposal_api.cre_or_upd_salary_proposal" API through error for Employee Salary information is not Update Please Check Temp table 
              "SELECT * FROM XXXX_DATA_MASK_T WHERE pk_column = ''SALARY''  ');
     END;
    {code}
    thanks,
    Ramu.
    
    Edited by: Ramu on Oct 15, 2012 12:35 PM                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                                    

    Robert wrote:

    I have a problem with my plsql code.

    The basic problem is dynamically creating tables in PL/SQL code of the application. That's all just ridiculous.

    Solution?

    Do not. Model the needs of the company and entities correctly using a normalized relational data model appropriate.

  • Total number of records

    Hello

    I have a report to my dashboard, I want to display total none of rorws/records at the end of each page.

    Thank you

    Hello

    Here is a nice http://www.miky-schreiber.com/Blog/PermaLink, guid, e964552b-eb6e-449b-b2c6-42adea2376cd.aspx

    Hope responds to your request.

    See you soon,.
    KK

  • Total cumulative query

    Hi all
    I want a column for the (cumulative) total operating surplus column. Help, please.
    SELECT d.flight_code,f.BASE_QTY, d.delivery_date,
    CASE WHEN base_qty IS NULL THEN '-'
    WHEN NVL(d.qty_delivered,0)<=base_qty THEN '0'
    ELSE TO_CHAR(NVL(d.qty_delivered,0)-NVL(base_qty,0)) END surplus 
    FROM delivery_details d,flight_information f
    WHERE d.flight_code=f.flight_code
    AND d.flight_code='MS'
    AND TO_CHAR(delivery_date,'mm')='06'

    Maybe

    select d.flight_code, f.base_qty, d.delivery_date,
               case
                    when base_qty is null then '-'
                    when nvl (d.qty_delivered, 0) <= base_qty then '0'
                    else to_char (nvl (d.qty_delivered, 0) - nvl (base_qty, 0))
               end
                    surplus,
               sum (case
                             when base_qty is null then '-'
                             when nvl (d.qty_delivered, 0) <= base_qty then '0'
                             else to_char (nvl (d.qty_delivered, 0) - nvl (base_qty, 0))
                        end)
                    over (order by d.delivery_date)
                    cum_sum
      from delivery_details d, flight_information f
     where       d.flight_code = f.flight_code
               and d.flight_code = 'MS'
               and to_char (delivery_date, 'mm') = '06'
    
  • Running on total cumulative

    Hi all. I'm new to Mac and don't have only recently begun to dabble with Mac numbers.
    Currently, I am doing a rudimentary spreadsheet for my payments of gas with a small set of data wide in two columns. A column would represent each payment that I do, and then I want the second column is a running total of all payments I made at this point of data overall.

    So for example, I would like an equation that would add in the running total in the right column, so that each time I added a digit amounts, it would automatically calculate the total on this point in the adjacent cell.

    Is there someone who can help me out here?

    See you soon!

    Hi PaxSoprana,

    You can do something like this:

    C2 = 20 I have copy/pasted this fair value of B2 GE things started.

    C3 = B3 + C2

    This formula is filled down the yellow filling haddle USINT that appears when you hover over the selected cell.

    Quinn

  • I'm totally confused about records, collections and smart collections.

    I am a complete newbie to Lr so please forgive what are fundamental questions without doubt!

    In records, I have 2 folders - Annecy and Aix which have different vacation photos.

    In Collections, under smart Collections, I have a folder named Aix which has my pictures of Aix and that is synchronized to Lr on my ipad.  However, although Annecy is listed under Collections, it is in a folder at the top of a new tree under smart Collections but does not part of smart Collections.  I hope that makes sense!  This issue of Annecy does contain pictures, and the only thing being synchronized on ipad is the name of the folder.  How can I copy photos from the folder in the folders in the Collections folder?

    I read that peaks must be in the Collections before they can be synchronized.  However, on the ipad there is that a folder named "Pictures Lightroom" it contains 242, the same as "all photographs synchronized" under the heading catalog when Lr appears on my desktop.  At present, I am initially upload my pictures in my office and then import to the RL.

    Finally, about mobile Lr in response to a previous johnreliis investigation informed that I must ensure that I am connected to creative cloud on the ipad before being able to view synchronized + photos on the ipad.  I downloaded Lr mobile on the Apple store and have nothing to CC on the ipad.  Now, I wonder if the reason that the pictures of Annecy are not displayed on the ipad is due to the fact that, at the present time, they are not in a Collection.

    Thanks in advance for all you can give me advice.

    Richard

    Just drag Annecy out of smart Collections and next to Aix.

    What is called "smart Collections" is actually a Collection Set - that is a container for other regular or silent collections (like your Aix) and smart collections which include images of criteria that you define. Notice how "Smart Collections of" has a different icon from the smart collections inside, looking more like a box. So what you could do then is to create a set of Collection called France and drag Annecy and Aix in it.

    To get the pictures in the Annecy collection, you can find them in your folders and drag the thumbnails in the grid and place in Annecy.

  • How to get essbase excel add in the display of the total cumulative number?

    Version 11.1.2.1

    When I connect firstly in my ASO application via the excel add-in, the first thing I see is a null value. My first dimension/column is 'period '. Period is marked as a dynamic calc and label only.

    When I drill down in the period I see obviously all rollup values. How can I get the excel to display the full cumulation (instead of having to drill down) when I connect firstly because I like to keep my options as ' delete missing values / zeros "checked.

    I see in Sample.Basic is 105522. I want something like that. I tried reloading the numbers and changed the properties without result.

    What is the logic behind this?

    If "Period" is marked as 'Label only' it will take the value of her first child, if the first child has a value of #Missing, then "Period" also will display a value of #Missing. If you want to 'Period' to show all the periods (as Sample.Basic does) then you need to take off the "Label" label only

  • How to count the total number of records with distinction?

    Hello guys

    I have a report that contains a list of the types of company and other attributes as follows:
    Shipto               Company Type             GC Code               Measures
    A                         cc                             x                          100
                                                               y                          200
                                                               c                          120
    
    B                         YUT                         I                            200
                                cc                           U                           98
    
    G                         Maid                        rt                           200
                               YUT                        TT                         300
                               JTE                         TY                         400
    
                               
     
    The list goes on and... "Business type" appears is not the highest or the lowest... I would like to see what is the total number of different company types we have. By this report, there should be 5, but if I count or count (*) or rcompte, I actually get the total number of lines in the present report, which is not what I want...

    If someone could help me to find the total number of company types?

    Thanks in advance

    Have you tried this one?

    Sum (Count (distinct ColumnName))

  • How to get the total number of records for this query

    SELECT SSN, FIRST, MID, LAST, UCX_UCFE, TRAPOSS, DUAPOSS, CLAIM_SEQ, CLAIM_DT, MAX (INSERT_DT) INSERT_DT.
    CLAIM_STAT, ISSUE_CDE, AGENT_ID FROM (SELECT A.SSN, A.FIRST A.MID, A.LAST, B.UCX_UCFE, B.TRAPOSS, B.DUAPOSS,
    C.CLAIM_SEQ, C.CLAIM_DT, C.INSERT_DT, C.CLAIM_STAT, C.ISSUE_CDE,
    RN C.AGENT_ID, ROWNUM
    THE APPLICANT HAS, CLMTELIG B, UICLAIMS C
    WHERE A.CLMT_SEQ = B.CLMT_SEQ AND B.CLMT_SEQ = C.CLMT_SEQ AND TRUNC (C.INSERT_DT) BETWEEN 1 JANUARY 09 ' AND 5 JANUARY 09')
    GROUP OF NSS, BEGINNING, MIDDLE, LAST, UCX_UCFE, TRAPOSS, DUAPOSS, CLAIM_SEQ, CLAIM_DT, CLAIM_STAT, ISSUE_CDE, AGENT_ID



    Thank you all in advance for watching in my post.

    Select count (*)
    Of
    (.. .your question here...) ;

Maybe you are looking for

  • How can I disable game candy?

    Some time ago, all these pop ups started which are powered by Candy game, I tried to get rid of it, I even contacted them with no response so I used an old restore point and that fixed until the Witch of return updating firefox and now it tells me th

  • Update BIOS on Portege 3440CT.

    Hello! I have a Portege 3440CT with version 1.50 of bios. This version does not support large HARD drive so I thought I would update to the BIOS. (I do not know if the version 1.60 don't either, does anyone know?) When I try to run the program to upd

  • Play a movie bought on iTunes that is located on an external drive

    I just bought a Seagate wireless more HDD. They advertise being able to play music and movies mp4 also. I can play music, even if it's not through iTunes. But the movies that I bought through iTunes will not play. Is there a set up to make them play?

  • Reinstall the keynote for free

    I installed keynote a year for free, being in Russian Appstore. As I moved to the United States, I changed my store for us AppStoree, and everything worked well. For some reason, I uninstalled my speech today, just found out that I can not install ba

  • I get the Message

    I can't activate my imessage. I followed all the steps and it is in its housing on "waiting for activation". He was working before all of a sudden all of my text turned green.  I disabled the sms but still does not work. Help, please